diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 00000000..3362c546 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,34 @@ +name: Build fonts + +on: + push: + branches: [main] + pull_request: + branches: [main] + workflow_dispatch: + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + + - uses: actions/setup-python@v5 + with: + python-version: "3.11" + cache: pip + + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install -r requirements.txt + + - name: Build with gftools + working-directory: sources + run: gftools builder config.yaml + + - name: Upload build artifacts + uses: actions/upload-artifact@v4 + with: + name: fixel-fonts + path: fonts/ diff --git a/.github/workflows/fontbakery.yml b/.github/workflows/fontbakery.yml new file mode 100644 index 00000000..bc2e3153 --- /dev/null +++ b/.github/workflows/fontbakery.yml @@ -0,0 +1,52 @@ +name: FontBakery + +on: + push: + branches: [main] + pull_request: + branches: [main] + workflow_dispatch: + +jobs: + fontbakery: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + + - uses: actions/setup-python@v5 + with: + python-version: "3.11" + cache: pip + + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install -r requirements.txt + + - name: Build fonts + working-directory: sources + run: gftools builder config.yaml + + - name: Run FontBakery on variable font + run: | + fontbakery check-googlefonts \ + --succinct \ + --full-lists \ + --html fontbakery-report-vf.html \ + fonts/variable/*.ttf + continue-on-error: true + + - name: Run FontBakery on static TTFs + run: | + fontbakery check-googlefonts \ + --succinct \ + --full-lists \ + --html fontbakery-report-static.html \ + fonts/ttf/*.ttf + continue-on-error: true + + - name: Upload FontBakery reports + uses: actions/upload-artifact@v4 + with: + name: fontbakery-reports + path: fontbakery-report-*.html diff --git a/.gitignore b/.gitignore index f24accc0..38a3c1b8 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,16 @@ .DS_Store -venv \ No newline at end of file +venv +.venv +__pycache__/ +*.pyc + +# gftools-builder intermediates +sources/instance_ufos/ +sources/master_ufo/ +sources/build.ninja +sources/.ninja_log +.ninja_log + +# FontBakery HTML reports (the .md summary is committed) +FONTBAKERY-REPORT.html +fontbakery-report-*.html diff --git a/FONTBAKERY-REPORT.md b/FONTBAKERY-REPORT.md new file mode 100644 index 00000000..366a02e0 --- /dev/null +++ b/FONTBAKERY-REPORT.md @@ -0,0 +1,64 @@ +# FontBakery report + +This file summarises the current state of `fontbakery check-googlefonts` against +the gftools-built artefacts. The detailed HTML report lives in +[FONTBAKERY-REPORT.html](FONTBAKERY-REPORT.html). + +To regenerate: + +```sh +fontbakery check-googlefonts --succinct \ + --html FONTBAKERY-REPORT.html \ + 'fonts/variable/Fixel[wdth,wght].ttf' \ + fonts/ttf/Fixel-*.ttf fonts/ttf/FixelText-*.ttf +``` + +## Current status (initial onboarding build) + +Across the variable font + 18 statics: + +| Severity | Count | +|---|---| +| ERROR | 3 | +| FATAL | 0 | +| FAIL | 272 | +| WARN | 337 | +| PASS | 1507 | + +The volume is large because the same failure repeats across 19 files. The +distinct categories are listed below; each must be triaged before the family +can be merged into `google/fonts`. + +## Distinct FAIL categories + +These are upstream-sources issues that the type designers (see [AUTHORS.txt](AUTHORS.txt)) +need to address: + +- **`googlefonts/vertical_metrics` / `family/win_ascent_and_descent` / `os2_metrics_match_hhea` / `linegaps`** — OS/2 and hhea metrics are inconsistent and don't follow Google Fonts' rules. Typically resolved by running `gftools fix-vertical-metrics` and committing the fixed values into the UFO `fontinfo.plist`. +- **`use_typo_metrics`** — OS/2 `fsSelection` bit 7 (USE_TYPO_METRICS) must be set. +- **`googlefonts/glyph_coverage`** — missing codepoints from the GF Latin Core glyph set. Designers must add the missing glyphs. +- **`googlefonts/glyphsets/shape_languages`** — language-shaping checks (via shaperglot) report failed languages. +- **`whitespace_glyphs`** — missing NBSP (U+00A0). +- **`case_mapping`** — some lowercase glyphs lack uppercase counterparts (or vice versa). +- **`base_has_width`** — base glyphs with zero advance width. +- **`legacy_accents`** — combining accent glyphs incorrectly marked as bases / with width. +- **`name/trailing_spaces`**, **`googlefonts/name/line_breaks`** — name-table records contain stray whitespace / newlines. +- **`googlefonts/license/OFL_copyright`**, **`googlefonts/name/license`** — copyright string and license name records need the GF-required format. +- **`googlefonts/canonical_filename`** — output filenames need to match the GF naming convention exactly (likely just renaming statics from `Fixel-*.ttf` / `FixelText-*.ttf` to `Fixel[wdth,wght].ttf` + a `static/` folder per GF v2 layout). +- **`googlefonts/STAT/axisregistry`** — STAT axis-value names must match Google's [axis registry](https://github.com/google/fonts/tree/main/axisregistry). Width values "Text" / "Display" probably need to be replaced by registry-approved labels. +- **`googlefonts/vendor_id`** — set a registered 4-character vendor ID in `OS/2` (currently `NONE`/blank). + +## Distinct WARN categories (lower priority) + +- `interpolation_issues` — sources have masters that don't interpolate cleanly at all axis positions. +- `mandatory_avar_table` — variable font lacks an `avar` table; gftools can generate one. +- `overlapping_path_segments`, `outline_direction` — outline-cleanliness issues to fix in the UFOs. +- `googlefonts/article/images` — GF v3 prefers a long-form `ARTICLE.en_us.html` plus sample images; optional but recommended. +- `googlefonts/metadata/unreachable_subsetting` — some encoded glyphs aren't reachable by GF's subsetter. + +## Next steps + +1. Fix the upstream-sources issues above in the UFOs (type designers). +2. Re-run `gftools builder sources/config.yaml` and this report. +3. Iterate until FAILs drop to zero (WARNs may remain if justified). +4. File the GF onboarding issue at . diff --git a/README.md b/README.md index 244ad283..d2a55f88 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,5 @@ # Fixel + Fixel font public repository. @@ -7,11 +8,54 @@ Fixel font public repository. -* Fixel Font includes extended Latin and Cyrillic alphabets, covering over 40 languages. -* The font comes in both Text and Display width options, with nine weight options from Thin to Black. -* The font is a unique combination of geometric and humanist grotesques, with open letterforms, wide width, crisp edges, and low contrast. -* Fixel Font is suitable for a variety of content types and sizes, from headlines and logos to large volumes of text. -* Fixel Font includes alternate symbols. They are more plastic and stand out with higher dynamics and asymmetry. -* Fixel Font preserves the history of the unique Ukrainian graphic culture. Among Fixel’s alternate symbols is the «tryzub,» the seal-trident of Volodymyr the Great and part of the Ukrainian coat of arms. The Fixel’s «tryzub» was developed by the outstanding Ukrainian painter and graphic artist Nil Khasevych in 1949. -* The font is free and can be used in commercial and other types of projects. +## About + +Fixel is a contemporary sans-serif by MacPaw — a combination of geometric and humanist grotesques, with open letterforms, wide proportions, crisp edges, and low contrast. It is suitable for content from headlines and logos to long passages of text. + +- Extended Latin and Cyrillic; 40+ languages +- Two widths: **Display** (`wdth=100`) and **Text** (`wdth=87.5`) +- Nine weights: Thin → Black (`wght=100`–`900`) +- One variable font with `wdth` + `wght` axes +- Alternate symbols, including the «tryzub» after Nil Khasevych (1949) +- Free for commercial and personal use under the SIL Open Font License v1.1 + +## Repository layout + +``` +sources/ UFO masters, .designspace and gftools-builder config +fonts/ Build output: variable, static TTF, and webfonts (WOFF2) +documentation/ DESCRIPTION.en_us.html and images +``` + +## Building + +```sh +pip install -r requirements.txt +cd sources +gftools builder config.yaml +``` + +This produces: + +- `fonts/variable/Fixel[wdth,wght].ttf` — the variable font +- `fonts/ttf/*.ttf` — 18 static instances +- `fonts/webfonts/*.woff2` — webfont versions + +## Quality checks + +```sh +fontbakery check-googlefonts --succinct \ + fonts/variable/*.ttf fonts/ttf/*.ttf +``` + +CI runs the build and FontBakery on every pull request — see `.github/workflows/`. + +## Designers + +See [AUTHORS.txt](AUTHORS.txt) and [CONTRIBUTORS.txt](CONTRIBUTORS.txt). + +To contribute, contact [Max Kukurudziak](mailto:max@macpaw.com). + +## License +Licensed under the SIL Open Font License v1.1 — see [OFL.txt](OFL.txt). diff --git a/documentation/DESCRIPTION.en_us.html b/documentation/DESCRIPTION.en_us.html index 83085f84..5830d55e 100644 --- a/documentation/DESCRIPTION.en_us.html +++ b/documentation/DESCRIPTION.en_us.html @@ -1,4 +1,7 @@ -

Fixel Font Description

+

Fixel is a contemporary sans-serif typeface family published by MacPaw. It combines geometric and humanist grotesque traditions, with open letterforms, wide proportions, crisp edges, and low contrast — making it equally legible at small text sizes and expressive at display scale.

-

To contribute to the project contact -Max Kukurudziak.

+

The family ships in two widths — Display and Text — each available in nine weights from Thin to Black. The Display width is the default; the Text width is a slightly narrower variant tuned for longer passages. Both widths are unified in a single variable font with Weight (100–900) and Width (87.5–100) axes. Fixel covers extended Latin and Cyrillic scripts, supporting more than 40 languages, and includes a set of alternate symbols designed for higher dynamism and asymmetry.

+ +

Among Fixel's alternate glyphs is the «tryzub», the seal-trident of Volodymyr the Great and a national symbol of Ukraine, drawn after the 1949 design by Ukrainian painter and graphic artist Nil Khasevych. Fixel is released under the SIL Open Font License v1.1 and is free for use in commercial and personal projects.

+ +

To contribute, visit the Fixel GitHub repository or contact Max Kukurudziak.

diff --git a/fonts/ttf/Fixel-Black.ttf b/fonts/ttf/Fixel-Black.ttf new file mode 100644 index 00000000..7ef4e48e Binary files /dev/null and b/fonts/ttf/Fixel-Black.ttf differ diff --git a/fonts/ttf/Fixel-Bold.ttf b/fonts/ttf/Fixel-Bold.ttf new file mode 100644 index 00000000..59364a5c Binary files /dev/null and b/fonts/ttf/Fixel-Bold.ttf differ diff --git a/fonts/ttf/Fixel-ExtraBold.ttf b/fonts/ttf/Fixel-ExtraBold.ttf new file mode 100644 index 00000000..94c90029 Binary files /dev/null and b/fonts/ttf/Fixel-ExtraBold.ttf differ diff --git a/fonts/ttf/Fixel-ExtraLight.ttf b/fonts/ttf/Fixel-ExtraLight.ttf new file mode 100644 index 00000000..ce4bd950 Binary files /dev/null and b/fonts/ttf/Fixel-ExtraLight.ttf differ diff --git a/fonts/ttf/Fixel-Light.ttf b/fonts/ttf/Fixel-Light.ttf new file mode 100644 index 00000000..fb5904dc Binary files /dev/null and b/fonts/ttf/Fixel-Light.ttf differ diff --git a/fonts/ttf/Fixel-Medium.ttf b/fonts/ttf/Fixel-Medium.ttf new file mode 100644 index 00000000..3ab270f6 Binary files /dev/null and b/fonts/ttf/Fixel-Medium.ttf differ diff --git a/fonts/ttf/Fixel-Regular.ttf b/fonts/ttf/Fixel-Regular.ttf new file mode 100644 index 00000000..848afb25 Binary files /dev/null and b/fonts/ttf/Fixel-Regular.ttf differ diff --git a/fonts/ttf/Fixel-SemiBold.ttf b/fonts/ttf/Fixel-SemiBold.ttf new file mode 100644 index 00000000..41fea825 Binary files /dev/null and b/fonts/ttf/Fixel-SemiBold.ttf differ diff --git a/fonts/ttf/Fixel-Thin.ttf b/fonts/ttf/Fixel-Thin.ttf new file mode 100644 index 00000000..86f4adb9 Binary files /dev/null and b/fonts/ttf/Fixel-Thin.ttf differ diff --git a/fonts/ttf/FixelDisplay-Black.ttf b/fonts/ttf/FixelDisplay-Black.ttf deleted file mode 100644 index e09df5ce..00000000 Binary files a/fonts/ttf/FixelDisplay-Black.ttf and /dev/null differ diff --git a/fonts/ttf/FixelDisplay-Bold.ttf b/fonts/ttf/FixelDisplay-Bold.ttf deleted file mode 100644 index e299d94f..00000000 Binary files a/fonts/ttf/FixelDisplay-Bold.ttf and /dev/null differ diff --git a/fonts/ttf/FixelDisplay-ExtraBold.ttf b/fonts/ttf/FixelDisplay-ExtraBold.ttf deleted file mode 100644 index b34bd18c..00000000 Binary files a/fonts/ttf/FixelDisplay-ExtraBold.ttf and /dev/null differ diff --git a/fonts/ttf/FixelDisplay-ExtraLight.ttf b/fonts/ttf/FixelDisplay-ExtraLight.ttf deleted file mode 100644 index a690a7bc..00000000 Binary files a/fonts/ttf/FixelDisplay-ExtraLight.ttf and /dev/null differ diff --git a/fonts/ttf/FixelDisplay-Light.ttf b/fonts/ttf/FixelDisplay-Light.ttf deleted file mode 100644 index b262fc52..00000000 Binary files a/fonts/ttf/FixelDisplay-Light.ttf and /dev/null differ diff --git a/fonts/ttf/FixelDisplay-Medium.ttf b/fonts/ttf/FixelDisplay-Medium.ttf deleted file mode 100644 index dd7b3478..00000000 Binary files a/fonts/ttf/FixelDisplay-Medium.ttf and /dev/null differ diff --git a/fonts/ttf/FixelDisplay-Regular.ttf b/fonts/ttf/FixelDisplay-Regular.ttf deleted file mode 100644 index 272b1455..00000000 Binary files a/fonts/ttf/FixelDisplay-Regular.ttf and /dev/null differ diff --git a/fonts/ttf/FixelDisplay-SemiBold.ttf b/fonts/ttf/FixelDisplay-SemiBold.ttf deleted file mode 100644 index c7012c04..00000000 Binary files a/fonts/ttf/FixelDisplay-SemiBold.ttf and /dev/null differ diff --git a/fonts/ttf/FixelDisplay-Thin.ttf b/fonts/ttf/FixelDisplay-Thin.ttf deleted file mode 100644 index 9fc59aea..00000000 Binary files a/fonts/ttf/FixelDisplay-Thin.ttf and /dev/null differ diff --git a/fonts/ttf/FixelText-Black.ttf b/fonts/ttf/FixelText-Black.ttf index 54f32d94..4ac45c1f 100644 Binary files a/fonts/ttf/FixelText-Black.ttf and b/fonts/ttf/FixelText-Black.ttf differ diff --git a/fonts/ttf/FixelText-Bold.ttf b/fonts/ttf/FixelText-Bold.ttf index 90af473b..bd15b09b 100644 Binary files a/fonts/ttf/FixelText-Bold.ttf and b/fonts/ttf/FixelText-Bold.ttf differ diff --git a/fonts/ttf/FixelText-ExtraBold.ttf b/fonts/ttf/FixelText-ExtraBold.ttf index 95c1b6c3..847bbe9f 100644 Binary files a/fonts/ttf/FixelText-ExtraBold.ttf and b/fonts/ttf/FixelText-ExtraBold.ttf differ diff --git a/fonts/ttf/FixelText-ExtraLight.ttf b/fonts/ttf/FixelText-ExtraLight.ttf index 5f251214..c84df922 100644 Binary files a/fonts/ttf/FixelText-ExtraLight.ttf and b/fonts/ttf/FixelText-ExtraLight.ttf differ diff --git a/fonts/ttf/FixelText-Light.ttf b/fonts/ttf/FixelText-Light.ttf index 830f75bf..91d17777 100644 Binary files a/fonts/ttf/FixelText-Light.ttf and b/fonts/ttf/FixelText-Light.ttf differ diff --git a/fonts/ttf/FixelText-Medium.ttf b/fonts/ttf/FixelText-Medium.ttf index d218f726..a69fec8f 100644 Binary files a/fonts/ttf/FixelText-Medium.ttf and b/fonts/ttf/FixelText-Medium.ttf differ diff --git a/fonts/ttf/FixelText-Regular.ttf b/fonts/ttf/FixelText-Regular.ttf index e6d0cc95..5edcc455 100644 Binary files a/fonts/ttf/FixelText-Regular.ttf and b/fonts/ttf/FixelText-Regular.ttf differ diff --git a/fonts/ttf/FixelText-SemiBold.ttf b/fonts/ttf/FixelText-SemiBold.ttf index 4201e483..86f839ca 100644 Binary files a/fonts/ttf/FixelText-SemiBold.ttf and b/fonts/ttf/FixelText-SemiBold.ttf differ diff --git a/fonts/ttf/FixelText-Thin.ttf b/fonts/ttf/FixelText-Thin.ttf index 9495e8c8..61fde133 100644 Binary files a/fonts/ttf/FixelText-Thin.ttf and b/fonts/ttf/FixelText-Thin.ttf differ diff --git a/fonts/variable/FixelVariable.ttf b/fonts/variable/FixelVariable.ttf deleted file mode 100644 index 80432a4a..00000000 Binary files a/fonts/variable/FixelVariable.ttf and /dev/null differ diff --git a/fonts/variable/Fixel[wdth,wght].ttf b/fonts/variable/Fixel[wdth,wght].ttf new file mode 100644 index 00000000..cf0e2191 Binary files /dev/null and b/fonts/variable/Fixel[wdth,wght].ttf differ diff --git a/fonts/webfonts/Fixel-Black.woff2 b/fonts/webfonts/Fixel-Black.woff2 new file mode 100644 index 00000000..20b24681 Binary files /dev/null and b/fonts/webfonts/Fixel-Black.woff2 differ diff --git a/fonts/webfonts/Fixel-Bold.woff2 b/fonts/webfonts/Fixel-Bold.woff2 new file mode 100644 index 00000000..22617a0a Binary files /dev/null and b/fonts/webfonts/Fixel-Bold.woff2 differ diff --git a/fonts/webfonts/Fixel-ExtraBold.woff2 b/fonts/webfonts/Fixel-ExtraBold.woff2 new file mode 100644 index 00000000..3d7a2af3 Binary files /dev/null and b/fonts/webfonts/Fixel-ExtraBold.woff2 differ diff --git a/fonts/webfonts/Fixel-ExtraLight.woff2 b/fonts/webfonts/Fixel-ExtraLight.woff2 new file mode 100644 index 00000000..4ae928b4 Binary files /dev/null and b/fonts/webfonts/Fixel-ExtraLight.woff2 differ diff --git a/fonts/webfonts/Fixel-Light.woff2 b/fonts/webfonts/Fixel-Light.woff2 new file mode 100644 index 00000000..5b764ff0 Binary files /dev/null and b/fonts/webfonts/Fixel-Light.woff2 differ diff --git a/fonts/webfonts/Fixel-Medium.woff2 b/fonts/webfonts/Fixel-Medium.woff2 new file mode 100644 index 00000000..130c84c1 Binary files /dev/null and b/fonts/webfonts/Fixel-Medium.woff2 differ diff --git a/fonts/webfonts/Fixel-Regular.woff2 b/fonts/webfonts/Fixel-Regular.woff2 new file mode 100644 index 00000000..e38234d6 Binary files /dev/null and b/fonts/webfonts/Fixel-Regular.woff2 differ diff --git a/fonts/webfonts/Fixel-SemiBold.woff2 b/fonts/webfonts/Fixel-SemiBold.woff2 new file mode 100644 index 00000000..33f8ca7a Binary files /dev/null and b/fonts/webfonts/Fixel-SemiBold.woff2 differ diff --git a/fonts/webfonts/Fixel-Thin.woff2 b/fonts/webfonts/Fixel-Thin.woff2 new file mode 100644 index 00000000..50743470 Binary files /dev/null and b/fonts/webfonts/Fixel-Thin.woff2 differ diff --git a/fonts/webfonts/FixelDisplay-Black.woff2 b/fonts/webfonts/FixelDisplay-Black.woff2 deleted file mode 100644 index 8a592f63..00000000 Binary files a/fonts/webfonts/FixelDisplay-Black.woff2 and /dev/null differ diff --git a/fonts/webfonts/FixelDisplay-Bold.woff2 b/fonts/webfonts/FixelDisplay-Bold.woff2 deleted file mode 100644 index 32ef81d6..00000000 Binary files a/fonts/webfonts/FixelDisplay-Bold.woff2 and /dev/null differ diff --git a/fonts/webfonts/FixelDisplay-ExtraBold.woff2 b/fonts/webfonts/FixelDisplay-ExtraBold.woff2 deleted file mode 100644 index 9ba295f4..00000000 Binary files a/fonts/webfonts/FixelDisplay-ExtraBold.woff2 and /dev/null differ diff --git a/fonts/webfonts/FixelDisplay-ExtraLight.woff2 b/fonts/webfonts/FixelDisplay-ExtraLight.woff2 deleted file mode 100644 index 43fb86fd..00000000 Binary files a/fonts/webfonts/FixelDisplay-ExtraLight.woff2 and /dev/null differ diff --git a/fonts/webfonts/FixelDisplay-Light.woff2 b/fonts/webfonts/FixelDisplay-Light.woff2 deleted file mode 100644 index f1a67033..00000000 Binary files a/fonts/webfonts/FixelDisplay-Light.woff2 and /dev/null differ diff --git a/fonts/webfonts/FixelDisplay-Medium.woff2 b/fonts/webfonts/FixelDisplay-Medium.woff2 deleted file mode 100644 index b7c246c8..00000000 Binary files a/fonts/webfonts/FixelDisplay-Medium.woff2 and /dev/null differ diff --git a/fonts/webfonts/FixelDisplay-Regular.woff2 b/fonts/webfonts/FixelDisplay-Regular.woff2 deleted file mode 100644 index 0b3e2cd9..00000000 Binary files a/fonts/webfonts/FixelDisplay-Regular.woff2 and /dev/null differ diff --git a/fonts/webfonts/FixelDisplay-SemiBold.woff2 b/fonts/webfonts/FixelDisplay-SemiBold.woff2 deleted file mode 100644 index adc20f31..00000000 Binary files a/fonts/webfonts/FixelDisplay-SemiBold.woff2 and /dev/null differ diff --git a/fonts/webfonts/FixelDisplay-Thin.woff2 b/fonts/webfonts/FixelDisplay-Thin.woff2 deleted file mode 100644 index 089f8ccf..00000000 Binary files a/fonts/webfonts/FixelDisplay-Thin.woff2 and /dev/null differ diff --git a/fonts/webfonts/FixelText-Black.woff2 b/fonts/webfonts/FixelText-Black.woff2 index f006d3db..a22627e6 100644 Binary files a/fonts/webfonts/FixelText-Black.woff2 and b/fonts/webfonts/FixelText-Black.woff2 differ diff --git a/fonts/webfonts/FixelText-Bold.woff2 b/fonts/webfonts/FixelText-Bold.woff2 index fdcbcade..1c3695f7 100644 Binary files a/fonts/webfonts/FixelText-Bold.woff2 and b/fonts/webfonts/FixelText-Bold.woff2 differ diff --git a/fonts/webfonts/FixelText-ExtraBold.woff2 b/fonts/webfonts/FixelText-ExtraBold.woff2 index bb7bd558..8960152e 100644 Binary files a/fonts/webfonts/FixelText-ExtraBold.woff2 and b/fonts/webfonts/FixelText-ExtraBold.woff2 differ diff --git a/fonts/webfonts/FixelText-ExtraLight.woff2 b/fonts/webfonts/FixelText-ExtraLight.woff2 index e490b5d3..812be2e3 100644 Binary files a/fonts/webfonts/FixelText-ExtraLight.woff2 and b/fonts/webfonts/FixelText-ExtraLight.woff2 differ diff --git a/fonts/webfonts/FixelText-Light.woff2 b/fonts/webfonts/FixelText-Light.woff2 index aec3b694..832ccab2 100644 Binary files a/fonts/webfonts/FixelText-Light.woff2 and b/fonts/webfonts/FixelText-Light.woff2 differ diff --git a/fonts/webfonts/FixelText-Medium.woff2 b/fonts/webfonts/FixelText-Medium.woff2 index d87205b4..9962d07d 100644 Binary files a/fonts/webfonts/FixelText-Medium.woff2 and b/fonts/webfonts/FixelText-Medium.woff2 differ diff --git a/fonts/webfonts/FixelText-Regular.woff2 b/fonts/webfonts/FixelText-Regular.woff2 index 674334fb..62e43436 100644 Binary files a/fonts/webfonts/FixelText-Regular.woff2 and b/fonts/webfonts/FixelText-Regular.woff2 differ diff --git a/fonts/webfonts/FixelText-SemiBold.woff2 b/fonts/webfonts/FixelText-SemiBold.woff2 index 9a13f292..74ab3535 100644 Binary files a/fonts/webfonts/FixelText-SemiBold.woff2 and b/fonts/webfonts/FixelText-SemiBold.woff2 differ diff --git a/fonts/webfonts/FixelText-Thin.woff2 b/fonts/webfonts/FixelText-Thin.woff2 index dbc503db..3582539b 100644 Binary files a/fonts/webfonts/FixelText-Thin.woff2 and b/fonts/webfonts/FixelText-Thin.woff2 differ diff --git a/fonts/webfonts/Fixel[wdth,wght].woff2 b/fonts/webfonts/Fixel[wdth,wght].woff2 new file mode 100644 index 00000000..7e241074 Binary files /dev/null and b/fonts/webfonts/Fixel[wdth,wght].woff2 differ diff --git a/sources/Fixel.designspace b/sources/Fixel.designspace new file mode 100644 index 00000000..d1dfcf26 --- /dev/null +++ b/sources/Fixel.designspace @@ -0,0 +1,119 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/features.fea b/sources/FixelDisplay-Black.ufo/features.fea new file mode 100644 index 00000000..302ade93 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/features.fea @@ -0,0 +1,573 @@ +#> classes +#/> otclasses +@ss01_def = [A-cy A AE Aacute Abreve Acircumflex Adieresis Agrave Amacron Aogonek Aring Atilde Em-cy Eng G Gacute Gbreve Gcircumflex Gcommaaccent Gdotaccent Ha-cy Ia-cy J Jcircumflex K Ka-cy Kcommaaccent M N Nacute Ncaron Ncommaaccent Ntilde Q U-cy Ushort-cy V W Wacute Wcircumflex Wdieresis Wgrave X Y Yacute Ycircumflex Ydieresis Z Zacute Zcaron Zdotaccent Zhe-cy a-cy a aacute abreve acircumflex adieresis ae agrave amacron aogonek aring arrowdown arrowdown.case arrowleft arrowleft.case arrowright arrowright.case arrowup arrowup.case atilde b d dcaron dcroat de-cy e eacute ebreve ecaron ecircumflex edieresis edotaccent egrave el-cy emacron eogonek er-cy f f_f f_f_i f_f_l fi fl g gacute gbreve gcircumflex gcommaaccent gdotaccent germandbls hardsign-cy ia-cy ie-cy io-cy l lacute lcaron lcommaaccent ldot ljecyr lslash njecyr numero oe p q softsign-cy t tbar tcaron tcedilla tcommaaccent te-cy ve-cy yen yeru-cy]; +@ss01 = [A-cy.ss01 A.ss01 AE.ss01 Aacute.ss01 Abreve.ss01 Acircumflex.ss01 Adieresis.ss01 Agrave.ss01 Amacron.ss01 Aogonek.ss01 Aring.ss01 Atilde.ss01 Em-cy.ss01 Eng.ss01 G.ss01 Gacute.ss01 Gbreve.ss01 Gcircumflex.ss01 Gcommaaccent.ss01 Gdotaccent.ss01 Ha-cy.ss01 Ia-cy.ss01 J.ss01 Jcircumflex.ss01 K.ss01 Ka-cy.ss01 Kcommaaccent.ss01 M.ss01 N.ss01 Nacute.ss01 Ncaron.ss01 Ncommaaccent.ss01 Ntilde.ss01 Q.ss01 U-cy.ss01 Ushort-cy.ss01 V.ss01 W.ss01 Wacute.ss01 Wcircumflex.ss01 Wdieresis.ss01 Wgrave.ss01 X.ss01 Y.ss01 Yacute.ss01 Ycircumflex.ss01 Ydieresis.ss01 Z.ss01 Zacute.ss01 Zcaron.ss01 Zdotaccent.ss01 Zhe-cy.ss01 a-cy.ss01 a.ss01 aacute.ss01 abreve.ss01 acircumflex.ss01 adieresis.ss01 ae.ss01 agrave.ss01 amacron.ss01 aogonek.ss01 aring.ss01 arrowdown.ss01 arrowdown.ss01.case arrowleft.ss01 arrowleft.ss01.case arrowright.ss01 arrowright.ss01.case arrowup.ss01 arrowup.ss01.case atilde.ss01 b.ss01 d.ss01 dcaron.ss01 dcroat.ss01 de-cy.ss01 e.ss01 eacute.ss01 ebreve.ss01 ecaron.ss01 ecircumflex.ss01 edieresis.ss01 edotaccent.ss01 egrave.ss01 el-cy.ss01 emacron.ss01 eogonek.ss01 er-cy.ss01 f.ss01 f_f.ss01 f_f_i.ss01 f_f_l.ss01 fi.ss01 fl.ss01 g.ss01 gacute.ss01 gbreve.ss01 gcircumflex.ss01 gcommaaccent.ss01 gdotaccent.ss01 germandbls.ss01 hardsign-cy.ss01 ia-cy.ss01 ie-cy.ss01 io-cy.ss01 l.ss01 lacute.ss01 lcaron.ss01 lcommaaccent.ss01 ldot.ss01 ljecyr.ss01 lslash.ss01 njecyr.ss01 numero.ss01 oe.ss01 p.ss01 q.ss01 softsign-cy.ss01 t.ss01 tbar.ss01 tcaron.ss01 tcedilla.ss01 tcommaaccent.ss01 te-cy.ss01 ve-cy.ss01 yen.ss01 yeru-cy.ss01]; +@case = [arrowdown.case arrowdown.ss01.case arrowleft.case arrowleft.ss01.case arrowright.case arrowright.ss01.case arrowup.case arrowup.ss01.case backslash.case bar.case braceleft.case braceright.case bracketleft.case bracketright.case brokenbar.case bullet.case colon.case emdash.case endash.case exclamdown.case guillemetleft.case guillemetright.case guilsinglleft.case guilsinglright.case hyphen.case parenleft.case parenright.case questiondown.case semicolon.case at.case bracketangleleft.case bracketangleright.case slash.case]; +@case_def = [arrowdown arrowdown.ss01 arrowleft arrowleft.ss01 arrowright arrowright.ss01 arrowup arrowup.ss01 backslash bar braceleft braceright bracketleft bracketright brokenbar bullet colon emdash endash exclamdown guillemetleft guillemetright guilsinglleft guilsinglright hyphen parenleft parenright questiondown semicolon at bracketangleleft bracketangleright slash]; +@cpsp = [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 Agrave Aacute Acircumflex Atilde Adieresis Aring AE Ccedilla Egrave Eacute Ecircumflex Edieresis Igrave Iacute Icircumflex Idieresis Eth Ntilde Ograve Oacute Ocircumflex Otilde Odieresis Oslash Ugrave Uacute Ucircumflex Udieresis Yacute Thorn Amacron Abreve Aogonek Cacute Ccircumflex Cdotaccent Ccaron Dcaron Dcroat Emacron Ebreve Edotaccent Eogonek Ecaron Gcircumflex Gbreve Gdotaccent Gcommaaccent Hcircumflex Hbar Itilde Imacron Ibreve Iogonek Idotaccent IJ Jcircumflex Kcommaaccent Lacute Lcommaaccent Lcaron Ldot Lslash Nacute Ncommaaccent Ncaron Eng Omacron Obreve Ohungarumlaut OE Racute Rcommaaccent Rcaron Sacute Scircumflex Scedilla Scaron Tcedilla Tcaron Tbar Utilde Umacron Ubreve Uring Uhungarumlaut Uogonek Wcircumflex Ycircumflex Ydieresis Zacute Zdotaccent Zcaron Schwa Acaron Gacute AEacute Oslashacute Scommaaccent Tcommaaccent Delta Omega Iegravecyr uniF43A A-cy.accented E-cy.accented Ii-cy.accented O-cy.accented U-cy.accented Yeru-cy.accented Ereversed-cy.accented Iu-cy.accented Ia-cy.accented Io-cy.accented uniF498 uniF49A uniF49C uniF49E uniF4C6 uniF4CC uniF4D2 uniF4D4 uniF4D6 uniF4D8 uniF50E uniF510 uniF512 uniF514 uniF516 uniF518 uniF51A uniF51C uniF51E Yeru-cymacron uniF522 uniF524 uniF526 uniF528 uniF52A uniF52C uniF52E uniF532 uniF536 uniF538 uniF830 uniF833 uniF839 uniF86F uniF872 uniF875 uniF878 uniF87B uniF87E Io-cy Djecyr Gjecyr E-cy Dze-cy I-cy Yi-cy Jecyr Ljecyr Njecyr Tshecyr Kjecyr Igravecyr Ushort-cy Dzhecyr A-cy Be-cy Ve-cy Ge-cy De-cy Ie-cy Zhe-cy Ze-cy Ii-cy Iishort-cy Ka-cy El-cy Em-cy En-cy O-cy Pe-cy Er-cy Es-cy Te-cy U-cy Ef-cy Ha-cy Tse-cy Che-cy Sha-cy Shcha-cy Hardsign-cy Yeru-cy Softsign-cy Ereversed-cy Iu-cy Ia-cy Omegacyr Yatcyr Eiotifiedcyr Yuslittlecyr Yuslittleiotifiedcyr Yusbigcyr Yusbigiotifiedcyr Ksicyr Psicyr Fitacyr Izhitsacyr Izhitsagravedblcyr Ukcyr Omegaroundcyr Omegatitlocyr Otcyr Koppacyr Ishortsharptailcyr Semisoftcyr Ertickcyr Gheupturn-cy Gestrokecyr Gehookcyr Zhetailcyr Zetailcyr Katailcyr Kaverticalstrokecyr Kastrokecyr Kabashkcyr Entailcyr Engecyr Pehookcyr Haabkhcyr Estailcyr Tetailcyr Ustraightcyr Ustraightstrokecyr Xatailcyr Tetsecyr Chetailcyr Chevertcyr Shhacyr Cheabkhcyr Cheabkhtailcyr Palochkacyr Zhebrevecyr Kahookcyr Elsharptailcyr Enhookcyr Ensharptailcyr Chekhakascyr Emsharptailcyr Abrevecyr Adieresiscyr Aiecyr Iebrevecyr Schwacyr Schwadieresiscyr Zhedieresiscyr Zedieresiscyr Dzeabkhcyr Imacroncyr Idieresiscyr Odieresiscyr Obarcyr Obardieresiscyr Ereverseddieresiscyr Umacroncyr Udieresiscyr Uacutedblcyr Chedieresiscyr Getailcyr Ylongdieresiscyr Gehookstrokecyr Hahookcyr Hastrokecyr Dekomicyr Djekomicyr Zjekomicyr Dzjekomicyr Ljekomicyr Njekomicyr Sjekomicyr Tjekomicyr Reversedzecyr Elhookcyr Lhacyr Rhacyr Yaecyr Qacyr Wecyr Kaaleutcyr Elmiddlehookcyr Enmiddlehookcyr Petailcyr Shhatailcyr Enhookleftcyr Dzzhecyr Dchecyr Eltailcyr Wgrave Wacute Wdieresis Germandbls uni1EBC Zemlya-cy Dzelo-cy DzeReversed-cy Iota-cy Djerv-cy UkMonograph-cy OmegaBroad-cy YerNeutral-cy YeruBackYer-cy YatIotified-cy YuReversed-cy IotifiedA-cy YusClosedlittle-cy YusBlended-cy YusiotifiedClosedLittle-cy Yn-cy TseReversed-cy DeSoft-cy ElSoft-cy EmSoft-cy OMonocular-cy OBinocular-cy ODoubleMonocular-cy Dwe-cy Dzwe-cy Zhwe-cy Cche-cy Dzze-cy TeWithMiddleHook-cy Twe-cy Tswe-cy Tsse-cy Tche-cy Hwe-cy Shwe-cy DoubleO-cy CrossedO-cy A-cy.ss01 A.ss01 AE.ss01 Aacute.ss01 Abreve.ss01 Acircumflex.ss01 Adieresis.ss01 Agrave.ss01 Amacron.ss01 Aogonek.ss01 Aring.ss01 Atilde.ss01 Em-cy.ss01 Eng.ss01 G.ss01 Gacute.ss01 Gbreve.ss01 Gcircumflex.ss01 Gcommaaccent.ss01 Gdotaccent.ss01 Ha-cy.ss01 Ia-cy.ss01 J.ss01 Jcircumflex.ss01 K.ss01 Ka-cy.ss01 Kcommaaccent.ss01 M.ss01 N.ss01 Nacute.ss01 Ncaron.ss01 Ncommaaccent.ss01 Ntilde.ss01 Q.ss01 U-cy.ss01 Ushort-cy.ss01 V.ss01 W.ss01 Wacute.ss01 Wcircumflex.ss01 Wdieresis.ss01 Wgrave.ss01 X.ss01 Y.ss01 Yacute.ss01 Ycircumflex.ss01 Ydieresis.ss01 Z.ss01 Zacute.ss01 Zcaron.ss01 Zdotaccent.ss01 Zetailcyr.BSH Gestrokecyr.BSH Estailcyr.BSH Estailcyr.CHU Zhe-cy.ss01]; +@locl_BGR = [De-cy.BGR Ef-cy.BGR El-cy.BGR de-cy.BGR eiotifiedcyr.BGR el-cy.BGR ge-cy.BGR hardsign-cy.BGR ii-cy.BGR iishort-cy.BGR iotifieda-cy.BGR iu-cy.BGR ka-cy.BGR pe-cy.BGR sha-cy.BGR shcha-cy.BGR softsign-cy.BGR te-cy.BGR tse-cy.BGR ve-cy.BGR yatcyr.BGR yusbigiotifiedcyr.BGR ze-cy.BGR zhe-cy.BGR]; +@locl_def = [De-cy Ef-cy El-cy de-cy eiotifiedcyr el-cy ge-cy hardsign-cy ii-cy iishort-cy iotifieda-cy iu-cy ka-cy pe-cy sha-cy shcha-cy softsign-cy te-cy tse-cy ve-cy yatcyr yusbigiotifiedcyr ze-cy zhe-cy]; +@locl.SRB = [be-cy.SRB iegravecyr.SRB igravecyr.SRB]; +@loclSRB_def = [be-cy iegravecyr igravecyr]; +@accent = [grave acute.case grave.case acute]; +@pics = [neptune leo virgo bishopwhite knightwhite rookblack bishopblack knightblack heartwhite diamondwhite-misc spadewhite heart clubwhite crossedswords flower floretteblack florettewhite floretteoutlinedpetalledblackeight]; +@pics_def = [A B C D E F G H I J K L M N O P Q R]; +#/< otclasses + +#/> tags +@tag.omultiocular-cy.alt = [omultiocular-cy]; +@tag.yi-cy_yi-cy.alt = [uniE000]; +#/< tags +#< classes + +# automatic +@Uppercase = [ A Aacute Abreve Acircumflex Adieresis Agrave Amacron Aogonek Aring Atilde AE B C Cacute Ccaron Ccedilla Ccircumflex Cdotaccent D Eth Dcaron Dcroat E Eacute Ebreve Ecaron Ecircumflex Edieresis Edotaccent Egrave Emacron Eogonek F G Gacute Gbreve Gcircumflex Gcommaaccent Gdotaccent H Hbar Hcircumflex I IJ Iacute Ibreve Icircumflex Idieresis Idotaccent Igrave Imacron Iogonek Itilde J Jcircumflex K Kcommaaccent L Lacute Lcaron Lcommaaccent Ldot Lslash M N Nacute Ncaron Ncommaaccent Eng Ntilde O Oacute Obreve Ocircumflex Odieresis Ograve Ohungarumlaut Omacron Oslash Otilde OE P Thorn Q R Racute Rcaron Rcommaaccent S Sacute Scaron Scedilla Scircumflex Scommaaccent Germandbls T Tbar Tcaron Tcedilla Tcommaaccent U Uacute Ubreve Ucircumflex Udieresis Ugrave Uhungarumlaut Umacron Uogonek Uring Utilde V W Wacute Wcircumflex Wdieresis Wgrave X Y Yacute Ycircumflex Ydieresis Z Zacute Zcaron Zdotaccent A.ss01 Aacute.ss01 Abreve.ss01 Acircumflex.ss01 Adieresis.ss01 Agrave.ss01 Amacron.ss01 Aogonek.ss01 Aring.ss01 Atilde.ss01 AE.ss01 G.ss01 Gacute.ss01 Gbreve.ss01 Gcircumflex.ss01 Gcommaaccent.ss01 Gdotaccent.ss01 J.ss01 Jcircumflex.ss01 K.ss01 Kcommaaccent.ss01 M.ss01 N.ss01 Nacute.ss01 Ncaron.ss01 Ncommaaccent.ss01 Eng.ss01 Ntilde.ss01 Q.ss01 V.ss01 W.ss01 Wacute.ss01 Wcircumflex.ss01 Wdieresis.ss01 Wgrave.ss01 X.ss01 Y.ss01 Yacute.ss01 Ycircumflex.ss01 Ydieresis.ss01 Z.ss01 Zacute.ss01 Zcaron.ss01 Zdotaccent.ss01 A-cy Be-cy Ve-cy Ge-cy Gheupturn-cy De-cy Ie-cy Io-cy Zhe-cy Ze-cy Ii-cy Iishort-cy Ka-cy El-cy Em-cy En-cy O-cy Pe-cy Er-cy Es-cy Te-cy U-cy Ushort-cy Ef-cy Ha-cy Che-cy Tse-cy Sha-cy Shcha-cy Softsign-cy Hardsign-cy Yeru-cy Dze-cy E-cy Ereversed-cy I-cy Yi-cy Iu-cy Ia-cy A-cy.ss01 Zhe-cy.ss01 Ka-cy.ss01 Em-cy.ss01 U-cy.ss01 Ushort-cy.ss01 Ha-cy.ss01 Ia-cy.ss01 ]; + +# Prefix: Languagesystems +# automatic +languagesystem DFLT dflt; + +languagesystem latn dflt; +languagesystem latn ROM; +languagesystem latn MOL; +languagesystem latn CAT; +languagesystem cyrl dflt; +languagesystem cyrl BGR; +languagesystem cyrl BSH; +languagesystem cyrl CHU; +languagesystem cyrl SRB; +languagesystem cyrl MKD; + +lookup liga_accent { + sub @accent by [grave grave grave grave]; +} liga_accent; +feature aalt { +# Access All Alternates + +#> feature + feature locl; + feature sups; + feature case; + feature lnum; + feature pnum; + feature tnum; + feature onum; + feature salt; + feature ss01; + feature hist; +#< feature +} aalt; +feature ccmp { +# automatic +lookup ccmp_Other_1 { + @Markscomb = [dieresis dotaccent grave acute hungarumlaut circumflex caron breve ring tilde macron]; + @MarkscombCase = [dieresis.case dotaccent.case grave.case acute.case hungarumlaut.case circumflex.case caron.case breve.case ring.case tilde.case macron.case]; + sub @Markscomb @Markscomb' by @MarkscombCase; + sub @cpsp @Markscomb' by @MarkscombCase; +} ccmp_Other_1; + +lookup ccmp_Other_2 { + sub @Markscomb' @MarkscombCase by @MarkscombCase; + sub @MarkscombCase @Markscomb' by @MarkscombCase; +} ccmp_Other_2; +} ccmp; + +feature locl { +# automatic + +script latn; + language ROM; + language MOL; + sub Scedilla by Scommaaccent; + sub scedilla by scommaaccent; + sub Tcedilla by Tcommaaccent; + sub tcedilla by tcommaaccent; + +script latn; + language CAT; + sub l' periodcentered' l by ldot; + sub L' periodcentered' L by Ldot; + +script cyrl; # Cyrillic + language SRB ; # Serbian + + lookup locl_SRB_MCD { + # GSUB lookup 20, type 11 (Single) + sub @loclSRB_def by @locl.SRB; + } locl_SRB_MCD; + + language MKD ; # Serbian + lookup locl_SRB_MCD; + + language BSH ; # Bashkir + sub [Gestrokecyr gestrokecyr Zetailcyr zetailcyr] by [Gestrokecyr.BSH gestrokecyr.BSH Zetailcyr.BSH zetailcyr.BSH]; + sub [Estailcyr estailcyr] by [Estailcyr.BSH estailcyr.BSH]; + + language CHU ; # Chuvash + sub [Estailcyr estailcyr] by [Estailcyr.CHU estailcyr.CHU]; + + language BGR ; # Bulgarian + sub @locl_def by @locl_BGR; + +} locl; + +feature sups { +# Superscript + +#> feature + sub one by onesuperior; + sub three by threesuperior; + sub two by twosuperior; +#< feature +} sups; +feature ordn { +# Ordinals + +#> feature + sub [zero one two three four five six seven eight nine] [A a]' by ordfeminine; + sub [zero one two three four five six seven eight nine] [O o]' by ordmasculine; + sub N o period by numero; +#< feature +} ordn; +feature case { +# Case Sensitive Forms + +#> feature + + sub @case_def by @case; + +#< feature +} case; +feature liga { +# Standard Ligatures + +#> feature +sub f f i by f_f_i; +sub f f l by f_f_l; +sub f f by f_f; +sub f i by fi; +sub f l by fl; +sub yi-cy yi-cy by uniE000; +sub hyphen greater by arrowright; +sub less hyphen by arrowleft; +sub backslash bar slash by arrowdown; +sub slash bar backslash by arrowup; + + lookup accent_2 { + sub E-cy @accent' lookup liga_accent; + sub I-cy @accent' lookup liga_accent; + sub Yi-cy @accent' lookup liga_accent; + sub A-cy @accent' lookup liga_accent; + sub Ie-cy @accent' lookup liga_accent; + sub Ii-cy @accent' lookup liga_accent; + sub O-cy @accent' lookup liga_accent; + sub U-cy @accent' lookup liga_accent; + sub Yeru-cy @accent' lookup liga_accent; + sub Ereversed-cy @accent' lookup liga_accent; + sub Iu-cy @accent' lookup liga_accent; + sub Ia-cy @accent' lookup liga_accent; + sub Io-cy @accent' lookup liga_accent; + sub Yatcyr @accent' lookup liga_accent; + + sub e-cy @accent' lookup liga_accent; + sub i-cy @accent' lookup liga_accent; + sub yi-cy @accent' lookup liga_accent; + sub a-cy @accent' lookup liga_accent; + sub ie-cy @accent' lookup liga_accent; + sub ii-cy @accent' lookup liga_accent; + sub o-cy @accent' lookup liga_accent; + sub u-cy @accent' lookup liga_accent; + sub yeru-cy @accent' lookup liga_accent; + sub ereversed-cy @accent' lookup liga_accent; + sub iu-cy @accent' lookup liga_accent; + sub ia-cy @accent' lookup liga_accent; + sub io-cy @accent' lookup liga_accent; + sub yatcyr @accent' lookup liga_accent; + } accent_2; + + lookup accent_3 { + sub E-cy grave by uniF45D; + sub I-cy grave by uniF45E; + sub Yi-cy grave by uniF45F; + sub A-cy grave by A-cy.accented; + sub Ie-cy grave by E-cy.accented; + sub Ii-cy grave by Ii-cy.accented; + sub O-cy grave by O-cy.accented; + sub U-cy grave by U-cy.accented; + sub Yeru-cy grave by Yeru-cy.accented; + sub Ereversed-cy grave by Ereversed-cy.accented; + sub Iu-cy grave by Iu-cy.accented; + sub Ia-cy grave by Ia-cy.accented; + sub Io-cy grave by Io-cy.accented; + sub Yatcyr grave by uniF478; + + sub e-cy grave by uniF475; + sub i-cy grave by uniF476; + sub yi-cy grave by uniF477; + sub a-cy grave by a-cy.accented; + sub ie-cy grave by e-cy.accented; + sub ii-cy grave by ii-cy.accented; + sub o-cy grave by o-cy.accented; + sub u-cy grave by u-cy.accented; + sub yeru-cy grave by yeru-cy.accented; + sub ereversed-cy grave by ereversed-cy.accented; + sub iu-cy grave by iu-cy.accented; + sub ia-cy grave by ia-cy.accented; + sub io-cy grave by io-cy.accented; + sub yatcyr grave by uniF479; + } accent_3; + +#< feature +} liga; +feature dlig { +# Discretionary Ligatures + +#> feature + +sub M a c P a w l o g o by uniE01A; +sub M P a w l o g o by uniE01A; +sub M P l o g o by uniE01A; +sub M A C P A W L O G O by uniE01A; +sub m a c p a w l o g o by uniE01A; +sub t r i d e n t by neptune; +sub t r y z u b by neptune; +sub u k r a i n e s i g n by neptune; +sub T R I D E N T by neptune; +sub T R Y Z U B by neptune; +sub U k r a i n e S i g n by neptune; +sub T r y z u b by neptune; +sub T r i d e n t by neptune; +sub Te-cy Er-cy Ii-cy Ze-cy U-cy Be-cy by neptune; + +#< feature +} dlig; +feature lnum { +# Lining Figures + +#> feature + sub eight.osf by eight.tf; + sub eight by eight.tf; + sub five.osf by five.tf; + sub five by five.tf; + sub four.osf by four.tf; + sub four by four.tf; + sub nine.osf by nine.tf; + sub nine by nine.tf; + sub one.osf by one.tf; + sub one by one.tf; + sub seven.osf by seven.tf; + sub seven by seven.tf; + sub six.osf by six.tf; + sub six by six.tf; + sub three.osf by three.tf; + sub three by three.tf; + sub two.osf by two.tf; + sub two by two.tf; + sub zero.osf by zero.tf; + sub zero by zero.tf; +#< feature +} lnum; +feature pnum { +# Proportional Figures + +#> feature + sub eight.tf by eight.osf; + sub eight by eight.osf; + sub five.tf by five.osf; + sub five by five.osf; + sub four.tf by four.osf; + sub four by four.osf; + sub nine.tf by nine.osf; + sub nine by nine.osf; + sub one.tf by one.osf; + sub one by one.osf; + sub seven.tf by seven.osf; + sub seven by seven.osf; + sub six.tf by six.osf; + sub six by six.osf; + sub three.tf by three.osf; + sub three by three.osf; + sub two.tf by two.osf; + sub two by two.osf; + sub zero.tf by zero.osf; + sub zero by zero.osf; +#< feature +} pnum; +feature tnum { +# Tabular Figures + +#> feature + sub eight by eight.tf; + sub eight.osf by eight.tf; + sub five by five.tf; + sub five.osf by five.tf; + sub four by four.tf; + sub four.osf by four.tf; + sub nine by nine.tf; + sub nine.osf by nine.tf; + sub one by one.tf; + sub one.osf by one.tf; + sub seven by seven.tf; + sub seven.osf by seven.tf; + sub six by six.tf; + sub six.osf by six.tf; + sub three by three.tf; + sub three.osf by three.tf; + sub two by two.tf; + sub two.osf by two.tf; + sub zero by zero.tf; + sub zero.osf by zero.tf; +#< feature +} tnum; +feature onum { +# Oldstyle Figures + +#> feature + sub eight by eight.osf; + sub eight.tf by eight.osf; + sub five by five.osf; + sub five.tf by five.osf; + sub four by four.osf; + sub four.tf by four.osf; + sub nine by nine.osf; + sub nine.tf by nine.osf; + sub one by one.osf; + sub one.tf by one.osf; + sub seven by seven.osf; + sub seven.tf by seven.osf; + sub six by six.osf; + sub six.tf by six.osf; + sub three by three.osf; + sub three.tf by three.osf; + sub two by two.osf; + sub two.tf by two.osf; + sub zero by zero.osf; + sub zero.tf by zero.osf; +#< feature +} onum; +feature salt { +# Stylistic Alternates + +#> feature + sub A from [A.ss01]; + sub A-cy from [A-cy.ss01]; + sub AE from [AE.ss01]; + sub Aacute from [Aacute.ss01]; + sub Abreve from [Abreve.ss01]; + sub Acircumflex from [Acircumflex.ss01]; + sub Adieresis from [Adieresis.ss01]; + sub Agrave from [Agrave.ss01]; + sub Amacron from [Amacron.ss01]; + sub Aogonek from [Aogonek.ss01]; + sub Aring from [Aring.ss01]; + sub Atilde from [Atilde.ss01]; + sub Em-cy from [Em-cy.ss01]; + sub Eng from [Eng.ss01]; + sub G from [G.ss01]; + sub Gacute from [Gacute.ss01]; + sub Gbreve from [Gbreve.ss01]; + sub Gcircumflex from [Gcircumflex.ss01]; + sub Gcommaaccent from [Gcommaaccent.ss01]; + sub Gdotaccent from [Gdotaccent.ss01]; + sub Ha-cy from [Ha-cy.ss01]; + sub Ia-cy from [Ia-cy.ss01]; + sub J from [J.ss01]; + sub Jcircumflex from [Jcircumflex.ss01]; + sub K from [K.ss01]; + sub Ka-cy from [Ka-cy.ss01]; + sub Kcommaaccent from [Kcommaaccent.ss01]; + sub M from [M.ss01]; + sub N from [N.ss01]; + sub Nacute from [Nacute.ss01]; + sub Ncaron from [Ncaron.ss01]; + sub Ncommaaccent from [Ncommaaccent.ss01]; + sub Ntilde from [Ntilde.ss01]; + sub Q from [Q.ss01]; + sub U-cy from [U-cy.ss01]; + sub Ushort-cy from [Ushort-cy.ss01]; + sub V from [V.ss01]; + sub W from [W.ss01]; + sub Wacute from [Wacute.ss01]; + sub Wcircumflex from [Wcircumflex.ss01]; + sub Wdieresis from [Wdieresis.ss01]; + sub Wgrave from [Wgrave.ss01]; + sub X from [X.ss01]; + sub Y from [Y.ss01]; + sub Yacute from [Yacute.ss01]; + sub Ycircumflex from [Ycircumflex.ss01]; + sub Ydieresis from [Ydieresis.ss01]; + sub Z from [Z.ss01]; + sub Zacute from [Zacute.ss01]; + sub Zcaron from [Zcaron.ss01]; + sub Zdotaccent from [Zdotaccent.ss01]; + sub Zhe-cy from [Zhe-cy.ss01]; + sub a from [a.ss01]; + sub a-cy from [a-cy.ss01]; + sub aacute from [aacute.ss01]; + sub abreve from [abreve.ss01]; + sub acircumflex from [acircumflex.ss01]; + sub adieresis from [adieresis.ss01]; + sub ae from [ae.ss01]; + sub agrave from [agrave.ss01]; + sub amacron from [amacron.ss01]; + sub aogonek from [aogonek.ss01]; + sub aring from [aring.ss01]; + sub arrowdown from [arrowdown.ss01]; + sub arrowleft from [arrowleft.ss01]; + sub arrowright from [arrowright.ss01]; + sub arrowup from [arrowup.ss01]; + sub atilde from [atilde.ss01]; + sub b from [b.ss01]; + sub caron from [caron.salt]; + sub commaaccentcomb from [commaaccentcomb.salt]; + sub d from [d.ss01]; + sub dcaron from [dcaron.ss01]; + sub dcroat from [dcroat.ss01]; + sub de-cy from [de-cy.ss01]; + sub e from [e.ss01]; + sub eacute from [eacute.ss01]; + sub ebreve from [ebreve.ss01]; + sub ecaron from [ecaron.ss01]; + sub ecircumflex from [ecircumflex.ss01]; + sub edieresis from [edieresis.ss01]; + sub edotaccent from [edotaccent.ss01]; + sub egrave from [egrave.ss01]; + sub el-cy from [el-cy.ss01]; + sub emacron from [emacron.ss01]; + sub eogonek from [eogonek.ss01]; + sub er-cy from [er-cy.ss01]; + sub f from [f.ss01]; + sub f_f from [f_f.ss01]; + sub f_f_i from [f_f_i.ss01]; + sub f_f_l from [f_f_l.ss01]; + sub fi from [fi.ss01]; + sub fl from [fl.ss01]; + sub g from [g.ss01]; + sub gacute from [gacute.ss01]; + sub gbreve from [gbreve.ss01]; + sub gcircumflex from [gcircumflex.ss01]; + sub gcommaaccent from [gcommaaccent.ss01]; + sub gdotaccent from [gdotaccent.ss01]; + sub germandbls from [germandbls.ss01]; + sub hardsign-cy from [hardsign-cy.ss01]; + sub ia-cy from [ia-cy.ss01]; + sub ie-cy from [ie-cy.ss01]; + sub io-cy from [io-cy.ss01]; + sub l from [l.ss01]; + sub lacute from [lacute.ss01]; + sub lcaron from [lcaron.ss01]; + sub lcommaaccent from [lcommaaccent.ss01]; + sub ldot from [ldot.ss01]; + sub ljecyr from [ljecyr.ss01]; + sub lslash from [lslash.ss01]; + sub njecyr from [njecyr.ss01]; + sub numero from [numero.ss01]; + sub oe from [oe.ss01]; + sub p from [p.ss01]; + sub q from [q.ss01]; + sub softsign-cy from [softsign-cy.ss01]; + sub t from [t.ss01]; + sub tbar from [tbar.ss01]; + sub tcaron from [tcaron.ss01]; + sub tcedilla from [tcedilla.ss01]; + sub tcommaaccent from [tcommaaccent.ss01]; + sub te-cy from [te-cy.ss01]; + sub uniE000 from [uniE000.alt]; + sub ve-cy from [ve-cy.ss01]; + sub yen from [yen.ss01]; + sub yeru-cy from [yeru-cy.ss01]; +#< feature +} salt; +feature ss03 { +# Stylistic Set 01–20 + +#> feature + featureNames { + name "Bulgarian forms"; + name 1 "Bulgarian forms"; + }; + + sub @locl_def by @locl_BGR; + +#< feature +} ss03; +feature ss04 { +# Stylistic Set 01–20 + +#> feature + featureNames { + name "Serbian/Macedonian forms"; + name 1 "Serbian/Macedonian forms"; + }; + + sub @loclSRB_def by @locl.SRB; + +#< feature +} ss04; +feature ss01 { +# Stylistic Set 01–20 + +#> feature + + featureNames { + name "Humanistic forms"; + name 1 "Humanistic forms"; + }; + + sub @ss01_def by @ss01; + +#< feature +} ss01; +feature ss05 { +# Stylistic Set 01–20 + +#> feature + + featureNames { + name "Ukrainian pictograms"; + name 1 "Ukrainian pictograms"; + }; + + sub @pics_def by @pics; + +#< feature +} ss05; +feature hist { +# Historical Forms + +#> feature + sub e-cy by e-cy.hist; + sub s by longs; +#< feature +} hist; +feature frac { +# Fractions + +#> feature +lookup frac_precomposed { + + sub one slash four by onequarter; + sub one slash two by onehalf; + sub three slash four by threequarters; + sub one fraction four by onequarter; + sub one fraction two by onehalf; + sub three fraction four by threequarters; +} frac_precomposed; +#< feature +} frac; +feature cpsp { +# Capital Spacing + +#> feature + + pos @cpsp <5 0 10 0>; + +#< feature +} cpsp; +feature dnom { +# Denominator + +#> feature + sub thousandscyr by thousandscyr.dnom; +#< feature +} dnom; diff --git a/sources/FixelDisplay-Black.ufo/fontinfo.plist b/sources/FixelDisplay-Black.ufo/fontinfo.plist new file mode 100644 index 00000000..8c746c9b --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/fontinfo.plist @@ -0,0 +1,207 @@ + + + + + ascender + 720 + capHeight + 700 + descender + -200 + familyName + Fixel Display + guidelines + + + angle + 0 + name + m + x + 0 + y + -1252 + + + angle + 0 + name + m + x + 0 + y + 189 + + + italicAngle + 0 + openTypeGaspRangeRecords + + + rangeGaspBehavior + + 0 + 1 + 2 + 3 + + rangeMaxPPEM + 65535 + + + openTypeHeadCreated + 2023/09/05 09:25:50 + openTypeHeadFlags + + + openTypeHheaAscender + 720 + openTypeHheaCaretOffset + -0 + openTypeHheaDescender + -190 + openTypeHheaLineGap + 100 + openTypeNameDesigner + AlfaBravo + openTypeNameDesignerURL + https://alfabravo.design/ + openTypeNameManufacturer + Kyrylo Tkachov, Marchela Mozhyna, Serhii Makarenko, Maria Weinstein, Zakhar Kryvoshyya + + openTypeNameManufacturerURL + https://macpaw.com/ + openTypeNamePreferredFamilyName + Fixel Display + openTypeNamePreferredSubfamilyName + Black + openTypeNameVersion + Version 1.200 + openTypeOS2CodePageRanges + + 0 + 1 + 2 + 4 + 7 + 29 + + openTypeOS2Panose + + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + + openTypeOS2Selection + + + openTypeOS2StrikeoutPosition + 300 + openTypeOS2StrikeoutSize + 50 + openTypeOS2SubscriptXOffset + -0 + openTypeOS2SubscriptXSize + 650 + openTypeOS2SubscriptYOffset + 75 + openTypeOS2SubscriptYSize + 600 + openTypeOS2SuperscriptXOffset + -0 + openTypeOS2SuperscriptXSize + 650 + openTypeOS2SuperscriptYOffset + 350 + openTypeOS2SuperscriptYSize + 600 + openTypeOS2Type + + 2 + + openTypeOS2TypoAscender + 720 + openTypeOS2TypoDescender + -200 + openTypeOS2TypoLineGap + 290 + openTypeOS2UnicodeRanges + + 0 + 1 + 2 + 9 + 31 + 33 + 60 + + openTypeOS2WeightClass + 900 + openTypeOS2WidthClass + 5 + openTypeOS2WinAscent + 750 + openTypeOS2WinDescent + 250 + postscriptBlueFuzz + 1 + postscriptBlueScale + 0.039625 + postscriptBlueShift + 7 + postscriptBlueValues + + -20 + 0 + + postscriptFontName + FixelDisplay-Black + postscriptForceBold + + postscriptFullName + Fixel Display Black + postscriptIsFixedPitch + + postscriptStemSnapH + + 69 + 74 + 76 + 80 + 99 + + postscriptStemSnapV + + 74 + 80 + 93 + + postscriptUnderlinePosition + -100 + postscriptUnderlineThickness + 50 + postscriptWeightName + Black + styleMapFamilyName + Fixel Display Black + styleMapStyleName + regular + styleName + Black + unitsPerEm + 1000 + versionMajor + 1 + versionMinor + 200 + xHeight + 520 + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/A_-cy.accented.glif b/sources/FixelDisplay-Black.ufo/glyphs/A_-cy.accented.glif new file mode 100644 index 00000000..a08037a8 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/A_-cy.accented.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+acute.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/A_-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/A_-cy.glif new file mode 100644 index 00000000..cb7676ab --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/A_-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/A_-cy.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/A_-cy.ss01.glif new file mode 100644 index 00000000..7a369b76 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/A_-cy.ss01.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + com.fontlab.recipe + A + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/A_.glif b/sources/FixelDisplay-Black.ufo/glyphs/A_.glif new file mode 100644 index 00000000..5956399b --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/A_.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/A_.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/A_.ss01.glif new file mode 100644 index 00000000..1b75bfc1 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/A_.ss01.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/A_E_.glif b/sources/FixelDisplay-Black.ufo/glyphs/A_E_.glif new file mode 100644 index 00000000..1f4513dd --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/A_E_.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + A + com.fontlab.metricsRight + E + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/A_E_.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/A_E_.ss01.glif new file mode 100644 index 00000000..89fb2e88 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/A_E_.ss01.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + A.ss01 + com.fontlab.metricsRight + E + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/A_E_acute.glif b/sources/FixelDisplay-Black.ufo/glyphs/A_E_acute.glif new file mode 100644 index 00000000..4f89b855 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/A_E_acute.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + AE+acute.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/A_acute.glif b/sources/FixelDisplay-Black.ufo/glyphs/A_acute.glif new file mode 100644 index 00000000..b4bf0061 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/A_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+acute.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/A_acute.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/A_acute.ss01.glif new file mode 100644 index 00000000..da3c32b6 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/A_acute.ss01.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + A.ss01+acute.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/A_breve.glif b/sources/FixelDisplay-Black.ufo/glyphs/A_breve.glif new file mode 100644 index 00000000..890fe7cc --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/A_breve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+breve.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/A_breve.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/A_breve.ss01.glif new file mode 100644 index 00000000..36b11452 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/A_breve.ss01.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + A.ss01+breve.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/A_brevecyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/A_brevecyr.glif new file mode 100644 index 00000000..2dded329 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/A_brevecyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+breve.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/A_caron.glif b/sources/FixelDisplay-Black.ufo/glyphs/A_caron.glif new file mode 100644 index 00000000..2413f191 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/A_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+caron.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/A_circumflex.glif b/sources/FixelDisplay-Black.ufo/glyphs/A_circumflex.glif new file mode 100644 index 00000000..b438a904 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/A_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+circumflex.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/A_circumflex.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/A_circumflex.ss01.glif new file mode 100644 index 00000000..78f4abb2 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/A_circumflex.ss01.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + A.ss01+circumflex.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/A_dieresis.glif b/sources/FixelDisplay-Black.ufo/glyphs/A_dieresis.glif new file mode 100644 index 00000000..d338986e --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/A_dieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+dieresis.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/A_dieresis.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/A_dieresis.ss01.glif new file mode 100644 index 00000000..8b0d5eb1 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/A_dieresis.ss01.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + A.ss01+dieresis.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/A_dieresiscyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/A_dieresiscyr.glif new file mode 100644 index 00000000..7f921213 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/A_dieresiscyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/A_grave.glif b/sources/FixelDisplay-Black.ufo/glyphs/A_grave.glif new file mode 100644 index 00000000..1b5ac7d2 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/A_grave.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+grave.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/A_grave.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/A_grave.ss01.glif new file mode 100644 index 00000000..a22aab56 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/A_grave.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A.ss01+grave.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/A_iecyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/A_iecyr.glif new file mode 100644 index 00000000..2fc00b22 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/A_iecyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + AE + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/A_macron.glif b/sources/FixelDisplay-Black.ufo/glyphs/A_macron.glif new file mode 100644 index 00000000..24d8e110 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/A_macron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+macron.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/A_macron.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/A_macron.ss01.glif new file mode 100644 index 00000000..8776bb6b --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/A_macron.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A.ss01+macron.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/A_ogonek.glif b/sources/FixelDisplay-Black.ufo/glyphs/A_ogonek.glif new file mode 100644 index 00000000..1cd2e1fb --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/A_ogonek.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+ogonek + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/A_ogonek.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/A_ogonek.ss01.glif new file mode 100644 index 00000000..d65adb22 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/A_ogonek.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A.ss01+ogonek + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/A_ring.glif b/sources/FixelDisplay-Black.ufo/glyphs/A_ring.glif new file mode 100644 index 00000000..5b045ca5 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/A_ring.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+ring.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/A_ring.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/A_ring.ss01.glif new file mode 100644 index 00000000..a8abc644 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/A_ring.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A.ss01+ring.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/A_tilde.glif b/sources/FixelDisplay-Black.ufo/glyphs/A_tilde.glif new file mode 100644 index 00000000..88e6104f --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/A_tilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+tilde.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/A_tilde.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/A_tilde.ss01.glif new file mode 100644 index 00000000..96f16d6b --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/A_tilde.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A.ss01+tilde.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/B_.glif b/sources/FixelDisplay-Black.ufo/glyphs/B_.glif new file mode 100644 index 00000000..42d2da59 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/B_.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/B_e-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/B_e-cy.glif new file mode 100644 index 00000000..b3133ffe --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/B_e-cy.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + B-10 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/C_.glif b/sources/FixelDisplay-Black.ufo/glyphs/C_.glif new file mode 100644 index 00000000..17504580 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/C_.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/C_R_.glif b/sources/FixelDisplay-Black.ufo/glyphs/C_R_.glif new file mode 100644 index 00000000..a38a285e --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/C_R_.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/C_acute.glif b/sources/FixelDisplay-Black.ufo/glyphs/C_acute.glif new file mode 100644 index 00000000..e04ad1a2 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/C_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+acute.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/C_caron.glif b/sources/FixelDisplay-Black.ufo/glyphs/C_caron.glif new file mode 100644 index 00000000..9b1ab594 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/C_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+caron.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/C_cedilla.glif b/sources/FixelDisplay-Black.ufo/glyphs/C_cedilla.glif new file mode 100644 index 00000000..70d15ce6 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/C_cedilla.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+cedilla + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/C_che-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/C_che-cy.glif new file mode 100644 index 00000000..1c5319e3 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/C_che-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ч + com.fontlab.metricsRight + Ч + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/C_circumflex.glif b/sources/FixelDisplay-Black.ufo/glyphs/C_circumflex.glif new file mode 100644 index 00000000..c06e35b0 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/C_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+circumflex.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/C_dotaccent.glif b/sources/FixelDisplay-Black.ufo/glyphs/C_dotaccent.glif new file mode 100644 index 00000000..f04b71ef --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/C_dotaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+dotaccent.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/C_he-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/C_he-cy.glif new file mode 100644 index 00000000..b29f4ef5 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/C_he-cy.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/C_heabkhcyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/C_heabkhcyr.glif new file mode 100644 index 00000000..a3d3e709 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/C_heabkhcyr.glif @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + |Schwa + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/C_heabkhtailcyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/C_heabkhtailcyr.glif new file mode 100644 index 00000000..bbf5df3e --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/C_heabkhtailcyr.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Cheabkhcyr + com.fontlab.metricsRight + Cheabkhcyr + com.fontlab.recipe + Cheabkhcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/C_hedieresiscyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/C_hedieresiscyr.glif new file mode 100644 index 00000000..70e8c789 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/C_hedieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Che-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/C_hekhakascyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/C_hekhakascyr.glif new file mode 100644 index 00000000..97c2ac4b --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/C_hekhakascyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ч + com.fontlab.metricsRight + H + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/C_hetailcyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/C_hetailcyr.glif new file mode 100644 index 00000000..9355acb1 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/C_hetailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ч + com.fontlab.metricsRight + Entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/C_hevertcyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/C_hevertcyr.glif new file mode 100644 index 00000000..3a438784 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/C_hevertcyr.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ч + com.fontlab.metricsRight + Н + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/C_rossedO_-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/C_rossedO_-cy.glif new file mode 100644 index 00000000..217255e6 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/C_rossedO_-cy.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + com.fontlab.recipe + O + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/D_.glif b/sources/FixelDisplay-Black.ufo/glyphs/D_.glif new file mode 100644 index 00000000..3d67a405 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/D_.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/D_caron.glif b/sources/FixelDisplay-Black.ufo/glyphs/D_caron.glif new file mode 100644 index 00000000..1692d15d --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/D_caron.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + D+caron.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/D_checyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/D_checyr.glif new file mode 100644 index 00000000..60bd1201 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/D_checyr.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Д+10 + com.fontlab.metricsRight + Д + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/D_croat.glif b/sources/FixelDisplay-Black.ufo/glyphs/D_croat.glif new file mode 100644 index 00000000..9d239226 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/D_croat.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + D + com.fontlab.recipe + Eth + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/D_e-cy.B_G_R_.glif b/sources/FixelDisplay-Black.ufo/glyphs/D_e-cy.B_G_R_.glif new file mode 100644 index 00000000..e3deb5fb --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/D_e-cy.B_G_R_.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + l() + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/D_e-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/D_e-cy.glif new file mode 100644 index 00000000..546819a2 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/D_e-cy.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/D_eS_oft-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/D_eS_oft-cy.glif new file mode 100644 index 00000000..485d55d5 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/D_eS_oft-cy.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Д + com.fontlab.metricsRight + Ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/D_ekomicyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/D_ekomicyr.glif new file mode 100644 index 00000000..9440b424 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/D_ekomicyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.metricsLeft + |P + com.fontlab.metricsRight + H + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/D_elta.glif b/sources/FixelDisplay-Black.ufo/glyphs/D_elta.glif new file mode 100644 index 00000000..b3034ba1 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/D_elta.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + A + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/D_jecyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/D_jecyr.glif new file mode 100644 index 00000000..e4a52132 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/D_jecyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/D_jekomicyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/D_jekomicyr.glif new file mode 100644 index 00000000..5f2c6c04 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/D_jekomicyr.glif @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Dekomicyr + com.fontlab.metricsRight + Njekomicyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/D_jerv-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/D_jerv-cy.glif new file mode 100644 index 00000000..24740d34 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/D_jerv-cy.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + r() + com.fontlab.metricsRight + O + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/D_oubleO_-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/D_oubleO_-cy.glif new file mode 100644 index 00000000..0d03437e --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/D_oubleO_-cy.glif @@ -0,0 +1,91 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + com.fontlab.recipe + O_O + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/D_we-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/D_we-cy.glif new file mode 100644 index 00000000..dc2b970e --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/D_we-cy.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Д + com.fontlab.metricsRight + Д + com.fontlab.recipe + Д + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/D_ze-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/D_ze-cy.glif new file mode 100644 index 00000000..be313b8a --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/D_ze-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + S + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/D_zeR_eversed-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/D_zeR_eversed-cy.glif new file mode 100644 index 00000000..e27a5503 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/D_zeR_eversed-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + S + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/D_zeabkhcyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/D_zeabkhcyr.glif new file mode 100644 index 00000000..b248617b --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/D_zeabkhcyr.glif @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + З-10 + com.fontlab.metricsRight + З-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/D_zelo-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/D_zelo-cy.glif new file mode 100644 index 00000000..ccbb9f3f --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/D_zelo-cy.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/D_zhecyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/D_zhecyr.glif new file mode 100644 index 00000000..ca73253b --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/D_zhecyr.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/D_zjekomicyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/D_zjekomicyr.glif new file mode 100644 index 00000000..de244c1a --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/D_zjekomicyr.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + З-10 + com.fontlab.metricsRight + Ц-5 + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/D_zwe-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/D_zwe-cy.glif new file mode 100644 index 00000000..0f5395e1 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/D_zwe-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + S + com.fontlab.metricsRight + S + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/D_zze-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/D_zze-cy.glif new file mode 100644 index 00000000..752efa5d --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/D_zze-cy.glif @@ -0,0 +1,84 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Д + com.fontlab.metricsRight + Д-20 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/D_zzhecyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/D_zzhecyr.glif new file mode 100644 index 00000000..6c20a7ba --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/D_zzhecyr.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Д + com.fontlab.metricsRight + Ж + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/E_-cy.accented.glif b/sources/FixelDisplay-Black.ufo/glyphs/E_-cy.accented.glif new file mode 100644 index 00000000..d71ab0a5 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/E_-cy.accented.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+acute.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/E_-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/E_-cy.glif new file mode 100644 index 00000000..1d11b457 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/E_-cy.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + C + com.fontlab.metricsRight + C + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/E_.glif b/sources/FixelDisplay-Black.ufo/glyphs/E_.glif new file mode 100644 index 00000000..d121d8a3 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/E_.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + com.fontlab.metricsRight + F+10 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/E_acute.glif b/sources/FixelDisplay-Black.ufo/glyphs/E_acute.glif new file mode 100644 index 00000000..a7af9ca6 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/E_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+acute.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/E_breve.glif b/sources/FixelDisplay-Black.ufo/glyphs/E_breve.glif new file mode 100644 index 00000000..e875eb77 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/E_breve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+breve.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/E_caron.glif b/sources/FixelDisplay-Black.ufo/glyphs/E_caron.glif new file mode 100644 index 00000000..fc741066 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/E_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+caron.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/E_circumflex.glif b/sources/FixelDisplay-Black.ufo/glyphs/E_circumflex.glif new file mode 100644 index 00000000..c949260b --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/E_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+circumflex.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/E_dieresis.glif b/sources/FixelDisplay-Black.ufo/glyphs/E_dieresis.glif new file mode 100644 index 00000000..2a2a631b --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/E_dieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+dieresiscase.alt + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/E_dotaccent.glif b/sources/FixelDisplay-Black.ufo/glyphs/E_dotaccent.glif new file mode 100644 index 00000000..b8c5d4f4 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/E_dotaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+dotaccent.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/E_f-cy.B_G_R_.glif b/sources/FixelDisplay-Black.ufo/glyphs/E_f-cy.B_G_R_.glif new file mode 100644 index 00000000..6d1e1d5b --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/E_f-cy.B_G_R_.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/E_f-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/E_f-cy.glif new file mode 100644 index 00000000..c9f3bc47 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/E_f-cy.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/E_grave.glif b/sources/FixelDisplay-Black.ufo/glyphs/E_grave.glif new file mode 100644 index 00000000..297e9762 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/E_grave.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+grave.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/E_iotifiedcyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/E_iotifiedcyr.glif new file mode 100644 index 00000000..9f42cfc3 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/E_iotifiedcyr.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + C + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/E_l-cy.B_G_R_.glif b/sources/FixelDisplay-Black.ufo/glyphs/E_l-cy.B_G_R_.glif new file mode 100644 index 00000000..303b04f0 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/E_l-cy.B_G_R_.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + A + com.fontlab.metricsRight + l() + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/E_l-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/E_l-cy.glif new file mode 100644 index 00000000..337768b3 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/E_l-cy.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/E_lS_oft-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/E_lS_oft-cy.glif new file mode 100644 index 00000000..c9747a98 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/E_lS_oft-cy.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/E_lhookcyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/E_lhookcyr.glif new file mode 100644 index 00000000..a25eb561 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/E_lhookcyr.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Л + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/E_lmiddlehookcyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/E_lmiddlehookcyr.glif new file mode 100644 index 00000000..7360580e --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/E_lmiddlehookcyr.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Shhacyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/E_lsharptailcyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/E_lsharptailcyr.glif new file mode 100644 index 00000000..dc759069 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/E_lsharptailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Ensharptailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/E_lsmallcyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/E_lsmallcyr.glif new file mode 100644 index 00000000..0652772d --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/E_lsmallcyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + el-cy.BGR + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/E_ltailcyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/E_ltailcyr.glif new file mode 100644 index 00000000..4ec32e22 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/E_ltailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/E_m-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/E_m-cy.glif new file mode 100644 index 00000000..f822eaaa --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/E_m-cy.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + M + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/E_m-cy.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/E_m-cy.ss01.glif new file mode 100644 index 00000000..aac0e0b6 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/E_m-cy.ss01.glif @@ -0,0 +1,13 @@ + + + + + + + + + com.fontlab.recipe + M + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/E_mS_oft-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/E_mS_oft-cy.glif new file mode 100644 index 00000000..c963e9b4 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/E_mS_oft-cy.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + M + com.fontlab.metricsRight + Ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/E_macron.glif b/sources/FixelDisplay-Black.ufo/glyphs/E_macron.glif new file mode 100644 index 00000000..5fe91b2d --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/E_macron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+macron.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/E_msharptailcyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/E_msharptailcyr.glif new file mode 100644 index 00000000..a7cc2998 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/E_msharptailcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Н + com.fontlab.metricsRight + Ensharptailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/E_n-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/E_n-cy.glif new file mode 100644 index 00000000..30017814 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/E_n-cy.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + H + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/E_ng.glif b/sources/FixelDisplay-Black.ufo/glyphs/E_ng.glif new file mode 100644 index 00000000..25b6e72c --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/E_ng.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + N + com.fontlab.metricsRight + l() + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/E_ng.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/E_ng.ss01.glif new file mode 100644 index 00000000..fe9b54be --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/E_ng.ss01.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + N.ss01 + com.fontlab.metricsRight + J.ss01 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/E_ngecyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/E_ngecyr.glif new file mode 100644 index 00000000..2ff97f4e --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/E_ngecyr.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/E_nhookcyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/E_nhookcyr.glif new file mode 100644 index 00000000..95b98869 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/E_nhookcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/E_nhookleftcyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/E_nhookleftcyr.glif new file mode 100644 index 00000000..3a7a6071 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/E_nhookleftcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + r()-159 + com.fontlab.metricsRight + H + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/E_nmiddlehookcyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/E_nmiddlehookcyr.glif new file mode 100644 index 00000000..f4bec6ce --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/E_nmiddlehookcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Shhacyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/E_nsharptailcyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/E_nsharptailcyr.glif new file mode 100644 index 00000000..b8b57506 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/E_nsharptailcyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Н + com.fontlab.metricsRight + Д + com.fontlab.recipe + Entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/E_ntailcyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/E_ntailcyr.glif new file mode 100644 index 00000000..c3134c49 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/E_ntailcyr.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Ц + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/E_ogonek.glif b/sources/FixelDisplay-Black.ufo/glyphs/E_ogonek.glif new file mode 100644 index 00000000..58933c51 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/E_ogonek.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+ogonek + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/E_r-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/E_r-cy.glif new file mode 100644 index 00000000..122071ab --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/E_r-cy.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + P + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/E_reversed-cy.accented.glif b/sources/FixelDisplay-Black.ufo/glyphs/E_reversed-cy.accented.glif new file mode 100644 index 00000000..da569875 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/E_reversed-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Э+acute.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/E_reversed-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/E_reversed-cy.glif new file mode 100644 index 00000000..1c3dc778 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/E_reversed-cy.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |C + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/E_reverseddieresiscyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/E_reverseddieresiscyr.glif new file mode 100644 index 00000000..3de7001a --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/E_reverseddieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ereversed-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/E_rtickcyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/E_rtickcyr.glif new file mode 100644 index 00000000..77d1e57b --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/E_rtickcyr.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + P + com.fontlab.metricsRight + P + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/E_s-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/E_s-cy.glif new file mode 100644 index 00000000..7ec86110 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/E_s-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/E_stailcyr.B_S_H_.glif b/sources/FixelDisplay-Black.ufo/glyphs/E_stailcyr.B_S_H_.glif new file mode 100644 index 00000000..8390d1c8 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/E_stailcyr.B_S_H_.glif @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + C + com.fontlab.metricsRight + C + com.fontlab.recipe + C + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/E_stailcyr.C_H_U_.glif b/sources/FixelDisplay-Black.ufo/glyphs/E_stailcyr.C_H_U_.glif new file mode 100644 index 00000000..250c3073 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/E_stailcyr.C_H_U_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+cedilla.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/E_stailcyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/E_stailcyr.glif new file mode 100644 index 00000000..f3a8d65d --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/E_stailcyr.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + С + com.fontlab.metricsRight + С + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/E_th.glif b/sources/FixelDisplay-Black.ufo/glyphs/E_th.glif new file mode 100644 index 00000000..62dda0e5 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/E_th.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + D + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/F_.glif b/sources/FixelDisplay-Black.ufo/glyphs/F_.glif new file mode 100644 index 00000000..291371bc --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/F_.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/F_itacyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/F_itacyr.glif new file mode 100644 index 00000000..4d76399a --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/F_itacyr.glif @@ -0,0 +1,78 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + com.fontlab.recipe + Obarcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/G_.glif b/sources/FixelDisplay-Black.ufo/glyphs/G_.glif new file mode 100644 index 00000000..cd539333 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/G_.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O+18 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/G_.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/G_.ss01.glif new file mode 100644 index 00000000..cc38be7a --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/G_.ss01.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O+10 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/G_acute.glif b/sources/FixelDisplay-Black.ufo/glyphs/G_acute.glif new file mode 100644 index 00000000..269589a2 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/G_acute.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + G+acute.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/G_acute.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/G_acute.ss01.glif new file mode 100644 index 00000000..6aec8c7b --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/G_acute.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G.ss01+acute.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/G_breve.glif b/sources/FixelDisplay-Black.ufo/glyphs/G_breve.glif new file mode 100644 index 00000000..763585c5 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/G_breve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G+breve.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/G_breve.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/G_breve.ss01.glif new file mode 100644 index 00000000..e97fc60d --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/G_breve.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G.ss01+breve.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/G_circumflex.glif b/sources/FixelDisplay-Black.ufo/glyphs/G_circumflex.glif new file mode 100644 index 00000000..db1d8e26 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/G_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G+circumflex.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/G_circumflex.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/G_circumflex.ss01.glif new file mode 100644 index 00000000..b7de8520 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/G_circumflex.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G.ss01+circumflex.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/G_commaaccent.glif b/sources/FixelDisplay-Black.ufo/glyphs/G_commaaccent.glif new file mode 100644 index 00000000..ce193b07 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/G_commaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G+commaaccentcomb + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/G_commaaccent.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/G_commaaccent.ss01.glif new file mode 100644 index 00000000..33beb5a2 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/G_commaaccent.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G.ss01+commaaccentcomb + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/G_dotaccent.glif b/sources/FixelDisplay-Black.ufo/glyphs/G_dotaccent.glif new file mode 100644 index 00000000..72353e05 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/G_dotaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G+dotaccent.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/G_dotaccent.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/G_dotaccent.ss01.glif new file mode 100644 index 00000000..15db41f9 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/G_dotaccent.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G.ss01+dotaccent.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/G_e-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/G_e-cy.glif new file mode 100644 index 00000000..f1ec39bc --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/G_e-cy.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + T + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/G_ehookcyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/G_ehookcyr.glif new file mode 100644 index 00000000..1ea0294c --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/G_ehookcyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Г + com.fontlab.metricsRight + Tshecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/G_ehookstrokecyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/G_ehookstrokecyr.glif new file mode 100644 index 00000000..2f73920e --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/G_ehookstrokecyr.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Gestrokecyr + com.fontlab.metricsRight + Gestrokecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/G_ermandbls.glif b/sources/FixelDisplay-Black.ufo/glyphs/G_ermandbls.glif new file mode 100644 index 00000000..a31e6648 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/G_ermandbls.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + U + com.fontlab.metricsRight + B-5 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/G_estrokecyr.B_S_H_.glif b/sources/FixelDisplay-Black.ufo/glyphs/G_estrokecyr.B_S_H_.glif new file mode 100644 index 00000000..2b59a098 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/G_estrokecyr.B_S_H_.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + F + com.fontlab.metricsRight + Gestrokecyr + com.fontlab.recipe + Gestrokecyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/G_estrokecyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/G_estrokecyr.glif new file mode 100644 index 00000000..7d41ba72 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/G_estrokecyr.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + Г + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/G_etailcyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/G_etailcyr.glif new file mode 100644 index 00000000..124e27c1 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/G_etailcyr.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Г + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/G_heupturn-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/G_heupturn-cy.glif new file mode 100644 index 00000000..226e116a --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/G_heupturn-cy.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Г + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/G_jecyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/G_jecyr.glif new file mode 100644 index 00000000..9931b58a --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/G_jecyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ge-cy+acute.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/H_.glif b/sources/FixelDisplay-Black.ufo/glyphs/H_.glif new file mode 100644 index 00000000..dff4f649 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/H_.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + com.fontlab.metricsRight + I + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/H_a-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/H_a-cy.glif new file mode 100644 index 00000000..835662d5 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/H_a-cy.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + X + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/H_a-cy.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/H_a-cy.ss01.glif new file mode 100644 index 00000000..cc44de5b --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/H_a-cy.ss01.glif @@ -0,0 +1,14 @@ + + + + + + + + + + com.fontlab.recipe + X + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/H_aabkhcyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/H_aabkhcyr.glif new file mode 100644 index 00000000..aca54cf7 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/H_aabkhcyr.glif @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/H_ahookcyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/H_ahookcyr.glif new file mode 100644 index 00000000..cffe6139 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/H_ahookcyr.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + X + com.fontlab.metricsRight + X + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/H_ardsign-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/H_ardsign-cy.glif new file mode 100644 index 00000000..9c7d09d8 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/H_ardsign-cy.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + Ь + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/H_astrokecyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/H_astrokecyr.glif new file mode 100644 index 00000000..4d005ed1 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/H_astrokecyr.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + X + com.fontlab.metricsRight + X + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/H_bar.glif b/sources/FixelDisplay-Black.ufo/glyphs/H_bar.glif new file mode 100644 index 00000000..8e0e43a2 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/H_bar.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + r() + com.fontlab.metricsRight + H + com.schriftgestaltung.Glyphs.rightMetricsKey + H + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/H_circumflex.glif b/sources/FixelDisplay-Black.ufo/glyphs/H_circumflex.glif new file mode 100644 index 00000000..3dd78b37 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/H_circumflex.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + H+circumflex.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/H_we-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/H_we-cy.glif new file mode 100644 index 00000000..a81e46da --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/H_we-cy.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Iota-cy + com.fontlab.metricsRight + Tshecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/I_-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/I_-cy.glif new file mode 100644 index 00000000..c1e032d2 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/I_-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/I_.glif b/sources/FixelDisplay-Black.ufo/glyphs/I_.glif new file mode 100644 index 00000000..34bc1130 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/I_.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/I_J_.glif b/sources/FixelDisplay-Black.ufo/glyphs/I_J_.glif new file mode 100644 index 00000000..c2685e68 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/I_J_.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + I_J + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/I_a-cy.accented.glif b/sources/FixelDisplay-Black.ufo/glyphs/I_a-cy.accented.glif new file mode 100644 index 00000000..0ecd350f --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/I_a-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Я+acute.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/I_a-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/I_a-cy.glif new file mode 100644 index 00000000..3a10a785 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/I_a-cy.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |R+10 + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/I_a-cy.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/I_a-cy.ss01.glif new file mode 100644 index 00000000..6ff28316 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/I_a-cy.ss01.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/I_acute.glif b/sources/FixelDisplay-Black.ufo/glyphs/I_acute.glif new file mode 100644 index 00000000..bd587772 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/I_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+acute.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/I_breve.glif b/sources/FixelDisplay-Black.ufo/glyphs/I_breve.glif new file mode 100644 index 00000000..becd2363 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/I_breve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+breve.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/I_circumflex.glif b/sources/FixelDisplay-Black.ufo/glyphs/I_circumflex.glif new file mode 100644 index 00000000..3dfcd766 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/I_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+circumflex.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/I_dieresis.glif b/sources/FixelDisplay-Black.ufo/glyphs/I_dieresis.glif new file mode 100644 index 00000000..c0ec5896 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/I_dieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+dieresiscase.alt + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/I_dieresiscyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/I_dieresiscyr.glif new file mode 100644 index 00000000..16877f2c --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/I_dieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ii-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/I_dotaccent.glif b/sources/FixelDisplay-Black.ufo/glyphs/I_dotaccent.glif new file mode 100644 index 00000000..e8987d2d --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/I_dotaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+dotaccent.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/I_e-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/I_e-cy.glif new file mode 100644 index 00000000..1b60548d --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/I_e-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/I_ebrevecyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/I_ebrevecyr.glif new file mode 100644 index 00000000..ecbb239d --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/I_ebrevecyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+breve.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/I_egravecyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/I_egravecyr.glif new file mode 100644 index 00000000..59922c88 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/I_egravecyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+grave.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/I_grave.glif b/sources/FixelDisplay-Black.ufo/glyphs/I_grave.glif new file mode 100644 index 00000000..c739e36b --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/I_grave.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+grave.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/I_gravecyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/I_gravecyr.glif new file mode 100644 index 00000000..0bfd28af --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/I_gravecyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ii-cy+grave.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/I_i-cy.accented.glif b/sources/FixelDisplay-Black.ufo/glyphs/I_i-cy.accented.glif new file mode 100644 index 00000000..d7ae5be5 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/I_i-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + И+acute.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/I_i-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/I_i-cy.glif new file mode 100644 index 00000000..5d8c0bc2 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/I_i-cy.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/I_ishort-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/I_ishort-cy.glif new file mode 100644 index 00000000..d8444b14 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/I_ishort-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + uni0418+breve.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/I_macron.glif b/sources/FixelDisplay-Black.ufo/glyphs/I_macron.glif new file mode 100644 index 00000000..8d89bd59 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/I_macron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+macron.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/I_macroncyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/I_macroncyr.glif new file mode 100644 index 00000000..66d424f4 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/I_macroncyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ii-cy+macron.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/I_o-cy.accented.glif b/sources/FixelDisplay-Black.ufo/glyphs/I_o-cy.accented.glif new file mode 100644 index 00000000..8d9045db --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/I_o-cy.accented.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + com.fontlab.recipe + E+dieresis.case+acute.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/I_o-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/I_o-cy.glif new file mode 100644 index 00000000..2344e3fc --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/I_o-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Edieresis + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/I_ogonek.glif b/sources/FixelDisplay-Black.ufo/glyphs/I_ogonek.glif new file mode 100644 index 00000000..9323c4e2 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/I_ogonek.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+ogonek + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/I_ota-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/I_ota-cy.glif new file mode 100644 index 00000000..57816d5f --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/I_ota-cy.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |J + com.fontlab.metricsRight + |J + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/I_otifiedA_-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/I_otifiedA_-cy.glif new file mode 100644 index 00000000..b2e380d0 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/I_otifiedA_-cy.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + com.fontlab.metricsRight + A + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/I_shortsharptailcyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/I_shortsharptailcyr.glif new file mode 100644 index 00000000..e6f985e8 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/I_shortsharptailcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Й + com.fontlab.metricsRight + Ensharptailcyr + com.fontlab.recipe + Й + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/I_tilde.glif b/sources/FixelDisplay-Black.ufo/glyphs/I_tilde.glif new file mode 100644 index 00000000..fc65bf25 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/I_tilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+tilde.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/I_u-cy.accented.glif b/sources/FixelDisplay-Black.ufo/glyphs/I_u-cy.accented.glif new file mode 100644 index 00000000..dffceea8 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/I_u-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ю+acute.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/I_u-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/I_u-cy.glif new file mode 100644 index 00000000..9728c49a --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/I_u-cy.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/I_zhitsacyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/I_zhitsacyr.glif new file mode 100644 index 00000000..87f41fbe --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/I_zhitsacyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + V + com.fontlab.metricsRight + + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/I_zhitsagravedblcyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/I_zhitsagravedblcyr.glif new file mode 100644 index 00000000..7b984428 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/I_zhitsagravedblcyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + com.fontlab.metricsLeft + Izhitsacyr + com.fontlab.metricsRight + Izhitsacyr + com.fontlab.recipe + Izhitsacyr+hungarumlaut.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/J_.glif b/sources/FixelDisplay-Black.ufo/glyphs/J_.glif new file mode 100644 index 00000000..9b44a434 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/J_.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + U + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/J_.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/J_.ss01.glif new file mode 100644 index 00000000..ea861f4f --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/J_.ss01.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + U + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/J_circumflex.glif b/sources/FixelDisplay-Black.ufo/glyphs/J_circumflex.glif new file mode 100644 index 00000000..ecc0b5dd --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/J_circumflex.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + J+circumflex.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/J_circumflex.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/J_circumflex.ss01.glif new file mode 100644 index 00000000..26098fa5 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/J_circumflex.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + J.ss01+circumflex.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/J_ecyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/J_ecyr.glif new file mode 100644 index 00000000..ecf23da6 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/J_ecyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsLeft + J + com.fontlab.metricsRight + J + com.fontlab.recipe + J + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/K_.glif b/sources/FixelDisplay-Black.ufo/glyphs/K_.glif new file mode 100644 index 00000000..22136b4e --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/K_.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/K_.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/K_.ss01.glif new file mode 100644 index 00000000..ad7612df --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/K_.ss01.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/K_a-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/K_a-cy.glif new file mode 100644 index 00000000..1564af30 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/K_a-cy.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.recipe + K + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/K_a-cy.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/K_a-cy.ss01.glif new file mode 100644 index 00000000..3f3aef44 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/K_a-cy.ss01.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.recipe + K + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/K_aaleutcyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/K_aaleutcyr.glif new file mode 100644 index 00000000..db04e08f --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/K_aaleutcyr.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + K + com.fontlab.metricsRight + K + com.fontlab.recipe + K + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/K_abashkcyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/K_abashkcyr.glif new file mode 100644 index 00000000..e8f247a5 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/K_abashkcyr.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Hardsign-cy + com.fontlab.metricsRight + K + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/K_ahookcyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/K_ahookcyr.glif new file mode 100644 index 00000000..9382cfa4 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/K_ahookcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + K + com.fontlab.metricsRight + Djecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/K_astrokecyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/K_astrokecyr.glif new file mode 100644 index 00000000..bc20383b --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/K_astrokecyr.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Yatcyr + com.fontlab.metricsRight + K + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/K_atailcyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/K_atailcyr.glif new file mode 100644 index 00000000..7980498c --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/K_atailcyr.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + К-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/K_averticalstrokecyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/K_averticalstrokecyr.glif new file mode 100644 index 00000000..7062e4db --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/K_averticalstrokecyr.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + K + com.fontlab.metricsRight + Ж + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/K_commaaccent.glif b/sources/FixelDisplay-Black.ufo/glyphs/K_commaaccent.glif new file mode 100644 index 00000000..371cdf8a --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/K_commaaccent.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + K+commaaccentcomb + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/K_commaaccent.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/K_commaaccent.ss01.glif new file mode 100644 index 00000000..ef807f7a --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/K_commaaccent.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + K.ss01+commaaccentcomb + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/K_jecyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/K_jecyr.glif new file mode 100644 index 00000000..1ef1c72d --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/K_jecyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ka-cy+acute.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/K_oppacyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/K_oppacyr.glif new file mode 100644 index 00000000..d01e7fbe --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/K_oppacyr.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + C-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/K_sicyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/K_sicyr.glif new file mode 100644 index 00000000..ad4fe464 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/K_sicyr.glif @@ -0,0 +1,98 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + З-10 + com.fontlab.metricsRight + З + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/L_.glif b/sources/FixelDisplay-Black.ufo/glyphs/L_.glif new file mode 100644 index 00000000..76338a8d --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/L_.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/L_acute.glif b/sources/FixelDisplay-Black.ufo/glyphs/L_acute.glif new file mode 100644 index 00000000..53e65056 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/L_acute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + L+acute.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/L_caron.glif b/sources/FixelDisplay-Black.ufo/glyphs/L_caron.glif new file mode 100644 index 00000000..d9dadde2 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/L_caron.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + com.fontlab.recipe + L+caron.salt + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/L_commaaccent.glif b/sources/FixelDisplay-Black.ufo/glyphs/L_commaaccent.glif new file mode 100644 index 00000000..75fffd55 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/L_commaaccent.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + L+commaaccentcomb + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/L_dot.glif b/sources/FixelDisplay-Black.ufo/glyphs/L_dot.glif new file mode 100644 index 00000000..5e86f862 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/L_dot.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + com.fontlab.metricsRight + L + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/L_hacyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/L_hacyr.glif new file mode 100644 index 00000000..e14bfbca --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/L_hacyr.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + X + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/L_jecyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/L_jecyr.glif new file mode 100644 index 00000000..d8fe405f --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/L_jecyr.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Ь + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/L_jekomicyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/L_jekomicyr.glif new file mode 100644 index 00000000..c5f43a86 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/L_jekomicyr.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Njekomicyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/L_slash.glif b/sources/FixelDisplay-Black.ufo/glyphs/L_slash.glif new file mode 100644 index 00000000..89a72c58 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/L_slash.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + L-80 + com.fontlab.metricsRight + L + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/M_.glif b/sources/FixelDisplay-Black.ufo/glyphs/M_.glif new file mode 100644 index 00000000..8f06d951 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/M_.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/M_.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/M_.ss01.glif new file mode 100644 index 00000000..e13346b1 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/M_.ss01.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H-25 + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/N_.glif b/sources/FixelDisplay-Black.ufo/glyphs/N_.glif new file mode 100644 index 00000000..0ec3fc04 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/N_.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/N_.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/N_.ss01.glif new file mode 100644 index 00000000..f9a86f5f --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/N_.ss01.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H-10 + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/N_U_L_L_.glif b/sources/FixelDisplay-Black.ufo/glyphs/N_U_L_L_.glif new file mode 100644 index 00000000..1ad177ae --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/N_U_L_L_.glif @@ -0,0 +1,4 @@ + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/N_acute.glif b/sources/FixelDisplay-Black.ufo/glyphs/N_acute.glif new file mode 100644 index 00000000..9d71ce3b --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/N_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N+acute.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/N_acute.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/N_acute.ss01.glif new file mode 100644 index 00000000..79af314c --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/N_acute.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N.ss01+acute.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/N_caron.glif b/sources/FixelDisplay-Black.ufo/glyphs/N_caron.glif new file mode 100644 index 00000000..ddd16bd7 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/N_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N+caron.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/N_caron.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/N_caron.ss01.glif new file mode 100644 index 00000000..3e9a3f18 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/N_caron.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N.ss01+caron.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/N_commaaccent.glif b/sources/FixelDisplay-Black.ufo/glyphs/N_commaaccent.glif new file mode 100644 index 00000000..ac18966e --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/N_commaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N+commaaccentcomb + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/N_commaaccent.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/N_commaaccent.ss01.glif new file mode 100644 index 00000000..a34db869 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/N_commaaccent.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N.ss01+commaaccentcomb + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/N_jecyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/N_jecyr.glif new file mode 100644 index 00000000..b2b903b1 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/N_jecyr.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Н + com.fontlab.metricsRight + Ь + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/N_jekomicyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/N_jekomicyr.glif new file mode 100644 index 00000000..9825e35f --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/N_jekomicyr.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + |u + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/N_tilde.glif b/sources/FixelDisplay-Black.ufo/glyphs/N_tilde.glif new file mode 100644 index 00000000..7df00bda --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/N_tilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N+tilde.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/N_tilde.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/N_tilde.ss01.glif new file mode 100644 index 00000000..60f689fc --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/N_tilde.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N.ss01+tilde.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/O_-cy.accented.glif b/sources/FixelDisplay-Black.ufo/glyphs/O_-cy.accented.glif new file mode 100644 index 00000000..fcff34b0 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/O_-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+acute.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/O_-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/O_-cy.glif new file mode 100644 index 00000000..bd11a9be --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/O_-cy.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/O_.glif b/sources/FixelDisplay-Black.ufo/glyphs/O_.glif new file mode 100644 index 00000000..4d641cf4 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/O_.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/O_B_inocular-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/O_B_inocular-cy.glif new file mode 100644 index 00000000..0b3f3c36 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/O_B_inocular-cy.glif @@ -0,0 +1,81 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/O_D_oubleM_onocular-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/O_D_oubleM_onocular-cy.glif new file mode 100644 index 00000000..479fb1bb --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/O_D_oubleM_onocular-cy.glif @@ -0,0 +1,119 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + com.fontlab.recipe + DoubleO-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/O_E_.glif b/sources/FixelDisplay-Black.ufo/glyphs/O_E_.glif new file mode 100644 index 00000000..9c8d98a2 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/O_E_.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + E + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/O_M_onocular-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/O_M_onocular-cy.glif new file mode 100644 index 00000000..d221e3f0 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/O_M_onocular-cy.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/O_acute.glif b/sources/FixelDisplay-Black.ufo/glyphs/O_acute.glif new file mode 100644 index 00000000..913f222a --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/O_acute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+acute.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/O_barcyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/O_barcyr.glif new file mode 100644 index 00000000..23552d9b --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/O_barcyr.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + r() + com.fontlab.metricsRight + O + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/O_bardieresiscyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/O_bardieresiscyr.glif new file mode 100644 index 00000000..64a050ff --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/O_bardieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Obarcyr+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/O_breve.glif b/sources/FixelDisplay-Black.ufo/glyphs/O_breve.glif new file mode 100644 index 00000000..9f5fb985 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/O_breve.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+breve.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/O_circumflex.glif b/sources/FixelDisplay-Black.ufo/glyphs/O_circumflex.glif new file mode 100644 index 00000000..6bb138b9 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/O_circumflex.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+circumflex.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/O_dieresis.glif b/sources/FixelDisplay-Black.ufo/glyphs/O_dieresis.glif new file mode 100644 index 00000000..bb3f0efa --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/O_dieresis.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+dieresis.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/O_dieresiscyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/O_dieresiscyr.glif new file mode 100644 index 00000000..58242e4d --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/O_dieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/O_grave.glif b/sources/FixelDisplay-Black.ufo/glyphs/O_grave.glif new file mode 100644 index 00000000..1977d744 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/O_grave.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+grave.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/O_hungarumlaut.glif b/sources/FixelDisplay-Black.ufo/glyphs/O_hungarumlaut.glif new file mode 100644 index 00000000..385790bb --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/O_hungarumlaut.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+hungarumlaut.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/O_macron.glif b/sources/FixelDisplay-Black.ufo/glyphs/O_macron.glif new file mode 100644 index 00000000..6106c518 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/O_macron.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+macron.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/O_mega.glif b/sources/FixelDisplay-Black.ufo/glyphs/O_mega.glif new file mode 100644 index 00000000..5b1a4108 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/O_mega.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O+10 + com.fontlab.metricsRight + O+10 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/O_megaB_road-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/O_megaB_road-cy.glif new file mode 100644 index 00000000..c0c229b8 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/O_megaB_road-cy.glif @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O+10 + com.fontlab.metricsRight + O+10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/O_megacyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/O_megacyr.glif new file mode 100644 index 00000000..da197ad2 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/O_megacyr.glif @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O+10 + com.fontlab.metricsRight + O+10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/O_megaroundcyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/O_megaroundcyr.glif new file mode 100644 index 00000000..02e58239 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/O_megaroundcyr.glif @@ -0,0 +1,81 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/O_megatitlocyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/O_megatitlocyr.glif new file mode 100644 index 00000000..2c3ab114 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/O_megatitlocyr.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O+10 + com.fontlab.metricsRight + O+10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/O_slash.glif b/sources/FixelDisplay-Black.ufo/glyphs/O_slash.glif new file mode 100644 index 00000000..70a4815e --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/O_slash.glif @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/O_slashacute.glif b/sources/FixelDisplay-Black.ufo/glyphs/O_slashacute.glif new file mode 100644 index 00000000..76eca37c --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/O_slashacute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Oslash+acute.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/O_tcyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/O_tcyr.glif new file mode 100644 index 00000000..e769946f --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/O_tcyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Omegacyr+uni2DEE.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/O_tilde.glif b/sources/FixelDisplay-Black.ufo/glyphs/O_tilde.glif new file mode 100644 index 00000000..d9f4964f --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/O_tilde.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+tilde.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/P_.glif b/sources/FixelDisplay-Black.ufo/glyphs/P_.glif new file mode 100644 index 00000000..76788fac --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/P_.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/P_alochkacyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/P_alochkacyr.glif new file mode 100644 index 00000000..83e0ed62 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/P_alochkacyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/P_e-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/P_e-cy.glif new file mode 100644 index 00000000..f3220847 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/P_e-cy.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/P_ehookcyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/P_ehookcyr.glif new file mode 100644 index 00000000..fc6b193e --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/P_ehookcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + П + com.fontlab.metricsRight + Shhacyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/P_etailcyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/P_etailcyr.glif new file mode 100644 index 00000000..ecd5c23b --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/P_etailcyr.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/P_sicyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/P_sicyr.glif new file mode 100644 index 00000000..8eefaf17 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/P_sicyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + U-20 + com.fontlab.metricsRight + U-20 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/Q_.glif b/sources/FixelDisplay-Black.ufo/glyphs/Q_.glif new file mode 100644 index 00000000..3b14334b --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/Q_.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/Q_.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/Q_.ss01.glif new file mode 100644 index 00000000..be75c6a8 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/Q_.ss01.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/Q_acyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/Q_acyr.glif new file mode 100644 index 00000000..8e143a15 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/Q_acyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Q + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/R_.glif b/sources/FixelDisplay-Black.ufo/glyphs/R_.glif new file mode 100644 index 00000000..72ac64cb --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/R_.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/R_acute.glif b/sources/FixelDisplay-Black.ufo/glyphs/R_acute.glif new file mode 100644 index 00000000..c8cb2038 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/R_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + R+acute.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/R_caron.glif b/sources/FixelDisplay-Black.ufo/glyphs/R_caron.glif new file mode 100644 index 00000000..2531f74c --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/R_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + R+caron.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/R_commaaccent.glif b/sources/FixelDisplay-Black.ufo/glyphs/R_commaaccent.glif new file mode 100644 index 00000000..e85ff444 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/R_commaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + R+commaaccentcomb + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/R_eversedzecyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/R_eversedzecyr.glif new file mode 100644 index 00000000..9fa36a9a --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/R_eversedzecyr.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + + com.fontlab.metricsRight + + com.fontlab.recipe + З + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/R_hacyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/R_hacyr.glif new file mode 100644 index 00000000..1ea4fe26 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/R_hacyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + P + com.fontlab.metricsRight + X + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/S_.glif b/sources/FixelDisplay-Black.ufo/glyphs/S_.glif new file mode 100644 index 00000000..5ffe7592 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/S_.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/S_acute.glif b/sources/FixelDisplay-Black.ufo/glyphs/S_acute.glif new file mode 100644 index 00000000..0bc1e13f --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/S_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + S+acute.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/S_caron.glif b/sources/FixelDisplay-Black.ufo/glyphs/S_caron.glif new file mode 100644 index 00000000..53284ff0 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/S_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + S+caron.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/S_cedilla.glif b/sources/FixelDisplay-Black.ufo/glyphs/S_cedilla.glif new file mode 100644 index 00000000..cab840ca --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/S_cedilla.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + S+cedilla + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/S_chwa.glif b/sources/FixelDisplay-Black.ufo/glyphs/S_chwa.glif new file mode 100644 index 00000000..693c86c3 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/S_chwa.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Schwacyr + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/S_chwacyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/S_chwacyr.glif new file mode 100644 index 00000000..0d8bdc08 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/S_chwacyr.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O-10 + com.fontlab.metricsRight + O + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/S_chwadieresiscyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/S_chwadieresiscyr.glif new file mode 100644 index 00000000..dcc7837d --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/S_chwadieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Schwacyr+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/S_circumflex.glif b/sources/FixelDisplay-Black.ufo/glyphs/S_circumflex.glif new file mode 100644 index 00000000..73c99347 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/S_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + S+circumflex.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/S_commaaccent.glif b/sources/FixelDisplay-Black.ufo/glyphs/S_commaaccent.glif new file mode 100644 index 00000000..ba8837f0 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/S_commaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + S+commaaccentcomb + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/S_emisoftcyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/S_emisoftcyr.glif new file mode 100644 index 00000000..e3653925 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/S_emisoftcyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Yat + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/S_ha-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/S_ha-cy.glif new file mode 100644 index 00000000..7c492410 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/S_ha-cy.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/S_hcha-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/S_hcha-cy.glif new file mode 100644 index 00000000..c292d828 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/S_hcha-cy.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Д + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/S_hhacyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/S_hhacyr.glif new file mode 100644 index 00000000..56970cdf --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/S_hhacyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.metricsLeft + Н + com.fontlab.metricsRight + Tshecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/S_hhatailcyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/S_hhatailcyr.glif new file mode 100644 index 00000000..cb4d0365 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/S_hhatailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/S_hwe-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/S_hwe-cy.glif new file mode 100644 index 00000000..c0f297dc --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/S_hwe-cy.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Щ + com.fontlab.metricsRight + Щ-20 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/S_jekomicyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/S_jekomicyr.glif new file mode 100644 index 00000000..2f3ae624 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/S_jekomicyr.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + |Schwa + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/S_oftsign-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/S_oftsign-cy.glif new file mode 100644 index 00000000..3888c1af --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/S_oftsign-cy.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + P + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/T_.glif b/sources/FixelDisplay-Black.ufo/glyphs/T_.glif new file mode 100644 index 00000000..31dbe6cf --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/T_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/T_bar.glif b/sources/FixelDisplay-Black.ufo/glyphs/T_bar.glif new file mode 100644 index 00000000..5e3b7465 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/T_bar.glif @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/T_caron.glif b/sources/FixelDisplay-Black.ufo/glyphs/T_caron.glif new file mode 100644 index 00000000..3996f42a --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/T_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + T+caron.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/T_cedilla.glif b/sources/FixelDisplay-Black.ufo/glyphs/T_cedilla.glif new file mode 100644 index 00000000..19c2f0f2 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/T_cedilla.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + T+cedilla + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/T_che-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/T_che-cy.glif new file mode 100644 index 00000000..680fa1df --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/T_che-cy.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Tetsecyr-20 + com.fontlab.metricsRight + Ч + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/T_commaaccent.glif b/sources/FixelDisplay-Black.ufo/glyphs/T_commaaccent.glif new file mode 100644 index 00000000..c16ed590 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/T_commaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + T+commaaccentcomb + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/T_e-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/T_e-cy.glif new file mode 100644 index 00000000..941325b9 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/T_e-cy.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + com.fontlab.recipe + T + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/T_eW_ithM_iddleH_ook-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/T_eW_ithM_iddleH_ook-cy.glif new file mode 100644 index 00000000..b141d30d --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/T_eW_ithM_iddleH_ook-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Djecyr + com.fontlab.metricsRight + Gehookcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/T_etailcyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/T_etailcyr.glif new file mode 100644 index 00000000..757a376e --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/T_etailcyr.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/T_etsecyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/T_etsecyr.glif new file mode 100644 index 00000000..f9eba600 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/T_etsecyr.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Tshecyr + com.fontlab.metricsRight + Ц + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/T_horn.glif b/sources/FixelDisplay-Black.ufo/glyphs/T_horn.glif new file mode 100644 index 00000000..51d61cc0 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/T_horn.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + P + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/T_jekomicyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/T_jekomicyr.glif new file mode 100644 index 00000000..4a05f756 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/T_jekomicyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + Njekomicyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/T_se-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/T_se-cy.glif new file mode 100644 index 00000000..74bf42be --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/T_se-cy.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Д + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/T_seR_eversed-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/T_seR_eversed-cy.glif new file mode 100644 index 00000000..4387d697 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/T_seR_eversed-cy.glif @@ -0,0 +1,20 @@ + + + + + + + + + + com.fontlab.metricsLeft + + com.fontlab.metricsRight + H + com.fontlab.recipe + Ц + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/T_shecyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/T_shecyr.glif new file mode 100644 index 00000000..ccab17fe --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/T_shecyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + n + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/T_sse-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/T_sse-cy.glif new file mode 100644 index 00000000..8ac2566e --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/T_sse-cy.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + T + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/T_swe-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/T_swe-cy.glif new file mode 100644 index 00000000..a8579dd6 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/T_swe-cy.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Shwe-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/T_we-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/T_we-cy.glif new file mode 100644 index 00000000..4aa213ce --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/T_we-cy.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + T + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/U_-cy.accented.glif b/sources/FixelDisplay-Black.ufo/glyphs/U_-cy.accented.glif new file mode 100644 index 00000000..57b41131 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/U_-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + У+acute.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/U_-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/U_-cy.glif new file mode 100644 index 00000000..af9154af --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/U_-cy.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Y+10 + com.fontlab.metricsRight + Y+5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/U_-cy.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/U_-cy.ss01.glif new file mode 100644 index 00000000..fa5781af --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/U_-cy.ss01.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/U_.glif b/sources/FixelDisplay-Black.ufo/glyphs/U_.glif new file mode 100644 index 00000000..4b1dd1c1 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/U_.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H-10 + com.fontlab.metricsRight + H-10 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/U_acute.glif b/sources/FixelDisplay-Black.ufo/glyphs/U_acute.glif new file mode 100644 index 00000000..31bf45f4 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/U_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+acute.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/U_acutedblcyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/U_acutedblcyr.glif new file mode 100644 index 00000000..997723bf --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/U_acutedblcyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U-cy+hungarumlaut.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/U_breve.glif b/sources/FixelDisplay-Black.ufo/glyphs/U_breve.glif new file mode 100644 index 00000000..536b70d3 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/U_breve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+breve.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/U_circumflex.glif b/sources/FixelDisplay-Black.ufo/glyphs/U_circumflex.glif new file mode 100644 index 00000000..098ff874 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/U_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+circumflex.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/U_dieresis.glif b/sources/FixelDisplay-Black.ufo/glyphs/U_dieresis.glif new file mode 100644 index 00000000..5237bfaa --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/U_dieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+dieresis.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/U_dieresiscyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/U_dieresiscyr.glif new file mode 100644 index 00000000..0c2a6f85 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/U_dieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/U_grave.glif b/sources/FixelDisplay-Black.ufo/glyphs/U_grave.glif new file mode 100644 index 00000000..471fe506 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/U_grave.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+grave.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/U_hungarumlaut.glif b/sources/FixelDisplay-Black.ufo/glyphs/U_hungarumlaut.glif new file mode 100644 index 00000000..52d620c4 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/U_hungarumlaut.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+hungarumlaut.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/U_kM_onograph-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/U_kM_onograph-cy.glif new file mode 100644 index 00000000..d4390ef1 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/U_kM_onograph-cy.glif @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/U_kcyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/U_kcyr.glif new file mode 100644 index 00000000..f253b85f --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/U_kcyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + y + com.fontlab.recipe + О_у + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/U_macron.glif b/sources/FixelDisplay-Black.ufo/glyphs/U_macron.glif new file mode 100644 index 00000000..ec59f18b --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/U_macron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+macron.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/U_macroncyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/U_macroncyr.glif new file mode 100644 index 00000000..e5274d7c --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/U_macroncyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U-cy+macron.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/U_ogonek.glif b/sources/FixelDisplay-Black.ufo/glyphs/U_ogonek.glif new file mode 100644 index 00000000..c46c5579 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/U_ogonek.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + U+ogonek + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/U_ring.glif b/sources/FixelDisplay-Black.ufo/glyphs/U_ring.glif new file mode 100644 index 00000000..4767d833 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/U_ring.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+ring.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/U_short-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/U_short-cy.glif new file mode 100644 index 00000000..89ed3115 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/U_short-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ucyr+breve.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/U_short-cy.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/U_short-cy.ss01.glif new file mode 100644 index 00000000..80b06dda --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/U_short-cy.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ucyr.ss01+breve.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/U_straightcyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/U_straightcyr.glif new file mode 100644 index 00000000..50e6d37e --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/U_straightcyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsRight + Y + com.fontlab.recipe + Y + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/U_straightstrokecyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/U_straightstrokecyr.glif new file mode 100644 index 00000000..6643ce72 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/U_straightstrokecyr.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/U_tilde.glif b/sources/FixelDisplay-Black.ufo/glyphs/U_tilde.glif new file mode 100644 index 00000000..f65e8dcc --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/U_tilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+tilde.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/V_.glif b/sources/FixelDisplay-Black.ufo/glyphs/V_.glif new file mode 100644 index 00000000..62b913ff --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/V_.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/V_.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/V_.ss01.glif new file mode 100644 index 00000000..7ac21f17 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/V_.ss01.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/V_e-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/V_e-cy.glif new file mode 100644 index 00000000..5676f007 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/V_e-cy.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + B + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/W_.glif b/sources/FixelDisplay-Black.ufo/glyphs/W_.glif new file mode 100644 index 00000000..a1b04041 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/W_.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/W_.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/W_.ss01.glif new file mode 100644 index 00000000..0bb44eba --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/W_.ss01.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |A + com.fontlab.metricsRight + |A + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/W_acute.glif b/sources/FixelDisplay-Black.ufo/glyphs/W_acute.glif new file mode 100644 index 00000000..70ad9b9f --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/W_acute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W+acute.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/W_acute.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/W_acute.ss01.glif new file mode 100644 index 00000000..79410496 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/W_acute.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W.ss01+acute.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/W_circumflex.glif b/sources/FixelDisplay-Black.ufo/glyphs/W_circumflex.glif new file mode 100644 index 00000000..33cad0a6 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/W_circumflex.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W+circumflex.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/W_circumflex.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/W_circumflex.ss01.glif new file mode 100644 index 00000000..67a85e9e --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/W_circumflex.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W.ss01+circumflex.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/W_dieresis.glif b/sources/FixelDisplay-Black.ufo/glyphs/W_dieresis.glif new file mode 100644 index 00000000..1754f718 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/W_dieresis.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + W+dieresis.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/W_dieresis.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/W_dieresis.ss01.glif new file mode 100644 index 00000000..d484378a --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/W_dieresis.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W.ss01+dieresis.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/W_ecyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/W_ecyr.glif new file mode 100644 index 00000000..c55de9a0 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/W_ecyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/W_grave.glif b/sources/FixelDisplay-Black.ufo/glyphs/W_grave.glif new file mode 100644 index 00000000..4aa0353e --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/W_grave.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W+grave.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/W_grave.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/W_grave.ss01.glif new file mode 100644 index 00000000..a2310f38 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/W_grave.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W.ss01+grave.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/X_.glif b/sources/FixelDisplay-Black.ufo/glyphs/X_.glif new file mode 100644 index 00000000..02f8911d --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/X_.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/X_.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/X_.ss01.glif new file mode 100644 index 00000000..68e64477 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/X_.ss01.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/X_atailcyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/X_atailcyr.glif new file mode 100644 index 00000000..9b7750ff --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/X_atailcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + X + com.fontlab.metricsRight + Katailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/Y_.glif b/sources/FixelDisplay-Black.ufo/glyphs/Y_.glif new file mode 100644 index 00000000..8f93d632 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/Y_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/Y_.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/Y_.ss01.glif new file mode 100644 index 00000000..bf29ba2a --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/Y_.ss01.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/Y_acute.glif b/sources/FixelDisplay-Black.ufo/glyphs/Y_acute.glif new file mode 100644 index 00000000..1d82840c --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/Y_acute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y+acute.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/Y_acute.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/Y_acute.ss01.glif new file mode 100644 index 00000000..f9de3a95 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/Y_acute.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y.ss01+acute.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/Y_aecyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/Y_aecyr.glif new file mode 100644 index 00000000..586d4446 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/Y_aecyr.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Я + com.fontlab.metricsRight + E + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/Y_atI_otified-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/Y_atI_otified-cy.glif new file mode 100644 index 00000000..a1bfd1e2 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/Y_atI_otified-cy.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + com.fontlab.metricsRight + Yatcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/Y_atcyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/Y_atcyr.glif new file mode 100644 index 00000000..45be7e90 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/Y_atcyr.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Т + com.fontlab.metricsRight + Ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/Y_circumflex.glif b/sources/FixelDisplay-Black.ufo/glyphs/Y_circumflex.glif new file mode 100644 index 00000000..305fb2ad --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/Y_circumflex.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y+circumflex.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/Y_circumflex.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/Y_circumflex.ss01.glif new file mode 100644 index 00000000..22056245 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/Y_circumflex.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y.ss01+circumflex.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/Y_dieresis.glif b/sources/FixelDisplay-Black.ufo/glyphs/Y_dieresis.glif new file mode 100644 index 00000000..af4cb63e --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/Y_dieresis.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y+dieresis.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/Y_dieresis.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/Y_dieresis.ss01.glif new file mode 100644 index 00000000..5c32915e --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/Y_dieresis.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y.ss01+dieresis.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/Y_erN_eutral-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/Y_erN_eutral-cy.glif new file mode 100644 index 00000000..a9d6fa0f --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/Y_erN_eutral-cy.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Hardsign-cy + com.fontlab.metricsRight + Ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/Y_eru-cy.accented.glif b/sources/FixelDisplay-Black.ufo/glyphs/Y_eru-cy.accented.glif new file mode 100644 index 00000000..b0dd1ec2 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/Y_eru-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ы+acute.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/Y_eru-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/Y_eru-cy.glif new file mode 100644 index 00000000..ff567363 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/Y_eru-cy.glif @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/Y_eru-cymacron.glif b/sources/FixelDisplay-Black.ufo/glyphs/Y_eru-cymacron.glif new file mode 100644 index 00000000..f92944d7 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/Y_eru-cymacron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ы+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/Y_eruB_ackY_er-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/Y_eruB_ackY_er-cy.glif new file mode 100644 index 00000000..c9bb2411 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/Y_eruB_ackY_er-cy.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Hardsign + com.fontlab.metricsRight + I + com.fontlab.recipe + Hardsign-cy_I + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/Y_i-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/Y_i-cy.glif new file mode 100644 index 00000000..0528aa68 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/Y_i-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Idieresis + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/Y_longdieresiscyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/Y_longdieresiscyr.glif new file mode 100644 index 00000000..c6b12cdd --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/Y_longdieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Yeru-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/Y_n-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/Y_n-cy.glif new file mode 100644 index 00000000..b868c57a --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/Y_n-cy.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |Izhitsa + com.fontlab.metricsRight + |Izhitsa + com.fontlab.recipe + Izhitsa + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/Y_uR_eversed-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/Y_uR_eversed-cy.glif new file mode 100644 index 00000000..d394afb6 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/Y_uR_eversed-cy.glif @@ -0,0 +1,20 @@ + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + H + com.fontlab.recipe + Ю + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/Y_usB_lended-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/Y_usB_lended-cy.glif new file mode 100644 index 00000000..a5438b86 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/Y_usB_lended-cy.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Yusbigcyr + com.fontlab.metricsRight + Yusbigcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/Y_usC_losedlittle-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/Y_usC_losedlittle-cy.glif new file mode 100644 index 00000000..2302fbd1 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/Y_usC_losedlittle-cy.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + A + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/Y_usbigcyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/Y_usbigcyr.glif new file mode 100644 index 00000000..a3af0c42 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/Y_usbigcyr.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ж + com.fontlab.metricsRight + Ж + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/Y_usbigiotifiedcyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/Y_usbigiotifiedcyr.glif new file mode 100644 index 00000000..25989c03 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/Y_usbigiotifiedcyr.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + Ж + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/Y_usiotifiedC_losedL_ittle-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/Y_usiotifiedC_losedL_ittle-cy.glif new file mode 100644 index 00000000..60dcf887 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/Y_usiotifiedC_losedL_ittle-cy.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + A + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/Y_uslittlecyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/Y_uslittlecyr.glif new file mode 100644 index 00000000..e9d721d1 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/Y_uslittlecyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + А-5 + com.fontlab.metricsRight + А-5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/Y_uslittleiotifiedcyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/Y_uslittleiotifiedcyr.glif new file mode 100644 index 00000000..21370bb1 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/Y_uslittleiotifiedcyr.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + А-5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/Z_.glif b/sources/FixelDisplay-Black.ufo/glyphs/Z_.glif new file mode 100644 index 00000000..88086a38 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/Z_.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/Z_.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/Z_.ss01.glif new file mode 100644 index 00000000..3ef073d6 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/Z_.ss01.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/Z_acute.glif b/sources/FixelDisplay-Black.ufo/glyphs/Z_acute.glif new file mode 100644 index 00000000..ba9bc0c6 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/Z_acute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Z+acute.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/Z_acute.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/Z_acute.ss01.glif new file mode 100644 index 00000000..203dcf57 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/Z_acute.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Z.ss01+acute.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/Z_caron.glif b/sources/FixelDisplay-Black.ufo/glyphs/Z_caron.glif new file mode 100644 index 00000000..b9d397ac --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/Z_caron.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Z+caron.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/Z_caron.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/Z_caron.ss01.glif new file mode 100644 index 00000000..8f9df63c --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/Z_caron.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Z.ss01+caron.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/Z_dotaccent.glif b/sources/FixelDisplay-Black.ufo/glyphs/Z_dotaccent.glif new file mode 100644 index 00000000..a5a6d477 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/Z_dotaccent.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Z+dotaccent.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/Z_dotaccent.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/Z_dotaccent.ss01.glif new file mode 100644 index 00000000..3c962248 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/Z_dotaccent.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Z.ss01+dotaccent.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/Z_e-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/Z_e-cy.glif new file mode 100644 index 00000000..5e5a6a23 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/Z_e-cy.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |C + com.fontlab.metricsRight + B + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/Z_edieresiscyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/Z_edieresiscyr.glif new file mode 100644 index 00000000..07fb5f5a --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/Z_edieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ze-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/Z_emlya-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/Z_emlya-cy.glif new file mode 100644 index 00000000..9be54f45 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/Z_emlya-cy.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Z-10 + com.fontlab.metricsRight + Z + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/Z_etailcyr.B_S_H_.glif b/sources/FixelDisplay-Black.ufo/glyphs/Z_etailcyr.B_S_H_.glif new file mode 100644 index 00000000..f433e7c5 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/Z_etailcyr.B_S_H_.glif @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + З + com.fontlab.metricsRight + З + com.fontlab.recipe + Zetailcyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/Z_etailcyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/Z_etailcyr.glif new file mode 100644 index 00000000..bc413090 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/Z_etailcyr.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + З + com.fontlab.metricsRight + З + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/Z_he-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/Z_he-cy.glif new file mode 100644 index 00000000..95c2093f --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/Z_he-cy.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |K + com.fontlab.metricsRight + K + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/Z_he-cy.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/Z_he-cy.ss01.glif new file mode 100644 index 00000000..427080e2 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/Z_he-cy.ss01.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |K + com.fontlab.metricsRight + K + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/Z_hebrevecyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/Z_hebrevecyr.glif new file mode 100644 index 00000000..6c435bbc --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/Z_hebrevecyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Zhe-cy+breve.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/Z_hedieresiscyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/Z_hedieresiscyr.glif new file mode 100644 index 00000000..70f6cb08 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/Z_hedieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Zhe-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/Z_hetailcyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/Z_hetailcyr.glif new file mode 100644 index 00000000..5d8514e6 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/Z_hetailcyr.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ж + com.fontlab.metricsRight + Katailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/Z_hwe-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/Z_hwe-cy.glif new file mode 100644 index 00000000..d58fb0d1 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/Z_hwe-cy.glif @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + З + com.fontlab.metricsRight + Ж + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/Z_jekomicyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/Z_jekomicyr.glif new file mode 100644 index 00000000..e73eb72c --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/Z_jekomicyr.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Dzjekomicyr + com.fontlab.metricsRight + Njekomicyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/_notdef.glif b/sources/FixelDisplay-Black.ufo/glyphs/_notdef.glif new file mode 100644 index 00000000..d7955e64 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/_notdef.glif @@ -0,0 +1,178 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + =55 + com.schriftgestaltung.Glyphs.rightMetricsKey + =55 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/_perc-circule.glif b/sources/FixelDisplay-Black.ufo/glyphs/_perc-circule.glif new file mode 100644 index 00000000..0ecaddc9 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/_perc-circule.glif @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.schriftgestaltung.Glyphs.Export + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/a-cy.accented.glif b/sources/FixelDisplay-Black.ufo/glyphs/a-cy.accented.glif new file mode 100644 index 00000000..92a966ca --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/a-cy.accented.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+acute + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/a-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/a-cy.glif new file mode 100644 index 00000000..b59d7333 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/a-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/a-cy.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/a-cy.ss01.glif new file mode 100644 index 00000000..706ed223 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/a-cy.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/a.glif b/sources/FixelDisplay-Black.ufo/glyphs/a.glif new file mode 100644 index 00000000..1bb808e8 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/a.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + n-10 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/a.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/a.ss01.glif new file mode 100644 index 00000000..e507c674 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/a.ss01.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/aacute.glif b/sources/FixelDisplay-Black.ufo/glyphs/aacute.glif new file mode 100644 index 00000000..829fbf45 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/aacute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+acute + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/aacute.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/aacute.ss01.glif new file mode 100644 index 00000000..dec42fe5 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/aacute.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+acute + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/abreve.glif b/sources/FixelDisplay-Black.ufo/glyphs/abreve.glif new file mode 100644 index 00000000..3ddf1dbd --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/abreve.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+breve + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/abreve.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/abreve.ss01.glif new file mode 100644 index 00000000..c1290742 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/abreve.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+breve + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/abrevecyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/abrevecyr.glif new file mode 100644 index 00000000..4f2a52d0 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/abrevecyr.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+breve + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/acaron.glif b/sources/FixelDisplay-Black.ufo/glyphs/acaron.glif new file mode 100644 index 00000000..6e7c2ae2 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/acaron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+caron + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/acircumflex.glif b/sources/FixelDisplay-Black.ufo/glyphs/acircumflex.glif new file mode 100644 index 00000000..b52866de --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/acircumflex.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+circumflex + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/acircumflex.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/acircumflex.ss01.glif new file mode 100644 index 00000000..9a67d0c3 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/acircumflex.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+circumflex + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/acute.case.glif b/sources/FixelDisplay-Black.ufo/glyphs/acute.case.glif new file mode 100644 index 00000000..bd5565fd --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/acute.case.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/acute.glif b/sources/FixelDisplay-Black.ufo/glyphs/acute.glif new file mode 100644 index 00000000..bfe38d08 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/acute.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/adieresis.glif b/sources/FixelDisplay-Black.ufo/glyphs/adieresis.glif new file mode 100644 index 00000000..78bbb578 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/adieresis.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+dieresis + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/adieresis.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/adieresis.ss01.glif new file mode 100644 index 00000000..5113f017 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/adieresis.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+dieresis + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/adieresiscyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/adieresiscyr.glif new file mode 100644 index 00000000..5e995cad --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/adieresiscyr.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/ae.glif b/sources/FixelDisplay-Black.ufo/glyphs/ae.glif new file mode 100644 index 00000000..dbec39c7 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/ae.glif @@ -0,0 +1,101 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + a + com.fontlab.metricsRight + e + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/ae.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/ae.ss01.glif new file mode 100644 index 00000000..d5f59d8d --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/ae.ss01.glif @@ -0,0 +1,96 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + a + com.fontlab.metricsRight + e.ss01 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/aeacute.glif b/sources/FixelDisplay-Black.ufo/glyphs/aeacute.glif new file mode 100644 index 00000000..5429d2b9 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/aeacute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ae+acute + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/agrave.glif b/sources/FixelDisplay-Black.ufo/glyphs/agrave.glif new file mode 100644 index 00000000..24f70464 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/agrave.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+grave + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/agrave.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/agrave.ss01.glif new file mode 100644 index 00000000..a52cd65d --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/agrave.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+grave + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/aiecyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/aiecyr.glif new file mode 100644 index 00000000..560a9fbb --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/aiecyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ae + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/amacron.glif b/sources/FixelDisplay-Black.ufo/glyphs/amacron.glif new file mode 100644 index 00000000..9a5f3b28 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/amacron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+macron + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/amacron.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/amacron.ss01.glif new file mode 100644 index 00000000..34fe9531 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/amacron.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+macron + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/ampersand.glif b/sources/FixelDisplay-Black.ufo/glyphs/ampersand.glif new file mode 100644 index 00000000..318acd26 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/ampersand.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/aogonek.glif b/sources/FixelDisplay-Black.ufo/glyphs/aogonek.glif new file mode 100644 index 00000000..b0071ed1 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/aogonek.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+ogonek + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/aogonek.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/aogonek.ss01.glif new file mode 100644 index 00000000..b69eb2e7 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/aogonek.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+ogonek + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/apostrophemod.glif b/sources/FixelDisplay-Black.ufo/glyphs/apostrophemod.glif new file mode 100644 index 00000000..20f21b56 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/apostrophemod.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + apostrophe + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/approxequal.glif b/sources/FixelDisplay-Black.ufo/glyphs/approxequal.glif new file mode 100644 index 00000000..a747acdc --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/approxequal.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/aring.glif b/sources/FixelDisplay-Black.ufo/glyphs/aring.glif new file mode 100644 index 00000000..87d3f834 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/aring.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+ring + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/aring.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/aring.ss01.glif new file mode 100644 index 00000000..3fb0d7fb --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/aring.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+ring + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/arrowdown.case.glif b/sources/FixelDisplay-Black.ufo/glyphs/arrowdown.case.glif new file mode 100644 index 00000000..835d3260 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/arrowdown.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + arrowup + com.fontlab.metricsRight + arrowup + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/arrowdown.glif b/sources/FixelDisplay-Black.ufo/glyphs/arrowdown.glif new file mode 100644 index 00000000..d32a0dd5 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/arrowdown.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + arrowup + com.fontlab.metricsRight + arrowup + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/arrowdown.ss01.case.glif b/sources/FixelDisplay-Black.ufo/glyphs/arrowdown.ss01.case.glif new file mode 100644 index 00000000..15fefc0b --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/arrowdown.ss01.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + arrowup + com.fontlab.metricsRight + arrowup + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/arrowdown.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/arrowdown.ss01.glif new file mode 100644 index 00000000..3fb2a14d --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/arrowdown.ss01.glif @@ -0,0 +1,15 @@ + + + + + + + + + com.fontlab.metricsLeft + arrowup + com.fontlab.metricsRight + arrowup + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/arrowleft.case.glif b/sources/FixelDisplay-Black.ufo/glyphs/arrowleft.case.glif new file mode 100644 index 00000000..cb746649 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/arrowleft.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + arrowleft + com.fontlab.metricsRight + arrowleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/arrowleft.glif b/sources/FixelDisplay-Black.ufo/glyphs/arrowleft.glif new file mode 100644 index 00000000..8b7400f9 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/arrowleft.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/arrowleft.ss01.case.glif b/sources/FixelDisplay-Black.ufo/glyphs/arrowleft.ss01.case.glif new file mode 100644 index 00000000..2fabbd31 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/arrowleft.ss01.case.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + arrowleft + com.fontlab.metricsRight + arrowleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/arrowleft.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/arrowleft.ss01.glif new file mode 100644 index 00000000..e09ab496 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/arrowleft.ss01.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + arrowleft + com.fontlab.metricsRight + arrowleft + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/arrowright.case.glif b/sources/FixelDisplay-Black.ufo/glyphs/arrowright.case.glif new file mode 100644 index 00000000..198a742b --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/arrowright.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |arrowleft + com.fontlab.metricsRight + |arrowleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/arrowright.glif b/sources/FixelDisplay-Black.ufo/glyphs/arrowright.glif new file mode 100644 index 00000000..e5e143e8 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/arrowright.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + |arrowleft + com.fontlab.metricsRight + |arrowleft + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/arrowright.ss01.case.glif b/sources/FixelDisplay-Black.ufo/glyphs/arrowright.ss01.case.glif new file mode 100644 index 00000000..37de7b4e --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/arrowright.ss01.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |arrowleft + com.fontlab.metricsRight + |arrowleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/arrowright.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/arrowright.ss01.glif new file mode 100644 index 00000000..f104a325 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/arrowright.ss01.glif @@ -0,0 +1,15 @@ + + + + + + + + + com.fontlab.metricsLeft + |arrowleft + com.fontlab.metricsRight + |arrowleft + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/arrowup.case.glif b/sources/FixelDisplay-Black.ufo/glyphs/arrowup.case.glif new file mode 100644 index 00000000..83e721b1 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/arrowup.case.glif @@ -0,0 +1,15 @@ + + + + + + + + + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/arrowup.glif b/sources/FixelDisplay-Black.ufo/glyphs/arrowup.glif new file mode 100644 index 00000000..91eb8ddf --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/arrowup.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + l() + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/arrowup.ss01.case.glif b/sources/FixelDisplay-Black.ufo/glyphs/arrowup.ss01.case.glif new file mode 100644 index 00000000..ea381479 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/arrowup.ss01.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + arrowup + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/arrowup.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/arrowup.ss01.glif new file mode 100644 index 00000000..b735e7df --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/arrowup.ss01.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + arrowup + com.fontlab.metricsRight + l() + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/asciicircum.glif b/sources/FixelDisplay-Black.ufo/glyphs/asciicircum.glif new file mode 100644 index 00000000..4f215275 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/asciicircum.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/asciitilde.glif b/sources/FixelDisplay-Black.ufo/glyphs/asciitilde.glif new file mode 100644 index 00000000..6aa2eddc --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/asciitilde.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/asterisk.glif b/sources/FixelDisplay-Black.ufo/glyphs/asterisk.glif new file mode 100644 index 00000000..57f63323 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/asterisk.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/at.case.glif b/sources/FixelDisplay-Black.ufo/glyphs/at.case.glif new file mode 100644 index 00000000..f7c7fcf4 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/at.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/at.glif b/sources/FixelDisplay-Black.ufo/glyphs/at.glif new file mode 100644 index 00000000..b3532991 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/at.glif @@ -0,0 +1,92 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/atilde.glif b/sources/FixelDisplay-Black.ufo/glyphs/atilde.glif new file mode 100644 index 00000000..07813d92 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/atilde.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+tilde + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/atilde.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/atilde.ss01.glif new file mode 100644 index 00000000..e4dd49bc --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/atilde.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+tilde + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/b.glif b/sources/FixelDisplay-Black.ufo/glyphs/b.glif new file mode 100644 index 00000000..16500c88 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/b.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/b.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/b.ss01.glif new file mode 100644 index 00000000..1a2c53ca --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/b.ss01.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/backslash.case.glif b/sources/FixelDisplay-Black.ufo/glyphs/backslash.case.glif new file mode 100644 index 00000000..57e97363 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/backslash.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + backslash + com.fontlab.metricsRight + backslash + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/backslash.glif b/sources/FixelDisplay-Black.ufo/glyphs/backslash.glif new file mode 100644 index 00000000..2749fc0f --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/backslash.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/bar.case.glif b/sources/FixelDisplay-Black.ufo/glyphs/bar.case.glif new file mode 100644 index 00000000..2aa239f3 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/bar.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + H-10 + com.fontlab.metricsRight + H-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/bar.glif b/sources/FixelDisplay-Black.ufo/glyphs/bar.glif new file mode 100644 index 00000000..6f2e2b26 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/bar.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H-10 + com.fontlab.metricsRight + H-10 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/be-cy.S_R_B_.glif b/sources/FixelDisplay-Black.ufo/glyphs/be-cy.S_R_B_.glif new file mode 100644 index 00000000..20d32451 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/be-cy.S_R_B_.glif @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/be-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/be-cy.glif new file mode 100644 index 00000000..fb4bdc6c --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/be-cy.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/bishopblack.glif b/sources/FixelDisplay-Black.ufo/glyphs/bishopblack.glif new file mode 100644 index 00000000..38979586 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/bishopblack.glif @@ -0,0 +1,241 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =10 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/bishopwhite.glif b/sources/FixelDisplay-Black.ufo/glyphs/bishopwhite.glif new file mode 100644 index 00000000..e98b8712 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/bishopwhite.glif @@ -0,0 +1,331 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/braceleft.case.glif b/sources/FixelDisplay-Black.ufo/glyphs/braceleft.case.glif new file mode 100644 index 00000000..69d74970 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/braceleft.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |braceright.case + com.fontlab.metricsRight + |braceright.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/braceleft.glif b/sources/FixelDisplay-Black.ufo/glyphs/braceleft.glif new file mode 100644 index 00000000..48cc3de3 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/braceleft.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/braceright.case.glif b/sources/FixelDisplay-Black.ufo/glyphs/braceright.case.glif new file mode 100644 index 00000000..d357871d --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/braceright.case.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/braceright.glif b/sources/FixelDisplay-Black.ufo/glyphs/braceright.glif new file mode 100644 index 00000000..33feb8d0 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/braceright.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/bracketangleleft.case.glif b/sources/FixelDisplay-Black.ufo/glyphs/bracketangleleft.case.glif new file mode 100644 index 00000000..40c67dfe --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/bracketangleleft.case.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + parenleft.case + com.fontlab.metricsRight + parenleft.case + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/bracketangleleft.glif b/sources/FixelDisplay-Black.ufo/glyphs/bracketangleleft.glif new file mode 100644 index 00000000..7b599014 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/bracketangleleft.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + parenleft + com.fontlab.metricsRight + parenleft + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/bracketangleright.case.glif b/sources/FixelDisplay-Black.ufo/glyphs/bracketangleright.case.glif new file mode 100644 index 00000000..a9b48b9d --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/bracketangleright.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |bracketangleleft.case + com.fontlab.metricsRight + |bracketangleleft.case + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/bracketangleright.glif b/sources/FixelDisplay-Black.ufo/glyphs/bracketangleright.glif new file mode 100644 index 00000000..486fb64b --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/bracketangleright.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.metricsLeft + |bracketangleleft + com.fontlab.metricsRight + |bracketangleleft + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/bracketleft.case.glif b/sources/FixelDisplay-Black.ufo/glyphs/bracketleft.case.glif new file mode 100644 index 00000000..09cefa4c --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/bracketleft.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |bracketright.case + com.fontlab.metricsRight + |bracketright.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/bracketleft.glif b/sources/FixelDisplay-Black.ufo/glyphs/bracketleft.glif new file mode 100644 index 00000000..a9d0df5f --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/bracketleft.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/bracketright.case.glif b/sources/FixelDisplay-Black.ufo/glyphs/bracketright.case.glif new file mode 100644 index 00000000..c36fe498 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/bracketright.case.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |bracketleft + com.fontlab.metricsRight + |bracketleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/bracketright.glif b/sources/FixelDisplay-Black.ufo/glyphs/bracketright.glif new file mode 100644 index 00000000..57dec487 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/bracketright.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |bracketleft + com.fontlab.metricsRight + |bracketleft + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/breve.case.glif b/sources/FixelDisplay-Black.ufo/glyphs/breve.case.glif new file mode 100644 index 00000000..b1e1c0b4 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/breve.case.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/breve.glif b/sources/FixelDisplay-Black.ufo/glyphs/breve.glif new file mode 100644 index 00000000..db405b38 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/breve.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/brokenbar.case.glif b/sources/FixelDisplay-Black.ufo/glyphs/brokenbar.case.glif new file mode 100644 index 00000000..706f2194 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/brokenbar.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + bar + com.fontlab.metricsRight + bar + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/brokenbar.glif b/sources/FixelDisplay-Black.ufo/glyphs/brokenbar.glif new file mode 100644 index 00000000..81a8dcfa --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/brokenbar.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + bar + com.fontlab.metricsRight + bar + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/bullet.case.glif b/sources/FixelDisplay-Black.ufo/glyphs/bullet.case.glif new file mode 100644 index 00000000..010bfa61 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/bullet.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + period + com.fontlab.metricsRight + period + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/bullet.glif b/sources/FixelDisplay-Black.ufo/glyphs/bullet.glif new file mode 100644 index 00000000..9c83b413 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/bullet.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + period + com.fontlab.metricsRight + period + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/c.glif b/sources/FixelDisplay-Black.ufo/glyphs/c.glif new file mode 100644 index 00000000..d7160df8 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/c.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/cacute.glif b/sources/FixelDisplay-Black.ufo/glyphs/cacute.glif new file mode 100644 index 00000000..957ad8e0 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/cacute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+acute + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/caron.case.glif b/sources/FixelDisplay-Black.ufo/glyphs/caron.case.glif new file mode 100644 index 00000000..c05eadbd --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/caron.case.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/caron.glif b/sources/FixelDisplay-Black.ufo/glyphs/caron.glif new file mode 100644 index 00000000..01361fbd --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/caron.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/caron.salt.glif b/sources/FixelDisplay-Black.ufo/glyphs/caron.salt.glif new file mode 100644 index 00000000..350365ab --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/caron.salt.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/ccaron.glif b/sources/FixelDisplay-Black.ufo/glyphs/ccaron.glif new file mode 100644 index 00000000..12688b8e --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/ccaron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+caron + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/ccedilla.glif b/sources/FixelDisplay-Black.ufo/glyphs/ccedilla.glif new file mode 100644 index 00000000..f6982fe1 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/ccedilla.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+cedilla + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/cche-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/cche-cy.glif new file mode 100644 index 00000000..9523c55c --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/cche-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ч + com.fontlab.metricsRight + ч + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/ccircumflex.glif b/sources/FixelDisplay-Black.ufo/glyphs/ccircumflex.glif new file mode 100644 index 00000000..ebb6c93d --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/ccircumflex.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+circumflex + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/cdotaccent.glif b/sources/FixelDisplay-Black.ufo/glyphs/cdotaccent.glif new file mode 100644 index 00000000..b2cb0fe1 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/cdotaccent.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+dotaccent + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/cedilla.glif b/sources/FixelDisplay-Black.ufo/glyphs/cedilla.glif new file mode 100644 index 00000000..e4829eb5 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/cedilla.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/cent.glif b/sources/FixelDisplay-Black.ufo/glyphs/cent.glif new file mode 100644 index 00000000..8d319a0d --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/cent.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + c + com.fontlab.metricsRight + c + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/che-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/che-cy.glif new file mode 100644 index 00000000..5c51a3df --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/che-cy.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + u-10 + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/cheabkhcyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/cheabkhcyr.glif new file mode 100644 index 00000000..9057e5cf --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/cheabkhcyr.glif @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + e + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/cheabkhtailcyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/cheabkhtailcyr.glif new file mode 100644 index 00000000..f0fcbc47 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/cheabkhtailcyr.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + cheabkhcyr + com.fontlab.metricsRight + cheabkhcyr + com.fontlab.recipe + cheabkhcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/chedieresiscyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/chedieresiscyr.glif new file mode 100644 index 00000000..2f32eb55 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/chedieresiscyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + che-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/chekhakascyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/chekhakascyr.glif new file mode 100644 index 00000000..3f553942 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/chekhakascyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ч + com.fontlab.metricsRight + н + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/chetailcyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/chetailcyr.glif new file mode 100644 index 00000000..9e284836 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/chetailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ч + com.fontlab.metricsRight + entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/chevertcyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/chevertcyr.glif new file mode 100644 index 00000000..b0df1268 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/chevertcyr.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ч + com.fontlab.metricsRight + н + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/circumflex.case.glif b/sources/FixelDisplay-Black.ufo/glyphs/circumflex.case.glif new file mode 100644 index 00000000..e4912d02 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/circumflex.case.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/circumflex.glif b/sources/FixelDisplay-Black.ufo/glyphs/circumflex.glif new file mode 100644 index 00000000..72992d9d --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/circumflex.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/clubwhite.glif b/sources/FixelDisplay-Black.ufo/glyphs/clubwhite.glif new file mode 100644 index 00000000..87514281 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/clubwhite.glif @@ -0,0 +1,155 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/colon.case.glif b/sources/FixelDisplay-Black.ufo/glyphs/colon.case.glif new file mode 100644 index 00000000..e6a267e9 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/colon.case.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/colon.glif b/sources/FixelDisplay-Black.ufo/glyphs/colon.glif new file mode 100644 index 00000000..f1190dc3 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/colon.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/colontriangularmod.glif b/sources/FixelDisplay-Black.ufo/glyphs/colontriangularmod.glif new file mode 100644 index 00000000..f71c9345 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/colontriangularmod.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + colon + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/comma.glif b/sources/FixelDisplay-Black.ufo/glyphs/comma.glif new file mode 100644 index 00000000..d527d342 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/comma.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/commaaccentcomb.glif b/sources/FixelDisplay-Black.ufo/glyphs/commaaccentcomb.glif new file mode 100644 index 00000000..a839755a --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/commaaccentcomb.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/commaaccentcomb.salt.glif b/sources/FixelDisplay-Black.ufo/glyphs/commaaccentcomb.salt.glif new file mode 100644 index 00000000..c30f2aa9 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/commaaccentcomb.salt.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/contents.plist b/sources/FixelDisplay-Black.ufo/glyphs/contents.plist new file mode 100644 index 00000000..2830b2de --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/contents.plist @@ -0,0 +1,2352 @@ + + + + + .notdef + _notdef.glif + A + A_.glif + A-cy + A_-cy.glif + A-cy.accented + A_-cy.accented.glif + A-cy.ss01 + A_-cy.ss01.glif + A.ss01 + A_.ss01.glif + AE + A_E_.glif + AE.ss01 + A_E_.ss01.glif + AEacute + A_E_acute.glif + Aacute + A_acute.glif + Aacute.ss01 + A_acute.ss01.glif + Abreve + A_breve.glif + Abreve.ss01 + A_breve.ss01.glif + Abrevecyr + A_brevecyr.glif + Acaron + A_caron.glif + Acircumflex + A_circumflex.glif + Acircumflex.ss01 + A_circumflex.ss01.glif + Adieresis + A_dieresis.glif + Adieresis.ss01 + A_dieresis.ss01.glif + Adieresiscyr + A_dieresiscyr.glif + Agrave + A_grave.glif + Agrave.ss01 + A_grave.ss01.glif + Aiecyr + A_iecyr.glif + Amacron + A_macron.glif + Amacron.ss01 + A_macron.ss01.glif + Aogonek + A_ogonek.glif + Aogonek.ss01 + A_ogonek.ss01.glif + Aring + A_ring.glif + Aring.ss01 + A_ring.ss01.glif + Atilde + A_tilde.glif + Atilde.ss01 + A_tilde.ss01.glif + B + B_.glif + Be-cy + B_e-cy.glif + C + C_.glif + CR + C_R_.glif + Cacute + C_acute.glif + Ccaron + C_caron.glif + Ccedilla + C_cedilla.glif + Cche-cy + C_che-cy.glif + Ccircumflex + C_circumflex.glif + Cdotaccent + C_dotaccent.glif + Che-cy + C_he-cy.glif + Cheabkhcyr + C_heabkhcyr.glif + Cheabkhtailcyr + C_heabkhtailcyr.glif + Chedieresiscyr + C_hedieresiscyr.glif + Chekhakascyr + C_hekhakascyr.glif + Chetailcyr + C_hetailcyr.glif + Chevertcyr + C_hevertcyr.glif + CrossedO-cy + C_rossedO_-cy.glif + D + D_.glif + Dcaron + D_caron.glif + Dchecyr + D_checyr.glif + Dcroat + D_croat.glif + De-cy + D_e-cy.glif + De-cy.BGR + D_e-cy.B_G_R_.glif + DeSoft-cy + D_eS_oft-cy.glif + Dekomicyr + D_ekomicyr.glif + Delta + D_elta.glif + Djecyr + D_jecyr.glif + Djekomicyr + D_jekomicyr.glif + Djerv-cy + D_jerv-cy.glif + DoubleO-cy + D_oubleO_-cy.glif + Dwe-cy + D_we-cy.glif + Dze-cy + D_ze-cy.glif + DzeReversed-cy + D_zeR_eversed-cy.glif + Dzeabkhcyr + D_zeabkhcyr.glif + Dzelo-cy + D_zelo-cy.glif + Dzhecyr + D_zhecyr.glif + Dzjekomicyr + D_zjekomicyr.glif + Dzwe-cy + D_zwe-cy.glif + Dzze-cy + D_zze-cy.glif + Dzzhecyr + D_zzhecyr.glif + E + E_.glif + E-cy + E_-cy.glif + E-cy.accented + E_-cy.accented.glif + Eacute + E_acute.glif + Ebreve + E_breve.glif + Ecaron + E_caron.glif + Ecircumflex + E_circumflex.glif + Edieresis + E_dieresis.glif + Edotaccent + E_dotaccent.glif + Ef-cy + E_f-cy.glif + Ef-cy.BGR + E_f-cy.B_G_R_.glif + Egrave + E_grave.glif + Eiotifiedcyr + E_iotifiedcyr.glif + El-cy + E_l-cy.glif + El-cy.BGR + E_l-cy.B_G_R_.glif + ElSoft-cy + E_lS_oft-cy.glif + Elhookcyr + E_lhookcyr.glif + Elmiddlehookcyr + E_lmiddlehookcyr.glif + Elsharptailcyr + E_lsharptailcyr.glif + Elsmallcyr + E_lsmallcyr.glif + Eltailcyr + E_ltailcyr.glif + Em-cy + E_m-cy.glif + Em-cy.ss01 + E_m-cy.ss01.glif + EmSoft-cy + E_mS_oft-cy.glif + Emacron + E_macron.glif + Emsharptailcyr + E_msharptailcyr.glif + En-cy + E_n-cy.glif + Eng + E_ng.glif + Eng.ss01 + E_ng.ss01.glif + Engecyr + E_ngecyr.glif + Enhookcyr + E_nhookcyr.glif + Enhookleftcyr + E_nhookleftcyr.glif + Enmiddlehookcyr + E_nmiddlehookcyr.glif + Ensharptailcyr + E_nsharptailcyr.glif + Entailcyr + E_ntailcyr.glif + Eogonek + E_ogonek.glif + Er-cy + E_r-cy.glif + Ereversed-cy + E_reversed-cy.glif + Ereversed-cy.accented + E_reversed-cy.accented.glif + Ereverseddieresiscyr + E_reverseddieresiscyr.glif + Ertickcyr + E_rtickcyr.glif + Es-cy + E_s-cy.glif + Estailcyr + E_stailcyr.glif + Estailcyr.BSH + E_stailcyr.B_S_H_.glif + Estailcyr.CHU + E_stailcyr.C_H_U_.glif + Eth + E_th.glif + F + F_.glif + Fitacyr + F_itacyr.glif + G + G_.glif + G.ss01 + G_.ss01.glif + Gacute + G_acute.glif + Gacute.ss01 + G_acute.ss01.glif + Gbreve + G_breve.glif + Gbreve.ss01 + G_breve.ss01.glif + Gcircumflex + G_circumflex.glif + Gcircumflex.ss01 + G_circumflex.ss01.glif + Gcommaaccent + G_commaaccent.glif + Gcommaaccent.ss01 + G_commaaccent.ss01.glif + Gdotaccent + G_dotaccent.glif + Gdotaccent.ss01 + G_dotaccent.ss01.glif + Ge-cy + G_e-cy.glif + Gehookcyr + G_ehookcyr.glif + Gehookstrokecyr + G_ehookstrokecyr.glif + Germandbls + G_ermandbls.glif + Gestrokecyr + G_estrokecyr.glif + Gestrokecyr.BSH + G_estrokecyr.B_S_H_.glif + Getailcyr + G_etailcyr.glif + Gheupturn-cy + G_heupturn-cy.glif + Gjecyr + G_jecyr.glif + H + H_.glif + Ha-cy + H_a-cy.glif + Ha-cy.ss01 + H_a-cy.ss01.glif + Haabkhcyr + H_aabkhcyr.glif + Hahookcyr + H_ahookcyr.glif + Hardsign-cy + H_ardsign-cy.glif + Hastrokecyr + H_astrokecyr.glif + Hbar + H_bar.glif + Hcircumflex + H_circumflex.glif + Hwe-cy + H_we-cy.glif + I + I_.glif + I-cy + I_-cy.glif + IJ + I_J_.glif + Ia-cy + I_a-cy.glif + Ia-cy.accented + I_a-cy.accented.glif + Ia-cy.ss01 + I_a-cy.ss01.glif + Iacute + I_acute.glif + Ibreve + I_breve.glif + Icircumflex + I_circumflex.glif + Idieresis + I_dieresis.glif + Idieresiscyr + I_dieresiscyr.glif + Idotaccent + I_dotaccent.glif + Ie-cy + I_e-cy.glif + Iebrevecyr + I_ebrevecyr.glif + Iegravecyr + I_egravecyr.glif + Igrave + I_grave.glif + Igravecyr + I_gravecyr.glif + Ii-cy + I_i-cy.glif + Ii-cy.accented + I_i-cy.accented.glif + Iishort-cy + I_ishort-cy.glif + Imacron + I_macron.glif + Imacroncyr + I_macroncyr.glif + Io-cy + I_o-cy.glif + Io-cy.accented + I_o-cy.accented.glif + Iogonek + I_ogonek.glif + Iota-cy + I_ota-cy.glif + IotifiedA-cy + I_otifiedA_-cy.glif + Ishortsharptailcyr + I_shortsharptailcyr.glif + Itilde + I_tilde.glif + Iu-cy + I_u-cy.glif + Iu-cy.accented + I_u-cy.accented.glif + Izhitsacyr + I_zhitsacyr.glif + Izhitsagravedblcyr + I_zhitsagravedblcyr.glif + J + J_.glif + J.ss01 + J_.ss01.glif + Jcircumflex + J_circumflex.glif + Jcircumflex.ss01 + J_circumflex.ss01.glif + Jecyr + J_ecyr.glif + K + K_.glif + K.ss01 + K_.ss01.glif + Ka-cy + K_a-cy.glif + Ka-cy.ss01 + K_a-cy.ss01.glif + Kaaleutcyr + K_aaleutcyr.glif + Kabashkcyr + K_abashkcyr.glif + Kahookcyr + K_ahookcyr.glif + Kastrokecyr + K_astrokecyr.glif + Katailcyr + K_atailcyr.glif + Kaverticalstrokecyr + K_averticalstrokecyr.glif + Kcommaaccent + K_commaaccent.glif + Kcommaaccent.ss01 + K_commaaccent.ss01.glif + Kjecyr + K_jecyr.glif + Koppacyr + K_oppacyr.glif + Ksicyr + K_sicyr.glif + L + L_.glif + Lacute + L_acute.glif + Lcaron + L_caron.glif + Lcommaaccent + L_commaaccent.glif + Ldot + L_dot.glif + Lhacyr + L_hacyr.glif + Ljecyr + L_jecyr.glif + Ljekomicyr + L_jekomicyr.glif + Lslash + L_slash.glif + M + M_.glif + M.ss01 + M_.ss01.glif + N + N_.glif + N.ss01 + N_.ss01.glif + NULL + N_U_L_L_.glif + Nacute + N_acute.glif + Nacute.ss01 + N_acute.ss01.glif + Ncaron + N_caron.glif + Ncaron.ss01 + N_caron.ss01.glif + Ncommaaccent + N_commaaccent.glif + Ncommaaccent.ss01 + N_commaaccent.ss01.glif + Njecyr + N_jecyr.glif + Njekomicyr + N_jekomicyr.glif + Ntilde + N_tilde.glif + Ntilde.ss01 + N_tilde.ss01.glif + O + O_.glif + O-cy + O_-cy.glif + O-cy.accented + O_-cy.accented.glif + OBinocular-cy + O_B_inocular-cy.glif + ODoubleMonocular-cy + O_D_oubleM_onocular-cy.glif + OE + O_E_.glif + OMonocular-cy + O_M_onocular-cy.glif + Oacute + O_acute.glif + Obarcyr + O_barcyr.glif + Obardieresiscyr + O_bardieresiscyr.glif + Obreve + O_breve.glif + Ocircumflex + O_circumflex.glif + Odieresis + O_dieresis.glif + Odieresiscyr + O_dieresiscyr.glif + Ograve + O_grave.glif + Ohungarumlaut + O_hungarumlaut.glif + Omacron + O_macron.glif + Omega + O_mega.glif + OmegaBroad-cy + O_megaB_road-cy.glif + Omegacyr + O_megacyr.glif + Omegaroundcyr + O_megaroundcyr.glif + Omegatitlocyr + O_megatitlocyr.glif + Oslash + O_slash.glif + Oslashacute + O_slashacute.glif + Otcyr + O_tcyr.glif + Otilde + O_tilde.glif + P + P_.glif + Palochkacyr + P_alochkacyr.glif + Pe-cy + P_e-cy.glif + Pehookcyr + P_ehookcyr.glif + Petailcyr + P_etailcyr.glif + Psicyr + P_sicyr.glif + Q + Q_.glif + Q.ss01 + Q_.ss01.glif + Qacyr + Q_acyr.glif + R + R_.glif + Racute + R_acute.glif + Rcaron + R_caron.glif + Rcommaaccent + R_commaaccent.glif + Reversedzecyr + R_eversedzecyr.glif + Rhacyr + R_hacyr.glif + S + S_.glif + Sacute + S_acute.glif + Scaron + S_caron.glif + Scedilla + S_cedilla.glif + Schwa + S_chwa.glif + Schwacyr + S_chwacyr.glif + Schwadieresiscyr + S_chwadieresiscyr.glif + Scircumflex + S_circumflex.glif + Scommaaccent + S_commaaccent.glif + Semisoftcyr + S_emisoftcyr.glif + Sha-cy + S_ha-cy.glif + Shcha-cy + S_hcha-cy.glif + Shhacyr + S_hhacyr.glif + Shhatailcyr + S_hhatailcyr.glif + Shwe-cy + S_hwe-cy.glif + Sjekomicyr + S_jekomicyr.glif + Softsign-cy + S_oftsign-cy.glif + T + T_.glif + Tbar + T_bar.glif + Tcaron + T_caron.glif + Tcedilla + T_cedilla.glif + Tche-cy + T_che-cy.glif + Tcommaaccent + T_commaaccent.glif + Te-cy + T_e-cy.glif + TeWithMiddleHook-cy + T_eW_ithM_iddleH_ook-cy.glif + Tetailcyr + T_etailcyr.glif + Tetsecyr + T_etsecyr.glif + Thorn + T_horn.glif + Tjekomicyr + T_jekomicyr.glif + Tse-cy + T_se-cy.glif + TseReversed-cy + T_seR_eversed-cy.glif + Tshecyr + T_shecyr.glif + Tsse-cy + T_sse-cy.glif + Tswe-cy + T_swe-cy.glif + Twe-cy + T_we-cy.glif + U + U_.glif + U-cy + U_-cy.glif + U-cy.accented + U_-cy.accented.glif + U-cy.ss01 + U_-cy.ss01.glif + Uacute + U_acute.glif + Uacutedblcyr + U_acutedblcyr.glif + Ubreve + U_breve.glif + Ucircumflex + U_circumflex.glif + Udieresis + U_dieresis.glif + Udieresiscyr + U_dieresiscyr.glif + Ugrave + U_grave.glif + Uhungarumlaut + U_hungarumlaut.glif + UkMonograph-cy + U_kM_onograph-cy.glif + Ukcyr + U_kcyr.glif + Umacron + U_macron.glif + Umacroncyr + U_macroncyr.glif + Uogonek + U_ogonek.glif + Uring + U_ring.glif + Ushort-cy + U_short-cy.glif + Ushort-cy.ss01 + U_short-cy.ss01.glif + Ustraightcyr + U_straightcyr.glif + Ustraightstrokecyr + U_straightstrokecyr.glif + Utilde + U_tilde.glif + V + V_.glif + V.ss01 + V_.ss01.glif + Ve-cy + V_e-cy.glif + W + W_.glif + W.ss01 + W_.ss01.glif + Wacute + W_acute.glif + Wacute.ss01 + W_acute.ss01.glif + Wcircumflex + W_circumflex.glif + Wcircumflex.ss01 + W_circumflex.ss01.glif + Wdieresis + W_dieresis.glif + Wdieresis.ss01 + W_dieresis.ss01.glif + Wecyr + W_ecyr.glif + Wgrave + W_grave.glif + Wgrave.ss01 + W_grave.ss01.glif + X + X_.glif + X.ss01 + X_.ss01.glif + Xatailcyr + X_atailcyr.glif + Y + Y_.glif + Y.ss01 + Y_.ss01.glif + Yacute + Y_acute.glif + Yacute.ss01 + Y_acute.ss01.glif + Yaecyr + Y_aecyr.glif + YatIotified-cy + Y_atI_otified-cy.glif + Yatcyr + Y_atcyr.glif + Ycircumflex + Y_circumflex.glif + Ycircumflex.ss01 + Y_circumflex.ss01.glif + Ydieresis + Y_dieresis.glif + Ydieresis.ss01 + Y_dieresis.ss01.glif + YerNeutral-cy + Y_erN_eutral-cy.glif + Yeru-cy + Y_eru-cy.glif + Yeru-cy.accented + Y_eru-cy.accented.glif + Yeru-cymacron + Y_eru-cymacron.glif + YeruBackYer-cy + Y_eruB_ackY_er-cy.glif + Yi-cy + Y_i-cy.glif + Ylongdieresiscyr + Y_longdieresiscyr.glif + Yn-cy + Y_n-cy.glif + YuReversed-cy + Y_uR_eversed-cy.glif + YusBlended-cy + Y_usB_lended-cy.glif + YusClosedlittle-cy + Y_usC_losedlittle-cy.glif + Yusbigcyr + Y_usbigcyr.glif + Yusbigiotifiedcyr + Y_usbigiotifiedcyr.glif + YusiotifiedClosedLittle-cy + Y_usiotifiedC_losedL_ittle-cy.glif + Yuslittlecyr + Y_uslittlecyr.glif + Yuslittleiotifiedcyr + Y_uslittleiotifiedcyr.glif + Z + Z_.glif + Z.ss01 + Z_.ss01.glif + Zacute + Z_acute.glif + Zacute.ss01 + Z_acute.ss01.glif + Zcaron + Z_caron.glif + Zcaron.ss01 + Z_caron.ss01.glif + Zdotaccent + Z_dotaccent.glif + Zdotaccent.ss01 + Z_dotaccent.ss01.glif + Ze-cy + Z_e-cy.glif + Zedieresiscyr + Z_edieresiscyr.glif + Zemlya-cy + Z_emlya-cy.glif + Zetailcyr + Z_etailcyr.glif + Zetailcyr.BSH + Z_etailcyr.B_S_H_.glif + Zhe-cy + Z_he-cy.glif + Zhe-cy.ss01 + Z_he-cy.ss01.glif + Zhebrevecyr + Z_hebrevecyr.glif + Zhedieresiscyr + Z_hedieresiscyr.glif + Zhetailcyr + Z_hetailcyr.glif + Zhwe-cy + Z_hwe-cy.glif + Zjekomicyr + Z_jekomicyr.glif + _perc-circule + _perc-circule.glif + a + a.glif + a-cy + a-cy.glif + a-cy.accented + a-cy.accented.glif + a-cy.ss01 + a-cy.ss01.glif + a.ss01 + a.ss01.glif + aacute + aacute.glif + aacute.ss01 + aacute.ss01.glif + abreve + abreve.glif + abreve.ss01 + abreve.ss01.glif + abrevecyr + abrevecyr.glif + acaron + acaron.glif + acircumflex + acircumflex.glif + acircumflex.ss01 + acircumflex.ss01.glif + acute + acute.glif + acute.case + acute.case.glif + adieresis + adieresis.glif + adieresis.ss01 + adieresis.ss01.glif + adieresiscyr + adieresiscyr.glif + ae + ae.glif + ae.ss01 + ae.ss01.glif + aeacute + aeacute.glif + agrave + agrave.glif + agrave.ss01 + agrave.ss01.glif + aiecyr + aiecyr.glif + amacron + amacron.glif + amacron.ss01 + amacron.ss01.glif + ampersand + ampersand.glif + aogonek + aogonek.glif + aogonek.ss01 + aogonek.ss01.glif + apostrophemod + apostrophemod.glif + approxequal + approxequal.glif + aring + aring.glif + aring.ss01 + aring.ss01.glif + arrowdown + arrowdown.glif + arrowdown.case + arrowdown.case.glif + arrowdown.ss01 + arrowdown.ss01.glif + arrowdown.ss01.case + arrowdown.ss01.case.glif + arrowleft + arrowleft.glif + arrowleft.case + arrowleft.case.glif + arrowleft.ss01 + arrowleft.ss01.glif + arrowleft.ss01.case + arrowleft.ss01.case.glif + arrowright + arrowright.glif + arrowright.case + arrowright.case.glif + arrowright.ss01 + arrowright.ss01.glif + arrowright.ss01.case + arrowright.ss01.case.glif + arrowup + arrowup.glif + arrowup.case + arrowup.case.glif + arrowup.ss01 + arrowup.ss01.glif + arrowup.ss01.case + arrowup.ss01.case.glif + asciicircum + asciicircum.glif + asciitilde + asciitilde.glif + asterisk + asterisk.glif + at + at.glif + at.case + at.case.glif + atilde + atilde.glif + atilde.ss01 + atilde.ss01.glif + b + b.glif + b.ss01 + b.ss01.glif + backslash + backslash.glif + backslash.case + backslash.case.glif + bar + bar.glif + bar.case + bar.case.glif + be-cy + be-cy.glif + be-cy.SRB + be-cy.S_R_B_.glif + bishopblack + bishopblack.glif + bishopwhite + bishopwhite.glif + braceleft + braceleft.glif + braceleft.case + braceleft.case.glif + braceright + braceright.glif + braceright.case + braceright.case.glif + bracketangleleft + bracketangleleft.glif + bracketangleleft.case + bracketangleleft.case.glif + bracketangleright + bracketangleright.glif + bracketangleright.case + bracketangleright.case.glif + bracketleft + bracketleft.glif + bracketleft.case + bracketleft.case.glif + bracketright + bracketright.glif + bracketright.case + bracketright.case.glif + breve + breve.glif + breve.case + breve.case.glif + brokenbar + brokenbar.glif + brokenbar.case + brokenbar.case.glif + bullet + bullet.glif + bullet.case + bullet.case.glif + c + c.glif + cacute + cacute.glif + caron + caron.glif + caron.case + caron.case.glif + caron.salt + caron.salt.glif + ccaron + ccaron.glif + ccedilla + ccedilla.glif + cche-cy + cche-cy.glif + ccircumflex + ccircumflex.glif + cdotaccent + cdotaccent.glif + cedilla + cedilla.glif + cent + cent.glif + che-cy + che-cy.glif + cheabkhcyr + cheabkhcyr.glif + cheabkhtailcyr + cheabkhtailcyr.glif + chedieresiscyr + chedieresiscyr.glif + chekhakascyr + chekhakascyr.glif + chetailcyr + chetailcyr.glif + chevertcyr + chevertcyr.glif + circumflex + circumflex.glif + circumflex.case + circumflex.case.glif + clubwhite + clubwhite.glif + colon + colon.glif + colon.case + colon.case.glif + colontriangularmod + colontriangularmod.glif + comma + comma.glif + commaaccentcomb + commaaccentcomb.glif + commaaccentcomb.salt + commaaccentcomb.salt.glif + copyright + copyright.glif + crossedo-cy + crossedo-cy.glif + crossedswords + crossedswords.glif + currency + currency.glif + d + d.glif + d.ss01 + d.ss01.glif + dagger + dagger.glif + daggerdbl + daggerdbl.glif + dcaron + dcaron.glif + dcaron.ss01 + dcaron.ss01.glif + dchecyr + dchecyr.glif + dcroat + dcroat.glif + dcroat.ss01 + dcroat.ss01.glif + de-cy + de-cy.glif + de-cy.BGR + de-cy.B_G_R_.glif + de-cy.ss01 + de-cy.ss01.glif + deSoft-cy + deS_oft-cy.glif + degree + degree.glif + dekomicyr + dekomicyr.glif + diamondwhite-misc + diamondwhite-misc.glif + dieresis + dieresis.glif + dieresis.alt + dieresis.alt.glif + dieresis.case + dieresis.case.glif + dieresisacute + dieresisacute.glif + dieresiscase.alt + dieresiscase.alt.glif + divide + divide.glif + djecyr + djecyr.glif + djekomicyr + djekomicyr.glif + djerv-cy + djerv-cy.glif + dollar + dollar.glif + dotaccent + dotaccent.glif + dotaccent.case + dotaccent.case.glif + doubleo-cy + doubleo-cy.glif + dramsignarmn + dramsignarmn.glif + dwe-cy + dwe-cy.glif + dze-cy + dze-cy.glif + dzeReversed-cy + dzeR_eversed-cy.glif + dzeabkhcyr + dzeabkhcyr.glif + dzelo-cy + dzelo-cy.glif + dzhecyr + dzhecyr.glif + dzjekomicyr + dzjekomicyr.glif + dzwe-cy + dzwe-cy.glif + dzze-cy + dzze-cy.glif + dzzhecyr + dzzhecyr.glif + e + e.glif + e-cy + e-cy.glif + e-cy.accented + e-cy.accented.glif + e-cy.hist + e-cy.hist.glif + e.ss01 + e.ss01.glif + eacute + eacute.glif + eacute.ss01 + eacute.ss01.glif + ebreve + ebreve.glif + ebreve.ss01 + ebreve.ss01.glif + ecaron + ecaron.glif + ecaron.ss01 + ecaron.ss01.glif + ecircumflex + ecircumflex.glif + ecircumflex.ss01 + ecircumflex.ss01.glif + edieresis + edieresis.glif + edieresis.ss01 + edieresis.ss01.glif + edotaccent + edotaccent.glif + edotaccent.ss01 + edotaccent.ss01.glif + ef-cy + ef-cy.glif + egrave + egrave.glif + egrave.ss01 + egrave.ss01.glif + eight + eight.glif + eight.osf + eight.osf.glif + eight.tf + eight.tf.glif + eiotifiedcyr + eiotifiedcyr.glif + eiotifiedcyr.BGR + eiotifiedcyr.B_G_R_.glif + el-cy + el-cy.glif + el-cy.BGR + el-cy.B_G_R_.glif + el-cy.ss01 + el-cy.ss01.glif + elSoft-cy + elS_oft-cy.glif + elhookcyr + elhookcyr.glif + ellipsis + ellipsis.glif + elmiddlehookcyr + elmiddlehookcyr.glif + elsharptailcyr + elsharptailcyr.glif + eltailcyr + eltailcyr.glif + em-cy + em-cy.glif + emSoft-cy + emS_oft-cy.glif + emacron + emacron.glif + emacron.ss01 + emacron.ss01.glif + emdash + emdash.glif + emdash.case + emdash.case.glif + emsharptailcyr + emsharptailcyr.glif + en-cy + en-cy.glif + enclosingcirclecomb + enclosingcirclecomb.glif + endash + endash.glif + endash.case + endash.case.glif + eng + eng.glif + engecyr + engecyr.glif + enhookcyr + enhookcyr.glif + enhookleftcyr + enhookleftcyr.glif + enmiddlehookcyr + enmiddlehookcyr.glif + ensharptailcyr + ensharptailcyr.glif + entailcyr + entailcyr.glif + eogonek + eogonek.glif + eogonek.ss01 + eogonek.ss01.glif + equal + equal.glif + er-cy + er-cy.glif + er-cy.ss01 + er-cy.ss01.glif + ereversed-cy + ereversed-cy.glif + ereversed-cy.accented + ereversed-cy.accented.glif + ereverseddieresiscyr + ereverseddieresiscyr.glif + ertickcyr + ertickcyr.glif + es-cy + es-cy.glif + estailcyr + estailcyr.glif + estailcyr.BSH + estailcyr.B_S_H_.glif + estailcyr.CHU + estailcyr.C_H_U_.glif + estimated + estimated.glif + eth + eth.glif + eturned + eturned.glif + euro + euro.glif + exclam + exclam.glif + exclamdown + exclamdown.glif + exclamdown.case + exclamdown.case.glif + f + f.glif + f.ss01 + f.ss01.glif + f_f + f_f.glif + f_f.ss01 + f_f.ss01.glif + f_f_i + f_f_i.glif + f_f_i.ss01 + f_f_i.ss01.glif + f_f_l + f_f_l.glif + f_f_l.ss01 + f_f_l.ss01.glif + fi + fi.glif + fi.ss01 + fi.ss01.glif + fitacyr + fitacyr.glif + five + five.glif + five.osf + five.osf.glif + five.tf + five.tf.glif + fl + fl.glif + fl.ss01 + fl.ss01.glif + floretteblack + floretteblack.glif + floretteoutlinedpetalledblackeight + floretteoutlinedpetalledblackeight.glif + florettewhite + florettewhite.glif + florin + florin.glif + flower + flower.glif + four + four.glif + four.osf + four.osf.glif + four.tf + four.tf.glif + fraction + fraction.glif + g + g.glif + g.ss01 + g.ss01.glif + gacute + gacute.glif + gacute.ss01 + gacute.ss01.glif + gbreve + gbreve.glif + gbreve.ss01 + gbreve.ss01.glif + gcircumflex + gcircumflex.glif + gcircumflex.ss01 + gcircumflex.ss01.glif + gcommaaccent + gcommaaccent.glif + gcommaaccent.ss01 + gcommaaccent.ss01.glif + gdotaccent + gdotaccent.glif + gdotaccent.ss01 + gdotaccent.ss01.glif + ge-cy + ge-cy.glif + ge-cy.BGR + ge-cy.B_G_R_.glif + ge-cy.SRB + ge-cy.S_R_B_.glif + gehookcyr + gehookcyr.glif + gehookstrokecyr + gehookstrokecyr.glif + germandbls + germandbls.glif + germandbls.ss01 + germandbls.ss01.glif + gestrokecyr + gestrokecyr.glif + gestrokecyr.BSH + gestrokecyr.B_S_H_.glif + getailcyr + getailcyr.glif + gheupturn-cy + gheupturn-cy.glif + gjecyr + gjecyr.glif + gjecyr.SRB + gjecyr.S_R_B_.glif + grave + grave.glif + grave.case + grave.case.glif + greater + greater.glif + greaterequal + greaterequal.glif + guillemetleft + guillemetleft.glif + guillemetleft.case + guillemetleft.case.glif + guillemetright + guillemetright.glif + guillemetright.case + guillemetright.case.glif + guilsinglleft + guilsinglleft.glif + guilsinglleft.case + guilsinglleft.case.glif + guilsinglright + guilsinglright.glif + guilsinglright.case + guilsinglright.case.glif + h + h.glif + ha-cy + ha-cy.glif + haabkhcyr + haabkhcyr.glif + hahookcyr + hahookcyr.glif + hardsign-cy + hardsign-cy.glif + hardsign-cy.BGR + hardsign-cy.B_G_R_.glif + hardsign-cy.ss01 + hardsign-cy.ss01.glif + hastrokecyr + hastrokecyr.glif + hbar + hbar.glif + hcircumflex + hcircumflex.glif + heart + heart.glif + heartwhite + heartwhite.glif + hryvnia + hryvnia.glif + hundredmillionscomb-cy + hundredmillionscomb-cy.glif + hundredthousandscombcyr + hundredthousandscombcyr.glif + hungarumlaut + hungarumlaut.glif + hungarumlaut.case + hungarumlaut.case.glif + hwe-cy + hwe-cy.glif + hyphen + hyphen.glif + hyphen.case + hyphen.case.glif + i + i.glif + i-cy + i-cy.glif + ia-cy + ia-cy.glif + ia-cy.accented + ia-cy.accented.glif + ia-cy.ss01 + ia-cy.ss01.glif + iacute + iacute.glif + ibreve + ibreve.glif + icircumflex + icircumflex.glif + idieresis + idieresis.glif + idieresiscyr + idieresiscyr.glif + idotless + idotless.glif + ie-cy + ie-cy.glif + ie-cy.ss01 + ie-cy.ss01.glif + iebrevecyr + iebrevecyr.glif + iegravecyr + iegravecyr.glif + iegravecyr.SRB + iegravecyr.S_R_B_.glif + igrave + igrave.glif + igravecyr + igravecyr.glif + igravecyr.SRB + igravecyr.S_R_B_.glif + ii-cy + ii-cy.glif + ii-cy.BGR + ii-cy.B_G_R_.glif + ii-cy.accented + ii-cy.accented.glif + iishort-cy + iishort-cy.glif + iishort-cy.BGR + iishort-cy.B_G_R_.glif + ij + ij.glif + imacron + imacron.glif + imacroncyr + imacroncyr.glif + increment + increment.glif + infinity + infinity.glif + integral + integral.glif + io-cy + io-cy.glif + io-cy.accented + io-cy.accented.glif + io-cy.ss01 + io-cy.ss01.glif + iogonek + iogonek.glif + iota-cy + iota-cy.glif + iotifieda-cy + iotifieda-cy.glif + iotifieda-cy.BGR + iotifieda-cy.B_G_R_.glif + iotifieda-cy.hist + iotifieda-cy.hist.glif + ishortsharptailcyr + ishortsharptailcyr.glif + itilde + itilde.glif + iu-cy + iu-cy.glif + iu-cy.BGR + iu-cy.B_G_R_.glif + iu-cy.accented + iu-cy.accented.glif + izhitsacyr + izhitsacyr.glif + izhitsagravedblcyr + izhitsagravedblcyr.glif + j + j.glif + jcircumflex + jcircumflex.glif + jdotless + jdotless.glif + je-cy + je-cy.glif + k + k.glif + ka-cy + ka-cy.glif + ka-cy.BGR + ka-cy.B_G_R_.glif + kaaleutcyr + kaaleutcyr.glif + kabashkcyr + kabashkcyr.glif + kahookcyr + kahookcyr.glif + kastrokecyr + kastrokecyr.glif + katailcyr + katailcyr.glif + kaverticalstrokecyr + kaverticalstrokecyr.glif + kcommaaccent + kcommaaccent.glif + kgreenlandic + kgreenlandic.glif + kjecyr + kjecyr.glif + knightblack + knightblack.glif + knightwhite + knightwhite.glif + koppacyr + koppacyr.glif + ksicyr + ksicyr.glif + l + l.glif + l.ss01 + l.ss01.glif + lacute + lacute.glif + lacute.ss01 + lacute.ss01.glif + lcaron + lcaron.glif + lcaron.ss01 + lcaron.ss01.glif + lcommaaccent + lcommaaccent.glif + lcommaaccent.ss01 + lcommaaccent.ss01.glif + ldot + ldot.glif + ldot.ss01 + ldot.ss01.glif + leo + leo.glif + less + less.glif + lessequal + lessequal.glif + lhacyr + lhacyr.glif + ljecyr + ljecyr.glif + ljecyr.ss01 + ljecyr.ss01.glif + ljekomicyr + ljekomicyr.glif + longs + longs.glif + lslash + lslash.glif + lslash.ss01 + lslash.ss01.glif + m + m.glif + macron + macron.glif + macron-fwd + macron-fwd.glif + macron-fwd.alt + macron-fwd.alt.glif + macron.case + macron.case.glif + macronacute.SRB + macronacute.S_R_B_.glif + millionscombcyr + millionscombcyr.glif + minus + minus.glif + minute + minute.glif + mu + mu.glif + multiply + multiply.glif + n + n.glif + nacute + nacute.glif + napostrophe + napostrophe.glif + ncaron + ncaron.glif + ncommaaccent + ncommaaccent.glif + neptune + neptune.glif + nine + nine.glif + nine.osf + nine.osf.glif + nine.tf + nine.tf.glif + njecyr + njecyr.glif + njecyr.ss01 + njecyr.ss01.glif + njekomicyr + njekomicyr.glif + notequal + notequal.glif + ntilde + ntilde.glif + numbersign + numbersign.glif + numero + numero.glif + numero.ss01 + numero.ss01.glif + o + o.glif + o-cy + o-cy.glif + o-cy.accented + o-cy.accented.glif + oBinocular-cy + oB_inocular-cy.glif + oDoubleMonocular-cy + oD_oubleM_onocular-cy.glif + oMonocular-cy + oM_onocular-cy.glif + oacute + oacute.glif + obarcyr + obarcyr.glif + obardieresiscyr + obardieresiscyr.glif + obreve + obreve.glif + ocircumflex + ocircumflex.glif + odieresis + odieresis.glif + odieresiscyr + odieresiscyr.glif + oe + oe.glif + oe.ss01 + oe.ss01.glif + ogonek + ogonek.glif + ograve + ograve.glif + ohungarumlaut + ohungarumlaut.glif + omacron + omacron.glif + omegaBroad-cy + omegaB_road-cy.glif + omegacyr + omegacyr.glif + omegaroundcyr + omegaroundcyr.glif + omegatitlocyr + omegatitlocyr.glif + omultiocular-cy + omultiocular-cy.glif + omultiocular-cy.alt + omultiocular-cy.alt.glif + one + one.glif + one.osf + one.osf.glif + one.tf + one.tf.glif + onehalf + onehalf.glif + onequarter + onequarter.glif + onesuperior + onesuperior.glif + ordfeminine + ordfeminine.glif + ordmasculine + ordmasculine.glif + oslash + oslash.glif + oslashacute + oslashacute.glif + otcyr + otcyr.glif + otilde + otilde.glif + p + p.glif + p.ss01 + p.ss01.glif + palatcombcyr + palatcombcyr.glif + palochkacyr + palochkacyr.glif + paragraph + paragraph.glif + parenleft + parenleft.glif + parenleft.case + parenleft.case.glif + parenright + parenright.glif + parenright.case + parenright.case.glif + partialdiff + partialdiff.glif + pe-cy + pe-cy.glif + pe-cy.BGR + pe-cy.B_G_R_.glif + pe-cy.SRB + pe-cy.S_R_B_.glif + pehookcyr + pehookcyr.glif + percent + percent.glif + period + period.glif + periodcentered + periodcentered.glif + perthousand + perthousand.glif + petailcyr + petailcyr.glif + pi + pi.glif + plus + plus.glif + plusminus + plusminus.glif + pokrytiecombcyr + pokrytiecombcyr.glif + product + product.glif + proportional + proportional.glif + psicyr + psicyr.glif + q + q.glif + q.ss01 + q.ss01.glif + qacyr + qacyr.glif + question + question.glif + questiondown + questiondown.glif + questiondown.case + questiondown.case.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 + radical + radical.glif + rcaron + rcaron.glif + rcommaaccent + rcommaaccent.glif + registered + registered.glif + reversedzecyr + reversedzecyr.glif + rhacyr + rhacyr.glif + ring + ring.glif + ring.case + ring.case.glif + rookblack + rookblack.glif + ruble + ruble.glif + s + s.glif + sacute + sacute.glif + scaron + scaron.glif + scedilla + scedilla.glif + schwacyr + schwacyr.glif + schwadieresiscyr + schwadieresiscyr.glif + scircumflex + scircumflex.glif + scommaaccent + scommaaccent.glif + second + second.glif + section + section.glif + semicolon + semicolon.glif + semicolon.case + semicolon.case.glif + semisoftcyr + semisoftcyr.glif + seven + seven.glif + seven.osf + seven.osf.glif + seven.tf + seven.tf.glif + sha-cy + sha-cy.glif + sha-cy.BGR + sha-cy.B_G_R_.glif + shcha-cy + shcha-cy.glif + shcha-cy.BGR + shcha-cy.B_G_R_.glif + shhacyr + shhacyr.glif + shhatailcyr + shhatailcyr.glif + shwe-cy + shwe-cy.glif + six + six.glif + six.osf + six.osf.glif + six.tf + six.tf.glif + sjekomicyr + sjekomicyr.glif + slash + slash.glif + slash.case + slash.case.glif + softsign-cy + softsign-cy.glif + softsign-cy.BGR + softsign-cy.B_G_R_.glif + softsign-cy.ss01 + softsign-cy.ss01.glif + space + space.glif + spadewhite + spadewhite.glif + sterling + sterling.glif + summation + summation.glif + t + t.glif + t.ss01 + t.ss01.glif + tbar + tbar.glif + tbar.ss01 + tbar.ss01.glif + tcaron + tcaron.glif + tcaron.ss01 + tcaron.ss01.glif + tcedilla + tcedilla.glif + tcedilla.ss01 + tcedilla.ss01.glif + tche-cy + tche-cy.glif + tcommaaccent + tcommaaccent.glif + tcommaaccent.ss01 + tcommaaccent.ss01.glif + te-cy + te-cy.glif + te-cy.BGR + te-cy.B_G_R_.glif + te-cy.SRB + te-cy.S_R_B_.glif + te-cy.ss01 + te-cy.ss01.glif + tenge + tenge.glif + tenmillionscomb-cy + tenmillionscomb-cy.glif + tetailcyr + tetailcyr.glif + tetsecyr + tetsecyr.glif + tewithmiddlehook-cy + tewithmiddlehook-cy.glif + thorn + thorn.glif + thousandmillionscomb-cy + thousandmillionscomb-cy.glif + thousandscyr + thousandscyr.glif + thousandscyr.dnom + thousandscyr.dnom.glif + three + three.glif + three.osf + three.osf.glif + three.tf + three.tf.glif + threequarters + threequarters.glif + threesuperior + threesuperior.glif + tilde + tilde.glif + tilde.case + tilde.case.glif + titlocombcyr + titlocombcyr.glif + tjekomicyr + tjekomicyr.glif + trademark + trademark.glif + tse-cy + tse-cy.glif + tse-cy.BGR + tse-cy.B_G_R_.glif + tseReversed-cy + tseR_eversed-cy.glif + tshecyr + tshecyr.glif + tsse-cy + tsse-cy.glif + tswe-cy + tswe-cy.glif + twe-cy + twe-cy.glif + two + two.glif + two.osf + two.osf.glif + two.tf + two.tf.glif + twosuperior + twosuperior.glif + u + u.glif + u-cy + u-cy.glif + u-cy.accented + u-cy.accented.glif + uacute + uacute.glif + uacutedblcyr + uacutedblcyr.glif + ubreve + ubreve.glif + ucircumflex + ucircumflex.glif + udieresis + udieresis.glif + udieresiscyr + udieresiscyr.glif + ugrave + ugrave.glif + uhungarumlaut + uhungarumlaut.glif + ukMonograph-cy + ukM_onograph-cy.glif + ukcyr + ukcyr.glif + umacron + umacron.glif + umacroncyr + umacroncyr.glif + underscore + underscore.glif + uni1C80 + uni1C_80.glif + uni1C81 + uni1C_81.glif + uni1C82 + uni1C_82.glif + uni1C83 + uni1C_83.glif + uni1C84 + uni1C_84.glif + uni1C85 + uni1C_85.glif + uni1C86 + uni1C_86.glif + uni1C87 + uni1C_87.glif + uni1C88 + uni1C_88.glif + uni1EBC + uni1E_B_C_.glif + uni1EBD + uni1E_B_D_.glif + uni2010 + uni2010.glif + uni2DEE + uni2D_E_E_.glif + uni2DEE.case + uni2D_E_E_.case.glif + uniE000 + uniE_000.glif + uniE000.alt + uniE_000.alt.glif + uniE01A + uniE_01A_.glif + uniF43A + uniF_43A_.glif + uniF43B + uniF_43B_.glif + uniF45D + uniF_45D_.glif + uniF45E + uniF_45E_.glif + uniF45F + uniF_45F_.glif + uniF475 + uniF_475.glif + uniF476 + uniF_476.glif + uniF477 + uniF_477.glif + uniF478 + uniF_478.glif + uniF479 + uniF_479.glif + uniF498 + uniF_498.glif + uniF499 + uniF_499.glif + uniF49A + uniF_49A_.glif + uniF49B + uniF_49B_.glif + uniF49C + uniF_49C_.glif + uniF49D + uniF_49D_.glif + uniF49E + uniF_49E_.glif + uniF49F + uniF_49F_.glif + uniF4C6 + uniF_4C_6.glif + uniF4C7 + uniF_4C_7.glif + uniF4CC + uniF_4C_C_.glif + uniF4CD + uniF_4C_D_.glif + uniF4D2 + uniF_4D_2.glif + uniF4D3 + uniF_4D_3.glif + uniF4D4 + uniF_4D_4.glif + uniF4D5 + uniF_4D_5.glif + uniF4D6 + uniF_4D_6.glif + uniF4D7 + uniF_4D_7.glif + uniF4D8 + uniF_4D_8.glif + uniF4D9 + uniF_4D_9.glif + uniF50E + uniF_50E_.glif + uniF50F + uniF_50F_.glif + uniF510 + uniF_510.glif + uniF511 + uniF_511.glif + uniF512 + uniF_512.glif + uniF513 + uniF_513.glif + uniF514 + uniF_514.glif + uniF515 + uniF_515.glif + uniF516 + uniF_516.glif + uniF517 + uniF_517.glif + uniF518 + uniF_518.glif + uniF519 + uniF_519.glif + uniF51A + uniF_51A_.glif + uniF51B + uniF_51B_.glif + uniF51C + uniF_51C_.glif + uniF51D + uniF_51D_.glif + uniF51E + uniF_51E_.glif + uniF51F + uniF_51F_.glif + uniF521 + uniF_521.glif + uniF522 + uniF_522.glif + uniF523 + uniF_523.glif + uniF524 + uniF_524.glif + uniF525 + uniF_525.glif + uniF526 + uniF_526.glif + uniF527 + uniF_527.glif + uniF528 + uniF_528.glif + uniF529 + uniF_529.glif + uniF52A + uniF_52A_.glif + uniF52B + uniF_52B_.glif + uniF52C + uniF_52C_.glif + uniF52D + uniF_52D_.glif + uniF52E + uniF_52E_.glif + uniF52F + uniF_52F_.glif + uniF532 + uniF_532.glif + uniF533 + uniF_533.glif + uniF536 + uniF_536.glif + uniF537 + uniF_537.glif + uniF538 + uniF_538.glif + uniF539 + uniF_539.glif + uniF830 + uniF_830.glif + uniF831 + uniF_831.glif + uniF833 + uniF_833.glif + uniF834 + uniF_834.glif + uniF839 + uniF_839.glif + uniF83A + uniF_83A_.glif + uniF86F + uniF_86F_.glif + uniF870 + uniF_870.glif + uniF872 + uniF_872.glif + uniF873 + uniF_873.glif + uniF875 + uniF_875.glif + uniF876 + uniF_876.glif + uniF878 + uniF_878.glif + uniF879 + uniF_879.glif + uniF87B + uniF_87B_.glif + uniF87C + uniF_87C_.glif + uniF87E + uniF_87E_.glif + uniF87F + uniF_87F_.glif + uogonek + uogonek.glif + uring + uring.glif + ushort-cy + ushort-cy.glif + ustraightcyr + ustraightcyr.glif + ustraightstrokecyr + ustraightstrokecyr.glif + utilde + utilde.glif + v + v.glif + ve-cy + ve-cy.glif + ve-cy.BGR + ve-cy.B_G_R_.glif + ve-cy.ss01 + ve-cy.ss01.glif + virgo + virgo.glif + vzmetcomb-cy + vzmetcomb-cy.glif + w + w.glif + wacute + wacute.glif + wcircumflex + wcircumflex.glif + wdieresis + wdieresis.glif + wecyr + wecyr.glif + wgrave + wgrave.glif + x + x.glif + xatailcyr + xatailcyr.glif + y + y.glif + yacute + yacute.glif + yaecyr + yaecyr.glif + yatIotified-cy + yatI_otified-cy.glif + yatcyr + yatcyr.glif + yatcyr.BGR + yatcyr.B_G_R_.glif + ycircumflex + ycircumflex.glif + ydieresis + ydieresis.glif + yen + yen.glif + yen.ss01 + yen.ss01.glif + yerNeutral-cy + yerN_eutral-cy.glif + yeru-cy + yeru-cy.glif + yeru-cy.accented + yeru-cy.accented.glif + yeru-cy.ss01 + yeru-cy.ss01.glif + yeruBackyer-cy + yeruB_ackyer-cy.glif + yi-cy + yi-cy.glif + yi-cy.alt + yi-cy.alt.glif + ylongdieresiscyr + ylongdieresiscyr.glif + yn-cy + yn-cy.glif + yuReversed-cy + yuR_eversed-cy.glif + yusBlended-cy + yusB_lended-cy.glif + yusClosedlittle-cy + yusC_losedlittle-cy.glif + yusbigcyr + yusbigcyr.glif + yusbigiotifiedcyr + yusbigiotifiedcyr.glif + yusbigiotifiedcyr.BGR + yusbigiotifiedcyr.B_G_R_.glif + yusiotifiedClosedLittle-cy + yusiotifiedC_losedL_ittle-cy.glif + yuslittlecyr + yuslittlecyr.glif + yuslittleiotifiedcyr + yuslittleiotifiedcyr.glif + z + z.glif + zacute + zacute.glif + zcaron + zcaron.glif + zdotaccent + zdotaccent.glif + ze-cy + ze-cy.glif + ze-cy.BGR + ze-cy.B_G_R_.glif + zedieresiscyr + zedieresiscyr.glif + zemlya-cy + zemlya-cy.glif + zero + zero.glif + zero.osf + zero.osf.glif + zero.tf + zero.tf.glif + zetailcyr + zetailcyr.glif + zetailcyr.BSH + zetailcyr.B_S_H_.glif + zhe-cy + zhe-cy.glif + zhe-cy.BGR + zhe-cy.B_G_R_.glif + zhebrevecyr + zhebrevecyr.glif + zhedieresiscyr + zhedieresiscyr.glif + zhetailcyr + zhetailcyr.glif + zhwe-cy + zhwe-cy.glif + zjekomicyr + zjekomicyr.glif + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/copyright.glif b/sources/FixelDisplay-Black.ufo/glyphs/copyright.glif new file mode 100644 index 00000000..a907c4b3 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/copyright.glif @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/crossedo-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/crossedo-cy.glif new file mode 100644 index 00000000..f355f1d5 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/crossedo-cy.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + com.fontlab.recipe + o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/crossedswords.glif b/sources/FixelDisplay-Black.ufo/glyphs/crossedswords.glif new file mode 100644 index 00000000..86508b4e --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/crossedswords.glif @@ -0,0 +1,103 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/currency.glif b/sources/FixelDisplay-Black.ufo/glyphs/currency.glif new file mode 100644 index 00000000..3b41f42a --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/currency.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/d.glif b/sources/FixelDisplay-Black.ufo/glyphs/d.glif new file mode 100644 index 00000000..d8075584 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/d.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/d.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/d.ss01.glif new file mode 100644 index 00000000..025f8f9e --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/d.ss01.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/dagger.glif b/sources/FixelDisplay-Black.ufo/glyphs/dagger.glif new file mode 100644 index 00000000..fdc68938 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/dagger.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/daggerdbl.glif b/sources/FixelDisplay-Black.ufo/glyphs/daggerdbl.glif new file mode 100644 index 00000000..c074fb5d --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/daggerdbl.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/dcaron.glif b/sources/FixelDisplay-Black.ufo/glyphs/dcaron.glif new file mode 100644 index 00000000..f3c62748 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/dcaron.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + d+caron.salt + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/dcaron.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/dcaron.ss01.glif new file mode 100644 index 00000000..3810b074 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/dcaron.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + d.ss01+caron.salt + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/dchecyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/dchecyr.glif new file mode 100644 index 00000000..a27e102b --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/dchecyr.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + д+10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/dcroat.glif b/sources/FixelDisplay-Black.ufo/glyphs/dcroat.glif new file mode 100644 index 00000000..0354184b --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/dcroat.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + d + com.fontlab.metricsRight + |hbar + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/dcroat.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/dcroat.ss01.glif new file mode 100644 index 00000000..b6b201c6 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/dcroat.ss01.glif @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + d.ss01 + com.fontlab.metricsRight + |hbar + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/de-cy.B_G_R_.glif b/sources/FixelDisplay-Black.ufo/glyphs/de-cy.B_G_R_.glif new file mode 100644 index 00000000..812893b6 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/de-cy.B_G_R_.glif @@ -0,0 +1,77 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + q + com.fontlab.metricsRight + q + com.fontlab.recipe + uni1C81 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/de-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/de-cy.glif new file mode 100644 index 00000000..0a6acfc5 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/de-cy.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/de-cy.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/de-cy.ss01.glif new file mode 100644 index 00000000..2ba733eb --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/de-cy.ss01.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/deS_oft-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/deS_oft-cy.glif new file mode 100644 index 00000000..f1cda263 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/deS_oft-cy.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + д + com.fontlab.metricsRight + ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/degree.glif b/sources/FixelDisplay-Black.ufo/glyphs/degree.glif new file mode 100644 index 00000000..1e28bddd --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/degree.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/dekomicyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/dekomicyr.glif new file mode 100644 index 00000000..aa5f09ac --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/dekomicyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + d + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/diamondwhite-misc.glif b/sources/FixelDisplay-Black.ufo/glyphs/diamondwhite-misc.glif new file mode 100644 index 00000000..f0baee62 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/diamondwhite-misc.glif @@ -0,0 +1,145 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =30 + com.fontlab.metricsRight + =30 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/dieresis.alt.glif b/sources/FixelDisplay-Black.ufo/glyphs/dieresis.alt.glif new file mode 100644 index 00000000..a3f1caa5 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/dieresis.alt.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 1,0.6,0.994,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/dieresis.case.glif b/sources/FixelDisplay-Black.ufo/glyphs/dieresis.case.glif new file mode 100644 index 00000000..2eebd50b --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/dieresis.case.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/dieresis.glif b/sources/FixelDisplay-Black.ufo/glyphs/dieresis.glif new file mode 100644 index 00000000..6406aa50 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/dieresis.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/dieresisacute.glif b/sources/FixelDisplay-Black.ufo/glyphs/dieresisacute.glif new file mode 100644 index 00000000..8e26911b --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/dieresisacute.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/dieresiscase.alt.glif b/sources/FixelDisplay-Black.ufo/glyphs/dieresiscase.alt.glif new file mode 100644 index 00000000..237f1652 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/dieresiscase.alt.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 1,0.6,0.994,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/divide.glif b/sources/FixelDisplay-Black.ufo/glyphs/divide.glif new file mode 100644 index 00000000..54ab48bf --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/divide.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/djecyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/djecyr.glif new file mode 100644 index 00000000..246b94a8 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/djecyr.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hbar + com.fontlab.metricsRight + h + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/djekomicyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/djekomicyr.glif new file mode 100644 index 00000000..3a9dee76 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/djekomicyr.glif @@ -0,0 +1,73 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + d + com.fontlab.metricsRight + njekomicyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/djerv-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/djerv-cy.glif new file mode 100644 index 00000000..fcc51560 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/djerv-cy.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + r() + com.fontlab.metricsRight + п-30 + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/dollar.glif b/sources/FixelDisplay-Black.ufo/glyphs/dollar.glif new file mode 100644 index 00000000..f1742044 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/dollar.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + S + com.fontlab.metricsRight + S + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/dotaccent.case.glif b/sources/FixelDisplay-Black.ufo/glyphs/dotaccent.case.glif new file mode 100644 index 00000000..d2ebc10b --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/dotaccent.case.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/dotaccent.glif b/sources/FixelDisplay-Black.ufo/glyphs/dotaccent.glif new file mode 100644 index 00000000..2b8df19d --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/dotaccent.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/doubleo-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/doubleo-cy.glif new file mode 100644 index 00000000..a27e8ceb --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/doubleo-cy.glif @@ -0,0 +1,91 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + com.fontlab.recipe + o_o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/dramsignarmn.glif b/sources/FixelDisplay-Black.ufo/glyphs/dramsignarmn.glif new file mode 100644 index 00000000..d9c19fc4 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/dramsignarmn.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/dwe-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/dwe-cy.glif new file mode 100644 index 00000000..33a48902 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/dwe-cy.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + д + com.fontlab.metricsRight + д + com.fontlab.recipe + д + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/dze-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/dze-cy.glif new file mode 100644 index 00000000..7e258dfb --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/dze-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + s + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/dzeR_eversed-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/dzeR_eversed-cy.glif new file mode 100644 index 00000000..51259fcd --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/dzeR_eversed-cy.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |s + com.fontlab.metricsRight + |s + com.fontlab.recipe + s + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/dzeabkhcyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/dzeabkhcyr.glif new file mode 100644 index 00000000..240b3eff --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/dzeabkhcyr.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + z-30 + com.fontlab.metricsRight + з-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/dzelo-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/dzelo-cy.glif new file mode 100644 index 00000000..2eb53039 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/dzelo-cy.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/dzhecyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/dzhecyr.glif new file mode 100644 index 00000000..8d839614 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/dzhecyr.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/dzjekomicyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/dzjekomicyr.glif new file mode 100644 index 00000000..3eea1af9 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/dzjekomicyr.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + zjekomicyr + com.fontlab.metricsRight + ц-5 + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/dzwe-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/dzwe-cy.glif new file mode 100644 index 00000000..edfdc1ea --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/dzwe-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + s + com.fontlab.metricsRight + s + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/dzze-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/dzze-cy.glif new file mode 100644 index 00000000..c638a673 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/dzze-cy.glif @@ -0,0 +1,84 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + д + com.fontlab.metricsRight + д-30 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/dzzhecyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/dzzhecyr.glif new file mode 100644 index 00000000..4ec63cbf --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/dzzhecyr.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + д+5 + com.fontlab.metricsRight + ж+5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/e-cy.accented.glif b/sources/FixelDisplay-Black.ufo/glyphs/e-cy.accented.glif new file mode 100644 index 00000000..1b6cc8f9 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/e-cy.accented.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+acute + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/e-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/e-cy.glif new file mode 100644 index 00000000..4f77382e --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/e-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + c + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/e-cy.hist.glif b/sources/FixelDisplay-Black.ufo/glyphs/e-cy.hist.glif new file mode 100644 index 00000000..c954b72a --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/e-cy.hist.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + c + com.fontlab.recipe + uni1C83 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/e.glif b/sources/FixelDisplay-Black.ufo/glyphs/e.glif new file mode 100644 index 00000000..960f82a7 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/e.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/e.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/e.ss01.glif new file mode 100644 index 00000000..d98ea7d3 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/e.ss01.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + O-5 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/eacute.glif b/sources/FixelDisplay-Black.ufo/glyphs/eacute.glif new file mode 100644 index 00000000..e05669c8 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/eacute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+acute + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/eacute.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/eacute.ss01.glif new file mode 100644 index 00000000..85504fdd --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/eacute.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+acute + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/ebreve.glif b/sources/FixelDisplay-Black.ufo/glyphs/ebreve.glif new file mode 100644 index 00000000..f6e23210 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/ebreve.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+breve + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/ebreve.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/ebreve.ss01.glif new file mode 100644 index 00000000..9da776f5 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/ebreve.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+breve + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/ecaron.glif b/sources/FixelDisplay-Black.ufo/glyphs/ecaron.glif new file mode 100644 index 00000000..a56b3040 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/ecaron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+caron + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/ecaron.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/ecaron.ss01.glif new file mode 100644 index 00000000..05e04a40 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/ecaron.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+caron + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/ecircumflex.glif b/sources/FixelDisplay-Black.ufo/glyphs/ecircumflex.glif new file mode 100644 index 00000000..eb88dcb5 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/ecircumflex.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+circumflex + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/ecircumflex.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/ecircumflex.ss01.glif new file mode 100644 index 00000000..47fc8a1e --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/ecircumflex.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+circumflex + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/edieresis.glif b/sources/FixelDisplay-Black.ufo/glyphs/edieresis.glif new file mode 100644 index 00000000..62726dfb --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/edieresis.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsLeft + e + com.fontlab.metricsRight + e + com.fontlab.recipe + e+dieresis + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/edieresis.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/edieresis.ss01.glif new file mode 100644 index 00000000..1ced417f --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/edieresis.ss01.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsLeft + e + com.fontlab.metricsRight + e + com.fontlab.recipe + e.ss01+dieresis + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/edotaccent.glif b/sources/FixelDisplay-Black.ufo/glyphs/edotaccent.glif new file mode 100644 index 00000000..0a1f64e2 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/edotaccent.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+dotaccent + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/edotaccent.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/edotaccent.ss01.glif new file mode 100644 index 00000000..cf626c54 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/edotaccent.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+dotaccent + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/ef-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/ef-cy.glif new file mode 100644 index 00000000..a36aaead --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/ef-cy.glif @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/egrave.glif b/sources/FixelDisplay-Black.ufo/glyphs/egrave.glif new file mode 100644 index 00000000..5c215f73 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/egrave.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+grave + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/egrave.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/egrave.ss01.glif new file mode 100644 index 00000000..a3fac84d --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/egrave.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+grave + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/eight.glif b/sources/FixelDisplay-Black.ufo/glyphs/eight.glif new file mode 100644 index 00000000..5ba202fc --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/eight.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/eight.osf.glif b/sources/FixelDisplay-Black.ufo/glyphs/eight.osf.glif new file mode 100644 index 00000000..d0a8c3e7 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/eight.osf.glif @@ -0,0 +1,15 @@ + + + + + + + + + com.fontlab.metricsLeft + eight + com.fontlab.metricsRight + eight + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/eight.tf.glif b/sources/FixelDisplay-Black.ufo/glyphs/eight.tf.glif new file mode 100644 index 00000000..a3bf3f8d --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/eight.tf.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/eiotifiedcyr.B_G_R_.glif b/sources/FixelDisplay-Black.ufo/glyphs/eiotifiedcyr.B_G_R_.glif new file mode 100644 index 00000000..881a8f5d --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/eiotifiedcyr.B_G_R_.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + c + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/eiotifiedcyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/eiotifiedcyr.glif new file mode 100644 index 00000000..c9b5d19f --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/eiotifiedcyr.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + c + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/el-cy.B_G_R_.glif b/sources/FixelDisplay-Black.ufo/glyphs/el-cy.B_G_R_.glif new file mode 100644 index 00000000..9873540b --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/el-cy.B_G_R_.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + v + com.fontlab.metricsRight + v + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/el-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/el-cy.glif new file mode 100644 index 00000000..5f097900 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/el-cy.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/el-cy.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/el-cy.ss01.glif new file mode 100644 index 00000000..ef1464aa --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/el-cy.ss01.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/elS_oft-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/elS_oft-cy.glif new file mode 100644 index 00000000..e296c0f6 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/elS_oft-cy.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/elhookcyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/elhookcyr.glif new file mode 100644 index 00000000..cef69796 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/elhookcyr.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + н + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/ellipsis.glif b/sources/FixelDisplay-Black.ufo/glyphs/ellipsis.glif new file mode 100644 index 00000000..8347c351 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/ellipsis.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/elmiddlehookcyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/elmiddlehookcyr.glif new file mode 100644 index 00000000..b933ccc8 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/elmiddlehookcyr.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + enmiddlehookcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/elsharptailcyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/elsharptailcyr.glif new file mode 100644 index 00000000..57c49836 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/elsharptailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + ensharptailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/eltailcyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/eltailcyr.glif new file mode 100644 index 00000000..d99d8057 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/eltailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/em-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/em-cy.glif new file mode 100644 index 00000000..ae2b395c --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/em-cy.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/emS_oft-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/emS_oft-cy.glif new file mode 100644 index 00000000..66145d86 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/emS_oft-cy.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + м + com.fontlab.metricsRight + ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/emacron.glif b/sources/FixelDisplay-Black.ufo/glyphs/emacron.glif new file mode 100644 index 00000000..438e8d0a --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/emacron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+macron + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/emacron.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/emacron.ss01.glif new file mode 100644 index 00000000..c134df07 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/emacron.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+macron + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/emdash.case.glif b/sources/FixelDisplay-Black.ufo/glyphs/emdash.case.glif new file mode 100644 index 00000000..aad59e2b --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/emdash.case.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/emdash.glif b/sources/FixelDisplay-Black.ufo/glyphs/emdash.glif new file mode 100644 index 00000000..5ec3dc77 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/emdash.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/emsharptailcyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/emsharptailcyr.glif new file mode 100644 index 00000000..34f92d7f --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/emsharptailcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + м + com.fontlab.metricsRight + ensharptailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/en-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/en-cy.glif new file mode 100644 index 00000000..83a93533 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/en-cy.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/enclosingcirclecomb.glif b/sources/FixelDisplay-Black.ufo/glyphs/enclosingcirclecomb.glif new file mode 100644 index 00000000..4408a814 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/enclosingcirclecomb.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/endash.case.glif b/sources/FixelDisplay-Black.ufo/glyphs/endash.case.glif new file mode 100644 index 00000000..a00bce33 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/endash.case.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/endash.glif b/sources/FixelDisplay-Black.ufo/glyphs/endash.glif new file mode 100644 index 00000000..23eed6f9 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/endash.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/eng.glif b/sources/FixelDisplay-Black.ufo/glyphs/eng.glif new file mode 100644 index 00000000..d51b79a1 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/eng.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + n + com.fontlab.metricsRight + dotlessj + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/engecyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/engecyr.glif new file mode 100644 index 00000000..ce151a73 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/engecyr.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/enhookcyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/enhookcyr.glif new file mode 100644 index 00000000..8ef8f2bc --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/enhookcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/enhookleftcyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/enhookleftcyr.glif new file mode 100644 index 00000000..4143109c --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/enhookleftcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + j + com.fontlab.metricsRight + н + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/enmiddlehookcyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/enmiddlehookcyr.glif new file mode 100644 index 00000000..27125cc9 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/enmiddlehookcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + softsign-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/ensharptailcyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/ensharptailcyr.glif new file mode 100644 index 00000000..59263f82 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/ensharptailcyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + д + com.fontlab.recipe + entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/entailcyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/entailcyr.glif new file mode 100644 index 00000000..0dc78be2 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/entailcyr.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + ц + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/eogonek.glif b/sources/FixelDisplay-Black.ufo/glyphs/eogonek.glif new file mode 100644 index 00000000..64872af2 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/eogonek.glif @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + e+ogonek + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/eogonek.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/eogonek.ss01.glif new file mode 100644 index 00000000..40cdf135 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/eogonek.ss01.glif @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + e.ss01+ogonek + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/equal.glif b/sources/FixelDisplay-Black.ufo/glyphs/equal.glif new file mode 100644 index 00000000..c1017529 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/equal.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/er-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/er-cy.glif new file mode 100644 index 00000000..c89b6310 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/er-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + p + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/er-cy.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/er-cy.ss01.glif new file mode 100644 index 00000000..039ee528 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/er-cy.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + p.ss01 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/ereversed-cy.accented.glif b/sources/FixelDisplay-Black.ufo/glyphs/ereversed-cy.accented.glif new file mode 100644 index 00000000..1222d72b --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/ereversed-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + э+acute + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/ereversed-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/ereversed-cy.glif new file mode 100644 index 00000000..c028bbbb --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/ereversed-cy.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |c + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/ereverseddieresiscyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/ereverseddieresiscyr.glif new file mode 100644 index 00000000..70ef4621 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/ereverseddieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ereversed-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/ertickcyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/ertickcyr.glif new file mode 100644 index 00000000..516a51fe --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/ertickcyr.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + p + com.fontlab.metricsRight + p + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/es-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/es-cy.glif new file mode 100644 index 00000000..26b9e980 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/es-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/estailcyr.B_S_H_.glif b/sources/FixelDisplay-Black.ufo/glyphs/estailcyr.B_S_H_.glif new file mode 100644 index 00000000..9bfa8578 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/estailcyr.B_S_H_.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + c + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/estailcyr.C_H_U_.glif b/sources/FixelDisplay-Black.ufo/glyphs/estailcyr.C_H_U_.glif new file mode 100644 index 00000000..e403f6f5 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/estailcyr.C_H_U_.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+cedilla + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/estailcyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/estailcyr.glif new file mode 100644 index 00000000..19565ea2 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/estailcyr.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + с + com.fontlab.metricsRight + с + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/estimated.glif b/sources/FixelDisplay-Black.ufo/glyphs/estimated.glif new file mode 100644 index 00000000..a750c848 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/estimated.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/eth.glif b/sources/FixelDisplay-Black.ufo/glyphs/eth.glif new file mode 100644 index 00000000..8da50b40 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/eth.glif @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/eturned.glif b/sources/FixelDisplay-Black.ufo/glyphs/eturned.glif new file mode 100644 index 00000000..c446f419 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/eturned.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + schwacyr + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/euro.glif b/sources/FixelDisplay-Black.ufo/glyphs/euro.glif new file mode 100644 index 00000000..a02f59e7 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/euro.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + C + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/exclam.glif b/sources/FixelDisplay-Black.ufo/glyphs/exclam.glif new file mode 100644 index 00000000..1ed73d37 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/exclam.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/exclamdown.case.glif b/sources/FixelDisplay-Black.ufo/glyphs/exclamdown.case.glif new file mode 100644 index 00000000..bceb7163 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/exclamdown.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + exclamdown + com.fontlab.metricsRight + exclamdown + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/exclamdown.glif b/sources/FixelDisplay-Black.ufo/glyphs/exclamdown.glif new file mode 100644 index 00000000..ab41cd09 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/exclamdown.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/f.glif b/sources/FixelDisplay-Black.ufo/glyphs/f.glif new file mode 100644 index 00000000..bc31c364 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/f.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/f.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/f.ss01.glif new file mode 100644 index 00000000..e0c20b23 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/f.ss01.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/f_f.glif b/sources/FixelDisplay-Black.ufo/glyphs/f_f.glif new file mode 100644 index 00000000..466f375d --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/f_f.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f + com.fontlab.metricsRight + f + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/f_f.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/f_f.ss01.glif new file mode 100644 index 00000000..d530b531 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/f_f.ss01.glif @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f.ss01 + com.fontlab.metricsRight + f.ss01 + com.fontlab.recipe + f.ss01_f.ss01 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/f_f_i.glif b/sources/FixelDisplay-Black.ufo/glyphs/f_f_i.glif new file mode 100644 index 00000000..8baee2e8 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/f_f_i.glif @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f + com.fontlab.metricsRight + i + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/f_f_i.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/f_f_i.ss01.glif new file mode 100644 index 00000000..8da3dca8 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/f_f_i.ss01.glif @@ -0,0 +1,88 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f.ss01 + com.fontlab.metricsRight + i + com.fontlab.recipe + f.ss01_f.ss01_i + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/f_f_l.glif b/sources/FixelDisplay-Black.ufo/glyphs/f_f_l.glif new file mode 100644 index 00000000..10439519 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/f_f_l.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f + com.fontlab.metricsRight + l + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/f_f_l.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/f_f_l.ss01.glif new file mode 100644 index 00000000..af548517 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/f_f_l.ss01.glif @@ -0,0 +1,86 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f.ss01 + com.fontlab.metricsRight + l.ss01 + com.fontlab.recipe + f.ss01_f.ss01_l.ss01 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/fi.glif b/sources/FixelDisplay-Black.ufo/glyphs/fi.glif new file mode 100644 index 00000000..e30d57d1 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/fi.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f + com.fontlab.metricsRight + i + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/fi.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/fi.ss01.glif new file mode 100644 index 00000000..45617437 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/fi.ss01.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f.ss01 + com.fontlab.metricsRight + i + com.fontlab.recipe + f.ss01_i + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/fitacyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/fitacyr.glif new file mode 100644 index 00000000..86e72d8d --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/fitacyr.glif @@ -0,0 +1,76 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + obarcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/five.glif b/sources/FixelDisplay-Black.ufo/glyphs/five.glif new file mode 100644 index 00000000..d83dcdf0 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/five.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/five.osf.glif b/sources/FixelDisplay-Black.ufo/glyphs/five.osf.glif new file mode 100644 index 00000000..2d54d48c --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/five.osf.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + five + com.fontlab.metricsRight + five + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/five.tf.glif b/sources/FixelDisplay-Black.ufo/glyphs/five.tf.glif new file mode 100644 index 00000000..d2304c24 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/five.tf.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/fl.glif b/sources/FixelDisplay-Black.ufo/glyphs/fl.glif new file mode 100644 index 00000000..5a59ad7f --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/fl.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f + com.fontlab.metricsRight + l + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/fl.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/fl.ss01.glif new file mode 100644 index 00000000..9cb704c8 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/fl.ss01.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f.ss01 + com.fontlab.metricsRight + l.ss01 + com.fontlab.recipe + f.ss01_l.ss01 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/floretteblack.glif b/sources/FixelDisplay-Black.ufo/glyphs/floretteblack.glif new file mode 100644 index 00000000..97a6ae0c --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/floretteblack.glif @@ -0,0 +1,522 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/floretteoutlinedpetalledblackeight.glif b/sources/FixelDisplay-Black.ufo/glyphs/floretteoutlinedpetalledblackeight.glif new file mode 100644 index 00000000..6faec902 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/floretteoutlinedpetalledblackeight.glif @@ -0,0 +1,693 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/florettewhite.glif b/sources/FixelDisplay-Black.ufo/glyphs/florettewhite.glif new file mode 100644 index 00000000..60726d03 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/florettewhite.glif @@ -0,0 +1,417 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/florin.glif b/sources/FixelDisplay-Black.ufo/glyphs/florin.glif new file mode 100644 index 00000000..14d62c06 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/florin.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/flower.glif b/sources/FixelDisplay-Black.ufo/glyphs/flower.glif new file mode 100644 index 00000000..2cb319f0 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/flower.glif @@ -0,0 +1,278 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/four.glif b/sources/FixelDisplay-Black.ufo/glyphs/four.glif new file mode 100644 index 00000000..7cb20396 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/four.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/four.osf.glif b/sources/FixelDisplay-Black.ufo/glyphs/four.osf.glif new file mode 100644 index 00000000..a55f020b --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/four.osf.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + four + com.fontlab.metricsRight + four + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/four.tf.glif b/sources/FixelDisplay-Black.ufo/glyphs/four.tf.glif new file mode 100644 index 00000000..c9f6ed60 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/four.tf.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/fraction.glif b/sources/FixelDisplay-Black.ufo/glyphs/fraction.glif new file mode 100644 index 00000000..409464d4 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/fraction.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/g.glif b/sources/FixelDisplay-Black.ufo/glyphs/g.glif new file mode 100644 index 00000000..576dc228 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/g.glif @@ -0,0 +1,94 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/g.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/g.ss01.glif new file mode 100644 index 00000000..dc2d12d1 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/g.ss01.glif @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/gacute.glif b/sources/FixelDisplay-Black.ufo/glyphs/gacute.glif new file mode 100644 index 00000000..112a46c2 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/gacute.glif @@ -0,0 +1,109 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + g+acute + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/gacute.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/gacute.ss01.glif new file mode 100644 index 00000000..e3c47fee --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/gacute.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + g.ss01+acute + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/gbreve.glif b/sources/FixelDisplay-Black.ufo/glyphs/gbreve.glif new file mode 100644 index 00000000..9a117e56 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/gbreve.glif @@ -0,0 +1,119 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + g+breve + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/gbreve.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/gbreve.ss01.glif new file mode 100644 index 00000000..1cdd0bc4 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/gbreve.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + g.ss01+breve + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/gcircumflex.glif b/sources/FixelDisplay-Black.ufo/glyphs/gcircumflex.glif new file mode 100644 index 00000000..9099fe51 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/gcircumflex.glif @@ -0,0 +1,113 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + g+circumflex + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/gcircumflex.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/gcircumflex.ss01.glif new file mode 100644 index 00000000..c91f5248 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/gcircumflex.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + g.ss01+circumflex + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/gcommaaccent.glif b/sources/FixelDisplay-Black.ufo/glyphs/gcommaaccent.glif new file mode 100644 index 00000000..b54254c3 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/gcommaaccent.glif @@ -0,0 +1,121 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + g+commaaccentcomb.salt + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/gcommaaccent.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/gcommaaccent.ss01.glif new file mode 100644 index 00000000..6e2554a3 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/gcommaaccent.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + g.ss01+commaaccentcomb.salt + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/gdotaccent.glif b/sources/FixelDisplay-Black.ufo/glyphs/gdotaccent.glif new file mode 100644 index 00000000..cfe864af --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/gdotaccent.glif @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + g+dotaccent + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/gdotaccent.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/gdotaccent.ss01.glif new file mode 100644 index 00000000..90c9d6f6 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/gdotaccent.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + g.ss01+dotaccent + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/ge-cy.B_G_R_.glif b/sources/FixelDisplay-Black.ufo/glyphs/ge-cy.B_G_R_.glif new file mode 100644 index 00000000..53c69df6 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/ge-cy.B_G_R_.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |s+5 + com.fontlab.metricsRight + |s+5 + com.fontlab.recipe + dzeReversed-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/ge-cy.S_R_B_.glif b/sources/FixelDisplay-Black.ufo/glyphs/ge-cy.S_R_B_.glif new file mode 100644 index 00000000..41114e15 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/ge-cy.S_R_B_.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + iota-cy+macron + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/ge-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/ge-cy.glif new file mode 100644 index 00000000..da603ea0 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/ge-cy.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + т + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/gehookcyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/gehookcyr.glif new file mode 100644 index 00000000..6dad942a --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/gehookcyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + г + com.fontlab.metricsRight + enmiddlehookcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/gehookstrokecyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/gehookstrokecyr.glif new file mode 100644 index 00000000..be4eedc8 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/gehookstrokecyr.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + gestrokecyr + com.fontlab.metricsRight + gestrokecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/germandbls.glif b/sources/FixelDisplay-Black.ufo/glyphs/germandbls.glif new file mode 100644 index 00000000..cc267101 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/germandbls.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + h-5 + com.fontlab.metricsRight + з + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/germandbls.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/germandbls.ss01.glif new file mode 100644 index 00000000..3e9fbb28 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/germandbls.ss01.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f.ss01 + com.fontlab.metricsRight + з + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/gestrokecyr.B_S_H_.glif b/sources/FixelDisplay-Black.ufo/glyphs/gestrokecyr.B_S_H_.glif new file mode 100644 index 00000000..dbaf0593 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/gestrokecyr.B_S_H_.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + г + com.fontlab.metricsRight + gestrokecyr + com.fontlab.recipe + gestrokecyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/gestrokecyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/gestrokecyr.glif new file mode 100644 index 00000000..3ae3e6d8 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/gestrokecyr.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + г + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/getailcyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/getailcyr.glif new file mode 100644 index 00000000..a4354ecd --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/getailcyr.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + г + com.fontlab.metricsRight + г + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/gheupturn-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/gheupturn-cy.glif new file mode 100644 index 00000000..85b46f0f --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/gheupturn-cy.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + г + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/gjecyr.S_R_B_.glif b/sources/FixelDisplay-Black.ufo/glyphs/gjecyr.S_R_B_.glif new file mode 100644 index 00000000..32a9b518 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/gjecyr.S_R_B_.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + iota-cy+macronacute.SRB + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/gjecyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/gjecyr.glif new file mode 100644 index 00000000..27eb3012 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/gjecyr.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/grave.case.glif b/sources/FixelDisplay-Black.ufo/glyphs/grave.case.glif new file mode 100644 index 00000000..7007da64 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/grave.case.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/grave.glif b/sources/FixelDisplay-Black.ufo/glyphs/grave.glif new file mode 100644 index 00000000..184e7c09 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/grave.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/greater.glif b/sources/FixelDisplay-Black.ufo/glyphs/greater.glif new file mode 100644 index 00000000..f2d5d0de --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/greater.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |less + com.fontlab.metricsRight + |less + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/greaterequal.glif b/sources/FixelDisplay-Black.ufo/glyphs/greaterequal.glif new file mode 100644 index 00000000..d7ff0632 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/greaterequal.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/guillemetleft.case.glif b/sources/FixelDisplay-Black.ufo/glyphs/guillemetleft.case.glif new file mode 100644 index 00000000..8b07d938 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/guillemetleft.case.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + guilsinglleft + com.fontlab.metricsRight + guilsinglleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/guillemetleft.glif b/sources/FixelDisplay-Black.ufo/glyphs/guillemetleft.glif new file mode 100644 index 00000000..e7612c33 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/guillemetleft.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + guilsinglleft + com.fontlab.metricsRight + guilsinglleft + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/guillemetright.case.glif b/sources/FixelDisplay-Black.ufo/glyphs/guillemetright.case.glif new file mode 100644 index 00000000..dfbccfe1 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/guillemetright.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |guillemetleft.case + com.fontlab.metricsRight + |guillemetleft.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/guillemetright.glif b/sources/FixelDisplay-Black.ufo/glyphs/guillemetright.glif new file mode 100644 index 00000000..2fe6a37c --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/guillemetright.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |guilsinglleft + com.fontlab.metricsRight + |guilsinglleft + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/guilsinglleft.case.glif b/sources/FixelDisplay-Black.ufo/glyphs/guilsinglleft.case.glif new file mode 100644 index 00000000..ba711128 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/guilsinglleft.case.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/guilsinglleft.glif b/sources/FixelDisplay-Black.ufo/glyphs/guilsinglleft.glif new file mode 100644 index 00000000..21904ec2 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/guilsinglleft.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/guilsinglright.case.glif b/sources/FixelDisplay-Black.ufo/glyphs/guilsinglright.case.glif new file mode 100644 index 00000000..164a2c10 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/guilsinglright.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |guilsinglleft + com.fontlab.metricsRight + |guilsinglleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/guilsinglright.glif b/sources/FixelDisplay-Black.ufo/glyphs/guilsinglright.glif new file mode 100644 index 00000000..637b2882 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/guilsinglright.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + |guilsinglleft + com.fontlab.metricsRight + |guilsinglleft + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/h.glif b/sources/FixelDisplay-Black.ufo/glyphs/h.glif new file mode 100644 index 00000000..035793be --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/h.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + com.fontlab.metricsRight + n + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/ha-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/ha-cy.glif new file mode 100644 index 00000000..b12b5fb8 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/ha-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + x + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/haabkhcyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/haabkhcyr.glif new file mode 100644 index 00000000..91c578b9 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/haabkhcyr.glif @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + |o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/hahookcyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/hahookcyr.glif new file mode 100644 index 00000000..358bd0bf --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/hahookcyr.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + x + com.fontlab.metricsRight + x + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/hardsign-cy.B_G_R_.glif b/sources/FixelDisplay-Black.ufo/glyphs/hardsign-cy.B_G_R_.glif new file mode 100644 index 00000000..88b4c7f9 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/hardsign-cy.B_G_R_.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/hardsign-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/hardsign-cy.glif new file mode 100644 index 00000000..26046ce6 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/hardsign-cy.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/hardsign-cy.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/hardsign-cy.ss01.glif new file mode 100644 index 00000000..665b5aa5 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/hardsign-cy.ss01.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/hastrokecyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/hastrokecyr.glif new file mode 100644 index 00000000..95b6ac2d --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/hastrokecyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + x + com.fontlab.metricsRight + x + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/hbar.glif b/sources/FixelDisplay-Black.ufo/glyphs/hbar.glif new file mode 100644 index 00000000..45ce7a1a --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/hbar.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + h + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/hcircumflex.glif b/sources/FixelDisplay-Black.ufo/glyphs/hcircumflex.glif new file mode 100644 index 00000000..564a938b --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/hcircumflex.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + h+circumflex.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/heart.glif b/sources/FixelDisplay-Black.ufo/glyphs/heart.glif new file mode 100644 index 00000000..0dc7f70d --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/heart.glif @@ -0,0 +1,320 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/heartwhite.glif b/sources/FixelDisplay-Black.ufo/glyphs/heartwhite.glif new file mode 100644 index 00000000..ccd05f9e --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/heartwhite.glif @@ -0,0 +1,189 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/hryvnia.glif b/sources/FixelDisplay-Black.ufo/glyphs/hryvnia.glif new file mode 100644 index 00000000..da43305d --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/hryvnia.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/hundredmillionscomb-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/hundredmillionscomb-cy.glif new file mode 100644 index 00000000..8e7b4134 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/hundredmillionscomb-cy.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/hundredthousandscombcyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/hundredthousandscombcyr.glif new file mode 100644 index 00000000..97d61e96 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/hundredthousandscombcyr.glif @@ -0,0 +1,141 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/hungarumlaut.case.glif b/sources/FixelDisplay-Black.ufo/glyphs/hungarumlaut.case.glif new file mode 100644 index 00000000..fd0761f0 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/hungarumlaut.case.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/hungarumlaut.glif b/sources/FixelDisplay-Black.ufo/glyphs/hungarumlaut.glif new file mode 100644 index 00000000..46590538 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/hungarumlaut.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/hwe-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/hwe-cy.glif new file mode 100644 index 00000000..a5f9e111 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/hwe-cy.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + h + com.fontlab.metricsRight + h + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/hyphen.case.glif b/sources/FixelDisplay-Black.ufo/glyphs/hyphen.case.glif new file mode 100644 index 00000000..8f33a161 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/hyphen.case.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.metricsLeft + hyphen + com.fontlab.metricsRight + hyphen + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/hyphen.glif b/sources/FixelDisplay-Black.ufo/glyphs/hyphen.glif new file mode 100644 index 00000000..7de676f6 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/hyphen.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/i-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/i-cy.glif new file mode 100644 index 00000000..21b1a24b --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/i-cy.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + i + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/i.glif b/sources/FixelDisplay-Black.ufo/glyphs/i.glif new file mode 100644 index 00000000..80c530b4 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/i.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + dotlessi+dotaccent + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/ia-cy.accented.glif b/sources/FixelDisplay-Black.ufo/glyphs/ia-cy.accented.glif new file mode 100644 index 00000000..c2b4134e --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/ia-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + я+acute + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/ia-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/ia-cy.glif new file mode 100644 index 00000000..66a37c8b --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/ia-cy.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/ia-cy.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/ia-cy.ss01.glif new file mode 100644 index 00000000..8a6e4add --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/ia-cy.ss01.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/iacute.glif b/sources/FixelDisplay-Black.ufo/glyphs/iacute.glif new file mode 100644 index 00000000..4f875ed7 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/iacute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + dotlessi+acute + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/ibreve.glif b/sources/FixelDisplay-Black.ufo/glyphs/ibreve.glif new file mode 100644 index 00000000..3efdd2ee --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/ibreve.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + dotlessi+breve + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/icircumflex.glif b/sources/FixelDisplay-Black.ufo/glyphs/icircumflex.glif new file mode 100644 index 00000000..1b21f1ed --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/icircumflex.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + dotlessi+circumflex + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/idieresis.glif b/sources/FixelDisplay-Black.ufo/glyphs/idieresis.glif new file mode 100644 index 00000000..b732aa08 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/idieresis.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + idotless+dieresis.alt + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/idieresiscyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/idieresiscyr.glif new file mode 100644 index 00000000..2b84c974 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/idieresiscyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ii-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/idotless.glif b/sources/FixelDisplay-Black.ufo/glyphs/idotless.glif new file mode 100644 index 00000000..64e0871f --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/idotless.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/ie-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/ie-cy.glif new file mode 100644 index 00000000..3101f0ff --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/ie-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/ie-cy.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/ie-cy.ss01.glif new file mode 100644 index 00000000..3fd5ddac --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/ie-cy.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/iebrevecyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/iebrevecyr.glif new file mode 100644 index 00000000..529f799f --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/iebrevecyr.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+breve + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/iegravecyr.S_R_B_.glif b/sources/FixelDisplay-Black.ufo/glyphs/iegravecyr.S_R_B_.glif new file mode 100644 index 00000000..2b255ac5 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/iegravecyr.S_R_B_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+grave + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/iegravecyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/iegravecyr.glif new file mode 100644 index 00000000..f2bf129f --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/iegravecyr.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+grave + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/igrave.glif b/sources/FixelDisplay-Black.ufo/glyphs/igrave.glif new file mode 100644 index 00000000..4f9d8807 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/igrave.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + dotlessi+grave + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/igravecyr.S_R_B_.glif b/sources/FixelDisplay-Black.ufo/glyphs/igravecyr.S_R_B_.glif new file mode 100644 index 00000000..662c7932 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/igravecyr.S_R_B_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+grave + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/igravecyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/igravecyr.glif new file mode 100644 index 00000000..7843b0a0 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/igravecyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ii-cy+grave + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/ii-cy.B_G_R_.glif b/sources/FixelDisplay-Black.ufo/glyphs/ii-cy.B_G_R_.glif new file mode 100644 index 00000000..add4590b --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/ii-cy.B_G_R_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/ii-cy.accented.glif b/sources/FixelDisplay-Black.ufo/glyphs/ii-cy.accented.glif new file mode 100644 index 00000000..1d360156 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/ii-cy.accented.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + и+acute + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/ii-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/ii-cy.glif new file mode 100644 index 00000000..16c33efb --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/ii-cy.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/iishort-cy.B_G_R_.glif b/sources/FixelDisplay-Black.ufo/glyphs/iishort-cy.B_G_R_.glif new file mode 100644 index 00000000..f8c91270 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/iishort-cy.B_G_R_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/iishort-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/iishort-cy.glif new file mode 100644 index 00000000..c7803b89 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/iishort-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + icyr+breve + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/ij.glif b/sources/FixelDisplay-Black.ufo/glyphs/ij.glif new file mode 100644 index 00000000..5c019c32 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/ij.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + i + com.fontlab.metricsRight + j + com.fontlab.recipe + i_j + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/imacron.glif b/sources/FixelDisplay-Black.ufo/glyphs/imacron.glif new file mode 100644 index 00000000..2ecd39a4 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/imacron.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =5 + com.fontlab.metricsRight + =5 + com.fontlab.recipe + idotless+macron + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/imacroncyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/imacroncyr.glif new file mode 100644 index 00000000..c35030cc --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/imacroncyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ii-cy+macron + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/increment.glif b/sources/FixelDisplay-Black.ufo/glyphs/increment.glif new file mode 100644 index 00000000..04e0a4bc --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/increment.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/infinity.glif b/sources/FixelDisplay-Black.ufo/glyphs/infinity.glif new file mode 100644 index 00000000..c9af1165 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/infinity.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/integral.glif b/sources/FixelDisplay-Black.ufo/glyphs/integral.glif new file mode 100644 index 00000000..de8fe45f --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/integral.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/io-cy.accented.glif b/sources/FixelDisplay-Black.ufo/glyphs/io-cy.accented.glif new file mode 100644 index 00000000..a9d261aa --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/io-cy.accented.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsLeft + e + com.fontlab.metricsRight + e + com.fontlab.recipe + e+dieresisacute + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/io-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/io-cy.glif new file mode 100644 index 00000000..593af4de --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/io-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + edieresis + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/io-cy.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/io-cy.ss01.glif new file mode 100644 index 00000000..22632a32 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/io-cy.ss01.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + edieresis.ss01 + com.schriftgestaltung.Glyphs.ComponentInfo + + + alignment + -1 + index + 0 + name + edieresis.ss01 + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/iogonek.glif b/sources/FixelDisplay-Black.ufo/glyphs/iogonek.glif new file mode 100644 index 00000000..72a8c506 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/iogonek.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + i+ogonek + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/iota-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/iota-cy.glif new file mode 100644 index 00000000..9ba764d9 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/iota-cy.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l.ss01 + com.fontlab.metricsRight + l.ss01 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/iotifieda-cy.B_G_R_.glif b/sources/FixelDisplay-Black.ufo/glyphs/iotifieda-cy.B_G_R_.glif new file mode 100644 index 00000000..2b79ca81 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/iotifieda-cy.B_G_R_.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + el-cy.BGR + com.fontlab.recipe + iotifieda-cy + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/iotifieda-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/iotifieda-cy.glif new file mode 100644 index 00000000..cedf2674 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/iotifieda-cy.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + yusClosedlittle-cy + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/iotifieda-cy.hist.glif b/sources/FixelDisplay-Black.ufo/glyphs/iotifieda-cy.hist.glif new file mode 100644 index 00000000..c076f717 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/iotifieda-cy.hist.glif @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + reversedzecyr + com.fontlab.metricsRight + a + public.markColor + 0.6,0.997,1,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/ishortsharptailcyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/ishortsharptailcyr.glif new file mode 100644 index 00000000..1f2c4c07 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/ishortsharptailcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + й + com.fontlab.metricsRight + ensharptailcyr + com.fontlab.recipe + й + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/itilde.glif b/sources/FixelDisplay-Black.ufo/glyphs/itilde.glif new file mode 100644 index 00000000..2ec4b735 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/itilde.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + dotlessi+tilde + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/iu-cy.B_G_R_.glif b/sources/FixelDisplay-Black.ufo/glyphs/iu-cy.B_G_R_.glif new file mode 100644 index 00000000..b372f89b --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/iu-cy.B_G_R_.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + o + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/iu-cy.accented.glif b/sources/FixelDisplay-Black.ufo/glyphs/iu-cy.accented.glif new file mode 100644 index 00000000..7cf4a9bf --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/iu-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ю+acute + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/iu-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/iu-cy.glif new file mode 100644 index 00000000..4f17a566 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/iu-cy.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/izhitsacyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/izhitsacyr.glif new file mode 100644 index 00000000..a70663df --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/izhitsacyr.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + v + com.fontlab.metricsRight + + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/izhitsagravedblcyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/izhitsagravedblcyr.glif new file mode 100644 index 00000000..8e1d60ec --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/izhitsagravedblcyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + com.fontlab.metricsLeft + izhitsacyr + com.fontlab.metricsRight + izhitsacyr + com.fontlab.recipe + izhitsacyr+hungarumlaut + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/j.glif b/sources/FixelDisplay-Black.ufo/glyphs/j.glif new file mode 100644 index 00000000..cefb5958 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/j.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + i + com.fontlab.recipe + dotlessj+dotaccent + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/jcircumflex.glif b/sources/FixelDisplay-Black.ufo/glyphs/jcircumflex.glif new file mode 100644 index 00000000..282a9b51 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/jcircumflex.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + dotlessj+circumflex + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/jdotless.glif b/sources/FixelDisplay-Black.ufo/glyphs/jdotless.glif new file mode 100644 index 00000000..c2188737 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/jdotless.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + l + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/je-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/je-cy.glif new file mode 100644 index 00000000..73ac9c22 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/je-cy.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + j + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/k.glif b/sources/FixelDisplay-Black.ufo/glyphs/k.glif new file mode 100644 index 00000000..d248656c --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/k.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/ka-cy.B_G_R_.glif b/sources/FixelDisplay-Black.ufo/glyphs/ka-cy.B_G_R_.glif new file mode 100644 index 00000000..8b6a3d93 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/ka-cy.B_G_R_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + k + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/ka-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/ka-cy.glif new file mode 100644 index 00000000..cacbdfe7 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/ka-cy.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + k + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/kaaleutcyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/kaaleutcyr.glif new file mode 100644 index 00000000..a16d1210 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/kaaleutcyr.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + k + com.fontlab.metricsRight + k + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/kabashkcyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/kabashkcyr.glif new file mode 100644 index 00000000..5693ff22 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/kabashkcyr.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hardsign-cy + com.fontlab.metricsRight + k + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/kahookcyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/kahookcyr.glif new file mode 100644 index 00000000..8b46b631 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/kahookcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + n + com.fontlab.metricsRight + k+10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/kastrokecyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/kastrokecyr.glif new file mode 100644 index 00000000..580a91e2 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/kastrokecyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hbar + com.fontlab.metricsRight + k + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/katailcyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/katailcyr.glif new file mode 100644 index 00000000..73274120 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/katailcyr.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + k + com.fontlab.metricsRight + к-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/kaverticalstrokecyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/kaverticalstrokecyr.glif new file mode 100644 index 00000000..7af01a41 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/kaverticalstrokecyr.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + k + com.fontlab.metricsRight + k + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/kcommaaccent.glif b/sources/FixelDisplay-Black.ufo/glyphs/kcommaaccent.glif new file mode 100644 index 00000000..adbd23a4 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/kcommaaccent.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsLeft + k + com.fontlab.metricsRight + k + com.fontlab.recipe + k+commaaccentcomb + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/kgreenlandic.glif b/sources/FixelDisplay-Black.ufo/glyphs/kgreenlandic.glif new file mode 100644 index 00000000..f5309f2f --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/kgreenlandic.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + kacyr + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/kjecyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/kjecyr.glif new file mode 100644 index 00000000..279cc32a --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/kjecyr.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/knightblack.glif b/sources/FixelDisplay-Black.ufo/glyphs/knightblack.glif new file mode 100644 index 00000000..2661ffbb --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/knightblack.glif @@ -0,0 +1,313 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =30 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/knightwhite.glif b/sources/FixelDisplay-Black.ufo/glyphs/knightwhite.glif new file mode 100644 index 00000000..a152a44d --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/knightwhite.glif @@ -0,0 +1,320 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/koppacyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/koppacyr.glif new file mode 100644 index 00000000..7d21c417 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/koppacyr.glif @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + c-20 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/ksicyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/ksicyr.glif new file mode 100644 index 00000000..0a7bf097 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/ksicyr.glif @@ -0,0 +1,102 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + з-10 + com.fontlab.metricsRight + з + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/l.glif b/sources/FixelDisplay-Black.ufo/glyphs/l.glif new file mode 100644 index 00000000..5de81b53 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/l.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/l.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/l.ss01.glif new file mode 100644 index 00000000..08b06d72 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/l.ss01.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/lacute.glif b/sources/FixelDisplay-Black.ufo/glyphs/lacute.glif new file mode 100644 index 00000000..345366a6 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/lacute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l+acute.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/lacute.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/lacute.ss01.glif new file mode 100644 index 00000000..b2733ce0 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/lacute.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l.ss01+acute.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/layerinfo.plist b/sources/FixelDisplay-Black.ufo/glyphs/layerinfo.plist new file mode 100644 index 00000000..8c198655 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/layerinfo.plist @@ -0,0 +1,21 @@ + + + + + lib + + com.fontlab.layer.name + Body + com.fontlab.layer.opacity + 1 + com.fontlab.layer.visible + + com.fontlab.layer.locked + + com.fontlab.layer.service + + com.fontlab.layer.wireframe + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/lcaron.glif b/sources/FixelDisplay-Black.ufo/glyphs/lcaron.glif new file mode 100644 index 00000000..b54a2a69 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/lcaron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l+caron.salt + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/lcaron.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/lcaron.ss01.glif new file mode 100644 index 00000000..208e5210 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/lcaron.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l.ss01+caron.salt + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/lcommaaccent.glif b/sources/FixelDisplay-Black.ufo/glyphs/lcommaaccent.glif new file mode 100644 index 00000000..56245804 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/lcommaaccent.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l+commaaccentcomb + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/lcommaaccent.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/lcommaaccent.ss01.glif new file mode 100644 index 00000000..d7c5677c --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/lcommaaccent.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l.ss01+commaaccentcomb + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/ldot.glif b/sources/FixelDisplay-Black.ufo/glyphs/ldot.glif new file mode 100644 index 00000000..c987029a --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/ldot.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/ldot.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/ldot.ss01.glif new file mode 100644 index 00000000..64d8b4a3 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/ldot.ss01.glif @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + l.ss01_periodcentered + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/leo.glif b/sources/FixelDisplay-Black.ufo/glyphs/leo.glif new file mode 100644 index 00000000..de5c4cf7 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/leo.glif @@ -0,0 +1,494 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/less.glif b/sources/FixelDisplay-Black.ufo/glyphs/less.glif new file mode 100644 index 00000000..a39e28e4 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/less.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/lessequal.glif b/sources/FixelDisplay-Black.ufo/glyphs/lessequal.glif new file mode 100644 index 00000000..0ab5c53e --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/lessequal.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/lhacyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/lhacyr.glif new file mode 100644 index 00000000..344bd9d7 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/lhacyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + х + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/ljecyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/ljecyr.glif new file mode 100644 index 00000000..6a2ecfa0 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/ljecyr.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + ь + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/ljecyr.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/ljecyr.ss01.glif new file mode 100644 index 00000000..2a3c8b18 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/ljecyr.ss01.glif @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + ь + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/ljekomicyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/ljekomicyr.glif new file mode 100644 index 00000000..d1aea091 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/ljekomicyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + njekomicyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/longs.glif b/sources/FixelDisplay-Black.ufo/glyphs/longs.glif new file mode 100644 index 00000000..6a854d2d --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/longs.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + n + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/lslash.glif b/sources/FixelDisplay-Black.ufo/glyphs/lslash.glif new file mode 100644 index 00000000..0a33cddc --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/lslash.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Lslash+12 + com.fontlab.metricsRight + |Lslash+12 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/lslash.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/lslash.ss01.glif new file mode 100644 index 00000000..33ac97aa --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/lslash.ss01.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Lslash-10 + com.fontlab.metricsRight + |Lslash + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/m.glif b/sources/FixelDisplay-Black.ufo/glyphs/m.glif new file mode 100644 index 00000000..8676c753 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/m.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + n + com.fontlab.metricsRight + n + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/macron-fwd.alt.glif b/sources/FixelDisplay-Black.ufo/glyphs/macron-fwd.alt.glif new file mode 100644 index 00000000..d7301e2d --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/macron-fwd.alt.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/macron-fwd.glif b/sources/FixelDisplay-Black.ufo/glyphs/macron-fwd.glif new file mode 100644 index 00000000..925024f6 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/macron-fwd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/macron.case.glif b/sources/FixelDisplay-Black.ufo/glyphs/macron.case.glif new file mode 100644 index 00000000..f515e1c6 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/macron.case.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/macron.glif b/sources/FixelDisplay-Black.ufo/glyphs/macron.glif new file mode 100644 index 00000000..03315418 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/macron.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/macronacute.S_R_B_.glif b/sources/FixelDisplay-Black.ufo/glyphs/macronacute.S_R_B_.glif new file mode 100644 index 00000000..6bec3015 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/macronacute.S_R_B_.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + macron+acute + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/millionscombcyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/millionscombcyr.glif new file mode 100644 index 00000000..fd19b169 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/millionscombcyr.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/minus.glif b/sources/FixelDisplay-Black.ufo/glyphs/minus.glif new file mode 100644 index 00000000..73823a23 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/minus.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/minute.glif b/sources/FixelDisplay-Black.ufo/glyphs/minute.glif new file mode 100644 index 00000000..ddb4970d --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/minute.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/mu.glif b/sources/FixelDisplay-Black.ufo/glyphs/mu.glif new file mode 100644 index 00000000..9ada1ff8 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/mu.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + p + com.fontlab.metricsRight + u + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/multiply.glif b/sources/FixelDisplay-Black.ufo/glyphs/multiply.glif new file mode 100644 index 00000000..15c6223e --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/multiply.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/n.glif b/sources/FixelDisplay-Black.ufo/glyphs/n.glif new file mode 100644 index 00000000..a43a2502 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/n.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/nacute.glif b/sources/FixelDisplay-Black.ufo/glyphs/nacute.glif new file mode 100644 index 00000000..25fea542 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/nacute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + n+acute + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/napostrophe.glif b/sources/FixelDisplay-Black.ufo/glyphs/napostrophe.glif new file mode 100644 index 00000000..85518a71 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/napostrophe.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + com.fontlab.metricsRight + n + com.schriftgestaltung.Glyphs.ComponentInfo + + + alignment + -1 + index + 0 + name + n + + + alignment + -1 + index + 1 + name + quoteright + + + com.schriftgestaltung.Glyphs.rightMetricsKey + n + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/ncaron.glif b/sources/FixelDisplay-Black.ufo/glyphs/ncaron.glif new file mode 100644 index 00000000..2715d87a --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/ncaron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + n+caron + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/ncommaaccent.glif b/sources/FixelDisplay-Black.ufo/glyphs/ncommaaccent.glif new file mode 100644 index 00000000..0dae8ad9 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/ncommaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + n+commaaccentcomb + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/neptune.glif b/sources/FixelDisplay-Black.ufo/glyphs/neptune.glif new file mode 100644 index 00000000..83b6e68f --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/neptune.glif @@ -0,0 +1,125 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ш + com.fontlab.metricsRight + Ш + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/nine.glif b/sources/FixelDisplay-Black.ufo/glyphs/nine.glif new file mode 100644 index 00000000..ee24c4cc --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/nine.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + |six + com.fontlab.metricsRight + |six + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/nine.osf.glif b/sources/FixelDisplay-Black.ufo/glyphs/nine.osf.glif new file mode 100644 index 00000000..303c98a0 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/nine.osf.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |six + com.fontlab.metricsRight + |six + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/nine.tf.glif b/sources/FixelDisplay-Black.ufo/glyphs/nine.tf.glif new file mode 100644 index 00000000..705164b9 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/nine.tf.glif @@ -0,0 +1,7 @@ + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/njecyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/njecyr.glif new file mode 100644 index 00000000..315e33d5 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/njecyr.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + ь + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/njecyr.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/njecyr.ss01.glif new file mode 100644 index 00000000..708ed689 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/njecyr.ss01.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + ь + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/njekomicyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/njekomicyr.glif new file mode 100644 index 00000000..036e6a47 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/njekomicyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + |u + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/notequal.glif b/sources/FixelDisplay-Black.ufo/glyphs/notequal.glif new file mode 100644 index 00000000..6c314d23 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/notequal.glif @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/ntilde.glif b/sources/FixelDisplay-Black.ufo/glyphs/ntilde.glif new file mode 100644 index 00000000..71ade03e --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/ntilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + n+tilde + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/numbersign.glif b/sources/FixelDisplay-Black.ufo/glyphs/numbersign.glif new file mode 100644 index 00000000..2262a7af --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/numbersign.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/numero.glif b/sources/FixelDisplay-Black.ufo/glyphs/numero.glif new file mode 100644 index 00000000..dbc098d0 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/numero.glif @@ -0,0 +1,90 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + N + com.fontlab.recipe + N+ordmasculine + com.schriftgestaltung.Glyphs.ComponentInfo + + + alignment + -1 + index + 0 + name + N + + + alignment + -1 + index + 1 + name + ordmasculine + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/numero.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/numero.ss01.glif new file mode 100644 index 00000000..059b7dec --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/numero.ss01.glif @@ -0,0 +1,95 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + N.ss01 + com.fontlab.metricsRight + ordmasculine + com.fontlab.recipe + N.ss01+ordmasculine + com.schriftgestaltung.Glyphs.ComponentInfo + + + alignment + -1 + index + 0 + name + ordmasculine + + + alignment + -1 + index + 1 + name + N.ss01 + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/o-cy.accented.glif b/sources/FixelDisplay-Black.ufo/glyphs/o-cy.accented.glif new file mode 100644 index 00000000..fbf1217a --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/o-cy.accented.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+acute + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/o-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/o-cy.glif new file mode 100644 index 00000000..37ecbfe8 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/o-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/o.glif b/sources/FixelDisplay-Black.ufo/glyphs/o.glif new file mode 100644 index 00000000..64f83e9d --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/o.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/oB_inocular-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/oB_inocular-cy.glif new file mode 100644 index 00000000..b6cf5f9c --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/oB_inocular-cy.glif @@ -0,0 +1,81 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/oD_oubleM_onocular-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/oD_oubleM_onocular-cy.glif new file mode 100644 index 00000000..9045f8b2 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/oD_oubleM_onocular-cy.glif @@ -0,0 +1,121 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + com.fontlab.recipe + doubleo-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/oM_onocular-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/oM_onocular-cy.glif new file mode 100644 index 00000000..51642b7b --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/oM_onocular-cy.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/oacute.glif b/sources/FixelDisplay-Black.ufo/glyphs/oacute.glif new file mode 100644 index 00000000..8fbffed0 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/oacute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+acute + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/obarcyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/obarcyr.glif new file mode 100644 index 00000000..0a18fc84 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/obarcyr.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/obardieresiscyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/obardieresiscyr.glif new file mode 100644 index 00000000..ff3f6617 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/obardieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + obarcyr+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/obreve.glif b/sources/FixelDisplay-Black.ufo/glyphs/obreve.glif new file mode 100644 index 00000000..a6ca8e54 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/obreve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+breve + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/ocircumflex.glif b/sources/FixelDisplay-Black.ufo/glyphs/ocircumflex.glif new file mode 100644 index 00000000..340e529d --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/ocircumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+circumflex + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/odieresis.glif b/sources/FixelDisplay-Black.ufo/glyphs/odieresis.glif new file mode 100644 index 00000000..be6a5793 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/odieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+dieresis + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/odieresiscyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/odieresiscyr.glif new file mode 100644 index 00000000..022b7ab1 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/odieresiscyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/oe.glif b/sources/FixelDisplay-Black.ufo/glyphs/oe.glif new file mode 100644 index 00000000..13656ed5 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/oe.glif @@ -0,0 +1,86 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + e + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/oe.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/oe.ss01.glif new file mode 100644 index 00000000..2318ddb9 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/oe.ss01.glif @@ -0,0 +1,95 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + e.ss01 + public.markColor + 0.6,0.997,1,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/ogonek.glif b/sources/FixelDisplay-Black.ufo/glyphs/ogonek.glif new file mode 100644 index 00000000..5ed47d4e --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/ogonek.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/ograve.glif b/sources/FixelDisplay-Black.ufo/glyphs/ograve.glif new file mode 100644 index 00000000..a52183e2 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/ograve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+grave + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/ohungarumlaut.glif b/sources/FixelDisplay-Black.ufo/glyphs/ohungarumlaut.glif new file mode 100644 index 00000000..dc44114b --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/ohungarumlaut.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+hungarumlaut + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/omacron.glif b/sources/FixelDisplay-Black.ufo/glyphs/omacron.glif new file mode 100644 index 00000000..f8ec6bcc --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/omacron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+macron + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/omegaB_road-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/omegaB_road-cy.glif new file mode 100644 index 00000000..b893aee4 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/omegaB_road-cy.glif @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o+5 + com.fontlab.metricsRight + o+5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/omegacyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/omegacyr.glif new file mode 100644 index 00000000..3dac6c00 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/omegacyr.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + w + com.fontlab.metricsRight + w + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/omegaroundcyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/omegaroundcyr.glif new file mode 100644 index 00000000..4d9e1047 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/omegaroundcyr.glif @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/omegatitlocyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/omegatitlocyr.glif new file mode 100644 index 00000000..290836eb --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/omegatitlocyr.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o+5 + com.fontlab.metricsRight + o+5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/omultiocular-cy.alt.glif b/sources/FixelDisplay-Black.ufo/glyphs/omultiocular-cy.alt.glif new file mode 100644 index 00000000..3c9be4c2 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/omultiocular-cy.alt.glif @@ -0,0 +1,366 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + oMonocular-cy + com.fontlab.metricsRight + oMonocular-cy + public.markColor + 0.6,0.997,1,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/omultiocular-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/omultiocular-cy.glif new file mode 100644 index 00000000..63665409 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/omultiocular-cy.glif @@ -0,0 +1,517 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + oMonocular-cy + com.fontlab.metricsRight + oMonocular-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/one.glif b/sources/FixelDisplay-Black.ufo/glyphs/one.glif new file mode 100644 index 00000000..ab26decf --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/one.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =40 + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/one.osf.glif b/sources/FixelDisplay-Black.ufo/glyphs/one.osf.glif new file mode 100644 index 00000000..ea39d3d7 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/one.osf.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + one + com.fontlab.metricsRight + one + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/one.tf.glif b/sources/FixelDisplay-Black.ufo/glyphs/one.tf.glif new file mode 100644 index 00000000..2d343ab9 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/one.tf.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/onehalf.glif b/sources/FixelDisplay-Black.ufo/glyphs/onehalf.glif new file mode 100644 index 00000000..b97f73a5 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/onehalf.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/onequarter.glif b/sources/FixelDisplay-Black.ufo/glyphs/onequarter.glif new file mode 100644 index 00000000..033c4167 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/onequarter.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/onesuperior.glif b/sources/FixelDisplay-Black.ufo/glyphs/onesuperior.glif new file mode 100644 index 00000000..4cd2481d --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/onesuperior.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/ordfeminine.glif b/sources/FixelDisplay-Black.ufo/glyphs/ordfeminine.glif new file mode 100644 index 00000000..93e4796e --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/ordfeminine.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/ordmasculine.glif b/sources/FixelDisplay-Black.ufo/glyphs/ordmasculine.glif new file mode 100644 index 00000000..b853bfd1 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/ordmasculine.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/oslash.glif b/sources/FixelDisplay-Black.ufo/glyphs/oslash.glif new file mode 100644 index 00000000..e9e2bbe3 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/oslash.glif @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/oslashacute.glif b/sources/FixelDisplay-Black.ufo/glyphs/oslashacute.glif new file mode 100644 index 00000000..15f52cb4 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/oslashacute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + oslash+acute + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/otcyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/otcyr.glif new file mode 100644 index 00000000..723aed24 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/otcyr.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsRight + w + com.fontlab.recipe + omegacyr+uni2DEE + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/otilde.glif b/sources/FixelDisplay-Black.ufo/glyphs/otilde.glif new file mode 100644 index 00000000..d95d9870 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/otilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+tilde + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/p.glif b/sources/FixelDisplay-Black.ufo/glyphs/p.glif new file mode 100644 index 00000000..f66cece7 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/p.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/p.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/p.ss01.glif new file mode 100644 index 00000000..b0fd8708 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/p.ss01.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/palatcombcyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/palatcombcyr.glif new file mode 100644 index 00000000..f69a5295 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/palatcombcyr.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/palochkacyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/palochkacyr.glif new file mode 100644 index 00000000..4ce322bd --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/palochkacyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/paragraph.glif b/sources/FixelDisplay-Black.ufo/glyphs/paragraph.glif new file mode 100644 index 00000000..7b660aa5 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/paragraph.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |P + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/parenleft.case.glif b/sources/FixelDisplay-Black.ufo/glyphs/parenleft.case.glif new file mode 100644 index 00000000..a156fa0e --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/parenleft.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |parenright.case + com.fontlab.metricsRight + |parenright.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/parenleft.glif b/sources/FixelDisplay-Black.ufo/glyphs/parenleft.glif new file mode 100644 index 00000000..63cdebe1 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/parenleft.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/parenright.case.glif b/sources/FixelDisplay-Black.ufo/glyphs/parenright.case.glif new file mode 100644 index 00000000..67ae8867 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/parenright.case.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + parenright + com.fontlab.metricsRight + parenright + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/parenright.glif b/sources/FixelDisplay-Black.ufo/glyphs/parenright.glif new file mode 100644 index 00000000..450f2bc6 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/parenright.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/partialdiff.glif b/sources/FixelDisplay-Black.ufo/glyphs/partialdiff.glif new file mode 100644 index 00000000..6104295c --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/partialdiff.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/pe-cy.B_G_R_.glif b/sources/FixelDisplay-Black.ufo/glyphs/pe-cy.B_G_R_.glif new file mode 100644 index 00000000..a83f7717 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/pe-cy.B_G_R_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + n + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/pe-cy.S_R_B_.glif b/sources/FixelDisplay-Black.ufo/glyphs/pe-cy.S_R_B_.glif new file mode 100644 index 00000000..efcb3aa3 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/pe-cy.S_R_B_.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+macron-fwd.alt + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/pe-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/pe-cy.glif new file mode 100644 index 00000000..004f23b3 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/pe-cy.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/pehookcyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/pehookcyr.glif new file mode 100644 index 00000000..69748d4f --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/pehookcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + п + com.fontlab.metricsRight + enmiddlehookcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/percent.glif b/sources/FixelDisplay-Black.ufo/glyphs/percent.glif new file mode 100644 index 00000000..7f5f0b61 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/percent.glif @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/period.glif b/sources/FixelDisplay-Black.ufo/glyphs/period.glif new file mode 100644 index 00000000..9a76562e --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/period.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/periodcentered.glif b/sources/FixelDisplay-Black.ufo/glyphs/periodcentered.glif new file mode 100644 index 00000000..bf845f5e --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/periodcentered.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/perthousand.glif b/sources/FixelDisplay-Black.ufo/glyphs/perthousand.glif new file mode 100644 index 00000000..9e900d4b --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/perthousand.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/petailcyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/petailcyr.glif new file mode 100644 index 00000000..bbfe208d --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/petailcyr.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + п + com.fontlab.metricsRight + entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/pi.glif b/sources/FixelDisplay-Black.ufo/glyphs/pi.glif new file mode 100644 index 00000000..76084c24 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/pi.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f + com.fontlab.metricsRight + t + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/plus.glif b/sources/FixelDisplay-Black.ufo/glyphs/plus.glif new file mode 100644 index 00000000..4d67ac09 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/plus.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/plusminus.glif b/sources/FixelDisplay-Black.ufo/glyphs/plusminus.glif new file mode 100644 index 00000000..cdc81bf5 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/plusminus.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/pokrytiecombcyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/pokrytiecombcyr.glif new file mode 100644 index 00000000..7c9f5cf6 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/pokrytiecombcyr.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/product.glif b/sources/FixelDisplay-Black.ufo/glyphs/product.glif new file mode 100644 index 00000000..0e7fa979 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/product.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/proportional.glif b/sources/FixelDisplay-Black.ufo/glyphs/proportional.glif new file mode 100644 index 00000000..e86796cd --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/proportional.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/psicyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/psicyr.glif new file mode 100644 index 00000000..cfa9b154 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/psicyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + u + com.fontlab.metricsRight + |u + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/q.glif b/sources/FixelDisplay-Black.ufo/glyphs/q.glif new file mode 100644 index 00000000..c8535e98 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/q.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/q.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/q.ss01.glif new file mode 100644 index 00000000..bac8be81 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/q.ss01.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/qacyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/qacyr.glif new file mode 100644 index 00000000..ee94b13e --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/qacyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + q + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/question.glif b/sources/FixelDisplay-Black.ufo/glyphs/question.glif new file mode 100644 index 00000000..fbaa2033 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/question.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/questiondown.case.glif b/sources/FixelDisplay-Black.ufo/glyphs/questiondown.case.glif new file mode 100644 index 00000000..6ce55ec6 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/questiondown.case.glif @@ -0,0 +1,19 @@ + + + + + + + + + com.fontlab.metricsLeft + |question + com.fontlab.metricsRight + |question + com.fontlab.recipe + questiondown + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/questiondown.glif b/sources/FixelDisplay-Black.ufo/glyphs/questiondown.glif new file mode 100644 index 00000000..9b13d5f7 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/questiondown.glif @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |question + com.fontlab.metricsRight + |question + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/quotedbl.glif b/sources/FixelDisplay-Black.ufo/glyphs/quotedbl.glif new file mode 100644 index 00000000..8b2aa5c2 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/quotedbl.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/quotedblbase.glif b/sources/FixelDisplay-Black.ufo/glyphs/quotedblbase.glif new file mode 100644 index 00000000..5eed5641 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/quotedblbase.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + comma + com.fontlab.metricsRight + comma + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/quotedblleft.glif b/sources/FixelDisplay-Black.ufo/glyphs/quotedblleft.glif new file mode 100644 index 00000000..dff91b53 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/quotedblleft.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + |comma + com.fontlab.metricsRight + |comma + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/quotedblright.glif b/sources/FixelDisplay-Black.ufo/glyphs/quotedblright.glif new file mode 100644 index 00000000..b375eb8c --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/quotedblright.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.metricsLeft + comma+20 + com.fontlab.metricsRight + comma-20 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/quoteleft.glif b/sources/FixelDisplay-Black.ufo/glyphs/quoteleft.glif new file mode 100644 index 00000000..b3b41507 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/quoteleft.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + quotedblleft + com.fontlab.metricsRight + quotedblleft + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/quoteright.glif b/sources/FixelDisplay-Black.ufo/glyphs/quoteright.glif new file mode 100644 index 00000000..ffa8bf20 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/quoteright.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + com.fontlab.metricsLeft + quotedblright + com.fontlab.metricsRight + quotedblright + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/quotesinglbase.glif b/sources/FixelDisplay-Black.ufo/glyphs/quotesinglbase.glif new file mode 100644 index 00000000..a37e51b6 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/quotesinglbase.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + com.fontlab.recipe + comma + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/quotesingle.glif b/sources/FixelDisplay-Black.ufo/glyphs/quotesingle.glif new file mode 100644 index 00000000..aa8dbebe --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/quotesingle.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/r.glif b/sources/FixelDisplay-Black.ufo/glyphs/r.glif new file mode 100644 index 00000000..9d30e95c --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/r.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/racute.glif b/sources/FixelDisplay-Black.ufo/glyphs/racute.glif new file mode 100644 index 00000000..69584108 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/racute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + r+acute + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/radical.glif b/sources/FixelDisplay-Black.ufo/glyphs/radical.glif new file mode 100644 index 00000000..e573826f --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/radical.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + V + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/rcaron.glif b/sources/FixelDisplay-Black.ufo/glyphs/rcaron.glif new file mode 100644 index 00000000..b14515c3 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/rcaron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + r+caron + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/rcommaaccent.glif b/sources/FixelDisplay-Black.ufo/glyphs/rcommaaccent.glif new file mode 100644 index 00000000..bc744b32 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/rcommaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + r+commaaccentcomb + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/registered.glif b/sources/FixelDisplay-Black.ufo/glyphs/registered.glif new file mode 100644 index 00000000..437ac3b1 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/registered.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/reversedzecyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/reversedzecyr.glif new file mode 100644 index 00000000..5dc850f5 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/reversedzecyr.glif @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + + com.fontlab.metricsRight + + com.fontlab.recipe + з + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/rhacyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/rhacyr.glif new file mode 100644 index 00000000..2ae6515d --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/rhacyr.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + p + com.fontlab.metricsRight + x + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/ring.case.glif b/sources/FixelDisplay-Black.ufo/glyphs/ring.case.glif new file mode 100644 index 00000000..b2a1980d --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/ring.case.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/ring.glif b/sources/FixelDisplay-Black.ufo/glyphs/ring.glif new file mode 100644 index 00000000..b46d3c83 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/ring.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/rookblack.glif b/sources/FixelDisplay-Black.ufo/glyphs/rookblack.glif new file mode 100644 index 00000000..c2c5ea38 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/rookblack.glif @@ -0,0 +1,270 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =30 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/ruble.glif b/sources/FixelDisplay-Black.ufo/glyphs/ruble.glif new file mode 100644 index 00000000..fe90ecc9 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/ruble.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + P + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/s.glif b/sources/FixelDisplay-Black.ufo/glyphs/s.glif new file mode 100644 index 00000000..d402a2aa --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/s.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/sacute.glif b/sources/FixelDisplay-Black.ufo/glyphs/sacute.glif new file mode 100644 index 00000000..13dc630c --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/sacute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + s+acute + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/scaron.glif b/sources/FixelDisplay-Black.ufo/glyphs/scaron.glif new file mode 100644 index 00000000..ff5fb5d3 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/scaron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + s+caron + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/scedilla.glif b/sources/FixelDisplay-Black.ufo/glyphs/scedilla.glif new file mode 100644 index 00000000..3b22d524 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/scedilla.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + s+cedilla + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/schwacyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/schwacyr.glif new file mode 100644 index 00000000..3f3a9ba6 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/schwacyr.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |e + com.fontlab.metricsRight + o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/schwadieresiscyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/schwadieresiscyr.glif new file mode 100644 index 00000000..57a71718 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/schwadieresiscyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + schwacyr+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/scircumflex.glif b/sources/FixelDisplay-Black.ufo/glyphs/scircumflex.glif new file mode 100644 index 00000000..193ec1d8 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/scircumflex.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + s+circumflex + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/scommaaccent.glif b/sources/FixelDisplay-Black.ufo/glyphs/scommaaccent.glif new file mode 100644 index 00000000..e3074e3d --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/scommaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + s+commaaccentcomb + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/second.glif b/sources/FixelDisplay-Black.ufo/glyphs/second.glif new file mode 100644 index 00000000..bef7f9a9 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/second.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/section.glif b/sources/FixelDisplay-Black.ufo/glyphs/section.glif new file mode 100644 index 00000000..e8b8be13 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/section.glif @@ -0,0 +1,87 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + S + com.fontlab.metricsRight + S + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/semicolon.case.glif b/sources/FixelDisplay-Black.ufo/glyphs/semicolon.case.glif new file mode 100644 index 00000000..a177f824 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/semicolon.case.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.metricsLeft + semicolon + com.fontlab.metricsRight + semicolon + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/semicolon.glif b/sources/FixelDisplay-Black.ufo/glyphs/semicolon.glif new file mode 100644 index 00000000..94d0bd8c --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/semicolon.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/semisoftcyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/semisoftcyr.glif new file mode 100644 index 00000000..b7508267 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/semisoftcyr.glif @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + t + com.fontlab.metricsRight + ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/seven.glif b/sources/FixelDisplay-Black.ufo/glyphs/seven.glif new file mode 100644 index 00000000..a6090258 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/seven.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/seven.osf.glif b/sources/FixelDisplay-Black.ufo/glyphs/seven.osf.glif new file mode 100644 index 00000000..e0e22367 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/seven.osf.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + seven + com.fontlab.metricsRight + seven + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/seven.tf.glif b/sources/FixelDisplay-Black.ufo/glyphs/seven.tf.glif new file mode 100644 index 00000000..19214d31 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/seven.tf.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/sha-cy.B_G_R_.glif b/sources/FixelDisplay-Black.ufo/glyphs/sha-cy.B_G_R_.glif new file mode 100644 index 00000000..8680ad2d --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/sha-cy.B_G_R_.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + u + com.fontlab.metricsRight + l + com.fontlab.recipe + m + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/sha-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/sha-cy.glif new file mode 100644 index 00000000..c5927b0a --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/sha-cy.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/shcha-cy.B_G_R_.glif b/sources/FixelDisplay-Black.ufo/glyphs/shcha-cy.B_G_R_.glif new file mode 100644 index 00000000..fbff2473 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/shcha-cy.B_G_R_.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + u + com.fontlab.metricsRight + щ + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/shcha-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/shcha-cy.glif new file mode 100644 index 00000000..00fe0285 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/shcha-cy.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + д + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/shhacyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/shhacyr.glif new file mode 100644 index 00000000..e8d52f4b --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/shhacyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsRight + n + com.fontlab.recipe + h + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/shhatailcyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/shhatailcyr.glif new file mode 100644 index 00000000..b6b71c82 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/shhatailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + h + com.fontlab.metricsRight + entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/shwe-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/shwe-cy.glif new file mode 100644 index 00000000..310e7a3c --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/shwe-cy.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + щ + com.fontlab.metricsRight + щ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/six.glif b/sources/FixelDisplay-Black.ufo/glyphs/six.glif new file mode 100644 index 00000000..ebffd1ec --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/six.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/six.osf.glif b/sources/FixelDisplay-Black.ufo/glyphs/six.osf.glif new file mode 100644 index 00000000..e9aa2845 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/six.osf.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + six + com.fontlab.metricsRight + six + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/six.tf.glif b/sources/FixelDisplay-Black.ufo/glyphs/six.tf.glif new file mode 100644 index 00000000..9db9207a --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/six.tf.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/sjekomicyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/sjekomicyr.glif new file mode 100644 index 00000000..f1a28b5b --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/sjekomicyr.glif @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + e + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/slash.case.glif b/sources/FixelDisplay-Black.ufo/glyphs/slash.case.glif new file mode 100644 index 00000000..e6603656 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/slash.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + slash + com.fontlab.metricsRight + slash + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/slash.glif b/sources/FixelDisplay-Black.ufo/glyphs/slash.glif new file mode 100644 index 00000000..938d30e5 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/slash.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/softsign-cy.B_G_R_.glif b/sources/FixelDisplay-Black.ufo/glyphs/softsign-cy.B_G_R_.glif new file mode 100644 index 00000000..57047589 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/softsign-cy.B_G_R_.glif @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + u + com.fontlab.metricsRight + ь-5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/softsign-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/softsign-cy.glif new file mode 100644 index 00000000..e554df9b --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/softsign-cy.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/softsign-cy.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/softsign-cy.ss01.glif new file mode 100644 index 00000000..a40bad0b --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/softsign-cy.ss01.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/space.glif b/sources/FixelDisplay-Black.ufo/glyphs/space.glif new file mode 100644 index 00000000..247d6df6 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/space.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/spadewhite.glif b/sources/FixelDisplay-Black.ufo/glyphs/spadewhite.glif new file mode 100644 index 00000000..639d2d6f --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/spadewhite.glif @@ -0,0 +1,453 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/sterling.glif b/sources/FixelDisplay-Black.ufo/glyphs/sterling.glif new file mode 100644 index 00000000..681738ae --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/sterling.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/summation.glif b/sources/FixelDisplay-Black.ufo/glyphs/summation.glif new file mode 100644 index 00000000..74c9c312 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/summation.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/t.glif b/sources/FixelDisplay-Black.ufo/glyphs/t.glif new file mode 100644 index 00000000..ec10b8dd --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/t.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/t.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/t.ss01.glif new file mode 100644 index 00000000..999a971a --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/t.ss01.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/tbar.glif b/sources/FixelDisplay-Black.ufo/glyphs/tbar.glif new file mode 100644 index 00000000..df50c691 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/tbar.glif @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/tbar.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/tbar.ss01.glif new file mode 100644 index 00000000..3eaceee7 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/tbar.ss01.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/tcaron.glif b/sources/FixelDisplay-Black.ufo/glyphs/tcaron.glif new file mode 100644 index 00000000..ee121d39 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/tcaron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.metricsLeft + t + com.fontlab.metricsRight + t + com.fontlab.recipe + t+caron.salt + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/tcaron.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/tcaron.ss01.glif new file mode 100644 index 00000000..1aa9fa7c --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/tcaron.ss01.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + com.fontlab.recipe + t.ss01+caron.salt + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/tcedilla.glif b/sources/FixelDisplay-Black.ufo/glyphs/tcedilla.glif new file mode 100644 index 00000000..a70cd811 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/tcedilla.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + t+cedilla + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/tcedilla.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/tcedilla.ss01.glif new file mode 100644 index 00000000..7683b089 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/tcedilla.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + t.ss01+cedilla + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/tche-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/tche-cy.glif new file mode 100644 index 00000000..d30467c2 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/tche-cy.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + tetsecyr-20 + com.fontlab.metricsRight + ч + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/tcommaaccent.glif b/sources/FixelDisplay-Black.ufo/glyphs/tcommaaccent.glif new file mode 100644 index 00000000..625f8429 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/tcommaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + t+commaaccentcomb + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/tcommaaccent.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/tcommaaccent.ss01.glif new file mode 100644 index 00000000..53c067b4 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/tcommaaccent.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + t.ss01+commaaccentcomb + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/te-cy.B_G_R_.glif b/sources/FixelDisplay-Black.ufo/glyphs/te-cy.B_G_R_.glif new file mode 100644 index 00000000..15675d6a --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/te-cy.B_G_R_.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + m + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/te-cy.S_R_B_.glif b/sources/FixelDisplay-Black.ufo/glyphs/te-cy.S_R_B_.glif new file mode 100644 index 00000000..3264512b --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/te-cy.S_R_B_.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ш.BGR+macron-fwd + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/te-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/te-cy.glif new file mode 100644 index 00000000..4e99321a --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/te-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/te-cy.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/te-cy.ss01.glif new file mode 100644 index 00000000..1e249cf4 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/te-cy.ss01.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/tenge.glif b/sources/FixelDisplay-Black.ufo/glyphs/tenge.glif new file mode 100644 index 00000000..3860dafd --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/tenge.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + T + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/tenmillionscomb-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/tenmillionscomb-cy.glif new file mode 100644 index 00000000..446c0cc4 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/tenmillionscomb-cy.glif @@ -0,0 +1,109 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/tetailcyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/tetailcyr.glif new file mode 100644 index 00000000..fd3c5ae4 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/tetailcyr.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + т + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/tetsecyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/tetsecyr.glif new file mode 100644 index 00000000..6a37fb50 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/tetsecyr.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + т + com.fontlab.metricsRight + ц + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/tewithmiddlehook-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/tewithmiddlehook-cy.glif new file mode 100644 index 00000000..f00234b6 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/tewithmiddlehook-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + т + com.fontlab.metricsRight + gehookcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/thorn.glif b/sources/FixelDisplay-Black.ufo/glyphs/thorn.glif new file mode 100644 index 00000000..84f3f9d2 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/thorn.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + b + com.fontlab.metricsRight + b + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/thousandmillionscomb-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/thousandmillionscomb-cy.glif new file mode 100644 index 00000000..f4afdcf8 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/thousandmillionscomb-cy.glif @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/thousandscyr.dnom.glif b/sources/FixelDisplay-Black.ufo/glyphs/thousandscyr.dnom.glif new file mode 100644 index 00000000..38e44fd6 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/thousandscyr.dnom.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + | + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/thousandscyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/thousandscyr.glif new file mode 100644 index 00000000..b7652057 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/thousandscyr.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + | + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/three.glif b/sources/FixelDisplay-Black.ufo/glyphs/three.glif new file mode 100644 index 00000000..45a1cca2 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/three.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/three.osf.glif b/sources/FixelDisplay-Black.ufo/glyphs/three.osf.glif new file mode 100644 index 00000000..9d52632f --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/three.osf.glif @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + three + com.fontlab.metricsRight + three + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/three.tf.glif b/sources/FixelDisplay-Black.ufo/glyphs/three.tf.glif new file mode 100644 index 00000000..5684108b --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/three.tf.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/threequarters.glif b/sources/FixelDisplay-Black.ufo/glyphs/threequarters.glif new file mode 100644 index 00000000..36b1ce72 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/threequarters.glif @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/threesuperior.glif b/sources/FixelDisplay-Black.ufo/glyphs/threesuperior.glif new file mode 100644 index 00000000..387a72f0 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/threesuperior.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/tilde.case.glif b/sources/FixelDisplay-Black.ufo/glyphs/tilde.case.glif new file mode 100644 index 00000000..927c147d --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/tilde.case.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/tilde.glif b/sources/FixelDisplay-Black.ufo/glyphs/tilde.glif new file mode 100644 index 00000000..aeafc334 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/tilde.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/titlocombcyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/titlocombcyr.glif new file mode 100644 index 00000000..8ba0399f --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/titlocombcyr.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/tjekomicyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/tjekomicyr.glif new file mode 100644 index 00000000..08bd96be --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/tjekomicyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + т + com.fontlab.metricsRight + njekomicyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/trademark.glif b/sources/FixelDisplay-Black.ufo/glyphs/trademark.glif new file mode 100644 index 00000000..36e773a0 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/trademark.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/tse-cy.B_G_R_.glif b/sources/FixelDisplay-Black.ufo/glyphs/tse-cy.B_G_R_.glif new file mode 100644 index 00000000..682152f0 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/tse-cy.B_G_R_.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + u + com.fontlab.metricsRight + ц + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/tse-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/tse-cy.glif new file mode 100644 index 00000000..85b1f1fb --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/tse-cy.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + д + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/tseR_eversed-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/tseR_eversed-cy.glif new file mode 100644 index 00000000..cf7a4210 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/tseR_eversed-cy.glif @@ -0,0 +1,20 @@ + + + + + + + + + + com.fontlab.metricsLeft + + com.fontlab.metricsRight + н + com.fontlab.recipe + ц + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/tshecyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/tshecyr.glif new file mode 100644 index 00000000..c429d1df --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/tshecyr.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + hbar + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/tsse-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/tsse-cy.glif new file mode 100644 index 00000000..8299def3 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/tsse-cy.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + т + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/tswe-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/tswe-cy.glif new file mode 100644 index 00000000..1e784ee3 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/tswe-cy.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ш + com.fontlab.metricsRight + shwe-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/twe-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/twe-cy.glif new file mode 100644 index 00000000..88ee7418 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/twe-cy.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + т.ss01 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/two.glif b/sources/FixelDisplay-Black.ufo/glyphs/two.glif new file mode 100644 index 00000000..c6d9bc3c --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/two.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/two.osf.glif b/sources/FixelDisplay-Black.ufo/glyphs/two.osf.glif new file mode 100644 index 00000000..a9a2b14f --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/two.osf.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + two + com.fontlab.metricsRight + two + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/two.tf.glif b/sources/FixelDisplay-Black.ufo/glyphs/two.tf.glif new file mode 100644 index 00000000..7f3f6f52 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/two.tf.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/twosuperior.glif b/sources/FixelDisplay-Black.ufo/glyphs/twosuperior.glif new file mode 100644 index 00000000..41c5566c --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/twosuperior.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/u-cy.accented.glif b/sources/FixelDisplay-Black.ufo/glyphs/u-cy.accented.glif new file mode 100644 index 00000000..928c19d1 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/u-cy.accented.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + y+acute + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/u-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/u-cy.glif new file mode 100644 index 00000000..40962720 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/u-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + y + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/u.glif b/sources/FixelDisplay-Black.ufo/glyphs/u.glif new file mode 100644 index 00000000..99a07f65 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/u.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |n + com.fontlab.metricsRight + l + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/uacute.glif b/sources/FixelDisplay-Black.ufo/glyphs/uacute.glif new file mode 100644 index 00000000..22d9e672 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/uacute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+acute + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/uacutedblcyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/uacutedblcyr.glif new file mode 100644 index 00000000..bbc9820d --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/uacutedblcyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u-cy+hungarumlaut + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/ubreve.glif b/sources/FixelDisplay-Black.ufo/glyphs/ubreve.glif new file mode 100644 index 00000000..8583cc36 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/ubreve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+breve + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/ucircumflex.glif b/sources/FixelDisplay-Black.ufo/glyphs/ucircumflex.glif new file mode 100644 index 00000000..dd91165f --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/ucircumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+circumflex + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/udieresis.glif b/sources/FixelDisplay-Black.ufo/glyphs/udieresis.glif new file mode 100644 index 00000000..2b80d1bf --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/udieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+dieresis + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/udieresiscyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/udieresiscyr.glif new file mode 100644 index 00000000..154cfcfb --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/udieresiscyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/ugrave.glif b/sources/FixelDisplay-Black.ufo/glyphs/ugrave.glif new file mode 100644 index 00000000..d6e534fe --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/ugrave.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+grave + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/uhungarumlaut.glif b/sources/FixelDisplay-Black.ufo/glyphs/uhungarumlaut.glif new file mode 100644 index 00000000..caea1c88 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/uhungarumlaut.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+hungarumlaut + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/ukM_onograph-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/ukM_onograph-cy.glif new file mode 100644 index 00000000..5f9e5622 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/ukM_onograph-cy.glif @@ -0,0 +1,78 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + y-30 + com.fontlab.metricsRight + y-20 + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/ukcyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/ukcyr.glif new file mode 100644 index 00000000..228052ea --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/ukcyr.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + y + com.fontlab.recipe + uni1C82_у + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/umacron.glif b/sources/FixelDisplay-Black.ufo/glyphs/umacron.glif new file mode 100644 index 00000000..8386e671 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/umacron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+macron + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/umacroncyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/umacroncyr.glif new file mode 100644 index 00000000..0f52c63b --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/umacroncyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u-cy+macron + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/underscore.glif b/sources/FixelDisplay-Black.ufo/glyphs/underscore.glif new file mode 100644 index 00000000..2ef799df --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/underscore.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/uni1C_80.glif b/sources/FixelDisplay-Black.ufo/glyphs/uni1C_80.glif new file mode 100644 index 00000000..45c1cf99 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/uni1C_80.glif @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + б + com.fontlab.metricsRight + o-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/uni1C_81.glif b/sources/FixelDisplay-Black.ufo/glyphs/uni1C_81.glif new file mode 100644 index 00000000..93200b15 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/uni1C_81.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + д-10 + com.fontlab.metricsRight + | + com.fontlab.recipe + д + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/uni1C_82.glif b/sources/FixelDisplay-Black.ufo/glyphs/uni1C_82.glif new file mode 100644 index 00000000..d9a4817b --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/uni1C_82.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/uni1C_83.glif b/sources/FixelDisplay-Black.ufo/glyphs/uni1C_83.glif new file mode 100644 index 00000000..89dba8a6 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/uni1C_83.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + c + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/uni1C_84.glif b/sources/FixelDisplay-Black.ufo/glyphs/uni1C_84.glif new file mode 100644 index 00000000..0ba8248e --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/uni1C_84.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/uni1C_85.glif b/sources/FixelDisplay-Black.ufo/glyphs/uni1C_85.glif new file mode 100644 index 00000000..9b3f5d21 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/uni1C_85.glif @@ -0,0 +1,20 @@ + + + + + + + + + + com.fontlab.metricsLeft + ш + com.fontlab.metricsRight + l() + com.fontlab.recipe + ш + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/uni1C_86.glif b/sources/FixelDisplay-Black.ufo/glyphs/uni1C_86.glif new file mode 100644 index 00000000..de0e7105 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/uni1C_86.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + uni1C84 + com.fontlab.metricsRight + ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/uni1C_87.glif b/sources/FixelDisplay-Black.ufo/glyphs/uni1C_87.glif new file mode 100644 index 00000000..1a58ddc8 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/uni1C_87.glif @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + uni1C84-40 + com.fontlab.metricsRight + ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/uni1C_88.glif b/sources/FixelDisplay-Black.ufo/glyphs/uni1C_88.glif new file mode 100644 index 00000000..e62672eb --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/uni1C_88.glif @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/uni1E_B_C_.glif b/sources/FixelDisplay-Black.ufo/glyphs/uni1E_B_C_.glif new file mode 100644 index 00000000..58fa77a4 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/uni1E_B_C_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+tilde.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/uni1E_B_D_.glif b/sources/FixelDisplay-Black.ufo/glyphs/uni1E_B_D_.glif new file mode 100644 index 00000000..056a23b7 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/uni1E_B_D_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+tilde + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/uni2010.glif b/sources/FixelDisplay-Black.ufo/glyphs/uni2010.glif new file mode 100644 index 00000000..dbd1b8e2 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/uni2010.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + hyphen + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/uni2D_E_E_.case.glif b/sources/FixelDisplay-Black.ufo/glyphs/uni2D_E_E_.case.glif new file mode 100644 index 00000000..9c93cb43 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/uni2D_E_E_.case.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/uni2D_E_E_.glif b/sources/FixelDisplay-Black.ufo/glyphs/uni2D_E_E_.glif new file mode 100644 index 00000000..8295a75a --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/uni2D_E_E_.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/uniE_000.alt.glif b/sources/FixelDisplay-Black.ufo/glyphs/uniE_000.alt.glif new file mode 100644 index 00000000..289fda16 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/uniE_000.alt.glif @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + ї_ї + public.markColor + 0.6,0.997,1,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/uniE_000.glif b/sources/FixelDisplay-Black.ufo/glyphs/uniE_000.glif new file mode 100644 index 00000000..a1eea620 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/uniE_000.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + ї_ї + public.markColor + 0.6,0.997,1,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/uniE_01A_.glif b/sources/FixelDisplay-Black.ufo/glyphs/uniE_01A_.glif new file mode 100644 index 00000000..4c2a411b --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/uniE_01A_.glif @@ -0,0 +1,115 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/uniF_43A_.glif b/sources/FixelDisplay-Black.ufo/glyphs/uniF_43A_.glif new file mode 100644 index 00000000..8dd5affc --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/uniF_43A_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/uniF_43B_.glif b/sources/FixelDisplay-Black.ufo/glyphs/uniF_43B_.glif new file mode 100644 index 00000000..8b91ba7c --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/uniF_43B_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ustraightcyr+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/uniF_45D_.glif b/sources/FixelDisplay-Black.ufo/glyphs/uniF_45D_.glif new file mode 100644 index 00000000..0dc9dc74 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/uniF_45D_.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Є+acute.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/uniF_45E_.glif b/sources/FixelDisplay-Black.ufo/glyphs/uniF_45E_.glif new file mode 100644 index 00000000..43aa552b --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/uniF_45E_.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Iacute + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/uniF_45F_.glif b/sources/FixelDisplay-Black.ufo/glyphs/uniF_45F_.glif new file mode 100644 index 00000000..47368dd1 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/uniF_45F_.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + com.fontlab.recipe + I+dieresiscase.alt+acute.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/uniF_475.glif b/sources/FixelDisplay-Black.ufo/glyphs/uniF_475.glif new file mode 100644 index 00000000..61650dc9 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/uniF_475.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + є+acute + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/uniF_476.glif b/sources/FixelDisplay-Black.ufo/glyphs/uniF_476.glif new file mode 100644 index 00000000..9992a91d --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/uniF_476.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + iacute + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/uniF_477.glif b/sources/FixelDisplay-Black.ufo/glyphs/uniF_477.glif new file mode 100644 index 00000000..44f8267c --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/uniF_477.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + dotlessi+dieresisacute + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/uniF_478.glif b/sources/FixelDisplay-Black.ufo/glyphs/uniF_478.glif new file mode 100644 index 00000000..ac6f38bf --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/uniF_478.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Yat+acute.case + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/uniF_479.glif b/sources/FixelDisplay-Black.ufo/glyphs/uniF_479.glif new file mode 100644 index 00000000..cf7f22e3 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/uniF_479.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + yat+acute + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/uniF_498.glif b/sources/FixelDisplay-Black.ufo/glyphs/uniF_498.glif new file mode 100644 index 00000000..41e55bad --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/uniF_498.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ю+dieresis.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/uniF_499.glif b/sources/FixelDisplay-Black.ufo/glyphs/uniF_499.glif new file mode 100644 index 00000000..831742d9 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/uniF_499.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ю+dieresis + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/uniF_49A_.glif b/sources/FixelDisplay-Black.ufo/glyphs/uniF_49A_.glif new file mode 100644 index 00000000..ec9a395b --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/uniF_49A_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Obarcyr+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/uniF_49B_.glif b/sources/FixelDisplay-Black.ufo/glyphs/uniF_49B_.glif new file mode 100644 index 00000000..b469a5e2 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/uniF_49B_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + obarcyr+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/uniF_49C_.glif b/sources/FixelDisplay-Black.ufo/glyphs/uniF_49C_.glif new file mode 100644 index 00000000..96cce77f --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/uniF_49C_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Schwacyr+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/uniF_49D_.glif b/sources/FixelDisplay-Black.ufo/glyphs/uniF_49D_.glif new file mode 100644 index 00000000..7732ecd6 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/uniF_49D_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + schwacyr+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/uniF_49E_.glif b/sources/FixelDisplay-Black.ufo/glyphs/uniF_49E_.glif new file mode 100644 index 00000000..2f43ab61 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/uniF_49E_.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Yatcyr + com.fontlab.metricsRight + Tshecyr + com.fontlab.recipe + Shhacyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/uniF_49F_.glif b/sources/FixelDisplay-Black.ufo/glyphs/uniF_49F_.glif new file mode 100644 index 00000000..27e43c6b --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/uniF_49F_.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + hbar + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/uniF_4C_6.glif b/sources/FixelDisplay-Black.ufo/glyphs/uniF_4C_6.glif new file mode 100644 index 00000000..c849d423 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/uniF_4C_6.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ч + com.fontlab.metricsRight + Ч + com.fontlab.recipe + Ч + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/uniF_4C_7.glif b/sources/FixelDisplay-Black.ufo/glyphs/uniF_4C_7.glif new file mode 100644 index 00000000..f759a8c5 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/uniF_4C_7.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ч + com.fontlab.metricsRight + ч + com.fontlab.recipe + ч+enhookcyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/uniF_4C_C_.glif b/sources/FixelDisplay-Black.ufo/glyphs/uniF_4C_C_.glif new file mode 100644 index 00000000..96325dee --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/uniF_4C_C_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + У+acute.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/uniF_4C_D_.glif b/sources/FixelDisplay-Black.ufo/glyphs/uniF_4C_D_.glif new file mode 100644 index 00000000..232fe131 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/uniF_4C_D_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + y+acute + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/uniF_4D_2.glif b/sources/FixelDisplay-Black.ufo/glyphs/uniF_4D_2.glif new file mode 100644 index 00000000..d79a0085 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/uniF_4D_2.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+grave.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/uniF_4D_3.glif b/sources/FixelDisplay-Black.ufo/glyphs/uniF_4D_3.glif new file mode 100644 index 00000000..c13853b9 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/uniF_4D_3.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+grave + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/uniF_4D_4.glif b/sources/FixelDisplay-Black.ufo/glyphs/uniF_4D_4.glif new file mode 100644 index 00000000..9afde986 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/uniF_4D_4.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + P+caron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/uniF_4D_5.glif b/sources/FixelDisplay-Black.ufo/glyphs/uniF_4D_5.glif new file mode 100644 index 00000000..a5fda45e --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/uniF_4D_5.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + p+caron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/uniF_4D_6.glif b/sources/FixelDisplay-Black.ufo/glyphs/uniF_4D_6.glif new file mode 100644 index 00000000..6f8a7bf9 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/uniF_4D_6.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Э+dotaccent.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/uniF_4D_7.glif b/sources/FixelDisplay-Black.ufo/glyphs/uniF_4D_7.glif new file mode 100644 index 00000000..dea25162 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/uniF_4D_7.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + э+dotaccent + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/uniF_4D_8.glif b/sources/FixelDisplay-Black.ufo/glyphs/uniF_4D_8.glif new file mode 100644 index 00000000..5118918f --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/uniF_4D_8.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Я+dieresis.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/uniF_4D_9.glif b/sources/FixelDisplay-Black.ufo/glyphs/uniF_4D_9.glif new file mode 100644 index 00000000..84def183 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/uniF_4D_9.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + я+dieresis + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/uniF_50E_.glif b/sources/FixelDisplay-Black.ufo/glyphs/uniF_50E_.glif new file mode 100644 index 00000000..ebe467af --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/uniF_50E_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/uniF_50F_.glif b/sources/FixelDisplay-Black.ufo/glyphs/uniF_50F_.glif new file mode 100644 index 00000000..8fa92284 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/uniF_50F_.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/uniF_510.glif b/sources/FixelDisplay-Black.ufo/glyphs/uniF_510.glif new file mode 100644 index 00000000..f6ed7259 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/uniF_510.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/uniF_511.glif b/sources/FixelDisplay-Black.ufo/glyphs/uniF_511.glif new file mode 100644 index 00000000..a1d393ca --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/uniF_511.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/uniF_512.glif b/sources/FixelDisplay-Black.ufo/glyphs/uniF_512.glif new file mode 100644 index 00000000..41b71b42 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/uniF_512.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + com.fontlab.metricsLeft + E + com.fontlab.metricsRight + E + com.fontlab.recipe + E+dieresis.case+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/uniF_513.glif b/sources/FixelDisplay-Black.ufo/glyphs/uniF_513.glif new file mode 100644 index 00000000..87e2d350 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/uniF_513.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.recipe + e+dieresis+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/uniF_514.glif b/sources/FixelDisplay-Black.ufo/glyphs/uniF_514.glif new file mode 100644 index 00000000..53d73359 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/uniF_514.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + com.fontlab.metricsLeft + E + com.fontlab.metricsRight + E + com.fontlab.recipe + E+dieresis.case+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/uniF_515.glif b/sources/FixelDisplay-Black.ufo/glyphs/uniF_515.glif new file mode 100644 index 00000000..85e2e311 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/uniF_515.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.recipe + e+dieresis+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/uniF_516.glif b/sources/FixelDisplay-Black.ufo/glyphs/uniF_516.glif new file mode 100644 index 00000000..05f26bc0 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/uniF_516.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + З+caron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/uniF_517.glif b/sources/FixelDisplay-Black.ufo/glyphs/uniF_517.glif new file mode 100644 index 00000000..7a3f6d19 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/uniF_517.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + з+caron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/uniF_518.glif b/sources/FixelDisplay-Black.ufo/glyphs/uniF_518.glif new file mode 100644 index 00000000..53e5437e --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/uniF_518.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/uniF_519.glif b/sources/FixelDisplay-Black.ufo/glyphs/uniF_519.glif new file mode 100644 index 00000000..9f94ef49 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/uniF_519.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/uniF_51A_.glif b/sources/FixelDisplay-Black.ufo/glyphs/uniF_51A_.glif new file mode 100644 index 00000000..aa92bf3a --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/uniF_51A_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/uniF_51B_.glif b/sources/FixelDisplay-Black.ufo/glyphs/uniF_51B_.glif new file mode 100644 index 00000000..c648e6c5 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/uniF_51B_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/uniF_51C_.glif b/sources/FixelDisplay-Black.ufo/glyphs/uniF_51C_.glif new file mode 100644 index 00000000..96764d4f --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/uniF_51C_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Obarcyr+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/uniF_51D_.glif b/sources/FixelDisplay-Black.ufo/glyphs/uniF_51D_.glif new file mode 100644 index 00000000..20e347ee --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/uniF_51D_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + obarcyr+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/uniF_51E_.glif b/sources/FixelDisplay-Black.ufo/glyphs/uniF_51E_.glif new file mode 100644 index 00000000..710c9b88 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/uniF_51E_.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + com.fontlab.recipe + Obarcyr+dieresis.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/uniF_51F_.glif b/sources/FixelDisplay-Black.ufo/glyphs/uniF_51F_.glif new file mode 100644 index 00000000..7a542b70 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/uniF_51F_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.recipe + obarcyr+dieresis+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/uniF_521.glif b/sources/FixelDisplay-Black.ufo/glyphs/uniF_521.glif new file mode 100644 index 00000000..cbc76cd0 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/uniF_521.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ы+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/uniF_522.glif b/sources/FixelDisplay-Black.ufo/glyphs/uniF_522.glif new file mode 100644 index 00000000..455351c1 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/uniF_522.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Э+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/uniF_523.glif b/sources/FixelDisplay-Black.ufo/glyphs/uniF_523.glif new file mode 100644 index 00000000..b55da727 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/uniF_523.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + э+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/uniF_524.glif b/sources/FixelDisplay-Black.ufo/glyphs/uniF_524.glif new file mode 100644 index 00000000..43732d05 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/uniF_524.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Э+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/uniF_525.glif b/sources/FixelDisplay-Black.ufo/glyphs/uniF_525.glif new file mode 100644 index 00000000..a2fbc417 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/uniF_525.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + э+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/uniF_526.glif b/sources/FixelDisplay-Black.ufo/glyphs/uniF_526.glif new file mode 100644 index 00000000..20d866b4 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/uniF_526.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Є+dieresis.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/uniF_527.glif b/sources/FixelDisplay-Black.ufo/glyphs/uniF_527.glif new file mode 100644 index 00000000..e14c1b94 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/uniF_527.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + є+dieresis + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/uniF_528.glif b/sources/FixelDisplay-Black.ufo/glyphs/uniF_528.glif new file mode 100644 index 00000000..3d517868 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/uniF_528.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Я+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/uniF_529.glif b/sources/FixelDisplay-Black.ufo/glyphs/uniF_529.glif new file mode 100644 index 00000000..1b262375 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/uniF_529.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + я+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/uniF_52A_.glif b/sources/FixelDisplay-Black.ufo/glyphs/uniF_52A_.glif new file mode 100644 index 00000000..578bb75f --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/uniF_52A_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Я+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/uniF_52B_.glif b/sources/FixelDisplay-Black.ufo/glyphs/uniF_52B_.glif new file mode 100644 index 00000000..acc5dcf8 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/uniF_52B_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + я+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/uniF_52C_.glif b/sources/FixelDisplay-Black.ufo/glyphs/uniF_52C_.glif new file mode 100644 index 00000000..f16ab608 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/uniF_52C_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ю+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/uniF_52D_.glif b/sources/FixelDisplay-Black.ufo/glyphs/uniF_52D_.glif new file mode 100644 index 00000000..80c9ecf5 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/uniF_52D_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ю+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/uniF_52E_.glif b/sources/FixelDisplay-Black.ufo/glyphs/uniF_52E_.glif new file mode 100644 index 00000000..cfac5773 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/uniF_52E_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ю+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/uniF_52F_.glif b/sources/FixelDisplay-Black.ufo/glyphs/uniF_52F_.glif new file mode 100644 index 00000000..714d4fca --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/uniF_52F_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ю+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/uniF_532.glif b/sources/FixelDisplay-Black.ufo/glyphs/uniF_532.glif new file mode 100644 index 00000000..632de464 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/uniF_532.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Й + com.fontlab.metricsRight + Й + com.fontlab.recipe + Й + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/uniF_533.glif b/sources/FixelDisplay-Black.ufo/glyphs/uniF_533.glif new file mode 100644 index 00000000..0d5e1fd0 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/uniF_533.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + l() + com.fontlab.recipe + й+enhookcyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/uniF_536.glif b/sources/FixelDisplay-Black.ufo/glyphs/uniF_536.glif new file mode 100644 index 00000000..d892e6bf --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/uniF_536.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ы+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/uniF_537.glif b/sources/FixelDisplay-Black.ufo/glyphs/uniF_537.glif new file mode 100644 index 00000000..fab85e8c --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/uniF_537.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ы+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/uniF_538.glif b/sources/FixelDisplay-Black.ufo/glyphs/uniF_538.glif new file mode 100644 index 00000000..914ee927 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/uniF_538.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Reversedzecyr+dieresis.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/uniF_539.glif b/sources/FixelDisplay-Black.ufo/glyphs/uniF_539.glif new file mode 100644 index 00000000..2dd7b465 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/uniF_539.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + reversedzecyr+dieresis + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/uniF_830.glif b/sources/FixelDisplay-Black.ufo/glyphs/uniF_830.glif new file mode 100644 index 00000000..0d157719 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/uniF_830.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+circumflex.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/uniF_831.glif b/sources/FixelDisplay-Black.ufo/glyphs/uniF_831.glif new file mode 100644 index 00000000..c60225d0 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/uniF_831.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+circumflex + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/uniF_833.glif b/sources/FixelDisplay-Black.ufo/glyphs/uniF_833.glif new file mode 100644 index 00000000..d80ef48a --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/uniF_833.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+circumflex.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/uniF_834.glif b/sources/FixelDisplay-Black.ufo/glyphs/uniF_834.glif new file mode 100644 index 00000000..55a2e462 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/uniF_834.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+circumflex + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/uniF_839.glif b/sources/FixelDisplay-Black.ufo/glyphs/uniF_839.glif new file mode 100644 index 00000000..c6fdbaf4 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/uniF_839.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+circumflex.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/uniF_83A_.glif b/sources/FixelDisplay-Black.ufo/glyphs/uniF_83A_.glif new file mode 100644 index 00000000..e3cafa3e --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/uniF_83A_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+circumflex + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/uniF_86F_.glif b/sources/FixelDisplay-Black.ufo/glyphs/uniF_86F_.glif new file mode 100644 index 00000000..643092d8 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/uniF_86F_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + K+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/uniF_870.glif b/sources/FixelDisplay-Black.ufo/glyphs/uniF_870.glif new file mode 100644 index 00000000..35369992 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/uniF_870.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + к+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/uniF_872.glif b/sources/FixelDisplay-Black.ufo/glyphs/uniF_872.glif new file mode 100644 index 00000000..6c4d1c36 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/uniF_872.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Л+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/uniF_873.glif b/sources/FixelDisplay-Black.ufo/glyphs/uniF_873.glif new file mode 100644 index 00000000..399c498b --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/uniF_873.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + л+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/uniF_875.glif b/sources/FixelDisplay-Black.ufo/glyphs/uniF_875.glif new file mode 100644 index 00000000..3d25a6d5 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/uniF_875.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/uniF_876.glif b/sources/FixelDisplay-Black.ufo/glyphs/uniF_876.glif new file mode 100644 index 00000000..70a8e612 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/uniF_876.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/uniF_878.glif b/sources/FixelDisplay-Black.ufo/glyphs/uniF_878.glif new file mode 100644 index 00000000..0d81fe9e --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/uniF_878.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + X+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/uniF_879.glif b/sources/FixelDisplay-Black.ufo/glyphs/uniF_879.glif new file mode 100644 index 00000000..0da9256a --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/uniF_879.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + x+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/uniF_87B_.glif b/sources/FixelDisplay-Black.ufo/glyphs/uniF_87B_.glif new file mode 100644 index 00000000..eedae3e7 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/uniF_87B_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ц+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/uniF_87C_.glif b/sources/FixelDisplay-Black.ufo/glyphs/uniF_87C_.glif new file mode 100644 index 00000000..66efd941 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/uniF_87C_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ц+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/uniF_87E_.glif b/sources/FixelDisplay-Black.ufo/glyphs/uniF_87E_.glif new file mode 100644 index 00000000..ad3f6e59 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/uniF_87E_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ч+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/uniF_87F_.glif b/sources/FixelDisplay-Black.ufo/glyphs/uniF_87F_.glif new file mode 100644 index 00000000..4e3d3cdb --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/uniF_87F_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ч+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/uogonek.glif b/sources/FixelDisplay-Black.ufo/glyphs/uogonek.glif new file mode 100644 index 00000000..ce2a6959 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/uogonek.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+ogonek + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/uring.glif b/sources/FixelDisplay-Black.ufo/glyphs/uring.glif new file mode 100644 index 00000000..8bd5a73d --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/uring.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+ring + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/ushort-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/ushort-cy.glif new file mode 100644 index 00000000..566943f8 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/ushort-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + uni0443+breve + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/ustraightcyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/ustraightcyr.glif new file mode 100644 index 00000000..408d8c3e --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/ustraightcyr.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + v + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/ustraightstrokecyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/ustraightstrokecyr.glif new file mode 100644 index 00000000..b8c3dbbf --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/ustraightstrokecyr.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/utilde.glif b/sources/FixelDisplay-Black.ufo/glyphs/utilde.glif new file mode 100644 index 00000000..19a40c43 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/utilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+tilde + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/v.glif b/sources/FixelDisplay-Black.ufo/glyphs/v.glif new file mode 100644 index 00000000..9a724054 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/v.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/ve-cy.B_G_R_.glif b/sources/FixelDisplay-Black.ufo/glyphs/ve-cy.B_G_R_.glif new file mode 100644 index 00000000..828f1089 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/ve-cy.B_G_R_.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + b-5 + com.fontlab.metricsRight + b + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/ve-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/ve-cy.glif new file mode 100644 index 00000000..ee8884ca --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/ve-cy.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/ve-cy.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/ve-cy.ss01.glif new file mode 100644 index 00000000..f0660be9 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/ve-cy.ss01.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/virgo.glif b/sources/FixelDisplay-Black.ufo/glyphs/virgo.glif new file mode 100644 index 00000000..be98f8a6 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/virgo.glif @@ -0,0 +1,224 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =55 + com.fontlab.metricsRight + =35 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/vzmetcomb-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/vzmetcomb-cy.glif new file mode 100644 index 00000000..c8022d56 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/vzmetcomb-cy.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/w.glif b/sources/FixelDisplay-Black.ufo/glyphs/w.glif new file mode 100644 index 00000000..a3db2a7d --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/w.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/wacute.glif b/sources/FixelDisplay-Black.ufo/glyphs/wacute.glif new file mode 100644 index 00000000..63a4625c --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/wacute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + w+acute + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/wcircumflex.glif b/sources/FixelDisplay-Black.ufo/glyphs/wcircumflex.glif new file mode 100644 index 00000000..aa49052f --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/wcircumflex.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + w+circumflex + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/wdieresis.glif b/sources/FixelDisplay-Black.ufo/glyphs/wdieresis.glif new file mode 100644 index 00000000..565958d5 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/wdieresis.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + w+dieresis + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/wecyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/wecyr.glif new file mode 100644 index 00000000..fa0a32cb --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/wecyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + w + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/wgrave.glif b/sources/FixelDisplay-Black.ufo/glyphs/wgrave.glif new file mode 100644 index 00000000..cd9582f5 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/wgrave.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + w+grave + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/x.glif b/sources/FixelDisplay-Black.ufo/glyphs/x.glif new file mode 100644 index 00000000..cabf9077 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/x.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/xatailcyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/xatailcyr.glif new file mode 100644 index 00000000..5065a6aa --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/xatailcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + x + com.fontlab.metricsRight + zhetailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/y.glif b/sources/FixelDisplay-Black.ufo/glyphs/y.glif new file mode 100644 index 00000000..ba5ac8b5 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/y.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/yacute.glif b/sources/FixelDisplay-Black.ufo/glyphs/yacute.glif new file mode 100644 index 00000000..4b8fe4dc --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/yacute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + y+acute + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/yaecyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/yaecyr.glif new file mode 100644 index 00000000..e395a838 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/yaecyr.glif @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + я + com.fontlab.metricsRight + e + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/yatI_otified-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/yatI_otified-cy.glif new file mode 100644 index 00000000..3e2fad62 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/yatI_otified-cy.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + com.fontlab.metricsRight + yatcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/yatcyr.B_G_R_.glif b/sources/FixelDisplay-Black.ufo/glyphs/yatcyr.B_G_R_.glif new file mode 100644 index 00000000..d8446dbe --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/yatcyr.B_G_R_.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hardsign-cy + com.fontlab.metricsRight + ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/yatcyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/yatcyr.glif new file mode 100644 index 00000000..1126a3ad --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/yatcyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hardsign-cy + com.fontlab.metricsRight + ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/ycircumflex.glif b/sources/FixelDisplay-Black.ufo/glyphs/ycircumflex.glif new file mode 100644 index 00000000..7a0391aa --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/ycircumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + y+circumflex + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/ydieresis.glif b/sources/FixelDisplay-Black.ufo/glyphs/ydieresis.glif new file mode 100644 index 00000000..5992abd8 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/ydieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + y+dieresis + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/yen.glif b/sources/FixelDisplay-Black.ufo/glyphs/yen.glif new file mode 100644 index 00000000..b1fef890 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/yen.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/yen.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/yen.ss01.glif new file mode 100644 index 00000000..f09e597e --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/yen.ss01.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/yerN_eutral-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/yerN_eutral-cy.glif new file mode 100644 index 00000000..64b96877 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/yerN_eutral-cy.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hardsign-cy + com.fontlab.metricsRight + ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/yeru-cy.accented.glif b/sources/FixelDisplay-Black.ufo/glyphs/yeru-cy.accented.glif new file mode 100644 index 00000000..604a4bcf --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/yeru-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ы+acute + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/yeru-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/yeru-cy.glif new file mode 100644 index 00000000..434d32bd --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/yeru-cy.glif @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/yeru-cy.ss01.glif b/sources/FixelDisplay-Black.ufo/glyphs/yeru-cy.ss01.glif new file mode 100644 index 00000000..c514f068 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/yeru-cy.ss01.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/yeruB_ackyer-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/yeruB_ackyer-cy.glif new file mode 100644 index 00000000..73504b6a --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/yeruB_ackyer-cy.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hardsign-cy + com.fontlab.metricsRight + dotlessi + com.fontlab.recipe + hardsign-cy_dotlessi + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/yi-cy.alt.glif b/sources/FixelDisplay-Black.ufo/glyphs/yi-cy.alt.glif new file mode 100644 index 00000000..bf39787f --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/yi-cy.alt.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.recipe + idieresis + public.markColor + 0.6,0.997,1,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/yi-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/yi-cy.glif new file mode 100644 index 00000000..50bc9f5f --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/yi-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + idieresis + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/ylongdieresiscyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/ylongdieresiscyr.glif new file mode 100644 index 00000000..07be6450 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/ylongdieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + yeru-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/yn-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/yn-cy.glif new file mode 100644 index 00000000..bb7b109e --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/yn-cy.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |izhitsacyr + com.fontlab.metricsRight + |izhitsacyr + com.fontlab.recipe + izhitsa + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/yuR_eversed-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/yuR_eversed-cy.glif new file mode 100644 index 00000000..e080ca80 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/yuR_eversed-cy.glif @@ -0,0 +1,20 @@ + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l + com.fontlab.recipe + ю + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/yusB_lended-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/yusB_lended-cy.glif new file mode 100644 index 00000000..908c42cd --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/yusB_lended-cy.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + yusbigcyr + com.fontlab.metricsRight + yusbigcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/yusC_losedlittle-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/yusC_losedlittle-cy.glif new file mode 100644 index 00000000..0af1b1f8 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/yusC_losedlittle-cy.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + yuslittlecyr + com.fontlab.metricsRight + yuslittlecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/yusbigcyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/yusbigcyr.glif new file mode 100644 index 00000000..f951f601 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/yusbigcyr.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/yusbigiotifiedcyr.B_G_R_.glif b/sources/FixelDisplay-Black.ufo/glyphs/yusbigiotifiedcyr.B_G_R_.glif new file mode 100644 index 00000000..63ab6077 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/yusbigiotifiedcyr.B_G_R_.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + com.fontlab.metricsRight + ж + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/yusbigiotifiedcyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/yusbigiotifiedcyr.glif new file mode 100644 index 00000000..b31ad940 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/yusbigiotifiedcyr.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + ж + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/yusiotifiedC_losedL_ittle-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/yusiotifiedC_losedL_ittle-cy.glif new file mode 100644 index 00000000..65445c19 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/yusiotifiedC_losedL_ittle-cy.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + yusClosedlittle-cy + com.fontlab.recipe + yusClosedlittle-cy+н + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/yuslittlecyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/yuslittlecyr.glif new file mode 100644 index 00000000..c8fca3fe --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/yuslittlecyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + v-5 + com.fontlab.metricsRight + v-5 + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/yuslittleiotifiedcyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/yuslittleiotifiedcyr.glif new file mode 100644 index 00000000..985d4790 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/yuslittleiotifiedcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + v-10 + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/z.glif b/sources/FixelDisplay-Black.ufo/glyphs/z.glif new file mode 100644 index 00000000..9526b665 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/z.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/zacute.glif b/sources/FixelDisplay-Black.ufo/glyphs/zacute.glif new file mode 100644 index 00000000..40e3ed11 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/zacute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + z+acute + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/zcaron.glif b/sources/FixelDisplay-Black.ufo/glyphs/zcaron.glif new file mode 100644 index 00000000..8f6a5ecd --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/zcaron.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + z+caron + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/zdotaccent.glif b/sources/FixelDisplay-Black.ufo/glyphs/zdotaccent.glif new file mode 100644 index 00000000..05f1fdf0 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/zdotaccent.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + z+dotaccent + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/ze-cy.B_G_R_.glif b/sources/FixelDisplay-Black.ufo/glyphs/ze-cy.B_G_R_.glif new file mode 100644 index 00000000..0f54332a --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/ze-cy.B_G_R_.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |c-12 + com.fontlab.metricsRight + в-5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/ze-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/ze-cy.glif new file mode 100644 index 00000000..2448a09d --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/ze-cy.glif @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |c-5 + com.fontlab.metricsRight + в + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/zedieresiscyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/zedieresiscyr.glif new file mode 100644 index 00000000..2fe5ba17 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/zedieresiscyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ze-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/zemlya-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/zemlya-cy.glif new file mode 100644 index 00000000..8a451da9 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/zemlya-cy.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + z-10 + com.fontlab.metricsRight + z + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/zero.glif b/sources/FixelDisplay-Black.ufo/glyphs/zero.glif new file mode 100644 index 00000000..6e49d7f0 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/zero.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/zero.osf.glif b/sources/FixelDisplay-Black.ufo/glyphs/zero.osf.glif new file mode 100644 index 00000000..130aad7f --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/zero.osf.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + zero + com.fontlab.metricsRight + zero + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/zero.tf.glif b/sources/FixelDisplay-Black.ufo/glyphs/zero.tf.glif new file mode 100644 index 00000000..21844e82 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/zero.tf.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/zetailcyr.B_S_H_.glif b/sources/FixelDisplay-Black.ufo/glyphs/zetailcyr.B_S_H_.glif new file mode 100644 index 00000000..7c3ae345 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/zetailcyr.B_S_H_.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + з + com.fontlab.metricsRight + з + com.fontlab.recipe + з + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/zetailcyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/zetailcyr.glif new file mode 100644 index 00000000..839cf0cf --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/zetailcyr.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + з + com.fontlab.metricsRight + з + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/zhe-cy.B_G_R_.glif b/sources/FixelDisplay-Black.ufo/glyphs/zhe-cy.B_G_R_.glif new file mode 100644 index 00000000..1bdd1193 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/zhe-cy.B_G_R_.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |k + com.fontlab.metricsRight + k + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/zhe-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/zhe-cy.glif new file mode 100644 index 00000000..58fcb011 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/zhe-cy.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |k + com.fontlab.metricsRight + k + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/zhebrevecyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/zhebrevecyr.glif new file mode 100644 index 00000000..b369f4d8 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/zhebrevecyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + zhe-cy+breve + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/zhedieresiscyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/zhedieresiscyr.glif new file mode 100644 index 00000000..e56a42a2 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/zhedieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + zhe-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/zhetailcyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/zhetailcyr.glif new file mode 100644 index 00000000..f9aefa70 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/zhetailcyr.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ж + com.fontlab.metricsRight + katailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/zhwe-cy.glif b/sources/FixelDisplay-Black.ufo/glyphs/zhwe-cy.glif new file mode 100644 index 00000000..68bf53a3 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/zhwe-cy.glif @@ -0,0 +1,87 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + з + com.fontlab.metricsRight + ж + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/glyphs/zjekomicyr.glif b/sources/FixelDisplay-Black.ufo/glyphs/zjekomicyr.glif new file mode 100644 index 00000000..d967be3e --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/glyphs/zjekomicyr.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + з-20 + com.fontlab.metricsRight + njekomicyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Black.ufo/groups.plist b/sources/FixelDisplay-Black.ufo/groups.plist new file mode 100644 index 00000000..0215e532 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/groups.plist @@ -0,0 +1,2992 @@ + + + + + accent + + grave + acute.case + grave.case + acute + + case + + arrowdown.case + arrowdown.ss01.case + arrowleft.case + arrowleft.ss01.case + arrowright.case + arrowright.ss01.case + arrowup.case + arrowup.ss01.case + backslash.case + bar.case + braceleft.case + braceright.case + bracketleft.case + bracketright.case + brokenbar.case + bullet.case + colon.case + emdash.case + endash.case + exclamdown.case + guillemetleft.case + guillemetright.case + guilsinglleft.case + guilsinglright.case + hyphen.case + parenleft.case + parenright.case + questiondown.case + semicolon.case + at.case + bracketangleleft.case + bracketangleright.case + slash.case + + case_def + + arrowdown + arrowdown.ss01 + arrowleft + arrowleft.ss01 + arrowright + arrowright.ss01 + arrowup + arrowup.ss01 + backslash + bar + braceleft + braceright + bracketleft + bracketright + brokenbar + bullet + colon + emdash + endash + exclamdown + guillemetleft + guillemetright + guilsinglleft + guilsinglright + hyphen + parenleft + parenright + questiondown + semicolon + at + bracketangleleft + bracketangleright + slash + + cpsp + + 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 + Agrave + Aacute + Acircumflex + Atilde + Adieresis + Aring + AE + Ccedilla + Egrave + Eacute + Ecircumflex + Edieresis + Igrave + Iacute + Icircumflex + Idieresis + Eth + Ntilde + Ograve + Oacute + Ocircumflex + Otilde + Odieresis + Oslash + Ugrave + Uacute + Ucircumflex + Udieresis + Yacute + Thorn + Amacron + Abreve + Aogonek + Cacute + Ccircumflex + Cdotaccent + Ccaron + Dcaron + Dcroat + Emacron + Ebreve + Edotaccent + Eogonek + Ecaron + Gcircumflex + Gbreve + Gdotaccent + Gcommaaccent + Hcircumflex + Hbar + Itilde + Imacron + Ibreve + Iogonek + Idotaccent + IJ + Jcircumflex + Kcommaaccent + Lacute + Lcommaaccent + Lcaron + Ldot + Lslash + Nacute + Ncommaaccent + Ncaron + Eng + Omacron + Obreve + Ohungarumlaut + OE + Racute + Rcommaaccent + Rcaron + Sacute + Scircumflex + Scedilla + Scaron + Tcedilla + Tcaron + Tbar + Utilde + Umacron + Ubreve + Uring + Uhungarumlaut + Uogonek + Wcircumflex + Ycircumflex + Ydieresis + Zacute + Zdotaccent + Zcaron + Schwa + Acaron + Gacute + AEacute + Oslashacute + Scommaaccent + Tcommaaccent + Delta + Omega + Iegravecyr + uniF43A + A-cy.accented + E-cy.accented + Ii-cy.accented + O-cy.accented + U-cy.accented + Yeru-cy.accented + Ereversed-cy.accented + Iu-cy.accented + Ia-cy.accented + Io-cy.accented + uniF498 + uniF49A + uniF49C + uniF49E + uniF4C6 + uniF4CC + uniF4D2 + uniF4D4 + uniF4D6 + uniF4D8 + uniF50E + uniF510 + uniF512 + uniF514 + uniF516 + uniF518 + uniF51A + uniF51C + uniF51E + Yeru-cymacron + uniF522 + uniF524 + uniF526 + uniF528 + uniF52A + uniF52C + uniF52E + uniF532 + uniF536 + uniF538 + uniF830 + uniF833 + uniF839 + uniF86F + uniF872 + uniF875 + uniF878 + uniF87B + uniF87E + Io-cy + Djecyr + Gjecyr + E-cy + Dze-cy + I-cy + Yi-cy + Jecyr + Ljecyr + Njecyr + Tshecyr + Kjecyr + Igravecyr + Ushort-cy + Dzhecyr + A-cy + Be-cy + Ve-cy + Ge-cy + De-cy + Ie-cy + Zhe-cy + Ze-cy + Ii-cy + Iishort-cy + Ka-cy + El-cy + Em-cy + En-cy + O-cy + Pe-cy + Er-cy + Es-cy + Te-cy + U-cy + Ef-cy + Ha-cy + Tse-cy + Che-cy + Sha-cy + Shcha-cy + Hardsign-cy + Yeru-cy + Softsign-cy + Ereversed-cy + Iu-cy + Ia-cy + Omegacyr + Yatcyr + Eiotifiedcyr + Yuslittlecyr + Yuslittleiotifiedcyr + Yusbigcyr + Yusbigiotifiedcyr + Ksicyr + Psicyr + Fitacyr + Izhitsacyr + Izhitsagravedblcyr + Ukcyr + Omegaroundcyr + Omegatitlocyr + Otcyr + Koppacyr + Ishortsharptailcyr + Semisoftcyr + Ertickcyr + Gheupturn-cy + Gestrokecyr + Gehookcyr + Zhetailcyr + Zetailcyr + Katailcyr + Kaverticalstrokecyr + Kastrokecyr + Kabashkcyr + Entailcyr + Engecyr + Pehookcyr + Haabkhcyr + Estailcyr + Tetailcyr + Ustraightcyr + Ustraightstrokecyr + Xatailcyr + Tetsecyr + Chetailcyr + Chevertcyr + Shhacyr + Cheabkhcyr + Cheabkhtailcyr + Palochkacyr + Zhebrevecyr + Kahookcyr + Elsharptailcyr + Enhookcyr + Ensharptailcyr + Chekhakascyr + Emsharptailcyr + Abrevecyr + Adieresiscyr + Aiecyr + Iebrevecyr + Schwacyr + Schwadieresiscyr + Zhedieresiscyr + Zedieresiscyr + Dzeabkhcyr + Imacroncyr + Idieresiscyr + Odieresiscyr + Obarcyr + Obardieresiscyr + Ereverseddieresiscyr + Umacroncyr + Udieresiscyr + Uacutedblcyr + Chedieresiscyr + Getailcyr + Ylongdieresiscyr + Gehookstrokecyr + Hahookcyr + Hastrokecyr + Dekomicyr + Djekomicyr + Zjekomicyr + Dzjekomicyr + Ljekomicyr + Njekomicyr + Sjekomicyr + Tjekomicyr + Reversedzecyr + Elhookcyr + Lhacyr + Rhacyr + Yaecyr + Qacyr + Wecyr + Kaaleutcyr + Elmiddlehookcyr + Enmiddlehookcyr + Petailcyr + Shhatailcyr + Enhookleftcyr + Dzzhecyr + Dchecyr + Eltailcyr + Wgrave + Wacute + Wdieresis + Germandbls + uni1EBC + Zemlya-cy + Dzelo-cy + DzeReversed-cy + Iota-cy + Djerv-cy + UkMonograph-cy + OmegaBroad-cy + YerNeutral-cy + YeruBackYer-cy + YatIotified-cy + YuReversed-cy + IotifiedA-cy + YusClosedlittle-cy + YusBlended-cy + YusiotifiedClosedLittle-cy + Yn-cy + TseReversed-cy + DeSoft-cy + ElSoft-cy + EmSoft-cy + OMonocular-cy + OBinocular-cy + ODoubleMonocular-cy + Dwe-cy + Dzwe-cy + Zhwe-cy + Cche-cy + Dzze-cy + TeWithMiddleHook-cy + Twe-cy + Tswe-cy + Tsse-cy + Tche-cy + Hwe-cy + Shwe-cy + DoubleO-cy + CrossedO-cy + A-cy.ss01 + A.ss01 + AE.ss01 + Aacute.ss01 + Abreve.ss01 + Acircumflex.ss01 + Adieresis.ss01 + Agrave.ss01 + Amacron.ss01 + Aogonek.ss01 + Aring.ss01 + Atilde.ss01 + Em-cy.ss01 + Eng.ss01 + G.ss01 + Gacute.ss01 + Gbreve.ss01 + Gcircumflex.ss01 + Gcommaaccent.ss01 + Gdotaccent.ss01 + Ha-cy.ss01 + Ia-cy.ss01 + J.ss01 + Jcircumflex.ss01 + K.ss01 + Ka-cy.ss01 + Kcommaaccent.ss01 + M.ss01 + N.ss01 + Nacute.ss01 + Ncaron.ss01 + Ncommaaccent.ss01 + Ntilde.ss01 + Q.ss01 + U-cy.ss01 + Ushort-cy.ss01 + V.ss01 + W.ss01 + Wacute.ss01 + Wcircumflex.ss01 + Wdieresis.ss01 + Wgrave.ss01 + X.ss01 + Y.ss01 + Yacute.ss01 + Ycircumflex.ss01 + Ydieresis.ss01 + Z.ss01 + Zacute.ss01 + Zcaron.ss01 + Zdotaccent.ss01 + Zetailcyr.BSH + Gestrokecyr.BSH + Estailcyr.BSH + Estailcyr.CHU + Zhe-cy.ss01 + + locl.SRB + + be-cy.SRB + iegravecyr.SRB + igravecyr.SRB + + loclSRB_def + + be-cy + iegravecyr + igravecyr + + locl_BGR + + De-cy.BGR + Ef-cy.BGR + El-cy.BGR + de-cy.BGR + eiotifiedcyr.BGR + el-cy.BGR + ge-cy.BGR + hardsign-cy.BGR + ii-cy.BGR + iishort-cy.BGR + iotifieda-cy.BGR + iu-cy.BGR + ka-cy.BGR + pe-cy.BGR + sha-cy.BGR + shcha-cy.BGR + softsign-cy.BGR + te-cy.BGR + tse-cy.BGR + ve-cy.BGR + yatcyr.BGR + yusbigiotifiedcyr.BGR + ze-cy.BGR + zhe-cy.BGR + + locl_def + + De-cy + Ef-cy + El-cy + de-cy + eiotifiedcyr + el-cy + ge-cy + hardsign-cy + ii-cy + iishort-cy + iotifieda-cy + iu-cy + ka-cy + pe-cy + sha-cy + shcha-cy + softsign-cy + te-cy + tse-cy + ve-cy + yatcyr + yusbigiotifiedcyr + ze-cy + zhe-cy + + pics + + neptune + leo + virgo + bishopwhite + knightwhite + rookblack + bishopblack + knightblack + heartwhite + diamondwhite-misc + spadewhite + heart + clubwhite + crossedswords + flower + floretteblack + florettewhite + floretteoutlinedpetalledblackeight + + pics_def + + A + B + C + D + E + F + G + H + I + J + K + L + M + N + O + P + Q + R + + public.kern1.A.ss012 + + A-cy.ss01 + A.ss01 + Aacute.ss01 + Abreve.ss01 + Acircumflex.ss01 + Adieresis.ss01 + Agrave.ss01 + Amacron.ss01 + Aogonek.ss01 + Aring.ss01 + Atilde.ss01 + + public.kern1.A2 + + A + A-cy + A-cy.accented + Aacute + Abreve + Abrevecyr + Acaron + Acircumflex + Adieresis + Adieresiscyr + Agrave + Amacron + Aogonek + Aring + Atilde + De-cy.BGR + Delta + El-cy.BGR + IotifiedA-cy + Yn-cy + YusClosedlittle-cy + YusiotifiedClosedLittle-cy + Yuslittlecyr + Yuslittleiotifiedcyr + uniF50E + uniF830 + + public.kern1.AE + + AE + AE.ss01 + AEacute + Aiecyr + + public.kern1.C1 + + C + Cacute + Ccaron + Ccedilla + Ccircumflex + Cdotaccent + E-cy + Eiotifiedcyr + Es-cy + Estailcyr + Estailcyr.BSH + Estailcyr.CHU + Reversedzecyr + uniF45D + uniF526 + uniF538 + uniF875 + + public.kern1.Decyr + + Chetailcyr + De-cy + Dwe-cy + Dzze-cy + Elsharptailcyr + Eltailcyr + Emsharptailcyr + Ensharptailcyr + Entailcyr + Ishortsharptailcyr + Petailcyr + Shcha-cy + Shwe-cy + Tetsecyr + Tse-cy + Tswe-cy + uniF87B + + public.kern1.E1 + + E + E-cy.accented + Eacute + Ebreve + Ecaron + Ecircumflex + Edieresis + Edotaccent + Egrave + Emacron + Eogonek + Ie-cy + Iebrevecyr + Io-cy + Io-cy.accented + Yaecyr + uni1EBC + uniF510 + uniF512 + uniF514 + uniF833 + + public.kern1.G.ss01 + + G.ss01 + Gacute.ss01 + Gbreve.ss01 + Gcircumflex.ss01 + Gcommaaccent.ss01 + Gdotaccent.ss01 + + public.kern1.G1 + + G + Gacute + Gbreve + Gcircumflex + Gcommaaccent + Gdotaccent + + public.kern1.Ge-cy + + DeSoft-cy + ElSoft-cy + EmSoft-cy + Engecyr + Ge-cy + Gehookstrokecyr + Gestrokecyr + Gestrokecyr.BSH + Getailcyr + Gheupturn-cy + Gjecyr + TseReversed-cy + YeruBackYer-cy + uniF872 + + public.kern1.H + + Eng + Eng.ss01 + H + Hbar + Hcircumflex + I + Iacute + Ibreve + Icircumflex + Idieresis + Idotaccent + Igrave + Imacron + Iogonek + Itilde + J.ss01 + Jcircumflex.ss01 + M + M.ss01 + N + N.ss01 + Nacute + Nacute.ss01 + Ncaron + Ncaron.ss01 + Ncommaaccent + Ncommaaccent.ss01 + Ntilde + Ntilde.ss01 + + public.kern1.Hardcyr + + Hardsign-cy + Ljecyr + Njecyr + Semisoftcyr + Shhacyr + Softsign-cy + YatIotified-cy + Yatcyr + YerNeutral-cy + uniF478 + + public.kern1.J1 + + J + Jcircumflex + Jecyr + + public.kern1.K + + K + K.ss01 + Ka-cy + Ka-cy.ss01 + Kaaleutcyr + Kabashkcyr + Kastrokecyr + Kcommaaccent + Kcommaaccent.ss01 + Kjecyr + uniF86F + + public.kern1.L + + L + Lacute + Lcaron + Lcommaaccent + Lslash + + public.kern1.O + + Cheabkhcyr + Cheabkhtailcyr + CrossedO-cy + D + Dcaron + Dcroat + DoubleO-cy + Ef-cy + Ef-cy.BGR + Ereversed-cy + Ereversed-cy.accented + Ereverseddieresiscyr + Eth + Fitacyr + Iu-cy + Iu-cy.accented + O + O-cy + O-cy.accented + OBinocular-cy + ODoubleMonocular-cy + OMonocular-cy + Oacute + Obarcyr + Obardieresiscyr + Obreve + Ocircumflex + Odieresis + Odieresiscyr + Ograve + Ohungarumlaut + Omacron + Omega + Omegaroundcyr + Oslash + Oslashacute + Otilde + Q + Qacyr + Schwa + Schwacyr + Schwadieresiscyr + Sjekomicyr + uniF498 + uniF49A + uniF49C + uniF4D2 + uniF4D6 + uniF518 + uniF51A + uniF51C + uniF51E + uniF522 + uniF524 + uniF52C + uniF52E + uniF839 + + public.kern1.Oslash.alt + + Ha-cy + Ha-cy.ss01 + Hahookcyr + Lhacyr + Rhacyr + X + X.ss01 + uniF878 + + public.kern1.P + + Er-cy + Ertickcyr + P + uniF4D4 + + public.kern1.R + + R + Racute + Rcaron + Rcommaaccent + + public.kern1.S1 + + Dzwe-cy + S + Sacute + Scaron + Scedilla + Scircumflex + Scommaaccent + + public.kern1.T1 + + Koppacyr + T + Tcaron + Tcedilla + Tcommaaccent + Te-cy + Tetailcyr + Tsse-cy + Twe-cy + + public.kern1.U1 + + OmegaBroad-cy + Omegacyr + Omegatitlocyr + Otcyr + Psicyr + U + Uacute + Ubreve + Ucircumflex + Udieresis + Ugrave + Uhungarumlaut + Umacron + Uogonek + Uring + Utilde + + public.kern1.Ucyr1 + + U-cy + U-cy.accented + U-cy.ss01 + Uacutedblcyr + Udieresiscyr + Umacroncyr + Ushort-cy + Ushort-cy.ss01 + uniF4CC + + public.kern1.V + + Izhitsacyr + Izhitsagravedblcyr + V + V.ss01 + + public.kern1.W.ss011 + + W.ss01 + Wacute.ss01 + Wcircumflex.ss01 + Wdieresis.ss01 + Wgrave.ss01 + + public.kern1.W1 + + W + Wacute + Wcircumflex + Wdieresis + Wecyr + Wgrave + + public.kern1.Y.ss011 + + Y.ss01 + Yacute.ss01 + Ycircumflex.ss01 + Ydieresis.ss01 + + public.kern1.Y1 + + Ustraightcyr + Ustraightstrokecyr + Y + Yacute + Ycircumflex + Ydieresis + uniF43A + + public.kern1.Yacyr + + Cche-cy + Che-cy + Chedieresiscyr + Chekhakascyr + Chevertcyr + Dekomicyr + Elhookcyr + Em-cy + En-cy + Enhookcyr + Enhookleftcyr + I-cy + Ia-cy + Ia-cy.accented + Ia-cy.ss01 + Idieresiscyr + Ii-cy + Ii-cy.accented + Iishort-cy + Imacroncyr + Palochkacyr + Pe-cy + Sha-cy + Tche-cy + Yeru-cy + Yeru-cy.accented + Yeru-cymacron + Yi-cy + Ylongdieresiscyr + YuReversed-cy + palochkacyr + uniF45E + uniF45F + uniF4C6 + uniF4D8 + uniF528 + uniF52A + uniF532 + uniF536 + uniF87E + + public.kern1.Z1 + + Dzelo-cy + Z + Z.ss01 + Zacute + Zacute.ss01 + Zcaron + Zcaron.ss01 + Zdotaccent + Zdotaccent.ss01 + Zemlya-cy + + public.kern1.Ze-cy + + Dzeabkhcyr + Ksicyr + Ze-cy + Zedieresiscyr + Zetailcyr + Zetailcyr.BSH + uniF516 + + public.kern1.Zhe-cy + + Dzzhecyr + Katailcyr + Kaverticalstrokecyr + Xatailcyr + YusBlended-cy + Yusbigcyr + Yusbigiotifiedcyr + Zhe-cy + Zhebrevecyr + Zhedieresiscyr + Zhetailcyr + Zhwe-cy + + public.kern1.a1 + + a + aacute + abreve + acaron + acircumflex + adieresis + agrave + amacron + aogonek + aring + atilde + + public.kern1.c1 + + c + cacute + ccaron + ccedilla + ccircumflex + cdotaccent + e-cy + e-cy.hist + eiotifiedcyr + eiotifiedcyr.BGR + es-cy + estailcyr + estailcyr.BSH + estailcyr.CHU + koppacyr + reversedzecyr + sjekomicyr + uni1C83 + uniF475 + uniF527 + uniF539 + uniF876 + + public.kern1.comma1 + + comma + quotedblbase + quotesinglbase + + public.kern1.copyright1 + + copyright + registered + + public.kern1.dcaron + + dcaron + dcaron.ss01 + lcaron + + public.kern1.decyr1 + + chetailcyr + dchecyr + de-cy + de-cy.ss01 + dwe-cy + dzze-cy + elsharptailcyr + eltailcyr + emsharptailcyr + ensharptailcyr + entailcyr + ishortsharptailcyr + petailcyr + shcha-cy + shcha-cy.BGR + shhatailcyr + shwe-cy + tetsecyr + tse-cy + tse-cy.BGR + tswe-cy + uniF87C + + public.kern1.e.ss011 + + e.ss01 + eacute.ss01 + ebreve.ss01 + ecaron.ss01 + ecircumflex.ss01 + edieresis.ss01 + edotaccent.ss01 + egrave.ss01 + emacron.ss01 + eogonek.ss01 + oe.ss01 + + public.kern1.e1 + + ae + aeacute + aiecyr + cheabkhcyr + cheabkhtailcyr + e + e-cy.accented + eacute + ebreve + ecaron + ecircumflex + edieresis + edotaccent + egrave + emacron + eogonek + ie-cy + iebrevecyr + iegravecyr + iegravecyr.SRB + io-cy + io-cy.accented + uni1EBD + uniF511 + uniF513 + uniF515 + uniF834 + yaecyr + + public.kern1.el-cy.BGR + + el-cy.BGR + iotifieda-cy + iotifieda-cy.BGR + uni1C81 + yn-cy + yusClosedlittle-cy + yusiotifiedClosedLittle-cy + yuslittlecyr + yuslittleiotifiedcyr + + public.kern1.emdash1 + + emdash + endash + hyphen + + public.kern1.f1 + + f + f_f + + public.kern1.fi + + f_f_i + fi + + public.kern1.five1 + + five + five.tf + + public.kern1.four1 + + four + four.tf + + public.kern1.g.ss011 + + g.ss01 + gacute.ss01 + gbreve.ss01 + gcircumflex.ss01 + gcommaaccent.ss01 + gdotaccent.ss01 + + public.kern1.g1 + + g + gacute + gbreve + gcircumflex + gcommaaccent + gdotaccent + + public.kern1.gecyr + + deSoft-cy + elSoft-cy + emSoft-cy + engecyr + ge-cy + gehookstrokecyr + gestrokecyr + gestrokecyr.BSH + getailcyr + gheupturn-cy + gjecyr + + public.kern1.guillemotright1 + + guillemetright + guilsinglright + + public.kern1.hardcyr + + Tjekomicyr + djekomicyr + elmiddlehookcyr + enmiddlehookcyr + gehookcyr + hardsign-cy + hardsign-cy.BGR + hardsign-cy.ss01 + ljecyr + ljecyr.ss01 + ljekomicyr + njecyr + njecyr.ss01 + njekomicyr + pehookcyr + semisoftcyr + softsign-cy + softsign-cy.BGR + softsign-cy.ss01 + tewithmiddlehook-cy + tjekomicyr + uni1C86 + uni1C87 + uniF479 + yatIotified-cy + yatcyr + yatcyr.BGR + yerNeutral-cy + zjekomicyr + + public.kern1.i1 + + Djekomicyr + Ljekomicyr + Njekomicyr + Zjekomicyr + i + i-cy + iacute + icircumflex + igrave + imacron + iogonek + itilde + uniF476 + yi-cy.alt + + public.kern1.icyr1 + + cche-cy + che-cy + chedieresiscyr + chekhakascyr + chevertcyr + de-cy.BGR + el-cy + elhookcyr + em-cy + en-cy + enhookcyr + enhookleftcyr + ia-cy + ia-cy.accented + idieresiscyr + igravecyr + ii-cy + ii-cy.accented + iishort-cy + imacroncyr + mu + pe-cy + psicyr + q + qacyr + sha-cy + sha-cy.BGR + tche-cy + tseReversed-cy + ubreve + uni1C85 + uniF4C7 + uniF4D9 + uniF521 + uniF529 + uniF52B + uniF533 + uniF537 + uniF873 + uniF87F + utilde + yeru-cy + yeru-cy.accented + yeru-cy.ss01 + yeruBackyer-cy + ylongdieresiscyr + yuReversed-cy + + public.kern1.j1 + + ij + j + jcircumflex + jdotless + + public.kern1.k + + k + ka-cy + ka-cy.BGR + kaaleutcyr + kabashkcyr + kastrokecyr + kcommaaccent + kgreenlandic + kjecyr + uniF870 + + public.kern1.l + + f_f_l + fl + l + lacute + lcommaaccent + + public.kern1.l.ss011 + + Iota-cy + iota-cy + l.ss01 + lacute.ss01 + lcommaaccent.ss01 + + public.kern1.n + + Djecyr + Elmiddlehookcyr + Enmiddlehookcyr + Gehookcyr + Hwe-cy + Kahookcyr + Pehookcyr + Shhatailcyr + TeWithMiddleHook-cy + Tshecyr + a-cy.accented + a-cy.ss01 + a.ss01 + aacute.ss01 + abreve.ss01 + abrevecyr + acircumflex.ss01 + adieresis.ss01 + adieresiscyr + agrave.ss01 + aogonek.ss01 + aring.ss01 + atilde.ss01 + djecyr + el-cy.ss01 + h + hbar + hcircumflex + hwe-cy + ia-cy.ss01 + iotifieda-cy.hist + m + n + nacute + napostrophe + ncaron + ncommaaccent + ntilde + pe-cy.BGR + q.ss01 + shhacyr + te-cy.BGR + tshecyr + uniF49E + uniF49F + uniF50F + uniF831 + + public.kern1.numero + + numero + numero.ss01 + + public.kern1.o1 + + b + b.ss01 + be-cy.SRB + crossedo-cy + ef-cy + er-cy + er-cy.ss01 + ereversed-cy + ereversed-cy.accented + ereverseddieresiscyr + ertickcyr + eturned + fitacyr + iu-cy + iu-cy.BGR + iu-cy.accented + o + o-cy + o-cy.accented + oBinocular-cy + oDoubleMonocular-cy + oMonocular-cy + oacute + obarcyr + obardieresiscyr + obreve + ocircumflex + odieresis + odieresiscyr + ograve + ohungarumlaut + omacron + omegaBroad-cy + omegaroundcyr + omegatitlocyr + oslashacute + otilde + p + p.ss01 + schwacyr + schwadieresiscyr + thorn + uni1C82 + uniF499 + uniF49D + uniF4D3 + uniF4D5 + uniF4D7 + uniF519 + uniF51B + uniF51D + uniF51F + uniF523 + uniF525 + uniF52D + uniF52F + uniF83A + + public.kern1.period1 + + ellipsis + period + + public.kern1.quotedbl1 + + quotedbl + quotesingle + + public.kern1.quoteleft1 + + quotedblleft + quoteleft + + public.kern1.quoteright1 + + apostrophemod + minute + quotedblright + quoteright + second + + public.kern1.s1 + + dzwe-cy + s + sacute + scaron + scedilla + scircumflex + scommaaccent + + public.kern1.t.ss011 + + t.ss01 + tcedilla.ss01 + tcommaaccent.ss01 + + public.kern1.t1 + + t + tcaron + tcedilla + tcommaaccent + + public.kern1.te-cy + + te-cy + tetailcyr + tsse-cy + twe-cy + + public.kern1.u1 + + igravecyr.SRB + ii-cy.BGR + iishort-cy.BGR + pe-cy.SRB + te-cy.SRB + u + uacute + ucircumflex + udieresis + ugrave + uhungarumlaut + umacron + uogonek + uring + + public.kern1.uni0435.ss011 + + ie-cy.ss01 + io-cy.ss01 + + public.kern1.v + + izhitsacyr + izhitsagravedblcyr + v + + public.kern1.w1 + + omegacyr + otcyr + w + wacute + wcircumflex + wdieresis + wecyr + wgrave + + public.kern1.x + + ha-cy + hahookcyr + lhacyr + rhacyr + uniF879 + x + + public.kern1.y1 + + Ukcyr + u-cy + u-cy.accented + uacutedblcyr + udieresiscyr + ukcyr + umacroncyr + uniF43B + uniF4CD + ushort-cy + ustraightcyr + ustraightstrokecyr + y + yacute + ycircumflex + ydieresis + + public.kern1.z1 + + dzelo-cy + z + zacute + zcaron + zdotaccent + zemlya-cy + + public.kern1.ze-cy + + dzeabkhcyr + ksicyr + uniF517 + ze-cy + ze-cy.BGR + zedieresiscyr + zetailcyr + zetailcyr.BSH + + public.kern1.zhe-cy + + dzzhecyr + katailcyr + kaverticalstrokecyr + xatailcyr + yusBlended-cy + yusbigcyr + yusbigiotifiedcyr + yusbigiotifiedcyr.BGR + zhe-cy + zhe-cy.BGR + zhebrevecyr + zhedieresiscyr + zhetailcyr + zhwe-cy + + public.kern2.A.ss01 + + A.ss01 + AE.ss01 + Aacute.ss01 + Acircumflex.ss01 + Adieresis.ss01 + Agrave.ss01 + Amacron.ss01 + Aogonek.ss01 + Atilde.ss01 + + public.kern2.A.ss012 + + A-cy.ss01 + Abreve.ss01 + Aring.ss01 + + public.kern2.A2 + + A + A-cy + A-cy.accented + AE + AEacute + Aacute + Abreve + Abrevecyr + Acaron + Acircumflex + Adieresis + Adieresiscyr + Agrave + Aiecyr + Amacron + Aogonek + Aring + Atilde + De-cy.BGR + Delta + El-cy.BGR + Yn-cy + YusClosedlittle-cy + Yuslittlecyr + uniF50E + uniF830 + + public.kern2.B + + B + D + Dcaron + E + Eacute + Ecaron + Ecircumflex + Edieresis + Edotaccent + Egrave + Emacron + Eogonek + F + H + Hbar + Hcircumflex + I + Iacute + Ibreve + Icircumflex + Idieresis + Idotaccent + Igrave + Imacron + Iogonek + Itilde + K + K.ss01 + Kcommaaccent + Kcommaaccent.ss01 + L + Lacute + Lcaron + Lcommaaccent + Ldot + M + N + N.ss01 + Nacute + Nacute.ss01 + Ncaron + Ncaron.ss01 + Ncommaaccent + Ncommaaccent.ss01 + Ntilde + Ntilde.ss01 + P + R + Racute + Rcaron + Rcommaaccent + Thorn + uni1EBC + + public.kern2.Che-cy + + Cche-cy + Che-cy + Chedieresiscyr + Chekhakascyr + Chetailcyr + Chevertcyr + uniF4C6 + uniF87E + + public.kern2.De-cy + + Dchecyr + De-cy + DeSoft-cy + Dwe-cy + Dzze-cy + Dzzhecyr + TseReversed-cy + + public.kern2.El-cy + + El-cy + ElSoft-cy + Elhookcyr + Elmiddlehookcyr + Elsharptailcyr + Eltailcyr + Lhacyr + Ljekomicyr + uniF872 + + public.kern2.Eth + + Dcroat + Eth + Gestrokecyr + + public.kern2.G + + C + Cacute + Ccaron + Ccedilla + Ccircumflex + Cdotaccent + CrossedO-cy + DoubleO-cy + E-cy + Ef-cy.BGR + Es-cy + Estailcyr + Estailcyr.BSH + Estailcyr.CHU + Fitacyr + G + G.ss01 + Gacute + Gacute.ss01 + Gbreve + Gbreve.ss01 + Gcircumflex + Gcircumflex.ss01 + Gcommaaccent + Gcommaaccent.ss01 + Gdotaccent + Gdotaccent.ss01 + Haabkhcyr + Koppacyr + O + O-cy + O-cy.accented + OBinocular-cy + ODoubleMonocular-cy + OE + OMonocular-cy + Oacute + Obarcyr + Obardieresiscyr + Obreve + Ocircumflex + Odieresis + Odieresiscyr + Ograve + Ohungarumlaut + Omacron + Omegaroundcyr + Oslash + Otilde + Q + Q.ss01 + Qacyr + Schwacyr + Schwadieresiscyr + Sjekomicyr + Ukcyr + YuReversed-cy + uniF45D + uniF49A + uniF49C + uniF4D2 + uniF518 + uniF51A + uniF51C + uniF51E + uniF526 + uniF839 + uniF875 + + public.kern2.Gecyr + + Be-cy + E-cy.accented + Eiotifiedcyr + Em-cy + EmSoft-cy + Emsharptailcyr + En-cy + Engecyr + Enhookcyr + Enhookleftcyr + Enmiddlehookcyr + Ensharptailcyr + Entailcyr + Er-cy + Ertickcyr + Gehookcyr + Gestrokecyr.BSH + Getailcyr + Gheupturn-cy + Gjecyr + Hwe-cy + I-cy + Iebrevecyr + Ii-cy + Ii-cy.accented + Io-cy.accented + IotifiedA-cy + Iu-cy.accented + Ka-cy + Kaaleutcyr + Kahookcyr + Katailcyr + Kaverticalstrokecyr + Kjecyr + Njekomicyr + Palochkacyr + Pe-cy + Pehookcyr + Petailcyr + Rhacyr + Shhacyr + Shhatailcyr + Shwe-cy + Tswe-cy + Ve-cy + Yeru-cy.accented + Yeru-cymacron + Yi-cy + Ylongdieresiscyr + Yusbigiotifiedcyr + YusiotifiedClosedLittle-cy + Yuslittleiotifiedcyr + palochkacyr + uniF45E + uniF45F + uniF498 + uniF4D4 + uniF510 + uniF512 + uniF514 + uniF52C + uniF52E + uniF532 + uniF536 + uniF833 + uniF86F + uniF87B + + public.kern2.Ia-cy + + Ia-cy + Ia-cy.accented + Yaecyr + uniF4D8 + uniF528 + uniF52A + + public.kern2.Iishort-cy + + Idieresiscyr + Iishort-cy + Imacroncyr + Ishortsharptailcyr + + public.kern2.J + + J + Jcircumflex + Jecyr + + public.kern2.Oslash.alt + + Ha-cy.ss01 + Hahookcyr + X + X.ss01 + Xatailcyr + uniF878 + + public.kern2.S + + Dzwe-cy + S + Sacute + Scaron + Scedilla + Scircumflex + Scommaaccent + + public.kern2.T + + Djecyr + T + Tcaron + Tcedilla + Tche-cy + Tcommaaccent + Te-cy + TeWithMiddleHook-cy + Tetailcyr + Tetsecyr + Tjekomicyr + Tshecyr + Tsse-cy + Twe-cy + + public.kern2.U + + Iota-cy + OmegaBroad-cy + Omegacyr + Omegatitlocyr + Otcyr + Psicyr + U + Uacute + Ubreve + Ucircumflex + Udieresis + Ugrave + Uhungarumlaut + Umacron + Uogonek + Uring + Utilde + + public.kern2.Ucyr.ss01 + + U-cy.accented + U-cy.ss01 + Uacutedblcyr + Udieresiscyr + Umacroncyr + Ushort-cy.ss01 + uniF4CC + + public.kern2.V + + Izhitsacyr + Izhitsagravedblcyr + V + V.ss01 + + public.kern2.W + + W + W.ss01 + Wacute + Wacute.ss01 + Wcircumflex + Wcircumflex.ss01 + Wdieresis + Wdieresis.ss01 + Wecyr + Wgrave + Wgrave.ss01 + + public.kern2.Y + + Ustraightcyr + Ustraightstrokecyr + Y + Y.ss01 + Yacute + Yacute.ss01 + Ycircumflex + Ycircumflex.ss01 + Ydieresis + Ydieresis.ss01 + uniF43A + + public.kern2.Z + + Dzelo-cy + Z + Z.ss01 + Zacute + Zacute.ss01 + Zcaron + Zcaron.ss01 + Zdotaccent + Zdotaccent.ss01 + Zemlya-cy + + public.kern2.Ze-cy1 + + Dzeabkhcyr + Ksicyr + Ze-cy + Zedieresiscyr + Zetailcyr + Zetailcyr.BSH + Zhwe-cy + uniF516 + + public.kern2.Zhe-cy1 + + YusBlended-cy + Yusbigcyr + Zhe-cy + Zhebrevecyr + Zhedieresiscyr + Zhetailcyr + + public.kern2.a + + a + a-cy + a-cy.accented + aacute + abreve + abrevecyr + acaron + acircumflex + adieresis + adieresiscyr + ae + aeacute + agrave + aiecyr + amacron + aogonek + aring + atilde + uniF50F + uniF831 + + public.kern2.acute.case + + acute.case + hungarumlaut.case + + public.kern2.che-cy + + cche-cy + che-cy + chedieresiscyr + chekhakascyr + chetailcyr + chevertcyr + uniF4C7 + uniF87F + + public.kern2.comma + + comma + quotedblbase + quotesinglbase + + public.kern2.copyright + + copyright + registered + + public.kern2.decyr.ss01 + + de-cy.ss01 + deSoft-cy + dwe-cy + dzze-cy + dzzhecyr + tseReversed-cy + + public.kern2.el-cy + + el-cy + el-cy.ss01 + elSoft-cy + elhookcyr + elmiddlehookcyr + elsharptailcyr + eltailcyr + lhacyr + ljecyr.ss01 + ljekomicyr + uniF873 + + public.kern2.el-cy.BGR1 + + el-cy.BGR + uni1C81 + yn-cy + yusClosedlittle-cy + yuslittlecyr + + public.kern2.emdash + + emdash + endash + hyphen + + public.kern2.f + + f + f_f + f_f_i + f_f_l + fi + fl + gestrokecyr + + public.kern2.f_f.ss01 + + f_f.ss01 + f_f_i.ss01 + f_f_l.ss01 + + public.kern2.fi.ss01 + + fi.ss01 + fl.ss01 + + public.kern2.five + + five + five.tf + + public.kern2.four + + four + four.tf + + public.kern2.g + + g + gacute + gbreve + gcircumflex + gcommaaccent + gdotaccent + + public.kern2.g.ss01 + + g.ss01 + gacute.ss01 + gbreve.ss01 + gcircumflex.ss01 + gcommaaccent.ss01 + gdotaccent.ss01 + + public.kern2.guillemotleft + + guillemetleft + guilsinglleft + + public.kern2.guillemotright + + guillemetright + guilsinglright + + public.kern2.h + + eiotifiedcyr.BGR + h + hcircumflex + hwe-cy + iotifieda-cy.BGR + iu-cy.BGR + k + ka-cy.BGR + kcommaaccent + l + lacute + lcaron + lcommaaccent + ldot + shhacyr + shhatailcyr + ve-cy.BGR + yatcyr.BGR + yusbigiotifiedcyr.BGR + + public.kern2.i1 + + i + i-cy + iacute + icircumflex + igrave + imacron + iogonek + itilde + uniF476 + yi-cy.alt + + public.kern2.ia-cy + + ia-cy + ia-cy.accented + ia-cy.ss01 + uniF4D9 + uniF529 + uniF52B + yaecyr + + public.kern2.j + + enhookleftcyr + j + jcircumflex + jdotless + + public.kern2.l.ss01 + + l.ss01 + lacute.ss01 + lcaron.ss01 + lcommaaccent.ss01 + ldot.ss01 + + public.kern2.m + + eiotifiedcyr + em-cy + emSoft-cy + emsharptailcyr + en-cy + eng + engecyr + enhookcyr + enmiddlehookcyr + ensharptailcyr + entailcyr + er-cy + er-cy.ss01 + ertickcyr + ge-cy + gehookcyr + gehookstrokecyr + gestrokecyr.BSH + getailcyr + gheupturn-cy + gjecyr + idieresiscyr + idotless + igravecyr + ii-cy + ii-cy.accented + iishort-cy + imacroncyr + iotifieda-cy + ishortsharptailcyr + iu-cy + iu-cy.accented + ka-cy + kaaleutcyr + kahookcyr + katailcyr + kaverticalstrokecyr + kgreenlandic + kjecyr + m + mu + n + nacute + ncaron + ncommaaccent + njecyr.ss01 + njekomicyr + ntilde + p + p.ss01 + pe-cy + pe-cy.BGR + pehookcyr + petailcyr + psicyr + r + racute + rcaron + rcommaaccent + rhacyr + sha-cy + shcha-cy + shwe-cy + softsign-cy + softsign-cy.BGR + softsign-cy.ss01 + te-cy.BGR + tse-cy + tswe-cy + uni1C85 + uniF499 + uniF4D5 + uniF521 + uniF52D + uniF52F + uniF533 + uniF537 + uniF870 + uniF87C + ve-cy + ve-cy.ss01 + yatIotified-cy + yeru-cy + yeru-cy.accented + yeru-cy.ss01 + ylongdieresiscyr + yusbigiotifiedcyr + yusiotifiedClosedLittle-cy + yuslittleiotifiedcyr + + public.kern2.o + + Dekomicyr + Djekomicyr + a-cy.ss01 + a.ss01 + aacute.ss01 + abreve.ss01 + acircumflex.ss01 + adieresis.ss01 + agrave.ss01 + amacron.ss01 + aogonek.ss01 + aring.ss01 + atilde.ss01 + c + cacute + ccaron + ccedilla + ccircumflex + cdotaccent + cent + crossedo-cy + d + d.ss01 + dcaron + dcaron.ss01 + dcroat + dcroat.ss01 + de-cy.BGR + dekomicyr + djekomicyr + e + e-cy + e-cy.accented + e-cy.hist + e.ss01 + eacute + eacute.ss01 + ebreve + ebreve.ss01 + ecaron + ecaron.ss01 + ecircumflex + ecircumflex.ss01 + edieresis + edieresis.ss01 + edotaccent + edotaccent.ss01 + ef-cy + egrave + egrave.ss01 + emacron + emacron.ss01 + eogonek + eogonek.ss01 + es-cy + estailcyr + estailcyr.BSH + estailcyr.CHU + eth + eturned + fitacyr + haabkhcyr + ie-cy + ie-cy.ss01 + iebrevecyr + iegravecyr + iegravecyr.SRB + io-cy + io-cy.accented + io-cy.ss01 + koppacyr + o + o-cy + o-cy.accented + oBinocular-cy + oDoubleMonocular-cy + oMonocular-cy + oacute + obarcyr + obardieresiscyr + obreve + ocircumflex + odieresis + odieresiscyr + oe.ss01 + ograve + ohungarumlaut + omacron + omegaBroad-cy + omegaroundcyr + omegatitlocyr + oslashacute + otilde + q + q.ss01 + qacyr + schwacyr + schwadieresiscyr + sjekomicyr + ukcyr + uni1C82 + uni1C83 + uni1EBD + uniF475 + uniF49D + uniF4D3 + uniF511 + uniF513 + uniF515 + uniF519 + uniF51B + uniF51D + uniF51F + uniF527 + uniF834 + uniF83A + uniF876 + yuReversed-cy + + public.kern2.percent + + percent + perthousand + + public.kern2.period + + ellipsis + period + + public.kern2.quotedbl + + quotedbl + quotesingle + + public.kern2.quoteleft + + quotedblleft + quoteleft + + public.kern2.quoteright + + apostrophemod + minute + quotedblright + quoteright + second + + public.kern2.s + + dzwe-cy + s + sacute + scaron + scedilla + scircumflex + scommaaccent + + public.kern2.t + + t + t.ss01 + tbar.ss01 + tcaron + tcaron.ss01 + tcedilla + tcedilla.ss01 + tcommaaccent + tcommaaccent.ss01 + + public.kern2.tecyr + + tche-cy + te-cy.ss01 + tetailcyr + tetsecyr + tewithmiddlehook-cy + tjekomicyr + tsse-cy + twe-cy + + public.kern2.u + + igravecyr.SRB + ii-cy.BGR + iishort-cy.BGR + iota-cy + pe-cy.SRB + sha-cy.BGR + shcha-cy.BGR + te-cy.SRB + tse-cy.BGR + u + uacute + ubreve + ucircumflex + udieresis + ugrave + uhungarumlaut + umacron + uogonek + uring + utilde + + public.kern2.v1 + + izhitsacyr + izhitsagravedblcyr + v + + public.kern2.w + + omegacyr + otcyr + w + wacute + wcircumflex + wdieresis + wecyr + wgrave + + public.kern2.x + + ha-cy + hahookcyr + uniF879 + x + + public.kern2.y + + u-cy + u-cy.accented + uacutedblcyr + udieresiscyr + umacroncyr + uniF43B + uniF4CD + ustraightcyr + ustraightstrokecyr + y + yacute + ycircumflex + ydieresis + + public.kern2.z + + dzelo-cy + z + zacute + zcaron + zdotaccent + zemlya-cy + + public.kern2.ze-cy1 + + dzeabkhcyr + ksicyr + uniF517 + ze-cy + ze-cy.BGR + zedieresiscyr + zetailcyr + zetailcyr.BSH + zhwe-cy + + public.kern2.zero + + uni1C80 + zero + zero.tf + + public.kern2.zhe-cy1 + + xatailcyr + yusBlended-cy + yusbigcyr + zhe-cy + zhe-cy.BGR + zhebrevecyr + zhedieresiscyr + zhetailcyr + + ss01 + + A-cy.ss01 + A.ss01 + AE.ss01 + Aacute.ss01 + Abreve.ss01 + Acircumflex.ss01 + Adieresis.ss01 + Agrave.ss01 + Amacron.ss01 + Aogonek.ss01 + Aring.ss01 + Atilde.ss01 + Em-cy.ss01 + Eng.ss01 + G.ss01 + Gacute.ss01 + Gbreve.ss01 + Gcircumflex.ss01 + Gcommaaccent.ss01 + Gdotaccent.ss01 + Ha-cy.ss01 + Ia-cy.ss01 + J.ss01 + Jcircumflex.ss01 + K.ss01 + Ka-cy.ss01 + Kcommaaccent.ss01 + M.ss01 + N.ss01 + Nacute.ss01 + Ncaron.ss01 + Ncommaaccent.ss01 + Ntilde.ss01 + Q.ss01 + U-cy.ss01 + Ushort-cy.ss01 + V.ss01 + W.ss01 + Wacute.ss01 + Wcircumflex.ss01 + Wdieresis.ss01 + Wgrave.ss01 + X.ss01 + Y.ss01 + Yacute.ss01 + Ycircumflex.ss01 + Ydieresis.ss01 + Z.ss01 + Zacute.ss01 + Zcaron.ss01 + Zdotaccent.ss01 + Zhe-cy.ss01 + a-cy.ss01 + a.ss01 + aacute.ss01 + abreve.ss01 + acircumflex.ss01 + adieresis.ss01 + ae.ss01 + agrave.ss01 + amacron.ss01 + aogonek.ss01 + aring.ss01 + arrowdown.ss01 + arrowdown.ss01.case + arrowleft.ss01 + arrowleft.ss01.case + arrowright.ss01 + arrowright.ss01.case + arrowup.ss01 + arrowup.ss01.case + atilde.ss01 + b.ss01 + d.ss01 + dcaron.ss01 + dcroat.ss01 + de-cy.ss01 + e.ss01 + eacute.ss01 + ebreve.ss01 + ecaron.ss01 + ecircumflex.ss01 + edieresis.ss01 + edotaccent.ss01 + egrave.ss01 + el-cy.ss01 + emacron.ss01 + eogonek.ss01 + er-cy.ss01 + f.ss01 + f_f.ss01 + f_f_i.ss01 + f_f_l.ss01 + fi.ss01 + fl.ss01 + g.ss01 + gacute.ss01 + gbreve.ss01 + gcircumflex.ss01 + gcommaaccent.ss01 + gdotaccent.ss01 + germandbls.ss01 + hardsign-cy.ss01 + ia-cy.ss01 + ie-cy.ss01 + io-cy.ss01 + l.ss01 + lacute.ss01 + lcaron.ss01 + lcommaaccent.ss01 + ldot.ss01 + ljecyr.ss01 + lslash.ss01 + njecyr.ss01 + numero.ss01 + oe.ss01 + p.ss01 + q.ss01 + softsign-cy.ss01 + t.ss01 + tbar.ss01 + tcaron.ss01 + tcedilla.ss01 + tcommaaccent.ss01 + te-cy.ss01 + ve-cy.ss01 + yen.ss01 + yeru-cy.ss01 + + ss01_def + + A-cy + A + AE + Aacute + Abreve + Acircumflex + Adieresis + Agrave + Amacron + Aogonek + Aring + Atilde + Em-cy + Eng + G + Gacute + Gbreve + Gcircumflex + Gcommaaccent + Gdotaccent + Ha-cy + Ia-cy + J + Jcircumflex + K + Ka-cy + Kcommaaccent + M + N + Nacute + Ncaron + Ncommaaccent + Ntilde + Q + U-cy + Ushort-cy + V + W + Wacute + Wcircumflex + Wdieresis + Wgrave + X + Y + Yacute + Ycircumflex + Ydieresis + Z + Zacute + Zcaron + Zdotaccent + Zhe-cy + a-cy + a + aacute + abreve + acircumflex + adieresis + ae + agrave + amacron + aogonek + aring + arrowdown + arrowdown.case + arrowleft + arrowleft.case + arrowright + arrowright.case + arrowup + arrowup.case + atilde + b + d + dcaron + dcroat + de-cy + e + eacute + ebreve + ecaron + ecircumflex + edieresis + edotaccent + egrave + el-cy + emacron + eogonek + er-cy + f + f_f + f_f_i + f_f_l + fi + fl + g + gacute + gbreve + gcircumflex + gcommaaccent + gdotaccent + germandbls + hardsign-cy + ia-cy + ie-cy + io-cy + l + lacute + lcaron + lcommaaccent + ldot + ljecyr + lslash + njecyr + numero + oe + p + q + softsign-cy + t + tbar + tcaron + tcedilla + tcommaaccent + te-cy + ve-cy + yen + yeru-cy + + + diff --git a/sources/FixelDisplay-Black.ufo/kerning.plist b/sources/FixelDisplay-Black.ufo/kerning.plist new file mode 100644 index 00000000..ad7dd740 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/kerning.plist @@ -0,0 +1,2395 @@ + + + + + Zhe-cy + + public.kern2.G + -40 + + space + + public.kern2.Y + -120 + + uni1C82 + + public.kern2.y + -50 + + public.kern1.A.ss012 + + public.kern2.A.ss01 + 20 + public.kern2.A.ss012 + 10 + public.kern2.G + -30 + public.kern2.T + -70 + public.kern2.U + -20 + public.kern2.Ucyr.ss01 + -60 + public.kern2.V + -60 + public.kern2.W + -50 + public.kern2.Y + -100 + public.kern2.a + -20 + public.kern2.comma + 10 + public.kern2.decyr.ss01 + 10 + public.kern2.emdash + -20 + public.kern2.l.ss01 + -20 + public.kern2.m + -10 + public.kern2.o + -20 + public.kern2.quotedbl + -70 + public.kern2.quoteright + -20 + public.kern2.t + -40 + public.kern2.tecyr + -50 + public.kern2.u + -10 + public.kern2.w + -20 + public.kern2.x + 10 + public.kern2.y + -50 + + public.kern1.A2 + + public.kern2.A2 + 40 + public.kern2.G + -30 + public.kern2.J + 30 + public.kern2.Oslash.alt + 20 + public.kern2.S + 15 + public.kern2.T + -70 + public.kern2.U + -20 + public.kern2.Ucyr.ss01 + -50 + public.kern2.V + -54 + public.kern2.W + -55 + public.kern2.Y + -100 + public.kern2.Z + 30 + public.kern2.comma + 20 + public.kern2.decyr.ss01 + 20 + public.kern2.g + 20 + public.kern2.j + 10 + public.kern2.o + -10 + public.kern2.period + 40 + public.kern2.quotedbl + -50 + public.kern2.quoteright + -50 + public.kern2.t + -20 + public.kern2.tecyr + -30 + public.kern2.u + -10 + public.kern2.w + -20 + public.kern2.x + 10 + public.kern2.y + -30 + public.kern2.z + 10 + + public.kern1.C1 + + public.kern2.A.ss01 + 10 + public.kern2.A2 + -10 + public.kern2.B + -10 + public.kern2.G + -20 + public.kern2.J + 20 + public.kern2.Oslash.alt + -20 + public.kern2.S + 10 + public.kern2.U + -10 + public.kern2.Ucyr.ss01 + -10 + public.kern2.Y + -20 + public.kern2.Z + 10 + public.kern2.emdash + -20 + public.kern2.f + -10 + public.kern2.g + -20 + public.kern2.g.ss01 + -20 + public.kern2.j + 40 + public.kern2.o + -20 + public.kern2.quoteright + -20 + public.kern2.s + -10 + public.kern2.t + -10 + public.kern2.tecyr + -10 + public.kern2.u + -10 + public.kern2.w + -20 + public.kern2.x + -20 + public.kern2.y + -20 + + public.kern1.Decyr + + public.kern2.A.ss012 + 20 + public.kern2.A2 + 10 + public.kern2.G + -10 + public.kern2.T + -35 + public.kern2.Ucyr.ss01 + -30 + public.kern2.comma + 50 + public.kern2.decyr.ss01 + 40 + public.kern2.emdash + -20 + public.kern2.o + -10 + public.kern2.period + 30 + public.kern2.quoteright + -30 + public.kern2.tecyr + -30 + public.kern2.y + -20 + + public.kern1.E1 + + public.kern2.G + -10 + public.kern2.J + 10 + public.kern2.a + -10 + public.kern2.f + -20 + public.kern2.g.ss01 + -10 + public.kern2.i1 + 10 + public.kern2.o + -10 + public.kern2.quoteright + -10 + public.kern2.t + -10 + public.kern2.w + -20 + public.kern2.y + -20 + + public.kern1.G.ss01 + + public.kern2.A.ss01 + 10 + public.kern2.G + -30 + public.kern2.T + -20 + public.kern2.U + -30 + public.kern2.V + -50 + public.kern2.W + -40 + public.kern2.Y + -50 + public.kern2.Z + -10 + public.kern2.l.ss01 + -10 + public.kern2.o + -10 + public.kern2.quotedbl + -50 + public.kern2.quoteright + -40 + public.kern2.t + -10 + public.kern2.w + -30 + public.kern2.y + -30 + public.kern2.z + 10 + + public.kern1.G1 + + public.kern2.J + 20 + public.kern2.T + -10 + public.kern2.V + -30 + public.kern2.W + -20 + public.kern2.Y + -50 + public.kern2.period + 10 + public.kern2.quotedbl + -20 + public.kern2.quoteright + -10 + public.kern2.w + -10 + public.kern2.y + -20 + public.kern2.z + 10 + + public.kern1.Ge-cy + + public.kern2.A.ss012 + -70 + public.kern2.A2 + -70 + public.kern2.G + -20 + public.kern2.Gecyr + 20 + public.kern2.T + 10 + public.kern2.a + -100 + public.kern2.comma + -90 + public.kern2.decyr.ss01 + -40 + public.kern2.emdash + -80 + public.kern2.guillemotright + -30 + public.kern2.i1 + 50 + public.kern2.m + -30 + public.kern2.o + -80 + public.kern2.period + -120 + + public.kern1.H + + public.kern2.B + 1 + public.kern2.Gecyr + 1 + public.kern2.i1 + 20 + public.kern2.j + 46 + public.kern2.s + -10 + public.kern2.y + -10 + + public.kern1.Hardcyr + + public.kern2.A.ss012 + 20 + public.kern2.Oslash.alt + -20 + public.kern2.T + -90 + public.kern2.Ucyr.ss01 + -60 + public.kern2.emdash + 20 + public.kern2.quotedbl + -120 + public.kern2.tecyr + -20 + public.kern2.x + -30 + public.kern2.y + -30 + + public.kern1.J1 + + public.kern2.A.ss012 + 10 + public.kern2.A2 + -10 + public.kern2.J + 10 + public.kern2.S + 5 + public.kern2.W + 10 + public.kern2.comma + -30 + public.kern2.i1 + 10 + public.kern2.j + 10 + public.kern2.s + -10 + public.kern2.y + -10 + + public.kern1.K + + public.kern2.A.ss01 + 10 + public.kern2.A2 + 20 + public.kern2.G + -60 + public.kern2.J + 15 + public.kern2.S + -10 + public.kern2.a + -10 + public.kern2.comma + 10 + public.kern2.emdash + -50 + public.kern2.f + -30 + public.kern2.i1 + 40 + public.kern2.l.ss01 + -10 + public.kern2.o + -40 + public.kern2.quoteright + -40 + public.kern2.t + -40 + public.kern2.tecyr + -80 + public.kern2.u + -30 + public.kern2.w + -50 + public.kern2.y + -40 + + public.kern1.L + + public.kern2.A.ss01 + 20 + public.kern2.A2 + 25 + public.kern2.G + -30 + public.kern2.J + 20 + public.kern2.T + -100 + public.kern2.U + -20 + public.kern2.V + -100 + public.kern2.W + -50 + public.kern2.Y + -140 + public.kern2.Z + 10 + public.kern2.a + -10 + public.kern2.emdash + -20 + public.kern2.f + -20 + public.kern2.guillemotleft + -20 + public.kern2.guillemotright + 10 + public.kern2.j + 10 + public.kern2.o + -10 + public.kern2.period + 20 + public.kern2.quotedbl + -90 + public.kern2.quoteright + -90 + public.kern2.t + -30 + public.kern2.u + -10 + public.kern2.w + -50 + public.kern2.x + -10 + public.kern2.y + -80 + public.kern2.z + 10 + + public.kern1.O + + Zhe-cy + -40 + public.kern2.A.ss012 + -15 + public.kern2.A2 + -30 + public.kern2.J + -20 + public.kern2.Oslash.alt + -50 + public.kern2.S + -20 + public.kern2.T + -30 + public.kern2.Ucyr.ss01 + -40 + public.kern2.V + -40 + public.kern2.W + -20 + public.kern2.Y + -70 + public.kern2.Z + -35 + public.kern2.a + -10 + public.kern2.comma + -50 + public.kern2.decyr.ss01 + -10 + public.kern2.period + -30 + public.kern2.quotedbl + -21 + public.kern2.s + -10 + public.kern2.tecyr + 10 + public.kern2.w + -20 + public.kern2.x + -20 + public.kern2.y + -10 + public.kern2.z + -10 + + public.kern1.Oslash.alt + + public.kern2.A.ss01 + 15 + public.kern2.A.ss012 + 15 + public.kern2.A2 + 10 + public.kern2.G + -50 + public.kern2.J + 30 + public.kern2.S + -10 + public.kern2.Ucyr.ss01 + 15 + public.kern2.W + 15 + public.kern2.a + -10 + public.kern2.comma + 10 + public.kern2.decyr.ss01 + 10 + public.kern2.emdash + -30 + public.kern2.i1 + 40 + public.kern2.o + -30 + public.kern2.quoteright + -60 + public.kern2.t + -20 + public.kern2.tecyr + -50 + public.kern2.u + -10 + public.kern2.w + -20 + public.kern2.x + 10 + public.kern2.y + -30 + + public.kern1.P + + public.kern2.A.ss01 + -40 + public.kern2.A.ss012 + -40 + public.kern2.A2 + -53 + public.kern2.J + -55 + public.kern2.Oslash.alt + -50 + public.kern2.T + -5 + public.kern2.Ucyr.ss01 + -30 + public.kern2.V + -20 + public.kern2.Y + -30 + public.kern2.Z + -20 + public.kern2.a + -20 + public.kern2.comma + -100 + public.kern2.decyr.ss01 + -40 + public.kern2.emdash + -20 + public.kern2.fi.ss01 + 10 + public.kern2.g + -10 + public.kern2.g.ss01 + -10 + public.kern2.j + -10 + public.kern2.o + -20 + public.kern2.period + -150 + public.kern2.s + -10 + public.kern2.t + 20 + public.kern2.tecyr + 10 + + public.kern1.R + + public.kern2.G + -30 + public.kern2.S + -20 + public.kern2.T + -30 + public.kern2.U + -10 + public.kern2.V + -30 + public.kern2.W + -10 + public.kern2.Y + -50 + public.kern2.emdash + -30 + public.kern2.f + -10 + public.kern2.j + -10 + public.kern2.m + -10 + public.kern2.o + -40 + public.kern2.period + 10 + public.kern2.quotedbl + -30 + public.kern2.quoteright + -10 + public.kern2.s + -10 + public.kern2.t + -10 + public.kern2.u + -20 + public.kern2.w + -20 + public.kern2.y + -30 + + public.kern1.S1 + + public.kern2.A.ss01 + 20 + public.kern2.G + -10 + public.kern2.J + 20 + public.kern2.Oslash.alt + -20 + public.kern2.T + -30 + public.kern2.V + -20 + public.kern2.W + -20 + public.kern2.Y + -30 + public.kern2.emdash + 20 + public.kern2.f + -20 + public.kern2.i1 + 10 + public.kern2.j + -10 + public.kern2.quotedbl + -20 + public.kern2.quoteright + -10 + public.kern2.t + -10 + public.kern2.w + -15 + public.kern2.x + -20 + public.kern2.y + -25 + + public.kern1.T1 + + public.kern2.A.ss01 + -60 + public.kern2.A.ss012 + -60 + public.kern2.A2 + -70 + public.kern2.G + -30 + public.kern2.J + -60 + public.kern2.T + 20 + public.kern2.W + 10 + public.kern2.a + -60 + public.kern2.comma + -80 + public.kern2.decyr.ss01 + -60 + public.kern2.emdash + -90 + public.kern2.f + -10 + public.kern2.g + -70 + public.kern2.g.ss01 + -70 + public.kern2.guillemotleft + -70 + public.kern2.guillemotright + -60 + public.kern2.i1 + -20 + public.kern2.j + -20 + public.kern2.m + -20 + public.kern2.o + -80 + public.kern2.period + -110 + public.kern2.quotedbl + 30 + public.kern2.quoteright + -30 + public.kern2.s + -55 + public.kern2.tecyr + -20 + public.kern2.u + -20 + public.kern2.w + -20 + public.kern2.x + -10 + public.kern2.y + -10 + public.kern2.z + -20 + + public.kern1.U1 + + public.kern2.A2 + -20 + public.kern2.J + -10 + public.kern2.Z + -10 + public.kern2.comma + -30 + public.kern2.i1 + 10 + public.kern2.j + 15 + public.kern2.quoteright + -10 + public.kern2.z + -10 + + public.kern1.Ucyr1 + + public.kern2.A.ss012 + -60 + public.kern2.A2 + -70 + public.kern2.G + -40 + public.kern2.T + 10 + public.kern2.a + -50 + public.kern2.comma + -100 + public.kern2.decyr.ss01 + -50 + public.kern2.emdash + -60 + public.kern2.guillemotright + -60 + public.kern2.i1 + 60 + public.kern2.m + -40 + public.kern2.o + -60 + public.kern2.period + -110 + public.kern2.tecyr + -10 + public.kern2.x + -20 + public.kern2.y + -30 + + public.kern1.V + + public.kern2.A.ss01 + -60 + public.kern2.A.ss012 + -60 + public.kern2.A2 + -65 + public.kern2.G + -40 + public.kern2.J + -80 + public.kern2.S + -10 + public.kern2.W + 20 + public.kern2.Z + -10 + public.kern2.a + -50 + public.kern2.comma + -70 + public.kern2.emdash + -60 + public.kern2.g + -30 + public.kern2.g.ss01 + -60 + public.kern2.guillemotleft + -40 + public.kern2.guillemotright + -30 + public.kern2.i1 + 50 + public.kern2.j + -10 + public.kern2.m + -50 + public.kern2.o + -65 + public.kern2.period + -110 + public.kern2.quotedbl + 20 + public.kern2.quoteright + -10 + public.kern2.s + -40 + public.kern2.t + -10 + public.kern2.u + -50 + public.kern2.w + -20 + public.kern2.x + -20 + public.kern2.y + -20 + public.kern2.z + -20 + + public.kern1.W.ss011 + + public.kern2.A.ss01 + -40 + public.kern2.A.ss012 + -40 + public.kern2.A2 + -120 + public.kern2.G + -20 + public.kern2.J + -50 + public.kern2.S + -10 + public.kern2.T + 10 + public.kern2.V + 10 + public.kern2.W + 20 + public.kern2.Y + 20 + public.kern2.Z + -10 + public.kern2.a + -50 + public.kern2.comma + -60 + public.kern2.emdash + -30 + public.kern2.g + -20 + public.kern2.g.ss01 + -40 + public.kern2.guillemotright + -10 + public.kern2.i1 + 70 + public.kern2.m + -20 + public.kern2.o + -30 + public.kern2.period + -90 + public.kern2.quotedbl + 20 + public.kern2.s + -30 + public.kern2.u + -30 + public.kern2.w + -20 + public.kern2.z + -20 + + public.kern1.W1 + + public.kern2.A.ss01 + -40 + public.kern2.A.ss012 + -40 + public.kern2.A2 + -55 + public.kern2.G + -20 + public.kern2.J + -50 + public.kern2.S + -10 + public.kern2.V + 10 + public.kern2.Y + 10 + public.kern2.Z + -10 + public.kern2.a + -50 + public.kern2.comma + -40 + public.kern2.emdash + -20 + public.kern2.g + -20 + public.kern2.guillemotleft + -20 + public.kern2.guillemotright + -10 + public.kern2.i1 + -10 + public.kern2.m + -20 + public.kern2.o + -40 + public.kern2.period + -70 + public.kern2.quotedbl + 20 + public.kern2.quoteright + -10 + public.kern2.s + -20 + public.kern2.u + -30 + public.kern2.w + -10 + public.kern2.y + -10 + public.kern2.z + -30 + + public.kern1.Y.ss011 + + public.kern2.A.ss01 + -90 + public.kern2.A.ss012 + -100 + public.kern2.G + -60 + public.kern2.S + -10 + public.kern2.W + 15 + public.kern2.Y + 30 + public.kern2.Z + -20 + public.kern2.a + -50 + public.kern2.comma + -130 + public.kern2.emdash + -120 + public.kern2.g.ss01 + -110 + public.kern2.i1 + 60 + public.kern2.m + -70 + public.kern2.o + -120 + public.kern2.period + -150 + public.kern2.quoteright + -20 + public.kern2.s + -80 + public.kern2.t + -30 + public.kern2.u + -60 + public.kern2.w + -40 + public.kern2.x + -40 + public.kern2.y + -30 + public.kern2.z + -40 + + public.kern1.Y1 + + public.kern2.A.ss012 + -110 + public.kern2.A2 + -100 + public.kern2.B + -10 + public.kern2.G + -70 + public.kern2.J + -70 + public.kern2.S + -40 + public.kern2.T + 10 + public.kern2.V + 25 + public.kern2.W + 10 + public.kern2.Y + 31 + public.kern2.a + -80 + public.kern2.comma + -100 + public.kern2.emdash + -120 + public.kern2.f + -30 + public.kern2.g + -80 + public.kern2.guillemotleft + -100 + public.kern2.guillemotright + -70 + public.kern2.i1 + 60 + public.kern2.m + -80 + public.kern2.o + -110 + public.kern2.period + -160 + public.kern2.quotedbl + 30 + public.kern2.quoteright + -40 + public.kern2.s + -90 + public.kern2.t + -20 + public.kern2.u + -70 + public.kern2.w + -60 + public.kern2.x + -50 + public.kern2.y + -50 + public.kern2.z + -50 + + public.kern1.Yacyr + + public.kern2.A.ss012 + 10 + public.kern2.B + 1 + public.kern2.Gecyr + 1 + public.kern2.i1 + 10 + + public.kern1.Z1 + + public.kern2.A.ss01 + 40 + public.kern2.A.ss012 + 30 + public.kern2.A2 + 10 + public.kern2.B + 10 + public.kern2.G + -35 + public.kern2.J + 30 + public.kern2.Oslash.alt + -10 + public.kern2.S + 20 + public.kern2.V + 10 + public.kern2.Z + 20 + public.kern2.a + 10 + public.kern2.comma + 30 + public.kern2.emdash + -20 + public.kern2.i1 + 40 + public.kern2.j + 20 + public.kern2.o + -10 + public.kern2.period + 30 + public.kern2.quotedbl + 10 + public.kern2.quoteright + -30 + public.kern2.s + 10 + public.kern2.t + -10 + public.kern2.w + -20 + public.kern2.y + -10 + public.kern2.z + 30 + + public.kern1.a1 + + public.kern2.A.ss012 + 20 + public.kern2.J + 10 + public.kern2.T + -70 + public.kern2.U + -10 + public.kern2.V + -64 + public.kern2.W + -40 + public.kern2.Y + -100 + public.kern2.f + -6 + public.kern2.quotedbl + -27 + public.kern2.quoteright + -20 + public.kern2.t + -10 + public.kern2.u + -10 + public.kern2.w + -30 + public.kern2.y + -20 + public.kern2.z + 15 + + public.kern1.c1 + + public.kern2.A.ss012 + 20 + public.kern2.A2 + 10 + public.kern2.J + 20 + public.kern2.Oslash.alt + -10 + public.kern2.T + -50 + public.kern2.Ucyr.ss01 + -30 + public.kern2.V + -40 + public.kern2.W + -20 + public.kern2.Y + -50 + public.kern2.Z + 10 + public.kern2.a + 10 + public.kern2.emdash + -30 + public.kern2.o + -10 + public.kern2.period + 10 + public.kern2.quotedbl + -10 + public.kern2.t + 10 + + public.kern1.comma1 + + public.kern2.A.ss01 + 10 + public.kern2.A2 + 10 + public.kern2.G + -20 + public.kern2.J + 30 + public.kern2.T + -80 + public.kern2.V + -70 + public.kern2.W + -40 + public.kern2.Y + -110 + public.kern2.Z + 30 + public.kern2.f + -20 + public.kern2.g.ss01 + 10 + public.kern2.j + 10 + public.kern2.t + -30 + public.kern2.w + -10 + public.kern2.y + -40 + public.kern2.z + 10 + + public.kern1.dcaron + + public.kern2.B + 110 + public.kern2.G + 30 + public.kern2.J + 10 + public.kern2.Oslash.alt + 140 + public.kern2.S + 100 + public.kern2.T + 140 + public.kern2.U + 120 + public.kern2.V + 140 + public.kern2.W + 150 + public.kern2.Y + 170 + public.kern2.Z + 130 + public.kern2.a + 30 + public.kern2.f + 1 + public.kern2.fi.ss01 + 100 + public.kern2.g + 20 + public.kern2.g.ss01 + 20 + public.kern2.h + 120 + public.kern2.i1 + 120 + public.kern2.j + 110 + public.kern2.l.ss01 + 120 + public.kern2.m + 30 + public.kern2.o + 20 + public.kern2.s + 30 + public.kern2.t + 80 + public.kern2.u + 30 + public.kern2.w + 30 + public.kern2.x + 30 + public.kern2.y + 30 + public.kern2.z + 100 + + public.kern1.decyr1 + + public.kern2.A.ss012 + 30 + public.kern2.A2 + 20 + public.kern2.G + -20 + public.kern2.Oslash.alt + 10 + public.kern2.T + -50 + public.kern2.Ucyr.ss01 + -20 + public.kern2.comma + 30 + public.kern2.decyr.ss01 + 20 + public.kern2.emdash + -20 + public.kern2.o + -10 + public.kern2.period + 20 + public.kern2.quoteright + -30 + public.kern2.tecyr + -30 + public.kern2.x + 10 + public.kern2.y + -10 + + public.kern1.e.ss011 + + public.kern2.Oslash.alt + -10 + public.kern2.T + -80 + public.kern2.V + -50 + public.kern2.W + -30 + public.kern2.Y + -100 + public.kern2.o + -10 + public.kern2.quotedbl + -20 + public.kern2.w + -20 + public.kern2.y + -20 + + public.kern1.e1 + + public.kern2.A.ss012 + 20 + public.kern2.G + 10 + public.kern2.Oslash.alt + -20 + public.kern2.T + -60 + public.kern2.Ucyr.ss01 + -50 + public.kern2.V + -60 + public.kern2.W + -30 + public.kern2.Y + -90 + public.kern2.Z + -10 + public.kern2.comma + -10 + public.kern2.j + -10 + public.kern2.period + -10 + public.kern2.quotedbl + -20 + public.kern2.w + -20 + public.kern2.x + -20 + public.kern2.y + -30 + + public.kern1.emdash1 + + public.kern2.A.ss01 + 10 + public.kern2.A.ss012 + 10 + public.kern2.Oslash.alt + -30 + public.kern2.S + -10 + public.kern2.T + -90 + public.kern2.Ucyr.ss01 + -50 + public.kern2.V + -60 + public.kern2.W + -20 + public.kern2.Y + -120 + public.kern2.Z + -10 + public.kern2.decyr.ss01 + -10 + public.kern2.f + -30 + public.kern2.five + -20 + public.kern2.tecyr + -40 + public.kern2.x + -40 + public.kern2.y + -50 + + public.kern1.f1 + + public.kern2.A.ss012 + -10 + public.kern2.A2 + -30 + public.kern2.J + -40 + public.kern2.S + 10 + public.kern2.T + 20 + public.kern2.Y + 10 + public.kern2.a + -15 + public.kern2.comma + -50 + public.kern2.emdash + -30 + public.kern2.h + 10 + public.kern2.i1 + 20 + public.kern2.o + -10 + public.kern2.period + -50 + public.kern2.quotedbl + 40 + public.kern2.quoteright + 30 + public.kern2.t + 35 + public.kern2.w + 10 + public.kern2.x + 10 + public.kern2.y + 10 + + public.kern1.five1 + + public.kern2.comma + -30 + public.kern2.five + -30 + public.kern2.i1 + 20 + public.kern2.period + -10 + + public.kern1.four1 + + public.kern2.five + 10 + public.kern2.four + 30 + public.kern2.period + 20 + public.kern2.quotedbl + -20 + + public.kern1.g.ss011 + + public.kern2.A.ss01 + 20 + public.kern2.W + 20 + public.kern2.Y + -30 + public.kern2.comma + 30 + public.kern2.g.ss01 + 20 + public.kern2.h + 10 + public.kern2.i1 + 10 + public.kern2.j + 60 + public.kern2.l.ss01 + 20 + public.kern2.m + 20 + public.kern2.o + 10 + public.kern2.quotedbl + 30 + public.kern2.quoteright + 40 + public.kern2.s + 10 + public.kern2.t + 40 + public.kern2.u + 10 + public.kern2.w + 10 + public.kern2.x + 30 + public.kern2.y + 20 + public.kern2.z + 20 + + public.kern1.g1 + + public.kern2.A2 + 20 + public.kern2.V + -20 + public.kern2.Y + -30 + public.kern2.a + -10 + public.kern2.comma + 20 + public.kern2.i1 + 10 + public.kern2.j + 60 + public.kern2.m + -10 + public.kern2.o + -5 + public.kern2.s + -10 + public.kern2.w + -10 + public.kern2.y + -10 + + public.kern1.gecyr + + public.kern2.A2 + -30 + public.kern2.G + 10 + public.kern2.Oslash.alt + -20 + public.kern2.T + -20 + public.kern2.Ucyr.ss01 + -40 + public.kern2.a + -20 + public.kern2.comma + -60 + public.kern2.decyr.ss01 + -30 + public.kern2.emdash + -50 + public.kern2.i1 + 40 + public.kern2.o + -15 + public.kern2.period + -110 + + public.kern1.guillemotright1 + + public.kern2.J + -10 + public.kern2.T + -70 + public.kern2.V + -40 + public.kern2.W + -20 + public.kern2.Y + -100 + + public.kern1.hardcyr + + public.kern2.Oslash.alt + -10 + public.kern2.T + -80 + public.kern2.Ucyr.ss01 + -40 + public.kern2.quotedbl + -63 + public.kern2.quoteright + -30 + public.kern2.tecyr + -70 + public.kern2.x + -20 + public.kern2.y + -60 + + public.kern1.i1 + + public.kern2.B + 10 + public.kern2.G + -10 + public.kern2.Gecyr + 10 + public.kern2.Oslash.alt + 40 + public.kern2.T + -20 + public.kern2.U + 10 + public.kern2.Ucyr.ss01 + 50 + public.kern2.V + 50 + public.kern2.W + 1 + public.kern2.Y + 60 + public.kern2.Z + 30 + public.kern2.h + 26 + public.kern2.i1 + 1 + public.kern2.j + 10 + public.kern2.percent + 30 + public.kern2.quotedbl + 27 + public.kern2.quoteright + -20 + + public.kern1.icyr1 + + tenmillionscomb-cy + 28 + public.kern2.A.ss012 + 10 + public.kern2.J + 10 + public.kern2.T + -20 + public.kern2.Ucyr.ss01 + -40 + public.kern2.W + -20 + public.kern2.Y + -80 + public.kern2.j + 30 + + public.kern1.j1 + + public.kern2.T + -20 + public.kern2.i1 + 10 + public.kern2.j + 20 + public.kern2.z + 10 + + public.kern1.k + + public.kern2.A.ss01 + 20 + public.kern2.A.ss012 + 20 + public.kern2.A2 + 20 + public.kern2.G + -20 + public.kern2.J + 20 + public.kern2.Ucyr.ss01 + -20 + public.kern2.V + -30 + public.kern2.W + -20 + public.kern2.Y + -50 + public.kern2.a + -10 + public.kern2.emdash + -50 + public.kern2.o + -50 + public.kern2.quoteright + -20 + public.kern2.s + -10 + public.kern2.t + 10 + public.kern2.x + 20 + public.kern2.z + 10 + + public.kern1.l + + public.kern2.Y + 1 + public.kern2.f + 1 + public.kern2.h + 1 + public.kern2.i1 + 10 + public.kern2.j + 25 + public.kern2.m + 1 + public.kern2.o + 1 + public.kern2.s + 5 + public.kern2.t + 1 + + public.kern1.l.ss011 + + public.kern2.A.ss01 + 20 + public.kern2.G + -10 + public.kern2.T + -70 + public.kern2.U + -10 + public.kern2.V + -50 + public.kern2.W + -40 + public.kern2.Y + -50 + public.kern2.f + -40 + public.kern2.fi.ss01 + -20 + public.kern2.g.ss01 + 10 + public.kern2.h + 1 + public.kern2.o + -10 + public.kern2.quoteright + -40 + public.kern2.s + 1 + public.kern2.t + -29 + public.kern2.w + -50 + public.kern2.y + -60 + + public.kern1.n + + public.kern2.A.ss01 + 10 + public.kern2.A.ss012 + 10 + public.kern2.G + -10 + public.kern2.J + 20 + public.kern2.T + -60 + public.kern2.Ucyr.ss01 + -50 + public.kern2.V + -60 + public.kern2.W + -40 + public.kern2.Y + -100 + public.kern2.g + 5 + public.kern2.guillemotright + 10 + public.kern2.quotedbl + -27 + public.kern2.quoteright + -10 + public.kern2.w + -20 + public.kern2.y + -25 + + public.kern1.numero + + public.kern2.i1 + 40 + + public.kern1.o1 + + public.kern2.A.ss01 + 10 + public.kern2.A.ss012 + 10 + public.kern2.A2 + -10 + public.kern2.Oslash.alt + -30 + public.kern2.S + -20 + public.kern2.T + -80 + public.kern2.Ucyr.ss01 + -40 + public.kern2.V + -65 + public.kern2.W + -40 + public.kern2.Y + -110 + public.kern2.Z + -10 + public.kern2.comma + -30 + public.kern2.emdash + 10 + public.kern2.j + -10 + public.kern2.period + -10 + public.kern2.quotedbl + -20 + public.kern2.quoteright + -10 + public.kern2.s + -10 + public.kern2.t + -5 + public.kern2.tecyr + -20 + public.kern2.w + -20 + public.kern2.x + -25 + public.kern2.y + -30 + public.kern2.z + -10 + + public.kern1.period1 + + public.kern2.A.ss012 + 20 + public.kern2.A2 + 40 + public.kern2.G + -30 + public.kern2.J + 50 + public.kern2.Oslash.alt + 10 + public.kern2.S + 10 + public.kern2.T + -110 + public.kern2.Ucyr.ss01 + -20 + public.kern2.V + -110 + public.kern2.W + -70 + public.kern2.Y + -160 + public.kern2.Z + 20 + public.kern2.f + -30 + public.kern2.four + 10 + public.kern2.g.ss01 + 10 + public.kern2.j + 10 + public.kern2.o + -10 + public.kern2.quotedbl + -40 + public.kern2.t + -30 + public.kern2.tecyr + -70 + public.kern2.u + -10 + public.kern2.w + -40 + public.kern2.y + -75 + public.kern2.z + 10 + public.kern2.zero + -20 + + public.kern1.quotedbl1 + + public.kern2.A.ss01 + -50 + public.kern2.A.ss012 + -50 + public.kern2.A2 + -50 + public.kern2.G + -21 + public.kern2.J + -50 + public.kern2.T + 30 + public.kern2.V + 20 + public.kern2.W + 20 + public.kern2.Y + 30 + public.kern2.a + -30 + public.kern2.decyr.ss01 + -40 + public.kern2.four + -70 + public.kern2.g + -14 + public.kern2.g.ss01 + -20 + public.kern2.i1 + 27 + public.kern2.o + -21 + public.kern2.period + -40 + public.kern2.s + -17 + public.kern2.t + 20 + public.kern2.w + 10 + public.kern2.y + 10 + public.kern2.zero + -10 + + public.kern1.quoteleft1 + + public.kern2.A.ss01 + -30 + public.kern2.A2 + -40 + public.kern2.B + 10 + public.kern2.G + -20 + public.kern2.J + -20 + public.kern2.Oslash.alt + 30 + public.kern2.T + 30 + public.kern2.V + 30 + public.kern2.W + 30 + public.kern2.Y + 40 + public.kern2.Z + 10 + public.kern2.a + -30 + public.kern2.g + -40 + public.kern2.g.ss01 + -30 + public.kern2.i1 + 50 + public.kern2.m + -20 + public.kern2.o + -40 + public.kern2.s + -20 + public.kern2.u + -20 + public.kern2.x + -20 + public.kern2.y + -10 + public.kern2.z + -20 + + public.kern1.quoteright1 + + public.kern2.A.ss01 + -50 + public.kern2.A2 + -60 + public.kern2.G + -30 + public.kern2.J + -40 + public.kern2.Oslash.alt + 10 + public.kern2.S + -10 + public.kern2.T + 20 + public.kern2.V + 30 + public.kern2.W + 30 + public.kern2.Y + 30 + public.kern2.a + -60 + public.kern2.f + -10 + public.kern2.g + -70 + public.kern2.h + -10 + public.kern2.i1 + 21 + public.kern2.m + -20 + public.kern2.o + -70 + public.kern2.s + -50 + public.kern2.u + -20 + public.kern2.y + -30 + public.kern2.z + -30 + + public.kern1.s1 + + public.kern2.A.ss01 + 10 + public.kern2.G + -10 + public.kern2.J + 10 + public.kern2.T + -55 + public.kern2.V + -40 + public.kern2.W + -30 + public.kern2.Y + -90 + public.kern2.a + 10 + public.kern2.emdash + -30 + public.kern2.f + -10 + public.kern2.guillemotright + 20 + public.kern2.quotedbl + -30 + public.kern2.quoteright + -10 + public.kern2.s + 5 + public.kern2.t + -10 + public.kern2.w + -25 + public.kern2.x + -10 + public.kern2.y + -30 + + public.kern1.t.ss011 + + public.kern2.A.ss01 + 30 + public.kern2.B + 10 + public.kern2.G + 10 + public.kern2.Y + -40 + public.kern2.Z + 10 + public.kern2.h + 10 + public.kern2.j + 20 + public.kern2.l.ss01 + 10 + public.kern2.period + 20 + public.kern2.quotedbl + 1 + public.kern2.s + 10 + public.kern2.t + 20 + public.kern2.z + 20 + + public.kern1.t1 + + public.kern2.J + 30 + public.kern2.V + -20 + public.kern2.Y + -20 + public.kern2.Z + 10 + public.kern2.a + 10 + public.kern2.f + 15 + public.kern2.g + 10 + public.kern2.h + 5 + public.kern2.i1 + 10 + public.kern2.j + 11 + public.kern2.period + 10 + public.kern2.quotedbl + 20 + public.kern2.quoteright + 10 + public.kern2.t + 20 + public.kern2.x + 10 + public.kern2.z + 20 + + public.kern1.u1 + + public.kern2.A.ss01 + 10 + public.kern2.T + -40 + public.kern2.V + -50 + public.kern2.W + -20 + public.kern2.Y + -80 + public.kern2.z + 10 + + public.kern1.uni0435.ss011 + + public.kern2.A.ss012 + 20 + public.kern2.T + -60 + public.kern2.Ucyr.ss01 + -30 + public.kern2.V + -50 + public.kern2.W + -10 + public.kern2.Y + -80 + public.kern2.w + -10 + public.kern2.y + -10 + + public.kern1.w1 + + public.kern2.A.ss01 + -20 + public.kern2.A.ss012 + -10 + public.kern2.A2 + -20 + public.kern2.J + -30 + public.kern2.Oslash.alt + -20 + public.kern2.V + -20 + public.kern2.W + -10 + public.kern2.Y + -60 + public.kern2.Z + -30 + public.kern2.a + -20 + public.kern2.comma + -30 + public.kern2.f + 10 + public.kern2.g + -10 + public.kern2.j + -10 + public.kern2.o + -20 + public.kern2.period + -40 + public.kern2.quotedbl + 10 + public.kern2.quoteright + 10 + public.kern2.s + -24 + public.kern2.w + -10 + + public.kern1.x + + public.kern2.A.ss01 + 20 + public.kern2.A.ss012 + 20 + public.kern2.A2 + 20 + public.kern2.G + -20 + public.kern2.J + 20 + public.kern2.Ucyr.ss01 + -10 + public.kern2.V + -20 + public.kern2.Y + -50 + public.kern2.a + -10 + public.kern2.emdash + -40 + public.kern2.o + -25 + public.kern2.s + -20 + public.kern2.x + 20 + public.kern2.z + 10 + + public.kern1.y1 + + public.kern2.A.ss01 + -20 + public.kern2.A.ss012 + -20 + public.kern2.A2 + -20 + public.kern2.G + -10 + public.kern2.J + -40 + public.kern2.Oslash.alt + -30 + public.kern2.Ucyr.ss01 + -30 + public.kern2.V + -20 + public.kern2.W + -10 + public.kern2.Y + -50 + public.kern2.Z + -20 + public.kern2.a + -15 + public.kern2.comma + -40 + public.kern2.decyr.ss01 + -30 + public.kern2.emdash + -30 + public.kern2.f + 10 + public.kern2.g + -10 + public.kern2.g.ss01 + -20 + public.kern2.h + -10 + public.kern2.j + -10 + public.kern2.o + -20 + public.kern2.period + -70 + public.kern2.quotedbl + 10 + public.kern2.s + -20 + public.kern2.t + 10 + public.kern2.x + 10 + public.kern2.y + 10 + public.kern2.z + -10 + + public.kern1.z1 + + public.kern2.A.ss012 + 20 + public.kern2.A2 + 20 + public.kern2.J + 30 + public.kern2.T + -10 + public.kern2.V + -20 + public.kern2.W + -30 + public.kern2.Y + -50 + public.kern2.comma + 10 + public.kern2.f + 20 + public.kern2.g + 10 + public.kern2.j + 10 + public.kern2.o + -10 + public.kern2.period + 10 + public.kern2.t + 10 + public.kern2.x + 10 + public.kern2.z + 10 + + + diff --git a/sources/FixelDisplay-Black.ufo/layercontents.plist b/sources/FixelDisplay-Black.ufo/layercontents.plist new file mode 100644 index 00000000..7a35a5cf --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/layercontents.plist @@ -0,0 +1,10 @@ + + + + + + public.default + glyphs + + + diff --git a/sources/FixelDisplay-Black.ufo/lib.plist b/sources/FixelDisplay-Black.ufo/lib.plist new file mode 100644 index 00000000..c0069150 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/lib.plist @@ -0,0 +1,1671 @@ + + + + + com.fontlab.v2.tth + + stems + + 69 + + width + 69 + horizontal + + round + + 35 + 3 + 47 + 4 + 60 + 5 + 0 + 7 + 22 + 8 + + + 74 + + width + 74 + horizontal + + round + + 19 + 2 + 35 + 3 + 47 + 4 + 60 + 5 + 72 + 6 + 0 + 7 + 20 + 8 + + + 76 + + width + 76 + horizontal + + round + + 19 + 2 + 35 + 3 + 72 + 6 + 0 + 7 + 20 + 8 + + + 80 + + width + 80 + horizontal + + round + + 29 + 3 + 47 + 4 + 60 + 5 + 72 + 6 + 0 + 7 + 20 + 8 + + + 99 + + width + 99 + horizontal + + round + + 19 + 2 + 29 + 3 + 37 + 4 + 48 + 5 + 58 + 6 + 0 + 7 + 16 + 8 + + + 74 + + width + 74 + horizontal + + round + + 19 + 2 + 35 + 3 + 47 + 4 + 60 + 5 + 72 + 6 + 0 + 7 + 20 + 8 + + + 80 + + width + 80 + horizontal + + round + + 29 + 3 + 47 + 4 + 60 + 5 + 72 + 6 + 0 + 7 + 20 + 8 + + + 93 + + width + 93 + horizontal + + round + + 19 + 2 + 29 + 3 + 37 + 4 + 48 + 5 + 58 + 6 + 0 + 7 + 16 + 8 + + + + + com.schriftgestaltung.disablesAutomaticAlignment + + com.schriftgestaltung.fontMasterID + master01 + com.schriftgestaltung.glyphOrder + + com.schriftgestaltung.master.name + regular + com.schriftgestaltung.useNiceNames + + com.schriftgestaltung.weightValue + 400 + public.postscriptNames + + A-cy + uni0410 + A-cy.ss01 + uni0410.ss01 + Be-cy + uni0411 + Che-cy + uni0427 + De-cy + uni0414 + Dze-cy + uni0405 + E-cy + uni0404 + Ef-cy + uni0424 + El-cy + uni041B + Em-cy + uni041C + Em-cy.ss01 + uni041C.ss01 + En-cy + uni041D + Er-cy + uni0420 + Ereversed-cy + uni042D + Es-cy + uni0421 + Gacute + uni01F4 + Gacute.ss01 + uni01F4.ss01 + Gcommaaccent + uni0122 + Gcommaaccent.ss01 + uni0122.ss01 + Ge-cy + uni0413 + Germandbls + uni1E9E + Gheupturn-cy + uni0490 + Ha-cy + uni0425 + Ha-cy.ss01 + uni0425.ss01 + Hardsign-cy + uni042A + I-cy + uni0406 + Ia-cy + uni042F + Ia-cy.ss01 + uni042F.ss01 + Ie-cy + uni0415 + Ii-cy + uni0418 + Iishort-cy + uni0419 + Io-cy + uni0401 + Iu-cy + uni042E + Ka-cy + uni041A + Ka-cy.ss01 + uni041A.ss01 + Kcommaaccent + uni0136 + Kcommaaccent.ss01 + uni0136.ss01 + Lcommaaccent + uni013B + Ncommaaccent + uni0145 + Ncommaaccent.ss01 + uni0145.ss01 + O-cy + uni041E + Pe-cy + uni041F + Rcommaaccent + uni0156 + Scommaaccent + uni0218 + Sha-cy + uni0428 + Shcha-cy + uni0429 + Softsign-cy + uni042C + Tcedilla + uni0162 + Tcommaaccent + uni021A + Te-cy + uni0422 + Tse-cy + uni0426 + U-cy + uni0423 + U-cy.ss01 + uni0423.ss01 + Ushort-cy + uni040E + Ushort-cy.ss01 + uni040E.ss01 + Ve-cy + uni0412 + Yeru-cy + uni042B + Yi-cy + uni0407 + Ze-cy + uni0417 + Zhe-cy + uni0416 + Zhe-cy.ss01 + uni0416.ss01 + _perc-circule + _perccircule + a-cy + uni0430 + a-cy.ss01 + uni0430.ss01 + be-cy + uni0431 + che-cy + uni0447 + commaaccentcomb + uni0326 + commaaccentcomb.salt + uni0326.salt + de-cy + uni0434 + de-cy.ss01 + uni0434.ss01 + dze-cy + uni0455 + e-cy + uni0454 + ef-cy + uni0444 + el-cy + uni043B + el-cy.ss01 + uni043B.ss01 + em-cy + uni043C + en-cy + uni043D + er-cy + uni0440 + er-cy.ss01 + uni0440.ss01 + ereversed-cy + uni044D + es-cy + uni0441 + euro + Euro + gacute + uni01F5 + gacute.ss01 + uni01F5.ss01 + gcommaaccent + uni0123 + gcommaaccent.ss01 + uni0123.ss01 + ge-cy + uni0433 + gheupturn-cy + uni0491 + guillemetleft + guillemotleft + guillemetright + guillemotright + ha-cy + uni0445 + hardsign-cy + uni044A + hardsign-cy.ss01 + uni044A.ss01 + hryvnia + uni20B4 + i-cy + uni0456 + ia-cy + uni044F + ia-cy.ss01 + uni044F.ss01 + idotless + dotlessi + ie-cy + uni0435 + ie-cy.ss01 + uni0435.ss01 + ii-cy + uni0438 + iishort-cy + uni0439 + io-cy + uni0451 + io-cy.ss01 + uni0451.ss01 + iu-cy + uni044E + jdotless + uni0237 + je-cy + uni0458 + ka-cy + uni043A + kcommaaccent + uni0137 + lcommaaccent + uni013C + lcommaaccent.ss01 + uni013C.ss01 + ncommaaccent + uni0146 + numero + uni2116 + numero.ss01 + uni2116.ss01 + o-cy + uni043E + onesuperior + uni00B9 + pe-cy + uni043F + rcommaaccent + uni0157 + scommaaccent + uni0219 + sha-cy + uni0448 + shcha-cy + uni0449 + softsign-cy + uni044C + softsign-cy.ss01 + uni044C.ss01 + tcedilla + uni0163 + tcedilla.ss01 + uni0163.ss01 + tcommaaccent + uni021B + tcommaaccent.ss01 + uni021B.ss01 + te-cy + uni0442 + te-cy.ss01 + uni0442.ss01 + threesuperior + uni00B3 + tse-cy + uni0446 + twosuperior + uni00B2 + u-cy + uni0443 + ushort-cy + uni045E + ve-cy + uni0432 + ve-cy.ss01 + uni0432.ss01 + yeru-cy + uni044B + yeru-cy.ss01 + uni044B.ss01 + yi-cy + uni0457 + ze-cy + uni0437 + zhe-cy + uni0436 + + public.skipExportGlyphs + + Oslash.bold + oslash.bold + _perc-circule + + public.glyphOrder + + .notdef + NULL + CR + space + A + Aacute + Abreve + Acircumflex + Adieresis + Agrave + Amacron + Aogonek + Aring + Atilde + AE + B + C + Cacute + Ccaron + Ccedilla + Ccircumflex + Cdotaccent + D + Eth + Dcaron + Dcroat + E + Eacute + Ebreve + Ecaron + Ecircumflex + Edieresis + Edotaccent + Egrave + Emacron + Eogonek + F + G + Gacute + Gbreve + Gcircumflex + Gcommaaccent + Gdotaccent + H + Hbar + Hcircumflex + I + IJ + Iacute + Ibreve + Icircumflex + Idieresis + Idotaccent + Igrave + Imacron + Iogonek + Itilde + J + Jcircumflex + K + Kcommaaccent + L + Lacute + Lcaron + Lcommaaccent + Ldot + Lslash + M + N + Nacute + Ncaron + Ncommaaccent + Eng + Ntilde + O + Oacute + Obreve + Ocircumflex + Odieresis + Ograve + Ohungarumlaut + Omacron + Oslash + Otilde + OE + P + Thorn + Q + R + Racute + Rcaron + Rcommaaccent + S + Sacute + Scaron + Scedilla + Scircumflex + Scommaaccent + Germandbls + T + Tbar + Tcaron + Tcedilla + Tcommaaccent + U + Uacute + Ubreve + Ucircumflex + Udieresis + Ugrave + Uhungarumlaut + Umacron + Uogonek + Uring + Utilde + V + W + Wacute + Wcircumflex + Wdieresis + Wgrave + X + Y + Yacute + Ycircumflex + Ydieresis + Z + Zacute + Zcaron + Zdotaccent + A.ss01 + Aacute.ss01 + Abreve.ss01 + Acircumflex.ss01 + Adieresis.ss01 + Agrave.ss01 + Amacron.ss01 + Aogonek.ss01 + Aring.ss01 + Atilde.ss01 + AE.ss01 + G.ss01 + Gacute.ss01 + Gbreve.ss01 + Gcircumflex.ss01 + Gcommaaccent.ss01 + Gdotaccent.ss01 + J.ss01 + Jcircumflex.ss01 + K.ss01 + Kcommaaccent.ss01 + M.ss01 + N.ss01 + Nacute.ss01 + Ncaron.ss01 + Ncommaaccent.ss01 + Eng.ss01 + Ntilde.ss01 + Q.ss01 + V.ss01 + W.ss01 + Wacute.ss01 + Wcircumflex.ss01 + Wdieresis.ss01 + Wgrave.ss01 + X.ss01 + Y.ss01 + Yacute.ss01 + Ycircumflex.ss01 + Ydieresis.ss01 + Z.ss01 + Zacute.ss01 + Zcaron.ss01 + Zdotaccent.ss01 + a + aacute + abreve + acircumflex + adieresis + agrave + amacron + aogonek + aring + atilde + ae + b + c + cacute + ccaron + ccedilla + ccircumflex + cdotaccent + d + eth + dcaron + dcroat + e + eacute + ebreve + ecaron + ecircumflex + edieresis + edotaccent + egrave + emacron + eogonek + f + g + gacute + gbreve + gcircumflex + gcommaaccent + gdotaccent + h + hbar + hcircumflex + i + idotless + iacute + ibreve + icircumflex + idieresis + igrave + ij + imacron + iogonek + itilde + j + jdotless + jcircumflex + k + kcommaaccent + kgreenlandic + l + lacute + lcaron + lcommaaccent + ldot + lslash + m + n + nacute + napostrophe + ncaron + ncommaaccent + eng + ntilde + o + oacute + obreve + ocircumflex + odieresis + ograve + ohungarumlaut + omacron + oslash + otilde + oe + p + thorn + q + r + racute + rcaron + rcommaaccent + s + sacute + scaron + scedilla + scircumflex + scommaaccent + germandbls + t + tbar + tcaron + tcedilla + tcommaaccent + u + uacute + ubreve + ucircumflex + udieresis + ugrave + uhungarumlaut + umacron + uogonek + uring + utilde + v + w + wacute + wcircumflex + wdieresis + wgrave + x + y + yacute + ycircumflex + ydieresis + z + zacute + zcaron + zdotaccent + a.ss01 + aacute.ss01 + abreve.ss01 + acircumflex.ss01 + adieresis.ss01 + agrave.ss01 + amacron.ss01 + aogonek.ss01 + aring.ss01 + atilde.ss01 + ae.ss01 + b.ss01 + d.ss01 + dcaron.ss01 + dcroat.ss01 + e.ss01 + eacute.ss01 + ebreve.ss01 + ecaron.ss01 + ecircumflex.ss01 + edieresis.ss01 + edotaccent.ss01 + egrave.ss01 + emacron.ss01 + eogonek.ss01 + f.ss01 + g.ss01 + gacute.ss01 + gbreve.ss01 + gcircumflex.ss01 + gcommaaccent.ss01 + gdotaccent.ss01 + l.ss01 + lacute.ss01 + lcaron.ss01 + lcommaaccent.ss01 + ldot.ss01 + lslash.ss01 + oe.ss01 + p.ss01 + q.ss01 + germandbls.ss01 + t.ss01 + tbar.ss01 + tcaron.ss01 + tcedilla.ss01 + tcommaaccent.ss01 + f_f + f_f_i + f_f_l + fi + fl + f_f.ss01 + f_f_i.ss01 + f_f_l.ss01 + fi.ss01 + fl.ss01 + ordfeminine + ordmasculine + A-cy + Be-cy + Ve-cy + Ge-cy + Gheupturn-cy + De-cy + Ie-cy + Io-cy + Zhe-cy + Ze-cy + Ii-cy + Iishort-cy + Ka-cy + El-cy + Em-cy + En-cy + O-cy + Pe-cy + Er-cy + Es-cy + Te-cy + U-cy + Ushort-cy + Ef-cy + Ha-cy + Che-cy + Tse-cy + Sha-cy + Shcha-cy + Softsign-cy + Hardsign-cy + Yeru-cy + Dze-cy + E-cy + Ereversed-cy + I-cy + Yi-cy + Iu-cy + Ia-cy + A-cy.ss01 + Zhe-cy.ss01 + Ka-cy.ss01 + Em-cy.ss01 + U-cy.ss01 + Ushort-cy.ss01 + Ha-cy.ss01 + Ia-cy.ss01 + a-cy + be-cy + ve-cy + ge-cy + gheupturn-cy + de-cy + ie-cy + io-cy + zhe-cy + ze-cy + ii-cy + iishort-cy + ka-cy + el-cy + em-cy + en-cy + o-cy + pe-cy + er-cy + es-cy + te-cy + u-cy + ushort-cy + ef-cy + ha-cy + che-cy + tse-cy + sha-cy + shcha-cy + softsign-cy + hardsign-cy + yeru-cy + dze-cy + e-cy + ereversed-cy + i-cy + yi-cy + je-cy + iu-cy + ia-cy + a-cy.ss01 + ve-cy.ss01 + de-cy.ss01 + ie-cy.ss01 + io-cy.ss01 + el-cy.ss01 + er-cy.ss01 + te-cy.ss01 + softsign-cy.ss01 + hardsign-cy.ss01 + yeru-cy.ss01 + ia-cy.ss01 + zero + one + two + three + four + five + six + seven + eight + nine + zero.osf + one.osf + two.osf + three.osf + four.osf + five.osf + six.osf + seven.osf + nine.osf + zero.tf + one.tf + two.tf + three.tf + four.tf + five.tf + six.tf + seven.tf + eight.tf + nine.tf + onesuperior + twosuperior + threesuperior + period + comma + colon + semicolon + ellipsis + exclam + exclamdown + question + questiondown + periodcentered + bullet + asterisk + numbersign + slash + backslash + parenleft + parenright + braceleft + braceright + bracketleft + bracketright + hyphen + endash + emdash + underscore + quotesinglbase + quotedblbase + quotedblleft + quotedblright + quoteleft + quoteright + guillemetleft + guillemetright + guilsinglleft + guilsinglright + quotedbl + quotesingle + cent + currency + dollar + euro + hryvnia + sterling + yen + yen.ss01 + plus + minus + multiply + divide + equal + greater + less + asciitilde + asciicircum + percent + perthousand + at + ampersand + paragraph + section + copyright + registered + trademark + degree + bar + brokenbar + dagger + daggerdbl + numero + estimated + numero.ss01 + commaaccentcomb + dieresis + dotaccent + grave + acute + hungarumlaut + circumflex + caron + breve + ring + tilde + macron + cedilla + ogonek + dieresis.case + dotaccent.case + grave.case + acute.case + hungarumlaut.case + circumflex.case + caron.case + breve.case + ring.case + tilde.case + macron.case + commaaccentcomb.salt + caron.salt + uniE01A + _perc-circule + eight.osf + ruble + Ljecyr + Njecyr + Jecyr + dzhecyr + Dzhecyr + ljecyr + njecyr + Tshecyr + Djecyr + tshecyr + djecyr + tenge + ljecyr.ss01 + njecyr.ss01 + dramsignarmn + gjecyr + kjecyr + neptune + florin + plusminus + fraction + onequarter + onehalf + threequarters + mu + lessequal + greaterequal + minute + second + Schwacyr + schwacyr + Gestrokecyr + gestrokecyr + Obarcyr + obarcyr + Entailcyr + entailcyr + Katailcyr + katailcyr + Ustraightstrokecyr + ustraightstrokecyr + Shhacyr + shhacyr + ustraightcyr + Ustraightcyr + partialdiff + increment + integral + summation + radical + infinity + Omega + pi + longs + Delta + product + notequal + proportional + approxequal + Schwa + eturned + Oslashacute + oslashacute + AEacute + aeacute + uni2010 + Aiecyr + aiecyr + uni1EBC + uni1EBD + Acaron + acaron + Gjecyr + Kjecyr + uniE000 + uniE000.alt + arrowleft + arrowup + arrowright + arrowdown + arrowdown.ss01 + arrowleft.ss01 + arrowright.ss01 + arrowup.ss01 + yi-cy.alt + Omegacyr + omegacyr + Yatcyr + yatcyr + Eiotifiedcyr + eiotifiedcyr + Ksicyr + ksicyr + Shwe-cy + Fitacyr + fitacyr + Koppacyr + Iegravecyr + Igravecyr + iegravecyr + igravecyr + Zhebrevecyr + zhebrevecyr + Abrevecyr + abrevecyr + Adieresiscyr + adieresiscyr + Iebrevecyr + iebrevecyr + Schwadieresiscyr + schwadieresiscyr + Zhedieresiscyr + zhedieresiscyr + Zedieresiscyr + zedieresiscyr + Imacroncyr + imacroncyr + Idieresiscyr + idieresiscyr + Odieresiscyr + odieresiscyr + Umacroncyr + umacroncyr + Udieresiscyr + udieresiscyr + Uacutedblcyr + uacutedblcyr + Dekomicyr + dekomicyr + Wecyr + wecyr + Qacyr + qacyr + Ylongdieresiscyr + ylongdieresiscyr + Chedieresiscyr + chedieresiscyr + Obardieresiscyr + obardieresiscyr + Ereverseddieresiscyr + ereverseddieresiscyr + Zhetailcyr + zhetailcyr + Tetailcyr + tetailcyr + Xatailcyr + xatailcyr + Chetailcyr + chetailcyr + Chekhakascyr + chekhakascyr + Getailcyr + getailcyr + Petailcyr + petailcyr + Eltailcyr + eltailcyr + Shhatailcyr + shhatailcyr + Palochkacyr + palochkacyr + Dzzhecyr + Yaecyr + yaecyr + Tetsecyr + tetsecyr + Engecyr + engecyr + kabashkcyr + Kabashkcyr + semisoftcyr + Semisoftcyr + Reversedzecyr + reversedzecyr + Elmiddlehookcyr + Enmiddlehookcyr + Enhookcyr + Kahookcyr + Pehookcyr + Gehookcyr + parenleft.case + parenright.case + hyphen.case + bracketleft.case + bracketright.case + braceleft.case + braceright.case + exclamdown.case + guillemetleft.case + guillemetright.case + endash.case + emdash.case + bullet.case + guilsinglleft.case + guilsinglright.case + arrowleft.case + arrowup.case + arrowright.case + arrowdown.case + arrowdown.ss01.case + arrowleft.ss01.case + arrowright.ss01.case + arrowup.ss01.case + Enhookleftcyr + enhookleftcyr + enhookcyr + gehookcyr + pehookcyr + kahookcyr + enmiddlehookcyr + elmiddlehookcyr + kastrokecyr + Kastrokecyr + Chevertcyr + chevertcyr + Kaverticalstrokecyr + kaverticalstrokecyr + Elhookcyr + elhookcyr + zetailcyr + Zetailcyr + Estailcyr + estailcyr + Haabkhcyr + koppacyr + ukcyr + Ukcyr + omegaroundcyr + Izhitsagravedblcyr + izhitsagravedblcyr + izhitsacyr + Izhitsacyr + Yusbigcyr + yusbigcyr + Psicyr + psicyr + Omegaroundcyr + Yuslittlecyr + yuslittlecyr + yuslittleiotifiedcyr + Yuslittleiotifiedcyr + Yusbigiotifiedcyr + yusbigiotifiedcyr + Omegatitlocyr + omegatitlocyr + Otcyr + otcyr + uni2DEE + uni2DEE.case + ertickcyr + Ertickcyr + Lhacyr + lhacyr + ensharptailcyr + Ensharptailcyr + emsharptailcyr + elsharptailcyr + ishortsharptailcyr + Ishortsharptailcyr + Emsharptailcyr + Elsharptailcyr + njekomicyr + Njekomicyr + ljekomicyr + tjekomicyr + djekomicyr + zjekomicyr + colon.case + questiondown.case + slash.case + semicolon.case + backslash.case + bar.case + brokenbar.case + dzjekomicyr + Cheabkhcyr + cheabkhcyr + cheabkhtailcyr + sjekomicyr + Sjekomicyr + Ljekomicyr + Tjekomicyr + Djekomicyr + kaaleutcyr + dzzhecyr + haabkhcyr + Dchecyr + dchecyr + dzeabkhcyr + Dzeabkhcyr + palatcombcyr + Cheabkhtailcyr + Dzjekomicyr + Zjekomicyr + rhacyr + Rhacyr + Kaaleutcyr + thousandscyr + titlocombcyr + pokrytiecombcyr + hundredthousandscombcyr + millionscombcyr + Gehookstrokecyr + gehookstrokecyr + Hahookcyr + hahookcyr + Hastrokecyr + uni1C80 + uni1C81 + uni1C82 + uni1C83 + uni1C84 + uni1C85 + uni1C86 + uni1C87 + Zemlya-cy + zemlya-cy + Dzelo-cy + dzelo-cy + DzeReversed-cy + dzeReversed-cy + Iota-cy + iota-cy + Djerv-cy + djerv-cy + UkMonograph-cy + ukMonograph-cy + OmegaBroad-cy + omegaBroad-cy + YerNeutral-cy + yerNeutral-cy + YeruBackYer-cy + yeruBackyer-cy + YatIotified-cy + yatIotified-cy + YuReversed-cy + yuReversed-cy + IotifiedA-cy + iotifieda-cy + YusClosedlittle-cy + yusClosedlittle-cy + YusBlended-cy + yusBlended-cy + YusiotifiedClosedLittle-cy + yusiotifiedClosedLittle-cy + Yn-cy + yn-cy + TseReversed-cy + tseReversed-cy + DeSoft-cy + deSoft-cy + ElSoft-cy + elSoft-cy + EmSoft-cy + emSoft-cy + OMonocular-cy + oMonocular-cy + OBinocular-cy + oBinocular-cy + ODoubleMonocular-cy + oDoubleMonocular-cy + omultiocular-cy + vzmetcomb-cy + tenmillionscomb-cy + hundredmillionscomb-cy + thousandmillionscomb-cy + Dwe-cy + dwe-cy + Dzwe-cy + dzwe-cy + Zhwe-cy + zhwe-cy + Cche-cy + cche-cy + Dzze-cy + dzze-cy + TeWithMiddleHook-cy + tewithmiddlehook-cy + Twe-cy + twe-cy + Tswe-cy + tswe-cy + Tsse-cy + tsse-cy + Tche-cy + tche-cy + Hwe-cy + hwe-cy + shwe-cy + DoubleO-cy + doubleo-cy + CrossedO-cy + crossedo-cy + hastrokecyr + uniF43A + A-cy.accented + E-cy.accented + Ii-cy.accented + O-cy.accented + U-cy.accented + Yeru-cy.accented + Ereversed-cy.accented + Iu-cy.accented + Ia-cy.accented + Io-cy.accented + uniF498 + uniF49A + uniF49C + uniF49E + uniF4C6 + uniF4CC + uniF4D2 + uniF4D4 + uniF4D6 + uniF4D8 + Zetailcyr.BSH + Estailcyr.CHU + uniF50E + uniF510 + uniF512 + uniF514 + uniF516 + uniF518 + uniF51A + uniF51C + uniF51E + Yeru-cymacron + uniF522 + uniF524 + uniF526 + uniF528 + uniF52A + uniF52C + uniF52E + uniF532 + uniF536 + uniF538 + Gestrokecyr.BSH + Estailcyr.BSH + uniF830 + uniF833 + uniF839 + uniF86F + uniF872 + uniF875 + uniF878 + uniF87B + uniF87E + apostrophemod + colontriangularmod + uni1C88 + uniF87F + uniF87C + uniF879 + uniF876 + uniF873 + uniF870 + uniF83A + uniF834 + uniF831 + zetailcyr.BSH + estailcyr.CHU + uniF50F + uniF511 + uniF513 + uniF515 + uniF517 + uniF519 + uniF51B + uniF51D + uniF51F + uniF521 + uniF523 + uniF525 + uniF527 + uniF529 + uniF52B + uniF52D + uniF52F + uniF533 + uniF537 + uniF539 + gestrokecyr.BSH + estailcyr.BSH + uniF499 + uniF49B + uniF49D + uniF49F + uniF4C7 + uniF4CD + uniF4D3 + uniF4D5 + uniF4D7 + uniF4D9 + a-cy.accented + e-cy.accented + ii-cy.accented + o-cy.accented + u-cy.accented + yeru-cy.accented + ereversed-cy.accented + iu-cy.accented + ia-cy.accented + io-cy.accented + uniF43B + at.case + dieresis.alt + dieresiscase.alt + e-cy.hist + omultiocular-cy.alt + iotifieda-cy.hist + be-cy.SRB + ve-cy.BGR + ge-cy.BGR + de-cy.BGR + zhe-cy.BGR + ze-cy.BGR + ii-cy.BGR + iishort-cy.BGR + ka-cy.BGR + el-cy.BGR + pe-cy.BGR + te-cy.BGR + tse-cy.BGR + sha-cy.BGR + shcha-cy.BGR + hardsign-cy.BGR + softsign-cy.BGR + iu-cy.BGR + yatcyr.BGR + eiotifiedcyr.BGR + yusbigiotifiedcyr.BGR + iotifieda-cy.BGR + De-cy.BGR + El-cy.BGR + Ef-cy.BGR + dieresisacute + uniF45D + uniF45E + uniF45F + uniF475 + uniF476 + uniF477 + uniF478 + uniF479 + Elsmallcyr + enclosingcirclecomb + ge-cy.SRB + pe-cy.SRB + te-cy.SRB + gjecyr.SRB + macron-fwd + macron-fwd.alt + macronacute.SRB + iegravecyr.SRB + igravecyr.SRB + flower + knightwhite + knightblack + floretteblack + florettewhite + floretteoutlinedpetalledblackeight + rookblack + bishopblack + leo + heartwhite + diamondwhite-misc + spadewhite + clubwhite + bishopwhite + heart + crossedswords + virgo + thousandscyr.dnom + bracketangleleft + bracketangleright + bracketangleleft.case + bracketangleright.case + + + diff --git a/sources/FixelDisplay-Black.ufo/metainfo.plist b/sources/FixelDisplay-Black.ufo/metainfo.plist new file mode 100644 index 00000000..10582b84 --- /dev/null +++ b/sources/FixelDisplay-Black.ufo/metainfo.plist @@ -0,0 +1,10 @@ + + + + + creator + com.fontlab.ufoLib + formatVersion + 3 + + diff --git a/sources/FixelDisplay-Bold.ufo/features.fea b/sources/FixelDisplay-Bold.ufo/features.fea new file mode 100644 index 00000000..302ade93 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/features.fea @@ -0,0 +1,573 @@ +#> classes +#/> otclasses +@ss01_def = [A-cy A AE Aacute Abreve Acircumflex Adieresis Agrave Amacron Aogonek Aring Atilde Em-cy Eng G Gacute Gbreve Gcircumflex Gcommaaccent Gdotaccent Ha-cy Ia-cy J Jcircumflex K Ka-cy Kcommaaccent M N Nacute Ncaron Ncommaaccent Ntilde Q U-cy Ushort-cy V W Wacute Wcircumflex Wdieresis Wgrave X Y Yacute Ycircumflex Ydieresis Z Zacute Zcaron Zdotaccent Zhe-cy a-cy a aacute abreve acircumflex adieresis ae agrave amacron aogonek aring arrowdown arrowdown.case arrowleft arrowleft.case arrowright arrowright.case arrowup arrowup.case atilde b d dcaron dcroat de-cy e eacute ebreve ecaron ecircumflex edieresis edotaccent egrave el-cy emacron eogonek er-cy f f_f f_f_i f_f_l fi fl g gacute gbreve gcircumflex gcommaaccent gdotaccent germandbls hardsign-cy ia-cy ie-cy io-cy l lacute lcaron lcommaaccent ldot ljecyr lslash njecyr numero oe p q softsign-cy t tbar tcaron tcedilla tcommaaccent te-cy ve-cy yen yeru-cy]; +@ss01 = [A-cy.ss01 A.ss01 AE.ss01 Aacute.ss01 Abreve.ss01 Acircumflex.ss01 Adieresis.ss01 Agrave.ss01 Amacron.ss01 Aogonek.ss01 Aring.ss01 Atilde.ss01 Em-cy.ss01 Eng.ss01 G.ss01 Gacute.ss01 Gbreve.ss01 Gcircumflex.ss01 Gcommaaccent.ss01 Gdotaccent.ss01 Ha-cy.ss01 Ia-cy.ss01 J.ss01 Jcircumflex.ss01 K.ss01 Ka-cy.ss01 Kcommaaccent.ss01 M.ss01 N.ss01 Nacute.ss01 Ncaron.ss01 Ncommaaccent.ss01 Ntilde.ss01 Q.ss01 U-cy.ss01 Ushort-cy.ss01 V.ss01 W.ss01 Wacute.ss01 Wcircumflex.ss01 Wdieresis.ss01 Wgrave.ss01 X.ss01 Y.ss01 Yacute.ss01 Ycircumflex.ss01 Ydieresis.ss01 Z.ss01 Zacute.ss01 Zcaron.ss01 Zdotaccent.ss01 Zhe-cy.ss01 a-cy.ss01 a.ss01 aacute.ss01 abreve.ss01 acircumflex.ss01 adieresis.ss01 ae.ss01 agrave.ss01 amacron.ss01 aogonek.ss01 aring.ss01 arrowdown.ss01 arrowdown.ss01.case arrowleft.ss01 arrowleft.ss01.case arrowright.ss01 arrowright.ss01.case arrowup.ss01 arrowup.ss01.case atilde.ss01 b.ss01 d.ss01 dcaron.ss01 dcroat.ss01 de-cy.ss01 e.ss01 eacute.ss01 ebreve.ss01 ecaron.ss01 ecircumflex.ss01 edieresis.ss01 edotaccent.ss01 egrave.ss01 el-cy.ss01 emacron.ss01 eogonek.ss01 er-cy.ss01 f.ss01 f_f.ss01 f_f_i.ss01 f_f_l.ss01 fi.ss01 fl.ss01 g.ss01 gacute.ss01 gbreve.ss01 gcircumflex.ss01 gcommaaccent.ss01 gdotaccent.ss01 germandbls.ss01 hardsign-cy.ss01 ia-cy.ss01 ie-cy.ss01 io-cy.ss01 l.ss01 lacute.ss01 lcaron.ss01 lcommaaccent.ss01 ldot.ss01 ljecyr.ss01 lslash.ss01 njecyr.ss01 numero.ss01 oe.ss01 p.ss01 q.ss01 softsign-cy.ss01 t.ss01 tbar.ss01 tcaron.ss01 tcedilla.ss01 tcommaaccent.ss01 te-cy.ss01 ve-cy.ss01 yen.ss01 yeru-cy.ss01]; +@case = [arrowdown.case arrowdown.ss01.case arrowleft.case arrowleft.ss01.case arrowright.case arrowright.ss01.case arrowup.case arrowup.ss01.case backslash.case bar.case braceleft.case braceright.case bracketleft.case bracketright.case brokenbar.case bullet.case colon.case emdash.case endash.case exclamdown.case guillemetleft.case guillemetright.case guilsinglleft.case guilsinglright.case hyphen.case parenleft.case parenright.case questiondown.case semicolon.case at.case bracketangleleft.case bracketangleright.case slash.case]; +@case_def = [arrowdown arrowdown.ss01 arrowleft arrowleft.ss01 arrowright arrowright.ss01 arrowup arrowup.ss01 backslash bar braceleft braceright bracketleft bracketright brokenbar bullet colon emdash endash exclamdown guillemetleft guillemetright guilsinglleft guilsinglright hyphen parenleft parenright questiondown semicolon at bracketangleleft bracketangleright slash]; +@cpsp = [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 Agrave Aacute Acircumflex Atilde Adieresis Aring AE Ccedilla Egrave Eacute Ecircumflex Edieresis Igrave Iacute Icircumflex Idieresis Eth Ntilde Ograve Oacute Ocircumflex Otilde Odieresis Oslash Ugrave Uacute Ucircumflex Udieresis Yacute Thorn Amacron Abreve Aogonek Cacute Ccircumflex Cdotaccent Ccaron Dcaron Dcroat Emacron Ebreve Edotaccent Eogonek Ecaron Gcircumflex Gbreve Gdotaccent Gcommaaccent Hcircumflex Hbar Itilde Imacron Ibreve Iogonek Idotaccent IJ Jcircumflex Kcommaaccent Lacute Lcommaaccent Lcaron Ldot Lslash Nacute Ncommaaccent Ncaron Eng Omacron Obreve Ohungarumlaut OE Racute Rcommaaccent Rcaron Sacute Scircumflex Scedilla Scaron Tcedilla Tcaron Tbar Utilde Umacron Ubreve Uring Uhungarumlaut Uogonek Wcircumflex Ycircumflex Ydieresis Zacute Zdotaccent Zcaron Schwa Acaron Gacute AEacute Oslashacute Scommaaccent Tcommaaccent Delta Omega Iegravecyr uniF43A A-cy.accented E-cy.accented Ii-cy.accented O-cy.accented U-cy.accented Yeru-cy.accented Ereversed-cy.accented Iu-cy.accented Ia-cy.accented Io-cy.accented uniF498 uniF49A uniF49C uniF49E uniF4C6 uniF4CC uniF4D2 uniF4D4 uniF4D6 uniF4D8 uniF50E uniF510 uniF512 uniF514 uniF516 uniF518 uniF51A uniF51C uniF51E Yeru-cymacron uniF522 uniF524 uniF526 uniF528 uniF52A uniF52C uniF52E uniF532 uniF536 uniF538 uniF830 uniF833 uniF839 uniF86F uniF872 uniF875 uniF878 uniF87B uniF87E Io-cy Djecyr Gjecyr E-cy Dze-cy I-cy Yi-cy Jecyr Ljecyr Njecyr Tshecyr Kjecyr Igravecyr Ushort-cy Dzhecyr A-cy Be-cy Ve-cy Ge-cy De-cy Ie-cy Zhe-cy Ze-cy Ii-cy Iishort-cy Ka-cy El-cy Em-cy En-cy O-cy Pe-cy Er-cy Es-cy Te-cy U-cy Ef-cy Ha-cy Tse-cy Che-cy Sha-cy Shcha-cy Hardsign-cy Yeru-cy Softsign-cy Ereversed-cy Iu-cy Ia-cy Omegacyr Yatcyr Eiotifiedcyr Yuslittlecyr Yuslittleiotifiedcyr Yusbigcyr Yusbigiotifiedcyr Ksicyr Psicyr Fitacyr Izhitsacyr Izhitsagravedblcyr Ukcyr Omegaroundcyr Omegatitlocyr Otcyr Koppacyr Ishortsharptailcyr Semisoftcyr Ertickcyr Gheupturn-cy Gestrokecyr Gehookcyr Zhetailcyr Zetailcyr Katailcyr Kaverticalstrokecyr Kastrokecyr Kabashkcyr Entailcyr Engecyr Pehookcyr Haabkhcyr Estailcyr Tetailcyr Ustraightcyr Ustraightstrokecyr Xatailcyr Tetsecyr Chetailcyr Chevertcyr Shhacyr Cheabkhcyr Cheabkhtailcyr Palochkacyr Zhebrevecyr Kahookcyr Elsharptailcyr Enhookcyr Ensharptailcyr Chekhakascyr Emsharptailcyr Abrevecyr Adieresiscyr Aiecyr Iebrevecyr Schwacyr Schwadieresiscyr Zhedieresiscyr Zedieresiscyr Dzeabkhcyr Imacroncyr Idieresiscyr Odieresiscyr Obarcyr Obardieresiscyr Ereverseddieresiscyr Umacroncyr Udieresiscyr Uacutedblcyr Chedieresiscyr Getailcyr Ylongdieresiscyr Gehookstrokecyr Hahookcyr Hastrokecyr Dekomicyr Djekomicyr Zjekomicyr Dzjekomicyr Ljekomicyr Njekomicyr Sjekomicyr Tjekomicyr Reversedzecyr Elhookcyr Lhacyr Rhacyr Yaecyr Qacyr Wecyr Kaaleutcyr Elmiddlehookcyr Enmiddlehookcyr Petailcyr Shhatailcyr Enhookleftcyr Dzzhecyr Dchecyr Eltailcyr Wgrave Wacute Wdieresis Germandbls uni1EBC Zemlya-cy Dzelo-cy DzeReversed-cy Iota-cy Djerv-cy UkMonograph-cy OmegaBroad-cy YerNeutral-cy YeruBackYer-cy YatIotified-cy YuReversed-cy IotifiedA-cy YusClosedlittle-cy YusBlended-cy YusiotifiedClosedLittle-cy Yn-cy TseReversed-cy DeSoft-cy ElSoft-cy EmSoft-cy OMonocular-cy OBinocular-cy ODoubleMonocular-cy Dwe-cy Dzwe-cy Zhwe-cy Cche-cy Dzze-cy TeWithMiddleHook-cy Twe-cy Tswe-cy Tsse-cy Tche-cy Hwe-cy Shwe-cy DoubleO-cy CrossedO-cy A-cy.ss01 A.ss01 AE.ss01 Aacute.ss01 Abreve.ss01 Acircumflex.ss01 Adieresis.ss01 Agrave.ss01 Amacron.ss01 Aogonek.ss01 Aring.ss01 Atilde.ss01 Em-cy.ss01 Eng.ss01 G.ss01 Gacute.ss01 Gbreve.ss01 Gcircumflex.ss01 Gcommaaccent.ss01 Gdotaccent.ss01 Ha-cy.ss01 Ia-cy.ss01 J.ss01 Jcircumflex.ss01 K.ss01 Ka-cy.ss01 Kcommaaccent.ss01 M.ss01 N.ss01 Nacute.ss01 Ncaron.ss01 Ncommaaccent.ss01 Ntilde.ss01 Q.ss01 U-cy.ss01 Ushort-cy.ss01 V.ss01 W.ss01 Wacute.ss01 Wcircumflex.ss01 Wdieresis.ss01 Wgrave.ss01 X.ss01 Y.ss01 Yacute.ss01 Ycircumflex.ss01 Ydieresis.ss01 Z.ss01 Zacute.ss01 Zcaron.ss01 Zdotaccent.ss01 Zetailcyr.BSH Gestrokecyr.BSH Estailcyr.BSH Estailcyr.CHU Zhe-cy.ss01]; +@locl_BGR = [De-cy.BGR Ef-cy.BGR El-cy.BGR de-cy.BGR eiotifiedcyr.BGR el-cy.BGR ge-cy.BGR hardsign-cy.BGR ii-cy.BGR iishort-cy.BGR iotifieda-cy.BGR iu-cy.BGR ka-cy.BGR pe-cy.BGR sha-cy.BGR shcha-cy.BGR softsign-cy.BGR te-cy.BGR tse-cy.BGR ve-cy.BGR yatcyr.BGR yusbigiotifiedcyr.BGR ze-cy.BGR zhe-cy.BGR]; +@locl_def = [De-cy Ef-cy El-cy de-cy eiotifiedcyr el-cy ge-cy hardsign-cy ii-cy iishort-cy iotifieda-cy iu-cy ka-cy pe-cy sha-cy shcha-cy softsign-cy te-cy tse-cy ve-cy yatcyr yusbigiotifiedcyr ze-cy zhe-cy]; +@locl.SRB = [be-cy.SRB iegravecyr.SRB igravecyr.SRB]; +@loclSRB_def = [be-cy iegravecyr igravecyr]; +@accent = [grave acute.case grave.case acute]; +@pics = [neptune leo virgo bishopwhite knightwhite rookblack bishopblack knightblack heartwhite diamondwhite-misc spadewhite heart clubwhite crossedswords flower floretteblack florettewhite floretteoutlinedpetalledblackeight]; +@pics_def = [A B C D E F G H I J K L M N O P Q R]; +#/< otclasses + +#/> tags +@tag.omultiocular-cy.alt = [omultiocular-cy]; +@tag.yi-cy_yi-cy.alt = [uniE000]; +#/< tags +#< classes + +# automatic +@Uppercase = [ A Aacute Abreve Acircumflex Adieresis Agrave Amacron Aogonek Aring Atilde AE B C Cacute Ccaron Ccedilla Ccircumflex Cdotaccent D Eth Dcaron Dcroat E Eacute Ebreve Ecaron Ecircumflex Edieresis Edotaccent Egrave Emacron Eogonek F G Gacute Gbreve Gcircumflex Gcommaaccent Gdotaccent H Hbar Hcircumflex I IJ Iacute Ibreve Icircumflex Idieresis Idotaccent Igrave Imacron Iogonek Itilde J Jcircumflex K Kcommaaccent L Lacute Lcaron Lcommaaccent Ldot Lslash M N Nacute Ncaron Ncommaaccent Eng Ntilde O Oacute Obreve Ocircumflex Odieresis Ograve Ohungarumlaut Omacron Oslash Otilde OE P Thorn Q R Racute Rcaron Rcommaaccent S Sacute Scaron Scedilla Scircumflex Scommaaccent Germandbls T Tbar Tcaron Tcedilla Tcommaaccent U Uacute Ubreve Ucircumflex Udieresis Ugrave Uhungarumlaut Umacron Uogonek Uring Utilde V W Wacute Wcircumflex Wdieresis Wgrave X Y Yacute Ycircumflex Ydieresis Z Zacute Zcaron Zdotaccent A.ss01 Aacute.ss01 Abreve.ss01 Acircumflex.ss01 Adieresis.ss01 Agrave.ss01 Amacron.ss01 Aogonek.ss01 Aring.ss01 Atilde.ss01 AE.ss01 G.ss01 Gacute.ss01 Gbreve.ss01 Gcircumflex.ss01 Gcommaaccent.ss01 Gdotaccent.ss01 J.ss01 Jcircumflex.ss01 K.ss01 Kcommaaccent.ss01 M.ss01 N.ss01 Nacute.ss01 Ncaron.ss01 Ncommaaccent.ss01 Eng.ss01 Ntilde.ss01 Q.ss01 V.ss01 W.ss01 Wacute.ss01 Wcircumflex.ss01 Wdieresis.ss01 Wgrave.ss01 X.ss01 Y.ss01 Yacute.ss01 Ycircumflex.ss01 Ydieresis.ss01 Z.ss01 Zacute.ss01 Zcaron.ss01 Zdotaccent.ss01 A-cy Be-cy Ve-cy Ge-cy Gheupturn-cy De-cy Ie-cy Io-cy Zhe-cy Ze-cy Ii-cy Iishort-cy Ka-cy El-cy Em-cy En-cy O-cy Pe-cy Er-cy Es-cy Te-cy U-cy Ushort-cy Ef-cy Ha-cy Che-cy Tse-cy Sha-cy Shcha-cy Softsign-cy Hardsign-cy Yeru-cy Dze-cy E-cy Ereversed-cy I-cy Yi-cy Iu-cy Ia-cy A-cy.ss01 Zhe-cy.ss01 Ka-cy.ss01 Em-cy.ss01 U-cy.ss01 Ushort-cy.ss01 Ha-cy.ss01 Ia-cy.ss01 ]; + +# Prefix: Languagesystems +# automatic +languagesystem DFLT dflt; + +languagesystem latn dflt; +languagesystem latn ROM; +languagesystem latn MOL; +languagesystem latn CAT; +languagesystem cyrl dflt; +languagesystem cyrl BGR; +languagesystem cyrl BSH; +languagesystem cyrl CHU; +languagesystem cyrl SRB; +languagesystem cyrl MKD; + +lookup liga_accent { + sub @accent by [grave grave grave grave]; +} liga_accent; +feature aalt { +# Access All Alternates + +#> feature + feature locl; + feature sups; + feature case; + feature lnum; + feature pnum; + feature tnum; + feature onum; + feature salt; + feature ss01; + feature hist; +#< feature +} aalt; +feature ccmp { +# automatic +lookup ccmp_Other_1 { + @Markscomb = [dieresis dotaccent grave acute hungarumlaut circumflex caron breve ring tilde macron]; + @MarkscombCase = [dieresis.case dotaccent.case grave.case acute.case hungarumlaut.case circumflex.case caron.case breve.case ring.case tilde.case macron.case]; + sub @Markscomb @Markscomb' by @MarkscombCase; + sub @cpsp @Markscomb' by @MarkscombCase; +} ccmp_Other_1; + +lookup ccmp_Other_2 { + sub @Markscomb' @MarkscombCase by @MarkscombCase; + sub @MarkscombCase @Markscomb' by @MarkscombCase; +} ccmp_Other_2; +} ccmp; + +feature locl { +# automatic + +script latn; + language ROM; + language MOL; + sub Scedilla by Scommaaccent; + sub scedilla by scommaaccent; + sub Tcedilla by Tcommaaccent; + sub tcedilla by tcommaaccent; + +script latn; + language CAT; + sub l' periodcentered' l by ldot; + sub L' periodcentered' L by Ldot; + +script cyrl; # Cyrillic + language SRB ; # Serbian + + lookup locl_SRB_MCD { + # GSUB lookup 20, type 11 (Single) + sub @loclSRB_def by @locl.SRB; + } locl_SRB_MCD; + + language MKD ; # Serbian + lookup locl_SRB_MCD; + + language BSH ; # Bashkir + sub [Gestrokecyr gestrokecyr Zetailcyr zetailcyr] by [Gestrokecyr.BSH gestrokecyr.BSH Zetailcyr.BSH zetailcyr.BSH]; + sub [Estailcyr estailcyr] by [Estailcyr.BSH estailcyr.BSH]; + + language CHU ; # Chuvash + sub [Estailcyr estailcyr] by [Estailcyr.CHU estailcyr.CHU]; + + language BGR ; # Bulgarian + sub @locl_def by @locl_BGR; + +} locl; + +feature sups { +# Superscript + +#> feature + sub one by onesuperior; + sub three by threesuperior; + sub two by twosuperior; +#< feature +} sups; +feature ordn { +# Ordinals + +#> feature + sub [zero one two three four five six seven eight nine] [A a]' by ordfeminine; + sub [zero one two three four five six seven eight nine] [O o]' by ordmasculine; + sub N o period by numero; +#< feature +} ordn; +feature case { +# Case Sensitive Forms + +#> feature + + sub @case_def by @case; + +#< feature +} case; +feature liga { +# Standard Ligatures + +#> feature +sub f f i by f_f_i; +sub f f l by f_f_l; +sub f f by f_f; +sub f i by fi; +sub f l by fl; +sub yi-cy yi-cy by uniE000; +sub hyphen greater by arrowright; +sub less hyphen by arrowleft; +sub backslash bar slash by arrowdown; +sub slash bar backslash by arrowup; + + lookup accent_2 { + sub E-cy @accent' lookup liga_accent; + sub I-cy @accent' lookup liga_accent; + sub Yi-cy @accent' lookup liga_accent; + sub A-cy @accent' lookup liga_accent; + sub Ie-cy @accent' lookup liga_accent; + sub Ii-cy @accent' lookup liga_accent; + sub O-cy @accent' lookup liga_accent; + sub U-cy @accent' lookup liga_accent; + sub Yeru-cy @accent' lookup liga_accent; + sub Ereversed-cy @accent' lookup liga_accent; + sub Iu-cy @accent' lookup liga_accent; + sub Ia-cy @accent' lookup liga_accent; + sub Io-cy @accent' lookup liga_accent; + sub Yatcyr @accent' lookup liga_accent; + + sub e-cy @accent' lookup liga_accent; + sub i-cy @accent' lookup liga_accent; + sub yi-cy @accent' lookup liga_accent; + sub a-cy @accent' lookup liga_accent; + sub ie-cy @accent' lookup liga_accent; + sub ii-cy @accent' lookup liga_accent; + sub o-cy @accent' lookup liga_accent; + sub u-cy @accent' lookup liga_accent; + sub yeru-cy @accent' lookup liga_accent; + sub ereversed-cy @accent' lookup liga_accent; + sub iu-cy @accent' lookup liga_accent; + sub ia-cy @accent' lookup liga_accent; + sub io-cy @accent' lookup liga_accent; + sub yatcyr @accent' lookup liga_accent; + } accent_2; + + lookup accent_3 { + sub E-cy grave by uniF45D; + sub I-cy grave by uniF45E; + sub Yi-cy grave by uniF45F; + sub A-cy grave by A-cy.accented; + sub Ie-cy grave by E-cy.accented; + sub Ii-cy grave by Ii-cy.accented; + sub O-cy grave by O-cy.accented; + sub U-cy grave by U-cy.accented; + sub Yeru-cy grave by Yeru-cy.accented; + sub Ereversed-cy grave by Ereversed-cy.accented; + sub Iu-cy grave by Iu-cy.accented; + sub Ia-cy grave by Ia-cy.accented; + sub Io-cy grave by Io-cy.accented; + sub Yatcyr grave by uniF478; + + sub e-cy grave by uniF475; + sub i-cy grave by uniF476; + sub yi-cy grave by uniF477; + sub a-cy grave by a-cy.accented; + sub ie-cy grave by e-cy.accented; + sub ii-cy grave by ii-cy.accented; + sub o-cy grave by o-cy.accented; + sub u-cy grave by u-cy.accented; + sub yeru-cy grave by yeru-cy.accented; + sub ereversed-cy grave by ereversed-cy.accented; + sub iu-cy grave by iu-cy.accented; + sub ia-cy grave by ia-cy.accented; + sub io-cy grave by io-cy.accented; + sub yatcyr grave by uniF479; + } accent_3; + +#< feature +} liga; +feature dlig { +# Discretionary Ligatures + +#> feature + +sub M a c P a w l o g o by uniE01A; +sub M P a w l o g o by uniE01A; +sub M P l o g o by uniE01A; +sub M A C P A W L O G O by uniE01A; +sub m a c p a w l o g o by uniE01A; +sub t r i d e n t by neptune; +sub t r y z u b by neptune; +sub u k r a i n e s i g n by neptune; +sub T R I D E N T by neptune; +sub T R Y Z U B by neptune; +sub U k r a i n e S i g n by neptune; +sub T r y z u b by neptune; +sub T r i d e n t by neptune; +sub Te-cy Er-cy Ii-cy Ze-cy U-cy Be-cy by neptune; + +#< feature +} dlig; +feature lnum { +# Lining Figures + +#> feature + sub eight.osf by eight.tf; + sub eight by eight.tf; + sub five.osf by five.tf; + sub five by five.tf; + sub four.osf by four.tf; + sub four by four.tf; + sub nine.osf by nine.tf; + sub nine by nine.tf; + sub one.osf by one.tf; + sub one by one.tf; + sub seven.osf by seven.tf; + sub seven by seven.tf; + sub six.osf by six.tf; + sub six by six.tf; + sub three.osf by three.tf; + sub three by three.tf; + sub two.osf by two.tf; + sub two by two.tf; + sub zero.osf by zero.tf; + sub zero by zero.tf; +#< feature +} lnum; +feature pnum { +# Proportional Figures + +#> feature + sub eight.tf by eight.osf; + sub eight by eight.osf; + sub five.tf by five.osf; + sub five by five.osf; + sub four.tf by four.osf; + sub four by four.osf; + sub nine.tf by nine.osf; + sub nine by nine.osf; + sub one.tf by one.osf; + sub one by one.osf; + sub seven.tf by seven.osf; + sub seven by seven.osf; + sub six.tf by six.osf; + sub six by six.osf; + sub three.tf by three.osf; + sub three by three.osf; + sub two.tf by two.osf; + sub two by two.osf; + sub zero.tf by zero.osf; + sub zero by zero.osf; +#< feature +} pnum; +feature tnum { +# Tabular Figures + +#> feature + sub eight by eight.tf; + sub eight.osf by eight.tf; + sub five by five.tf; + sub five.osf by five.tf; + sub four by four.tf; + sub four.osf by four.tf; + sub nine by nine.tf; + sub nine.osf by nine.tf; + sub one by one.tf; + sub one.osf by one.tf; + sub seven by seven.tf; + sub seven.osf by seven.tf; + sub six by six.tf; + sub six.osf by six.tf; + sub three by three.tf; + sub three.osf by three.tf; + sub two by two.tf; + sub two.osf by two.tf; + sub zero by zero.tf; + sub zero.osf by zero.tf; +#< feature +} tnum; +feature onum { +# Oldstyle Figures + +#> feature + sub eight by eight.osf; + sub eight.tf by eight.osf; + sub five by five.osf; + sub five.tf by five.osf; + sub four by four.osf; + sub four.tf by four.osf; + sub nine by nine.osf; + sub nine.tf by nine.osf; + sub one by one.osf; + sub one.tf by one.osf; + sub seven by seven.osf; + sub seven.tf by seven.osf; + sub six by six.osf; + sub six.tf by six.osf; + sub three by three.osf; + sub three.tf by three.osf; + sub two by two.osf; + sub two.tf by two.osf; + sub zero by zero.osf; + sub zero.tf by zero.osf; +#< feature +} onum; +feature salt { +# Stylistic Alternates + +#> feature + sub A from [A.ss01]; + sub A-cy from [A-cy.ss01]; + sub AE from [AE.ss01]; + sub Aacute from [Aacute.ss01]; + sub Abreve from [Abreve.ss01]; + sub Acircumflex from [Acircumflex.ss01]; + sub Adieresis from [Adieresis.ss01]; + sub Agrave from [Agrave.ss01]; + sub Amacron from [Amacron.ss01]; + sub Aogonek from [Aogonek.ss01]; + sub Aring from [Aring.ss01]; + sub Atilde from [Atilde.ss01]; + sub Em-cy from [Em-cy.ss01]; + sub Eng from [Eng.ss01]; + sub G from [G.ss01]; + sub Gacute from [Gacute.ss01]; + sub Gbreve from [Gbreve.ss01]; + sub Gcircumflex from [Gcircumflex.ss01]; + sub Gcommaaccent from [Gcommaaccent.ss01]; + sub Gdotaccent from [Gdotaccent.ss01]; + sub Ha-cy from [Ha-cy.ss01]; + sub Ia-cy from [Ia-cy.ss01]; + sub J from [J.ss01]; + sub Jcircumflex from [Jcircumflex.ss01]; + sub K from [K.ss01]; + sub Ka-cy from [Ka-cy.ss01]; + sub Kcommaaccent from [Kcommaaccent.ss01]; + sub M from [M.ss01]; + sub N from [N.ss01]; + sub Nacute from [Nacute.ss01]; + sub Ncaron from [Ncaron.ss01]; + sub Ncommaaccent from [Ncommaaccent.ss01]; + sub Ntilde from [Ntilde.ss01]; + sub Q from [Q.ss01]; + sub U-cy from [U-cy.ss01]; + sub Ushort-cy from [Ushort-cy.ss01]; + sub V from [V.ss01]; + sub W from [W.ss01]; + sub Wacute from [Wacute.ss01]; + sub Wcircumflex from [Wcircumflex.ss01]; + sub Wdieresis from [Wdieresis.ss01]; + sub Wgrave from [Wgrave.ss01]; + sub X from [X.ss01]; + sub Y from [Y.ss01]; + sub Yacute from [Yacute.ss01]; + sub Ycircumflex from [Ycircumflex.ss01]; + sub Ydieresis from [Ydieresis.ss01]; + sub Z from [Z.ss01]; + sub Zacute from [Zacute.ss01]; + sub Zcaron from [Zcaron.ss01]; + sub Zdotaccent from [Zdotaccent.ss01]; + sub Zhe-cy from [Zhe-cy.ss01]; + sub a from [a.ss01]; + sub a-cy from [a-cy.ss01]; + sub aacute from [aacute.ss01]; + sub abreve from [abreve.ss01]; + sub acircumflex from [acircumflex.ss01]; + sub adieresis from [adieresis.ss01]; + sub ae from [ae.ss01]; + sub agrave from [agrave.ss01]; + sub amacron from [amacron.ss01]; + sub aogonek from [aogonek.ss01]; + sub aring from [aring.ss01]; + sub arrowdown from [arrowdown.ss01]; + sub arrowleft from [arrowleft.ss01]; + sub arrowright from [arrowright.ss01]; + sub arrowup from [arrowup.ss01]; + sub atilde from [atilde.ss01]; + sub b from [b.ss01]; + sub caron from [caron.salt]; + sub commaaccentcomb from [commaaccentcomb.salt]; + sub d from [d.ss01]; + sub dcaron from [dcaron.ss01]; + sub dcroat from [dcroat.ss01]; + sub de-cy from [de-cy.ss01]; + sub e from [e.ss01]; + sub eacute from [eacute.ss01]; + sub ebreve from [ebreve.ss01]; + sub ecaron from [ecaron.ss01]; + sub ecircumflex from [ecircumflex.ss01]; + sub edieresis from [edieresis.ss01]; + sub edotaccent from [edotaccent.ss01]; + sub egrave from [egrave.ss01]; + sub el-cy from [el-cy.ss01]; + sub emacron from [emacron.ss01]; + sub eogonek from [eogonek.ss01]; + sub er-cy from [er-cy.ss01]; + sub f from [f.ss01]; + sub f_f from [f_f.ss01]; + sub f_f_i from [f_f_i.ss01]; + sub f_f_l from [f_f_l.ss01]; + sub fi from [fi.ss01]; + sub fl from [fl.ss01]; + sub g from [g.ss01]; + sub gacute from [gacute.ss01]; + sub gbreve from [gbreve.ss01]; + sub gcircumflex from [gcircumflex.ss01]; + sub gcommaaccent from [gcommaaccent.ss01]; + sub gdotaccent from [gdotaccent.ss01]; + sub germandbls from [germandbls.ss01]; + sub hardsign-cy from [hardsign-cy.ss01]; + sub ia-cy from [ia-cy.ss01]; + sub ie-cy from [ie-cy.ss01]; + sub io-cy from [io-cy.ss01]; + sub l from [l.ss01]; + sub lacute from [lacute.ss01]; + sub lcaron from [lcaron.ss01]; + sub lcommaaccent from [lcommaaccent.ss01]; + sub ldot from [ldot.ss01]; + sub ljecyr from [ljecyr.ss01]; + sub lslash from [lslash.ss01]; + sub njecyr from [njecyr.ss01]; + sub numero from [numero.ss01]; + sub oe from [oe.ss01]; + sub p from [p.ss01]; + sub q from [q.ss01]; + sub softsign-cy from [softsign-cy.ss01]; + sub t from [t.ss01]; + sub tbar from [tbar.ss01]; + sub tcaron from [tcaron.ss01]; + sub tcedilla from [tcedilla.ss01]; + sub tcommaaccent from [tcommaaccent.ss01]; + sub te-cy from [te-cy.ss01]; + sub uniE000 from [uniE000.alt]; + sub ve-cy from [ve-cy.ss01]; + sub yen from [yen.ss01]; + sub yeru-cy from [yeru-cy.ss01]; +#< feature +} salt; +feature ss03 { +# Stylistic Set 01–20 + +#> feature + featureNames { + name "Bulgarian forms"; + name 1 "Bulgarian forms"; + }; + + sub @locl_def by @locl_BGR; + +#< feature +} ss03; +feature ss04 { +# Stylistic Set 01–20 + +#> feature + featureNames { + name "Serbian/Macedonian forms"; + name 1 "Serbian/Macedonian forms"; + }; + + sub @loclSRB_def by @locl.SRB; + +#< feature +} ss04; +feature ss01 { +# Stylistic Set 01–20 + +#> feature + + featureNames { + name "Humanistic forms"; + name 1 "Humanistic forms"; + }; + + sub @ss01_def by @ss01; + +#< feature +} ss01; +feature ss05 { +# Stylistic Set 01–20 + +#> feature + + featureNames { + name "Ukrainian pictograms"; + name 1 "Ukrainian pictograms"; + }; + + sub @pics_def by @pics; + +#< feature +} ss05; +feature hist { +# Historical Forms + +#> feature + sub e-cy by e-cy.hist; + sub s by longs; +#< feature +} hist; +feature frac { +# Fractions + +#> feature +lookup frac_precomposed { + + sub one slash four by onequarter; + sub one slash two by onehalf; + sub three slash four by threequarters; + sub one fraction four by onequarter; + sub one fraction two by onehalf; + sub three fraction four by threequarters; +} frac_precomposed; +#< feature +} frac; +feature cpsp { +# Capital Spacing + +#> feature + + pos @cpsp <5 0 10 0>; + +#< feature +} cpsp; +feature dnom { +# Denominator + +#> feature + sub thousandscyr by thousandscyr.dnom; +#< feature +} dnom; diff --git a/sources/FixelDisplay-Bold.ufo/fontinfo.plist b/sources/FixelDisplay-Bold.ufo/fontinfo.plist new file mode 100644 index 00000000..e5fa7d0b --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/fontinfo.plist @@ -0,0 +1,207 @@ + + + + + ascender + 720 + capHeight + 700 + descender + -200 + familyName + Fixel Display + guidelines + + + angle + 0 + name + m + x + 0 + y + -675.6 + + + angle + 0 + name + m + x + 0 + y + 189 + + + italicAngle + 0 + openTypeGaspRangeRecords + + + rangeGaspBehavior + + 0 + 1 + 2 + 3 + + rangeMaxPPEM + 65535 + + + openTypeHeadCreated + 2023/09/05 09:25:46 + openTypeHeadFlags + + + openTypeHheaAscender + 720 + openTypeHheaCaretOffset + -0 + openTypeHheaDescender + -190 + openTypeHheaLineGap + 100 + openTypeNameDesigner + AlfaBravo + openTypeNameDesignerURL + https://alfabravo.design/ + openTypeNameManufacturer + Kyrylo Tkachov, Marchela Mozhyna, Serhii Makarenko, Maria Weinstein, Zakhar Kryvoshyya + + openTypeNameManufacturerURL + https://macpaw.com/ + openTypeNamePreferredFamilyName + Fixel Display + openTypeNamePreferredSubfamilyName + Bold + openTypeNameVersion + Version 1.200 + openTypeOS2CodePageRanges + + 0 + 1 + 2 + 4 + 7 + 29 + + openTypeOS2Panose + + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + + openTypeOS2Selection + + + openTypeOS2StrikeoutPosition + 300 + openTypeOS2StrikeoutSize + 50 + openTypeOS2SubscriptXOffset + -0 + openTypeOS2SubscriptXSize + 650 + openTypeOS2SubscriptYOffset + 75 + openTypeOS2SubscriptYSize + 600 + openTypeOS2SuperscriptXOffset + -0 + openTypeOS2SuperscriptXSize + 650 + openTypeOS2SuperscriptYOffset + 350 + openTypeOS2SuperscriptYSize + 600 + openTypeOS2Type + + 2 + + openTypeOS2TypoAscender + 720 + openTypeOS2TypoDescender + -200 + openTypeOS2TypoLineGap + 290 + openTypeOS2UnicodeRanges + + 0 + 1 + 2 + 9 + 31 + 33 + 60 + + openTypeOS2WeightClass + 700 + openTypeOS2WidthClass + 5 + openTypeOS2WinAscent + 750 + openTypeOS2WinDescent + 250 + postscriptBlueFuzz + 1 + postscriptBlueScale + 0.039625 + postscriptBlueShift + 7 + postscriptBlueValues + + -20 + 0 + + postscriptFontName + FixelDisplay-Bold + postscriptForceBold + + postscriptFullName + Fixel Display Bold + postscriptIsFixedPitch + + postscriptStemSnapH + + 69 + 74 + 76 + 80 + 99 + + postscriptStemSnapV + + 74 + 80 + 93 + + postscriptUnderlinePosition + -100 + postscriptUnderlineThickness + 50 + postscriptWeightName + Bold + styleMapFamilyName + Fixel Display Bold + styleMapStyleName + bold + styleName + Bold + unitsPerEm + 1000 + versionMajor + 1 + versionMinor + 200 + xHeight + 520 + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/A_-cy.accented.glif b/sources/FixelDisplay-Bold.ufo/glyphs/A_-cy.accented.glif new file mode 100644 index 00000000..43aba767 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/A_-cy.accented.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+acute.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/A_-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/A_-cy.glif new file mode 100644 index 00000000..ab747206 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/A_-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/A_-cy.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/A_-cy.ss01.glif new file mode 100644 index 00000000..708b994e --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/A_-cy.ss01.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + com.fontlab.recipe + A + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/A_.glif b/sources/FixelDisplay-Bold.ufo/glyphs/A_.glif new file mode 100644 index 00000000..f2f6ba1e --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/A_.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/A_.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/A_.ss01.glif new file mode 100644 index 00000000..d8ea5bea --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/A_.ss01.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/A_E_.glif b/sources/FixelDisplay-Bold.ufo/glyphs/A_E_.glif new file mode 100644 index 00000000..4e251840 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/A_E_.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + A + com.fontlab.metricsRight + E + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/A_E_.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/A_E_.ss01.glif new file mode 100644 index 00000000..15937a0a --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/A_E_.ss01.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + A.ss01 + com.fontlab.metricsRight + E + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/A_E_acute.glif b/sources/FixelDisplay-Bold.ufo/glyphs/A_E_acute.glif new file mode 100644 index 00000000..b570d091 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/A_E_acute.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + AE+acute.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/A_acute.glif b/sources/FixelDisplay-Bold.ufo/glyphs/A_acute.glif new file mode 100644 index 00000000..28bf516d --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/A_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+acute.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/A_acute.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/A_acute.ss01.glif new file mode 100644 index 00000000..1b0126bc --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/A_acute.ss01.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + A.ss01+acute.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/A_breve.glif b/sources/FixelDisplay-Bold.ufo/glyphs/A_breve.glif new file mode 100644 index 00000000..49300671 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/A_breve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+breve.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/A_breve.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/A_breve.ss01.glif new file mode 100644 index 00000000..62753d77 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/A_breve.ss01.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + A.ss01+breve.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/A_brevecyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/A_brevecyr.glif new file mode 100644 index 00000000..21bfdbf8 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/A_brevecyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+breve.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/A_caron.glif b/sources/FixelDisplay-Bold.ufo/glyphs/A_caron.glif new file mode 100644 index 00000000..b4e54e48 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/A_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+caron.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/A_circumflex.glif b/sources/FixelDisplay-Bold.ufo/glyphs/A_circumflex.glif new file mode 100644 index 00000000..fb5aed4b --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/A_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+circumflex.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/A_circumflex.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/A_circumflex.ss01.glif new file mode 100644 index 00000000..4922b3d9 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/A_circumflex.ss01.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + A.ss01+circumflex.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/A_dieresis.glif b/sources/FixelDisplay-Bold.ufo/glyphs/A_dieresis.glif new file mode 100644 index 00000000..82f2668c --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/A_dieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+dieresis.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/A_dieresis.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/A_dieresis.ss01.glif new file mode 100644 index 00000000..28e675e0 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/A_dieresis.ss01.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + A.ss01+dieresis.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/A_dieresiscyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/A_dieresiscyr.glif new file mode 100644 index 00000000..9075c42d --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/A_dieresiscyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/A_grave.glif b/sources/FixelDisplay-Bold.ufo/glyphs/A_grave.glif new file mode 100644 index 00000000..3ec49594 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/A_grave.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+grave.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/A_grave.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/A_grave.ss01.glif new file mode 100644 index 00000000..a139a224 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/A_grave.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A.ss01+grave.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/A_iecyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/A_iecyr.glif new file mode 100644 index 00000000..7abd960d --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/A_iecyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + AE + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/A_macron.glif b/sources/FixelDisplay-Bold.ufo/glyphs/A_macron.glif new file mode 100644 index 00000000..a26c06ae --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/A_macron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+macron.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/A_macron.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/A_macron.ss01.glif new file mode 100644 index 00000000..b5b070aa --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/A_macron.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A.ss01+macron.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/A_ogonek.glif b/sources/FixelDisplay-Bold.ufo/glyphs/A_ogonek.glif new file mode 100644 index 00000000..b6b6b32e --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/A_ogonek.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+ogonek + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/A_ogonek.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/A_ogonek.ss01.glif new file mode 100644 index 00000000..54fbad5e --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/A_ogonek.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A.ss01+ogonek + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/A_ring.glif b/sources/FixelDisplay-Bold.ufo/glyphs/A_ring.glif new file mode 100644 index 00000000..af8574d8 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/A_ring.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+ring.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/A_ring.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/A_ring.ss01.glif new file mode 100644 index 00000000..bd75132c --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/A_ring.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A.ss01+ring.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/A_tilde.glif b/sources/FixelDisplay-Bold.ufo/glyphs/A_tilde.glif new file mode 100644 index 00000000..6d56cfbc --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/A_tilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+tilde.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/A_tilde.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/A_tilde.ss01.glif new file mode 100644 index 00000000..ed24e383 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/A_tilde.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A.ss01+tilde.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/B_.glif b/sources/FixelDisplay-Bold.ufo/glyphs/B_.glif new file mode 100644 index 00000000..f549148b --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/B_.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/B_e-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/B_e-cy.glif new file mode 100644 index 00000000..f1ececa4 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/B_e-cy.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + B-10 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/C_.glif b/sources/FixelDisplay-Bold.ufo/glyphs/C_.glif new file mode 100644 index 00000000..9a444182 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/C_.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/C_R_.glif b/sources/FixelDisplay-Bold.ufo/glyphs/C_R_.glif new file mode 100644 index 00000000..a38a285e --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/C_R_.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/C_acute.glif b/sources/FixelDisplay-Bold.ufo/glyphs/C_acute.glif new file mode 100644 index 00000000..d0a8d09f --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/C_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+acute.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/C_caron.glif b/sources/FixelDisplay-Bold.ufo/glyphs/C_caron.glif new file mode 100644 index 00000000..d1084294 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/C_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+caron.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/C_cedilla.glif b/sources/FixelDisplay-Bold.ufo/glyphs/C_cedilla.glif new file mode 100644 index 00000000..398a58d5 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/C_cedilla.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+cedilla + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/C_che-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/C_che-cy.glif new file mode 100644 index 00000000..e7a56d49 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/C_che-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ч + com.fontlab.metricsRight + Ч + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/C_circumflex.glif b/sources/FixelDisplay-Bold.ufo/glyphs/C_circumflex.glif new file mode 100644 index 00000000..4a988a8e --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/C_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+circumflex.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/C_dotaccent.glif b/sources/FixelDisplay-Bold.ufo/glyphs/C_dotaccent.glif new file mode 100644 index 00000000..d41f4363 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/C_dotaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+dotaccent.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/C_he-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/C_he-cy.glif new file mode 100644 index 00000000..eb06e65e --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/C_he-cy.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/C_heabkhcyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/C_heabkhcyr.glif new file mode 100644 index 00000000..83784d0d --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/C_heabkhcyr.glif @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + |Schwa + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/C_heabkhtailcyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/C_heabkhtailcyr.glif new file mode 100644 index 00000000..27eca619 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/C_heabkhtailcyr.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Cheabkhcyr + com.fontlab.metricsRight + Cheabkhcyr + com.fontlab.recipe + Cheabkhcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/C_hedieresiscyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/C_hedieresiscyr.glif new file mode 100644 index 00000000..b8a2e4f6 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/C_hedieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Che-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/C_hekhakascyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/C_hekhakascyr.glif new file mode 100644 index 00000000..2782ac54 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/C_hekhakascyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ч + com.fontlab.metricsRight + H + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/C_hetailcyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/C_hetailcyr.glif new file mode 100644 index 00000000..9ebda070 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/C_hetailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ч + com.fontlab.metricsRight + Entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/C_hevertcyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/C_hevertcyr.glif new file mode 100644 index 00000000..47250ae0 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/C_hevertcyr.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ч + com.fontlab.metricsRight + Н + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/C_rossedO_-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/C_rossedO_-cy.glif new file mode 100644 index 00000000..fcb9e1a0 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/C_rossedO_-cy.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + com.fontlab.recipe + O + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/D_.glif b/sources/FixelDisplay-Bold.ufo/glyphs/D_.glif new file mode 100644 index 00000000..bd3aa7d1 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/D_.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/D_caron.glif b/sources/FixelDisplay-Bold.ufo/glyphs/D_caron.glif new file mode 100644 index 00000000..4e8364e3 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/D_caron.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + D+caron.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/D_checyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/D_checyr.glif new file mode 100644 index 00000000..69008edb --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/D_checyr.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Д+10 + com.fontlab.metricsRight + Д + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/D_croat.glif b/sources/FixelDisplay-Bold.ufo/glyphs/D_croat.glif new file mode 100644 index 00000000..76b142cd --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/D_croat.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + D + com.fontlab.recipe + Eth + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/D_e-cy.B_G_R_.glif b/sources/FixelDisplay-Bold.ufo/glyphs/D_e-cy.B_G_R_.glif new file mode 100644 index 00000000..05f36cf6 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/D_e-cy.B_G_R_.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + l() + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/D_e-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/D_e-cy.glif new file mode 100644 index 00000000..79ed7219 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/D_e-cy.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/D_eS_oft-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/D_eS_oft-cy.glif new file mode 100644 index 00000000..a2068724 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/D_eS_oft-cy.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Д + com.fontlab.metricsRight + Ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/D_ekomicyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/D_ekomicyr.glif new file mode 100644 index 00000000..f5cce008 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/D_ekomicyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.metricsLeft + |P + com.fontlab.metricsRight + H + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/D_elta.glif b/sources/FixelDisplay-Bold.ufo/glyphs/D_elta.glif new file mode 100644 index 00000000..d88f0b09 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/D_elta.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + A + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/D_jecyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/D_jecyr.glif new file mode 100644 index 00000000..f31acdb0 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/D_jecyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/D_jekomicyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/D_jekomicyr.glif new file mode 100644 index 00000000..5bd389d8 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/D_jekomicyr.glif @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Dekomicyr + com.fontlab.metricsRight + Njekomicyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/D_jerv-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/D_jerv-cy.glif new file mode 100644 index 00000000..528978a5 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/D_jerv-cy.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + r() + com.fontlab.metricsRight + O + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/D_oubleO_-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/D_oubleO_-cy.glif new file mode 100644 index 00000000..7bbf54e8 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/D_oubleO_-cy.glif @@ -0,0 +1,91 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + com.fontlab.recipe + O_O + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/D_we-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/D_we-cy.glif new file mode 100644 index 00000000..97a7b3bd --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/D_we-cy.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Д + com.fontlab.metricsRight + Д + com.fontlab.recipe + Д + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/D_ze-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/D_ze-cy.glif new file mode 100644 index 00000000..b1248027 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/D_ze-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + S + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/D_zeR_eversed-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/D_zeR_eversed-cy.glif new file mode 100644 index 00000000..d929d5db --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/D_zeR_eversed-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + S + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/D_zeabkhcyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/D_zeabkhcyr.glif new file mode 100644 index 00000000..8daa847f --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/D_zeabkhcyr.glif @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + З-10 + com.fontlab.metricsRight + З-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/D_zelo-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/D_zelo-cy.glif new file mode 100644 index 00000000..6fc54f51 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/D_zelo-cy.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/D_zhecyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/D_zhecyr.glif new file mode 100644 index 00000000..eade9c10 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/D_zhecyr.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/D_zjekomicyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/D_zjekomicyr.glif new file mode 100644 index 00000000..c8409c5e --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/D_zjekomicyr.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + З-10 + com.fontlab.metricsRight + Ц-5 + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/D_zwe-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/D_zwe-cy.glif new file mode 100644 index 00000000..3283e590 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/D_zwe-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + S + com.fontlab.metricsRight + S + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/D_zze-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/D_zze-cy.glif new file mode 100644 index 00000000..57047c96 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/D_zze-cy.glif @@ -0,0 +1,84 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Д + com.fontlab.metricsRight + Д-20 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/D_zzhecyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/D_zzhecyr.glif new file mode 100644 index 00000000..4ee4096c --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/D_zzhecyr.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Д + com.fontlab.metricsRight + Ж + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/E_-cy.accented.glif b/sources/FixelDisplay-Bold.ufo/glyphs/E_-cy.accented.glif new file mode 100644 index 00000000..5276c531 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/E_-cy.accented.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+acute.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/E_-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/E_-cy.glif new file mode 100644 index 00000000..1b10261f --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/E_-cy.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + C + com.fontlab.metricsRight + C + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/E_.glif b/sources/FixelDisplay-Bold.ufo/glyphs/E_.glif new file mode 100644 index 00000000..d5fd01cb --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/E_.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + com.fontlab.metricsRight + F+10 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/E_acute.glif b/sources/FixelDisplay-Bold.ufo/glyphs/E_acute.glif new file mode 100644 index 00000000..91ab1106 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/E_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+acute.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/E_breve.glif b/sources/FixelDisplay-Bold.ufo/glyphs/E_breve.glif new file mode 100644 index 00000000..ed815c5b --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/E_breve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+breve.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/E_caron.glif b/sources/FixelDisplay-Bold.ufo/glyphs/E_caron.glif new file mode 100644 index 00000000..f217474a --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/E_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+caron.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/E_circumflex.glif b/sources/FixelDisplay-Bold.ufo/glyphs/E_circumflex.glif new file mode 100644 index 00000000..99e032df --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/E_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+circumflex.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/E_dieresis.glif b/sources/FixelDisplay-Bold.ufo/glyphs/E_dieresis.glif new file mode 100644 index 00000000..1d011d09 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/E_dieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+dieresiscase.alt + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/E_dotaccent.glif b/sources/FixelDisplay-Bold.ufo/glyphs/E_dotaccent.glif new file mode 100644 index 00000000..e25227d3 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/E_dotaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+dotaccent.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/E_f-cy.B_G_R_.glif b/sources/FixelDisplay-Bold.ufo/glyphs/E_f-cy.B_G_R_.glif new file mode 100644 index 00000000..3f0b9333 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/E_f-cy.B_G_R_.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/E_f-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/E_f-cy.glif new file mode 100644 index 00000000..2890609d --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/E_f-cy.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/E_grave.glif b/sources/FixelDisplay-Bold.ufo/glyphs/E_grave.glif new file mode 100644 index 00000000..328f74bd --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/E_grave.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+grave.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/E_iotifiedcyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/E_iotifiedcyr.glif new file mode 100644 index 00000000..276e1693 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/E_iotifiedcyr.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + C + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/E_l-cy.B_G_R_.glif b/sources/FixelDisplay-Bold.ufo/glyphs/E_l-cy.B_G_R_.glif new file mode 100644 index 00000000..b0423d33 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/E_l-cy.B_G_R_.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + A + com.fontlab.metricsRight + l() + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/E_l-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/E_l-cy.glif new file mode 100644 index 00000000..a942dba8 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/E_l-cy.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/E_lS_oft-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/E_lS_oft-cy.glif new file mode 100644 index 00000000..0974b9d0 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/E_lS_oft-cy.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/E_lhookcyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/E_lhookcyr.glif new file mode 100644 index 00000000..998bb354 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/E_lhookcyr.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Л + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/E_lmiddlehookcyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/E_lmiddlehookcyr.glif new file mode 100644 index 00000000..c667d56c --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/E_lmiddlehookcyr.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Shhacyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/E_lsharptailcyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/E_lsharptailcyr.glif new file mode 100644 index 00000000..b1fdb9a6 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/E_lsharptailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Ensharptailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/E_lsmallcyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/E_lsmallcyr.glif new file mode 100644 index 00000000..d3688a98 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/E_lsmallcyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + el-cy.BGR + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/E_ltailcyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/E_ltailcyr.glif new file mode 100644 index 00000000..c7db6472 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/E_ltailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/E_m-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/E_m-cy.glif new file mode 100644 index 00000000..e360acfa --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/E_m-cy.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + M + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/E_m-cy.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/E_m-cy.ss01.glif new file mode 100644 index 00000000..a9884e2f --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/E_m-cy.ss01.glif @@ -0,0 +1,13 @@ + + + + + + + + + com.fontlab.recipe + M + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/E_mS_oft-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/E_mS_oft-cy.glif new file mode 100644 index 00000000..0993bd44 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/E_mS_oft-cy.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + M + com.fontlab.metricsRight + Ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/E_macron.glif b/sources/FixelDisplay-Bold.ufo/glyphs/E_macron.glif new file mode 100644 index 00000000..2456cbce --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/E_macron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+macron.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/E_msharptailcyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/E_msharptailcyr.glif new file mode 100644 index 00000000..f0059b47 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/E_msharptailcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Н + com.fontlab.metricsRight + Ensharptailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/E_n-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/E_n-cy.glif new file mode 100644 index 00000000..f9bd9a7f --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/E_n-cy.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + H + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/E_ng.glif b/sources/FixelDisplay-Bold.ufo/glyphs/E_ng.glif new file mode 100644 index 00000000..d2b8735f --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/E_ng.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + N + com.fontlab.metricsRight + l() + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/E_ng.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/E_ng.ss01.glif new file mode 100644 index 00000000..473be707 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/E_ng.ss01.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + N.ss01 + com.fontlab.metricsRight + J.ss01 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/E_ngecyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/E_ngecyr.glif new file mode 100644 index 00000000..33094cbf --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/E_ngecyr.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/E_nhookcyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/E_nhookcyr.glif new file mode 100644 index 00000000..6c69469d --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/E_nhookcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/E_nhookleftcyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/E_nhookleftcyr.glif new file mode 100644 index 00000000..c4090aee --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/E_nhookleftcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + r()-159 + com.fontlab.metricsRight + H + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/E_nmiddlehookcyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/E_nmiddlehookcyr.glif new file mode 100644 index 00000000..766259d5 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/E_nmiddlehookcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Shhacyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/E_nsharptailcyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/E_nsharptailcyr.glif new file mode 100644 index 00000000..daa9c6ff --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/E_nsharptailcyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Н + com.fontlab.metricsRight + Д + com.fontlab.recipe + Entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/E_ntailcyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/E_ntailcyr.glif new file mode 100644 index 00000000..ff07e77e --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/E_ntailcyr.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Ц + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/E_ogonek.glif b/sources/FixelDisplay-Bold.ufo/glyphs/E_ogonek.glif new file mode 100644 index 00000000..1f3c6072 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/E_ogonek.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+ogonek + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/E_r-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/E_r-cy.glif new file mode 100644 index 00000000..a66ec769 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/E_r-cy.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + P + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/E_reversed-cy.accented.glif b/sources/FixelDisplay-Bold.ufo/glyphs/E_reversed-cy.accented.glif new file mode 100644 index 00000000..d4851850 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/E_reversed-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Э+acute.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/E_reversed-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/E_reversed-cy.glif new file mode 100644 index 00000000..c4626987 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/E_reversed-cy.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |C + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/E_reverseddieresiscyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/E_reverseddieresiscyr.glif new file mode 100644 index 00000000..3414016b --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/E_reverseddieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ereversed-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/E_rtickcyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/E_rtickcyr.glif new file mode 100644 index 00000000..add17692 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/E_rtickcyr.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + P + com.fontlab.metricsRight + P + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/E_s-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/E_s-cy.glif new file mode 100644 index 00000000..2b6ff5c0 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/E_s-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/E_stailcyr.B_S_H_.glif b/sources/FixelDisplay-Bold.ufo/glyphs/E_stailcyr.B_S_H_.glif new file mode 100644 index 00000000..c2e476fe --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/E_stailcyr.B_S_H_.glif @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + C + com.fontlab.metricsRight + C + com.fontlab.recipe + C + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/E_stailcyr.C_H_U_.glif b/sources/FixelDisplay-Bold.ufo/glyphs/E_stailcyr.C_H_U_.glif new file mode 100644 index 00000000..359a100b --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/E_stailcyr.C_H_U_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+cedilla.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/E_stailcyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/E_stailcyr.glif new file mode 100644 index 00000000..cb0faa5e --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/E_stailcyr.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + С + com.fontlab.metricsRight + С + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/E_th.glif b/sources/FixelDisplay-Bold.ufo/glyphs/E_th.glif new file mode 100644 index 00000000..f62ee92c --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/E_th.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + D + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/F_.glif b/sources/FixelDisplay-Bold.ufo/glyphs/F_.glif new file mode 100644 index 00000000..4a42c31f --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/F_.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/F_itacyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/F_itacyr.glif new file mode 100644 index 00000000..fe77d546 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/F_itacyr.glif @@ -0,0 +1,78 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + com.fontlab.recipe + Obarcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/G_.glif b/sources/FixelDisplay-Bold.ufo/glyphs/G_.glif new file mode 100644 index 00000000..1d87159e --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/G_.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O+18 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/G_.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/G_.ss01.glif new file mode 100644 index 00000000..28a67ff0 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/G_.ss01.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O+10 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/G_acute.glif b/sources/FixelDisplay-Bold.ufo/glyphs/G_acute.glif new file mode 100644 index 00000000..c9606ab0 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/G_acute.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + G+acute.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/G_acute.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/G_acute.ss01.glif new file mode 100644 index 00000000..52c4a4c8 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/G_acute.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G.ss01+acute.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/G_breve.glif b/sources/FixelDisplay-Bold.ufo/glyphs/G_breve.glif new file mode 100644 index 00000000..78740830 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/G_breve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G+breve.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/G_breve.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/G_breve.ss01.glif new file mode 100644 index 00000000..36bd0fd1 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/G_breve.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G.ss01+breve.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/G_circumflex.glif b/sources/FixelDisplay-Bold.ufo/glyphs/G_circumflex.glif new file mode 100644 index 00000000..05e61ff6 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/G_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G+circumflex.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/G_circumflex.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/G_circumflex.ss01.glif new file mode 100644 index 00000000..363c5ade --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/G_circumflex.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G.ss01+circumflex.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/G_commaaccent.glif b/sources/FixelDisplay-Bold.ufo/glyphs/G_commaaccent.glif new file mode 100644 index 00000000..b0497c89 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/G_commaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G+commaaccentcomb + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/G_commaaccent.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/G_commaaccent.ss01.glif new file mode 100644 index 00000000..18614d91 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/G_commaaccent.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G.ss01+commaaccentcomb + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/G_dotaccent.glif b/sources/FixelDisplay-Bold.ufo/glyphs/G_dotaccent.glif new file mode 100644 index 00000000..b55f31ef --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/G_dotaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G+dotaccent.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/G_dotaccent.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/G_dotaccent.ss01.glif new file mode 100644 index 00000000..2e539f10 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/G_dotaccent.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G.ss01+dotaccent.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/G_e-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/G_e-cy.glif new file mode 100644 index 00000000..5f01318c --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/G_e-cy.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + T + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/G_ehookcyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/G_ehookcyr.glif new file mode 100644 index 00000000..658fb671 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/G_ehookcyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Г + com.fontlab.metricsRight + Tshecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/G_ehookstrokecyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/G_ehookstrokecyr.glif new file mode 100644 index 00000000..3d5c815b --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/G_ehookstrokecyr.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Gestrokecyr + com.fontlab.metricsRight + Gestrokecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/G_ermandbls.glif b/sources/FixelDisplay-Bold.ufo/glyphs/G_ermandbls.glif new file mode 100644 index 00000000..09767c67 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/G_ermandbls.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + U + com.fontlab.metricsRight + B-5 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/G_estrokecyr.B_S_H_.glif b/sources/FixelDisplay-Bold.ufo/glyphs/G_estrokecyr.B_S_H_.glif new file mode 100644 index 00000000..f72fe002 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/G_estrokecyr.B_S_H_.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + F + com.fontlab.metricsRight + Gestrokecyr + com.fontlab.recipe + Gestrokecyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/G_estrokecyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/G_estrokecyr.glif new file mode 100644 index 00000000..e309f472 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/G_estrokecyr.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + Г + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/G_etailcyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/G_etailcyr.glif new file mode 100644 index 00000000..9edee4a7 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/G_etailcyr.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Г + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/G_heupturn-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/G_heupturn-cy.glif new file mode 100644 index 00000000..4f9ebadc --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/G_heupturn-cy.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Г + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/G_jecyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/G_jecyr.glif new file mode 100644 index 00000000..aa642e21 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/G_jecyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ge-cy+acute.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/H_.glif b/sources/FixelDisplay-Bold.ufo/glyphs/H_.glif new file mode 100644 index 00000000..11b33c80 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/H_.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + com.fontlab.metricsRight + I + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/H_a-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/H_a-cy.glif new file mode 100644 index 00000000..5c733b53 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/H_a-cy.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + X + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/H_a-cy.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/H_a-cy.ss01.glif new file mode 100644 index 00000000..e27c2a44 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/H_a-cy.ss01.glif @@ -0,0 +1,14 @@ + + + + + + + + + + com.fontlab.recipe + X + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/H_aabkhcyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/H_aabkhcyr.glif new file mode 100644 index 00000000..f3e381f5 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/H_aabkhcyr.glif @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/H_ahookcyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/H_ahookcyr.glif new file mode 100644 index 00000000..6e576457 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/H_ahookcyr.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + X + com.fontlab.metricsRight + X + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/H_ardsign-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/H_ardsign-cy.glif new file mode 100644 index 00000000..a006e9e9 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/H_ardsign-cy.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + Ь + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/H_astrokecyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/H_astrokecyr.glif new file mode 100644 index 00000000..c0f4b226 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/H_astrokecyr.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + X + com.fontlab.metricsRight + X + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/H_bar.glif b/sources/FixelDisplay-Bold.ufo/glyphs/H_bar.glif new file mode 100644 index 00000000..4cf8b7f6 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/H_bar.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + r() + com.fontlab.metricsRight + H + com.schriftgestaltung.Glyphs.rightMetricsKey + H + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/H_circumflex.glif b/sources/FixelDisplay-Bold.ufo/glyphs/H_circumflex.glif new file mode 100644 index 00000000..1c859ed7 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/H_circumflex.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + H+circumflex.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/H_we-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/H_we-cy.glif new file mode 100644 index 00000000..ede34226 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/H_we-cy.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Iota-cy + com.fontlab.metricsRight + Tshecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/I_-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/I_-cy.glif new file mode 100644 index 00000000..2b674762 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/I_-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/I_.glif b/sources/FixelDisplay-Bold.ufo/glyphs/I_.glif new file mode 100644 index 00000000..b8871149 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/I_.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/I_J_.glif b/sources/FixelDisplay-Bold.ufo/glyphs/I_J_.glif new file mode 100644 index 00000000..23c257f8 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/I_J_.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + I_J + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/I_a-cy.accented.glif b/sources/FixelDisplay-Bold.ufo/glyphs/I_a-cy.accented.glif new file mode 100644 index 00000000..de848025 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/I_a-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Я+acute.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/I_a-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/I_a-cy.glif new file mode 100644 index 00000000..b4109883 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/I_a-cy.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |R+10 + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/I_a-cy.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/I_a-cy.ss01.glif new file mode 100644 index 00000000..62e3210d --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/I_a-cy.ss01.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/I_acute.glif b/sources/FixelDisplay-Bold.ufo/glyphs/I_acute.glif new file mode 100644 index 00000000..9bf09e00 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/I_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+acute.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/I_breve.glif b/sources/FixelDisplay-Bold.ufo/glyphs/I_breve.glif new file mode 100644 index 00000000..5a7acf15 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/I_breve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+breve.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/I_circumflex.glif b/sources/FixelDisplay-Bold.ufo/glyphs/I_circumflex.glif new file mode 100644 index 00000000..96fba977 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/I_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+circumflex.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/I_dieresis.glif b/sources/FixelDisplay-Bold.ufo/glyphs/I_dieresis.glif new file mode 100644 index 00000000..3a9708f5 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/I_dieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+dieresiscase.alt + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/I_dieresiscyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/I_dieresiscyr.glif new file mode 100644 index 00000000..f9ea9b19 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/I_dieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ii-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/I_dotaccent.glif b/sources/FixelDisplay-Bold.ufo/glyphs/I_dotaccent.glif new file mode 100644 index 00000000..9a231c6d --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/I_dotaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+dotaccent.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/I_e-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/I_e-cy.glif new file mode 100644 index 00000000..1a7c934f --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/I_e-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/I_ebrevecyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/I_ebrevecyr.glif new file mode 100644 index 00000000..d0add637 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/I_ebrevecyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+breve.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/I_egravecyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/I_egravecyr.glif new file mode 100644 index 00000000..7ad6e2a2 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/I_egravecyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+grave.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/I_grave.glif b/sources/FixelDisplay-Bold.ufo/glyphs/I_grave.glif new file mode 100644 index 00000000..42d3f5d6 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/I_grave.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+grave.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/I_gravecyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/I_gravecyr.glif new file mode 100644 index 00000000..2274e67b --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/I_gravecyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ii-cy+grave.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/I_i-cy.accented.glif b/sources/FixelDisplay-Bold.ufo/glyphs/I_i-cy.accented.glif new file mode 100644 index 00000000..4f1beb37 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/I_i-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + И+acute.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/I_i-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/I_i-cy.glif new file mode 100644 index 00000000..3287a1f4 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/I_i-cy.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/I_ishort-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/I_ishort-cy.glif new file mode 100644 index 00000000..b43487df --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/I_ishort-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + uni0418+breve.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/I_macron.glif b/sources/FixelDisplay-Bold.ufo/glyphs/I_macron.glif new file mode 100644 index 00000000..5fc66aa0 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/I_macron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+macron.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/I_macroncyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/I_macroncyr.glif new file mode 100644 index 00000000..58b3c010 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/I_macroncyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ii-cy+macron.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/I_o-cy.accented.glif b/sources/FixelDisplay-Bold.ufo/glyphs/I_o-cy.accented.glif new file mode 100644 index 00000000..13798470 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/I_o-cy.accented.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + com.fontlab.recipe + E+dieresis.case+acute.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/I_o-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/I_o-cy.glif new file mode 100644 index 00000000..2e1f5bbc --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/I_o-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Edieresis + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/I_ogonek.glif b/sources/FixelDisplay-Bold.ufo/glyphs/I_ogonek.glif new file mode 100644 index 00000000..cd0abce9 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/I_ogonek.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+ogonek + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/I_ota-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/I_ota-cy.glif new file mode 100644 index 00000000..347f22bc --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/I_ota-cy.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |J + com.fontlab.metricsRight + |J + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/I_otifiedA_-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/I_otifiedA_-cy.glif new file mode 100644 index 00000000..be9c5e77 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/I_otifiedA_-cy.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + com.fontlab.metricsRight + A + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/I_shortsharptailcyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/I_shortsharptailcyr.glif new file mode 100644 index 00000000..480ae3e1 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/I_shortsharptailcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Й + com.fontlab.metricsRight + Ensharptailcyr + com.fontlab.recipe + Й + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/I_tilde.glif b/sources/FixelDisplay-Bold.ufo/glyphs/I_tilde.glif new file mode 100644 index 00000000..45b96e5b --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/I_tilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+tilde.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/I_u-cy.accented.glif b/sources/FixelDisplay-Bold.ufo/glyphs/I_u-cy.accented.glif new file mode 100644 index 00000000..340bf307 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/I_u-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ю+acute.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/I_u-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/I_u-cy.glif new file mode 100644 index 00000000..308952dd --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/I_u-cy.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/I_zhitsacyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/I_zhitsacyr.glif new file mode 100644 index 00000000..e96b72ea --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/I_zhitsacyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + V + com.fontlab.metricsRight + + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/I_zhitsagravedblcyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/I_zhitsagravedblcyr.glif new file mode 100644 index 00000000..97e66868 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/I_zhitsagravedblcyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + com.fontlab.metricsLeft + Izhitsacyr + com.fontlab.metricsRight + Izhitsacyr + com.fontlab.recipe + Izhitsacyr+hungarumlaut.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/J_.glif b/sources/FixelDisplay-Bold.ufo/glyphs/J_.glif new file mode 100644 index 00000000..b1ef4a44 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/J_.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + U + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/J_.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/J_.ss01.glif new file mode 100644 index 00000000..9e751bb6 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/J_.ss01.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + U + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/J_circumflex.glif b/sources/FixelDisplay-Bold.ufo/glyphs/J_circumflex.glif new file mode 100644 index 00000000..e673d9f2 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/J_circumflex.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + J+circumflex.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/J_circumflex.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/J_circumflex.ss01.glif new file mode 100644 index 00000000..4a5a5dfc --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/J_circumflex.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + J.ss01+circumflex.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/J_ecyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/J_ecyr.glif new file mode 100644 index 00000000..ac2e33b9 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/J_ecyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsLeft + J + com.fontlab.metricsRight + J + com.fontlab.recipe + J + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/K_.glif b/sources/FixelDisplay-Bold.ufo/glyphs/K_.glif new file mode 100644 index 00000000..30c80474 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/K_.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/K_.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/K_.ss01.glif new file mode 100644 index 00000000..1608d90e --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/K_.ss01.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/K_a-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/K_a-cy.glif new file mode 100644 index 00000000..0f1c89a8 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/K_a-cy.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.recipe + K + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/K_a-cy.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/K_a-cy.ss01.glif new file mode 100644 index 00000000..0443e170 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/K_a-cy.ss01.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.recipe + K + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/K_aaleutcyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/K_aaleutcyr.glif new file mode 100644 index 00000000..c5a8a304 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/K_aaleutcyr.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + K + com.fontlab.metricsRight + K + com.fontlab.recipe + K + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/K_abashkcyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/K_abashkcyr.glif new file mode 100644 index 00000000..6f363b79 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/K_abashkcyr.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Hardsign-cy + com.fontlab.metricsRight + K + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/K_ahookcyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/K_ahookcyr.glif new file mode 100644 index 00000000..70584bb9 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/K_ahookcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + K + com.fontlab.metricsRight + Djecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/K_astrokecyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/K_astrokecyr.glif new file mode 100644 index 00000000..f7244698 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/K_astrokecyr.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Yatcyr + com.fontlab.metricsRight + K + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/K_atailcyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/K_atailcyr.glif new file mode 100644 index 00000000..a2f25a0c --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/K_atailcyr.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + К-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/K_averticalstrokecyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/K_averticalstrokecyr.glif new file mode 100644 index 00000000..d82331e9 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/K_averticalstrokecyr.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + K + com.fontlab.metricsRight + Ж + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/K_commaaccent.glif b/sources/FixelDisplay-Bold.ufo/glyphs/K_commaaccent.glif new file mode 100644 index 00000000..7cbe883d --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/K_commaaccent.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + K+commaaccentcomb + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/K_commaaccent.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/K_commaaccent.ss01.glif new file mode 100644 index 00000000..30066750 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/K_commaaccent.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + K.ss01+commaaccentcomb + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/K_jecyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/K_jecyr.glif new file mode 100644 index 00000000..bc85b47f --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/K_jecyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ka-cy+acute.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/K_oppacyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/K_oppacyr.glif new file mode 100644 index 00000000..c8e0aa5f --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/K_oppacyr.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + C-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/K_sicyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/K_sicyr.glif new file mode 100644 index 00000000..21efa3c1 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/K_sicyr.glif @@ -0,0 +1,98 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + З-10 + com.fontlab.metricsRight + З + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/L_.glif b/sources/FixelDisplay-Bold.ufo/glyphs/L_.glif new file mode 100644 index 00000000..db36f882 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/L_.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/L_acute.glif b/sources/FixelDisplay-Bold.ufo/glyphs/L_acute.glif new file mode 100644 index 00000000..5a77a146 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/L_acute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + L+acute.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/L_caron.glif b/sources/FixelDisplay-Bold.ufo/glyphs/L_caron.glif new file mode 100644 index 00000000..a71e11f0 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/L_caron.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + com.fontlab.recipe + L+caron.salt + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/L_commaaccent.glif b/sources/FixelDisplay-Bold.ufo/glyphs/L_commaaccent.glif new file mode 100644 index 00000000..4997bb30 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/L_commaaccent.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + L+commaaccentcomb + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/L_dot.glif b/sources/FixelDisplay-Bold.ufo/glyphs/L_dot.glif new file mode 100644 index 00000000..ddd0c9e0 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/L_dot.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + com.fontlab.metricsRight + L + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/L_hacyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/L_hacyr.glif new file mode 100644 index 00000000..7a597e4e --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/L_hacyr.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + X + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/L_jecyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/L_jecyr.glif new file mode 100644 index 00000000..15d1cdfc --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/L_jecyr.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Ь + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/L_jekomicyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/L_jekomicyr.glif new file mode 100644 index 00000000..49f19ed5 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/L_jekomicyr.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Njekomicyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/L_slash.glif b/sources/FixelDisplay-Bold.ufo/glyphs/L_slash.glif new file mode 100644 index 00000000..e8ea9910 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/L_slash.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + L-80 + com.fontlab.metricsRight + L + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/M_.glif b/sources/FixelDisplay-Bold.ufo/glyphs/M_.glif new file mode 100644 index 00000000..46207def --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/M_.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/M_.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/M_.ss01.glif new file mode 100644 index 00000000..3071c80c --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/M_.ss01.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H-25 + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/N_.glif b/sources/FixelDisplay-Bold.ufo/glyphs/N_.glif new file mode 100644 index 00000000..f50714f9 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/N_.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/N_.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/N_.ss01.glif new file mode 100644 index 00000000..df71e6a6 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/N_.ss01.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H-10 + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/N_U_L_L_.glif b/sources/FixelDisplay-Bold.ufo/glyphs/N_U_L_L_.glif new file mode 100644 index 00000000..1ad177ae --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/N_U_L_L_.glif @@ -0,0 +1,4 @@ + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/N_acute.glif b/sources/FixelDisplay-Bold.ufo/glyphs/N_acute.glif new file mode 100644 index 00000000..9c1114d8 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/N_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N+acute.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/N_acute.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/N_acute.ss01.glif new file mode 100644 index 00000000..0b6307ca --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/N_acute.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N.ss01+acute.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/N_caron.glif b/sources/FixelDisplay-Bold.ufo/glyphs/N_caron.glif new file mode 100644 index 00000000..fe4e0ec7 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/N_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N+caron.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/N_caron.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/N_caron.ss01.glif new file mode 100644 index 00000000..a0122675 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/N_caron.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N.ss01+caron.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/N_commaaccent.glif b/sources/FixelDisplay-Bold.ufo/glyphs/N_commaaccent.glif new file mode 100644 index 00000000..28e706d9 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/N_commaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N+commaaccentcomb + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/N_commaaccent.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/N_commaaccent.ss01.glif new file mode 100644 index 00000000..c1fab3da --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/N_commaaccent.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N.ss01+commaaccentcomb + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/N_jecyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/N_jecyr.glif new file mode 100644 index 00000000..6426a5e4 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/N_jecyr.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Н + com.fontlab.metricsRight + Ь + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/N_jekomicyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/N_jekomicyr.glif new file mode 100644 index 00000000..bd02daa9 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/N_jekomicyr.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + |u + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/N_tilde.glif b/sources/FixelDisplay-Bold.ufo/glyphs/N_tilde.glif new file mode 100644 index 00000000..ce0b9937 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/N_tilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N+tilde.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/N_tilde.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/N_tilde.ss01.glif new file mode 100644 index 00000000..3f20c1ed --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/N_tilde.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N.ss01+tilde.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/O_-cy.accented.glif b/sources/FixelDisplay-Bold.ufo/glyphs/O_-cy.accented.glif new file mode 100644 index 00000000..ee7fcba4 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/O_-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+acute.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/O_-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/O_-cy.glif new file mode 100644 index 00000000..8f05a601 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/O_-cy.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/O_.glif b/sources/FixelDisplay-Bold.ufo/glyphs/O_.glif new file mode 100644 index 00000000..1a98fe0d --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/O_.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/O_B_inocular-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/O_B_inocular-cy.glif new file mode 100644 index 00000000..1be490b6 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/O_B_inocular-cy.glif @@ -0,0 +1,81 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/O_D_oubleM_onocular-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/O_D_oubleM_onocular-cy.glif new file mode 100644 index 00000000..33034b52 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/O_D_oubleM_onocular-cy.glif @@ -0,0 +1,119 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + com.fontlab.recipe + DoubleO-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/O_E_.glif b/sources/FixelDisplay-Bold.ufo/glyphs/O_E_.glif new file mode 100644 index 00000000..8b6d5977 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/O_E_.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + E + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/O_M_onocular-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/O_M_onocular-cy.glif new file mode 100644 index 00000000..bc27c741 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/O_M_onocular-cy.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/O_acute.glif b/sources/FixelDisplay-Bold.ufo/glyphs/O_acute.glif new file mode 100644 index 00000000..94606dad --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/O_acute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+acute.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/O_barcyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/O_barcyr.glif new file mode 100644 index 00000000..a6b547b7 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/O_barcyr.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + r() + com.fontlab.metricsRight + O + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/O_bardieresiscyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/O_bardieresiscyr.glif new file mode 100644 index 00000000..912c4ad1 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/O_bardieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Obarcyr+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/O_breve.glif b/sources/FixelDisplay-Bold.ufo/glyphs/O_breve.glif new file mode 100644 index 00000000..cdabdc58 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/O_breve.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+breve.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/O_circumflex.glif b/sources/FixelDisplay-Bold.ufo/glyphs/O_circumflex.glif new file mode 100644 index 00000000..53627312 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/O_circumflex.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+circumflex.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/O_dieresis.glif b/sources/FixelDisplay-Bold.ufo/glyphs/O_dieresis.glif new file mode 100644 index 00000000..4fd15b0e --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/O_dieresis.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+dieresis.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/O_dieresiscyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/O_dieresiscyr.glif new file mode 100644 index 00000000..7f9a23da --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/O_dieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/O_grave.glif b/sources/FixelDisplay-Bold.ufo/glyphs/O_grave.glif new file mode 100644 index 00000000..fb7ce09c --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/O_grave.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+grave.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/O_hungarumlaut.glif b/sources/FixelDisplay-Bold.ufo/glyphs/O_hungarumlaut.glif new file mode 100644 index 00000000..fdcdc962 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/O_hungarumlaut.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+hungarumlaut.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/O_macron.glif b/sources/FixelDisplay-Bold.ufo/glyphs/O_macron.glif new file mode 100644 index 00000000..866351ab --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/O_macron.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+macron.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/O_mega.glif b/sources/FixelDisplay-Bold.ufo/glyphs/O_mega.glif new file mode 100644 index 00000000..44cee9f3 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/O_mega.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O+10 + com.fontlab.metricsRight + O+10 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/O_megaB_road-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/O_megaB_road-cy.glif new file mode 100644 index 00000000..323d86f7 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/O_megaB_road-cy.glif @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O+10 + com.fontlab.metricsRight + O+10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/O_megacyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/O_megacyr.glif new file mode 100644 index 00000000..5e9bbaf1 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/O_megacyr.glif @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O+10 + com.fontlab.metricsRight + O+10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/O_megaroundcyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/O_megaroundcyr.glif new file mode 100644 index 00000000..ce7ae441 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/O_megaroundcyr.glif @@ -0,0 +1,81 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/O_megatitlocyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/O_megatitlocyr.glif new file mode 100644 index 00000000..b54b0f24 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/O_megatitlocyr.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O+10 + com.fontlab.metricsRight + O+10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/O_slash.glif b/sources/FixelDisplay-Bold.ufo/glyphs/O_slash.glif new file mode 100644 index 00000000..813d0616 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/O_slash.glif @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/O_slashacute.glif b/sources/FixelDisplay-Bold.ufo/glyphs/O_slashacute.glif new file mode 100644 index 00000000..a136c8e7 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/O_slashacute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Oslash+acute.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/O_tcyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/O_tcyr.glif new file mode 100644 index 00000000..e21880d7 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/O_tcyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Omegacyr+uni2DEE.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/O_tilde.glif b/sources/FixelDisplay-Bold.ufo/glyphs/O_tilde.glif new file mode 100644 index 00000000..801895a2 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/O_tilde.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+tilde.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/P_.glif b/sources/FixelDisplay-Bold.ufo/glyphs/P_.glif new file mode 100644 index 00000000..815fcd68 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/P_.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/P_alochkacyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/P_alochkacyr.glif new file mode 100644 index 00000000..841c187f --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/P_alochkacyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/P_e-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/P_e-cy.glif new file mode 100644 index 00000000..7d862742 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/P_e-cy.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/P_ehookcyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/P_ehookcyr.glif new file mode 100644 index 00000000..ad3cf454 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/P_ehookcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + П + com.fontlab.metricsRight + Shhacyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/P_etailcyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/P_etailcyr.glif new file mode 100644 index 00000000..1384f846 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/P_etailcyr.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/P_sicyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/P_sicyr.glif new file mode 100644 index 00000000..523c5665 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/P_sicyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + U-20 + com.fontlab.metricsRight + U-20 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/Q_.glif b/sources/FixelDisplay-Bold.ufo/glyphs/Q_.glif new file mode 100644 index 00000000..ccd5a86e --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/Q_.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/Q_.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/Q_.ss01.glif new file mode 100644 index 00000000..1e23287f --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/Q_.ss01.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/Q_acyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/Q_acyr.glif new file mode 100644 index 00000000..482c2bae --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/Q_acyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Q + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/R_.glif b/sources/FixelDisplay-Bold.ufo/glyphs/R_.glif new file mode 100644 index 00000000..1b34ca3e --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/R_.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/R_acute.glif b/sources/FixelDisplay-Bold.ufo/glyphs/R_acute.glif new file mode 100644 index 00000000..bb6bd6a2 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/R_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + R+acute.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/R_caron.glif b/sources/FixelDisplay-Bold.ufo/glyphs/R_caron.glif new file mode 100644 index 00000000..80e862e5 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/R_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + R+caron.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/R_commaaccent.glif b/sources/FixelDisplay-Bold.ufo/glyphs/R_commaaccent.glif new file mode 100644 index 00000000..b2fdf0fd --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/R_commaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + R+commaaccentcomb + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/R_eversedzecyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/R_eversedzecyr.glif new file mode 100644 index 00000000..e7de450c --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/R_eversedzecyr.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + + com.fontlab.metricsRight + + com.fontlab.recipe + З + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/R_hacyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/R_hacyr.glif new file mode 100644 index 00000000..a9b2902f --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/R_hacyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + P + com.fontlab.metricsRight + X + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/S_.glif b/sources/FixelDisplay-Bold.ufo/glyphs/S_.glif new file mode 100644 index 00000000..790e08c2 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/S_.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/S_acute.glif b/sources/FixelDisplay-Bold.ufo/glyphs/S_acute.glif new file mode 100644 index 00000000..3e4a03e2 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/S_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + S+acute.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/S_caron.glif b/sources/FixelDisplay-Bold.ufo/glyphs/S_caron.glif new file mode 100644 index 00000000..f17a8b60 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/S_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + S+caron.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/S_cedilla.glif b/sources/FixelDisplay-Bold.ufo/glyphs/S_cedilla.glif new file mode 100644 index 00000000..2a244abd --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/S_cedilla.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + S+cedilla + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/S_chwa.glif b/sources/FixelDisplay-Bold.ufo/glyphs/S_chwa.glif new file mode 100644 index 00000000..209790a2 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/S_chwa.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Schwacyr + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/S_chwacyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/S_chwacyr.glif new file mode 100644 index 00000000..efc59dda --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/S_chwacyr.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O-10 + com.fontlab.metricsRight + O + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/S_chwadieresiscyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/S_chwadieresiscyr.glif new file mode 100644 index 00000000..97f1bd73 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/S_chwadieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Schwacyr+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/S_circumflex.glif b/sources/FixelDisplay-Bold.ufo/glyphs/S_circumflex.glif new file mode 100644 index 00000000..ac3f5998 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/S_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + S+circumflex.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/S_commaaccent.glif b/sources/FixelDisplay-Bold.ufo/glyphs/S_commaaccent.glif new file mode 100644 index 00000000..9f238c19 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/S_commaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + S+commaaccentcomb + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/S_emisoftcyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/S_emisoftcyr.glif new file mode 100644 index 00000000..5b6f12d6 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/S_emisoftcyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Yat + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/S_ha-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/S_ha-cy.glif new file mode 100644 index 00000000..6c0b3f87 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/S_ha-cy.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/S_hcha-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/S_hcha-cy.glif new file mode 100644 index 00000000..35cd9a0c --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/S_hcha-cy.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Д + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/S_hhacyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/S_hhacyr.glif new file mode 100644 index 00000000..ca01d110 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/S_hhacyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.metricsLeft + Н + com.fontlab.metricsRight + Tshecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/S_hhatailcyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/S_hhatailcyr.glif new file mode 100644 index 00000000..9f5104b6 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/S_hhatailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/S_hwe-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/S_hwe-cy.glif new file mode 100644 index 00000000..8f799424 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/S_hwe-cy.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Щ + com.fontlab.metricsRight + Щ-20 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/S_jekomicyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/S_jekomicyr.glif new file mode 100644 index 00000000..75ef6b06 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/S_jekomicyr.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + |Schwa + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/S_oftsign-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/S_oftsign-cy.glif new file mode 100644 index 00000000..5760538b --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/S_oftsign-cy.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + P + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/T_.glif b/sources/FixelDisplay-Bold.ufo/glyphs/T_.glif new file mode 100644 index 00000000..67a0c7a1 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/T_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/T_bar.glif b/sources/FixelDisplay-Bold.ufo/glyphs/T_bar.glif new file mode 100644 index 00000000..27e69e86 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/T_bar.glif @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/T_caron.glif b/sources/FixelDisplay-Bold.ufo/glyphs/T_caron.glif new file mode 100644 index 00000000..a35a0570 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/T_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + T+caron.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/T_cedilla.glif b/sources/FixelDisplay-Bold.ufo/glyphs/T_cedilla.glif new file mode 100644 index 00000000..f9b724a9 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/T_cedilla.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + T+cedilla + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/T_che-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/T_che-cy.glif new file mode 100644 index 00000000..9725f22c --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/T_che-cy.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Tetsecyr-20 + com.fontlab.metricsRight + Ч + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/T_commaaccent.glif b/sources/FixelDisplay-Bold.ufo/glyphs/T_commaaccent.glif new file mode 100644 index 00000000..0d982e0b --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/T_commaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + T+commaaccentcomb + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/T_e-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/T_e-cy.glif new file mode 100644 index 00000000..0618f80f --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/T_e-cy.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + com.fontlab.recipe + T + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/T_eW_ithM_iddleH_ook-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/T_eW_ithM_iddleH_ook-cy.glif new file mode 100644 index 00000000..7c046737 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/T_eW_ithM_iddleH_ook-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Djecyr + com.fontlab.metricsRight + Gehookcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/T_etailcyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/T_etailcyr.glif new file mode 100644 index 00000000..5455c799 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/T_etailcyr.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/T_etsecyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/T_etsecyr.glif new file mode 100644 index 00000000..717fba76 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/T_etsecyr.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Tshecyr + com.fontlab.metricsRight + Ц + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/T_horn.glif b/sources/FixelDisplay-Bold.ufo/glyphs/T_horn.glif new file mode 100644 index 00000000..216a79cc --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/T_horn.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + P + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/T_jekomicyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/T_jekomicyr.glif new file mode 100644 index 00000000..e5379796 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/T_jekomicyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + Njekomicyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/T_se-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/T_se-cy.glif new file mode 100644 index 00000000..a5a2a8c3 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/T_se-cy.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Д + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/T_seR_eversed-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/T_seR_eversed-cy.glif new file mode 100644 index 00000000..d7762af6 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/T_seR_eversed-cy.glif @@ -0,0 +1,20 @@ + + + + + + + + + + com.fontlab.metricsLeft + + com.fontlab.metricsRight + H + com.fontlab.recipe + Ц + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/T_shecyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/T_shecyr.glif new file mode 100644 index 00000000..f92c3fa4 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/T_shecyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + n + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/T_sse-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/T_sse-cy.glif new file mode 100644 index 00000000..fdb83b6e --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/T_sse-cy.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + T + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/T_swe-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/T_swe-cy.glif new file mode 100644 index 00000000..81f4b635 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/T_swe-cy.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Shwe-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/T_we-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/T_we-cy.glif new file mode 100644 index 00000000..0953cec1 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/T_we-cy.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + T + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/U_-cy.accented.glif b/sources/FixelDisplay-Bold.ufo/glyphs/U_-cy.accented.glif new file mode 100644 index 00000000..84dcf630 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/U_-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + У+acute.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/U_-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/U_-cy.glif new file mode 100644 index 00000000..c5476567 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/U_-cy.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Y+10 + com.fontlab.metricsRight + Y+5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/U_-cy.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/U_-cy.ss01.glif new file mode 100644 index 00000000..7897a2b1 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/U_-cy.ss01.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/U_.glif b/sources/FixelDisplay-Bold.ufo/glyphs/U_.glif new file mode 100644 index 00000000..e8c8cc29 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/U_.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H-10 + com.fontlab.metricsRight + H-10 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/U_acute.glif b/sources/FixelDisplay-Bold.ufo/glyphs/U_acute.glif new file mode 100644 index 00000000..876f5484 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/U_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+acute.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/U_acutedblcyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/U_acutedblcyr.glif new file mode 100644 index 00000000..a308794a --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/U_acutedblcyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U-cy+hungarumlaut.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/U_breve.glif b/sources/FixelDisplay-Bold.ufo/glyphs/U_breve.glif new file mode 100644 index 00000000..6dba71e7 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/U_breve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+breve.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/U_circumflex.glif b/sources/FixelDisplay-Bold.ufo/glyphs/U_circumflex.glif new file mode 100644 index 00000000..7411a625 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/U_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+circumflex.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/U_dieresis.glif b/sources/FixelDisplay-Bold.ufo/glyphs/U_dieresis.glif new file mode 100644 index 00000000..df19b6a2 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/U_dieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+dieresis.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/U_dieresiscyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/U_dieresiscyr.glif new file mode 100644 index 00000000..0baabe9d --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/U_dieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/U_grave.glif b/sources/FixelDisplay-Bold.ufo/glyphs/U_grave.glif new file mode 100644 index 00000000..28e1c7df --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/U_grave.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+grave.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/U_hungarumlaut.glif b/sources/FixelDisplay-Bold.ufo/glyphs/U_hungarumlaut.glif new file mode 100644 index 00000000..08d690f9 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/U_hungarumlaut.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+hungarumlaut.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/U_kM_onograph-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/U_kM_onograph-cy.glif new file mode 100644 index 00000000..69e496ce --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/U_kM_onograph-cy.glif @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/U_kcyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/U_kcyr.glif new file mode 100644 index 00000000..259aed60 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/U_kcyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + y + com.fontlab.recipe + О_у + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/U_macron.glif b/sources/FixelDisplay-Bold.ufo/glyphs/U_macron.glif new file mode 100644 index 00000000..5023928e --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/U_macron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+macron.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/U_macroncyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/U_macroncyr.glif new file mode 100644 index 00000000..e6879f4d --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/U_macroncyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U-cy+macron.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/U_ogonek.glif b/sources/FixelDisplay-Bold.ufo/glyphs/U_ogonek.glif new file mode 100644 index 00000000..26a514b8 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/U_ogonek.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + U+ogonek + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/U_ring.glif b/sources/FixelDisplay-Bold.ufo/glyphs/U_ring.glif new file mode 100644 index 00000000..392d0721 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/U_ring.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+ring.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/U_short-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/U_short-cy.glif new file mode 100644 index 00000000..5388adcc --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/U_short-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ucyr+breve.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/U_short-cy.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/U_short-cy.ss01.glif new file mode 100644 index 00000000..86e74748 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/U_short-cy.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ucyr.ss01+breve.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/U_straightcyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/U_straightcyr.glif new file mode 100644 index 00000000..cbd068de --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/U_straightcyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsRight + Y + com.fontlab.recipe + Y + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/U_straightstrokecyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/U_straightstrokecyr.glif new file mode 100644 index 00000000..3b387501 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/U_straightstrokecyr.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/U_tilde.glif b/sources/FixelDisplay-Bold.ufo/glyphs/U_tilde.glif new file mode 100644 index 00000000..3983058a --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/U_tilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+tilde.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/V_.glif b/sources/FixelDisplay-Bold.ufo/glyphs/V_.glif new file mode 100644 index 00000000..bcc6074f --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/V_.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/V_.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/V_.ss01.glif new file mode 100644 index 00000000..2b1e16f6 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/V_.ss01.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/V_e-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/V_e-cy.glif new file mode 100644 index 00000000..ae4f420f --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/V_e-cy.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + B + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/W_.glif b/sources/FixelDisplay-Bold.ufo/glyphs/W_.glif new file mode 100644 index 00000000..b6861e90 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/W_.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/W_.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/W_.ss01.glif new file mode 100644 index 00000000..6b08a41a --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/W_.ss01.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |A + com.fontlab.metricsRight + |A + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/W_acute.glif b/sources/FixelDisplay-Bold.ufo/glyphs/W_acute.glif new file mode 100644 index 00000000..b7345340 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/W_acute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W+acute.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/W_acute.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/W_acute.ss01.glif new file mode 100644 index 00000000..ed368e97 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/W_acute.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W.ss01+acute.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/W_circumflex.glif b/sources/FixelDisplay-Bold.ufo/glyphs/W_circumflex.glif new file mode 100644 index 00000000..82edccc9 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/W_circumflex.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W+circumflex.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/W_circumflex.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/W_circumflex.ss01.glif new file mode 100644 index 00000000..9e23a6e2 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/W_circumflex.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W.ss01+circumflex.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/W_dieresis.glif b/sources/FixelDisplay-Bold.ufo/glyphs/W_dieresis.glif new file mode 100644 index 00000000..3f415c8f --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/W_dieresis.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + W+dieresis.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/W_dieresis.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/W_dieresis.ss01.glif new file mode 100644 index 00000000..119a1891 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/W_dieresis.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W.ss01+dieresis.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/W_ecyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/W_ecyr.glif new file mode 100644 index 00000000..ca4d3d02 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/W_ecyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/W_grave.glif b/sources/FixelDisplay-Bold.ufo/glyphs/W_grave.glif new file mode 100644 index 00000000..095d9a21 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/W_grave.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W+grave.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/W_grave.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/W_grave.ss01.glif new file mode 100644 index 00000000..c44fc3a2 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/W_grave.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W.ss01+grave.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/X_.glif b/sources/FixelDisplay-Bold.ufo/glyphs/X_.glif new file mode 100644 index 00000000..de781961 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/X_.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/X_.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/X_.ss01.glif new file mode 100644 index 00000000..5003ea1d --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/X_.ss01.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/X_atailcyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/X_atailcyr.glif new file mode 100644 index 00000000..8227914e --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/X_atailcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + X + com.fontlab.metricsRight + Katailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/Y_.glif b/sources/FixelDisplay-Bold.ufo/glyphs/Y_.glif new file mode 100644 index 00000000..2bea3eb7 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/Y_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/Y_.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/Y_.ss01.glif new file mode 100644 index 00000000..15914277 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/Y_.ss01.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/Y_acute.glif b/sources/FixelDisplay-Bold.ufo/glyphs/Y_acute.glif new file mode 100644 index 00000000..770c9f20 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/Y_acute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y+acute.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/Y_acute.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/Y_acute.ss01.glif new file mode 100644 index 00000000..f67e5f81 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/Y_acute.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y.ss01+acute.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/Y_aecyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/Y_aecyr.glif new file mode 100644 index 00000000..db0f4b6d --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/Y_aecyr.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Я + com.fontlab.metricsRight + E + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/Y_atI_otified-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/Y_atI_otified-cy.glif new file mode 100644 index 00000000..50b03ba5 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/Y_atI_otified-cy.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + com.fontlab.metricsRight + Yatcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/Y_atcyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/Y_atcyr.glif new file mode 100644 index 00000000..7c608658 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/Y_atcyr.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Т + com.fontlab.metricsRight + Ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/Y_circumflex.glif b/sources/FixelDisplay-Bold.ufo/glyphs/Y_circumflex.glif new file mode 100644 index 00000000..abe1e452 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/Y_circumflex.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y+circumflex.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/Y_circumflex.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/Y_circumflex.ss01.glif new file mode 100644 index 00000000..af691726 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/Y_circumflex.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y.ss01+circumflex.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/Y_dieresis.glif b/sources/FixelDisplay-Bold.ufo/glyphs/Y_dieresis.glif new file mode 100644 index 00000000..4f553bb0 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/Y_dieresis.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y+dieresis.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/Y_dieresis.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/Y_dieresis.ss01.glif new file mode 100644 index 00000000..be15ddf2 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/Y_dieresis.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y.ss01+dieresis.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/Y_erN_eutral-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/Y_erN_eutral-cy.glif new file mode 100644 index 00000000..af5a969c --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/Y_erN_eutral-cy.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Hardsign-cy + com.fontlab.metricsRight + Ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/Y_eru-cy.accented.glif b/sources/FixelDisplay-Bold.ufo/glyphs/Y_eru-cy.accented.glif new file mode 100644 index 00000000..791c0e06 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/Y_eru-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ы+acute.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/Y_eru-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/Y_eru-cy.glif new file mode 100644 index 00000000..171f8376 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/Y_eru-cy.glif @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/Y_eru-cymacron.glif b/sources/FixelDisplay-Bold.ufo/glyphs/Y_eru-cymacron.glif new file mode 100644 index 00000000..73fb49ce --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/Y_eru-cymacron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ы+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/Y_eruB_ackY_er-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/Y_eruB_ackY_er-cy.glif new file mode 100644 index 00000000..2eb79198 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/Y_eruB_ackY_er-cy.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Hardsign + com.fontlab.metricsRight + I + com.fontlab.recipe + Hardsign-cy_I + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/Y_i-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/Y_i-cy.glif new file mode 100644 index 00000000..c7d57f71 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/Y_i-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Idieresis + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/Y_longdieresiscyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/Y_longdieresiscyr.glif new file mode 100644 index 00000000..a3648a6c --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/Y_longdieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Yeru-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/Y_n-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/Y_n-cy.glif new file mode 100644 index 00000000..c53497ff --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/Y_n-cy.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |Izhitsa + com.fontlab.metricsRight + |Izhitsa + com.fontlab.recipe + Izhitsa + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/Y_uR_eversed-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/Y_uR_eversed-cy.glif new file mode 100644 index 00000000..99ffeb16 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/Y_uR_eversed-cy.glif @@ -0,0 +1,20 @@ + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + H + com.fontlab.recipe + Ю + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/Y_usB_lended-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/Y_usB_lended-cy.glif new file mode 100644 index 00000000..849cc71a --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/Y_usB_lended-cy.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Yusbigcyr + com.fontlab.metricsRight + Yusbigcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/Y_usC_losedlittle-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/Y_usC_losedlittle-cy.glif new file mode 100644 index 00000000..cddb2079 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/Y_usC_losedlittle-cy.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + A + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/Y_usbigcyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/Y_usbigcyr.glif new file mode 100644 index 00000000..15712612 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/Y_usbigcyr.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ж + com.fontlab.metricsRight + Ж + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/Y_usbigiotifiedcyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/Y_usbigiotifiedcyr.glif new file mode 100644 index 00000000..d1e42594 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/Y_usbigiotifiedcyr.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + Ж + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/Y_usiotifiedC_losedL_ittle-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/Y_usiotifiedC_losedL_ittle-cy.glif new file mode 100644 index 00000000..6abcc6f3 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/Y_usiotifiedC_losedL_ittle-cy.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + A + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/Y_uslittlecyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/Y_uslittlecyr.glif new file mode 100644 index 00000000..2cab82a3 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/Y_uslittlecyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + А-5 + com.fontlab.metricsRight + А-5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/Y_uslittleiotifiedcyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/Y_uslittleiotifiedcyr.glif new file mode 100644 index 00000000..80635c4c --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/Y_uslittleiotifiedcyr.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + А-5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/Z_.glif b/sources/FixelDisplay-Bold.ufo/glyphs/Z_.glif new file mode 100644 index 00000000..79c92b33 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/Z_.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/Z_.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/Z_.ss01.glif new file mode 100644 index 00000000..541f2d92 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/Z_.ss01.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/Z_acute.glif b/sources/FixelDisplay-Bold.ufo/glyphs/Z_acute.glif new file mode 100644 index 00000000..67935f04 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/Z_acute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Z+acute.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/Z_acute.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/Z_acute.ss01.glif new file mode 100644 index 00000000..a80d1f98 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/Z_acute.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Z.ss01+acute.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/Z_caron.glif b/sources/FixelDisplay-Bold.ufo/glyphs/Z_caron.glif new file mode 100644 index 00000000..db77fd64 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/Z_caron.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Z+caron.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/Z_caron.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/Z_caron.ss01.glif new file mode 100644 index 00000000..7070a44a --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/Z_caron.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Z.ss01+caron.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/Z_dotaccent.glif b/sources/FixelDisplay-Bold.ufo/glyphs/Z_dotaccent.glif new file mode 100644 index 00000000..9c0d0a78 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/Z_dotaccent.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Z+dotaccent.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/Z_dotaccent.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/Z_dotaccent.ss01.glif new file mode 100644 index 00000000..0ae885d8 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/Z_dotaccent.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Z.ss01+dotaccent.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/Z_e-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/Z_e-cy.glif new file mode 100644 index 00000000..17b919d5 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/Z_e-cy.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |C + com.fontlab.metricsRight + B + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/Z_edieresiscyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/Z_edieresiscyr.glif new file mode 100644 index 00000000..8d49da0b --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/Z_edieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ze-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/Z_emlya-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/Z_emlya-cy.glif new file mode 100644 index 00000000..63ff4a0a --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/Z_emlya-cy.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Z-10 + com.fontlab.metricsRight + Z + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/Z_etailcyr.B_S_H_.glif b/sources/FixelDisplay-Bold.ufo/glyphs/Z_etailcyr.B_S_H_.glif new file mode 100644 index 00000000..1fa10b7d --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/Z_etailcyr.B_S_H_.glif @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + З + com.fontlab.metricsRight + З + com.fontlab.recipe + Zetailcyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/Z_etailcyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/Z_etailcyr.glif new file mode 100644 index 00000000..32f63529 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/Z_etailcyr.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + З + com.fontlab.metricsRight + З + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/Z_he-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/Z_he-cy.glif new file mode 100644 index 00000000..0c619699 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/Z_he-cy.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |K + com.fontlab.metricsRight + K + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/Z_he-cy.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/Z_he-cy.ss01.glif new file mode 100644 index 00000000..4269e6b7 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/Z_he-cy.ss01.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |K + com.fontlab.metricsRight + K + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/Z_hebrevecyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/Z_hebrevecyr.glif new file mode 100644 index 00000000..4ec307d7 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/Z_hebrevecyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Zhe-cy+breve.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/Z_hedieresiscyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/Z_hedieresiscyr.glif new file mode 100644 index 00000000..4516bab8 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/Z_hedieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Zhe-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/Z_hetailcyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/Z_hetailcyr.glif new file mode 100644 index 00000000..68f9be14 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/Z_hetailcyr.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ж + com.fontlab.metricsRight + Katailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/Z_hwe-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/Z_hwe-cy.glif new file mode 100644 index 00000000..dd114ddd --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/Z_hwe-cy.glif @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + З + com.fontlab.metricsRight + Ж + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/Z_jekomicyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/Z_jekomicyr.glif new file mode 100644 index 00000000..0ca89f53 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/Z_jekomicyr.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Dzjekomicyr + com.fontlab.metricsRight + Njekomicyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/_notdef.glif b/sources/FixelDisplay-Bold.ufo/glyphs/_notdef.glif new file mode 100644 index 00000000..6a5a7c9c --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/_notdef.glif @@ -0,0 +1,178 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + =55 + com.schriftgestaltung.Glyphs.rightMetricsKey + =55 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/_perc-circule.glif b/sources/FixelDisplay-Bold.ufo/glyphs/_perc-circule.glif new file mode 100644 index 00000000..ab875300 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/_perc-circule.glif @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.schriftgestaltung.Glyphs.Export + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/a-cy.accented.glif b/sources/FixelDisplay-Bold.ufo/glyphs/a-cy.accented.glif new file mode 100644 index 00000000..aa5d4c1b --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/a-cy.accented.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+acute + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/a-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/a-cy.glif new file mode 100644 index 00000000..98703564 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/a-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/a-cy.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/a-cy.ss01.glif new file mode 100644 index 00000000..9e0f3886 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/a-cy.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/a.glif b/sources/FixelDisplay-Bold.ufo/glyphs/a.glif new file mode 100644 index 00000000..90d212d5 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/a.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + n-10 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/a.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/a.ss01.glif new file mode 100644 index 00000000..dd8eaca6 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/a.ss01.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/aacute.glif b/sources/FixelDisplay-Bold.ufo/glyphs/aacute.glif new file mode 100644 index 00000000..9daf7b25 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/aacute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+acute + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/aacute.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/aacute.ss01.glif new file mode 100644 index 00000000..a117f353 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/aacute.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+acute + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/abreve.glif b/sources/FixelDisplay-Bold.ufo/glyphs/abreve.glif new file mode 100644 index 00000000..ecd9a453 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/abreve.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+breve + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/abreve.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/abreve.ss01.glif new file mode 100644 index 00000000..7f1fcaa5 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/abreve.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+breve + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/abrevecyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/abrevecyr.glif new file mode 100644 index 00000000..3bc49656 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/abrevecyr.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+breve + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/acaron.glif b/sources/FixelDisplay-Bold.ufo/glyphs/acaron.glif new file mode 100644 index 00000000..e51c9b78 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/acaron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+caron + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/acircumflex.glif b/sources/FixelDisplay-Bold.ufo/glyphs/acircumflex.glif new file mode 100644 index 00000000..6211cc49 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/acircumflex.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+circumflex + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/acircumflex.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/acircumflex.ss01.glif new file mode 100644 index 00000000..550611ec --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/acircumflex.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+circumflex + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/acute.case.glif b/sources/FixelDisplay-Bold.ufo/glyphs/acute.case.glif new file mode 100644 index 00000000..2e869446 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/acute.case.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/acute.glif b/sources/FixelDisplay-Bold.ufo/glyphs/acute.glif new file mode 100644 index 00000000..9238b5a0 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/acute.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/adieresis.glif b/sources/FixelDisplay-Bold.ufo/glyphs/adieresis.glif new file mode 100644 index 00000000..7f269a19 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/adieresis.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+dieresis + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/adieresis.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/adieresis.ss01.glif new file mode 100644 index 00000000..eaf6a445 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/adieresis.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+dieresis + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/adieresiscyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/adieresiscyr.glif new file mode 100644 index 00000000..2acaee1d --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/adieresiscyr.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/ae.glif b/sources/FixelDisplay-Bold.ufo/glyphs/ae.glif new file mode 100644 index 00000000..a9f1a96d --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/ae.glif @@ -0,0 +1,101 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + a + com.fontlab.metricsRight + e + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/ae.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/ae.ss01.glif new file mode 100644 index 00000000..d44b30f5 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/ae.ss01.glif @@ -0,0 +1,96 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + a + com.fontlab.metricsRight + e.ss01 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/aeacute.glif b/sources/FixelDisplay-Bold.ufo/glyphs/aeacute.glif new file mode 100644 index 00000000..8e754ce3 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/aeacute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ae+acute + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/agrave.glif b/sources/FixelDisplay-Bold.ufo/glyphs/agrave.glif new file mode 100644 index 00000000..20a57267 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/agrave.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+grave + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/agrave.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/agrave.ss01.glif new file mode 100644 index 00000000..56134a8a --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/agrave.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+grave + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/aiecyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/aiecyr.glif new file mode 100644 index 00000000..753e0647 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/aiecyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ae + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/amacron.glif b/sources/FixelDisplay-Bold.ufo/glyphs/amacron.glif new file mode 100644 index 00000000..937842ec --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/amacron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+macron + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/amacron.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/amacron.ss01.glif new file mode 100644 index 00000000..77092ebe --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/amacron.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+macron + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/ampersand.glif b/sources/FixelDisplay-Bold.ufo/glyphs/ampersand.glif new file mode 100644 index 00000000..bb4bbc28 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/ampersand.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/aogonek.glif b/sources/FixelDisplay-Bold.ufo/glyphs/aogonek.glif new file mode 100644 index 00000000..c1c13038 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/aogonek.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+ogonek + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/aogonek.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/aogonek.ss01.glif new file mode 100644 index 00000000..5294a986 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/aogonek.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+ogonek + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/apostrophemod.glif b/sources/FixelDisplay-Bold.ufo/glyphs/apostrophemod.glif new file mode 100644 index 00000000..2a5d3056 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/apostrophemod.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + apostrophe + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/approxequal.glif b/sources/FixelDisplay-Bold.ufo/glyphs/approxequal.glif new file mode 100644 index 00000000..ac486338 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/approxequal.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/aring.glif b/sources/FixelDisplay-Bold.ufo/glyphs/aring.glif new file mode 100644 index 00000000..f060d4a6 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/aring.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+ring + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/aring.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/aring.ss01.glif new file mode 100644 index 00000000..784e837a --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/aring.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+ring + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/arrowdown.case.glif b/sources/FixelDisplay-Bold.ufo/glyphs/arrowdown.case.glif new file mode 100644 index 00000000..f5b2ee17 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/arrowdown.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + arrowup + com.fontlab.metricsRight + arrowup + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/arrowdown.glif b/sources/FixelDisplay-Bold.ufo/glyphs/arrowdown.glif new file mode 100644 index 00000000..f9c79cd4 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/arrowdown.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + arrowup + com.fontlab.metricsRight + arrowup + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/arrowdown.ss01.case.glif b/sources/FixelDisplay-Bold.ufo/glyphs/arrowdown.ss01.case.glif new file mode 100644 index 00000000..777d9f61 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/arrowdown.ss01.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + arrowup + com.fontlab.metricsRight + arrowup + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/arrowdown.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/arrowdown.ss01.glif new file mode 100644 index 00000000..c742861d --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/arrowdown.ss01.glif @@ -0,0 +1,15 @@ + + + + + + + + + com.fontlab.metricsLeft + arrowup + com.fontlab.metricsRight + arrowup + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/arrowleft.case.glif b/sources/FixelDisplay-Bold.ufo/glyphs/arrowleft.case.glif new file mode 100644 index 00000000..ef937024 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/arrowleft.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + arrowleft + com.fontlab.metricsRight + arrowleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/arrowleft.glif b/sources/FixelDisplay-Bold.ufo/glyphs/arrowleft.glif new file mode 100644 index 00000000..e8825a00 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/arrowleft.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/arrowleft.ss01.case.glif b/sources/FixelDisplay-Bold.ufo/glyphs/arrowleft.ss01.case.glif new file mode 100644 index 00000000..dc6ab12d --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/arrowleft.ss01.case.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + arrowleft + com.fontlab.metricsRight + arrowleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/arrowleft.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/arrowleft.ss01.glif new file mode 100644 index 00000000..0d7709d3 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/arrowleft.ss01.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + arrowleft + com.fontlab.metricsRight + arrowleft + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/arrowright.case.glif b/sources/FixelDisplay-Bold.ufo/glyphs/arrowright.case.glif new file mode 100644 index 00000000..f1c4889f --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/arrowright.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |arrowleft + com.fontlab.metricsRight + |arrowleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/arrowright.glif b/sources/FixelDisplay-Bold.ufo/glyphs/arrowright.glif new file mode 100644 index 00000000..1ab24e49 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/arrowright.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + |arrowleft + com.fontlab.metricsRight + |arrowleft + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/arrowright.ss01.case.glif b/sources/FixelDisplay-Bold.ufo/glyphs/arrowright.ss01.case.glif new file mode 100644 index 00000000..cc22461b --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/arrowright.ss01.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |arrowleft + com.fontlab.metricsRight + |arrowleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/arrowright.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/arrowright.ss01.glif new file mode 100644 index 00000000..addbf642 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/arrowright.ss01.glif @@ -0,0 +1,15 @@ + + + + + + + + + com.fontlab.metricsLeft + |arrowleft + com.fontlab.metricsRight + |arrowleft + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/arrowup.case.glif b/sources/FixelDisplay-Bold.ufo/glyphs/arrowup.case.glif new file mode 100644 index 00000000..ed1ed3fd --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/arrowup.case.glif @@ -0,0 +1,15 @@ + + + + + + + + + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/arrowup.glif b/sources/FixelDisplay-Bold.ufo/glyphs/arrowup.glif new file mode 100644 index 00000000..3869d152 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/arrowup.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + l() + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/arrowup.ss01.case.glif b/sources/FixelDisplay-Bold.ufo/glyphs/arrowup.ss01.case.glif new file mode 100644 index 00000000..b275f07d --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/arrowup.ss01.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + arrowup + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/arrowup.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/arrowup.ss01.glif new file mode 100644 index 00000000..213b8d18 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/arrowup.ss01.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + arrowup + com.fontlab.metricsRight + l() + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/asciicircum.glif b/sources/FixelDisplay-Bold.ufo/glyphs/asciicircum.glif new file mode 100644 index 00000000..199c0ab3 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/asciicircum.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/asciitilde.glif b/sources/FixelDisplay-Bold.ufo/glyphs/asciitilde.glif new file mode 100644 index 00000000..b6557394 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/asciitilde.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/asterisk.glif b/sources/FixelDisplay-Bold.ufo/glyphs/asterisk.glif new file mode 100644 index 00000000..62a35ffd --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/asterisk.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/at.case.glif b/sources/FixelDisplay-Bold.ufo/glyphs/at.case.glif new file mode 100644 index 00000000..0814dce2 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/at.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/at.glif b/sources/FixelDisplay-Bold.ufo/glyphs/at.glif new file mode 100644 index 00000000..e4f61766 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/at.glif @@ -0,0 +1,92 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/atilde.glif b/sources/FixelDisplay-Bold.ufo/glyphs/atilde.glif new file mode 100644 index 00000000..c0fc6303 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/atilde.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+tilde + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/atilde.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/atilde.ss01.glif new file mode 100644 index 00000000..0c6717a9 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/atilde.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+tilde + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/b.glif b/sources/FixelDisplay-Bold.ufo/glyphs/b.glif new file mode 100644 index 00000000..395aa30b --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/b.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/b.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/b.ss01.glif new file mode 100644 index 00000000..73013c7f --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/b.ss01.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/backslash.case.glif b/sources/FixelDisplay-Bold.ufo/glyphs/backslash.case.glif new file mode 100644 index 00000000..f48a7b49 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/backslash.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + backslash + com.fontlab.metricsRight + backslash + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/backslash.glif b/sources/FixelDisplay-Bold.ufo/glyphs/backslash.glif new file mode 100644 index 00000000..a1b8e29b --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/backslash.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/bar.case.glif b/sources/FixelDisplay-Bold.ufo/glyphs/bar.case.glif new file mode 100644 index 00000000..02a69717 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/bar.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + H-10 + com.fontlab.metricsRight + H-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/bar.glif b/sources/FixelDisplay-Bold.ufo/glyphs/bar.glif new file mode 100644 index 00000000..4d6bc55d --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/bar.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H-10 + com.fontlab.metricsRight + H-10 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/be-cy.S_R_B_.glif b/sources/FixelDisplay-Bold.ufo/glyphs/be-cy.S_R_B_.glif new file mode 100644 index 00000000..3b717175 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/be-cy.S_R_B_.glif @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/be-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/be-cy.glif new file mode 100644 index 00000000..668b7982 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/be-cy.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/bishopblack.glif b/sources/FixelDisplay-Bold.ufo/glyphs/bishopblack.glif new file mode 100644 index 00000000..82010999 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/bishopblack.glif @@ -0,0 +1,241 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =10 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/bishopwhite.glif b/sources/FixelDisplay-Bold.ufo/glyphs/bishopwhite.glif new file mode 100644 index 00000000..48241c9a --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/bishopwhite.glif @@ -0,0 +1,331 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/braceleft.case.glif b/sources/FixelDisplay-Bold.ufo/glyphs/braceleft.case.glif new file mode 100644 index 00000000..88a75fd8 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/braceleft.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |braceright.case + com.fontlab.metricsRight + |braceright.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/braceleft.glif b/sources/FixelDisplay-Bold.ufo/glyphs/braceleft.glif new file mode 100644 index 00000000..04759269 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/braceleft.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/braceright.case.glif b/sources/FixelDisplay-Bold.ufo/glyphs/braceright.case.glif new file mode 100644 index 00000000..ccef6bfc --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/braceright.case.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/braceright.glif b/sources/FixelDisplay-Bold.ufo/glyphs/braceright.glif new file mode 100644 index 00000000..5d7d3c61 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/braceright.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/bracketangleleft.case.glif b/sources/FixelDisplay-Bold.ufo/glyphs/bracketangleleft.case.glif new file mode 100644 index 00000000..bba91811 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/bracketangleleft.case.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + parenleft.case + com.fontlab.metricsRight + parenleft.case + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/bracketangleleft.glif b/sources/FixelDisplay-Bold.ufo/glyphs/bracketangleleft.glif new file mode 100644 index 00000000..8169cd31 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/bracketangleleft.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + parenleft + com.fontlab.metricsRight + parenleft + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/bracketangleright.case.glif b/sources/FixelDisplay-Bold.ufo/glyphs/bracketangleright.case.glif new file mode 100644 index 00000000..fcbf9e92 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/bracketangleright.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |bracketangleleft.case + com.fontlab.metricsRight + |bracketangleleft.case + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/bracketangleright.glif b/sources/FixelDisplay-Bold.ufo/glyphs/bracketangleright.glif new file mode 100644 index 00000000..26c8d964 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/bracketangleright.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.metricsLeft + |bracketangleleft + com.fontlab.metricsRight + |bracketangleleft + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/bracketleft.case.glif b/sources/FixelDisplay-Bold.ufo/glyphs/bracketleft.case.glif new file mode 100644 index 00000000..90b43f4d --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/bracketleft.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |bracketright.case + com.fontlab.metricsRight + |bracketright.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/bracketleft.glif b/sources/FixelDisplay-Bold.ufo/glyphs/bracketleft.glif new file mode 100644 index 00000000..d1c74038 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/bracketleft.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/bracketright.case.glif b/sources/FixelDisplay-Bold.ufo/glyphs/bracketright.case.glif new file mode 100644 index 00000000..bd3b9cd0 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/bracketright.case.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |bracketleft + com.fontlab.metricsRight + |bracketleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/bracketright.glif b/sources/FixelDisplay-Bold.ufo/glyphs/bracketright.glif new file mode 100644 index 00000000..aa501945 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/bracketright.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |bracketleft + com.fontlab.metricsRight + |bracketleft + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/breve.case.glif b/sources/FixelDisplay-Bold.ufo/glyphs/breve.case.glif new file mode 100644 index 00000000..0601e835 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/breve.case.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/breve.glif b/sources/FixelDisplay-Bold.ufo/glyphs/breve.glif new file mode 100644 index 00000000..a8a03cc1 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/breve.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/brokenbar.case.glif b/sources/FixelDisplay-Bold.ufo/glyphs/brokenbar.case.glif new file mode 100644 index 00000000..63eefb34 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/brokenbar.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + bar + com.fontlab.metricsRight + bar + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/brokenbar.glif b/sources/FixelDisplay-Bold.ufo/glyphs/brokenbar.glif new file mode 100644 index 00000000..c7f965cc --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/brokenbar.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + bar + com.fontlab.metricsRight + bar + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/bullet.case.glif b/sources/FixelDisplay-Bold.ufo/glyphs/bullet.case.glif new file mode 100644 index 00000000..6d68d28a --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/bullet.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + period + com.fontlab.metricsRight + period + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/bullet.glif b/sources/FixelDisplay-Bold.ufo/glyphs/bullet.glif new file mode 100644 index 00000000..1557315a --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/bullet.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + period + com.fontlab.metricsRight + period + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/c.glif b/sources/FixelDisplay-Bold.ufo/glyphs/c.glif new file mode 100644 index 00000000..0f56b9f1 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/c.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/cacute.glif b/sources/FixelDisplay-Bold.ufo/glyphs/cacute.glif new file mode 100644 index 00000000..0b57604f --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/cacute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+acute + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/caron.case.glif b/sources/FixelDisplay-Bold.ufo/glyphs/caron.case.glif new file mode 100644 index 00000000..d7974f20 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/caron.case.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/caron.glif b/sources/FixelDisplay-Bold.ufo/glyphs/caron.glif new file mode 100644 index 00000000..721436e0 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/caron.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/caron.salt.glif b/sources/FixelDisplay-Bold.ufo/glyphs/caron.salt.glif new file mode 100644 index 00000000..e0deccf0 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/caron.salt.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/ccaron.glif b/sources/FixelDisplay-Bold.ufo/glyphs/ccaron.glif new file mode 100644 index 00000000..7f45d89f --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/ccaron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+caron + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/ccedilla.glif b/sources/FixelDisplay-Bold.ufo/glyphs/ccedilla.glif new file mode 100644 index 00000000..e44d84cc --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/ccedilla.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+cedilla + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/cche-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/cche-cy.glif new file mode 100644 index 00000000..01d824b8 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/cche-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ч + com.fontlab.metricsRight + ч + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/ccircumflex.glif b/sources/FixelDisplay-Bold.ufo/glyphs/ccircumflex.glif new file mode 100644 index 00000000..b4536238 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/ccircumflex.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+circumflex + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/cdotaccent.glif b/sources/FixelDisplay-Bold.ufo/glyphs/cdotaccent.glif new file mode 100644 index 00000000..33ade419 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/cdotaccent.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+dotaccent + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/cedilla.glif b/sources/FixelDisplay-Bold.ufo/glyphs/cedilla.glif new file mode 100644 index 00000000..b42ae3c8 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/cedilla.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/cent.glif b/sources/FixelDisplay-Bold.ufo/glyphs/cent.glif new file mode 100644 index 00000000..7c1791e8 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/cent.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + c + com.fontlab.metricsRight + c + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/che-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/che-cy.glif new file mode 100644 index 00000000..4f6467bf --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/che-cy.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + u-10 + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/cheabkhcyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/cheabkhcyr.glif new file mode 100644 index 00000000..0a296ede --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/cheabkhcyr.glif @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + e + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/cheabkhtailcyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/cheabkhtailcyr.glif new file mode 100644 index 00000000..66fa22f8 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/cheabkhtailcyr.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + cheabkhcyr + com.fontlab.metricsRight + cheabkhcyr + com.fontlab.recipe + cheabkhcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/chedieresiscyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/chedieresiscyr.glif new file mode 100644 index 00000000..f6628246 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/chedieresiscyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + che-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/chekhakascyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/chekhakascyr.glif new file mode 100644 index 00000000..2a8571df --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/chekhakascyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ч + com.fontlab.metricsRight + н + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/chetailcyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/chetailcyr.glif new file mode 100644 index 00000000..59417f54 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/chetailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ч + com.fontlab.metricsRight + entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/chevertcyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/chevertcyr.glif new file mode 100644 index 00000000..26672d18 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/chevertcyr.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ч + com.fontlab.metricsRight + н + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/circumflex.case.glif b/sources/FixelDisplay-Bold.ufo/glyphs/circumflex.case.glif new file mode 100644 index 00000000..b0c4a30e --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/circumflex.case.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/circumflex.glif b/sources/FixelDisplay-Bold.ufo/glyphs/circumflex.glif new file mode 100644 index 00000000..d343b076 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/circumflex.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/clubwhite.glif b/sources/FixelDisplay-Bold.ufo/glyphs/clubwhite.glif new file mode 100644 index 00000000..f2747a1a --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/clubwhite.glif @@ -0,0 +1,155 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/colon.case.glif b/sources/FixelDisplay-Bold.ufo/glyphs/colon.case.glif new file mode 100644 index 00000000..e3d78624 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/colon.case.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/colon.glif b/sources/FixelDisplay-Bold.ufo/glyphs/colon.glif new file mode 100644 index 00000000..ae34cf0d --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/colon.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/colontriangularmod.glif b/sources/FixelDisplay-Bold.ufo/glyphs/colontriangularmod.glif new file mode 100644 index 00000000..e22634a7 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/colontriangularmod.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + colon + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/comma.glif b/sources/FixelDisplay-Bold.ufo/glyphs/comma.glif new file mode 100644 index 00000000..fe9867fd --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/comma.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/commaaccentcomb.glif b/sources/FixelDisplay-Bold.ufo/glyphs/commaaccentcomb.glif new file mode 100644 index 00000000..16b37808 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/commaaccentcomb.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/commaaccentcomb.salt.glif b/sources/FixelDisplay-Bold.ufo/glyphs/commaaccentcomb.salt.glif new file mode 100644 index 00000000..b8bb4a0e --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/commaaccentcomb.salt.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/contents.plist b/sources/FixelDisplay-Bold.ufo/glyphs/contents.plist new file mode 100644 index 00000000..2830b2de --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/contents.plist @@ -0,0 +1,2352 @@ + + + + + .notdef + _notdef.glif + A + A_.glif + A-cy + A_-cy.glif + A-cy.accented + A_-cy.accented.glif + A-cy.ss01 + A_-cy.ss01.glif + A.ss01 + A_.ss01.glif + AE + A_E_.glif + AE.ss01 + A_E_.ss01.glif + AEacute + A_E_acute.glif + Aacute + A_acute.glif + Aacute.ss01 + A_acute.ss01.glif + Abreve + A_breve.glif + Abreve.ss01 + A_breve.ss01.glif + Abrevecyr + A_brevecyr.glif + Acaron + A_caron.glif + Acircumflex + A_circumflex.glif + Acircumflex.ss01 + A_circumflex.ss01.glif + Adieresis + A_dieresis.glif + Adieresis.ss01 + A_dieresis.ss01.glif + Adieresiscyr + A_dieresiscyr.glif + Agrave + A_grave.glif + Agrave.ss01 + A_grave.ss01.glif + Aiecyr + A_iecyr.glif + Amacron + A_macron.glif + Amacron.ss01 + A_macron.ss01.glif + Aogonek + A_ogonek.glif + Aogonek.ss01 + A_ogonek.ss01.glif + Aring + A_ring.glif + Aring.ss01 + A_ring.ss01.glif + Atilde + A_tilde.glif + Atilde.ss01 + A_tilde.ss01.glif + B + B_.glif + Be-cy + B_e-cy.glif + C + C_.glif + CR + C_R_.glif + Cacute + C_acute.glif + Ccaron + C_caron.glif + Ccedilla + C_cedilla.glif + Cche-cy + C_che-cy.glif + Ccircumflex + C_circumflex.glif + Cdotaccent + C_dotaccent.glif + Che-cy + C_he-cy.glif + Cheabkhcyr + C_heabkhcyr.glif + Cheabkhtailcyr + C_heabkhtailcyr.glif + Chedieresiscyr + C_hedieresiscyr.glif + Chekhakascyr + C_hekhakascyr.glif + Chetailcyr + C_hetailcyr.glif + Chevertcyr + C_hevertcyr.glif + CrossedO-cy + C_rossedO_-cy.glif + D + D_.glif + Dcaron + D_caron.glif + Dchecyr + D_checyr.glif + Dcroat + D_croat.glif + De-cy + D_e-cy.glif + De-cy.BGR + D_e-cy.B_G_R_.glif + DeSoft-cy + D_eS_oft-cy.glif + Dekomicyr + D_ekomicyr.glif + Delta + D_elta.glif + Djecyr + D_jecyr.glif + Djekomicyr + D_jekomicyr.glif + Djerv-cy + D_jerv-cy.glif + DoubleO-cy + D_oubleO_-cy.glif + Dwe-cy + D_we-cy.glif + Dze-cy + D_ze-cy.glif + DzeReversed-cy + D_zeR_eversed-cy.glif + Dzeabkhcyr + D_zeabkhcyr.glif + Dzelo-cy + D_zelo-cy.glif + Dzhecyr + D_zhecyr.glif + Dzjekomicyr + D_zjekomicyr.glif + Dzwe-cy + D_zwe-cy.glif + Dzze-cy + D_zze-cy.glif + Dzzhecyr + D_zzhecyr.glif + E + E_.glif + E-cy + E_-cy.glif + E-cy.accented + E_-cy.accented.glif + Eacute + E_acute.glif + Ebreve + E_breve.glif + Ecaron + E_caron.glif + Ecircumflex + E_circumflex.glif + Edieresis + E_dieresis.glif + Edotaccent + E_dotaccent.glif + Ef-cy + E_f-cy.glif + Ef-cy.BGR + E_f-cy.B_G_R_.glif + Egrave + E_grave.glif + Eiotifiedcyr + E_iotifiedcyr.glif + El-cy + E_l-cy.glif + El-cy.BGR + E_l-cy.B_G_R_.glif + ElSoft-cy + E_lS_oft-cy.glif + Elhookcyr + E_lhookcyr.glif + Elmiddlehookcyr + E_lmiddlehookcyr.glif + Elsharptailcyr + E_lsharptailcyr.glif + Elsmallcyr + E_lsmallcyr.glif + Eltailcyr + E_ltailcyr.glif + Em-cy + E_m-cy.glif + Em-cy.ss01 + E_m-cy.ss01.glif + EmSoft-cy + E_mS_oft-cy.glif + Emacron + E_macron.glif + Emsharptailcyr + E_msharptailcyr.glif + En-cy + E_n-cy.glif + Eng + E_ng.glif + Eng.ss01 + E_ng.ss01.glif + Engecyr + E_ngecyr.glif + Enhookcyr + E_nhookcyr.glif + Enhookleftcyr + E_nhookleftcyr.glif + Enmiddlehookcyr + E_nmiddlehookcyr.glif + Ensharptailcyr + E_nsharptailcyr.glif + Entailcyr + E_ntailcyr.glif + Eogonek + E_ogonek.glif + Er-cy + E_r-cy.glif + Ereversed-cy + E_reversed-cy.glif + Ereversed-cy.accented + E_reversed-cy.accented.glif + Ereverseddieresiscyr + E_reverseddieresiscyr.glif + Ertickcyr + E_rtickcyr.glif + Es-cy + E_s-cy.glif + Estailcyr + E_stailcyr.glif + Estailcyr.BSH + E_stailcyr.B_S_H_.glif + Estailcyr.CHU + E_stailcyr.C_H_U_.glif + Eth + E_th.glif + F + F_.glif + Fitacyr + F_itacyr.glif + G + G_.glif + G.ss01 + G_.ss01.glif + Gacute + G_acute.glif + Gacute.ss01 + G_acute.ss01.glif + Gbreve + G_breve.glif + Gbreve.ss01 + G_breve.ss01.glif + Gcircumflex + G_circumflex.glif + Gcircumflex.ss01 + G_circumflex.ss01.glif + Gcommaaccent + G_commaaccent.glif + Gcommaaccent.ss01 + G_commaaccent.ss01.glif + Gdotaccent + G_dotaccent.glif + Gdotaccent.ss01 + G_dotaccent.ss01.glif + Ge-cy + G_e-cy.glif + Gehookcyr + G_ehookcyr.glif + Gehookstrokecyr + G_ehookstrokecyr.glif + Germandbls + G_ermandbls.glif + Gestrokecyr + G_estrokecyr.glif + Gestrokecyr.BSH + G_estrokecyr.B_S_H_.glif + Getailcyr + G_etailcyr.glif + Gheupturn-cy + G_heupturn-cy.glif + Gjecyr + G_jecyr.glif + H + H_.glif + Ha-cy + H_a-cy.glif + Ha-cy.ss01 + H_a-cy.ss01.glif + Haabkhcyr + H_aabkhcyr.glif + Hahookcyr + H_ahookcyr.glif + Hardsign-cy + H_ardsign-cy.glif + Hastrokecyr + H_astrokecyr.glif + Hbar + H_bar.glif + Hcircumflex + H_circumflex.glif + Hwe-cy + H_we-cy.glif + I + I_.glif + I-cy + I_-cy.glif + IJ + I_J_.glif + Ia-cy + I_a-cy.glif + Ia-cy.accented + I_a-cy.accented.glif + Ia-cy.ss01 + I_a-cy.ss01.glif + Iacute + I_acute.glif + Ibreve + I_breve.glif + Icircumflex + I_circumflex.glif + Idieresis + I_dieresis.glif + Idieresiscyr + I_dieresiscyr.glif + Idotaccent + I_dotaccent.glif + Ie-cy + I_e-cy.glif + Iebrevecyr + I_ebrevecyr.glif + Iegravecyr + I_egravecyr.glif + Igrave + I_grave.glif + Igravecyr + I_gravecyr.glif + Ii-cy + I_i-cy.glif + Ii-cy.accented + I_i-cy.accented.glif + Iishort-cy + I_ishort-cy.glif + Imacron + I_macron.glif + Imacroncyr + I_macroncyr.glif + Io-cy + I_o-cy.glif + Io-cy.accented + I_o-cy.accented.glif + Iogonek + I_ogonek.glif + Iota-cy + I_ota-cy.glif + IotifiedA-cy + I_otifiedA_-cy.glif + Ishortsharptailcyr + I_shortsharptailcyr.glif + Itilde + I_tilde.glif + Iu-cy + I_u-cy.glif + Iu-cy.accented + I_u-cy.accented.glif + Izhitsacyr + I_zhitsacyr.glif + Izhitsagravedblcyr + I_zhitsagravedblcyr.glif + J + J_.glif + J.ss01 + J_.ss01.glif + Jcircumflex + J_circumflex.glif + Jcircumflex.ss01 + J_circumflex.ss01.glif + Jecyr + J_ecyr.glif + K + K_.glif + K.ss01 + K_.ss01.glif + Ka-cy + K_a-cy.glif + Ka-cy.ss01 + K_a-cy.ss01.glif + Kaaleutcyr + K_aaleutcyr.glif + Kabashkcyr + K_abashkcyr.glif + Kahookcyr + K_ahookcyr.glif + Kastrokecyr + K_astrokecyr.glif + Katailcyr + K_atailcyr.glif + Kaverticalstrokecyr + K_averticalstrokecyr.glif + Kcommaaccent + K_commaaccent.glif + Kcommaaccent.ss01 + K_commaaccent.ss01.glif + Kjecyr + K_jecyr.glif + Koppacyr + K_oppacyr.glif + Ksicyr + K_sicyr.glif + L + L_.glif + Lacute + L_acute.glif + Lcaron + L_caron.glif + Lcommaaccent + L_commaaccent.glif + Ldot + L_dot.glif + Lhacyr + L_hacyr.glif + Ljecyr + L_jecyr.glif + Ljekomicyr + L_jekomicyr.glif + Lslash + L_slash.glif + M + M_.glif + M.ss01 + M_.ss01.glif + N + N_.glif + N.ss01 + N_.ss01.glif + NULL + N_U_L_L_.glif + Nacute + N_acute.glif + Nacute.ss01 + N_acute.ss01.glif + Ncaron + N_caron.glif + Ncaron.ss01 + N_caron.ss01.glif + Ncommaaccent + N_commaaccent.glif + Ncommaaccent.ss01 + N_commaaccent.ss01.glif + Njecyr + N_jecyr.glif + Njekomicyr + N_jekomicyr.glif + Ntilde + N_tilde.glif + Ntilde.ss01 + N_tilde.ss01.glif + O + O_.glif + O-cy + O_-cy.glif + O-cy.accented + O_-cy.accented.glif + OBinocular-cy + O_B_inocular-cy.glif + ODoubleMonocular-cy + O_D_oubleM_onocular-cy.glif + OE + O_E_.glif + OMonocular-cy + O_M_onocular-cy.glif + Oacute + O_acute.glif + Obarcyr + O_barcyr.glif + Obardieresiscyr + O_bardieresiscyr.glif + Obreve + O_breve.glif + Ocircumflex + O_circumflex.glif + Odieresis + O_dieresis.glif + Odieresiscyr + O_dieresiscyr.glif + Ograve + O_grave.glif + Ohungarumlaut + O_hungarumlaut.glif + Omacron + O_macron.glif + Omega + O_mega.glif + OmegaBroad-cy + O_megaB_road-cy.glif + Omegacyr + O_megacyr.glif + Omegaroundcyr + O_megaroundcyr.glif + Omegatitlocyr + O_megatitlocyr.glif + Oslash + O_slash.glif + Oslashacute + O_slashacute.glif + Otcyr + O_tcyr.glif + Otilde + O_tilde.glif + P + P_.glif + Palochkacyr + P_alochkacyr.glif + Pe-cy + P_e-cy.glif + Pehookcyr + P_ehookcyr.glif + Petailcyr + P_etailcyr.glif + Psicyr + P_sicyr.glif + Q + Q_.glif + Q.ss01 + Q_.ss01.glif + Qacyr + Q_acyr.glif + R + R_.glif + Racute + R_acute.glif + Rcaron + R_caron.glif + Rcommaaccent + R_commaaccent.glif + Reversedzecyr + R_eversedzecyr.glif + Rhacyr + R_hacyr.glif + S + S_.glif + Sacute + S_acute.glif + Scaron + S_caron.glif + Scedilla + S_cedilla.glif + Schwa + S_chwa.glif + Schwacyr + S_chwacyr.glif + Schwadieresiscyr + S_chwadieresiscyr.glif + Scircumflex + S_circumflex.glif + Scommaaccent + S_commaaccent.glif + Semisoftcyr + S_emisoftcyr.glif + Sha-cy + S_ha-cy.glif + Shcha-cy + S_hcha-cy.glif + Shhacyr + S_hhacyr.glif + Shhatailcyr + S_hhatailcyr.glif + Shwe-cy + S_hwe-cy.glif + Sjekomicyr + S_jekomicyr.glif + Softsign-cy + S_oftsign-cy.glif + T + T_.glif + Tbar + T_bar.glif + Tcaron + T_caron.glif + Tcedilla + T_cedilla.glif + Tche-cy + T_che-cy.glif + Tcommaaccent + T_commaaccent.glif + Te-cy + T_e-cy.glif + TeWithMiddleHook-cy + T_eW_ithM_iddleH_ook-cy.glif + Tetailcyr + T_etailcyr.glif + Tetsecyr + T_etsecyr.glif + Thorn + T_horn.glif + Tjekomicyr + T_jekomicyr.glif + Tse-cy + T_se-cy.glif + TseReversed-cy + T_seR_eversed-cy.glif + Tshecyr + T_shecyr.glif + Tsse-cy + T_sse-cy.glif + Tswe-cy + T_swe-cy.glif + Twe-cy + T_we-cy.glif + U + U_.glif + U-cy + U_-cy.glif + U-cy.accented + U_-cy.accented.glif + U-cy.ss01 + U_-cy.ss01.glif + Uacute + U_acute.glif + Uacutedblcyr + U_acutedblcyr.glif + Ubreve + U_breve.glif + Ucircumflex + U_circumflex.glif + Udieresis + U_dieresis.glif + Udieresiscyr + U_dieresiscyr.glif + Ugrave + U_grave.glif + Uhungarumlaut + U_hungarumlaut.glif + UkMonograph-cy + U_kM_onograph-cy.glif + Ukcyr + U_kcyr.glif + Umacron + U_macron.glif + Umacroncyr + U_macroncyr.glif + Uogonek + U_ogonek.glif + Uring + U_ring.glif + Ushort-cy + U_short-cy.glif + Ushort-cy.ss01 + U_short-cy.ss01.glif + Ustraightcyr + U_straightcyr.glif + Ustraightstrokecyr + U_straightstrokecyr.glif + Utilde + U_tilde.glif + V + V_.glif + V.ss01 + V_.ss01.glif + Ve-cy + V_e-cy.glif + W + W_.glif + W.ss01 + W_.ss01.glif + Wacute + W_acute.glif + Wacute.ss01 + W_acute.ss01.glif + Wcircumflex + W_circumflex.glif + Wcircumflex.ss01 + W_circumflex.ss01.glif + Wdieresis + W_dieresis.glif + Wdieresis.ss01 + W_dieresis.ss01.glif + Wecyr + W_ecyr.glif + Wgrave + W_grave.glif + Wgrave.ss01 + W_grave.ss01.glif + X + X_.glif + X.ss01 + X_.ss01.glif + Xatailcyr + X_atailcyr.glif + Y + Y_.glif + Y.ss01 + Y_.ss01.glif + Yacute + Y_acute.glif + Yacute.ss01 + Y_acute.ss01.glif + Yaecyr + Y_aecyr.glif + YatIotified-cy + Y_atI_otified-cy.glif + Yatcyr + Y_atcyr.glif + Ycircumflex + Y_circumflex.glif + Ycircumflex.ss01 + Y_circumflex.ss01.glif + Ydieresis + Y_dieresis.glif + Ydieresis.ss01 + Y_dieresis.ss01.glif + YerNeutral-cy + Y_erN_eutral-cy.glif + Yeru-cy + Y_eru-cy.glif + Yeru-cy.accented + Y_eru-cy.accented.glif + Yeru-cymacron + Y_eru-cymacron.glif + YeruBackYer-cy + Y_eruB_ackY_er-cy.glif + Yi-cy + Y_i-cy.glif + Ylongdieresiscyr + Y_longdieresiscyr.glif + Yn-cy + Y_n-cy.glif + YuReversed-cy + Y_uR_eversed-cy.glif + YusBlended-cy + Y_usB_lended-cy.glif + YusClosedlittle-cy + Y_usC_losedlittle-cy.glif + Yusbigcyr + Y_usbigcyr.glif + Yusbigiotifiedcyr + Y_usbigiotifiedcyr.glif + YusiotifiedClosedLittle-cy + Y_usiotifiedC_losedL_ittle-cy.glif + Yuslittlecyr + Y_uslittlecyr.glif + Yuslittleiotifiedcyr + Y_uslittleiotifiedcyr.glif + Z + Z_.glif + Z.ss01 + Z_.ss01.glif + Zacute + Z_acute.glif + Zacute.ss01 + Z_acute.ss01.glif + Zcaron + Z_caron.glif + Zcaron.ss01 + Z_caron.ss01.glif + Zdotaccent + Z_dotaccent.glif + Zdotaccent.ss01 + Z_dotaccent.ss01.glif + Ze-cy + Z_e-cy.glif + Zedieresiscyr + Z_edieresiscyr.glif + Zemlya-cy + Z_emlya-cy.glif + Zetailcyr + Z_etailcyr.glif + Zetailcyr.BSH + Z_etailcyr.B_S_H_.glif + Zhe-cy + Z_he-cy.glif + Zhe-cy.ss01 + Z_he-cy.ss01.glif + Zhebrevecyr + Z_hebrevecyr.glif + Zhedieresiscyr + Z_hedieresiscyr.glif + Zhetailcyr + Z_hetailcyr.glif + Zhwe-cy + Z_hwe-cy.glif + Zjekomicyr + Z_jekomicyr.glif + _perc-circule + _perc-circule.glif + a + a.glif + a-cy + a-cy.glif + a-cy.accented + a-cy.accented.glif + a-cy.ss01 + a-cy.ss01.glif + a.ss01 + a.ss01.glif + aacute + aacute.glif + aacute.ss01 + aacute.ss01.glif + abreve + abreve.glif + abreve.ss01 + abreve.ss01.glif + abrevecyr + abrevecyr.glif + acaron + acaron.glif + acircumflex + acircumflex.glif + acircumflex.ss01 + acircumflex.ss01.glif + acute + acute.glif + acute.case + acute.case.glif + adieresis + adieresis.glif + adieresis.ss01 + adieresis.ss01.glif + adieresiscyr + adieresiscyr.glif + ae + ae.glif + ae.ss01 + ae.ss01.glif + aeacute + aeacute.glif + agrave + agrave.glif + agrave.ss01 + agrave.ss01.glif + aiecyr + aiecyr.glif + amacron + amacron.glif + amacron.ss01 + amacron.ss01.glif + ampersand + ampersand.glif + aogonek + aogonek.glif + aogonek.ss01 + aogonek.ss01.glif + apostrophemod + apostrophemod.glif + approxequal + approxequal.glif + aring + aring.glif + aring.ss01 + aring.ss01.glif + arrowdown + arrowdown.glif + arrowdown.case + arrowdown.case.glif + arrowdown.ss01 + arrowdown.ss01.glif + arrowdown.ss01.case + arrowdown.ss01.case.glif + arrowleft + arrowleft.glif + arrowleft.case + arrowleft.case.glif + arrowleft.ss01 + arrowleft.ss01.glif + arrowleft.ss01.case + arrowleft.ss01.case.glif + arrowright + arrowright.glif + arrowright.case + arrowright.case.glif + arrowright.ss01 + arrowright.ss01.glif + arrowright.ss01.case + arrowright.ss01.case.glif + arrowup + arrowup.glif + arrowup.case + arrowup.case.glif + arrowup.ss01 + arrowup.ss01.glif + arrowup.ss01.case + arrowup.ss01.case.glif + asciicircum + asciicircum.glif + asciitilde + asciitilde.glif + asterisk + asterisk.glif + at + at.glif + at.case + at.case.glif + atilde + atilde.glif + atilde.ss01 + atilde.ss01.glif + b + b.glif + b.ss01 + b.ss01.glif + backslash + backslash.glif + backslash.case + backslash.case.glif + bar + bar.glif + bar.case + bar.case.glif + be-cy + be-cy.glif + be-cy.SRB + be-cy.S_R_B_.glif + bishopblack + bishopblack.glif + bishopwhite + bishopwhite.glif + braceleft + braceleft.glif + braceleft.case + braceleft.case.glif + braceright + braceright.glif + braceright.case + braceright.case.glif + bracketangleleft + bracketangleleft.glif + bracketangleleft.case + bracketangleleft.case.glif + bracketangleright + bracketangleright.glif + bracketangleright.case + bracketangleright.case.glif + bracketleft + bracketleft.glif + bracketleft.case + bracketleft.case.glif + bracketright + bracketright.glif + bracketright.case + bracketright.case.glif + breve + breve.glif + breve.case + breve.case.glif + brokenbar + brokenbar.glif + brokenbar.case + brokenbar.case.glif + bullet + bullet.glif + bullet.case + bullet.case.glif + c + c.glif + cacute + cacute.glif + caron + caron.glif + caron.case + caron.case.glif + caron.salt + caron.salt.glif + ccaron + ccaron.glif + ccedilla + ccedilla.glif + cche-cy + cche-cy.glif + ccircumflex + ccircumflex.glif + cdotaccent + cdotaccent.glif + cedilla + cedilla.glif + cent + cent.glif + che-cy + che-cy.glif + cheabkhcyr + cheabkhcyr.glif + cheabkhtailcyr + cheabkhtailcyr.glif + chedieresiscyr + chedieresiscyr.glif + chekhakascyr + chekhakascyr.glif + chetailcyr + chetailcyr.glif + chevertcyr + chevertcyr.glif + circumflex + circumflex.glif + circumflex.case + circumflex.case.glif + clubwhite + clubwhite.glif + colon + colon.glif + colon.case + colon.case.glif + colontriangularmod + colontriangularmod.glif + comma + comma.glif + commaaccentcomb + commaaccentcomb.glif + commaaccentcomb.salt + commaaccentcomb.salt.glif + copyright + copyright.glif + crossedo-cy + crossedo-cy.glif + crossedswords + crossedswords.glif + currency + currency.glif + d + d.glif + d.ss01 + d.ss01.glif + dagger + dagger.glif + daggerdbl + daggerdbl.glif + dcaron + dcaron.glif + dcaron.ss01 + dcaron.ss01.glif + dchecyr + dchecyr.glif + dcroat + dcroat.glif + dcroat.ss01 + dcroat.ss01.glif + de-cy + de-cy.glif + de-cy.BGR + de-cy.B_G_R_.glif + de-cy.ss01 + de-cy.ss01.glif + deSoft-cy + deS_oft-cy.glif + degree + degree.glif + dekomicyr + dekomicyr.glif + diamondwhite-misc + diamondwhite-misc.glif + dieresis + dieresis.glif + dieresis.alt + dieresis.alt.glif + dieresis.case + dieresis.case.glif + dieresisacute + dieresisacute.glif + dieresiscase.alt + dieresiscase.alt.glif + divide + divide.glif + djecyr + djecyr.glif + djekomicyr + djekomicyr.glif + djerv-cy + djerv-cy.glif + dollar + dollar.glif + dotaccent + dotaccent.glif + dotaccent.case + dotaccent.case.glif + doubleo-cy + doubleo-cy.glif + dramsignarmn + dramsignarmn.glif + dwe-cy + dwe-cy.glif + dze-cy + dze-cy.glif + dzeReversed-cy + dzeR_eversed-cy.glif + dzeabkhcyr + dzeabkhcyr.glif + dzelo-cy + dzelo-cy.glif + dzhecyr + dzhecyr.glif + dzjekomicyr + dzjekomicyr.glif + dzwe-cy + dzwe-cy.glif + dzze-cy + dzze-cy.glif + dzzhecyr + dzzhecyr.glif + e + e.glif + e-cy + e-cy.glif + e-cy.accented + e-cy.accented.glif + e-cy.hist + e-cy.hist.glif + e.ss01 + e.ss01.glif + eacute + eacute.glif + eacute.ss01 + eacute.ss01.glif + ebreve + ebreve.glif + ebreve.ss01 + ebreve.ss01.glif + ecaron + ecaron.glif + ecaron.ss01 + ecaron.ss01.glif + ecircumflex + ecircumflex.glif + ecircumflex.ss01 + ecircumflex.ss01.glif + edieresis + edieresis.glif + edieresis.ss01 + edieresis.ss01.glif + edotaccent + edotaccent.glif + edotaccent.ss01 + edotaccent.ss01.glif + ef-cy + ef-cy.glif + egrave + egrave.glif + egrave.ss01 + egrave.ss01.glif + eight + eight.glif + eight.osf + eight.osf.glif + eight.tf + eight.tf.glif + eiotifiedcyr + eiotifiedcyr.glif + eiotifiedcyr.BGR + eiotifiedcyr.B_G_R_.glif + el-cy + el-cy.glif + el-cy.BGR + el-cy.B_G_R_.glif + el-cy.ss01 + el-cy.ss01.glif + elSoft-cy + elS_oft-cy.glif + elhookcyr + elhookcyr.glif + ellipsis + ellipsis.glif + elmiddlehookcyr + elmiddlehookcyr.glif + elsharptailcyr + elsharptailcyr.glif + eltailcyr + eltailcyr.glif + em-cy + em-cy.glif + emSoft-cy + emS_oft-cy.glif + emacron + emacron.glif + emacron.ss01 + emacron.ss01.glif + emdash + emdash.glif + emdash.case + emdash.case.glif + emsharptailcyr + emsharptailcyr.glif + en-cy + en-cy.glif + enclosingcirclecomb + enclosingcirclecomb.glif + endash + endash.glif + endash.case + endash.case.glif + eng + eng.glif + engecyr + engecyr.glif + enhookcyr + enhookcyr.glif + enhookleftcyr + enhookleftcyr.glif + enmiddlehookcyr + enmiddlehookcyr.glif + ensharptailcyr + ensharptailcyr.glif + entailcyr + entailcyr.glif + eogonek + eogonek.glif + eogonek.ss01 + eogonek.ss01.glif + equal + equal.glif + er-cy + er-cy.glif + er-cy.ss01 + er-cy.ss01.glif + ereversed-cy + ereversed-cy.glif + ereversed-cy.accented + ereversed-cy.accented.glif + ereverseddieresiscyr + ereverseddieresiscyr.glif + ertickcyr + ertickcyr.glif + es-cy + es-cy.glif + estailcyr + estailcyr.glif + estailcyr.BSH + estailcyr.B_S_H_.glif + estailcyr.CHU + estailcyr.C_H_U_.glif + estimated + estimated.glif + eth + eth.glif + eturned + eturned.glif + euro + euro.glif + exclam + exclam.glif + exclamdown + exclamdown.glif + exclamdown.case + exclamdown.case.glif + f + f.glif + f.ss01 + f.ss01.glif + f_f + f_f.glif + f_f.ss01 + f_f.ss01.glif + f_f_i + f_f_i.glif + f_f_i.ss01 + f_f_i.ss01.glif + f_f_l + f_f_l.glif + f_f_l.ss01 + f_f_l.ss01.glif + fi + fi.glif + fi.ss01 + fi.ss01.glif + fitacyr + fitacyr.glif + five + five.glif + five.osf + five.osf.glif + five.tf + five.tf.glif + fl + fl.glif + fl.ss01 + fl.ss01.glif + floretteblack + floretteblack.glif + floretteoutlinedpetalledblackeight + floretteoutlinedpetalledblackeight.glif + florettewhite + florettewhite.glif + florin + florin.glif + flower + flower.glif + four + four.glif + four.osf + four.osf.glif + four.tf + four.tf.glif + fraction + fraction.glif + g + g.glif + g.ss01 + g.ss01.glif + gacute + gacute.glif + gacute.ss01 + gacute.ss01.glif + gbreve + gbreve.glif + gbreve.ss01 + gbreve.ss01.glif + gcircumflex + gcircumflex.glif + gcircumflex.ss01 + gcircumflex.ss01.glif + gcommaaccent + gcommaaccent.glif + gcommaaccent.ss01 + gcommaaccent.ss01.glif + gdotaccent + gdotaccent.glif + gdotaccent.ss01 + gdotaccent.ss01.glif + ge-cy + ge-cy.glif + ge-cy.BGR + ge-cy.B_G_R_.glif + ge-cy.SRB + ge-cy.S_R_B_.glif + gehookcyr + gehookcyr.glif + gehookstrokecyr + gehookstrokecyr.glif + germandbls + germandbls.glif + germandbls.ss01 + germandbls.ss01.glif + gestrokecyr + gestrokecyr.glif + gestrokecyr.BSH + gestrokecyr.B_S_H_.glif + getailcyr + getailcyr.glif + gheupturn-cy + gheupturn-cy.glif + gjecyr + gjecyr.glif + gjecyr.SRB + gjecyr.S_R_B_.glif + grave + grave.glif + grave.case + grave.case.glif + greater + greater.glif + greaterequal + greaterequal.glif + guillemetleft + guillemetleft.glif + guillemetleft.case + guillemetleft.case.glif + guillemetright + guillemetright.glif + guillemetright.case + guillemetright.case.glif + guilsinglleft + guilsinglleft.glif + guilsinglleft.case + guilsinglleft.case.glif + guilsinglright + guilsinglright.glif + guilsinglright.case + guilsinglright.case.glif + h + h.glif + ha-cy + ha-cy.glif + haabkhcyr + haabkhcyr.glif + hahookcyr + hahookcyr.glif + hardsign-cy + hardsign-cy.glif + hardsign-cy.BGR + hardsign-cy.B_G_R_.glif + hardsign-cy.ss01 + hardsign-cy.ss01.glif + hastrokecyr + hastrokecyr.glif + hbar + hbar.glif + hcircumflex + hcircumflex.glif + heart + heart.glif + heartwhite + heartwhite.glif + hryvnia + hryvnia.glif + hundredmillionscomb-cy + hundredmillionscomb-cy.glif + hundredthousandscombcyr + hundredthousandscombcyr.glif + hungarumlaut + hungarumlaut.glif + hungarumlaut.case + hungarumlaut.case.glif + hwe-cy + hwe-cy.glif + hyphen + hyphen.glif + hyphen.case + hyphen.case.glif + i + i.glif + i-cy + i-cy.glif + ia-cy + ia-cy.glif + ia-cy.accented + ia-cy.accented.glif + ia-cy.ss01 + ia-cy.ss01.glif + iacute + iacute.glif + ibreve + ibreve.glif + icircumflex + icircumflex.glif + idieresis + idieresis.glif + idieresiscyr + idieresiscyr.glif + idotless + idotless.glif + ie-cy + ie-cy.glif + ie-cy.ss01 + ie-cy.ss01.glif + iebrevecyr + iebrevecyr.glif + iegravecyr + iegravecyr.glif + iegravecyr.SRB + iegravecyr.S_R_B_.glif + igrave + igrave.glif + igravecyr + igravecyr.glif + igravecyr.SRB + igravecyr.S_R_B_.glif + ii-cy + ii-cy.glif + ii-cy.BGR + ii-cy.B_G_R_.glif + ii-cy.accented + ii-cy.accented.glif + iishort-cy + iishort-cy.glif + iishort-cy.BGR + iishort-cy.B_G_R_.glif + ij + ij.glif + imacron + imacron.glif + imacroncyr + imacroncyr.glif + increment + increment.glif + infinity + infinity.glif + integral + integral.glif + io-cy + io-cy.glif + io-cy.accented + io-cy.accented.glif + io-cy.ss01 + io-cy.ss01.glif + iogonek + iogonek.glif + iota-cy + iota-cy.glif + iotifieda-cy + iotifieda-cy.glif + iotifieda-cy.BGR + iotifieda-cy.B_G_R_.glif + iotifieda-cy.hist + iotifieda-cy.hist.glif + ishortsharptailcyr + ishortsharptailcyr.glif + itilde + itilde.glif + iu-cy + iu-cy.glif + iu-cy.BGR + iu-cy.B_G_R_.glif + iu-cy.accented + iu-cy.accented.glif + izhitsacyr + izhitsacyr.glif + izhitsagravedblcyr + izhitsagravedblcyr.glif + j + j.glif + jcircumflex + jcircumflex.glif + jdotless + jdotless.glif + je-cy + je-cy.glif + k + k.glif + ka-cy + ka-cy.glif + ka-cy.BGR + ka-cy.B_G_R_.glif + kaaleutcyr + kaaleutcyr.glif + kabashkcyr + kabashkcyr.glif + kahookcyr + kahookcyr.glif + kastrokecyr + kastrokecyr.glif + katailcyr + katailcyr.glif + kaverticalstrokecyr + kaverticalstrokecyr.glif + kcommaaccent + kcommaaccent.glif + kgreenlandic + kgreenlandic.glif + kjecyr + kjecyr.glif + knightblack + knightblack.glif + knightwhite + knightwhite.glif + koppacyr + koppacyr.glif + ksicyr + ksicyr.glif + l + l.glif + l.ss01 + l.ss01.glif + lacute + lacute.glif + lacute.ss01 + lacute.ss01.glif + lcaron + lcaron.glif + lcaron.ss01 + lcaron.ss01.glif + lcommaaccent + lcommaaccent.glif + lcommaaccent.ss01 + lcommaaccent.ss01.glif + ldot + ldot.glif + ldot.ss01 + ldot.ss01.glif + leo + leo.glif + less + less.glif + lessequal + lessequal.glif + lhacyr + lhacyr.glif + ljecyr + ljecyr.glif + ljecyr.ss01 + ljecyr.ss01.glif + ljekomicyr + ljekomicyr.glif + longs + longs.glif + lslash + lslash.glif + lslash.ss01 + lslash.ss01.glif + m + m.glif + macron + macron.glif + macron-fwd + macron-fwd.glif + macron-fwd.alt + macron-fwd.alt.glif + macron.case + macron.case.glif + macronacute.SRB + macronacute.S_R_B_.glif + millionscombcyr + millionscombcyr.glif + minus + minus.glif + minute + minute.glif + mu + mu.glif + multiply + multiply.glif + n + n.glif + nacute + nacute.glif + napostrophe + napostrophe.glif + ncaron + ncaron.glif + ncommaaccent + ncommaaccent.glif + neptune + neptune.glif + nine + nine.glif + nine.osf + nine.osf.glif + nine.tf + nine.tf.glif + njecyr + njecyr.glif + njecyr.ss01 + njecyr.ss01.glif + njekomicyr + njekomicyr.glif + notequal + notequal.glif + ntilde + ntilde.glif + numbersign + numbersign.glif + numero + numero.glif + numero.ss01 + numero.ss01.glif + o + o.glif + o-cy + o-cy.glif + o-cy.accented + o-cy.accented.glif + oBinocular-cy + oB_inocular-cy.glif + oDoubleMonocular-cy + oD_oubleM_onocular-cy.glif + oMonocular-cy + oM_onocular-cy.glif + oacute + oacute.glif + obarcyr + obarcyr.glif + obardieresiscyr + obardieresiscyr.glif + obreve + obreve.glif + ocircumflex + ocircumflex.glif + odieresis + odieresis.glif + odieresiscyr + odieresiscyr.glif + oe + oe.glif + oe.ss01 + oe.ss01.glif + ogonek + ogonek.glif + ograve + ograve.glif + ohungarumlaut + ohungarumlaut.glif + omacron + omacron.glif + omegaBroad-cy + omegaB_road-cy.glif + omegacyr + omegacyr.glif + omegaroundcyr + omegaroundcyr.glif + omegatitlocyr + omegatitlocyr.glif + omultiocular-cy + omultiocular-cy.glif + omultiocular-cy.alt + omultiocular-cy.alt.glif + one + one.glif + one.osf + one.osf.glif + one.tf + one.tf.glif + onehalf + onehalf.glif + onequarter + onequarter.glif + onesuperior + onesuperior.glif + ordfeminine + ordfeminine.glif + ordmasculine + ordmasculine.glif + oslash + oslash.glif + oslashacute + oslashacute.glif + otcyr + otcyr.glif + otilde + otilde.glif + p + p.glif + p.ss01 + p.ss01.glif + palatcombcyr + palatcombcyr.glif + palochkacyr + palochkacyr.glif + paragraph + paragraph.glif + parenleft + parenleft.glif + parenleft.case + parenleft.case.glif + parenright + parenright.glif + parenright.case + parenright.case.glif + partialdiff + partialdiff.glif + pe-cy + pe-cy.glif + pe-cy.BGR + pe-cy.B_G_R_.glif + pe-cy.SRB + pe-cy.S_R_B_.glif + pehookcyr + pehookcyr.glif + percent + percent.glif + period + period.glif + periodcentered + periodcentered.glif + perthousand + perthousand.glif + petailcyr + petailcyr.glif + pi + pi.glif + plus + plus.glif + plusminus + plusminus.glif + pokrytiecombcyr + pokrytiecombcyr.glif + product + product.glif + proportional + proportional.glif + psicyr + psicyr.glif + q + q.glif + q.ss01 + q.ss01.glif + qacyr + qacyr.glif + question + question.glif + questiondown + questiondown.glif + questiondown.case + questiondown.case.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 + radical + radical.glif + rcaron + rcaron.glif + rcommaaccent + rcommaaccent.glif + registered + registered.glif + reversedzecyr + reversedzecyr.glif + rhacyr + rhacyr.glif + ring + ring.glif + ring.case + ring.case.glif + rookblack + rookblack.glif + ruble + ruble.glif + s + s.glif + sacute + sacute.glif + scaron + scaron.glif + scedilla + scedilla.glif + schwacyr + schwacyr.glif + schwadieresiscyr + schwadieresiscyr.glif + scircumflex + scircumflex.glif + scommaaccent + scommaaccent.glif + second + second.glif + section + section.glif + semicolon + semicolon.glif + semicolon.case + semicolon.case.glif + semisoftcyr + semisoftcyr.glif + seven + seven.glif + seven.osf + seven.osf.glif + seven.tf + seven.tf.glif + sha-cy + sha-cy.glif + sha-cy.BGR + sha-cy.B_G_R_.glif + shcha-cy + shcha-cy.glif + shcha-cy.BGR + shcha-cy.B_G_R_.glif + shhacyr + shhacyr.glif + shhatailcyr + shhatailcyr.glif + shwe-cy + shwe-cy.glif + six + six.glif + six.osf + six.osf.glif + six.tf + six.tf.glif + sjekomicyr + sjekomicyr.glif + slash + slash.glif + slash.case + slash.case.glif + softsign-cy + softsign-cy.glif + softsign-cy.BGR + softsign-cy.B_G_R_.glif + softsign-cy.ss01 + softsign-cy.ss01.glif + space + space.glif + spadewhite + spadewhite.glif + sterling + sterling.glif + summation + summation.glif + t + t.glif + t.ss01 + t.ss01.glif + tbar + tbar.glif + tbar.ss01 + tbar.ss01.glif + tcaron + tcaron.glif + tcaron.ss01 + tcaron.ss01.glif + tcedilla + tcedilla.glif + tcedilla.ss01 + tcedilla.ss01.glif + tche-cy + tche-cy.glif + tcommaaccent + tcommaaccent.glif + tcommaaccent.ss01 + tcommaaccent.ss01.glif + te-cy + te-cy.glif + te-cy.BGR + te-cy.B_G_R_.glif + te-cy.SRB + te-cy.S_R_B_.glif + te-cy.ss01 + te-cy.ss01.glif + tenge + tenge.glif + tenmillionscomb-cy + tenmillionscomb-cy.glif + tetailcyr + tetailcyr.glif + tetsecyr + tetsecyr.glif + tewithmiddlehook-cy + tewithmiddlehook-cy.glif + thorn + thorn.glif + thousandmillionscomb-cy + thousandmillionscomb-cy.glif + thousandscyr + thousandscyr.glif + thousandscyr.dnom + thousandscyr.dnom.glif + three + three.glif + three.osf + three.osf.glif + three.tf + three.tf.glif + threequarters + threequarters.glif + threesuperior + threesuperior.glif + tilde + tilde.glif + tilde.case + tilde.case.glif + titlocombcyr + titlocombcyr.glif + tjekomicyr + tjekomicyr.glif + trademark + trademark.glif + tse-cy + tse-cy.glif + tse-cy.BGR + tse-cy.B_G_R_.glif + tseReversed-cy + tseR_eversed-cy.glif + tshecyr + tshecyr.glif + tsse-cy + tsse-cy.glif + tswe-cy + tswe-cy.glif + twe-cy + twe-cy.glif + two + two.glif + two.osf + two.osf.glif + two.tf + two.tf.glif + twosuperior + twosuperior.glif + u + u.glif + u-cy + u-cy.glif + u-cy.accented + u-cy.accented.glif + uacute + uacute.glif + uacutedblcyr + uacutedblcyr.glif + ubreve + ubreve.glif + ucircumflex + ucircumflex.glif + udieresis + udieresis.glif + udieresiscyr + udieresiscyr.glif + ugrave + ugrave.glif + uhungarumlaut + uhungarumlaut.glif + ukMonograph-cy + ukM_onograph-cy.glif + ukcyr + ukcyr.glif + umacron + umacron.glif + umacroncyr + umacroncyr.glif + underscore + underscore.glif + uni1C80 + uni1C_80.glif + uni1C81 + uni1C_81.glif + uni1C82 + uni1C_82.glif + uni1C83 + uni1C_83.glif + uni1C84 + uni1C_84.glif + uni1C85 + uni1C_85.glif + uni1C86 + uni1C_86.glif + uni1C87 + uni1C_87.glif + uni1C88 + uni1C_88.glif + uni1EBC + uni1E_B_C_.glif + uni1EBD + uni1E_B_D_.glif + uni2010 + uni2010.glif + uni2DEE + uni2D_E_E_.glif + uni2DEE.case + uni2D_E_E_.case.glif + uniE000 + uniE_000.glif + uniE000.alt + uniE_000.alt.glif + uniE01A + uniE_01A_.glif + uniF43A + uniF_43A_.glif + uniF43B + uniF_43B_.glif + uniF45D + uniF_45D_.glif + uniF45E + uniF_45E_.glif + uniF45F + uniF_45F_.glif + uniF475 + uniF_475.glif + uniF476 + uniF_476.glif + uniF477 + uniF_477.glif + uniF478 + uniF_478.glif + uniF479 + uniF_479.glif + uniF498 + uniF_498.glif + uniF499 + uniF_499.glif + uniF49A + uniF_49A_.glif + uniF49B + uniF_49B_.glif + uniF49C + uniF_49C_.glif + uniF49D + uniF_49D_.glif + uniF49E + uniF_49E_.glif + uniF49F + uniF_49F_.glif + uniF4C6 + uniF_4C_6.glif + uniF4C7 + uniF_4C_7.glif + uniF4CC + uniF_4C_C_.glif + uniF4CD + uniF_4C_D_.glif + uniF4D2 + uniF_4D_2.glif + uniF4D3 + uniF_4D_3.glif + uniF4D4 + uniF_4D_4.glif + uniF4D5 + uniF_4D_5.glif + uniF4D6 + uniF_4D_6.glif + uniF4D7 + uniF_4D_7.glif + uniF4D8 + uniF_4D_8.glif + uniF4D9 + uniF_4D_9.glif + uniF50E + uniF_50E_.glif + uniF50F + uniF_50F_.glif + uniF510 + uniF_510.glif + uniF511 + uniF_511.glif + uniF512 + uniF_512.glif + uniF513 + uniF_513.glif + uniF514 + uniF_514.glif + uniF515 + uniF_515.glif + uniF516 + uniF_516.glif + uniF517 + uniF_517.glif + uniF518 + uniF_518.glif + uniF519 + uniF_519.glif + uniF51A + uniF_51A_.glif + uniF51B + uniF_51B_.glif + uniF51C + uniF_51C_.glif + uniF51D + uniF_51D_.glif + uniF51E + uniF_51E_.glif + uniF51F + uniF_51F_.glif + uniF521 + uniF_521.glif + uniF522 + uniF_522.glif + uniF523 + uniF_523.glif + uniF524 + uniF_524.glif + uniF525 + uniF_525.glif + uniF526 + uniF_526.glif + uniF527 + uniF_527.glif + uniF528 + uniF_528.glif + uniF529 + uniF_529.glif + uniF52A + uniF_52A_.glif + uniF52B + uniF_52B_.glif + uniF52C + uniF_52C_.glif + uniF52D + uniF_52D_.glif + uniF52E + uniF_52E_.glif + uniF52F + uniF_52F_.glif + uniF532 + uniF_532.glif + uniF533 + uniF_533.glif + uniF536 + uniF_536.glif + uniF537 + uniF_537.glif + uniF538 + uniF_538.glif + uniF539 + uniF_539.glif + uniF830 + uniF_830.glif + uniF831 + uniF_831.glif + uniF833 + uniF_833.glif + uniF834 + uniF_834.glif + uniF839 + uniF_839.glif + uniF83A + uniF_83A_.glif + uniF86F + uniF_86F_.glif + uniF870 + uniF_870.glif + uniF872 + uniF_872.glif + uniF873 + uniF_873.glif + uniF875 + uniF_875.glif + uniF876 + uniF_876.glif + uniF878 + uniF_878.glif + uniF879 + uniF_879.glif + uniF87B + uniF_87B_.glif + uniF87C + uniF_87C_.glif + uniF87E + uniF_87E_.glif + uniF87F + uniF_87F_.glif + uogonek + uogonek.glif + uring + uring.glif + ushort-cy + ushort-cy.glif + ustraightcyr + ustraightcyr.glif + ustraightstrokecyr + ustraightstrokecyr.glif + utilde + utilde.glif + v + v.glif + ve-cy + ve-cy.glif + ve-cy.BGR + ve-cy.B_G_R_.glif + ve-cy.ss01 + ve-cy.ss01.glif + virgo + virgo.glif + vzmetcomb-cy + vzmetcomb-cy.glif + w + w.glif + wacute + wacute.glif + wcircumflex + wcircumflex.glif + wdieresis + wdieresis.glif + wecyr + wecyr.glif + wgrave + wgrave.glif + x + x.glif + xatailcyr + xatailcyr.glif + y + y.glif + yacute + yacute.glif + yaecyr + yaecyr.glif + yatIotified-cy + yatI_otified-cy.glif + yatcyr + yatcyr.glif + yatcyr.BGR + yatcyr.B_G_R_.glif + ycircumflex + ycircumflex.glif + ydieresis + ydieresis.glif + yen + yen.glif + yen.ss01 + yen.ss01.glif + yerNeutral-cy + yerN_eutral-cy.glif + yeru-cy + yeru-cy.glif + yeru-cy.accented + yeru-cy.accented.glif + yeru-cy.ss01 + yeru-cy.ss01.glif + yeruBackyer-cy + yeruB_ackyer-cy.glif + yi-cy + yi-cy.glif + yi-cy.alt + yi-cy.alt.glif + ylongdieresiscyr + ylongdieresiscyr.glif + yn-cy + yn-cy.glif + yuReversed-cy + yuR_eversed-cy.glif + yusBlended-cy + yusB_lended-cy.glif + yusClosedlittle-cy + yusC_losedlittle-cy.glif + yusbigcyr + yusbigcyr.glif + yusbigiotifiedcyr + yusbigiotifiedcyr.glif + yusbigiotifiedcyr.BGR + yusbigiotifiedcyr.B_G_R_.glif + yusiotifiedClosedLittle-cy + yusiotifiedC_losedL_ittle-cy.glif + yuslittlecyr + yuslittlecyr.glif + yuslittleiotifiedcyr + yuslittleiotifiedcyr.glif + z + z.glif + zacute + zacute.glif + zcaron + zcaron.glif + zdotaccent + zdotaccent.glif + ze-cy + ze-cy.glif + ze-cy.BGR + ze-cy.B_G_R_.glif + zedieresiscyr + zedieresiscyr.glif + zemlya-cy + zemlya-cy.glif + zero + zero.glif + zero.osf + zero.osf.glif + zero.tf + zero.tf.glif + zetailcyr + zetailcyr.glif + zetailcyr.BSH + zetailcyr.B_S_H_.glif + zhe-cy + zhe-cy.glif + zhe-cy.BGR + zhe-cy.B_G_R_.glif + zhebrevecyr + zhebrevecyr.glif + zhedieresiscyr + zhedieresiscyr.glif + zhetailcyr + zhetailcyr.glif + zhwe-cy + zhwe-cy.glif + zjekomicyr + zjekomicyr.glif + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/copyright.glif b/sources/FixelDisplay-Bold.ufo/glyphs/copyright.glif new file mode 100644 index 00000000..ae8d9063 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/copyright.glif @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/crossedo-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/crossedo-cy.glif new file mode 100644 index 00000000..da1c07cc --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/crossedo-cy.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + com.fontlab.recipe + o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/crossedswords.glif b/sources/FixelDisplay-Bold.ufo/glyphs/crossedswords.glif new file mode 100644 index 00000000..ee116d23 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/crossedswords.glif @@ -0,0 +1,103 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/currency.glif b/sources/FixelDisplay-Bold.ufo/glyphs/currency.glif new file mode 100644 index 00000000..b5f0106f --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/currency.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/d.glif b/sources/FixelDisplay-Bold.ufo/glyphs/d.glif new file mode 100644 index 00000000..3318eef9 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/d.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/d.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/d.ss01.glif new file mode 100644 index 00000000..9c4c26ff --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/d.ss01.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/dagger.glif b/sources/FixelDisplay-Bold.ufo/glyphs/dagger.glif new file mode 100644 index 00000000..b60a92d1 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/dagger.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/daggerdbl.glif b/sources/FixelDisplay-Bold.ufo/glyphs/daggerdbl.glif new file mode 100644 index 00000000..ce4b929c --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/daggerdbl.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/dcaron.glif b/sources/FixelDisplay-Bold.ufo/glyphs/dcaron.glif new file mode 100644 index 00000000..82e5f61d --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/dcaron.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + d+caron.salt + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/dcaron.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/dcaron.ss01.glif new file mode 100644 index 00000000..395e4dd9 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/dcaron.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + d.ss01+caron.salt + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/dchecyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/dchecyr.glif new file mode 100644 index 00000000..66c5b6e3 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/dchecyr.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + д+10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/dcroat.glif b/sources/FixelDisplay-Bold.ufo/glyphs/dcroat.glif new file mode 100644 index 00000000..90e19daa --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/dcroat.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + d + com.fontlab.metricsRight + |hbar + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/dcroat.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/dcroat.ss01.glif new file mode 100644 index 00000000..b8d9a773 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/dcroat.ss01.glif @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + d.ss01 + com.fontlab.metricsRight + |hbar + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/de-cy.B_G_R_.glif b/sources/FixelDisplay-Bold.ufo/glyphs/de-cy.B_G_R_.glif new file mode 100644 index 00000000..b7362b9a --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/de-cy.B_G_R_.glif @@ -0,0 +1,77 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + q + com.fontlab.metricsRight + q + com.fontlab.recipe + uni1C81 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/de-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/de-cy.glif new file mode 100644 index 00000000..69835bdb --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/de-cy.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/de-cy.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/de-cy.ss01.glif new file mode 100644 index 00000000..5928b1f6 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/de-cy.ss01.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/deS_oft-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/deS_oft-cy.glif new file mode 100644 index 00000000..2ce089f7 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/deS_oft-cy.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + д + com.fontlab.metricsRight + ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/degree.glif b/sources/FixelDisplay-Bold.ufo/glyphs/degree.glif new file mode 100644 index 00000000..a4eb8002 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/degree.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/dekomicyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/dekomicyr.glif new file mode 100644 index 00000000..a0c549d8 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/dekomicyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + d + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/diamondwhite-misc.glif b/sources/FixelDisplay-Bold.ufo/glyphs/diamondwhite-misc.glif new file mode 100644 index 00000000..c339e917 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/diamondwhite-misc.glif @@ -0,0 +1,145 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =34 + com.fontlab.metricsRight + =34 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/dieresis.alt.glif b/sources/FixelDisplay-Bold.ufo/glyphs/dieresis.alt.glif new file mode 100644 index 00000000..8f12323f --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/dieresis.alt.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 1,0.6,0.994,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/dieresis.case.glif b/sources/FixelDisplay-Bold.ufo/glyphs/dieresis.case.glif new file mode 100644 index 00000000..36daee77 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/dieresis.case.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/dieresis.glif b/sources/FixelDisplay-Bold.ufo/glyphs/dieresis.glif new file mode 100644 index 00000000..d5e1337e --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/dieresis.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/dieresisacute.glif b/sources/FixelDisplay-Bold.ufo/glyphs/dieresisacute.glif new file mode 100644 index 00000000..0bbf0915 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/dieresisacute.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/dieresiscase.alt.glif b/sources/FixelDisplay-Bold.ufo/glyphs/dieresiscase.alt.glif new file mode 100644 index 00000000..d25afda0 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/dieresiscase.alt.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 1,0.6,0.994,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/divide.glif b/sources/FixelDisplay-Bold.ufo/glyphs/divide.glif new file mode 100644 index 00000000..da7b3b09 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/divide.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/djecyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/djecyr.glif new file mode 100644 index 00000000..f3e62480 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/djecyr.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hbar + com.fontlab.metricsRight + h + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/djekomicyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/djekomicyr.glif new file mode 100644 index 00000000..8add407a --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/djekomicyr.glif @@ -0,0 +1,73 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + d + com.fontlab.metricsRight + njekomicyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/djerv-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/djerv-cy.glif new file mode 100644 index 00000000..b7db908a --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/djerv-cy.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + r() + com.fontlab.metricsRight + п-30 + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/dollar.glif b/sources/FixelDisplay-Bold.ufo/glyphs/dollar.glif new file mode 100644 index 00000000..025652ba --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/dollar.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + S + com.fontlab.metricsRight + S + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/dotaccent.case.glif b/sources/FixelDisplay-Bold.ufo/glyphs/dotaccent.case.glif new file mode 100644 index 00000000..7e46db56 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/dotaccent.case.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/dotaccent.glif b/sources/FixelDisplay-Bold.ufo/glyphs/dotaccent.glif new file mode 100644 index 00000000..b0c589f6 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/dotaccent.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/doubleo-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/doubleo-cy.glif new file mode 100644 index 00000000..90aa4d06 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/doubleo-cy.glif @@ -0,0 +1,91 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + com.fontlab.recipe + o_o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/dramsignarmn.glif b/sources/FixelDisplay-Bold.ufo/glyphs/dramsignarmn.glif new file mode 100644 index 00000000..5ef3fa79 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/dramsignarmn.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/dwe-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/dwe-cy.glif new file mode 100644 index 00000000..46a9e1b0 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/dwe-cy.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + д + com.fontlab.metricsRight + д + com.fontlab.recipe + д + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/dze-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/dze-cy.glif new file mode 100644 index 00000000..5fd0ea60 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/dze-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + s + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/dzeR_eversed-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/dzeR_eversed-cy.glif new file mode 100644 index 00000000..2e828a83 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/dzeR_eversed-cy.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |s + com.fontlab.metricsRight + |s + com.fontlab.recipe + s + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/dzeabkhcyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/dzeabkhcyr.glif new file mode 100644 index 00000000..0075b96d --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/dzeabkhcyr.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + z-30 + com.fontlab.metricsRight + з-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/dzelo-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/dzelo-cy.glif new file mode 100644 index 00000000..75172bb6 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/dzelo-cy.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/dzhecyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/dzhecyr.glif new file mode 100644 index 00000000..6277838d --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/dzhecyr.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/dzjekomicyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/dzjekomicyr.glif new file mode 100644 index 00000000..0b39f81b --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/dzjekomicyr.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + zjekomicyr + com.fontlab.metricsRight + ц-5 + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/dzwe-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/dzwe-cy.glif new file mode 100644 index 00000000..12ddc880 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/dzwe-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + s + com.fontlab.metricsRight + s + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/dzze-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/dzze-cy.glif new file mode 100644 index 00000000..6fffddcf --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/dzze-cy.glif @@ -0,0 +1,84 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + д + com.fontlab.metricsRight + д-30 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/dzzhecyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/dzzhecyr.glif new file mode 100644 index 00000000..9f956294 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/dzzhecyr.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + д+5 + com.fontlab.metricsRight + ж+5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/e-cy.accented.glif b/sources/FixelDisplay-Bold.ufo/glyphs/e-cy.accented.glif new file mode 100644 index 00000000..1121ab01 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/e-cy.accented.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+acute + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/e-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/e-cy.glif new file mode 100644 index 00000000..a6656662 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/e-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + c + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/e-cy.hist.glif b/sources/FixelDisplay-Bold.ufo/glyphs/e-cy.hist.glif new file mode 100644 index 00000000..158fbc6b --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/e-cy.hist.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + c + com.fontlab.recipe + uni1C83 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/e.glif b/sources/FixelDisplay-Bold.ufo/glyphs/e.glif new file mode 100644 index 00000000..0c15d886 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/e.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/e.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/e.ss01.glif new file mode 100644 index 00000000..b4f5d0a2 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/e.ss01.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + O-5 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/eacute.glif b/sources/FixelDisplay-Bold.ufo/glyphs/eacute.glif new file mode 100644 index 00000000..c3d8ce76 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/eacute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+acute + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/eacute.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/eacute.ss01.glif new file mode 100644 index 00000000..5ff87843 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/eacute.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+acute + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/ebreve.glif b/sources/FixelDisplay-Bold.ufo/glyphs/ebreve.glif new file mode 100644 index 00000000..c4ce4498 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/ebreve.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+breve + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/ebreve.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/ebreve.ss01.glif new file mode 100644 index 00000000..098d7bc9 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/ebreve.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+breve + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/ecaron.glif b/sources/FixelDisplay-Bold.ufo/glyphs/ecaron.glif new file mode 100644 index 00000000..e5e999a3 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/ecaron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+caron + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/ecaron.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/ecaron.ss01.glif new file mode 100644 index 00000000..a0217b3c --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/ecaron.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+caron + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/ecircumflex.glif b/sources/FixelDisplay-Bold.ufo/glyphs/ecircumflex.glif new file mode 100644 index 00000000..ac5b3b7b --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/ecircumflex.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+circumflex + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/ecircumflex.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/ecircumflex.ss01.glif new file mode 100644 index 00000000..268ef3d9 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/ecircumflex.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+circumflex + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/edieresis.glif b/sources/FixelDisplay-Bold.ufo/glyphs/edieresis.glif new file mode 100644 index 00000000..bf56e3e6 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/edieresis.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsLeft + e + com.fontlab.metricsRight + e + com.fontlab.recipe + e+dieresis + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/edieresis.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/edieresis.ss01.glif new file mode 100644 index 00000000..d77d1748 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/edieresis.ss01.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsLeft + e + com.fontlab.metricsRight + e + com.fontlab.recipe + e.ss01+dieresis + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/edotaccent.glif b/sources/FixelDisplay-Bold.ufo/glyphs/edotaccent.glif new file mode 100644 index 00000000..92568930 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/edotaccent.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+dotaccent + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/edotaccent.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/edotaccent.ss01.glif new file mode 100644 index 00000000..3b125ad7 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/edotaccent.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+dotaccent + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/ef-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/ef-cy.glif new file mode 100644 index 00000000..188424e5 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/ef-cy.glif @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/egrave.glif b/sources/FixelDisplay-Bold.ufo/glyphs/egrave.glif new file mode 100644 index 00000000..a2d35193 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/egrave.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+grave + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/egrave.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/egrave.ss01.glif new file mode 100644 index 00000000..a64d96d9 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/egrave.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+grave + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/eight.glif b/sources/FixelDisplay-Bold.ufo/glyphs/eight.glif new file mode 100644 index 00000000..b847ee62 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/eight.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/eight.osf.glif b/sources/FixelDisplay-Bold.ufo/glyphs/eight.osf.glif new file mode 100644 index 00000000..cdf3051f --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/eight.osf.glif @@ -0,0 +1,15 @@ + + + + + + + + + com.fontlab.metricsLeft + eight + com.fontlab.metricsRight + eight + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/eight.tf.glif b/sources/FixelDisplay-Bold.ufo/glyphs/eight.tf.glif new file mode 100644 index 00000000..3a716c12 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/eight.tf.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/eiotifiedcyr.B_G_R_.glif b/sources/FixelDisplay-Bold.ufo/glyphs/eiotifiedcyr.B_G_R_.glif new file mode 100644 index 00000000..6ebb0eb5 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/eiotifiedcyr.B_G_R_.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + c + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/eiotifiedcyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/eiotifiedcyr.glif new file mode 100644 index 00000000..3545266b --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/eiotifiedcyr.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + c + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/el-cy.B_G_R_.glif b/sources/FixelDisplay-Bold.ufo/glyphs/el-cy.B_G_R_.glif new file mode 100644 index 00000000..4b7a1891 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/el-cy.B_G_R_.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + v + com.fontlab.metricsRight + v + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/el-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/el-cy.glif new file mode 100644 index 00000000..344dcff0 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/el-cy.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/el-cy.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/el-cy.ss01.glif new file mode 100644 index 00000000..57deaaf6 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/el-cy.ss01.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/elS_oft-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/elS_oft-cy.glif new file mode 100644 index 00000000..387ed927 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/elS_oft-cy.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/elhookcyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/elhookcyr.glif new file mode 100644 index 00000000..535e12e6 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/elhookcyr.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + н + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/ellipsis.glif b/sources/FixelDisplay-Bold.ufo/glyphs/ellipsis.glif new file mode 100644 index 00000000..d3a16e9a --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/ellipsis.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/elmiddlehookcyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/elmiddlehookcyr.glif new file mode 100644 index 00000000..7f2dfcdd --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/elmiddlehookcyr.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + enmiddlehookcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/elsharptailcyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/elsharptailcyr.glif new file mode 100644 index 00000000..d5f242b0 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/elsharptailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + ensharptailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/eltailcyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/eltailcyr.glif new file mode 100644 index 00000000..115eadfa --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/eltailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/em-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/em-cy.glif new file mode 100644 index 00000000..d376ddcf --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/em-cy.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/emS_oft-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/emS_oft-cy.glif new file mode 100644 index 00000000..fb39c83d --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/emS_oft-cy.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + м + com.fontlab.metricsRight + ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/emacron.glif b/sources/FixelDisplay-Bold.ufo/glyphs/emacron.glif new file mode 100644 index 00000000..30b8bfdd --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/emacron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+macron + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/emacron.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/emacron.ss01.glif new file mode 100644 index 00000000..9baada87 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/emacron.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+macron + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/emdash.case.glif b/sources/FixelDisplay-Bold.ufo/glyphs/emdash.case.glif new file mode 100644 index 00000000..c1ab45b1 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/emdash.case.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/emdash.glif b/sources/FixelDisplay-Bold.ufo/glyphs/emdash.glif new file mode 100644 index 00000000..3248a80f --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/emdash.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/emsharptailcyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/emsharptailcyr.glif new file mode 100644 index 00000000..5b8f24a2 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/emsharptailcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + м + com.fontlab.metricsRight + ensharptailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/en-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/en-cy.glif new file mode 100644 index 00000000..9d252cc7 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/en-cy.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/enclosingcirclecomb.glif b/sources/FixelDisplay-Bold.ufo/glyphs/enclosingcirclecomb.glif new file mode 100644 index 00000000..e9baed80 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/enclosingcirclecomb.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/endash.case.glif b/sources/FixelDisplay-Bold.ufo/glyphs/endash.case.glif new file mode 100644 index 00000000..eaf69cae --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/endash.case.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/endash.glif b/sources/FixelDisplay-Bold.ufo/glyphs/endash.glif new file mode 100644 index 00000000..0a32acc6 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/endash.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/eng.glif b/sources/FixelDisplay-Bold.ufo/glyphs/eng.glif new file mode 100644 index 00000000..2251c273 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/eng.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + n + com.fontlab.metricsRight + dotlessj + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/engecyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/engecyr.glif new file mode 100644 index 00000000..25b3ceda --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/engecyr.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/enhookcyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/enhookcyr.glif new file mode 100644 index 00000000..e4abf808 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/enhookcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/enhookleftcyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/enhookleftcyr.glif new file mode 100644 index 00000000..e163f66c --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/enhookleftcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + j + com.fontlab.metricsRight + н + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/enmiddlehookcyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/enmiddlehookcyr.glif new file mode 100644 index 00000000..a12d5cc6 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/enmiddlehookcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + softsign-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/ensharptailcyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/ensharptailcyr.glif new file mode 100644 index 00000000..ea7eae0e --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/ensharptailcyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + д + com.fontlab.recipe + entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/entailcyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/entailcyr.glif new file mode 100644 index 00000000..6489e505 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/entailcyr.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + ц + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/eogonek.glif b/sources/FixelDisplay-Bold.ufo/glyphs/eogonek.glif new file mode 100644 index 00000000..faf05004 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/eogonek.glif @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + e+ogonek + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/eogonek.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/eogonek.ss01.glif new file mode 100644 index 00000000..723e0808 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/eogonek.ss01.glif @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + e.ss01+ogonek + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/equal.glif b/sources/FixelDisplay-Bold.ufo/glyphs/equal.glif new file mode 100644 index 00000000..32299290 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/equal.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/er-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/er-cy.glif new file mode 100644 index 00000000..bdab2a36 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/er-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + p + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/er-cy.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/er-cy.ss01.glif new file mode 100644 index 00000000..5ea19dcc --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/er-cy.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + p.ss01 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/ereversed-cy.accented.glif b/sources/FixelDisplay-Bold.ufo/glyphs/ereversed-cy.accented.glif new file mode 100644 index 00000000..fdbf0776 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/ereversed-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + э+acute + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/ereversed-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/ereversed-cy.glif new file mode 100644 index 00000000..044060ef --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/ereversed-cy.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |c + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/ereverseddieresiscyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/ereverseddieresiscyr.glif new file mode 100644 index 00000000..f76a6792 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/ereverseddieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ereversed-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/ertickcyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/ertickcyr.glif new file mode 100644 index 00000000..a7e95c1b --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/ertickcyr.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + p + com.fontlab.metricsRight + p + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/es-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/es-cy.glif new file mode 100644 index 00000000..25ba8650 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/es-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/estailcyr.B_S_H_.glif b/sources/FixelDisplay-Bold.ufo/glyphs/estailcyr.B_S_H_.glif new file mode 100644 index 00000000..957d23d3 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/estailcyr.B_S_H_.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + c + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/estailcyr.C_H_U_.glif b/sources/FixelDisplay-Bold.ufo/glyphs/estailcyr.C_H_U_.glif new file mode 100644 index 00000000..f9ab2757 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/estailcyr.C_H_U_.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+cedilla + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/estailcyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/estailcyr.glif new file mode 100644 index 00000000..259fe664 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/estailcyr.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + с + com.fontlab.metricsRight + с + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/estimated.glif b/sources/FixelDisplay-Bold.ufo/glyphs/estimated.glif new file mode 100644 index 00000000..c24f4a59 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/estimated.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/eth.glif b/sources/FixelDisplay-Bold.ufo/glyphs/eth.glif new file mode 100644 index 00000000..1e19c329 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/eth.glif @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/eturned.glif b/sources/FixelDisplay-Bold.ufo/glyphs/eturned.glif new file mode 100644 index 00000000..3854db94 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/eturned.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + schwacyr + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/euro.glif b/sources/FixelDisplay-Bold.ufo/glyphs/euro.glif new file mode 100644 index 00000000..2399f4a0 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/euro.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + C + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/exclam.glif b/sources/FixelDisplay-Bold.ufo/glyphs/exclam.glif new file mode 100644 index 00000000..49ffb372 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/exclam.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/exclamdown.case.glif b/sources/FixelDisplay-Bold.ufo/glyphs/exclamdown.case.glif new file mode 100644 index 00000000..99b712f7 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/exclamdown.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + exclamdown + com.fontlab.metricsRight + exclamdown + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/exclamdown.glif b/sources/FixelDisplay-Bold.ufo/glyphs/exclamdown.glif new file mode 100644 index 00000000..33fbeec4 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/exclamdown.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/f.glif b/sources/FixelDisplay-Bold.ufo/glyphs/f.glif new file mode 100644 index 00000000..b12b3004 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/f.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/f.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/f.ss01.glif new file mode 100644 index 00000000..939d0ec0 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/f.ss01.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/f_f.glif b/sources/FixelDisplay-Bold.ufo/glyphs/f_f.glif new file mode 100644 index 00000000..b3cf83fd --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/f_f.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f + com.fontlab.metricsRight + f + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/f_f.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/f_f.ss01.glif new file mode 100644 index 00000000..53c53bf8 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/f_f.ss01.glif @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f.ss01 + com.fontlab.metricsRight + f.ss01 + com.fontlab.recipe + f.ss01_f.ss01 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/f_f_i.glif b/sources/FixelDisplay-Bold.ufo/glyphs/f_f_i.glif new file mode 100644 index 00000000..0f8bb766 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/f_f_i.glif @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f + com.fontlab.metricsRight + i + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/f_f_i.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/f_f_i.ss01.glif new file mode 100644 index 00000000..3b684c57 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/f_f_i.ss01.glif @@ -0,0 +1,88 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f.ss01 + com.fontlab.metricsRight + i + com.fontlab.recipe + f.ss01_f.ss01_i + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/f_f_l.glif b/sources/FixelDisplay-Bold.ufo/glyphs/f_f_l.glif new file mode 100644 index 00000000..6e78ccf2 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/f_f_l.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f + com.fontlab.metricsRight + l + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/f_f_l.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/f_f_l.ss01.glif new file mode 100644 index 00000000..b706c588 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/f_f_l.ss01.glif @@ -0,0 +1,86 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f.ss01 + com.fontlab.metricsRight + l.ss01 + com.fontlab.recipe + f.ss01_f.ss01_l.ss01 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/fi.glif b/sources/FixelDisplay-Bold.ufo/glyphs/fi.glif new file mode 100644 index 00000000..d3691152 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/fi.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f + com.fontlab.metricsRight + i + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/fi.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/fi.ss01.glif new file mode 100644 index 00000000..fe32fd4b --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/fi.ss01.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f.ss01 + com.fontlab.metricsRight + i + com.fontlab.recipe + f.ss01_i + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/fitacyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/fitacyr.glif new file mode 100644 index 00000000..d286f2f3 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/fitacyr.glif @@ -0,0 +1,76 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + obarcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/five.glif b/sources/FixelDisplay-Bold.ufo/glyphs/five.glif new file mode 100644 index 00000000..2406a87b --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/five.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/five.osf.glif b/sources/FixelDisplay-Bold.ufo/glyphs/five.osf.glif new file mode 100644 index 00000000..4ce19bd6 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/five.osf.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + five + com.fontlab.metricsRight + five + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/five.tf.glif b/sources/FixelDisplay-Bold.ufo/glyphs/five.tf.glif new file mode 100644 index 00000000..59e1d3c6 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/five.tf.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/fl.glif b/sources/FixelDisplay-Bold.ufo/glyphs/fl.glif new file mode 100644 index 00000000..14ea4a7a --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/fl.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f + com.fontlab.metricsRight + l + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/fl.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/fl.ss01.glif new file mode 100644 index 00000000..a21f031b --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/fl.ss01.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f.ss01 + com.fontlab.metricsRight + l.ss01 + com.fontlab.recipe + f.ss01_l.ss01 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/floretteblack.glif b/sources/FixelDisplay-Bold.ufo/glyphs/floretteblack.glif new file mode 100644 index 00000000..95fb815d --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/floretteblack.glif @@ -0,0 +1,522 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/floretteoutlinedpetalledblackeight.glif b/sources/FixelDisplay-Bold.ufo/glyphs/floretteoutlinedpetalledblackeight.glif new file mode 100644 index 00000000..f2a11c12 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/floretteoutlinedpetalledblackeight.glif @@ -0,0 +1,693 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/florettewhite.glif b/sources/FixelDisplay-Bold.ufo/glyphs/florettewhite.glif new file mode 100644 index 00000000..b1984d18 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/florettewhite.glif @@ -0,0 +1,417 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/florin.glif b/sources/FixelDisplay-Bold.ufo/glyphs/florin.glif new file mode 100644 index 00000000..3ebc39ad --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/florin.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/flower.glif b/sources/FixelDisplay-Bold.ufo/glyphs/flower.glif new file mode 100644 index 00000000..1c7a2053 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/flower.glif @@ -0,0 +1,278 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/four.glif b/sources/FixelDisplay-Bold.ufo/glyphs/four.glif new file mode 100644 index 00000000..5ed70d6a --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/four.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/four.osf.glif b/sources/FixelDisplay-Bold.ufo/glyphs/four.osf.glif new file mode 100644 index 00000000..52a92110 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/four.osf.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + four + com.fontlab.metricsRight + four + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/four.tf.glif b/sources/FixelDisplay-Bold.ufo/glyphs/four.tf.glif new file mode 100644 index 00000000..33504839 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/four.tf.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/fraction.glif b/sources/FixelDisplay-Bold.ufo/glyphs/fraction.glif new file mode 100644 index 00000000..96ad198b --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/fraction.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/g.glif b/sources/FixelDisplay-Bold.ufo/glyphs/g.glif new file mode 100644 index 00000000..e29d10cc --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/g.glif @@ -0,0 +1,94 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/g.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/g.ss01.glif new file mode 100644 index 00000000..263dc389 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/g.ss01.glif @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/gacute.glif b/sources/FixelDisplay-Bold.ufo/glyphs/gacute.glif new file mode 100644 index 00000000..2aac32c0 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/gacute.glif @@ -0,0 +1,109 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + g+acute + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/gacute.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/gacute.ss01.glif new file mode 100644 index 00000000..7dc2bcee --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/gacute.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + g.ss01+acute + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/gbreve.glif b/sources/FixelDisplay-Bold.ufo/glyphs/gbreve.glif new file mode 100644 index 00000000..86c8ea7a --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/gbreve.glif @@ -0,0 +1,119 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + g+breve + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/gbreve.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/gbreve.ss01.glif new file mode 100644 index 00000000..d0715a53 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/gbreve.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + g.ss01+breve + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/gcircumflex.glif b/sources/FixelDisplay-Bold.ufo/glyphs/gcircumflex.glif new file mode 100644 index 00000000..3376bbb8 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/gcircumflex.glif @@ -0,0 +1,113 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + g+circumflex + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/gcircumflex.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/gcircumflex.ss01.glif new file mode 100644 index 00000000..914c9675 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/gcircumflex.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + g.ss01+circumflex + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/gcommaaccent.glif b/sources/FixelDisplay-Bold.ufo/glyphs/gcommaaccent.glif new file mode 100644 index 00000000..68ea023c --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/gcommaaccent.glif @@ -0,0 +1,121 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + g+commaaccentcomb.salt + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/gcommaaccent.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/gcommaaccent.ss01.glif new file mode 100644 index 00000000..6f68ab56 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/gcommaaccent.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + g.ss01+commaaccentcomb.salt + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/gdotaccent.glif b/sources/FixelDisplay-Bold.ufo/glyphs/gdotaccent.glif new file mode 100644 index 00000000..bb578e30 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/gdotaccent.glif @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + g+dotaccent + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/gdotaccent.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/gdotaccent.ss01.glif new file mode 100644 index 00000000..c093d8c4 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/gdotaccent.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + g.ss01+dotaccent + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/ge-cy.B_G_R_.glif b/sources/FixelDisplay-Bold.ufo/glyphs/ge-cy.B_G_R_.glif new file mode 100644 index 00000000..3cdefe40 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/ge-cy.B_G_R_.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |s+5 + com.fontlab.metricsRight + |s+5 + com.fontlab.recipe + dzeReversed-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/ge-cy.S_R_B_.glif b/sources/FixelDisplay-Bold.ufo/glyphs/ge-cy.S_R_B_.glif new file mode 100644 index 00000000..fdbece00 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/ge-cy.S_R_B_.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + iota-cy+macron + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/ge-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/ge-cy.glif new file mode 100644 index 00000000..f49881aa --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/ge-cy.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + т + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/gehookcyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/gehookcyr.glif new file mode 100644 index 00000000..dc4041d6 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/gehookcyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + г + com.fontlab.metricsRight + enmiddlehookcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/gehookstrokecyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/gehookstrokecyr.glif new file mode 100644 index 00000000..b0ba20e6 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/gehookstrokecyr.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + gestrokecyr + com.fontlab.metricsRight + gestrokecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/germandbls.glif b/sources/FixelDisplay-Bold.ufo/glyphs/germandbls.glif new file mode 100644 index 00000000..542bfc84 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/germandbls.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + h-5 + com.fontlab.metricsRight + з + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/germandbls.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/germandbls.ss01.glif new file mode 100644 index 00000000..0347e2e3 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/germandbls.ss01.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f.ss01 + com.fontlab.metricsRight + з + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/gestrokecyr.B_S_H_.glif b/sources/FixelDisplay-Bold.ufo/glyphs/gestrokecyr.B_S_H_.glif new file mode 100644 index 00000000..d473d27f --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/gestrokecyr.B_S_H_.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + г + com.fontlab.metricsRight + gestrokecyr + com.fontlab.recipe + gestrokecyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/gestrokecyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/gestrokecyr.glif new file mode 100644 index 00000000..e55fe68d --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/gestrokecyr.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + г + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/getailcyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/getailcyr.glif new file mode 100644 index 00000000..6bd0e4f1 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/getailcyr.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + г + com.fontlab.metricsRight + г + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/gheupturn-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/gheupturn-cy.glif new file mode 100644 index 00000000..aa1af27b --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/gheupturn-cy.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + г + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/gjecyr.S_R_B_.glif b/sources/FixelDisplay-Bold.ufo/glyphs/gjecyr.S_R_B_.glif new file mode 100644 index 00000000..dc785edd --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/gjecyr.S_R_B_.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + iota-cy+macronacute.SRB + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/gjecyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/gjecyr.glif new file mode 100644 index 00000000..dcf0a3e5 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/gjecyr.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/grave.case.glif b/sources/FixelDisplay-Bold.ufo/glyphs/grave.case.glif new file mode 100644 index 00000000..3c115bec --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/grave.case.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/grave.glif b/sources/FixelDisplay-Bold.ufo/glyphs/grave.glif new file mode 100644 index 00000000..b8d67bbe --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/grave.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/greater.glif b/sources/FixelDisplay-Bold.ufo/glyphs/greater.glif new file mode 100644 index 00000000..0ade8ef3 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/greater.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |less + com.fontlab.metricsRight + |less + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/greaterequal.glif b/sources/FixelDisplay-Bold.ufo/glyphs/greaterequal.glif new file mode 100644 index 00000000..a5e3aeeb --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/greaterequal.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/guillemetleft.case.glif b/sources/FixelDisplay-Bold.ufo/glyphs/guillemetleft.case.glif new file mode 100644 index 00000000..efda77f3 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/guillemetleft.case.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + guilsinglleft + com.fontlab.metricsRight + guilsinglleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/guillemetleft.glif b/sources/FixelDisplay-Bold.ufo/glyphs/guillemetleft.glif new file mode 100644 index 00000000..b4d1c84c --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/guillemetleft.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + guilsinglleft + com.fontlab.metricsRight + guilsinglleft + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/guillemetright.case.glif b/sources/FixelDisplay-Bold.ufo/glyphs/guillemetright.case.glif new file mode 100644 index 00000000..85e6ecd9 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/guillemetright.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |guillemetleft.case + com.fontlab.metricsRight + |guillemetleft.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/guillemetright.glif b/sources/FixelDisplay-Bold.ufo/glyphs/guillemetright.glif new file mode 100644 index 00000000..2184ab11 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/guillemetright.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |guilsinglleft + com.fontlab.metricsRight + |guilsinglleft + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/guilsinglleft.case.glif b/sources/FixelDisplay-Bold.ufo/glyphs/guilsinglleft.case.glif new file mode 100644 index 00000000..3b1d9dec --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/guilsinglleft.case.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/guilsinglleft.glif b/sources/FixelDisplay-Bold.ufo/glyphs/guilsinglleft.glif new file mode 100644 index 00000000..50c710a5 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/guilsinglleft.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/guilsinglright.case.glif b/sources/FixelDisplay-Bold.ufo/glyphs/guilsinglright.case.glif new file mode 100644 index 00000000..464be39f --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/guilsinglright.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |guilsinglleft + com.fontlab.metricsRight + |guilsinglleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/guilsinglright.glif b/sources/FixelDisplay-Bold.ufo/glyphs/guilsinglright.glif new file mode 100644 index 00000000..fd54cfcc --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/guilsinglright.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + |guilsinglleft + com.fontlab.metricsRight + |guilsinglleft + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/h.glif b/sources/FixelDisplay-Bold.ufo/glyphs/h.glif new file mode 100644 index 00000000..79f249ef --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/h.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + com.fontlab.metricsRight + n + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/ha-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/ha-cy.glif new file mode 100644 index 00000000..dcfd73f1 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/ha-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + x + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/haabkhcyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/haabkhcyr.glif new file mode 100644 index 00000000..24f4b220 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/haabkhcyr.glif @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + |o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/hahookcyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/hahookcyr.glif new file mode 100644 index 00000000..040d3e2e --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/hahookcyr.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + x + com.fontlab.metricsRight + x + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/hardsign-cy.B_G_R_.glif b/sources/FixelDisplay-Bold.ufo/glyphs/hardsign-cy.B_G_R_.glif new file mode 100644 index 00000000..18fef840 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/hardsign-cy.B_G_R_.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/hardsign-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/hardsign-cy.glif new file mode 100644 index 00000000..a5f4f2ba --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/hardsign-cy.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/hardsign-cy.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/hardsign-cy.ss01.glif new file mode 100644 index 00000000..e4eb74a5 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/hardsign-cy.ss01.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/hastrokecyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/hastrokecyr.glif new file mode 100644 index 00000000..c02e38ea --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/hastrokecyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + x + com.fontlab.metricsRight + x + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/hbar.glif b/sources/FixelDisplay-Bold.ufo/glyphs/hbar.glif new file mode 100644 index 00000000..7790b87c --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/hbar.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + h + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/hcircumflex.glif b/sources/FixelDisplay-Bold.ufo/glyphs/hcircumflex.glif new file mode 100644 index 00000000..97272607 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/hcircumflex.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + h+circumflex.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/heart.glif b/sources/FixelDisplay-Bold.ufo/glyphs/heart.glif new file mode 100644 index 00000000..25123628 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/heart.glif @@ -0,0 +1,320 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/heartwhite.glif b/sources/FixelDisplay-Bold.ufo/glyphs/heartwhite.glif new file mode 100644 index 00000000..37442a6a --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/heartwhite.glif @@ -0,0 +1,189 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =42 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/hryvnia.glif b/sources/FixelDisplay-Bold.ufo/glyphs/hryvnia.glif new file mode 100644 index 00000000..92cfbe23 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/hryvnia.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/hundredmillionscomb-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/hundredmillionscomb-cy.glif new file mode 100644 index 00000000..99a13e66 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/hundredmillionscomb-cy.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/hundredthousandscombcyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/hundredthousandscombcyr.glif new file mode 100644 index 00000000..d2e757b9 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/hundredthousandscombcyr.glif @@ -0,0 +1,141 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/hungarumlaut.case.glif b/sources/FixelDisplay-Bold.ufo/glyphs/hungarumlaut.case.glif new file mode 100644 index 00000000..af8338de --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/hungarumlaut.case.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/hungarumlaut.glif b/sources/FixelDisplay-Bold.ufo/glyphs/hungarumlaut.glif new file mode 100644 index 00000000..cdcd34c5 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/hungarumlaut.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/hwe-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/hwe-cy.glif new file mode 100644 index 00000000..59b7b0eb --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/hwe-cy.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + h + com.fontlab.metricsRight + h + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/hyphen.case.glif b/sources/FixelDisplay-Bold.ufo/glyphs/hyphen.case.glif new file mode 100644 index 00000000..06a76b76 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/hyphen.case.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.metricsLeft + hyphen + com.fontlab.metricsRight + hyphen + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/hyphen.glif b/sources/FixelDisplay-Bold.ufo/glyphs/hyphen.glif new file mode 100644 index 00000000..3192e49e --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/hyphen.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/i-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/i-cy.glif new file mode 100644 index 00000000..cf9ec0ed --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/i-cy.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + i + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/i.glif b/sources/FixelDisplay-Bold.ufo/glyphs/i.glif new file mode 100644 index 00000000..bb7b7f6b --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/i.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + dotlessi+dotaccent + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/ia-cy.accented.glif b/sources/FixelDisplay-Bold.ufo/glyphs/ia-cy.accented.glif new file mode 100644 index 00000000..afc5172f --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/ia-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + я+acute + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/ia-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/ia-cy.glif new file mode 100644 index 00000000..f8f46159 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/ia-cy.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/ia-cy.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/ia-cy.ss01.glif new file mode 100644 index 00000000..8faabf10 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/ia-cy.ss01.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/iacute.glif b/sources/FixelDisplay-Bold.ufo/glyphs/iacute.glif new file mode 100644 index 00000000..574b6c7f --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/iacute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + dotlessi+acute + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/ibreve.glif b/sources/FixelDisplay-Bold.ufo/glyphs/ibreve.glif new file mode 100644 index 00000000..0e55bbc2 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/ibreve.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + dotlessi+breve + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/icircumflex.glif b/sources/FixelDisplay-Bold.ufo/glyphs/icircumflex.glif new file mode 100644 index 00000000..d74fe8e2 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/icircumflex.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + dotlessi+circumflex + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/idieresis.glif b/sources/FixelDisplay-Bold.ufo/glyphs/idieresis.glif new file mode 100644 index 00000000..3507aab5 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/idieresis.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + idotless+dieresis.alt + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/idieresiscyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/idieresiscyr.glif new file mode 100644 index 00000000..9a7ea513 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/idieresiscyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ii-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/idotless.glif b/sources/FixelDisplay-Bold.ufo/glyphs/idotless.glif new file mode 100644 index 00000000..d114344c --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/idotless.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/ie-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/ie-cy.glif new file mode 100644 index 00000000..12ad7461 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/ie-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/ie-cy.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/ie-cy.ss01.glif new file mode 100644 index 00000000..b57e15db --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/ie-cy.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/iebrevecyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/iebrevecyr.glif new file mode 100644 index 00000000..4a4da874 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/iebrevecyr.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+breve + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/iegravecyr.S_R_B_.glif b/sources/FixelDisplay-Bold.ufo/glyphs/iegravecyr.S_R_B_.glif new file mode 100644 index 00000000..e7cd9986 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/iegravecyr.S_R_B_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+grave + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/iegravecyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/iegravecyr.glif new file mode 100644 index 00000000..34c3eeda --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/iegravecyr.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+grave + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/igrave.glif b/sources/FixelDisplay-Bold.ufo/glyphs/igrave.glif new file mode 100644 index 00000000..b67b6004 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/igrave.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + dotlessi+grave + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/igravecyr.S_R_B_.glif b/sources/FixelDisplay-Bold.ufo/glyphs/igravecyr.S_R_B_.glif new file mode 100644 index 00000000..bbccc2cd --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/igravecyr.S_R_B_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+grave + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/igravecyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/igravecyr.glif new file mode 100644 index 00000000..6da537f6 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/igravecyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ii-cy+grave + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/ii-cy.B_G_R_.glif b/sources/FixelDisplay-Bold.ufo/glyphs/ii-cy.B_G_R_.glif new file mode 100644 index 00000000..d5b041de --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/ii-cy.B_G_R_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/ii-cy.accented.glif b/sources/FixelDisplay-Bold.ufo/glyphs/ii-cy.accented.glif new file mode 100644 index 00000000..7c029dd8 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/ii-cy.accented.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + и+acute + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/ii-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/ii-cy.glif new file mode 100644 index 00000000..60aa6f97 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/ii-cy.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/iishort-cy.B_G_R_.glif b/sources/FixelDisplay-Bold.ufo/glyphs/iishort-cy.B_G_R_.glif new file mode 100644 index 00000000..a32adc8a --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/iishort-cy.B_G_R_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/iishort-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/iishort-cy.glif new file mode 100644 index 00000000..48f00899 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/iishort-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + icyr+breve + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/ij.glif b/sources/FixelDisplay-Bold.ufo/glyphs/ij.glif new file mode 100644 index 00000000..688d1805 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/ij.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + i + com.fontlab.metricsRight + j + com.fontlab.recipe + i_j + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/imacron.glif b/sources/FixelDisplay-Bold.ufo/glyphs/imacron.glif new file mode 100644 index 00000000..a4b7b22b --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/imacron.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =5 + com.fontlab.metricsRight + =5 + com.fontlab.recipe + idotless+macron + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/imacroncyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/imacroncyr.glif new file mode 100644 index 00000000..74702616 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/imacroncyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ii-cy+macron + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/increment.glif b/sources/FixelDisplay-Bold.ufo/glyphs/increment.glif new file mode 100644 index 00000000..5a06b6a6 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/increment.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/infinity.glif b/sources/FixelDisplay-Bold.ufo/glyphs/infinity.glif new file mode 100644 index 00000000..1c3f2e6a --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/infinity.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/integral.glif b/sources/FixelDisplay-Bold.ufo/glyphs/integral.glif new file mode 100644 index 00000000..6ad22228 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/integral.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/io-cy.accented.glif b/sources/FixelDisplay-Bold.ufo/glyphs/io-cy.accented.glif new file mode 100644 index 00000000..2cfd968d --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/io-cy.accented.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsLeft + e + com.fontlab.metricsRight + e + com.fontlab.recipe + e+dieresisacute + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/io-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/io-cy.glif new file mode 100644 index 00000000..66bdc26e --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/io-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + edieresis + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/io-cy.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/io-cy.ss01.glif new file mode 100644 index 00000000..5236b0f5 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/io-cy.ss01.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + edieresis.ss01 + com.schriftgestaltung.Glyphs.ComponentInfo + + + alignment + -1 + index + 0 + name + edieresis.ss01 + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/iogonek.glif b/sources/FixelDisplay-Bold.ufo/glyphs/iogonek.glif new file mode 100644 index 00000000..1c34dfe2 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/iogonek.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + i+ogonek + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/iota-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/iota-cy.glif new file mode 100644 index 00000000..eb0a864f --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/iota-cy.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l.ss01 + com.fontlab.metricsRight + l.ss01 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/iotifieda-cy.B_G_R_.glif b/sources/FixelDisplay-Bold.ufo/glyphs/iotifieda-cy.B_G_R_.glif new file mode 100644 index 00000000..f8ea61b7 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/iotifieda-cy.B_G_R_.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + el-cy.BGR + com.fontlab.recipe + iotifieda-cy + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/iotifieda-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/iotifieda-cy.glif new file mode 100644 index 00000000..a3b8a36d --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/iotifieda-cy.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + yusClosedlittle-cy + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/iotifieda-cy.hist.glif b/sources/FixelDisplay-Bold.ufo/glyphs/iotifieda-cy.hist.glif new file mode 100644 index 00000000..38712dc2 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/iotifieda-cy.hist.glif @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + reversedzecyr + com.fontlab.metricsRight + a + public.markColor + 0.6,0.997,1,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/ishortsharptailcyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/ishortsharptailcyr.glif new file mode 100644 index 00000000..c8fced8a --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/ishortsharptailcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + й + com.fontlab.metricsRight + ensharptailcyr + com.fontlab.recipe + й + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/itilde.glif b/sources/FixelDisplay-Bold.ufo/glyphs/itilde.glif new file mode 100644 index 00000000..04c64968 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/itilde.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + dotlessi+tilde + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/iu-cy.B_G_R_.glif b/sources/FixelDisplay-Bold.ufo/glyphs/iu-cy.B_G_R_.glif new file mode 100644 index 00000000..4667e850 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/iu-cy.B_G_R_.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + o + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/iu-cy.accented.glif b/sources/FixelDisplay-Bold.ufo/glyphs/iu-cy.accented.glif new file mode 100644 index 00000000..98267b91 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/iu-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ю+acute + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/iu-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/iu-cy.glif new file mode 100644 index 00000000..ea8b1a5d --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/iu-cy.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/izhitsacyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/izhitsacyr.glif new file mode 100644 index 00000000..c55d2a0c --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/izhitsacyr.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + v + com.fontlab.metricsRight + + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/izhitsagravedblcyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/izhitsagravedblcyr.glif new file mode 100644 index 00000000..9d622a66 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/izhitsagravedblcyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + com.fontlab.metricsLeft + izhitsacyr + com.fontlab.metricsRight + izhitsacyr + com.fontlab.recipe + izhitsacyr+hungarumlaut + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/j.glif b/sources/FixelDisplay-Bold.ufo/glyphs/j.glif new file mode 100644 index 00000000..320bd283 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/j.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + i + com.fontlab.recipe + dotlessj+dotaccent + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/jcircumflex.glif b/sources/FixelDisplay-Bold.ufo/glyphs/jcircumflex.glif new file mode 100644 index 00000000..09269039 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/jcircumflex.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + dotlessj+circumflex + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/jdotless.glif b/sources/FixelDisplay-Bold.ufo/glyphs/jdotless.glif new file mode 100644 index 00000000..38704e21 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/jdotless.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + l + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/je-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/je-cy.glif new file mode 100644 index 00000000..eb1c0e1d --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/je-cy.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + j + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/k.glif b/sources/FixelDisplay-Bold.ufo/glyphs/k.glif new file mode 100644 index 00000000..d07c1d56 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/k.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/ka-cy.B_G_R_.glif b/sources/FixelDisplay-Bold.ufo/glyphs/ka-cy.B_G_R_.glif new file mode 100644 index 00000000..ed50811c --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/ka-cy.B_G_R_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + k + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/ka-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/ka-cy.glif new file mode 100644 index 00000000..55a8bc85 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/ka-cy.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + k + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/kaaleutcyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/kaaleutcyr.glif new file mode 100644 index 00000000..67396788 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/kaaleutcyr.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + k + com.fontlab.metricsRight + k + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/kabashkcyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/kabashkcyr.glif new file mode 100644 index 00000000..4f3a4746 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/kabashkcyr.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hardsign-cy + com.fontlab.metricsRight + k + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/kahookcyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/kahookcyr.glif new file mode 100644 index 00000000..0e5c5b70 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/kahookcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + n + com.fontlab.metricsRight + k+10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/kastrokecyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/kastrokecyr.glif new file mode 100644 index 00000000..de1db9f9 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/kastrokecyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hbar + com.fontlab.metricsRight + k + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/katailcyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/katailcyr.glif new file mode 100644 index 00000000..724dfbef --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/katailcyr.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + k + com.fontlab.metricsRight + к-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/kaverticalstrokecyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/kaverticalstrokecyr.glif new file mode 100644 index 00000000..37240b5c --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/kaverticalstrokecyr.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + k + com.fontlab.metricsRight + k + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/kcommaaccent.glif b/sources/FixelDisplay-Bold.ufo/glyphs/kcommaaccent.glif new file mode 100644 index 00000000..b3f7f514 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/kcommaaccent.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsLeft + k + com.fontlab.metricsRight + k + com.fontlab.recipe + k+commaaccentcomb + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/kgreenlandic.glif b/sources/FixelDisplay-Bold.ufo/glyphs/kgreenlandic.glif new file mode 100644 index 00000000..5fe28345 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/kgreenlandic.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + kacyr + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/kjecyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/kjecyr.glif new file mode 100644 index 00000000..90e61198 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/kjecyr.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/knightblack.glif b/sources/FixelDisplay-Bold.ufo/glyphs/knightblack.glif new file mode 100644 index 00000000..4fe2d7a3 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/knightblack.glif @@ -0,0 +1,313 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =30 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/knightwhite.glif b/sources/FixelDisplay-Bold.ufo/glyphs/knightwhite.glif new file mode 100644 index 00000000..ed73dc3b --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/knightwhite.glif @@ -0,0 +1,320 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/koppacyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/koppacyr.glif new file mode 100644 index 00000000..75dd43d3 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/koppacyr.glif @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + c-20 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/ksicyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/ksicyr.glif new file mode 100644 index 00000000..da6a0be4 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/ksicyr.glif @@ -0,0 +1,102 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + з-10 + com.fontlab.metricsRight + з + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/l.glif b/sources/FixelDisplay-Bold.ufo/glyphs/l.glif new file mode 100644 index 00000000..9e57c4d2 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/l.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/l.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/l.ss01.glif new file mode 100644 index 00000000..71ce720a --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/l.ss01.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/lacute.glif b/sources/FixelDisplay-Bold.ufo/glyphs/lacute.glif new file mode 100644 index 00000000..65d50e30 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/lacute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l+acute.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/lacute.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/lacute.ss01.glif new file mode 100644 index 00000000..7fe53df7 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/lacute.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l.ss01+acute.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/layerinfo.plist b/sources/FixelDisplay-Bold.ufo/glyphs/layerinfo.plist new file mode 100644 index 00000000..8c198655 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/layerinfo.plist @@ -0,0 +1,21 @@ + + + + + lib + + com.fontlab.layer.name + Body + com.fontlab.layer.opacity + 1 + com.fontlab.layer.visible + + com.fontlab.layer.locked + + com.fontlab.layer.service + + com.fontlab.layer.wireframe + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/lcaron.glif b/sources/FixelDisplay-Bold.ufo/glyphs/lcaron.glif new file mode 100644 index 00000000..cc1bdba0 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/lcaron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l+caron.salt + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/lcaron.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/lcaron.ss01.glif new file mode 100644 index 00000000..730c486f --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/lcaron.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l.ss01+caron.salt + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/lcommaaccent.glif b/sources/FixelDisplay-Bold.ufo/glyphs/lcommaaccent.glif new file mode 100644 index 00000000..5e8dd534 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/lcommaaccent.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l+commaaccentcomb + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/lcommaaccent.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/lcommaaccent.ss01.glif new file mode 100644 index 00000000..44014141 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/lcommaaccent.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l.ss01+commaaccentcomb + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/ldot.glif b/sources/FixelDisplay-Bold.ufo/glyphs/ldot.glif new file mode 100644 index 00000000..faa2b8fe --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/ldot.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/ldot.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/ldot.ss01.glif new file mode 100644 index 00000000..cde20571 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/ldot.ss01.glif @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + l.ss01_periodcentered + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/leo.glif b/sources/FixelDisplay-Bold.ufo/glyphs/leo.glif new file mode 100644 index 00000000..394e7cf7 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/leo.glif @@ -0,0 +1,494 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/less.glif b/sources/FixelDisplay-Bold.ufo/glyphs/less.glif new file mode 100644 index 00000000..87384301 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/less.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/lessequal.glif b/sources/FixelDisplay-Bold.ufo/glyphs/lessequal.glif new file mode 100644 index 00000000..577c1620 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/lessequal.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/lhacyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/lhacyr.glif new file mode 100644 index 00000000..76c77161 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/lhacyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + х + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/ljecyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/ljecyr.glif new file mode 100644 index 00000000..e2db4f07 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/ljecyr.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + ь + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/ljecyr.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/ljecyr.ss01.glif new file mode 100644 index 00000000..b2d75157 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/ljecyr.ss01.glif @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + ь + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/ljekomicyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/ljekomicyr.glif new file mode 100644 index 00000000..64868c29 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/ljekomicyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + njekomicyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/longs.glif b/sources/FixelDisplay-Bold.ufo/glyphs/longs.glif new file mode 100644 index 00000000..572f6747 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/longs.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + n + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/lslash.glif b/sources/FixelDisplay-Bold.ufo/glyphs/lslash.glif new file mode 100644 index 00000000..ab62ec58 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/lslash.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Lslash+12 + com.fontlab.metricsRight + |Lslash+12 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/lslash.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/lslash.ss01.glif new file mode 100644 index 00000000..36dc664f --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/lslash.ss01.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Lslash-10 + com.fontlab.metricsRight + |Lslash + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/m.glif b/sources/FixelDisplay-Bold.ufo/glyphs/m.glif new file mode 100644 index 00000000..4e4c835d --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/m.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + n + com.fontlab.metricsRight + n + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/macron-fwd.alt.glif b/sources/FixelDisplay-Bold.ufo/glyphs/macron-fwd.alt.glif new file mode 100644 index 00000000..b05f2108 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/macron-fwd.alt.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/macron-fwd.glif b/sources/FixelDisplay-Bold.ufo/glyphs/macron-fwd.glif new file mode 100644 index 00000000..c80bc01a --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/macron-fwd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/macron.case.glif b/sources/FixelDisplay-Bold.ufo/glyphs/macron.case.glif new file mode 100644 index 00000000..485b49e6 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/macron.case.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/macron.glif b/sources/FixelDisplay-Bold.ufo/glyphs/macron.glif new file mode 100644 index 00000000..7f46acf4 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/macron.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/macronacute.S_R_B_.glif b/sources/FixelDisplay-Bold.ufo/glyphs/macronacute.S_R_B_.glif new file mode 100644 index 00000000..cc07d2fd --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/macronacute.S_R_B_.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + macron+acute + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/millionscombcyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/millionscombcyr.glif new file mode 100644 index 00000000..b4304fe8 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/millionscombcyr.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/minus.glif b/sources/FixelDisplay-Bold.ufo/glyphs/minus.glif new file mode 100644 index 00000000..c81f2cb4 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/minus.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/minute.glif b/sources/FixelDisplay-Bold.ufo/glyphs/minute.glif new file mode 100644 index 00000000..f0d65b8f --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/minute.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/mu.glif b/sources/FixelDisplay-Bold.ufo/glyphs/mu.glif new file mode 100644 index 00000000..7c5bb34b --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/mu.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + p + com.fontlab.metricsRight + u + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/multiply.glif b/sources/FixelDisplay-Bold.ufo/glyphs/multiply.glif new file mode 100644 index 00000000..98441d03 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/multiply.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/n.glif b/sources/FixelDisplay-Bold.ufo/glyphs/n.glif new file mode 100644 index 00000000..c1aa3b85 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/n.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/nacute.glif b/sources/FixelDisplay-Bold.ufo/glyphs/nacute.glif new file mode 100644 index 00000000..2f27f77f --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/nacute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + n+acute + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/napostrophe.glif b/sources/FixelDisplay-Bold.ufo/glyphs/napostrophe.glif new file mode 100644 index 00000000..f768d8cc --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/napostrophe.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + com.fontlab.metricsRight + n + com.schriftgestaltung.Glyphs.ComponentInfo + + + alignment + -1 + index + 0 + name + n + + + alignment + -1 + index + 1 + name + quoteright + + + com.schriftgestaltung.Glyphs.rightMetricsKey + n + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/ncaron.glif b/sources/FixelDisplay-Bold.ufo/glyphs/ncaron.glif new file mode 100644 index 00000000..a8ba087e --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/ncaron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + n+caron + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/ncommaaccent.glif b/sources/FixelDisplay-Bold.ufo/glyphs/ncommaaccent.glif new file mode 100644 index 00000000..b9dbe27b --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/ncommaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + n+commaaccentcomb + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/neptune.glif b/sources/FixelDisplay-Bold.ufo/glyphs/neptune.glif new file mode 100644 index 00000000..86a10acb --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/neptune.glif @@ -0,0 +1,125 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ш + com.fontlab.metricsRight + Ш + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/nine.glif b/sources/FixelDisplay-Bold.ufo/glyphs/nine.glif new file mode 100644 index 00000000..bb1d2f51 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/nine.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + |six + com.fontlab.metricsRight + |six + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/nine.osf.glif b/sources/FixelDisplay-Bold.ufo/glyphs/nine.osf.glif new file mode 100644 index 00000000..8ce9f55b --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/nine.osf.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |six + com.fontlab.metricsRight + |six + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/nine.tf.glif b/sources/FixelDisplay-Bold.ufo/glyphs/nine.tf.glif new file mode 100644 index 00000000..45340dba --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/nine.tf.glif @@ -0,0 +1,7 @@ + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/njecyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/njecyr.glif new file mode 100644 index 00000000..ac4976f1 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/njecyr.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + ь + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/njecyr.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/njecyr.ss01.glif new file mode 100644 index 00000000..3026125a --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/njecyr.ss01.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + ь + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/njekomicyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/njekomicyr.glif new file mode 100644 index 00000000..42efb9b2 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/njekomicyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + |u + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/notequal.glif b/sources/FixelDisplay-Bold.ufo/glyphs/notequal.glif new file mode 100644 index 00000000..7367ab06 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/notequal.glif @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/ntilde.glif b/sources/FixelDisplay-Bold.ufo/glyphs/ntilde.glif new file mode 100644 index 00000000..45ae49be --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/ntilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + n+tilde + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/numbersign.glif b/sources/FixelDisplay-Bold.ufo/glyphs/numbersign.glif new file mode 100644 index 00000000..b4479b55 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/numbersign.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/numero.glif b/sources/FixelDisplay-Bold.ufo/glyphs/numero.glif new file mode 100644 index 00000000..44493e61 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/numero.glif @@ -0,0 +1,90 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + N + com.fontlab.recipe + N+ordmasculine + com.schriftgestaltung.Glyphs.ComponentInfo + + + alignment + -1 + index + 0 + name + N + + + alignment + -1 + index + 1 + name + ordmasculine + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/numero.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/numero.ss01.glif new file mode 100644 index 00000000..099f875a --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/numero.ss01.glif @@ -0,0 +1,95 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + N.ss01 + com.fontlab.metricsRight + ordmasculine + com.fontlab.recipe + N.ss01+ordmasculine + com.schriftgestaltung.Glyphs.ComponentInfo + + + alignment + -1 + index + 0 + name + ordmasculine + + + alignment + -1 + index + 1 + name + N.ss01 + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/o-cy.accented.glif b/sources/FixelDisplay-Bold.ufo/glyphs/o-cy.accented.glif new file mode 100644 index 00000000..45628c9c --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/o-cy.accented.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+acute + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/o-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/o-cy.glif new file mode 100644 index 00000000..53d9b977 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/o-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/o.glif b/sources/FixelDisplay-Bold.ufo/glyphs/o.glif new file mode 100644 index 00000000..5610ea14 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/o.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/oB_inocular-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/oB_inocular-cy.glif new file mode 100644 index 00000000..a89e3854 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/oB_inocular-cy.glif @@ -0,0 +1,81 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/oD_oubleM_onocular-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/oD_oubleM_onocular-cy.glif new file mode 100644 index 00000000..3be7745b --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/oD_oubleM_onocular-cy.glif @@ -0,0 +1,121 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + com.fontlab.recipe + doubleo-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/oM_onocular-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/oM_onocular-cy.glif new file mode 100644 index 00000000..79b86666 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/oM_onocular-cy.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/oacute.glif b/sources/FixelDisplay-Bold.ufo/glyphs/oacute.glif new file mode 100644 index 00000000..13dc9f58 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/oacute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+acute + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/obarcyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/obarcyr.glif new file mode 100644 index 00000000..81d55e15 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/obarcyr.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/obardieresiscyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/obardieresiscyr.glif new file mode 100644 index 00000000..0599990d --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/obardieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + obarcyr+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/obreve.glif b/sources/FixelDisplay-Bold.ufo/glyphs/obreve.glif new file mode 100644 index 00000000..72ee07e4 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/obreve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+breve + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/ocircumflex.glif b/sources/FixelDisplay-Bold.ufo/glyphs/ocircumflex.glif new file mode 100644 index 00000000..841d7958 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/ocircumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+circumflex + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/odieresis.glif b/sources/FixelDisplay-Bold.ufo/glyphs/odieresis.glif new file mode 100644 index 00000000..3f9610eb --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/odieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+dieresis + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/odieresiscyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/odieresiscyr.glif new file mode 100644 index 00000000..a9f3375e --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/odieresiscyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/oe.glif b/sources/FixelDisplay-Bold.ufo/glyphs/oe.glif new file mode 100644 index 00000000..17bfbc48 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/oe.glif @@ -0,0 +1,86 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + e + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/oe.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/oe.ss01.glif new file mode 100644 index 00000000..abec49dd --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/oe.ss01.glif @@ -0,0 +1,95 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + e.ss01 + public.markColor + 0.6,0.997,1,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/ogonek.glif b/sources/FixelDisplay-Bold.ufo/glyphs/ogonek.glif new file mode 100644 index 00000000..07024881 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/ogonek.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/ograve.glif b/sources/FixelDisplay-Bold.ufo/glyphs/ograve.glif new file mode 100644 index 00000000..44d5ec0d --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/ograve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+grave + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/ohungarumlaut.glif b/sources/FixelDisplay-Bold.ufo/glyphs/ohungarumlaut.glif new file mode 100644 index 00000000..46642abc --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/ohungarumlaut.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+hungarumlaut + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/omacron.glif b/sources/FixelDisplay-Bold.ufo/glyphs/omacron.glif new file mode 100644 index 00000000..38b9218e --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/omacron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+macron + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/omegaB_road-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/omegaB_road-cy.glif new file mode 100644 index 00000000..81a34c81 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/omegaB_road-cy.glif @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o+5 + com.fontlab.metricsRight + o+5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/omegacyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/omegacyr.glif new file mode 100644 index 00000000..e42968ae --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/omegacyr.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + w + com.fontlab.metricsRight + w + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/omegaroundcyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/omegaroundcyr.glif new file mode 100644 index 00000000..dc8c6fb0 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/omegaroundcyr.glif @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/omegatitlocyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/omegatitlocyr.glif new file mode 100644 index 00000000..b55317c0 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/omegatitlocyr.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o+5 + com.fontlab.metricsRight + o+5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/omultiocular-cy.alt.glif b/sources/FixelDisplay-Bold.ufo/glyphs/omultiocular-cy.alt.glif new file mode 100644 index 00000000..2448d695 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/omultiocular-cy.alt.glif @@ -0,0 +1,366 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + oMonocular-cy + com.fontlab.metricsRight + oMonocular-cy + public.markColor + 0.6,0.997,1,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/omultiocular-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/omultiocular-cy.glif new file mode 100644 index 00000000..2910b52f --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/omultiocular-cy.glif @@ -0,0 +1,517 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + oMonocular-cy + com.fontlab.metricsRight + oMonocular-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/one.glif b/sources/FixelDisplay-Bold.ufo/glyphs/one.glif new file mode 100644 index 00000000..4f5ee425 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/one.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =40 + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/one.osf.glif b/sources/FixelDisplay-Bold.ufo/glyphs/one.osf.glif new file mode 100644 index 00000000..bf12f5ce --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/one.osf.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + one + com.fontlab.metricsRight + one + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/one.tf.glif b/sources/FixelDisplay-Bold.ufo/glyphs/one.tf.glif new file mode 100644 index 00000000..477451d3 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/one.tf.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/onehalf.glif b/sources/FixelDisplay-Bold.ufo/glyphs/onehalf.glif new file mode 100644 index 00000000..ce1434ca --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/onehalf.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/onequarter.glif b/sources/FixelDisplay-Bold.ufo/glyphs/onequarter.glif new file mode 100644 index 00000000..c3e2cf6c --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/onequarter.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/onesuperior.glif b/sources/FixelDisplay-Bold.ufo/glyphs/onesuperior.glif new file mode 100644 index 00000000..1e3884d2 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/onesuperior.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/ordfeminine.glif b/sources/FixelDisplay-Bold.ufo/glyphs/ordfeminine.glif new file mode 100644 index 00000000..c92961e2 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/ordfeminine.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/ordmasculine.glif b/sources/FixelDisplay-Bold.ufo/glyphs/ordmasculine.glif new file mode 100644 index 00000000..27e36b76 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/ordmasculine.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/oslash.glif b/sources/FixelDisplay-Bold.ufo/glyphs/oslash.glif new file mode 100644 index 00000000..f5bf4d6b --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/oslash.glif @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/oslashacute.glif b/sources/FixelDisplay-Bold.ufo/glyphs/oslashacute.glif new file mode 100644 index 00000000..7e9be819 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/oslashacute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + oslash+acute + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/otcyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/otcyr.glif new file mode 100644 index 00000000..e37eb3bd --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/otcyr.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsRight + w + com.fontlab.recipe + omegacyr+uni2DEE + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/otilde.glif b/sources/FixelDisplay-Bold.ufo/glyphs/otilde.glif new file mode 100644 index 00000000..43017868 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/otilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+tilde + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/p.glif b/sources/FixelDisplay-Bold.ufo/glyphs/p.glif new file mode 100644 index 00000000..d0cda6ec --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/p.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/p.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/p.ss01.glif new file mode 100644 index 00000000..83bdfe31 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/p.ss01.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/palatcombcyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/palatcombcyr.glif new file mode 100644 index 00000000..3b640788 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/palatcombcyr.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/palochkacyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/palochkacyr.glif new file mode 100644 index 00000000..74c88b4d --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/palochkacyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/paragraph.glif b/sources/FixelDisplay-Bold.ufo/glyphs/paragraph.glif new file mode 100644 index 00000000..3cfefd0c --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/paragraph.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |P + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/parenleft.case.glif b/sources/FixelDisplay-Bold.ufo/glyphs/parenleft.case.glif new file mode 100644 index 00000000..37748783 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/parenleft.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |parenright.case + com.fontlab.metricsRight + |parenright.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/parenleft.glif b/sources/FixelDisplay-Bold.ufo/glyphs/parenleft.glif new file mode 100644 index 00000000..d09ec27c --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/parenleft.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/parenright.case.glif b/sources/FixelDisplay-Bold.ufo/glyphs/parenright.case.glif new file mode 100644 index 00000000..5311a0ab --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/parenright.case.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + parenright + com.fontlab.metricsRight + parenright + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/parenright.glif b/sources/FixelDisplay-Bold.ufo/glyphs/parenright.glif new file mode 100644 index 00000000..d908f30e --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/parenright.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/partialdiff.glif b/sources/FixelDisplay-Bold.ufo/glyphs/partialdiff.glif new file mode 100644 index 00000000..569c592f --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/partialdiff.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/pe-cy.B_G_R_.glif b/sources/FixelDisplay-Bold.ufo/glyphs/pe-cy.B_G_R_.glif new file mode 100644 index 00000000..e074305e --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/pe-cy.B_G_R_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + n + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/pe-cy.S_R_B_.glif b/sources/FixelDisplay-Bold.ufo/glyphs/pe-cy.S_R_B_.glif new file mode 100644 index 00000000..dc586ecd --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/pe-cy.S_R_B_.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+macron-fwd.alt + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/pe-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/pe-cy.glif new file mode 100644 index 00000000..18ffb11d --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/pe-cy.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/pehookcyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/pehookcyr.glif new file mode 100644 index 00000000..9f1a953e --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/pehookcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + п + com.fontlab.metricsRight + enmiddlehookcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/percent.glif b/sources/FixelDisplay-Bold.ufo/glyphs/percent.glif new file mode 100644 index 00000000..b0cc58fa --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/percent.glif @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/period.glif b/sources/FixelDisplay-Bold.ufo/glyphs/period.glif new file mode 100644 index 00000000..1c1aaee4 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/period.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/periodcentered.glif b/sources/FixelDisplay-Bold.ufo/glyphs/periodcentered.glif new file mode 100644 index 00000000..5c56ac29 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/periodcentered.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/perthousand.glif b/sources/FixelDisplay-Bold.ufo/glyphs/perthousand.glif new file mode 100644 index 00000000..18057866 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/perthousand.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/petailcyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/petailcyr.glif new file mode 100644 index 00000000..4bb5bfa1 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/petailcyr.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + п + com.fontlab.metricsRight + entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/pi.glif b/sources/FixelDisplay-Bold.ufo/glyphs/pi.glif new file mode 100644 index 00000000..d8908837 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/pi.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f + com.fontlab.metricsRight + t + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/plus.glif b/sources/FixelDisplay-Bold.ufo/glyphs/plus.glif new file mode 100644 index 00000000..a554c191 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/plus.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/plusminus.glif b/sources/FixelDisplay-Bold.ufo/glyphs/plusminus.glif new file mode 100644 index 00000000..1f55f272 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/plusminus.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/pokrytiecombcyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/pokrytiecombcyr.glif new file mode 100644 index 00000000..5d88adbd --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/pokrytiecombcyr.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/product.glif b/sources/FixelDisplay-Bold.ufo/glyphs/product.glif new file mode 100644 index 00000000..e474e941 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/product.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/proportional.glif b/sources/FixelDisplay-Bold.ufo/glyphs/proportional.glif new file mode 100644 index 00000000..1872ceac --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/proportional.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/psicyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/psicyr.glif new file mode 100644 index 00000000..bad38c04 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/psicyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + u + com.fontlab.metricsRight + |u + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/q.glif b/sources/FixelDisplay-Bold.ufo/glyphs/q.glif new file mode 100644 index 00000000..15b0ad0b --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/q.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/q.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/q.ss01.glif new file mode 100644 index 00000000..2627a80e --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/q.ss01.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/qacyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/qacyr.glif new file mode 100644 index 00000000..ef433dce --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/qacyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + q + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/question.glif b/sources/FixelDisplay-Bold.ufo/glyphs/question.glif new file mode 100644 index 00000000..642e6dd9 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/question.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/questiondown.case.glif b/sources/FixelDisplay-Bold.ufo/glyphs/questiondown.case.glif new file mode 100644 index 00000000..f7671d24 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/questiondown.case.glif @@ -0,0 +1,19 @@ + + + + + + + + + com.fontlab.metricsLeft + |question + com.fontlab.metricsRight + |question + com.fontlab.recipe + questiondown + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/questiondown.glif b/sources/FixelDisplay-Bold.ufo/glyphs/questiondown.glif new file mode 100644 index 00000000..d5d10eb8 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/questiondown.glif @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |question + com.fontlab.metricsRight + |question + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/quotedbl.glif b/sources/FixelDisplay-Bold.ufo/glyphs/quotedbl.glif new file mode 100644 index 00000000..0c94c4f0 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/quotedbl.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/quotedblbase.glif b/sources/FixelDisplay-Bold.ufo/glyphs/quotedblbase.glif new file mode 100644 index 00000000..29edf123 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/quotedblbase.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + comma + com.fontlab.metricsRight + comma + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/quotedblleft.glif b/sources/FixelDisplay-Bold.ufo/glyphs/quotedblleft.glif new file mode 100644 index 00000000..ec551a8c --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/quotedblleft.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + |comma + com.fontlab.metricsRight + |comma + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/quotedblright.glif b/sources/FixelDisplay-Bold.ufo/glyphs/quotedblright.glif new file mode 100644 index 00000000..bd986970 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/quotedblright.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.metricsLeft + comma+20 + com.fontlab.metricsRight + comma-20 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/quoteleft.glif b/sources/FixelDisplay-Bold.ufo/glyphs/quoteleft.glif new file mode 100644 index 00000000..faacb319 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/quoteleft.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + quotedblleft + com.fontlab.metricsRight + quotedblleft + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/quoteright.glif b/sources/FixelDisplay-Bold.ufo/glyphs/quoteright.glif new file mode 100644 index 00000000..1a4bd5ea --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/quoteright.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + com.fontlab.metricsLeft + quotedblright + com.fontlab.metricsRight + quotedblright + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/quotesinglbase.glif b/sources/FixelDisplay-Bold.ufo/glyphs/quotesinglbase.glif new file mode 100644 index 00000000..f8b1c6bb --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/quotesinglbase.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + com.fontlab.recipe + comma + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/quotesingle.glif b/sources/FixelDisplay-Bold.ufo/glyphs/quotesingle.glif new file mode 100644 index 00000000..91c07b45 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/quotesingle.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/r.glif b/sources/FixelDisplay-Bold.ufo/glyphs/r.glif new file mode 100644 index 00000000..ffa86a15 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/r.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/racute.glif b/sources/FixelDisplay-Bold.ufo/glyphs/racute.glif new file mode 100644 index 00000000..313347b1 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/racute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + r+acute + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/radical.glif b/sources/FixelDisplay-Bold.ufo/glyphs/radical.glif new file mode 100644 index 00000000..c8f39b7c --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/radical.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + V + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/rcaron.glif b/sources/FixelDisplay-Bold.ufo/glyphs/rcaron.glif new file mode 100644 index 00000000..3af08820 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/rcaron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + r+caron + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/rcommaaccent.glif b/sources/FixelDisplay-Bold.ufo/glyphs/rcommaaccent.glif new file mode 100644 index 00000000..eddf7f52 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/rcommaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + r+commaaccentcomb + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/registered.glif b/sources/FixelDisplay-Bold.ufo/glyphs/registered.glif new file mode 100644 index 00000000..c3160f73 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/registered.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/reversedzecyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/reversedzecyr.glif new file mode 100644 index 00000000..12e72da6 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/reversedzecyr.glif @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + + com.fontlab.metricsRight + + com.fontlab.recipe + з + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/rhacyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/rhacyr.glif new file mode 100644 index 00000000..c594b1ab --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/rhacyr.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + p + com.fontlab.metricsRight + x + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/ring.case.glif b/sources/FixelDisplay-Bold.ufo/glyphs/ring.case.glif new file mode 100644 index 00000000..bc09cb3c --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/ring.case.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/ring.glif b/sources/FixelDisplay-Bold.ufo/glyphs/ring.glif new file mode 100644 index 00000000..0c3231b7 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/ring.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/rookblack.glif b/sources/FixelDisplay-Bold.ufo/glyphs/rookblack.glif new file mode 100644 index 00000000..53ecb6fd --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/rookblack.glif @@ -0,0 +1,270 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =30 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/ruble.glif b/sources/FixelDisplay-Bold.ufo/glyphs/ruble.glif new file mode 100644 index 00000000..416aff8f --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/ruble.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + P + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/s.glif b/sources/FixelDisplay-Bold.ufo/glyphs/s.glif new file mode 100644 index 00000000..89a046af --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/s.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/sacute.glif b/sources/FixelDisplay-Bold.ufo/glyphs/sacute.glif new file mode 100644 index 00000000..b51afa99 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/sacute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + s+acute + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/scaron.glif b/sources/FixelDisplay-Bold.ufo/glyphs/scaron.glif new file mode 100644 index 00000000..50c19f99 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/scaron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + s+caron + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/scedilla.glif b/sources/FixelDisplay-Bold.ufo/glyphs/scedilla.glif new file mode 100644 index 00000000..2a51a0c7 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/scedilla.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + s+cedilla + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/schwacyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/schwacyr.glif new file mode 100644 index 00000000..b5ea3b98 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/schwacyr.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |e + com.fontlab.metricsRight + o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/schwadieresiscyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/schwadieresiscyr.glif new file mode 100644 index 00000000..358277e5 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/schwadieresiscyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + schwacyr+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/scircumflex.glif b/sources/FixelDisplay-Bold.ufo/glyphs/scircumflex.glif new file mode 100644 index 00000000..611aa2be --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/scircumflex.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + s+circumflex + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/scommaaccent.glif b/sources/FixelDisplay-Bold.ufo/glyphs/scommaaccent.glif new file mode 100644 index 00000000..7dbb91d2 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/scommaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + s+commaaccentcomb + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/second.glif b/sources/FixelDisplay-Bold.ufo/glyphs/second.glif new file mode 100644 index 00000000..0facb285 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/second.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/section.glif b/sources/FixelDisplay-Bold.ufo/glyphs/section.glif new file mode 100644 index 00000000..bb939ef0 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/section.glif @@ -0,0 +1,87 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + S + com.fontlab.metricsRight + S + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/semicolon.case.glif b/sources/FixelDisplay-Bold.ufo/glyphs/semicolon.case.glif new file mode 100644 index 00000000..7f7c17c5 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/semicolon.case.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.metricsLeft + semicolon + com.fontlab.metricsRight + semicolon + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/semicolon.glif b/sources/FixelDisplay-Bold.ufo/glyphs/semicolon.glif new file mode 100644 index 00000000..a7b39326 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/semicolon.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/semisoftcyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/semisoftcyr.glif new file mode 100644 index 00000000..5a690b97 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/semisoftcyr.glif @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + t + com.fontlab.metricsRight + ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/seven.glif b/sources/FixelDisplay-Bold.ufo/glyphs/seven.glif new file mode 100644 index 00000000..2bc7bf89 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/seven.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/seven.osf.glif b/sources/FixelDisplay-Bold.ufo/glyphs/seven.osf.glif new file mode 100644 index 00000000..8817d88d --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/seven.osf.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + seven + com.fontlab.metricsRight + seven + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/seven.tf.glif b/sources/FixelDisplay-Bold.ufo/glyphs/seven.tf.glif new file mode 100644 index 00000000..ebd72186 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/seven.tf.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/sha-cy.B_G_R_.glif b/sources/FixelDisplay-Bold.ufo/glyphs/sha-cy.B_G_R_.glif new file mode 100644 index 00000000..0f8e3e7b --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/sha-cy.B_G_R_.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + u + com.fontlab.metricsRight + l + com.fontlab.recipe + m + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/sha-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/sha-cy.glif new file mode 100644 index 00000000..00a3ab51 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/sha-cy.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/shcha-cy.B_G_R_.glif b/sources/FixelDisplay-Bold.ufo/glyphs/shcha-cy.B_G_R_.glif new file mode 100644 index 00000000..b9d0daaa --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/shcha-cy.B_G_R_.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + u + com.fontlab.metricsRight + щ + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/shcha-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/shcha-cy.glif new file mode 100644 index 00000000..fb56045e --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/shcha-cy.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + д + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/shhacyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/shhacyr.glif new file mode 100644 index 00000000..d4e500ae --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/shhacyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsRight + n + com.fontlab.recipe + h + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/shhatailcyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/shhatailcyr.glif new file mode 100644 index 00000000..c3826f1e --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/shhatailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + h + com.fontlab.metricsRight + entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/shwe-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/shwe-cy.glif new file mode 100644 index 00000000..7677a1e8 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/shwe-cy.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + щ + com.fontlab.metricsRight + щ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/six.glif b/sources/FixelDisplay-Bold.ufo/glyphs/six.glif new file mode 100644 index 00000000..6213f204 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/six.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/six.osf.glif b/sources/FixelDisplay-Bold.ufo/glyphs/six.osf.glif new file mode 100644 index 00000000..945d75e3 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/six.osf.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + six + com.fontlab.metricsRight + six + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/six.tf.glif b/sources/FixelDisplay-Bold.ufo/glyphs/six.tf.glif new file mode 100644 index 00000000..0c8cd7ea --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/six.tf.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/sjekomicyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/sjekomicyr.glif new file mode 100644 index 00000000..af7cec39 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/sjekomicyr.glif @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + e + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/slash.case.glif b/sources/FixelDisplay-Bold.ufo/glyphs/slash.case.glif new file mode 100644 index 00000000..e03ed6bf --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/slash.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + slash + com.fontlab.metricsRight + slash + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/slash.glif b/sources/FixelDisplay-Bold.ufo/glyphs/slash.glif new file mode 100644 index 00000000..93501bf1 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/slash.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/softsign-cy.B_G_R_.glif b/sources/FixelDisplay-Bold.ufo/glyphs/softsign-cy.B_G_R_.glif new file mode 100644 index 00000000..e38e82f1 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/softsign-cy.B_G_R_.glif @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + u + com.fontlab.metricsRight + ь-5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/softsign-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/softsign-cy.glif new file mode 100644 index 00000000..abbfed89 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/softsign-cy.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/softsign-cy.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/softsign-cy.ss01.glif new file mode 100644 index 00000000..461295d1 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/softsign-cy.ss01.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/space.glif b/sources/FixelDisplay-Bold.ufo/glyphs/space.glif new file mode 100644 index 00000000..322b6686 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/space.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/spadewhite.glif b/sources/FixelDisplay-Bold.ufo/glyphs/spadewhite.glif new file mode 100644 index 00000000..7941ee70 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/spadewhite.glif @@ -0,0 +1,453 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/sterling.glif b/sources/FixelDisplay-Bold.ufo/glyphs/sterling.glif new file mode 100644 index 00000000..3e7ac5c6 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/sterling.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/summation.glif b/sources/FixelDisplay-Bold.ufo/glyphs/summation.glif new file mode 100644 index 00000000..1c449fd3 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/summation.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/t.glif b/sources/FixelDisplay-Bold.ufo/glyphs/t.glif new file mode 100644 index 00000000..82c5ea69 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/t.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/t.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/t.ss01.glif new file mode 100644 index 00000000..0e0d27a7 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/t.ss01.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/tbar.glif b/sources/FixelDisplay-Bold.ufo/glyphs/tbar.glif new file mode 100644 index 00000000..8bdbd1d3 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/tbar.glif @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/tbar.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/tbar.ss01.glif new file mode 100644 index 00000000..75986951 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/tbar.ss01.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/tcaron.glif b/sources/FixelDisplay-Bold.ufo/glyphs/tcaron.glif new file mode 100644 index 00000000..a2b6f945 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/tcaron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.metricsLeft + t + com.fontlab.metricsRight + t + com.fontlab.recipe + t+caron.salt + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/tcaron.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/tcaron.ss01.glif new file mode 100644 index 00000000..3e4f6f05 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/tcaron.ss01.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + com.fontlab.recipe + t.ss01+caron.salt + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/tcedilla.glif b/sources/FixelDisplay-Bold.ufo/glyphs/tcedilla.glif new file mode 100644 index 00000000..764eef1c --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/tcedilla.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + t+cedilla + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/tcedilla.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/tcedilla.ss01.glif new file mode 100644 index 00000000..4bcda574 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/tcedilla.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + t.ss01+cedilla + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/tche-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/tche-cy.glif new file mode 100644 index 00000000..3cdd65ca --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/tche-cy.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + tetsecyr-20 + com.fontlab.metricsRight + ч + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/tcommaaccent.glif b/sources/FixelDisplay-Bold.ufo/glyphs/tcommaaccent.glif new file mode 100644 index 00000000..244b5bb6 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/tcommaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + t+commaaccentcomb + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/tcommaaccent.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/tcommaaccent.ss01.glif new file mode 100644 index 00000000..e3486c98 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/tcommaaccent.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + t.ss01+commaaccentcomb + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/te-cy.B_G_R_.glif b/sources/FixelDisplay-Bold.ufo/glyphs/te-cy.B_G_R_.glif new file mode 100644 index 00000000..bb88c172 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/te-cy.B_G_R_.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + m + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/te-cy.S_R_B_.glif b/sources/FixelDisplay-Bold.ufo/glyphs/te-cy.S_R_B_.glif new file mode 100644 index 00000000..e6f80a52 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/te-cy.S_R_B_.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ш.BGR+macron-fwd + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/te-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/te-cy.glif new file mode 100644 index 00000000..7aeb2932 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/te-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/te-cy.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/te-cy.ss01.glif new file mode 100644 index 00000000..913141ae --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/te-cy.ss01.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/tenge.glif b/sources/FixelDisplay-Bold.ufo/glyphs/tenge.glif new file mode 100644 index 00000000..0546bfc9 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/tenge.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + T + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/tenmillionscomb-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/tenmillionscomb-cy.glif new file mode 100644 index 00000000..6000db5b --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/tenmillionscomb-cy.glif @@ -0,0 +1,109 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/tetailcyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/tetailcyr.glif new file mode 100644 index 00000000..d045cd55 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/tetailcyr.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + т + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/tetsecyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/tetsecyr.glif new file mode 100644 index 00000000..abce50ce --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/tetsecyr.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + т + com.fontlab.metricsRight + ц + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/tewithmiddlehook-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/tewithmiddlehook-cy.glif new file mode 100644 index 00000000..a498933d --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/tewithmiddlehook-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + т + com.fontlab.metricsRight + gehookcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/thorn.glif b/sources/FixelDisplay-Bold.ufo/glyphs/thorn.glif new file mode 100644 index 00000000..988e1f31 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/thorn.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + b + com.fontlab.metricsRight + b + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/thousandmillionscomb-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/thousandmillionscomb-cy.glif new file mode 100644 index 00000000..1e33d57d --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/thousandmillionscomb-cy.glif @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/thousandscyr.dnom.glif b/sources/FixelDisplay-Bold.ufo/glyphs/thousandscyr.dnom.glif new file mode 100644 index 00000000..c0ae4074 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/thousandscyr.dnom.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + | + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/thousandscyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/thousandscyr.glif new file mode 100644 index 00000000..b4c85690 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/thousandscyr.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + | + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/three.glif b/sources/FixelDisplay-Bold.ufo/glyphs/three.glif new file mode 100644 index 00000000..88358e2f --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/three.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/three.osf.glif b/sources/FixelDisplay-Bold.ufo/glyphs/three.osf.glif new file mode 100644 index 00000000..81e669bc --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/three.osf.glif @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + three + com.fontlab.metricsRight + three + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/three.tf.glif b/sources/FixelDisplay-Bold.ufo/glyphs/three.tf.glif new file mode 100644 index 00000000..2031028a --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/three.tf.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/threequarters.glif b/sources/FixelDisplay-Bold.ufo/glyphs/threequarters.glif new file mode 100644 index 00000000..ccb8ae9b --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/threequarters.glif @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/threesuperior.glif b/sources/FixelDisplay-Bold.ufo/glyphs/threesuperior.glif new file mode 100644 index 00000000..ab8f4829 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/threesuperior.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/tilde.case.glif b/sources/FixelDisplay-Bold.ufo/glyphs/tilde.case.glif new file mode 100644 index 00000000..02a22359 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/tilde.case.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/tilde.glif b/sources/FixelDisplay-Bold.ufo/glyphs/tilde.glif new file mode 100644 index 00000000..a357e809 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/tilde.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/titlocombcyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/titlocombcyr.glif new file mode 100644 index 00000000..1a060596 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/titlocombcyr.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/tjekomicyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/tjekomicyr.glif new file mode 100644 index 00000000..fe60b4e6 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/tjekomicyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + т + com.fontlab.metricsRight + njekomicyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/trademark.glif b/sources/FixelDisplay-Bold.ufo/glyphs/trademark.glif new file mode 100644 index 00000000..b449d2c9 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/trademark.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/tse-cy.B_G_R_.glif b/sources/FixelDisplay-Bold.ufo/glyphs/tse-cy.B_G_R_.glif new file mode 100644 index 00000000..7961a2cd --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/tse-cy.B_G_R_.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + u + com.fontlab.metricsRight + ц + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/tse-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/tse-cy.glif new file mode 100644 index 00000000..be1df5b5 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/tse-cy.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + д + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/tseR_eversed-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/tseR_eversed-cy.glif new file mode 100644 index 00000000..8aab1d6b --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/tseR_eversed-cy.glif @@ -0,0 +1,20 @@ + + + + + + + + + + com.fontlab.metricsLeft + + com.fontlab.metricsRight + н + com.fontlab.recipe + ц + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/tshecyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/tshecyr.glif new file mode 100644 index 00000000..75dc8c3e --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/tshecyr.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + hbar + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/tsse-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/tsse-cy.glif new file mode 100644 index 00000000..20401a0b --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/tsse-cy.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + т + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/tswe-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/tswe-cy.glif new file mode 100644 index 00000000..6fc6a1e0 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/tswe-cy.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ш + com.fontlab.metricsRight + shwe-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/twe-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/twe-cy.glif new file mode 100644 index 00000000..446d17f3 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/twe-cy.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + т.ss01 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/two.glif b/sources/FixelDisplay-Bold.ufo/glyphs/two.glif new file mode 100644 index 00000000..51287b16 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/two.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/two.osf.glif b/sources/FixelDisplay-Bold.ufo/glyphs/two.osf.glif new file mode 100644 index 00000000..15572ac5 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/two.osf.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + two + com.fontlab.metricsRight + two + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/two.tf.glif b/sources/FixelDisplay-Bold.ufo/glyphs/two.tf.glif new file mode 100644 index 00000000..962a24c7 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/two.tf.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/twosuperior.glif b/sources/FixelDisplay-Bold.ufo/glyphs/twosuperior.glif new file mode 100644 index 00000000..41cdf461 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/twosuperior.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/u-cy.accented.glif b/sources/FixelDisplay-Bold.ufo/glyphs/u-cy.accented.glif new file mode 100644 index 00000000..44fb378e --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/u-cy.accented.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + y+acute + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/u-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/u-cy.glif new file mode 100644 index 00000000..decf3a80 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/u-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + y + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/u.glif b/sources/FixelDisplay-Bold.ufo/glyphs/u.glif new file mode 100644 index 00000000..229f3189 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/u.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |n + com.fontlab.metricsRight + l + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/uacute.glif b/sources/FixelDisplay-Bold.ufo/glyphs/uacute.glif new file mode 100644 index 00000000..9aad2d74 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/uacute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+acute + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/uacutedblcyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/uacutedblcyr.glif new file mode 100644 index 00000000..76dbb736 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/uacutedblcyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u-cy+hungarumlaut + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/ubreve.glif b/sources/FixelDisplay-Bold.ufo/glyphs/ubreve.glif new file mode 100644 index 00000000..d271b844 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/ubreve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+breve + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/ucircumflex.glif b/sources/FixelDisplay-Bold.ufo/glyphs/ucircumflex.glif new file mode 100644 index 00000000..39c75ec0 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/ucircumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+circumflex + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/udieresis.glif b/sources/FixelDisplay-Bold.ufo/glyphs/udieresis.glif new file mode 100644 index 00000000..045ffabd --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/udieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+dieresis + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/udieresiscyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/udieresiscyr.glif new file mode 100644 index 00000000..1409bafe --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/udieresiscyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/ugrave.glif b/sources/FixelDisplay-Bold.ufo/glyphs/ugrave.glif new file mode 100644 index 00000000..1c0fcd54 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/ugrave.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+grave + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/uhungarumlaut.glif b/sources/FixelDisplay-Bold.ufo/glyphs/uhungarumlaut.glif new file mode 100644 index 00000000..7380cbeb --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/uhungarumlaut.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+hungarumlaut + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/ukM_onograph-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/ukM_onograph-cy.glif new file mode 100644 index 00000000..021368dd --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/ukM_onograph-cy.glif @@ -0,0 +1,78 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + y-30 + com.fontlab.metricsRight + y-20 + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/ukcyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/ukcyr.glif new file mode 100644 index 00000000..240c77ad --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/ukcyr.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + y + com.fontlab.recipe + uni1C82_у + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/umacron.glif b/sources/FixelDisplay-Bold.ufo/glyphs/umacron.glif new file mode 100644 index 00000000..86d8d62a --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/umacron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+macron + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/umacroncyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/umacroncyr.glif new file mode 100644 index 00000000..4add4345 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/umacroncyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u-cy+macron + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/underscore.glif b/sources/FixelDisplay-Bold.ufo/glyphs/underscore.glif new file mode 100644 index 00000000..ef30b3b7 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/underscore.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/uni1C_80.glif b/sources/FixelDisplay-Bold.ufo/glyphs/uni1C_80.glif new file mode 100644 index 00000000..04f51968 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/uni1C_80.glif @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + б + com.fontlab.metricsRight + o-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/uni1C_81.glif b/sources/FixelDisplay-Bold.ufo/glyphs/uni1C_81.glif new file mode 100644 index 00000000..134a4266 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/uni1C_81.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + д-10 + com.fontlab.metricsRight + | + com.fontlab.recipe + д + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/uni1C_82.glif b/sources/FixelDisplay-Bold.ufo/glyphs/uni1C_82.glif new file mode 100644 index 00000000..566e27ac --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/uni1C_82.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/uni1C_83.glif b/sources/FixelDisplay-Bold.ufo/glyphs/uni1C_83.glif new file mode 100644 index 00000000..6d1ec549 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/uni1C_83.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + c + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/uni1C_84.glif b/sources/FixelDisplay-Bold.ufo/glyphs/uni1C_84.glif new file mode 100644 index 00000000..eb6b0624 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/uni1C_84.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/uni1C_85.glif b/sources/FixelDisplay-Bold.ufo/glyphs/uni1C_85.glif new file mode 100644 index 00000000..7c171483 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/uni1C_85.glif @@ -0,0 +1,20 @@ + + + + + + + + + + com.fontlab.metricsLeft + ш + com.fontlab.metricsRight + l() + com.fontlab.recipe + ш + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/uni1C_86.glif b/sources/FixelDisplay-Bold.ufo/glyphs/uni1C_86.glif new file mode 100644 index 00000000..3387be18 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/uni1C_86.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + uni1C84 + com.fontlab.metricsRight + ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/uni1C_87.glif b/sources/FixelDisplay-Bold.ufo/glyphs/uni1C_87.glif new file mode 100644 index 00000000..d14c4cc5 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/uni1C_87.glif @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + uni1C84-40 + com.fontlab.metricsRight + ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/uni1C_88.glif b/sources/FixelDisplay-Bold.ufo/glyphs/uni1C_88.glif new file mode 100644 index 00000000..eeef48e0 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/uni1C_88.glif @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/uni1E_B_C_.glif b/sources/FixelDisplay-Bold.ufo/glyphs/uni1E_B_C_.glif new file mode 100644 index 00000000..f3791dbf --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/uni1E_B_C_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+tilde.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/uni1E_B_D_.glif b/sources/FixelDisplay-Bold.ufo/glyphs/uni1E_B_D_.glif new file mode 100644 index 00000000..24e933bc --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/uni1E_B_D_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+tilde + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/uni2010.glif b/sources/FixelDisplay-Bold.ufo/glyphs/uni2010.glif new file mode 100644 index 00000000..64f84ec0 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/uni2010.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + hyphen + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/uni2D_E_E_.case.glif b/sources/FixelDisplay-Bold.ufo/glyphs/uni2D_E_E_.case.glif new file mode 100644 index 00000000..40414174 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/uni2D_E_E_.case.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/uni2D_E_E_.glif b/sources/FixelDisplay-Bold.ufo/glyphs/uni2D_E_E_.glif new file mode 100644 index 00000000..ac04374b --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/uni2D_E_E_.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/uniE_000.alt.glif b/sources/FixelDisplay-Bold.ufo/glyphs/uniE_000.alt.glif new file mode 100644 index 00000000..11cc9c43 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/uniE_000.alt.glif @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + ї_ї + public.markColor + 0.6,0.997,1,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/uniE_000.glif b/sources/FixelDisplay-Bold.ufo/glyphs/uniE_000.glif new file mode 100644 index 00000000..87f76f0b --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/uniE_000.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + ї_ї + public.markColor + 0.6,0.997,1,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/uniE_01A_.glif b/sources/FixelDisplay-Bold.ufo/glyphs/uniE_01A_.glif new file mode 100644 index 00000000..2d767706 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/uniE_01A_.glif @@ -0,0 +1,115 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/uniF_43A_.glif b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_43A_.glif new file mode 100644 index 00000000..492c2ac0 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_43A_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/uniF_43B_.glif b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_43B_.glif new file mode 100644 index 00000000..ad88c71a --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_43B_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ustraightcyr+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/uniF_45D_.glif b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_45D_.glif new file mode 100644 index 00000000..021d0d11 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_45D_.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Є+acute.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/uniF_45E_.glif b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_45E_.glif new file mode 100644 index 00000000..f320a3a5 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_45E_.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Iacute + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/uniF_45F_.glif b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_45F_.glif new file mode 100644 index 00000000..6015c8d8 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_45F_.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + com.fontlab.recipe + I+dieresiscase.alt+acute.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/uniF_475.glif b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_475.glif new file mode 100644 index 00000000..2e67f9f5 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_475.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + є+acute + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/uniF_476.glif b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_476.glif new file mode 100644 index 00000000..024586c1 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_476.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + iacute + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/uniF_477.glif b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_477.glif new file mode 100644 index 00000000..0dc357bd --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_477.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + dotlessi+dieresisacute + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/uniF_478.glif b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_478.glif new file mode 100644 index 00000000..e54a5ff2 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_478.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Yat+acute.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/uniF_479.glif b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_479.glif new file mode 100644 index 00000000..6fb70246 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_479.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + yat+acute + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/uniF_498.glif b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_498.glif new file mode 100644 index 00000000..cc8f54dd --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_498.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ю+dieresis.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/uniF_499.glif b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_499.glif new file mode 100644 index 00000000..33f0fabf --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_499.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ю+dieresis + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/uniF_49A_.glif b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_49A_.glif new file mode 100644 index 00000000..013509bf --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_49A_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Obarcyr+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/uniF_49B_.glif b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_49B_.glif new file mode 100644 index 00000000..52a11391 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_49B_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + obarcyr+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/uniF_49C_.glif b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_49C_.glif new file mode 100644 index 00000000..1204be9a --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_49C_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Schwacyr+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/uniF_49D_.glif b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_49D_.glif new file mode 100644 index 00000000..669a8948 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_49D_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + schwacyr+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/uniF_49E_.glif b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_49E_.glif new file mode 100644 index 00000000..036cb90f --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_49E_.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Yatcyr + com.fontlab.metricsRight + Tshecyr + com.fontlab.recipe + Shhacyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/uniF_49F_.glif b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_49F_.glif new file mode 100644 index 00000000..e5d93a02 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_49F_.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + hbar + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/uniF_4C_6.glif b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_4C_6.glif new file mode 100644 index 00000000..e7d1e879 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_4C_6.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ч + com.fontlab.metricsRight + Ч + com.fontlab.recipe + Ч + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/uniF_4C_7.glif b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_4C_7.glif new file mode 100644 index 00000000..109d99b7 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_4C_7.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ч + com.fontlab.metricsRight + ч + com.fontlab.recipe + ч+enhookcyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/uniF_4C_C_.glif b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_4C_C_.glif new file mode 100644 index 00000000..8efaeec8 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_4C_C_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + У+acute.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/uniF_4C_D_.glif b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_4C_D_.glif new file mode 100644 index 00000000..7fc18f80 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_4C_D_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + y+acute + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/uniF_4D_2.glif b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_4D_2.glif new file mode 100644 index 00000000..38eebc98 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_4D_2.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+grave.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/uniF_4D_3.glif b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_4D_3.glif new file mode 100644 index 00000000..55a30d08 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_4D_3.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+grave + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/uniF_4D_4.glif b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_4D_4.glif new file mode 100644 index 00000000..bc6dd6f0 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_4D_4.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + P+caron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/uniF_4D_5.glif b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_4D_5.glif new file mode 100644 index 00000000..eda8640b --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_4D_5.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + p+caron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/uniF_4D_6.glif b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_4D_6.glif new file mode 100644 index 00000000..474fc921 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_4D_6.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Э+dotaccent.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/uniF_4D_7.glif b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_4D_7.glif new file mode 100644 index 00000000..96e59fbf --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_4D_7.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + э+dotaccent + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/uniF_4D_8.glif b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_4D_8.glif new file mode 100644 index 00000000..19d59bef --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_4D_8.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Я+dieresis.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/uniF_4D_9.glif b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_4D_9.glif new file mode 100644 index 00000000..9bde10d9 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_4D_9.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + я+dieresis + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/uniF_50E_.glif b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_50E_.glif new file mode 100644 index 00000000..2c93a355 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_50E_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/uniF_50F_.glif b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_50F_.glif new file mode 100644 index 00000000..f88eb9eb --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_50F_.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/uniF_510.glif b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_510.glif new file mode 100644 index 00000000..ee3236ef --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_510.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/uniF_511.glif b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_511.glif new file mode 100644 index 00000000..38417dee --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_511.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/uniF_512.glif b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_512.glif new file mode 100644 index 00000000..5d2977c4 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_512.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + com.fontlab.metricsLeft + E + com.fontlab.metricsRight + E + com.fontlab.recipe + E+dieresis.case+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/uniF_513.glif b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_513.glif new file mode 100644 index 00000000..1e67b195 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_513.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.recipe + e+dieresis+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/uniF_514.glif b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_514.glif new file mode 100644 index 00000000..86289e2d --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_514.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + com.fontlab.metricsLeft + E + com.fontlab.metricsRight + E + com.fontlab.recipe + E+dieresis.case+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/uniF_515.glif b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_515.glif new file mode 100644 index 00000000..27f0d36f --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_515.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.recipe + e+dieresis+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/uniF_516.glif b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_516.glif new file mode 100644 index 00000000..7f9a3176 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_516.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + З+caron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/uniF_517.glif b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_517.glif new file mode 100644 index 00000000..6f09c001 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_517.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + з+caron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/uniF_518.glif b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_518.glif new file mode 100644 index 00000000..7916f2b7 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_518.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/uniF_519.glif b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_519.glif new file mode 100644 index 00000000..c84fd563 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_519.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/uniF_51A_.glif b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_51A_.glif new file mode 100644 index 00000000..f82c9990 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_51A_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/uniF_51B_.glif b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_51B_.glif new file mode 100644 index 00000000..8169685e --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_51B_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/uniF_51C_.glif b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_51C_.glif new file mode 100644 index 00000000..c0174c76 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_51C_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Obarcyr+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/uniF_51D_.glif b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_51D_.glif new file mode 100644 index 00000000..b465b592 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_51D_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + obarcyr+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/uniF_51E_.glif b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_51E_.glif new file mode 100644 index 00000000..56bbea9f --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_51E_.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + com.fontlab.recipe + Obarcyr+dieresis.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/uniF_51F_.glif b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_51F_.glif new file mode 100644 index 00000000..4f3f8e71 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_51F_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.recipe + obarcyr+dieresis+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/uniF_521.glif b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_521.glif new file mode 100644 index 00000000..fdf3e759 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_521.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ы+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/uniF_522.glif b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_522.glif new file mode 100644 index 00000000..af343e3f --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_522.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Э+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/uniF_523.glif b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_523.glif new file mode 100644 index 00000000..05b3ed02 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_523.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + э+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/uniF_524.glif b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_524.glif new file mode 100644 index 00000000..2e2a1bd1 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_524.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Э+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/uniF_525.glif b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_525.glif new file mode 100644 index 00000000..564ed31f --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_525.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + э+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/uniF_526.glif b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_526.glif new file mode 100644 index 00000000..18e2f9cd --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_526.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Є+dieresis.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/uniF_527.glif b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_527.glif new file mode 100644 index 00000000..f23850d2 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_527.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + є+dieresis + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/uniF_528.glif b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_528.glif new file mode 100644 index 00000000..2d04e3e3 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_528.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Я+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/uniF_529.glif b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_529.glif new file mode 100644 index 00000000..2f4dd509 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_529.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + я+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/uniF_52A_.glif b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_52A_.glif new file mode 100644 index 00000000..ae96efbb --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_52A_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Я+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/uniF_52B_.glif b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_52B_.glif new file mode 100644 index 00000000..48aed32a --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_52B_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + я+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/uniF_52C_.glif b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_52C_.glif new file mode 100644 index 00000000..fe7da452 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_52C_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ю+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/uniF_52D_.glif b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_52D_.glif new file mode 100644 index 00000000..50930871 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_52D_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ю+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/uniF_52E_.glif b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_52E_.glif new file mode 100644 index 00000000..f50d69c6 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_52E_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ю+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/uniF_52F_.glif b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_52F_.glif new file mode 100644 index 00000000..b2c95e25 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_52F_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ю+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/uniF_532.glif b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_532.glif new file mode 100644 index 00000000..3212e2fe --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_532.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Й + com.fontlab.metricsRight + Й + com.fontlab.recipe + Й + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/uniF_533.glif b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_533.glif new file mode 100644 index 00000000..3a57708b --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_533.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + l() + com.fontlab.recipe + й+enhookcyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/uniF_536.glif b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_536.glif new file mode 100644 index 00000000..2da03644 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_536.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ы+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/uniF_537.glif b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_537.glif new file mode 100644 index 00000000..6f88d28e --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_537.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ы+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/uniF_538.glif b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_538.glif new file mode 100644 index 00000000..17f4ba7a --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_538.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Reversedzecyr+dieresis.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/uniF_539.glif b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_539.glif new file mode 100644 index 00000000..c2b0854e --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_539.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + reversedzecyr+dieresis + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/uniF_830.glif b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_830.glif new file mode 100644 index 00000000..40b99c63 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_830.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+circumflex.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/uniF_831.glif b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_831.glif new file mode 100644 index 00000000..1356bc38 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_831.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+circumflex + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/uniF_833.glif b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_833.glif new file mode 100644 index 00000000..212e6624 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_833.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+circumflex.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/uniF_834.glif b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_834.glif new file mode 100644 index 00000000..ff31cabc --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_834.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+circumflex + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/uniF_839.glif b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_839.glif new file mode 100644 index 00000000..cbf650cd --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_839.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+circumflex.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/uniF_83A_.glif b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_83A_.glif new file mode 100644 index 00000000..9e8b6366 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_83A_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+circumflex + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/uniF_86F_.glif b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_86F_.glif new file mode 100644 index 00000000..e392b2f2 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_86F_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + K+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/uniF_870.glif b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_870.glif new file mode 100644 index 00000000..893e9a54 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_870.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + к+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/uniF_872.glif b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_872.glif new file mode 100644 index 00000000..7b57ab4f --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_872.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Л+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/uniF_873.glif b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_873.glif new file mode 100644 index 00000000..253cb352 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_873.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + л+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/uniF_875.glif b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_875.glif new file mode 100644 index 00000000..c8b3e88c --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_875.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/uniF_876.glif b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_876.glif new file mode 100644 index 00000000..69a85ab7 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_876.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/uniF_878.glif b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_878.glif new file mode 100644 index 00000000..1f46a5e3 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_878.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + X+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/uniF_879.glif b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_879.glif new file mode 100644 index 00000000..c8a99dce --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_879.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + x+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/uniF_87B_.glif b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_87B_.glif new file mode 100644 index 00000000..259347d0 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_87B_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ц+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/uniF_87C_.glif b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_87C_.glif new file mode 100644 index 00000000..2a7693f2 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_87C_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ц+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/uniF_87E_.glif b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_87E_.glif new file mode 100644 index 00000000..2fcaa3b1 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_87E_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ч+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/uniF_87F_.glif b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_87F_.glif new file mode 100644 index 00000000..11ca5d8a --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/uniF_87F_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ч+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/uogonek.glif b/sources/FixelDisplay-Bold.ufo/glyphs/uogonek.glif new file mode 100644 index 00000000..a1b27b03 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/uogonek.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+ogonek + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/uring.glif b/sources/FixelDisplay-Bold.ufo/glyphs/uring.glif new file mode 100644 index 00000000..b4f2e80a --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/uring.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+ring + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/ushort-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/ushort-cy.glif new file mode 100644 index 00000000..8cdab8da --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/ushort-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + uni0443+breve + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/ustraightcyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/ustraightcyr.glif new file mode 100644 index 00000000..4084f5c1 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/ustraightcyr.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + v + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/ustraightstrokecyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/ustraightstrokecyr.glif new file mode 100644 index 00000000..8fe85cba --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/ustraightstrokecyr.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/utilde.glif b/sources/FixelDisplay-Bold.ufo/glyphs/utilde.glif new file mode 100644 index 00000000..57ed428d --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/utilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+tilde + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/v.glif b/sources/FixelDisplay-Bold.ufo/glyphs/v.glif new file mode 100644 index 00000000..2c4c8e7d --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/v.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/ve-cy.B_G_R_.glif b/sources/FixelDisplay-Bold.ufo/glyphs/ve-cy.B_G_R_.glif new file mode 100644 index 00000000..edd5e179 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/ve-cy.B_G_R_.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + b-5 + com.fontlab.metricsRight + b + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/ve-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/ve-cy.glif new file mode 100644 index 00000000..cd5732af --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/ve-cy.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/ve-cy.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/ve-cy.ss01.glif new file mode 100644 index 00000000..b72221dd --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/ve-cy.ss01.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/virgo.glif b/sources/FixelDisplay-Bold.ufo/glyphs/virgo.glif new file mode 100644 index 00000000..9fc5d3a3 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/virgo.glif @@ -0,0 +1,224 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =55 + com.fontlab.metricsRight + =35 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/vzmetcomb-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/vzmetcomb-cy.glif new file mode 100644 index 00000000..75a780b2 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/vzmetcomb-cy.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/w.glif b/sources/FixelDisplay-Bold.ufo/glyphs/w.glif new file mode 100644 index 00000000..9fa87cf1 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/w.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/wacute.glif b/sources/FixelDisplay-Bold.ufo/glyphs/wacute.glif new file mode 100644 index 00000000..013ee5f1 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/wacute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + w+acute + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/wcircumflex.glif b/sources/FixelDisplay-Bold.ufo/glyphs/wcircumflex.glif new file mode 100644 index 00000000..3183db57 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/wcircumflex.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + w+circumflex + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/wdieresis.glif b/sources/FixelDisplay-Bold.ufo/glyphs/wdieresis.glif new file mode 100644 index 00000000..1d56c43f --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/wdieresis.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + w+dieresis + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/wecyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/wecyr.glif new file mode 100644 index 00000000..60874a68 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/wecyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + w + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/wgrave.glif b/sources/FixelDisplay-Bold.ufo/glyphs/wgrave.glif new file mode 100644 index 00000000..498103c3 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/wgrave.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + w+grave + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/x.glif b/sources/FixelDisplay-Bold.ufo/glyphs/x.glif new file mode 100644 index 00000000..be7721ae --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/x.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/xatailcyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/xatailcyr.glif new file mode 100644 index 00000000..0c494bbe --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/xatailcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + x + com.fontlab.metricsRight + zhetailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/y.glif b/sources/FixelDisplay-Bold.ufo/glyphs/y.glif new file mode 100644 index 00000000..53ca620a --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/y.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/yacute.glif b/sources/FixelDisplay-Bold.ufo/glyphs/yacute.glif new file mode 100644 index 00000000..bb83b33b --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/yacute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + y+acute + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/yaecyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/yaecyr.glif new file mode 100644 index 00000000..c87a5ca6 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/yaecyr.glif @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + я + com.fontlab.metricsRight + e + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/yatI_otified-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/yatI_otified-cy.glif new file mode 100644 index 00000000..4ddb41f8 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/yatI_otified-cy.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + com.fontlab.metricsRight + yatcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/yatcyr.B_G_R_.glif b/sources/FixelDisplay-Bold.ufo/glyphs/yatcyr.B_G_R_.glif new file mode 100644 index 00000000..63f179e2 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/yatcyr.B_G_R_.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hardsign-cy + com.fontlab.metricsRight + ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/yatcyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/yatcyr.glif new file mode 100644 index 00000000..47c9aec7 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/yatcyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hardsign-cy + com.fontlab.metricsRight + ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/ycircumflex.glif b/sources/FixelDisplay-Bold.ufo/glyphs/ycircumflex.glif new file mode 100644 index 00000000..0cf7a00c --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/ycircumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + y+circumflex + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/ydieresis.glif b/sources/FixelDisplay-Bold.ufo/glyphs/ydieresis.glif new file mode 100644 index 00000000..e2ed4a91 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/ydieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + y+dieresis + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/yen.glif b/sources/FixelDisplay-Bold.ufo/glyphs/yen.glif new file mode 100644 index 00000000..230fc7de --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/yen.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/yen.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/yen.ss01.glif new file mode 100644 index 00000000..e5b79f85 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/yen.ss01.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/yerN_eutral-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/yerN_eutral-cy.glif new file mode 100644 index 00000000..ac2a34a2 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/yerN_eutral-cy.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hardsign-cy + com.fontlab.metricsRight + ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/yeru-cy.accented.glif b/sources/FixelDisplay-Bold.ufo/glyphs/yeru-cy.accented.glif new file mode 100644 index 00000000..d408e645 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/yeru-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ы+acute + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/yeru-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/yeru-cy.glif new file mode 100644 index 00000000..af2545b6 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/yeru-cy.glif @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/yeru-cy.ss01.glif b/sources/FixelDisplay-Bold.ufo/glyphs/yeru-cy.ss01.glif new file mode 100644 index 00000000..d13abb24 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/yeru-cy.ss01.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/yeruB_ackyer-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/yeruB_ackyer-cy.glif new file mode 100644 index 00000000..786100a9 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/yeruB_ackyer-cy.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hardsign-cy + com.fontlab.metricsRight + dotlessi + com.fontlab.recipe + hardsign-cy_dotlessi + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/yi-cy.alt.glif b/sources/FixelDisplay-Bold.ufo/glyphs/yi-cy.alt.glif new file mode 100644 index 00000000..7de38796 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/yi-cy.alt.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.recipe + idieresis + public.markColor + 0.6,0.997,1,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/yi-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/yi-cy.glif new file mode 100644 index 00000000..d63d0d7a --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/yi-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + idieresis + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/ylongdieresiscyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/ylongdieresiscyr.glif new file mode 100644 index 00000000..4924e4c3 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/ylongdieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + yeru-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/yn-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/yn-cy.glif new file mode 100644 index 00000000..a90218b7 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/yn-cy.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |izhitsacyr + com.fontlab.metricsRight + |izhitsacyr + com.fontlab.recipe + izhitsa + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/yuR_eversed-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/yuR_eversed-cy.glif new file mode 100644 index 00000000..6fcdae62 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/yuR_eversed-cy.glif @@ -0,0 +1,20 @@ + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l + com.fontlab.recipe + ю + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/yusB_lended-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/yusB_lended-cy.glif new file mode 100644 index 00000000..350f6973 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/yusB_lended-cy.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + yusbigcyr + com.fontlab.metricsRight + yusbigcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/yusC_losedlittle-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/yusC_losedlittle-cy.glif new file mode 100644 index 00000000..09fa5cf2 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/yusC_losedlittle-cy.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + yuslittlecyr + com.fontlab.metricsRight + yuslittlecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/yusbigcyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/yusbigcyr.glif new file mode 100644 index 00000000..1a6bd248 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/yusbigcyr.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/yusbigiotifiedcyr.B_G_R_.glif b/sources/FixelDisplay-Bold.ufo/glyphs/yusbigiotifiedcyr.B_G_R_.glif new file mode 100644 index 00000000..56f59ef5 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/yusbigiotifiedcyr.B_G_R_.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + com.fontlab.metricsRight + ж + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/yusbigiotifiedcyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/yusbigiotifiedcyr.glif new file mode 100644 index 00000000..288a482c --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/yusbigiotifiedcyr.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + ж + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/yusiotifiedC_losedL_ittle-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/yusiotifiedC_losedL_ittle-cy.glif new file mode 100644 index 00000000..c67c4d33 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/yusiotifiedC_losedL_ittle-cy.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + yusClosedlittle-cy + com.fontlab.recipe + yusClosedlittle-cy+н + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/yuslittlecyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/yuslittlecyr.glif new file mode 100644 index 00000000..177f3981 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/yuslittlecyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + v-5 + com.fontlab.metricsRight + v-5 + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/yuslittleiotifiedcyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/yuslittleiotifiedcyr.glif new file mode 100644 index 00000000..49a9878a --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/yuslittleiotifiedcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + v-10 + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/z.glif b/sources/FixelDisplay-Bold.ufo/glyphs/z.glif new file mode 100644 index 00000000..ffc25128 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/z.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/zacute.glif b/sources/FixelDisplay-Bold.ufo/glyphs/zacute.glif new file mode 100644 index 00000000..f5b74a9d --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/zacute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + z+acute + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/zcaron.glif b/sources/FixelDisplay-Bold.ufo/glyphs/zcaron.glif new file mode 100644 index 00000000..308aecde --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/zcaron.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + z+caron + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/zdotaccent.glif b/sources/FixelDisplay-Bold.ufo/glyphs/zdotaccent.glif new file mode 100644 index 00000000..3d0bbc68 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/zdotaccent.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + z+dotaccent + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/ze-cy.B_G_R_.glif b/sources/FixelDisplay-Bold.ufo/glyphs/ze-cy.B_G_R_.glif new file mode 100644 index 00000000..1eeab893 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/ze-cy.B_G_R_.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |c-12 + com.fontlab.metricsRight + в-5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/ze-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/ze-cy.glif new file mode 100644 index 00000000..7e0b35d2 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/ze-cy.glif @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |c-5 + com.fontlab.metricsRight + в + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/zedieresiscyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/zedieresiscyr.glif new file mode 100644 index 00000000..c16b37b0 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/zedieresiscyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ze-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/zemlya-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/zemlya-cy.glif new file mode 100644 index 00000000..3bbb8f88 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/zemlya-cy.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + z-10 + com.fontlab.metricsRight + z + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/zero.glif b/sources/FixelDisplay-Bold.ufo/glyphs/zero.glif new file mode 100644 index 00000000..57c8bd6b --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/zero.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/zero.osf.glif b/sources/FixelDisplay-Bold.ufo/glyphs/zero.osf.glif new file mode 100644 index 00000000..666dabce --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/zero.osf.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + zero + com.fontlab.metricsRight + zero + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/zero.tf.glif b/sources/FixelDisplay-Bold.ufo/glyphs/zero.tf.glif new file mode 100644 index 00000000..33813642 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/zero.tf.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/zetailcyr.B_S_H_.glif b/sources/FixelDisplay-Bold.ufo/glyphs/zetailcyr.B_S_H_.glif new file mode 100644 index 00000000..e85bc15b --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/zetailcyr.B_S_H_.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + з + com.fontlab.metricsRight + з + com.fontlab.recipe + з + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/zetailcyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/zetailcyr.glif new file mode 100644 index 00000000..3892666d --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/zetailcyr.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + з + com.fontlab.metricsRight + з + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/zhe-cy.B_G_R_.glif b/sources/FixelDisplay-Bold.ufo/glyphs/zhe-cy.B_G_R_.glif new file mode 100644 index 00000000..63a2ae37 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/zhe-cy.B_G_R_.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |k + com.fontlab.metricsRight + k + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/zhe-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/zhe-cy.glif new file mode 100644 index 00000000..5223a5e5 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/zhe-cy.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |k + com.fontlab.metricsRight + k + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/zhebrevecyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/zhebrevecyr.glif new file mode 100644 index 00000000..4f31dbb0 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/zhebrevecyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + zhe-cy+breve + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/zhedieresiscyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/zhedieresiscyr.glif new file mode 100644 index 00000000..de19a6b0 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/zhedieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + zhe-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/zhetailcyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/zhetailcyr.glif new file mode 100644 index 00000000..cf217949 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/zhetailcyr.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ж + com.fontlab.metricsRight + katailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/zhwe-cy.glif b/sources/FixelDisplay-Bold.ufo/glyphs/zhwe-cy.glif new file mode 100644 index 00000000..9bd3bccb --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/zhwe-cy.glif @@ -0,0 +1,87 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + з + com.fontlab.metricsRight + ж + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/glyphs/zjekomicyr.glif b/sources/FixelDisplay-Bold.ufo/glyphs/zjekomicyr.glif new file mode 100644 index 00000000..90190954 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/glyphs/zjekomicyr.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + з-20 + com.fontlab.metricsRight + njekomicyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Bold.ufo/groups.plist b/sources/FixelDisplay-Bold.ufo/groups.plist new file mode 100644 index 00000000..0215e532 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/groups.plist @@ -0,0 +1,2992 @@ + + + + + accent + + grave + acute.case + grave.case + acute + + case + + arrowdown.case + arrowdown.ss01.case + arrowleft.case + arrowleft.ss01.case + arrowright.case + arrowright.ss01.case + arrowup.case + arrowup.ss01.case + backslash.case + bar.case + braceleft.case + braceright.case + bracketleft.case + bracketright.case + brokenbar.case + bullet.case + colon.case + emdash.case + endash.case + exclamdown.case + guillemetleft.case + guillemetright.case + guilsinglleft.case + guilsinglright.case + hyphen.case + parenleft.case + parenright.case + questiondown.case + semicolon.case + at.case + bracketangleleft.case + bracketangleright.case + slash.case + + case_def + + arrowdown + arrowdown.ss01 + arrowleft + arrowleft.ss01 + arrowright + arrowright.ss01 + arrowup + arrowup.ss01 + backslash + bar + braceleft + braceright + bracketleft + bracketright + brokenbar + bullet + colon + emdash + endash + exclamdown + guillemetleft + guillemetright + guilsinglleft + guilsinglright + hyphen + parenleft + parenright + questiondown + semicolon + at + bracketangleleft + bracketangleright + slash + + cpsp + + 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 + Agrave + Aacute + Acircumflex + Atilde + Adieresis + Aring + AE + Ccedilla + Egrave + Eacute + Ecircumflex + Edieresis + Igrave + Iacute + Icircumflex + Idieresis + Eth + Ntilde + Ograve + Oacute + Ocircumflex + Otilde + Odieresis + Oslash + Ugrave + Uacute + Ucircumflex + Udieresis + Yacute + Thorn + Amacron + Abreve + Aogonek + Cacute + Ccircumflex + Cdotaccent + Ccaron + Dcaron + Dcroat + Emacron + Ebreve + Edotaccent + Eogonek + Ecaron + Gcircumflex + Gbreve + Gdotaccent + Gcommaaccent + Hcircumflex + Hbar + Itilde + Imacron + Ibreve + Iogonek + Idotaccent + IJ + Jcircumflex + Kcommaaccent + Lacute + Lcommaaccent + Lcaron + Ldot + Lslash + Nacute + Ncommaaccent + Ncaron + Eng + Omacron + Obreve + Ohungarumlaut + OE + Racute + Rcommaaccent + Rcaron + Sacute + Scircumflex + Scedilla + Scaron + Tcedilla + Tcaron + Tbar + Utilde + Umacron + Ubreve + Uring + Uhungarumlaut + Uogonek + Wcircumflex + Ycircumflex + Ydieresis + Zacute + Zdotaccent + Zcaron + Schwa + Acaron + Gacute + AEacute + Oslashacute + Scommaaccent + Tcommaaccent + Delta + Omega + Iegravecyr + uniF43A + A-cy.accented + E-cy.accented + Ii-cy.accented + O-cy.accented + U-cy.accented + Yeru-cy.accented + Ereversed-cy.accented + Iu-cy.accented + Ia-cy.accented + Io-cy.accented + uniF498 + uniF49A + uniF49C + uniF49E + uniF4C6 + uniF4CC + uniF4D2 + uniF4D4 + uniF4D6 + uniF4D8 + uniF50E + uniF510 + uniF512 + uniF514 + uniF516 + uniF518 + uniF51A + uniF51C + uniF51E + Yeru-cymacron + uniF522 + uniF524 + uniF526 + uniF528 + uniF52A + uniF52C + uniF52E + uniF532 + uniF536 + uniF538 + uniF830 + uniF833 + uniF839 + uniF86F + uniF872 + uniF875 + uniF878 + uniF87B + uniF87E + Io-cy + Djecyr + Gjecyr + E-cy + Dze-cy + I-cy + Yi-cy + Jecyr + Ljecyr + Njecyr + Tshecyr + Kjecyr + Igravecyr + Ushort-cy + Dzhecyr + A-cy + Be-cy + Ve-cy + Ge-cy + De-cy + Ie-cy + Zhe-cy + Ze-cy + Ii-cy + Iishort-cy + Ka-cy + El-cy + Em-cy + En-cy + O-cy + Pe-cy + Er-cy + Es-cy + Te-cy + U-cy + Ef-cy + Ha-cy + Tse-cy + Che-cy + Sha-cy + Shcha-cy + Hardsign-cy + Yeru-cy + Softsign-cy + Ereversed-cy + Iu-cy + Ia-cy + Omegacyr + Yatcyr + Eiotifiedcyr + Yuslittlecyr + Yuslittleiotifiedcyr + Yusbigcyr + Yusbigiotifiedcyr + Ksicyr + Psicyr + Fitacyr + Izhitsacyr + Izhitsagravedblcyr + Ukcyr + Omegaroundcyr + Omegatitlocyr + Otcyr + Koppacyr + Ishortsharptailcyr + Semisoftcyr + Ertickcyr + Gheupturn-cy + Gestrokecyr + Gehookcyr + Zhetailcyr + Zetailcyr + Katailcyr + Kaverticalstrokecyr + Kastrokecyr + Kabashkcyr + Entailcyr + Engecyr + Pehookcyr + Haabkhcyr + Estailcyr + Tetailcyr + Ustraightcyr + Ustraightstrokecyr + Xatailcyr + Tetsecyr + Chetailcyr + Chevertcyr + Shhacyr + Cheabkhcyr + Cheabkhtailcyr + Palochkacyr + Zhebrevecyr + Kahookcyr + Elsharptailcyr + Enhookcyr + Ensharptailcyr + Chekhakascyr + Emsharptailcyr + Abrevecyr + Adieresiscyr + Aiecyr + Iebrevecyr + Schwacyr + Schwadieresiscyr + Zhedieresiscyr + Zedieresiscyr + Dzeabkhcyr + Imacroncyr + Idieresiscyr + Odieresiscyr + Obarcyr + Obardieresiscyr + Ereverseddieresiscyr + Umacroncyr + Udieresiscyr + Uacutedblcyr + Chedieresiscyr + Getailcyr + Ylongdieresiscyr + Gehookstrokecyr + Hahookcyr + Hastrokecyr + Dekomicyr + Djekomicyr + Zjekomicyr + Dzjekomicyr + Ljekomicyr + Njekomicyr + Sjekomicyr + Tjekomicyr + Reversedzecyr + Elhookcyr + Lhacyr + Rhacyr + Yaecyr + Qacyr + Wecyr + Kaaleutcyr + Elmiddlehookcyr + Enmiddlehookcyr + Petailcyr + Shhatailcyr + Enhookleftcyr + Dzzhecyr + Dchecyr + Eltailcyr + Wgrave + Wacute + Wdieresis + Germandbls + uni1EBC + Zemlya-cy + Dzelo-cy + DzeReversed-cy + Iota-cy + Djerv-cy + UkMonograph-cy + OmegaBroad-cy + YerNeutral-cy + YeruBackYer-cy + YatIotified-cy + YuReversed-cy + IotifiedA-cy + YusClosedlittle-cy + YusBlended-cy + YusiotifiedClosedLittle-cy + Yn-cy + TseReversed-cy + DeSoft-cy + ElSoft-cy + EmSoft-cy + OMonocular-cy + OBinocular-cy + ODoubleMonocular-cy + Dwe-cy + Dzwe-cy + Zhwe-cy + Cche-cy + Dzze-cy + TeWithMiddleHook-cy + Twe-cy + Tswe-cy + Tsse-cy + Tche-cy + Hwe-cy + Shwe-cy + DoubleO-cy + CrossedO-cy + A-cy.ss01 + A.ss01 + AE.ss01 + Aacute.ss01 + Abreve.ss01 + Acircumflex.ss01 + Adieresis.ss01 + Agrave.ss01 + Amacron.ss01 + Aogonek.ss01 + Aring.ss01 + Atilde.ss01 + Em-cy.ss01 + Eng.ss01 + G.ss01 + Gacute.ss01 + Gbreve.ss01 + Gcircumflex.ss01 + Gcommaaccent.ss01 + Gdotaccent.ss01 + Ha-cy.ss01 + Ia-cy.ss01 + J.ss01 + Jcircumflex.ss01 + K.ss01 + Ka-cy.ss01 + Kcommaaccent.ss01 + M.ss01 + N.ss01 + Nacute.ss01 + Ncaron.ss01 + Ncommaaccent.ss01 + Ntilde.ss01 + Q.ss01 + U-cy.ss01 + Ushort-cy.ss01 + V.ss01 + W.ss01 + Wacute.ss01 + Wcircumflex.ss01 + Wdieresis.ss01 + Wgrave.ss01 + X.ss01 + Y.ss01 + Yacute.ss01 + Ycircumflex.ss01 + Ydieresis.ss01 + Z.ss01 + Zacute.ss01 + Zcaron.ss01 + Zdotaccent.ss01 + Zetailcyr.BSH + Gestrokecyr.BSH + Estailcyr.BSH + Estailcyr.CHU + Zhe-cy.ss01 + + locl.SRB + + be-cy.SRB + iegravecyr.SRB + igravecyr.SRB + + loclSRB_def + + be-cy + iegravecyr + igravecyr + + locl_BGR + + De-cy.BGR + Ef-cy.BGR + El-cy.BGR + de-cy.BGR + eiotifiedcyr.BGR + el-cy.BGR + ge-cy.BGR + hardsign-cy.BGR + ii-cy.BGR + iishort-cy.BGR + iotifieda-cy.BGR + iu-cy.BGR + ka-cy.BGR + pe-cy.BGR + sha-cy.BGR + shcha-cy.BGR + softsign-cy.BGR + te-cy.BGR + tse-cy.BGR + ve-cy.BGR + yatcyr.BGR + yusbigiotifiedcyr.BGR + ze-cy.BGR + zhe-cy.BGR + + locl_def + + De-cy + Ef-cy + El-cy + de-cy + eiotifiedcyr + el-cy + ge-cy + hardsign-cy + ii-cy + iishort-cy + iotifieda-cy + iu-cy + ka-cy + pe-cy + sha-cy + shcha-cy + softsign-cy + te-cy + tse-cy + ve-cy + yatcyr + yusbigiotifiedcyr + ze-cy + zhe-cy + + pics + + neptune + leo + virgo + bishopwhite + knightwhite + rookblack + bishopblack + knightblack + heartwhite + diamondwhite-misc + spadewhite + heart + clubwhite + crossedswords + flower + floretteblack + florettewhite + floretteoutlinedpetalledblackeight + + pics_def + + A + B + C + D + E + F + G + H + I + J + K + L + M + N + O + P + Q + R + + public.kern1.A.ss012 + + A-cy.ss01 + A.ss01 + Aacute.ss01 + Abreve.ss01 + Acircumflex.ss01 + Adieresis.ss01 + Agrave.ss01 + Amacron.ss01 + Aogonek.ss01 + Aring.ss01 + Atilde.ss01 + + public.kern1.A2 + + A + A-cy + A-cy.accented + Aacute + Abreve + Abrevecyr + Acaron + Acircumflex + Adieresis + Adieresiscyr + Agrave + Amacron + Aogonek + Aring + Atilde + De-cy.BGR + Delta + El-cy.BGR + IotifiedA-cy + Yn-cy + YusClosedlittle-cy + YusiotifiedClosedLittle-cy + Yuslittlecyr + Yuslittleiotifiedcyr + uniF50E + uniF830 + + public.kern1.AE + + AE + AE.ss01 + AEacute + Aiecyr + + public.kern1.C1 + + C + Cacute + Ccaron + Ccedilla + Ccircumflex + Cdotaccent + E-cy + Eiotifiedcyr + Es-cy + Estailcyr + Estailcyr.BSH + Estailcyr.CHU + Reversedzecyr + uniF45D + uniF526 + uniF538 + uniF875 + + public.kern1.Decyr + + Chetailcyr + De-cy + Dwe-cy + Dzze-cy + Elsharptailcyr + Eltailcyr + Emsharptailcyr + Ensharptailcyr + Entailcyr + Ishortsharptailcyr + Petailcyr + Shcha-cy + Shwe-cy + Tetsecyr + Tse-cy + Tswe-cy + uniF87B + + public.kern1.E1 + + E + E-cy.accented + Eacute + Ebreve + Ecaron + Ecircumflex + Edieresis + Edotaccent + Egrave + Emacron + Eogonek + Ie-cy + Iebrevecyr + Io-cy + Io-cy.accented + Yaecyr + uni1EBC + uniF510 + uniF512 + uniF514 + uniF833 + + public.kern1.G.ss01 + + G.ss01 + Gacute.ss01 + Gbreve.ss01 + Gcircumflex.ss01 + Gcommaaccent.ss01 + Gdotaccent.ss01 + + public.kern1.G1 + + G + Gacute + Gbreve + Gcircumflex + Gcommaaccent + Gdotaccent + + public.kern1.Ge-cy + + DeSoft-cy + ElSoft-cy + EmSoft-cy + Engecyr + Ge-cy + Gehookstrokecyr + Gestrokecyr + Gestrokecyr.BSH + Getailcyr + Gheupturn-cy + Gjecyr + TseReversed-cy + YeruBackYer-cy + uniF872 + + public.kern1.H + + Eng + Eng.ss01 + H + Hbar + Hcircumflex + I + Iacute + Ibreve + Icircumflex + Idieresis + Idotaccent + Igrave + Imacron + Iogonek + Itilde + J.ss01 + Jcircumflex.ss01 + M + M.ss01 + N + N.ss01 + Nacute + Nacute.ss01 + Ncaron + Ncaron.ss01 + Ncommaaccent + Ncommaaccent.ss01 + Ntilde + Ntilde.ss01 + + public.kern1.Hardcyr + + Hardsign-cy + Ljecyr + Njecyr + Semisoftcyr + Shhacyr + Softsign-cy + YatIotified-cy + Yatcyr + YerNeutral-cy + uniF478 + + public.kern1.J1 + + J + Jcircumflex + Jecyr + + public.kern1.K + + K + K.ss01 + Ka-cy + Ka-cy.ss01 + Kaaleutcyr + Kabashkcyr + Kastrokecyr + Kcommaaccent + Kcommaaccent.ss01 + Kjecyr + uniF86F + + public.kern1.L + + L + Lacute + Lcaron + Lcommaaccent + Lslash + + public.kern1.O + + Cheabkhcyr + Cheabkhtailcyr + CrossedO-cy + D + Dcaron + Dcroat + DoubleO-cy + Ef-cy + Ef-cy.BGR + Ereversed-cy + Ereversed-cy.accented + Ereverseddieresiscyr + Eth + Fitacyr + Iu-cy + Iu-cy.accented + O + O-cy + O-cy.accented + OBinocular-cy + ODoubleMonocular-cy + OMonocular-cy + Oacute + Obarcyr + Obardieresiscyr + Obreve + Ocircumflex + Odieresis + Odieresiscyr + Ograve + Ohungarumlaut + Omacron + Omega + Omegaroundcyr + Oslash + Oslashacute + Otilde + Q + Qacyr + Schwa + Schwacyr + Schwadieresiscyr + Sjekomicyr + uniF498 + uniF49A + uniF49C + uniF4D2 + uniF4D6 + uniF518 + uniF51A + uniF51C + uniF51E + uniF522 + uniF524 + uniF52C + uniF52E + uniF839 + + public.kern1.Oslash.alt + + Ha-cy + Ha-cy.ss01 + Hahookcyr + Lhacyr + Rhacyr + X + X.ss01 + uniF878 + + public.kern1.P + + Er-cy + Ertickcyr + P + uniF4D4 + + public.kern1.R + + R + Racute + Rcaron + Rcommaaccent + + public.kern1.S1 + + Dzwe-cy + S + Sacute + Scaron + Scedilla + Scircumflex + Scommaaccent + + public.kern1.T1 + + Koppacyr + T + Tcaron + Tcedilla + Tcommaaccent + Te-cy + Tetailcyr + Tsse-cy + Twe-cy + + public.kern1.U1 + + OmegaBroad-cy + Omegacyr + Omegatitlocyr + Otcyr + Psicyr + U + Uacute + Ubreve + Ucircumflex + Udieresis + Ugrave + Uhungarumlaut + Umacron + Uogonek + Uring + Utilde + + public.kern1.Ucyr1 + + U-cy + U-cy.accented + U-cy.ss01 + Uacutedblcyr + Udieresiscyr + Umacroncyr + Ushort-cy + Ushort-cy.ss01 + uniF4CC + + public.kern1.V + + Izhitsacyr + Izhitsagravedblcyr + V + V.ss01 + + public.kern1.W.ss011 + + W.ss01 + Wacute.ss01 + Wcircumflex.ss01 + Wdieresis.ss01 + Wgrave.ss01 + + public.kern1.W1 + + W + Wacute + Wcircumflex + Wdieresis + Wecyr + Wgrave + + public.kern1.Y.ss011 + + Y.ss01 + Yacute.ss01 + Ycircumflex.ss01 + Ydieresis.ss01 + + public.kern1.Y1 + + Ustraightcyr + Ustraightstrokecyr + Y + Yacute + Ycircumflex + Ydieresis + uniF43A + + public.kern1.Yacyr + + Cche-cy + Che-cy + Chedieresiscyr + Chekhakascyr + Chevertcyr + Dekomicyr + Elhookcyr + Em-cy + En-cy + Enhookcyr + Enhookleftcyr + I-cy + Ia-cy + Ia-cy.accented + Ia-cy.ss01 + Idieresiscyr + Ii-cy + Ii-cy.accented + Iishort-cy + Imacroncyr + Palochkacyr + Pe-cy + Sha-cy + Tche-cy + Yeru-cy + Yeru-cy.accented + Yeru-cymacron + Yi-cy + Ylongdieresiscyr + YuReversed-cy + palochkacyr + uniF45E + uniF45F + uniF4C6 + uniF4D8 + uniF528 + uniF52A + uniF532 + uniF536 + uniF87E + + public.kern1.Z1 + + Dzelo-cy + Z + Z.ss01 + Zacute + Zacute.ss01 + Zcaron + Zcaron.ss01 + Zdotaccent + Zdotaccent.ss01 + Zemlya-cy + + public.kern1.Ze-cy + + Dzeabkhcyr + Ksicyr + Ze-cy + Zedieresiscyr + Zetailcyr + Zetailcyr.BSH + uniF516 + + public.kern1.Zhe-cy + + Dzzhecyr + Katailcyr + Kaverticalstrokecyr + Xatailcyr + YusBlended-cy + Yusbigcyr + Yusbigiotifiedcyr + Zhe-cy + Zhebrevecyr + Zhedieresiscyr + Zhetailcyr + Zhwe-cy + + public.kern1.a1 + + a + aacute + abreve + acaron + acircumflex + adieresis + agrave + amacron + aogonek + aring + atilde + + public.kern1.c1 + + c + cacute + ccaron + ccedilla + ccircumflex + cdotaccent + e-cy + e-cy.hist + eiotifiedcyr + eiotifiedcyr.BGR + es-cy + estailcyr + estailcyr.BSH + estailcyr.CHU + koppacyr + reversedzecyr + sjekomicyr + uni1C83 + uniF475 + uniF527 + uniF539 + uniF876 + + public.kern1.comma1 + + comma + quotedblbase + quotesinglbase + + public.kern1.copyright1 + + copyright + registered + + public.kern1.dcaron + + dcaron + dcaron.ss01 + lcaron + + public.kern1.decyr1 + + chetailcyr + dchecyr + de-cy + de-cy.ss01 + dwe-cy + dzze-cy + elsharptailcyr + eltailcyr + emsharptailcyr + ensharptailcyr + entailcyr + ishortsharptailcyr + petailcyr + shcha-cy + shcha-cy.BGR + shhatailcyr + shwe-cy + tetsecyr + tse-cy + tse-cy.BGR + tswe-cy + uniF87C + + public.kern1.e.ss011 + + e.ss01 + eacute.ss01 + ebreve.ss01 + ecaron.ss01 + ecircumflex.ss01 + edieresis.ss01 + edotaccent.ss01 + egrave.ss01 + emacron.ss01 + eogonek.ss01 + oe.ss01 + + public.kern1.e1 + + ae + aeacute + aiecyr + cheabkhcyr + cheabkhtailcyr + e + e-cy.accented + eacute + ebreve + ecaron + ecircumflex + edieresis + edotaccent + egrave + emacron + eogonek + ie-cy + iebrevecyr + iegravecyr + iegravecyr.SRB + io-cy + io-cy.accented + uni1EBD + uniF511 + uniF513 + uniF515 + uniF834 + yaecyr + + public.kern1.el-cy.BGR + + el-cy.BGR + iotifieda-cy + iotifieda-cy.BGR + uni1C81 + yn-cy + yusClosedlittle-cy + yusiotifiedClosedLittle-cy + yuslittlecyr + yuslittleiotifiedcyr + + public.kern1.emdash1 + + emdash + endash + hyphen + + public.kern1.f1 + + f + f_f + + public.kern1.fi + + f_f_i + fi + + public.kern1.five1 + + five + five.tf + + public.kern1.four1 + + four + four.tf + + public.kern1.g.ss011 + + g.ss01 + gacute.ss01 + gbreve.ss01 + gcircumflex.ss01 + gcommaaccent.ss01 + gdotaccent.ss01 + + public.kern1.g1 + + g + gacute + gbreve + gcircumflex + gcommaaccent + gdotaccent + + public.kern1.gecyr + + deSoft-cy + elSoft-cy + emSoft-cy + engecyr + ge-cy + gehookstrokecyr + gestrokecyr + gestrokecyr.BSH + getailcyr + gheupturn-cy + gjecyr + + public.kern1.guillemotright1 + + guillemetright + guilsinglright + + public.kern1.hardcyr + + Tjekomicyr + djekomicyr + elmiddlehookcyr + enmiddlehookcyr + gehookcyr + hardsign-cy + hardsign-cy.BGR + hardsign-cy.ss01 + ljecyr + ljecyr.ss01 + ljekomicyr + njecyr + njecyr.ss01 + njekomicyr + pehookcyr + semisoftcyr + softsign-cy + softsign-cy.BGR + softsign-cy.ss01 + tewithmiddlehook-cy + tjekomicyr + uni1C86 + uni1C87 + uniF479 + yatIotified-cy + yatcyr + yatcyr.BGR + yerNeutral-cy + zjekomicyr + + public.kern1.i1 + + Djekomicyr + Ljekomicyr + Njekomicyr + Zjekomicyr + i + i-cy + iacute + icircumflex + igrave + imacron + iogonek + itilde + uniF476 + yi-cy.alt + + public.kern1.icyr1 + + cche-cy + che-cy + chedieresiscyr + chekhakascyr + chevertcyr + de-cy.BGR + el-cy + elhookcyr + em-cy + en-cy + enhookcyr + enhookleftcyr + ia-cy + ia-cy.accented + idieresiscyr + igravecyr + ii-cy + ii-cy.accented + iishort-cy + imacroncyr + mu + pe-cy + psicyr + q + qacyr + sha-cy + sha-cy.BGR + tche-cy + tseReversed-cy + ubreve + uni1C85 + uniF4C7 + uniF4D9 + uniF521 + uniF529 + uniF52B + uniF533 + uniF537 + uniF873 + uniF87F + utilde + yeru-cy + yeru-cy.accented + yeru-cy.ss01 + yeruBackyer-cy + ylongdieresiscyr + yuReversed-cy + + public.kern1.j1 + + ij + j + jcircumflex + jdotless + + public.kern1.k + + k + ka-cy + ka-cy.BGR + kaaleutcyr + kabashkcyr + kastrokecyr + kcommaaccent + kgreenlandic + kjecyr + uniF870 + + public.kern1.l + + f_f_l + fl + l + lacute + lcommaaccent + + public.kern1.l.ss011 + + Iota-cy + iota-cy + l.ss01 + lacute.ss01 + lcommaaccent.ss01 + + public.kern1.n + + Djecyr + Elmiddlehookcyr + Enmiddlehookcyr + Gehookcyr + Hwe-cy + Kahookcyr + Pehookcyr + Shhatailcyr + TeWithMiddleHook-cy + Tshecyr + a-cy.accented + a-cy.ss01 + a.ss01 + aacute.ss01 + abreve.ss01 + abrevecyr + acircumflex.ss01 + adieresis.ss01 + adieresiscyr + agrave.ss01 + aogonek.ss01 + aring.ss01 + atilde.ss01 + djecyr + el-cy.ss01 + h + hbar + hcircumflex + hwe-cy + ia-cy.ss01 + iotifieda-cy.hist + m + n + nacute + napostrophe + ncaron + ncommaaccent + ntilde + pe-cy.BGR + q.ss01 + shhacyr + te-cy.BGR + tshecyr + uniF49E + uniF49F + uniF50F + uniF831 + + public.kern1.numero + + numero + numero.ss01 + + public.kern1.o1 + + b + b.ss01 + be-cy.SRB + crossedo-cy + ef-cy + er-cy + er-cy.ss01 + ereversed-cy + ereversed-cy.accented + ereverseddieresiscyr + ertickcyr + eturned + fitacyr + iu-cy + iu-cy.BGR + iu-cy.accented + o + o-cy + o-cy.accented + oBinocular-cy + oDoubleMonocular-cy + oMonocular-cy + oacute + obarcyr + obardieresiscyr + obreve + ocircumflex + odieresis + odieresiscyr + ograve + ohungarumlaut + omacron + omegaBroad-cy + omegaroundcyr + omegatitlocyr + oslashacute + otilde + p + p.ss01 + schwacyr + schwadieresiscyr + thorn + uni1C82 + uniF499 + uniF49D + uniF4D3 + uniF4D5 + uniF4D7 + uniF519 + uniF51B + uniF51D + uniF51F + uniF523 + uniF525 + uniF52D + uniF52F + uniF83A + + public.kern1.period1 + + ellipsis + period + + public.kern1.quotedbl1 + + quotedbl + quotesingle + + public.kern1.quoteleft1 + + quotedblleft + quoteleft + + public.kern1.quoteright1 + + apostrophemod + minute + quotedblright + quoteright + second + + public.kern1.s1 + + dzwe-cy + s + sacute + scaron + scedilla + scircumflex + scommaaccent + + public.kern1.t.ss011 + + t.ss01 + tcedilla.ss01 + tcommaaccent.ss01 + + public.kern1.t1 + + t + tcaron + tcedilla + tcommaaccent + + public.kern1.te-cy + + te-cy + tetailcyr + tsse-cy + twe-cy + + public.kern1.u1 + + igravecyr.SRB + ii-cy.BGR + iishort-cy.BGR + pe-cy.SRB + te-cy.SRB + u + uacute + ucircumflex + udieresis + ugrave + uhungarumlaut + umacron + uogonek + uring + + public.kern1.uni0435.ss011 + + ie-cy.ss01 + io-cy.ss01 + + public.kern1.v + + izhitsacyr + izhitsagravedblcyr + v + + public.kern1.w1 + + omegacyr + otcyr + w + wacute + wcircumflex + wdieresis + wecyr + wgrave + + public.kern1.x + + ha-cy + hahookcyr + lhacyr + rhacyr + uniF879 + x + + public.kern1.y1 + + Ukcyr + u-cy + u-cy.accented + uacutedblcyr + udieresiscyr + ukcyr + umacroncyr + uniF43B + uniF4CD + ushort-cy + ustraightcyr + ustraightstrokecyr + y + yacute + ycircumflex + ydieresis + + public.kern1.z1 + + dzelo-cy + z + zacute + zcaron + zdotaccent + zemlya-cy + + public.kern1.ze-cy + + dzeabkhcyr + ksicyr + uniF517 + ze-cy + ze-cy.BGR + zedieresiscyr + zetailcyr + zetailcyr.BSH + + public.kern1.zhe-cy + + dzzhecyr + katailcyr + kaverticalstrokecyr + xatailcyr + yusBlended-cy + yusbigcyr + yusbigiotifiedcyr + yusbigiotifiedcyr.BGR + zhe-cy + zhe-cy.BGR + zhebrevecyr + zhedieresiscyr + zhetailcyr + zhwe-cy + + public.kern2.A.ss01 + + A.ss01 + AE.ss01 + Aacute.ss01 + Acircumflex.ss01 + Adieresis.ss01 + Agrave.ss01 + Amacron.ss01 + Aogonek.ss01 + Atilde.ss01 + + public.kern2.A.ss012 + + A-cy.ss01 + Abreve.ss01 + Aring.ss01 + + public.kern2.A2 + + A + A-cy + A-cy.accented + AE + AEacute + Aacute + Abreve + Abrevecyr + Acaron + Acircumflex + Adieresis + Adieresiscyr + Agrave + Aiecyr + Amacron + Aogonek + Aring + Atilde + De-cy.BGR + Delta + El-cy.BGR + Yn-cy + YusClosedlittle-cy + Yuslittlecyr + uniF50E + uniF830 + + public.kern2.B + + B + D + Dcaron + E + Eacute + Ecaron + Ecircumflex + Edieresis + Edotaccent + Egrave + Emacron + Eogonek + F + H + Hbar + Hcircumflex + I + Iacute + Ibreve + Icircumflex + Idieresis + Idotaccent + Igrave + Imacron + Iogonek + Itilde + K + K.ss01 + Kcommaaccent + Kcommaaccent.ss01 + L + Lacute + Lcaron + Lcommaaccent + Ldot + M + N + N.ss01 + Nacute + Nacute.ss01 + Ncaron + Ncaron.ss01 + Ncommaaccent + Ncommaaccent.ss01 + Ntilde + Ntilde.ss01 + P + R + Racute + Rcaron + Rcommaaccent + Thorn + uni1EBC + + public.kern2.Che-cy + + Cche-cy + Che-cy + Chedieresiscyr + Chekhakascyr + Chetailcyr + Chevertcyr + uniF4C6 + uniF87E + + public.kern2.De-cy + + Dchecyr + De-cy + DeSoft-cy + Dwe-cy + Dzze-cy + Dzzhecyr + TseReversed-cy + + public.kern2.El-cy + + El-cy + ElSoft-cy + Elhookcyr + Elmiddlehookcyr + Elsharptailcyr + Eltailcyr + Lhacyr + Ljekomicyr + uniF872 + + public.kern2.Eth + + Dcroat + Eth + Gestrokecyr + + public.kern2.G + + C + Cacute + Ccaron + Ccedilla + Ccircumflex + Cdotaccent + CrossedO-cy + DoubleO-cy + E-cy + Ef-cy.BGR + Es-cy + Estailcyr + Estailcyr.BSH + Estailcyr.CHU + Fitacyr + G + G.ss01 + Gacute + Gacute.ss01 + Gbreve + Gbreve.ss01 + Gcircumflex + Gcircumflex.ss01 + Gcommaaccent + Gcommaaccent.ss01 + Gdotaccent + Gdotaccent.ss01 + Haabkhcyr + Koppacyr + O + O-cy + O-cy.accented + OBinocular-cy + ODoubleMonocular-cy + OE + OMonocular-cy + Oacute + Obarcyr + Obardieresiscyr + Obreve + Ocircumflex + Odieresis + Odieresiscyr + Ograve + Ohungarumlaut + Omacron + Omegaroundcyr + Oslash + Otilde + Q + Q.ss01 + Qacyr + Schwacyr + Schwadieresiscyr + Sjekomicyr + Ukcyr + YuReversed-cy + uniF45D + uniF49A + uniF49C + uniF4D2 + uniF518 + uniF51A + uniF51C + uniF51E + uniF526 + uniF839 + uniF875 + + public.kern2.Gecyr + + Be-cy + E-cy.accented + Eiotifiedcyr + Em-cy + EmSoft-cy + Emsharptailcyr + En-cy + Engecyr + Enhookcyr + Enhookleftcyr + Enmiddlehookcyr + Ensharptailcyr + Entailcyr + Er-cy + Ertickcyr + Gehookcyr + Gestrokecyr.BSH + Getailcyr + Gheupturn-cy + Gjecyr + Hwe-cy + I-cy + Iebrevecyr + Ii-cy + Ii-cy.accented + Io-cy.accented + IotifiedA-cy + Iu-cy.accented + Ka-cy + Kaaleutcyr + Kahookcyr + Katailcyr + Kaverticalstrokecyr + Kjecyr + Njekomicyr + Palochkacyr + Pe-cy + Pehookcyr + Petailcyr + Rhacyr + Shhacyr + Shhatailcyr + Shwe-cy + Tswe-cy + Ve-cy + Yeru-cy.accented + Yeru-cymacron + Yi-cy + Ylongdieresiscyr + Yusbigiotifiedcyr + YusiotifiedClosedLittle-cy + Yuslittleiotifiedcyr + palochkacyr + uniF45E + uniF45F + uniF498 + uniF4D4 + uniF510 + uniF512 + uniF514 + uniF52C + uniF52E + uniF532 + uniF536 + uniF833 + uniF86F + uniF87B + + public.kern2.Ia-cy + + Ia-cy + Ia-cy.accented + Yaecyr + uniF4D8 + uniF528 + uniF52A + + public.kern2.Iishort-cy + + Idieresiscyr + Iishort-cy + Imacroncyr + Ishortsharptailcyr + + public.kern2.J + + J + Jcircumflex + Jecyr + + public.kern2.Oslash.alt + + Ha-cy.ss01 + Hahookcyr + X + X.ss01 + Xatailcyr + uniF878 + + public.kern2.S + + Dzwe-cy + S + Sacute + Scaron + Scedilla + Scircumflex + Scommaaccent + + public.kern2.T + + Djecyr + T + Tcaron + Tcedilla + Tche-cy + Tcommaaccent + Te-cy + TeWithMiddleHook-cy + Tetailcyr + Tetsecyr + Tjekomicyr + Tshecyr + Tsse-cy + Twe-cy + + public.kern2.U + + Iota-cy + OmegaBroad-cy + Omegacyr + Omegatitlocyr + Otcyr + Psicyr + U + Uacute + Ubreve + Ucircumflex + Udieresis + Ugrave + Uhungarumlaut + Umacron + Uogonek + Uring + Utilde + + public.kern2.Ucyr.ss01 + + U-cy.accented + U-cy.ss01 + Uacutedblcyr + Udieresiscyr + Umacroncyr + Ushort-cy.ss01 + uniF4CC + + public.kern2.V + + Izhitsacyr + Izhitsagravedblcyr + V + V.ss01 + + public.kern2.W + + W + W.ss01 + Wacute + Wacute.ss01 + Wcircumflex + Wcircumflex.ss01 + Wdieresis + Wdieresis.ss01 + Wecyr + Wgrave + Wgrave.ss01 + + public.kern2.Y + + Ustraightcyr + Ustraightstrokecyr + Y + Y.ss01 + Yacute + Yacute.ss01 + Ycircumflex + Ycircumflex.ss01 + Ydieresis + Ydieresis.ss01 + uniF43A + + public.kern2.Z + + Dzelo-cy + Z + Z.ss01 + Zacute + Zacute.ss01 + Zcaron + Zcaron.ss01 + Zdotaccent + Zdotaccent.ss01 + Zemlya-cy + + public.kern2.Ze-cy1 + + Dzeabkhcyr + Ksicyr + Ze-cy + Zedieresiscyr + Zetailcyr + Zetailcyr.BSH + Zhwe-cy + uniF516 + + public.kern2.Zhe-cy1 + + YusBlended-cy + Yusbigcyr + Zhe-cy + Zhebrevecyr + Zhedieresiscyr + Zhetailcyr + + public.kern2.a + + a + a-cy + a-cy.accented + aacute + abreve + abrevecyr + acaron + acircumflex + adieresis + adieresiscyr + ae + aeacute + agrave + aiecyr + amacron + aogonek + aring + atilde + uniF50F + uniF831 + + public.kern2.acute.case + + acute.case + hungarumlaut.case + + public.kern2.che-cy + + cche-cy + che-cy + chedieresiscyr + chekhakascyr + chetailcyr + chevertcyr + uniF4C7 + uniF87F + + public.kern2.comma + + comma + quotedblbase + quotesinglbase + + public.kern2.copyright + + copyright + registered + + public.kern2.decyr.ss01 + + de-cy.ss01 + deSoft-cy + dwe-cy + dzze-cy + dzzhecyr + tseReversed-cy + + public.kern2.el-cy + + el-cy + el-cy.ss01 + elSoft-cy + elhookcyr + elmiddlehookcyr + elsharptailcyr + eltailcyr + lhacyr + ljecyr.ss01 + ljekomicyr + uniF873 + + public.kern2.el-cy.BGR1 + + el-cy.BGR + uni1C81 + yn-cy + yusClosedlittle-cy + yuslittlecyr + + public.kern2.emdash + + emdash + endash + hyphen + + public.kern2.f + + f + f_f + f_f_i + f_f_l + fi + fl + gestrokecyr + + public.kern2.f_f.ss01 + + f_f.ss01 + f_f_i.ss01 + f_f_l.ss01 + + public.kern2.fi.ss01 + + fi.ss01 + fl.ss01 + + public.kern2.five + + five + five.tf + + public.kern2.four + + four + four.tf + + public.kern2.g + + g + gacute + gbreve + gcircumflex + gcommaaccent + gdotaccent + + public.kern2.g.ss01 + + g.ss01 + gacute.ss01 + gbreve.ss01 + gcircumflex.ss01 + gcommaaccent.ss01 + gdotaccent.ss01 + + public.kern2.guillemotleft + + guillemetleft + guilsinglleft + + public.kern2.guillemotright + + guillemetright + guilsinglright + + public.kern2.h + + eiotifiedcyr.BGR + h + hcircumflex + hwe-cy + iotifieda-cy.BGR + iu-cy.BGR + k + ka-cy.BGR + kcommaaccent + l + lacute + lcaron + lcommaaccent + ldot + shhacyr + shhatailcyr + ve-cy.BGR + yatcyr.BGR + yusbigiotifiedcyr.BGR + + public.kern2.i1 + + i + i-cy + iacute + icircumflex + igrave + imacron + iogonek + itilde + uniF476 + yi-cy.alt + + public.kern2.ia-cy + + ia-cy + ia-cy.accented + ia-cy.ss01 + uniF4D9 + uniF529 + uniF52B + yaecyr + + public.kern2.j + + enhookleftcyr + j + jcircumflex + jdotless + + public.kern2.l.ss01 + + l.ss01 + lacute.ss01 + lcaron.ss01 + lcommaaccent.ss01 + ldot.ss01 + + public.kern2.m + + eiotifiedcyr + em-cy + emSoft-cy + emsharptailcyr + en-cy + eng + engecyr + enhookcyr + enmiddlehookcyr + ensharptailcyr + entailcyr + er-cy + er-cy.ss01 + ertickcyr + ge-cy + gehookcyr + gehookstrokecyr + gestrokecyr.BSH + getailcyr + gheupturn-cy + gjecyr + idieresiscyr + idotless + igravecyr + ii-cy + ii-cy.accented + iishort-cy + imacroncyr + iotifieda-cy + ishortsharptailcyr + iu-cy + iu-cy.accented + ka-cy + kaaleutcyr + kahookcyr + katailcyr + kaverticalstrokecyr + kgreenlandic + kjecyr + m + mu + n + nacute + ncaron + ncommaaccent + njecyr.ss01 + njekomicyr + ntilde + p + p.ss01 + pe-cy + pe-cy.BGR + pehookcyr + petailcyr + psicyr + r + racute + rcaron + rcommaaccent + rhacyr + sha-cy + shcha-cy + shwe-cy + softsign-cy + softsign-cy.BGR + softsign-cy.ss01 + te-cy.BGR + tse-cy + tswe-cy + uni1C85 + uniF499 + uniF4D5 + uniF521 + uniF52D + uniF52F + uniF533 + uniF537 + uniF870 + uniF87C + ve-cy + ve-cy.ss01 + yatIotified-cy + yeru-cy + yeru-cy.accented + yeru-cy.ss01 + ylongdieresiscyr + yusbigiotifiedcyr + yusiotifiedClosedLittle-cy + yuslittleiotifiedcyr + + public.kern2.o + + Dekomicyr + Djekomicyr + a-cy.ss01 + a.ss01 + aacute.ss01 + abreve.ss01 + acircumflex.ss01 + adieresis.ss01 + agrave.ss01 + amacron.ss01 + aogonek.ss01 + aring.ss01 + atilde.ss01 + c + cacute + ccaron + ccedilla + ccircumflex + cdotaccent + cent + crossedo-cy + d + d.ss01 + dcaron + dcaron.ss01 + dcroat + dcroat.ss01 + de-cy.BGR + dekomicyr + djekomicyr + e + e-cy + e-cy.accented + e-cy.hist + e.ss01 + eacute + eacute.ss01 + ebreve + ebreve.ss01 + ecaron + ecaron.ss01 + ecircumflex + ecircumflex.ss01 + edieresis + edieresis.ss01 + edotaccent + edotaccent.ss01 + ef-cy + egrave + egrave.ss01 + emacron + emacron.ss01 + eogonek + eogonek.ss01 + es-cy + estailcyr + estailcyr.BSH + estailcyr.CHU + eth + eturned + fitacyr + haabkhcyr + ie-cy + ie-cy.ss01 + iebrevecyr + iegravecyr + iegravecyr.SRB + io-cy + io-cy.accented + io-cy.ss01 + koppacyr + o + o-cy + o-cy.accented + oBinocular-cy + oDoubleMonocular-cy + oMonocular-cy + oacute + obarcyr + obardieresiscyr + obreve + ocircumflex + odieresis + odieresiscyr + oe.ss01 + ograve + ohungarumlaut + omacron + omegaBroad-cy + omegaroundcyr + omegatitlocyr + oslashacute + otilde + q + q.ss01 + qacyr + schwacyr + schwadieresiscyr + sjekomicyr + ukcyr + uni1C82 + uni1C83 + uni1EBD + uniF475 + uniF49D + uniF4D3 + uniF511 + uniF513 + uniF515 + uniF519 + uniF51B + uniF51D + uniF51F + uniF527 + uniF834 + uniF83A + uniF876 + yuReversed-cy + + public.kern2.percent + + percent + perthousand + + public.kern2.period + + ellipsis + period + + public.kern2.quotedbl + + quotedbl + quotesingle + + public.kern2.quoteleft + + quotedblleft + quoteleft + + public.kern2.quoteright + + apostrophemod + minute + quotedblright + quoteright + second + + public.kern2.s + + dzwe-cy + s + sacute + scaron + scedilla + scircumflex + scommaaccent + + public.kern2.t + + t + t.ss01 + tbar.ss01 + tcaron + tcaron.ss01 + tcedilla + tcedilla.ss01 + tcommaaccent + tcommaaccent.ss01 + + public.kern2.tecyr + + tche-cy + te-cy.ss01 + tetailcyr + tetsecyr + tewithmiddlehook-cy + tjekomicyr + tsse-cy + twe-cy + + public.kern2.u + + igravecyr.SRB + ii-cy.BGR + iishort-cy.BGR + iota-cy + pe-cy.SRB + sha-cy.BGR + shcha-cy.BGR + te-cy.SRB + tse-cy.BGR + u + uacute + ubreve + ucircumflex + udieresis + ugrave + uhungarumlaut + umacron + uogonek + uring + utilde + + public.kern2.v1 + + izhitsacyr + izhitsagravedblcyr + v + + public.kern2.w + + omegacyr + otcyr + w + wacute + wcircumflex + wdieresis + wecyr + wgrave + + public.kern2.x + + ha-cy + hahookcyr + uniF879 + x + + public.kern2.y + + u-cy + u-cy.accented + uacutedblcyr + udieresiscyr + umacroncyr + uniF43B + uniF4CD + ustraightcyr + ustraightstrokecyr + y + yacute + ycircumflex + ydieresis + + public.kern2.z + + dzelo-cy + z + zacute + zcaron + zdotaccent + zemlya-cy + + public.kern2.ze-cy1 + + dzeabkhcyr + ksicyr + uniF517 + ze-cy + ze-cy.BGR + zedieresiscyr + zetailcyr + zetailcyr.BSH + zhwe-cy + + public.kern2.zero + + uni1C80 + zero + zero.tf + + public.kern2.zhe-cy1 + + xatailcyr + yusBlended-cy + yusbigcyr + zhe-cy + zhe-cy.BGR + zhebrevecyr + zhedieresiscyr + zhetailcyr + + ss01 + + A-cy.ss01 + A.ss01 + AE.ss01 + Aacute.ss01 + Abreve.ss01 + Acircumflex.ss01 + Adieresis.ss01 + Agrave.ss01 + Amacron.ss01 + Aogonek.ss01 + Aring.ss01 + Atilde.ss01 + Em-cy.ss01 + Eng.ss01 + G.ss01 + Gacute.ss01 + Gbreve.ss01 + Gcircumflex.ss01 + Gcommaaccent.ss01 + Gdotaccent.ss01 + Ha-cy.ss01 + Ia-cy.ss01 + J.ss01 + Jcircumflex.ss01 + K.ss01 + Ka-cy.ss01 + Kcommaaccent.ss01 + M.ss01 + N.ss01 + Nacute.ss01 + Ncaron.ss01 + Ncommaaccent.ss01 + Ntilde.ss01 + Q.ss01 + U-cy.ss01 + Ushort-cy.ss01 + V.ss01 + W.ss01 + Wacute.ss01 + Wcircumflex.ss01 + Wdieresis.ss01 + Wgrave.ss01 + X.ss01 + Y.ss01 + Yacute.ss01 + Ycircumflex.ss01 + Ydieresis.ss01 + Z.ss01 + Zacute.ss01 + Zcaron.ss01 + Zdotaccent.ss01 + Zhe-cy.ss01 + a-cy.ss01 + a.ss01 + aacute.ss01 + abreve.ss01 + acircumflex.ss01 + adieresis.ss01 + ae.ss01 + agrave.ss01 + amacron.ss01 + aogonek.ss01 + aring.ss01 + arrowdown.ss01 + arrowdown.ss01.case + arrowleft.ss01 + arrowleft.ss01.case + arrowright.ss01 + arrowright.ss01.case + arrowup.ss01 + arrowup.ss01.case + atilde.ss01 + b.ss01 + d.ss01 + dcaron.ss01 + dcroat.ss01 + de-cy.ss01 + e.ss01 + eacute.ss01 + ebreve.ss01 + ecaron.ss01 + ecircumflex.ss01 + edieresis.ss01 + edotaccent.ss01 + egrave.ss01 + el-cy.ss01 + emacron.ss01 + eogonek.ss01 + er-cy.ss01 + f.ss01 + f_f.ss01 + f_f_i.ss01 + f_f_l.ss01 + fi.ss01 + fl.ss01 + g.ss01 + gacute.ss01 + gbreve.ss01 + gcircumflex.ss01 + gcommaaccent.ss01 + gdotaccent.ss01 + germandbls.ss01 + hardsign-cy.ss01 + ia-cy.ss01 + ie-cy.ss01 + io-cy.ss01 + l.ss01 + lacute.ss01 + lcaron.ss01 + lcommaaccent.ss01 + ldot.ss01 + ljecyr.ss01 + lslash.ss01 + njecyr.ss01 + numero.ss01 + oe.ss01 + p.ss01 + q.ss01 + softsign-cy.ss01 + t.ss01 + tbar.ss01 + tcaron.ss01 + tcedilla.ss01 + tcommaaccent.ss01 + te-cy.ss01 + ve-cy.ss01 + yen.ss01 + yeru-cy.ss01 + + ss01_def + + A-cy + A + AE + Aacute + Abreve + Acircumflex + Adieresis + Agrave + Amacron + Aogonek + Aring + Atilde + Em-cy + Eng + G + Gacute + Gbreve + Gcircumflex + Gcommaaccent + Gdotaccent + Ha-cy + Ia-cy + J + Jcircumflex + K + Ka-cy + Kcommaaccent + M + N + Nacute + Ncaron + Ncommaaccent + Ntilde + Q + U-cy + Ushort-cy + V + W + Wacute + Wcircumflex + Wdieresis + Wgrave + X + Y + Yacute + Ycircumflex + Ydieresis + Z + Zacute + Zcaron + Zdotaccent + Zhe-cy + a-cy + a + aacute + abreve + acircumflex + adieresis + ae + agrave + amacron + aogonek + aring + arrowdown + arrowdown.case + arrowleft + arrowleft.case + arrowright + arrowright.case + arrowup + arrowup.case + atilde + b + d + dcaron + dcroat + de-cy + e + eacute + ebreve + ecaron + ecircumflex + edieresis + edotaccent + egrave + el-cy + emacron + eogonek + er-cy + f + f_f + f_f_i + f_f_l + fi + fl + g + gacute + gbreve + gcircumflex + gcommaaccent + gdotaccent + germandbls + hardsign-cy + ia-cy + ie-cy + io-cy + l + lacute + lcaron + lcommaaccent + ldot + ljecyr + lslash + njecyr + numero + oe + p + q + softsign-cy + t + tbar + tcaron + tcedilla + tcommaaccent + te-cy + ve-cy + yen + yeru-cy + + + diff --git a/sources/FixelDisplay-Bold.ufo/kerning.plist b/sources/FixelDisplay-Bold.ufo/kerning.plist new file mode 100644 index 00000000..1d8ff211 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/kerning.plist @@ -0,0 +1,2699 @@ + + + + + Zhe-cy + + public.kern2.G + -32 + + space + + public.kern2.Y + -100 + + uni1C82 + + public.kern2.y + -58 + + public.kern1.A.ss012 + + public.kern2.A.ss01 + 12 + public.kern2.A.ss012 + 6 + public.kern2.B + -4 + public.kern2.G + -26 + public.kern2.T + -58 + public.kern2.U + -20 + public.kern2.Ucyr.ss01 + -52 + public.kern2.V + -48 + public.kern2.W + -38 + public.kern2.Y + -82 + public.kern2.a + -16 + public.kern2.comma + 6 + public.kern2.decyr.ss01 + 6 + public.kern2.emdash + -16 + public.kern2.l.ss01 + -12 + public.kern2.m + -6 + public.kern2.o + -20 + public.kern2.quotedbl + -58 + public.kern2.quoteright + -32 + public.kern2.t + -24 + public.kern2.tecyr + -42 + public.kern2.u + -14 + public.kern2.w + -24 + public.kern2.x + 8 + public.kern2.y + -34 + + public.kern1.A2 + + public.kern2.A2 + 24 + public.kern2.G + -26 + public.kern2.J + 22 + public.kern2.Oslash.alt + 12 + public.kern2.S + 9 + public.kern2.T + -58 + public.kern2.U + -16 + public.kern2.Ucyr.ss01 + -38 + public.kern2.V + -42 + public.kern2.W + -41 + public.kern2.Y + -80 + public.kern2.Z + 18 + public.kern2.a + -2 + public.kern2.comma + 12 + public.kern2.decyr.ss01 + 14 + public.kern2.emdash + -4 + public.kern2.g + 14 + public.kern2.j + -2 + public.kern2.o + -10 + public.kern2.period + 36 + public.kern2.quotedbl + -50 + public.kern2.quoteright + -50 + public.kern2.t + -16 + public.kern2.tecyr + -30 + public.kern2.u + -8 + public.kern2.w + -20 + public.kern2.x + 6 + public.kern2.y + -34 + public.kern2.z + 10 + + public.kern1.C1 + + public.kern2.A.ss01 + 10 + public.kern2.A2 + -6 + public.kern2.B + -6 + public.kern2.G + -16 + public.kern2.J + 12 + public.kern2.Oslash.alt + -10 + public.kern2.S + 10 + public.kern2.T + 4 + public.kern2.U + -6 + public.kern2.Ucyr.ss01 + -7 + public.kern2.V + 4 + public.kern2.Y + -20 + public.kern2.Z + 6 + public.kern2.comma + -4 + public.kern2.emdash + -20 + public.kern2.f + -7 + public.kern2.g + -14 + public.kern2.g.ss01 + -12 + public.kern2.j + 22 + public.kern2.o + -16 + public.kern2.period + -8 + public.kern2.quoteright + -12 + public.kern2.s + -6 + public.kern2.t + -6 + public.kern2.tecyr + -7 + public.kern2.u + -8 + public.kern2.w + -12 + public.kern2.x + -14 + public.kern2.y + -12 + + public.kern1.Decyr + + public.kern2.A.ss012 + 16 + public.kern2.A2 + 6 + public.kern2.G + -10 + public.kern2.T + -21 + public.kern2.Ucyr.ss01 + -30 + public.kern2.a + -4 + public.kern2.comma + 46 + public.kern2.decyr.ss01 + 25 + public.kern2.emdash + -16 + public.kern2.o + -10 + public.kern2.period + 26 + public.kern2.quoteright + -26 + public.kern2.tecyr + -26 + public.kern2.y + -12 + + public.kern1.E1 + + public.kern2.A.ss012 + 4 + public.kern2.G + -8 + public.kern2.J + 10 + public.kern2.a + -6 + public.kern2.f + -12 + public.kern2.g.ss01 + -6 + public.kern2.i1 + 6 + public.kern2.o + -10 + public.kern2.period + 8 + public.kern2.quoteright + -6 + public.kern2.t + -6 + public.kern2.w + -14 + public.kern2.y + -16 + + public.kern1.G.ss01 + + public.kern2.A.ss01 + 10 + public.kern2.G + -18 + public.kern2.T + -16 + public.kern2.U + -18 + public.kern2.V + -38 + public.kern2.W + -28 + public.kern2.Y + -38 + public.kern2.Z + -6 + public.kern2.l.ss01 + -6 + public.kern2.o + -6 + public.kern2.quotedbl + -50 + public.kern2.quoteright + -32 + public.kern2.t + -8 + public.kern2.w + -27 + public.kern2.y + -26 + public.kern2.z + 6 + + public.kern1.G1 + + public.kern2.G + 4 + public.kern2.J + 12 + public.kern2.T + -10 + public.kern2.V + -26 + public.kern2.W + -16 + public.kern2.Y + -38 + public.kern2.comma + 4 + public.kern2.emdash + 8 + public.kern2.period + 10 + public.kern2.quotedbl + -12 + public.kern2.quoteright + -6 + public.kern2.w + -6 + public.kern2.y + -12 + public.kern2.z + 6 + + public.kern1.Ge-cy + + public.kern2.A.ss012 + -54 + public.kern2.A2 + -54 + public.kern2.G + -16 + public.kern2.Gecyr + 16 + public.kern2.T + 30 + public.kern2.Ucyr.ss01 + 12 + public.kern2.a + -84 + public.kern2.comma + -78 + public.kern2.decyr.ss01 + -24 + public.kern2.emdash + -72 + public.kern2.guillemotright + -18 + public.kern2.i1 + 46 + public.kern2.m + -42 + public.kern2.o + -76 + public.kern2.period + -108 + public.kern2.quoteright + 4 + public.kern2.x + -20 + public.kern2.y + -20 + + public.kern1.H + + public.kern2.Gecyr + 1 + public.kern2.comma + -8 + public.kern2.i1 + 12 + public.kern2.j + 24 + public.kern2.quoteright + -8 + public.kern2.s + -6 + public.kern2.y + -6 + + public.kern1.Hardcyr + + public.kern2.A.ss012 + 15 + public.kern2.Oslash.alt + -18 + public.kern2.T + -98 + public.kern2.Ucyr.ss01 + -64 + public.kern2.comma + -8 + public.kern2.emdash + 12 + public.kern2.period + -4 + public.kern2.quotedbl + -120 + public.kern2.quoteright + -32 + public.kern2.tecyr + -24 + public.kern2.x + -26 + public.kern2.y + -30 + + public.kern1.J1 + + public.kern2.A.ss012 + 8 + public.kern2.A2 + -10 + public.kern2.J + 6 + public.kern2.S + -5 + public.kern2.W + 6 + public.kern2.Z + -4 + public.kern2.comma + -30 + public.kern2.i1 + 6 + public.kern2.j + 6 + public.kern2.period + -12 + public.kern2.s + -6 + public.kern2.y + -6 + + public.kern1.K + + public.kern2.A.ss01 + 14 + public.kern2.A2 + 12 + public.kern2.G + -52 + public.kern2.J + 13 + public.kern2.S + -6 + public.kern2.U + -1 + public.kern2.a + -10 + public.kern2.comma + 6 + public.kern2.emdash + -54 + public.kern2.f + -20 + public.kern2.g + -8 + public.kern2.i1 + 24 + public.kern2.j + -4 + public.kern2.l.ss01 + -6 + public.kern2.o + -40 + public.kern2.period + 4 + public.kern2.quoteright + -36 + public.kern2.t + -36 + public.kern2.tecyr + -64 + public.kern2.u + -30 + public.kern2.w + -42 + public.kern2.y + -40 + + public.kern1.L + + public.kern2.A.ss01 + 16 + public.kern2.A2 + 19 + public.kern2.G + -34 + public.kern2.J + 12 + public.kern2.T + -96 + public.kern2.U + -28 + public.kern2.V + -100 + public.kern2.W + -54 + public.kern2.Y + -120 + public.kern2.Z + 6 + public.kern2.a + -10 + public.kern2.emdash + -44 + public.kern2.f + -12 + public.kern2.guillemotleft + -28 + public.kern2.guillemotright + 6 + public.kern2.j + 2 + public.kern2.o + -22 + public.kern2.period + 12 + public.kern2.quotedbl + -90 + public.kern2.quoteright + -82 + public.kern2.t + -26 + public.kern2.u + -10 + public.kern2.w + -54 + public.kern2.x + -6 + public.kern2.y + -84 + public.kern2.z + 10 + + public.kern1.O + + Zhe-cy + -32 + public.kern2.A.ss01 + -2 + public.kern2.A.ss012 + -7 + public.kern2.A2 + -26 + public.kern2.J + -28 + public.kern2.Oslash.alt + -42 + public.kern2.S + -12 + public.kern2.T + -34 + public.kern2.Ucyr.ss01 + -36 + public.kern2.V + -38 + public.kern2.W + -16 + public.kern2.Y + -58 + public.kern2.Z + -37 + public.kern2.a + -10 + public.kern2.comma + -46 + public.kern2.decyr.ss01 + -14 + public.kern2.emdash + 8 + public.kern2.j + -4 + public.kern2.period + -38 + public.kern2.quotedbl + -21 + public.kern2.quoteright + -4 + public.kern2.s + -6 + public.kern2.tecyr + 6 + public.kern2.w + -12 + public.kern2.x + -16 + public.kern2.y + -6 + public.kern2.z + -10 + + public.kern1.Oslash.alt + + public.kern2.A.ss01 + 17 + public.kern2.A.ss012 + 9 + public.kern2.A2 + 6 + public.kern2.G + -42 + public.kern2.J + 23 + public.kern2.S + -10 + public.kern2.Ucyr.ss01 + 9 + public.kern2.W + 9 + public.kern2.a + -10 + public.kern2.comma + 10 + public.kern2.decyr.ss01 + 6 + public.kern2.emdash + -30 + public.kern2.f + -2 + public.kern2.g + -2 + public.kern2.i1 + 24 + public.kern2.j + -4 + public.kern2.o + -30 + public.kern2.period + 4 + public.kern2.quoteright + -52 + public.kern2.s + -2 + public.kern2.t + -16 + public.kern2.tecyr + -38 + public.kern2.u + -10 + public.kern2.w + -20 + public.kern2.x + 6 + public.kern2.y + -26 + + public.kern1.P + + public.kern2.A.ss01 + -40 + public.kern2.A.ss012 + -40 + public.kern2.A2 + -56 + public.kern2.B + -8 + public.kern2.J + -61 + public.kern2.Oslash.alt + -42 + public.kern2.T + -11 + public.kern2.Ucyr.ss01 + -26 + public.kern2.V + -14 + public.kern2.W + -2 + public.kern2.Y + -22 + public.kern2.Z + -28 + public.kern2.a + -20 + public.kern2.comma + -104 + public.kern2.decyr.ss01 + -36 + public.kern2.emdash + -16 + public.kern2.fi.ss01 + 6 + public.kern2.g + -10 + public.kern2.g.ss01 + -14 + public.kern2.j + -18 + public.kern2.o + -24 + public.kern2.period + -142 + public.kern2.quotedbl + -8 + public.kern2.s + -14 + public.kern2.t + 12 + public.kern2.tecyr + 8 + public.kern2.x + -2 + public.kern2.z + -4 + + public.kern1.R + + public.kern2.A.ss01 + 4 + public.kern2.G + -26 + public.kern2.J + 4 + public.kern2.S + -12 + public.kern2.T + -26 + public.kern2.U + -14 + public.kern2.V + -24 + public.kern2.W + -8 + public.kern2.Y + -38 + public.kern2.a + -2 + public.kern2.emdash + -22 + public.kern2.f + -6 + public.kern2.j + -10 + public.kern2.m + -6 + public.kern2.o + -32 + public.kern2.period + 6 + public.kern2.quotedbl + -26 + public.kern2.quoteright + -6 + public.kern2.s + -8 + public.kern2.t + -8 + public.kern2.u + -20 + public.kern2.w + -14 + public.kern2.y + -20 + + public.kern1.S1 + + public.kern2.A.ss01 + 16 + public.kern2.G + -6 + public.kern2.J + 18 + public.kern2.Oslash.alt + -14 + public.kern2.T + -20 + public.kern2.V + -16 + public.kern2.W + -16 + public.kern2.Y + -30 + public.kern2.Z + -4 + public.kern2.emdash + 16 + public.kern2.f + -12 + public.kern2.g + -8 + public.kern2.i1 + 6 + public.kern2.j + -10 + public.kern2.quotedbl + -24 + public.kern2.quoteright + -18 + public.kern2.t + -8 + public.kern2.w + -13 + public.kern2.x + -14 + public.kern2.y + -19 + + public.kern1.T1 + + public.kern2.A.ss01 + -48 + public.kern2.A.ss012 + -50 + public.kern2.A2 + -58 + public.kern2.G + -34 + public.kern2.J + -64 + public.kern2.S + -4 + public.kern2.T + 28 + public.kern2.V + 8 + public.kern2.W + 14 + public.kern2.Y + 4 + public.kern2.a + -60 + public.kern2.comma + -68 + public.kern2.decyr.ss01 + -68 + public.kern2.emdash + -82 + public.kern2.f + -10 + public.kern2.g + -70 + public.kern2.g.ss01 + -42 + public.kern2.guillemotleft + -70 + public.kern2.guillemotright + -64 + public.kern2.i1 + -4 + public.kern2.j + -20 + public.kern2.m + -36 + public.kern2.o + -80 + public.kern2.period + -94 + public.kern2.quotedbl + 26 + public.kern2.quoteright + -22 + public.kern2.s + -57 + public.kern2.tecyr + -36 + public.kern2.u + -34 + public.kern2.w + -36 + public.kern2.x + -30 + public.kern2.y + -30 + public.kern2.z + -32 + + public.kern1.U1 + + public.kern2.A.ss01 + -4 + public.kern2.A.ss012 + -2 + public.kern2.A2 + -16 + public.kern2.J + -14 + public.kern2.Z + -14 + public.kern2.comma + -30 + public.kern2.i1 + 6 + public.kern2.j + 1 + public.kern2.period + -12 + public.kern2.quoteright + -22 + public.kern2.z + -10 + + public.kern1.Ucyr1 + + public.kern2.A.ss012 + -44 + public.kern2.A2 + -50 + public.kern2.G + -36 + public.kern2.T + 10 + public.kern2.a + -50 + public.kern2.comma + -88 + public.kern2.decyr.ss01 + -50 + public.kern2.emdash + -56 + public.kern2.guillemotright + -60 + public.kern2.i1 + 44 + public.kern2.m + -48 + public.kern2.o + -64 + public.kern2.period + -102 + public.kern2.tecyr + -14 + public.kern2.x + -20 + public.kern2.y + -30 + + public.kern1.V + + public.kern2.A.ss01 + -52 + public.kern2.A.ss012 + -44 + public.kern2.A2 + -49 + public.kern2.G + -38 + public.kern2.J + -76 + public.kern2.Oslash.alt + -4 + public.kern2.S + -18 + public.kern2.T + 8 + public.kern2.W + 12 + public.kern2.Z + -18 + public.kern2.a + -50 + public.kern2.comma + -66 + public.kern2.emdash + -52 + public.kern2.f + -2 + public.kern2.g + -34 + public.kern2.g.ss01 + -52 + public.kern2.guillemotleft + -44 + public.kern2.guillemotright + -30 + public.kern2.i1 + 29 + public.kern2.j + -14 + public.kern2.m + -50 + public.kern2.o + -61 + public.kern2.period + -102 + public.kern2.quotedbl + 16 + public.kern2.quoteright + -10 + public.kern2.s + -40 + public.kern2.t + -10 + public.kern2.u + -50 + public.kern2.w + -16 + public.kern2.x + -20 + public.kern2.y + -20 + public.kern2.z + -20 + + public.kern1.W.ss011 + + public.kern2.A.ss01 + -32 + public.kern2.A.ss012 + -28 + public.kern2.A2 + -80 + public.kern2.G + -12 + public.kern2.J + -42 + public.kern2.S + -6 + public.kern2.T + 14 + public.kern2.V + 10 + public.kern2.W + 12 + public.kern2.Y + 12 + public.kern2.Z + -10 + public.kern2.a + -38 + public.kern2.comma + -68 + public.kern2.emdash + -26 + public.kern2.g + -18 + public.kern2.g.ss01 + -28 + public.kern2.guillemotright + -11 + public.kern2.i1 + 38 + public.kern2.m + -16 + public.kern2.o + -34 + public.kern2.period + -86 + public.kern2.quotedbl + 16 + public.kern2.s + -22 + public.kern2.u + -22 + public.kern2.w + -19 + public.kern2.y + -5 + public.kern2.z + -16 + + public.kern1.W1 + + public.kern2.A.ss01 + -40 + public.kern2.A.ss012 + -28 + public.kern2.A2 + -41 + public.kern2.G + -16 + public.kern2.J + -54 + public.kern2.S + -8 + public.kern2.T + 8 + public.kern2.V + 6 + public.kern2.Y + 6 + public.kern2.Z + -10 + public.kern2.a + -46 + public.kern2.comma + -40 + public.kern2.emdash + -20 + public.kern2.g + -24 + public.kern2.guillemotleft + -28 + public.kern2.guillemotright + -22 + public.kern2.i1 + -2 + public.kern2.j + -8 + public.kern2.m + -24 + public.kern2.o + -42 + public.kern2.period + -58 + public.kern2.quotedbl + 12 + public.kern2.quoteright + -14 + public.kern2.s + -20 + public.kern2.u + -26 + public.kern2.w + -8 + public.kern2.x + -4 + public.kern2.y + -10 + public.kern2.z + -26 + + public.kern1.Y.ss011 + + public.kern2.A.ss01 + -66 + public.kern2.A.ss012 + -84 + public.kern2.G + -48 + public.kern2.S + -15 + public.kern2.W + 9 + public.kern2.Y + 18 + public.kern2.Z + -24 + public.kern2.a + -50 + public.kern2.comma + -118 + public.kern2.emdash + -92 + public.kern2.g.ss01 + -66 + public.kern2.i1 + 40 + public.kern2.m + -70 + public.kern2.o + -120 + public.kern2.period + -126 + public.kern2.quoteright + -20 + public.kern2.s + -70 + public.kern2.t + -18 + public.kern2.u + -60 + public.kern2.w + -40 + public.kern2.x + -24 + public.kern2.y + -18 + public.kern2.z + -24 + + public.kern1.Y1 + + public.kern2.A.ss012 + -78 + public.kern2.A2 + -80 + public.kern2.B + -6 + public.kern2.G + -58 + public.kern2.J + -74 + public.kern2.S + -36 + public.kern2.T + 10 + public.kern2.V + 15 + public.kern2.W + 6 + public.kern2.Y + 19 + public.kern2.a + -76 + public.kern2.comma + -92 + public.kern2.emdash + -96 + public.kern2.f + -30 + public.kern2.g + -72 + public.kern2.guillemotleft + -92 + public.kern2.guillemotright + -66 + public.kern2.i1 + 28 + public.kern2.j + -12 + public.kern2.m + -80 + public.kern2.o + -110 + public.kern2.period + -136 + public.kern2.quotedbl + 22 + public.kern2.quoteright + -32 + public.kern2.s + -82 + public.kern2.t + -16 + public.kern2.u + -70 + public.kern2.w + -48 + public.kern2.x + -46 + public.kern2.y + -46 + public.kern2.z + -50 + + public.kern1.Yacyr + + public.kern2.A.ss012 + 6 + public.kern2.i1 + 6 + + public.kern1.Z1 + + public.kern2.A.ss01 + 32 + public.kern2.A.ss012 + 26 + public.kern2.A2 + 6 + public.kern2.B + 6 + public.kern2.G + -33 + public.kern2.J + 18 + public.kern2.Oslash.alt + -6 + public.kern2.S + 12 + public.kern2.T + 4 + public.kern2.V + 6 + public.kern2.Z + 12 + public.kern2.a + 2 + public.kern2.comma + 30 + public.kern2.emdash + -24 + public.kern2.f + -2 + public.kern2.i1 + 28 + public.kern2.j + 12 + public.kern2.o + -18 + public.kern2.period + 22 + public.kern2.quotedbl + 6 + public.kern2.quoteright + -34 + public.kern2.s + 2 + public.kern2.t + -10 + public.kern2.u + -8 + public.kern2.w + -20 + public.kern2.y + -10 + public.kern2.z + 18 + + public.kern1.a1 + + public.kern2.A.ss012 + 15 + public.kern2.G + -2 + public.kern2.J + 6 + public.kern2.S + -8 + public.kern2.T + -70 + public.kern2.U + -6 + public.kern2.Ucyr.ss01 + -2 + public.kern2.V + -62 + public.kern2.W + -40 + public.kern2.Y + -92 + public.kern2.comma + -4 + public.kern2.f + -4 + public.kern2.j + -8 + public.kern2.quotedbl + -32 + public.kern2.quoteright + -36 + public.kern2.t + -8 + public.kern2.tecyr + -1 + public.kern2.u + -10 + public.kern2.w + -24 + public.kern2.y + -20 + public.kern2.z + 9 + + public.kern1.c1 + + public.kern2.A.ss012 + 12 + public.kern2.A2 + 14 + public.kern2.G + 4 + public.kern2.J + 12 + public.kern2.Oslash.alt + -6 + public.kern2.T + -50 + public.kern2.Ucyr.ss01 + -38 + public.kern2.V + -36 + public.kern2.W + -20 + public.kern2.Y + -50 + public.kern2.Z + 6 + public.kern2.a + 6 + public.kern2.comma + -4 + public.kern2.emdash + -18 + public.kern2.g + 4 + public.kern2.o + -6 + public.kern2.period + -2 + public.kern2.quotedbl + -18 + public.kern2.quoteright + -8 + public.kern2.t + 6 + + public.kern1.comma1 + + public.kern2.A.ss01 + 6 + public.kern2.A2 + 6 + public.kern2.G + -40 + public.kern2.J + 26 + public.kern2.T + -76 + public.kern2.U + -12 + public.kern2.V + -74 + public.kern2.W + -36 + public.kern2.Y + -106 + public.kern2.Z + 18 + public.kern2.a + -8 + public.kern2.f + -12 + public.kern2.five + -8 + public.kern2.g.ss01 + 2 + public.kern2.h + -8 + public.kern2.i1 + -8 + public.kern2.j + 6 + public.kern2.m + -8 + public.kern2.o + -16 + public.kern2.t + -30 + public.kern2.u + -12 + public.kern2.w + -18 + public.kern2.x + -8 + public.kern2.y + -52 + public.kern2.z + 2 + public.kern2.zero + -12 + + public.kern1.dcaron + + public.kern2.B + 78 + public.kern2.G + 18 + public.kern2.J + 6 + public.kern2.Oslash.alt + 108 + public.kern2.S + 68 + public.kern2.T + 124 + public.kern2.U + 84 + public.kern2.V + 116 + public.kern2.W + 122 + public.kern2.Y + 130 + public.kern2.Z + 94 + public.kern2.a + 18 + public.kern2.f + 13 + public.kern2.fi.ss01 + 72 + public.kern2.g + 12 + public.kern2.g.ss01 + 12 + public.kern2.h + 88 + public.kern2.i1 + 88 + public.kern2.j + 78 + public.kern2.l.ss01 + 76 + public.kern2.m + 18 + public.kern2.o + 12 + public.kern2.s + 20 + public.kern2.t + 64 + public.kern2.u + 18 + public.kern2.w + 30 + public.kern2.x + 26 + public.kern2.y + 26 + public.kern2.z + 76 + + public.kern1.decyr1 + + public.kern2.A.ss012 + 18 + public.kern2.A2 + 16 + public.kern2.G + -12 + public.kern2.Oslash.alt + 6 + public.kern2.T + -62 + public.kern2.Ucyr.ss01 + -28 + public.kern2.comma + 26 + public.kern2.decyr.ss01 + 14 + public.kern2.emdash + -15 + public.kern2.o + -14 + public.kern2.period + 16 + public.kern2.quoteright + -26 + public.kern2.tecyr + -26 + public.kern2.x + 6 + public.kern2.y + -6 + + public.kern1.e.ss011 + + public.kern2.Oslash.alt + -10 + public.kern2.T + -48 + public.kern2.V + -50 + public.kern2.W + -18 + public.kern2.Y + -60 + public.kern2.comma + -12 + public.kern2.emdash + -4 + public.kern2.o + -6 + public.kern2.quotedbl + -28 + public.kern2.w + -12 + public.kern2.y + -12 + + public.kern1.e1 + + public.kern2.A.ss012 + 15 + public.kern2.A2 + -2 + public.kern2.G + 6 + public.kern2.Oslash.alt + -20 + public.kern2.T + -68 + public.kern2.Ucyr.ss01 + -58 + public.kern2.V + -60 + public.kern2.W + -38 + public.kern2.Y + -98 + public.kern2.Z + -10 + public.kern2.comma + -6 + public.kern2.j + -14 + public.kern2.period + -14 + public.kern2.quotedbl + -24 + public.kern2.quoteright + -16 + public.kern2.w + -16 + public.kern2.x + -20 + public.kern2.y + -26 + public.kern2.z + -4 + + public.kern1.emdash1 + + public.kern2.A.ss01 + 10 + public.kern2.A.ss012 + 6 + public.kern2.A2 + -4 + public.kern2.G + 8 + public.kern2.J + -20 + public.kern2.Oslash.alt + -26 + public.kern2.S + -18 + public.kern2.T + -82 + public.kern2.Ucyr.ss01 + -50 + public.kern2.V + -52 + public.kern2.W + -20 + public.kern2.Y + -96 + public.kern2.Z + -10 + public.kern2.decyr.ss01 + -18 + public.kern2.f + -18 + public.kern2.five + -20 + public.kern2.four + 8 + public.kern2.g.ss01 + 4 + public.kern2.j + -8 + public.kern2.tecyr + -40 + public.kern2.x + -32 + public.kern2.y + -34 + public.kern2.z + -12 + + public.kern1.f1 + + public.kern2.A.ss012 + -10 + public.kern2.A2 + -26 + public.kern2.J + -48 + public.kern2.S + 10 + public.kern2.T + 16 + public.kern2.V + 4 + public.kern2.Y + 10 + public.kern2.a + -11 + public.kern2.comma + -46 + public.kern2.emdash + -26 + public.kern2.f + 4 + public.kern2.g + -4 + public.kern2.h + 6 + public.kern2.i1 + 12 + public.kern2.o + -18 + public.kern2.period + -58 + public.kern2.quotedbl + 32 + public.kern2.quoteright + 26 + public.kern2.s + -8 + public.kern2.t + 23 + public.kern2.w + 6 + public.kern2.x + 6 + public.kern2.y + 14 + + public.kern1.five1 + + public.kern2.comma + -30 + public.kern2.five + -18 + public.kern2.i1 + 12 + public.kern2.period + -12 + + public.kern1.four1 + + public.kern2.emdash + -8 + public.kern2.five + 10 + public.kern2.four + 22 + public.kern2.period + 12 + public.kern2.quotedbl + -20 + + public.kern1.g.ss011 + + public.kern2.A.ss01 + 12 + public.kern2.V + -8 + public.kern2.W + 12 + public.kern2.Y + -18 + public.kern2.comma + 22 + public.kern2.g.ss01 + 12 + public.kern2.h + 6 + public.kern2.i1 + 6 + public.kern2.j + 36 + public.kern2.l.ss01 + 12 + public.kern2.m + 12 + public.kern2.o + 6 + public.kern2.quotedbl + 18 + public.kern2.quoteright + 28 + public.kern2.s + 6 + public.kern2.t + 24 + public.kern2.u + 6 + public.kern2.w + 6 + public.kern2.x + 18 + public.kern2.y + 12 + public.kern2.z + 12 + + public.kern1.g1 + + public.kern2.A2 + 14 + public.kern2.T + -32 + public.kern2.V + -20 + public.kern2.W + -4 + public.kern2.Y + -30 + public.kern2.a + -6 + public.kern2.comma + 16 + public.kern2.f + 4 + public.kern2.i1 + 6 + public.kern2.j + 42 + public.kern2.m + -6 + public.kern2.o + -3 + public.kern2.quotedbl + -4 + public.kern2.s + -6 + public.kern2.w + -6 + public.kern2.y + -2 + + public.kern1.gecyr + + public.kern2.A2 + -22 + public.kern2.G + 6 + public.kern2.Oslash.alt + -12 + public.kern2.T + -28 + public.kern2.Ucyr.ss01 + -32 + public.kern2.a + -12 + public.kern2.comma + -60 + public.kern2.decyr.ss01 + -30 + public.kern2.emdash + -50 + public.kern2.i1 + 24 + public.kern2.o + -17 + public.kern2.period + -98 + public.kern2.quoteright + 12 + public.kern2.x + 4 + public.kern2.y + 8 + + public.kern1.guillemotright1 + + public.kern2.J + -22 + public.kern2.T + -70 + public.kern2.V + -44 + public.kern2.W + -28 + public.kern2.Y + -92 + + public.kern1.hardcyr + + public.kern2.Oslash.alt + -10 + public.kern2.T + -76 + public.kern2.Ucyr.ss01 + -48 + public.kern2.period + -4 + public.kern2.quotedbl + -82 + public.kern2.quoteright + -42 + public.kern2.tecyr + -78 + public.kern2.x + -20 + public.kern2.y + -56 + + public.kern1.i1 + + public.kern2.B + 6 + public.kern2.G + -6 + public.kern2.Gecyr + 6 + public.kern2.Oslash.alt + 24 + public.kern2.T + -4 + public.kern2.U + 6 + public.kern2.Ucyr.ss01 + 30 + public.kern2.V + 38 + public.kern2.W + 5 + public.kern2.Y + 44 + public.kern2.Z + 18 + public.kern2.h + 16 + public.kern2.i1 + 9 + public.kern2.j + -10 + public.kern2.percent + 18 + public.kern2.quotedbl + 16 + public.kern2.quoteright + -16 + + public.kern1.icyr1 + + tenmillionscomb-cy + 17 + public.kern2.A.ss012 + 6 + public.kern2.J + 6 + public.kern2.T + -36 + public.kern2.Ucyr.ss01 + -48 + public.kern2.V + -20 + public.kern2.W + -20 + public.kern2.Y + -80 + public.kern2.j + 19 + public.kern2.quoteright + -8 + + public.kern1.j1 + + public.kern2.T + -12 + public.kern2.i1 + 6 + public.kern2.j + 12 + public.kern2.quoteright + -8 + public.kern2.z + 6 + + public.kern1.k + + public.kern2.A.ss01 + 12 + public.kern2.A.ss012 + 16 + public.kern2.A2 + 16 + public.kern2.G + -16 + public.kern2.J + 16 + public.kern2.T + -24 + public.kern2.Ucyr.ss01 + -20 + public.kern2.V + -18 + public.kern2.W + -20 + public.kern2.Y + -38 + public.kern2.a + -10 + public.kern2.emdash + -46 + public.kern2.o + -38 + public.kern2.quoteright + -12 + public.kern2.s + -6 + public.kern2.t + 6 + public.kern2.x + 16 + public.kern2.z + 6 + + public.kern1.l + + public.kern2.i1 + 6 + public.kern2.j + 15 + public.kern2.quoteright + -8 + public.kern2.s + 3 + + public.kern1.l.ss011 + + public.kern2.A.ss01 + 12 + public.kern2.G + -6 + public.kern2.T + -42 + public.kern2.U + -6 + public.kern2.V + -46 + public.kern2.W + -40 + public.kern2.Y + -30 + public.kern2.comma + 8 + public.kern2.f + -40 + public.kern2.fi.ss01 + -12 + public.kern2.g.ss01 + 6 + public.kern2.j + -8 + public.kern2.o + -6 + public.kern2.period + 8 + public.kern2.quoteright + -28 + public.kern2.t + -21 + public.kern2.w + -42 + public.kern2.y + -48 + + public.kern1.n + + public.kern2.A.ss01 + 6 + public.kern2.A.ss012 + 6 + public.kern2.G + -6 + public.kern2.J + 12 + public.kern2.T + -62 + public.kern2.Ucyr.ss01 + -58 + public.kern2.V + -60 + public.kern2.W + -40 + public.kern2.Y + -100 + public.kern2.g + 3 + public.kern2.guillemotright + 6 + public.kern2.j + -8 + public.kern2.quotedbl + -28 + public.kern2.quoteright + -14 + public.kern2.w + -14 + public.kern2.y + -23 + + public.kern1.numero + + public.kern2.i1 + 24 + + public.kern1.o1 + + public.kern2.A.ss01 + 6 + public.kern2.A.ss012 + 5 + public.kern2.A2 + -10 + public.kern2.J + -8 + public.kern2.Oslash.alt + -30 + public.kern2.S + -16 + public.kern2.T + -80 + public.kern2.Ucyr.ss01 + -60 + public.kern2.V + -61 + public.kern2.W + -42 + public.kern2.Y + -106 + public.kern2.Z + -18 + public.kern2.a + -2 + public.kern2.comma + -38 + public.kern2.emdash + 6 + public.kern2.j + -14 + public.kern2.period + -26 + public.kern2.quotedbl + -28 + public.kern2.quoteright + -22 + public.kern2.s + -10 + public.kern2.t + -3 + public.kern2.tecyr + -24 + public.kern2.w + -18 + public.kern2.x + -25 + public.kern2.y + -30 + public.kern2.z + -14 + + public.kern1.period1 + + public.kern2.A.ss01 + 8 + public.kern2.A.ss012 + 24 + public.kern2.A2 + 36 + public.kern2.G + -38 + public.kern2.J + 38 + public.kern2.Oslash.alt + 10 + public.kern2.S + 6 + public.kern2.T + -94 + public.kern2.U + -12 + public.kern2.Ucyr.ss01 + -20 + public.kern2.V + -102 + public.kern2.W + -58 + public.kern2.Y + -136 + public.kern2.Z + 16 + public.kern2.f + -18 + public.kern2.five + -4 + public.kern2.four + 6 + public.kern2.g.ss01 + 10 + public.kern2.j + -2 + public.kern2.o + -26 + public.kern2.quotedbl + -24 + public.kern2.t + -30 + public.kern2.tecyr + -66 + public.kern2.u + -18 + public.kern2.w + -36 + public.kern2.y + -75 + public.kern2.z + 6 + public.kern2.zero + -16 + + public.kern1.quotedbl1 + + public.kern2.A.ss01 + -58 + public.kern2.A.ss012 + -42 + public.kern2.A2 + -50 + public.kern2.G + -21 + public.kern2.J + -62 + public.kern2.T + 30 + public.kern2.V + 16 + public.kern2.W + 12 + public.kern2.Y + 22 + public.kern2.Z + -4 + public.kern2.a + -30 + public.kern2.decyr.ss01 + -40 + public.kern2.four + -66 + public.kern2.g + -20 + public.kern2.g.ss01 + -28 + public.kern2.i1 + 16 + public.kern2.j + -8 + public.kern2.o + -29 + public.kern2.period + -27 + public.kern2.s + -18 + public.kern2.t + 12 + public.kern2.u + -4 + public.kern2.w + 6 + public.kern2.x + -4 + public.kern2.y + 6 + public.kern2.z + -4 + public.kern2.zero + -14 + + public.kern1.quoteleft1 + + public.kern2.A.ss01 + -46 + public.kern2.A2 + -48 + public.kern2.B + 6 + public.kern2.G + -20 + public.kern2.J + -28 + public.kern2.Oslash.alt + 22 + public.kern2.T + 34 + public.kern2.V + 26 + public.kern2.W + 18 + public.kern2.Y + 32 + public.kern2.Z + 2 + public.kern2.a + -30 + public.kern2.f + 4 + public.kern2.g + -44 + public.kern2.g.ss01 + -30 + public.kern2.i1 + 34 + public.kern2.j + -4 + public.kern2.m + -20 + public.kern2.o + -48 + public.kern2.s + -24 + public.kern2.u + -20 + public.kern2.w + -12 + public.kern2.x + -24 + public.kern2.y + -10 + public.kern2.z + -24 + + public.kern1.quoteright1 + + public.kern2.A.ss01 + -62 + public.kern2.A2 + -60 + public.kern2.G + -30 + public.kern2.J + -44 + public.kern2.Oslash.alt + 2 + public.kern2.S + -18 + public.kern2.T + 20 + public.kern2.U + -8 + public.kern2.V + 18 + public.kern2.W + 18 + public.kern2.Y + 22 + public.kern2.Z + -12 + public.kern2.a + -64 + public.kern2.f + -6 + public.kern2.g + -74 + public.kern2.g.ss01 + -36 + public.kern2.h + -18 + public.kern2.i1 + 5 + public.kern2.m + -24 + public.kern2.o + -78 + public.kern2.s + -58 + public.kern2.u + -24 + public.kern2.w + -16 + public.kern2.x + -16 + public.kern2.y + -30 + public.kern2.z + -42 + + public.kern1.s1 + + public.kern2.A.ss01 + 6 + public.kern2.A2 + 4 + public.kern2.G + -6 + public.kern2.J + 6 + public.kern2.Oslash.alt + -2 + public.kern2.T + -57 + public.kern2.V + -40 + public.kern2.W + -26 + public.kern2.Y + -82 + public.kern2.Z + -4 + public.kern2.a + 6 + public.kern2.comma + -4 + public.kern2.emdash + -18 + public.kern2.f + -6 + public.kern2.guillemotright + 12 + public.kern2.o + -4 + public.kern2.period + -8 + public.kern2.quotedbl + -30 + public.kern2.quoteright + -14 + public.kern2.s + 3 + public.kern2.t + -6 + public.kern2.w + -15 + public.kern2.x + -10 + public.kern2.y + -18 + + public.kern1.t.ss011 + + public.kern2.A.ss01 + 18 + public.kern2.B + 6 + public.kern2.G + 6 + public.kern2.Y + -24 + public.kern2.Z + 6 + public.kern2.h + 6 + public.kern2.j + 12 + public.kern2.l.ss01 + 6 + public.kern2.period + 12 + public.kern2.s + 6 + public.kern2.t + 12 + public.kern2.z + 12 + + public.kern1.t1 + + public.kern2.G + -4 + public.kern2.J + 26 + public.kern2.T + -6 + public.kern2.V + -20 + public.kern2.W + -4 + public.kern2.Y + -22 + public.kern2.Z + 6 + public.kern2.a + 6 + public.kern2.emdash + -12 + public.kern2.f + 13 + public.kern2.g + 6 + public.kern2.h + 3 + public.kern2.i1 + 6 + public.kern2.j + 7 + public.kern2.o + -4 + public.kern2.period + 6 + public.kern2.quotedbl + 12 + public.kern2.quoteright + 6 + public.kern2.t + 16 + public.kern2.x + 6 + public.kern2.y + 4 + public.kern2.z + 20 + + public.kern1.u1 + + public.kern2.A.ss01 + 6 + public.kern2.T + -48 + public.kern2.V + -50 + public.kern2.W + -24 + public.kern2.Y + -80 + public.kern2.j + -4 + public.kern2.quotedbl + -4 + public.kern2.quoteright + -8 + public.kern2.z + 6 + + public.kern1.uni0435.ss011 + + public.kern2.A.ss012 + 12 + public.kern2.T + -64 + public.kern2.Ucyr.ss01 + -42 + public.kern2.V + -50 + public.kern2.W + -14 + public.kern2.Y + -72 + public.kern2.w + -8 + public.kern2.x + -4 + public.kern2.y + -10 + + public.kern1.w1 + + public.kern2.A.ss01 + -12 + public.kern2.A.ss012 + -7 + public.kern2.A2 + -20 + public.kern2.J + -38 + public.kern2.Oslash.alt + -20 + public.kern2.S + -8 + public.kern2.T + -24 + public.kern2.V + -16 + public.kern2.W + -8 + public.kern2.Y + -48 + public.kern2.Z + -30 + public.kern2.a + -18 + public.kern2.comma + -26 + public.kern2.f + 6 + public.kern2.g + -6 + public.kern2.j + -10 + public.kern2.o + -18 + public.kern2.period + -36 + public.kern2.quotedbl + 6 + public.kern2.quoteright + 6 + public.kern2.s + -14 + public.kern2.w + -6 + + public.kern1.x + + public.kern2.A.ss01 + 12 + public.kern2.A.ss012 + 12 + public.kern2.A2 + 12 + public.kern2.G + -16 + public.kern2.J + 12 + public.kern2.S + -4 + public.kern2.T + -24 + public.kern2.Ucyr.ss01 + -14 + public.kern2.V + -20 + public.kern2.W + -4 + public.kern2.Y + -46 + public.kern2.a + -6 + public.kern2.emdash + -32 + public.kern2.o + -25 + public.kern2.quotedbl + -4 + public.kern2.s + -16 + public.kern2.x + 12 + public.kern2.z + 6 + + public.kern1.y1 + + public.kern2.A.ss01 + -12 + public.kern2.A.ss012 + -14 + public.kern2.A2 + -20 + public.kern2.G + -6 + public.kern2.J + -48 + public.kern2.Oslash.alt + -30 + public.kern2.T + -24 + public.kern2.Ucyr.ss01 + -20 + public.kern2.V + -20 + public.kern2.W + -8 + public.kern2.Y + -46 + public.kern2.Z + -20 + public.kern2.a + -11 + public.kern2.comma + -40 + public.kern2.decyr.ss01 + -26 + public.kern2.emdash + -18 + public.kern2.f + 14 + public.kern2.g + -10 + public.kern2.g.ss01 + -12 + public.kern2.h + -6 + public.kern2.j + -10 + public.kern2.o + -20 + public.kern2.period + -74 + public.kern2.quotedbl + 6 + public.kern2.quoteright + 8 + public.kern2.s + -12 + public.kern2.t + 10 + public.kern2.x + 6 + public.kern2.y + 6 + public.kern2.z + -6 + + public.kern1.z1 + + public.kern2.A.ss012 + 12 + public.kern2.A2 + 16 + public.kern2.J + 18 + public.kern2.S + -8 + public.kern2.T + -26 + public.kern2.V + -20 + public.kern2.W + -26 + public.kern2.Y + -50 + public.kern2.comma + 10 + public.kern2.f + 16 + public.kern2.g + 6 + public.kern2.j + 6 + public.kern2.o + -14 + public.kern2.period + 6 + public.kern2.quotedbl + -8 + public.kern2.quoteright + -4 + public.kern2.t + 6 + public.kern2.x + 6 + public.kern2.z + 6 + + + diff --git a/sources/FixelDisplay-Bold.ufo/layercontents.plist b/sources/FixelDisplay-Bold.ufo/layercontents.plist new file mode 100644 index 00000000..7a35a5cf --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/layercontents.plist @@ -0,0 +1,10 @@ + + + + + + public.default + glyphs + + + diff --git a/sources/FixelDisplay-Bold.ufo/lib.plist b/sources/FixelDisplay-Bold.ufo/lib.plist new file mode 100644 index 00000000..c0069150 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/lib.plist @@ -0,0 +1,1671 @@ + + + + + com.fontlab.v2.tth + + stems + + 69 + + width + 69 + horizontal + + round + + 35 + 3 + 47 + 4 + 60 + 5 + 0 + 7 + 22 + 8 + + + 74 + + width + 74 + horizontal + + round + + 19 + 2 + 35 + 3 + 47 + 4 + 60 + 5 + 72 + 6 + 0 + 7 + 20 + 8 + + + 76 + + width + 76 + horizontal + + round + + 19 + 2 + 35 + 3 + 72 + 6 + 0 + 7 + 20 + 8 + + + 80 + + width + 80 + horizontal + + round + + 29 + 3 + 47 + 4 + 60 + 5 + 72 + 6 + 0 + 7 + 20 + 8 + + + 99 + + width + 99 + horizontal + + round + + 19 + 2 + 29 + 3 + 37 + 4 + 48 + 5 + 58 + 6 + 0 + 7 + 16 + 8 + + + 74 + + width + 74 + horizontal + + round + + 19 + 2 + 35 + 3 + 47 + 4 + 60 + 5 + 72 + 6 + 0 + 7 + 20 + 8 + + + 80 + + width + 80 + horizontal + + round + + 29 + 3 + 47 + 4 + 60 + 5 + 72 + 6 + 0 + 7 + 20 + 8 + + + 93 + + width + 93 + horizontal + + round + + 19 + 2 + 29 + 3 + 37 + 4 + 48 + 5 + 58 + 6 + 0 + 7 + 16 + 8 + + + + + com.schriftgestaltung.disablesAutomaticAlignment + + com.schriftgestaltung.fontMasterID + master01 + com.schriftgestaltung.glyphOrder + + com.schriftgestaltung.master.name + regular + com.schriftgestaltung.useNiceNames + + com.schriftgestaltung.weightValue + 400 + public.postscriptNames + + A-cy + uni0410 + A-cy.ss01 + uni0410.ss01 + Be-cy + uni0411 + Che-cy + uni0427 + De-cy + uni0414 + Dze-cy + uni0405 + E-cy + uni0404 + Ef-cy + uni0424 + El-cy + uni041B + Em-cy + uni041C + Em-cy.ss01 + uni041C.ss01 + En-cy + uni041D + Er-cy + uni0420 + Ereversed-cy + uni042D + Es-cy + uni0421 + Gacute + uni01F4 + Gacute.ss01 + uni01F4.ss01 + Gcommaaccent + uni0122 + Gcommaaccent.ss01 + uni0122.ss01 + Ge-cy + uni0413 + Germandbls + uni1E9E + Gheupturn-cy + uni0490 + Ha-cy + uni0425 + Ha-cy.ss01 + uni0425.ss01 + Hardsign-cy + uni042A + I-cy + uni0406 + Ia-cy + uni042F + Ia-cy.ss01 + uni042F.ss01 + Ie-cy + uni0415 + Ii-cy + uni0418 + Iishort-cy + uni0419 + Io-cy + uni0401 + Iu-cy + uni042E + Ka-cy + uni041A + Ka-cy.ss01 + uni041A.ss01 + Kcommaaccent + uni0136 + Kcommaaccent.ss01 + uni0136.ss01 + Lcommaaccent + uni013B + Ncommaaccent + uni0145 + Ncommaaccent.ss01 + uni0145.ss01 + O-cy + uni041E + Pe-cy + uni041F + Rcommaaccent + uni0156 + Scommaaccent + uni0218 + Sha-cy + uni0428 + Shcha-cy + uni0429 + Softsign-cy + uni042C + Tcedilla + uni0162 + Tcommaaccent + uni021A + Te-cy + uni0422 + Tse-cy + uni0426 + U-cy + uni0423 + U-cy.ss01 + uni0423.ss01 + Ushort-cy + uni040E + Ushort-cy.ss01 + uni040E.ss01 + Ve-cy + uni0412 + Yeru-cy + uni042B + Yi-cy + uni0407 + Ze-cy + uni0417 + Zhe-cy + uni0416 + Zhe-cy.ss01 + uni0416.ss01 + _perc-circule + _perccircule + a-cy + uni0430 + a-cy.ss01 + uni0430.ss01 + be-cy + uni0431 + che-cy + uni0447 + commaaccentcomb + uni0326 + commaaccentcomb.salt + uni0326.salt + de-cy + uni0434 + de-cy.ss01 + uni0434.ss01 + dze-cy + uni0455 + e-cy + uni0454 + ef-cy + uni0444 + el-cy + uni043B + el-cy.ss01 + uni043B.ss01 + em-cy + uni043C + en-cy + uni043D + er-cy + uni0440 + er-cy.ss01 + uni0440.ss01 + ereversed-cy + uni044D + es-cy + uni0441 + euro + Euro + gacute + uni01F5 + gacute.ss01 + uni01F5.ss01 + gcommaaccent + uni0123 + gcommaaccent.ss01 + uni0123.ss01 + ge-cy + uni0433 + gheupturn-cy + uni0491 + guillemetleft + guillemotleft + guillemetright + guillemotright + ha-cy + uni0445 + hardsign-cy + uni044A + hardsign-cy.ss01 + uni044A.ss01 + hryvnia + uni20B4 + i-cy + uni0456 + ia-cy + uni044F + ia-cy.ss01 + uni044F.ss01 + idotless + dotlessi + ie-cy + uni0435 + ie-cy.ss01 + uni0435.ss01 + ii-cy + uni0438 + iishort-cy + uni0439 + io-cy + uni0451 + io-cy.ss01 + uni0451.ss01 + iu-cy + uni044E + jdotless + uni0237 + je-cy + uni0458 + ka-cy + uni043A + kcommaaccent + uni0137 + lcommaaccent + uni013C + lcommaaccent.ss01 + uni013C.ss01 + ncommaaccent + uni0146 + numero + uni2116 + numero.ss01 + uni2116.ss01 + o-cy + uni043E + onesuperior + uni00B9 + pe-cy + uni043F + rcommaaccent + uni0157 + scommaaccent + uni0219 + sha-cy + uni0448 + shcha-cy + uni0449 + softsign-cy + uni044C + softsign-cy.ss01 + uni044C.ss01 + tcedilla + uni0163 + tcedilla.ss01 + uni0163.ss01 + tcommaaccent + uni021B + tcommaaccent.ss01 + uni021B.ss01 + te-cy + uni0442 + te-cy.ss01 + uni0442.ss01 + threesuperior + uni00B3 + tse-cy + uni0446 + twosuperior + uni00B2 + u-cy + uni0443 + ushort-cy + uni045E + ve-cy + uni0432 + ve-cy.ss01 + uni0432.ss01 + yeru-cy + uni044B + yeru-cy.ss01 + uni044B.ss01 + yi-cy + uni0457 + ze-cy + uni0437 + zhe-cy + uni0436 + + public.skipExportGlyphs + + Oslash.bold + oslash.bold + _perc-circule + + public.glyphOrder + + .notdef + NULL + CR + space + A + Aacute + Abreve + Acircumflex + Adieresis + Agrave + Amacron + Aogonek + Aring + Atilde + AE + B + C + Cacute + Ccaron + Ccedilla + Ccircumflex + Cdotaccent + D + Eth + Dcaron + Dcroat + E + Eacute + Ebreve + Ecaron + Ecircumflex + Edieresis + Edotaccent + Egrave + Emacron + Eogonek + F + G + Gacute + Gbreve + Gcircumflex + Gcommaaccent + Gdotaccent + H + Hbar + Hcircumflex + I + IJ + Iacute + Ibreve + Icircumflex + Idieresis + Idotaccent + Igrave + Imacron + Iogonek + Itilde + J + Jcircumflex + K + Kcommaaccent + L + Lacute + Lcaron + Lcommaaccent + Ldot + Lslash + M + N + Nacute + Ncaron + Ncommaaccent + Eng + Ntilde + O + Oacute + Obreve + Ocircumflex + Odieresis + Ograve + Ohungarumlaut + Omacron + Oslash + Otilde + OE + P + Thorn + Q + R + Racute + Rcaron + Rcommaaccent + S + Sacute + Scaron + Scedilla + Scircumflex + Scommaaccent + Germandbls + T + Tbar + Tcaron + Tcedilla + Tcommaaccent + U + Uacute + Ubreve + Ucircumflex + Udieresis + Ugrave + Uhungarumlaut + Umacron + Uogonek + Uring + Utilde + V + W + Wacute + Wcircumflex + Wdieresis + Wgrave + X + Y + Yacute + Ycircumflex + Ydieresis + Z + Zacute + Zcaron + Zdotaccent + A.ss01 + Aacute.ss01 + Abreve.ss01 + Acircumflex.ss01 + Adieresis.ss01 + Agrave.ss01 + Amacron.ss01 + Aogonek.ss01 + Aring.ss01 + Atilde.ss01 + AE.ss01 + G.ss01 + Gacute.ss01 + Gbreve.ss01 + Gcircumflex.ss01 + Gcommaaccent.ss01 + Gdotaccent.ss01 + J.ss01 + Jcircumflex.ss01 + K.ss01 + Kcommaaccent.ss01 + M.ss01 + N.ss01 + Nacute.ss01 + Ncaron.ss01 + Ncommaaccent.ss01 + Eng.ss01 + Ntilde.ss01 + Q.ss01 + V.ss01 + W.ss01 + Wacute.ss01 + Wcircumflex.ss01 + Wdieresis.ss01 + Wgrave.ss01 + X.ss01 + Y.ss01 + Yacute.ss01 + Ycircumflex.ss01 + Ydieresis.ss01 + Z.ss01 + Zacute.ss01 + Zcaron.ss01 + Zdotaccent.ss01 + a + aacute + abreve + acircumflex + adieresis + agrave + amacron + aogonek + aring + atilde + ae + b + c + cacute + ccaron + ccedilla + ccircumflex + cdotaccent + d + eth + dcaron + dcroat + e + eacute + ebreve + ecaron + ecircumflex + edieresis + edotaccent + egrave + emacron + eogonek + f + g + gacute + gbreve + gcircumflex + gcommaaccent + gdotaccent + h + hbar + hcircumflex + i + idotless + iacute + ibreve + icircumflex + idieresis + igrave + ij + imacron + iogonek + itilde + j + jdotless + jcircumflex + k + kcommaaccent + kgreenlandic + l + lacute + lcaron + lcommaaccent + ldot + lslash + m + n + nacute + napostrophe + ncaron + ncommaaccent + eng + ntilde + o + oacute + obreve + ocircumflex + odieresis + ograve + ohungarumlaut + omacron + oslash + otilde + oe + p + thorn + q + r + racute + rcaron + rcommaaccent + s + sacute + scaron + scedilla + scircumflex + scommaaccent + germandbls + t + tbar + tcaron + tcedilla + tcommaaccent + u + uacute + ubreve + ucircumflex + udieresis + ugrave + uhungarumlaut + umacron + uogonek + uring + utilde + v + w + wacute + wcircumflex + wdieresis + wgrave + x + y + yacute + ycircumflex + ydieresis + z + zacute + zcaron + zdotaccent + a.ss01 + aacute.ss01 + abreve.ss01 + acircumflex.ss01 + adieresis.ss01 + agrave.ss01 + amacron.ss01 + aogonek.ss01 + aring.ss01 + atilde.ss01 + ae.ss01 + b.ss01 + d.ss01 + dcaron.ss01 + dcroat.ss01 + e.ss01 + eacute.ss01 + ebreve.ss01 + ecaron.ss01 + ecircumflex.ss01 + edieresis.ss01 + edotaccent.ss01 + egrave.ss01 + emacron.ss01 + eogonek.ss01 + f.ss01 + g.ss01 + gacute.ss01 + gbreve.ss01 + gcircumflex.ss01 + gcommaaccent.ss01 + gdotaccent.ss01 + l.ss01 + lacute.ss01 + lcaron.ss01 + lcommaaccent.ss01 + ldot.ss01 + lslash.ss01 + oe.ss01 + p.ss01 + q.ss01 + germandbls.ss01 + t.ss01 + tbar.ss01 + tcaron.ss01 + tcedilla.ss01 + tcommaaccent.ss01 + f_f + f_f_i + f_f_l + fi + fl + f_f.ss01 + f_f_i.ss01 + f_f_l.ss01 + fi.ss01 + fl.ss01 + ordfeminine + ordmasculine + A-cy + Be-cy + Ve-cy + Ge-cy + Gheupturn-cy + De-cy + Ie-cy + Io-cy + Zhe-cy + Ze-cy + Ii-cy + Iishort-cy + Ka-cy + El-cy + Em-cy + En-cy + O-cy + Pe-cy + Er-cy + Es-cy + Te-cy + U-cy + Ushort-cy + Ef-cy + Ha-cy + Che-cy + Tse-cy + Sha-cy + Shcha-cy + Softsign-cy + Hardsign-cy + Yeru-cy + Dze-cy + E-cy + Ereversed-cy + I-cy + Yi-cy + Iu-cy + Ia-cy + A-cy.ss01 + Zhe-cy.ss01 + Ka-cy.ss01 + Em-cy.ss01 + U-cy.ss01 + Ushort-cy.ss01 + Ha-cy.ss01 + Ia-cy.ss01 + a-cy + be-cy + ve-cy + ge-cy + gheupturn-cy + de-cy + ie-cy + io-cy + zhe-cy + ze-cy + ii-cy + iishort-cy + ka-cy + el-cy + em-cy + en-cy + o-cy + pe-cy + er-cy + es-cy + te-cy + u-cy + ushort-cy + ef-cy + ha-cy + che-cy + tse-cy + sha-cy + shcha-cy + softsign-cy + hardsign-cy + yeru-cy + dze-cy + e-cy + ereversed-cy + i-cy + yi-cy + je-cy + iu-cy + ia-cy + a-cy.ss01 + ve-cy.ss01 + de-cy.ss01 + ie-cy.ss01 + io-cy.ss01 + el-cy.ss01 + er-cy.ss01 + te-cy.ss01 + softsign-cy.ss01 + hardsign-cy.ss01 + yeru-cy.ss01 + ia-cy.ss01 + zero + one + two + three + four + five + six + seven + eight + nine + zero.osf + one.osf + two.osf + three.osf + four.osf + five.osf + six.osf + seven.osf + nine.osf + zero.tf + one.tf + two.tf + three.tf + four.tf + five.tf + six.tf + seven.tf + eight.tf + nine.tf + onesuperior + twosuperior + threesuperior + period + comma + colon + semicolon + ellipsis + exclam + exclamdown + question + questiondown + periodcentered + bullet + asterisk + numbersign + slash + backslash + parenleft + parenright + braceleft + braceright + bracketleft + bracketright + hyphen + endash + emdash + underscore + quotesinglbase + quotedblbase + quotedblleft + quotedblright + quoteleft + quoteright + guillemetleft + guillemetright + guilsinglleft + guilsinglright + quotedbl + quotesingle + cent + currency + dollar + euro + hryvnia + sterling + yen + yen.ss01 + plus + minus + multiply + divide + equal + greater + less + asciitilde + asciicircum + percent + perthousand + at + ampersand + paragraph + section + copyright + registered + trademark + degree + bar + brokenbar + dagger + daggerdbl + numero + estimated + numero.ss01 + commaaccentcomb + dieresis + dotaccent + grave + acute + hungarumlaut + circumflex + caron + breve + ring + tilde + macron + cedilla + ogonek + dieresis.case + dotaccent.case + grave.case + acute.case + hungarumlaut.case + circumflex.case + caron.case + breve.case + ring.case + tilde.case + macron.case + commaaccentcomb.salt + caron.salt + uniE01A + _perc-circule + eight.osf + ruble + Ljecyr + Njecyr + Jecyr + dzhecyr + Dzhecyr + ljecyr + njecyr + Tshecyr + Djecyr + tshecyr + djecyr + tenge + ljecyr.ss01 + njecyr.ss01 + dramsignarmn + gjecyr + kjecyr + neptune + florin + plusminus + fraction + onequarter + onehalf + threequarters + mu + lessequal + greaterequal + minute + second + Schwacyr + schwacyr + Gestrokecyr + gestrokecyr + Obarcyr + obarcyr + Entailcyr + entailcyr + Katailcyr + katailcyr + Ustraightstrokecyr + ustraightstrokecyr + Shhacyr + shhacyr + ustraightcyr + Ustraightcyr + partialdiff + increment + integral + summation + radical + infinity + Omega + pi + longs + Delta + product + notequal + proportional + approxequal + Schwa + eturned + Oslashacute + oslashacute + AEacute + aeacute + uni2010 + Aiecyr + aiecyr + uni1EBC + uni1EBD + Acaron + acaron + Gjecyr + Kjecyr + uniE000 + uniE000.alt + arrowleft + arrowup + arrowright + arrowdown + arrowdown.ss01 + arrowleft.ss01 + arrowright.ss01 + arrowup.ss01 + yi-cy.alt + Omegacyr + omegacyr + Yatcyr + yatcyr + Eiotifiedcyr + eiotifiedcyr + Ksicyr + ksicyr + Shwe-cy + Fitacyr + fitacyr + Koppacyr + Iegravecyr + Igravecyr + iegravecyr + igravecyr + Zhebrevecyr + zhebrevecyr + Abrevecyr + abrevecyr + Adieresiscyr + adieresiscyr + Iebrevecyr + iebrevecyr + Schwadieresiscyr + schwadieresiscyr + Zhedieresiscyr + zhedieresiscyr + Zedieresiscyr + zedieresiscyr + Imacroncyr + imacroncyr + Idieresiscyr + idieresiscyr + Odieresiscyr + odieresiscyr + Umacroncyr + umacroncyr + Udieresiscyr + udieresiscyr + Uacutedblcyr + uacutedblcyr + Dekomicyr + dekomicyr + Wecyr + wecyr + Qacyr + qacyr + Ylongdieresiscyr + ylongdieresiscyr + Chedieresiscyr + chedieresiscyr + Obardieresiscyr + obardieresiscyr + Ereverseddieresiscyr + ereverseddieresiscyr + Zhetailcyr + zhetailcyr + Tetailcyr + tetailcyr + Xatailcyr + xatailcyr + Chetailcyr + chetailcyr + Chekhakascyr + chekhakascyr + Getailcyr + getailcyr + Petailcyr + petailcyr + Eltailcyr + eltailcyr + Shhatailcyr + shhatailcyr + Palochkacyr + palochkacyr + Dzzhecyr + Yaecyr + yaecyr + Tetsecyr + tetsecyr + Engecyr + engecyr + kabashkcyr + Kabashkcyr + semisoftcyr + Semisoftcyr + Reversedzecyr + reversedzecyr + Elmiddlehookcyr + Enmiddlehookcyr + Enhookcyr + Kahookcyr + Pehookcyr + Gehookcyr + parenleft.case + parenright.case + hyphen.case + bracketleft.case + bracketright.case + braceleft.case + braceright.case + exclamdown.case + guillemetleft.case + guillemetright.case + endash.case + emdash.case + bullet.case + guilsinglleft.case + guilsinglright.case + arrowleft.case + arrowup.case + arrowright.case + arrowdown.case + arrowdown.ss01.case + arrowleft.ss01.case + arrowright.ss01.case + arrowup.ss01.case + Enhookleftcyr + enhookleftcyr + enhookcyr + gehookcyr + pehookcyr + kahookcyr + enmiddlehookcyr + elmiddlehookcyr + kastrokecyr + Kastrokecyr + Chevertcyr + chevertcyr + Kaverticalstrokecyr + kaverticalstrokecyr + Elhookcyr + elhookcyr + zetailcyr + Zetailcyr + Estailcyr + estailcyr + Haabkhcyr + koppacyr + ukcyr + Ukcyr + omegaroundcyr + Izhitsagravedblcyr + izhitsagravedblcyr + izhitsacyr + Izhitsacyr + Yusbigcyr + yusbigcyr + Psicyr + psicyr + Omegaroundcyr + Yuslittlecyr + yuslittlecyr + yuslittleiotifiedcyr + Yuslittleiotifiedcyr + Yusbigiotifiedcyr + yusbigiotifiedcyr + Omegatitlocyr + omegatitlocyr + Otcyr + otcyr + uni2DEE + uni2DEE.case + ertickcyr + Ertickcyr + Lhacyr + lhacyr + ensharptailcyr + Ensharptailcyr + emsharptailcyr + elsharptailcyr + ishortsharptailcyr + Ishortsharptailcyr + Emsharptailcyr + Elsharptailcyr + njekomicyr + Njekomicyr + ljekomicyr + tjekomicyr + djekomicyr + zjekomicyr + colon.case + questiondown.case + slash.case + semicolon.case + backslash.case + bar.case + brokenbar.case + dzjekomicyr + Cheabkhcyr + cheabkhcyr + cheabkhtailcyr + sjekomicyr + Sjekomicyr + Ljekomicyr + Tjekomicyr + Djekomicyr + kaaleutcyr + dzzhecyr + haabkhcyr + Dchecyr + dchecyr + dzeabkhcyr + Dzeabkhcyr + palatcombcyr + Cheabkhtailcyr + Dzjekomicyr + Zjekomicyr + rhacyr + Rhacyr + Kaaleutcyr + thousandscyr + titlocombcyr + pokrytiecombcyr + hundredthousandscombcyr + millionscombcyr + Gehookstrokecyr + gehookstrokecyr + Hahookcyr + hahookcyr + Hastrokecyr + uni1C80 + uni1C81 + uni1C82 + uni1C83 + uni1C84 + uni1C85 + uni1C86 + uni1C87 + Zemlya-cy + zemlya-cy + Dzelo-cy + dzelo-cy + DzeReversed-cy + dzeReversed-cy + Iota-cy + iota-cy + Djerv-cy + djerv-cy + UkMonograph-cy + ukMonograph-cy + OmegaBroad-cy + omegaBroad-cy + YerNeutral-cy + yerNeutral-cy + YeruBackYer-cy + yeruBackyer-cy + YatIotified-cy + yatIotified-cy + YuReversed-cy + yuReversed-cy + IotifiedA-cy + iotifieda-cy + YusClosedlittle-cy + yusClosedlittle-cy + YusBlended-cy + yusBlended-cy + YusiotifiedClosedLittle-cy + yusiotifiedClosedLittle-cy + Yn-cy + yn-cy + TseReversed-cy + tseReversed-cy + DeSoft-cy + deSoft-cy + ElSoft-cy + elSoft-cy + EmSoft-cy + emSoft-cy + OMonocular-cy + oMonocular-cy + OBinocular-cy + oBinocular-cy + ODoubleMonocular-cy + oDoubleMonocular-cy + omultiocular-cy + vzmetcomb-cy + tenmillionscomb-cy + hundredmillionscomb-cy + thousandmillionscomb-cy + Dwe-cy + dwe-cy + Dzwe-cy + dzwe-cy + Zhwe-cy + zhwe-cy + Cche-cy + cche-cy + Dzze-cy + dzze-cy + TeWithMiddleHook-cy + tewithmiddlehook-cy + Twe-cy + twe-cy + Tswe-cy + tswe-cy + Tsse-cy + tsse-cy + Tche-cy + tche-cy + Hwe-cy + hwe-cy + shwe-cy + DoubleO-cy + doubleo-cy + CrossedO-cy + crossedo-cy + hastrokecyr + uniF43A + A-cy.accented + E-cy.accented + Ii-cy.accented + O-cy.accented + U-cy.accented + Yeru-cy.accented + Ereversed-cy.accented + Iu-cy.accented + Ia-cy.accented + Io-cy.accented + uniF498 + uniF49A + uniF49C + uniF49E + uniF4C6 + uniF4CC + uniF4D2 + uniF4D4 + uniF4D6 + uniF4D8 + Zetailcyr.BSH + Estailcyr.CHU + uniF50E + uniF510 + uniF512 + uniF514 + uniF516 + uniF518 + uniF51A + uniF51C + uniF51E + Yeru-cymacron + uniF522 + uniF524 + uniF526 + uniF528 + uniF52A + uniF52C + uniF52E + uniF532 + uniF536 + uniF538 + Gestrokecyr.BSH + Estailcyr.BSH + uniF830 + uniF833 + uniF839 + uniF86F + uniF872 + uniF875 + uniF878 + uniF87B + uniF87E + apostrophemod + colontriangularmod + uni1C88 + uniF87F + uniF87C + uniF879 + uniF876 + uniF873 + uniF870 + uniF83A + uniF834 + uniF831 + zetailcyr.BSH + estailcyr.CHU + uniF50F + uniF511 + uniF513 + uniF515 + uniF517 + uniF519 + uniF51B + uniF51D + uniF51F + uniF521 + uniF523 + uniF525 + uniF527 + uniF529 + uniF52B + uniF52D + uniF52F + uniF533 + uniF537 + uniF539 + gestrokecyr.BSH + estailcyr.BSH + uniF499 + uniF49B + uniF49D + uniF49F + uniF4C7 + uniF4CD + uniF4D3 + uniF4D5 + uniF4D7 + uniF4D9 + a-cy.accented + e-cy.accented + ii-cy.accented + o-cy.accented + u-cy.accented + yeru-cy.accented + ereversed-cy.accented + iu-cy.accented + ia-cy.accented + io-cy.accented + uniF43B + at.case + dieresis.alt + dieresiscase.alt + e-cy.hist + omultiocular-cy.alt + iotifieda-cy.hist + be-cy.SRB + ve-cy.BGR + ge-cy.BGR + de-cy.BGR + zhe-cy.BGR + ze-cy.BGR + ii-cy.BGR + iishort-cy.BGR + ka-cy.BGR + el-cy.BGR + pe-cy.BGR + te-cy.BGR + tse-cy.BGR + sha-cy.BGR + shcha-cy.BGR + hardsign-cy.BGR + softsign-cy.BGR + iu-cy.BGR + yatcyr.BGR + eiotifiedcyr.BGR + yusbigiotifiedcyr.BGR + iotifieda-cy.BGR + De-cy.BGR + El-cy.BGR + Ef-cy.BGR + dieresisacute + uniF45D + uniF45E + uniF45F + uniF475 + uniF476 + uniF477 + uniF478 + uniF479 + Elsmallcyr + enclosingcirclecomb + ge-cy.SRB + pe-cy.SRB + te-cy.SRB + gjecyr.SRB + macron-fwd + macron-fwd.alt + macronacute.SRB + iegravecyr.SRB + igravecyr.SRB + flower + knightwhite + knightblack + floretteblack + florettewhite + floretteoutlinedpetalledblackeight + rookblack + bishopblack + leo + heartwhite + diamondwhite-misc + spadewhite + clubwhite + bishopwhite + heart + crossedswords + virgo + thousandscyr.dnom + bracketangleleft + bracketangleright + bracketangleleft.case + bracketangleright.case + + + diff --git a/sources/FixelDisplay-Bold.ufo/metainfo.plist b/sources/FixelDisplay-Bold.ufo/metainfo.plist new file mode 100644 index 00000000..10582b84 --- /dev/null +++ b/sources/FixelDisplay-Bold.ufo/metainfo.plist @@ -0,0 +1,10 @@ + + + + + creator + com.fontlab.ufoLib + formatVersion + 3 + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/features.fea b/sources/FixelDisplay-ExtraBold.ufo/features.fea new file mode 100644 index 00000000..302ade93 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/features.fea @@ -0,0 +1,573 @@ +#> classes +#/> otclasses +@ss01_def = [A-cy A AE Aacute Abreve Acircumflex Adieresis Agrave Amacron Aogonek Aring Atilde Em-cy Eng G Gacute Gbreve Gcircumflex Gcommaaccent Gdotaccent Ha-cy Ia-cy J Jcircumflex K Ka-cy Kcommaaccent M N Nacute Ncaron Ncommaaccent Ntilde Q U-cy Ushort-cy V W Wacute Wcircumflex Wdieresis Wgrave X Y Yacute Ycircumflex Ydieresis Z Zacute Zcaron Zdotaccent Zhe-cy a-cy a aacute abreve acircumflex adieresis ae agrave amacron aogonek aring arrowdown arrowdown.case arrowleft arrowleft.case arrowright arrowright.case arrowup arrowup.case atilde b d dcaron dcroat de-cy e eacute ebreve ecaron ecircumflex edieresis edotaccent egrave el-cy emacron eogonek er-cy f f_f f_f_i f_f_l fi fl g gacute gbreve gcircumflex gcommaaccent gdotaccent germandbls hardsign-cy ia-cy ie-cy io-cy l lacute lcaron lcommaaccent ldot ljecyr lslash njecyr numero oe p q softsign-cy t tbar tcaron tcedilla tcommaaccent te-cy ve-cy yen yeru-cy]; +@ss01 = [A-cy.ss01 A.ss01 AE.ss01 Aacute.ss01 Abreve.ss01 Acircumflex.ss01 Adieresis.ss01 Agrave.ss01 Amacron.ss01 Aogonek.ss01 Aring.ss01 Atilde.ss01 Em-cy.ss01 Eng.ss01 G.ss01 Gacute.ss01 Gbreve.ss01 Gcircumflex.ss01 Gcommaaccent.ss01 Gdotaccent.ss01 Ha-cy.ss01 Ia-cy.ss01 J.ss01 Jcircumflex.ss01 K.ss01 Ka-cy.ss01 Kcommaaccent.ss01 M.ss01 N.ss01 Nacute.ss01 Ncaron.ss01 Ncommaaccent.ss01 Ntilde.ss01 Q.ss01 U-cy.ss01 Ushort-cy.ss01 V.ss01 W.ss01 Wacute.ss01 Wcircumflex.ss01 Wdieresis.ss01 Wgrave.ss01 X.ss01 Y.ss01 Yacute.ss01 Ycircumflex.ss01 Ydieresis.ss01 Z.ss01 Zacute.ss01 Zcaron.ss01 Zdotaccent.ss01 Zhe-cy.ss01 a-cy.ss01 a.ss01 aacute.ss01 abreve.ss01 acircumflex.ss01 adieresis.ss01 ae.ss01 agrave.ss01 amacron.ss01 aogonek.ss01 aring.ss01 arrowdown.ss01 arrowdown.ss01.case arrowleft.ss01 arrowleft.ss01.case arrowright.ss01 arrowright.ss01.case arrowup.ss01 arrowup.ss01.case atilde.ss01 b.ss01 d.ss01 dcaron.ss01 dcroat.ss01 de-cy.ss01 e.ss01 eacute.ss01 ebreve.ss01 ecaron.ss01 ecircumflex.ss01 edieresis.ss01 edotaccent.ss01 egrave.ss01 el-cy.ss01 emacron.ss01 eogonek.ss01 er-cy.ss01 f.ss01 f_f.ss01 f_f_i.ss01 f_f_l.ss01 fi.ss01 fl.ss01 g.ss01 gacute.ss01 gbreve.ss01 gcircumflex.ss01 gcommaaccent.ss01 gdotaccent.ss01 germandbls.ss01 hardsign-cy.ss01 ia-cy.ss01 ie-cy.ss01 io-cy.ss01 l.ss01 lacute.ss01 lcaron.ss01 lcommaaccent.ss01 ldot.ss01 ljecyr.ss01 lslash.ss01 njecyr.ss01 numero.ss01 oe.ss01 p.ss01 q.ss01 softsign-cy.ss01 t.ss01 tbar.ss01 tcaron.ss01 tcedilla.ss01 tcommaaccent.ss01 te-cy.ss01 ve-cy.ss01 yen.ss01 yeru-cy.ss01]; +@case = [arrowdown.case arrowdown.ss01.case arrowleft.case arrowleft.ss01.case arrowright.case arrowright.ss01.case arrowup.case arrowup.ss01.case backslash.case bar.case braceleft.case braceright.case bracketleft.case bracketright.case brokenbar.case bullet.case colon.case emdash.case endash.case exclamdown.case guillemetleft.case guillemetright.case guilsinglleft.case guilsinglright.case hyphen.case parenleft.case parenright.case questiondown.case semicolon.case at.case bracketangleleft.case bracketangleright.case slash.case]; +@case_def = [arrowdown arrowdown.ss01 arrowleft arrowleft.ss01 arrowright arrowright.ss01 arrowup arrowup.ss01 backslash bar braceleft braceright bracketleft bracketright brokenbar bullet colon emdash endash exclamdown guillemetleft guillemetright guilsinglleft guilsinglright hyphen parenleft parenright questiondown semicolon at bracketangleleft bracketangleright slash]; +@cpsp = [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 Agrave Aacute Acircumflex Atilde Adieresis Aring AE Ccedilla Egrave Eacute Ecircumflex Edieresis Igrave Iacute Icircumflex Idieresis Eth Ntilde Ograve Oacute Ocircumflex Otilde Odieresis Oslash Ugrave Uacute Ucircumflex Udieresis Yacute Thorn Amacron Abreve Aogonek Cacute Ccircumflex Cdotaccent Ccaron Dcaron Dcroat Emacron Ebreve Edotaccent Eogonek Ecaron Gcircumflex Gbreve Gdotaccent Gcommaaccent Hcircumflex Hbar Itilde Imacron Ibreve Iogonek Idotaccent IJ Jcircumflex Kcommaaccent Lacute Lcommaaccent Lcaron Ldot Lslash Nacute Ncommaaccent Ncaron Eng Omacron Obreve Ohungarumlaut OE Racute Rcommaaccent Rcaron Sacute Scircumflex Scedilla Scaron Tcedilla Tcaron Tbar Utilde Umacron Ubreve Uring Uhungarumlaut Uogonek Wcircumflex Ycircumflex Ydieresis Zacute Zdotaccent Zcaron Schwa Acaron Gacute AEacute Oslashacute Scommaaccent Tcommaaccent Delta Omega Iegravecyr uniF43A A-cy.accented E-cy.accented Ii-cy.accented O-cy.accented U-cy.accented Yeru-cy.accented Ereversed-cy.accented Iu-cy.accented Ia-cy.accented Io-cy.accented uniF498 uniF49A uniF49C uniF49E uniF4C6 uniF4CC uniF4D2 uniF4D4 uniF4D6 uniF4D8 uniF50E uniF510 uniF512 uniF514 uniF516 uniF518 uniF51A uniF51C uniF51E Yeru-cymacron uniF522 uniF524 uniF526 uniF528 uniF52A uniF52C uniF52E uniF532 uniF536 uniF538 uniF830 uniF833 uniF839 uniF86F uniF872 uniF875 uniF878 uniF87B uniF87E Io-cy Djecyr Gjecyr E-cy Dze-cy I-cy Yi-cy Jecyr Ljecyr Njecyr Tshecyr Kjecyr Igravecyr Ushort-cy Dzhecyr A-cy Be-cy Ve-cy Ge-cy De-cy Ie-cy Zhe-cy Ze-cy Ii-cy Iishort-cy Ka-cy El-cy Em-cy En-cy O-cy Pe-cy Er-cy Es-cy Te-cy U-cy Ef-cy Ha-cy Tse-cy Che-cy Sha-cy Shcha-cy Hardsign-cy Yeru-cy Softsign-cy Ereversed-cy Iu-cy Ia-cy Omegacyr Yatcyr Eiotifiedcyr Yuslittlecyr Yuslittleiotifiedcyr Yusbigcyr Yusbigiotifiedcyr Ksicyr Psicyr Fitacyr Izhitsacyr Izhitsagravedblcyr Ukcyr Omegaroundcyr Omegatitlocyr Otcyr Koppacyr Ishortsharptailcyr Semisoftcyr Ertickcyr Gheupturn-cy Gestrokecyr Gehookcyr Zhetailcyr Zetailcyr Katailcyr Kaverticalstrokecyr Kastrokecyr Kabashkcyr Entailcyr Engecyr Pehookcyr Haabkhcyr Estailcyr Tetailcyr Ustraightcyr Ustraightstrokecyr Xatailcyr Tetsecyr Chetailcyr Chevertcyr Shhacyr Cheabkhcyr Cheabkhtailcyr Palochkacyr Zhebrevecyr Kahookcyr Elsharptailcyr Enhookcyr Ensharptailcyr Chekhakascyr Emsharptailcyr Abrevecyr Adieresiscyr Aiecyr Iebrevecyr Schwacyr Schwadieresiscyr Zhedieresiscyr Zedieresiscyr Dzeabkhcyr Imacroncyr Idieresiscyr Odieresiscyr Obarcyr Obardieresiscyr Ereverseddieresiscyr Umacroncyr Udieresiscyr Uacutedblcyr Chedieresiscyr Getailcyr Ylongdieresiscyr Gehookstrokecyr Hahookcyr Hastrokecyr Dekomicyr Djekomicyr Zjekomicyr Dzjekomicyr Ljekomicyr Njekomicyr Sjekomicyr Tjekomicyr Reversedzecyr Elhookcyr Lhacyr Rhacyr Yaecyr Qacyr Wecyr Kaaleutcyr Elmiddlehookcyr Enmiddlehookcyr Petailcyr Shhatailcyr Enhookleftcyr Dzzhecyr Dchecyr Eltailcyr Wgrave Wacute Wdieresis Germandbls uni1EBC Zemlya-cy Dzelo-cy DzeReversed-cy Iota-cy Djerv-cy UkMonograph-cy OmegaBroad-cy YerNeutral-cy YeruBackYer-cy YatIotified-cy YuReversed-cy IotifiedA-cy YusClosedlittle-cy YusBlended-cy YusiotifiedClosedLittle-cy Yn-cy TseReversed-cy DeSoft-cy ElSoft-cy EmSoft-cy OMonocular-cy OBinocular-cy ODoubleMonocular-cy Dwe-cy Dzwe-cy Zhwe-cy Cche-cy Dzze-cy TeWithMiddleHook-cy Twe-cy Tswe-cy Tsse-cy Tche-cy Hwe-cy Shwe-cy DoubleO-cy CrossedO-cy A-cy.ss01 A.ss01 AE.ss01 Aacute.ss01 Abreve.ss01 Acircumflex.ss01 Adieresis.ss01 Agrave.ss01 Amacron.ss01 Aogonek.ss01 Aring.ss01 Atilde.ss01 Em-cy.ss01 Eng.ss01 G.ss01 Gacute.ss01 Gbreve.ss01 Gcircumflex.ss01 Gcommaaccent.ss01 Gdotaccent.ss01 Ha-cy.ss01 Ia-cy.ss01 J.ss01 Jcircumflex.ss01 K.ss01 Ka-cy.ss01 Kcommaaccent.ss01 M.ss01 N.ss01 Nacute.ss01 Ncaron.ss01 Ncommaaccent.ss01 Ntilde.ss01 Q.ss01 U-cy.ss01 Ushort-cy.ss01 V.ss01 W.ss01 Wacute.ss01 Wcircumflex.ss01 Wdieresis.ss01 Wgrave.ss01 X.ss01 Y.ss01 Yacute.ss01 Ycircumflex.ss01 Ydieresis.ss01 Z.ss01 Zacute.ss01 Zcaron.ss01 Zdotaccent.ss01 Zetailcyr.BSH Gestrokecyr.BSH Estailcyr.BSH Estailcyr.CHU Zhe-cy.ss01]; +@locl_BGR = [De-cy.BGR Ef-cy.BGR El-cy.BGR de-cy.BGR eiotifiedcyr.BGR el-cy.BGR ge-cy.BGR hardsign-cy.BGR ii-cy.BGR iishort-cy.BGR iotifieda-cy.BGR iu-cy.BGR ka-cy.BGR pe-cy.BGR sha-cy.BGR shcha-cy.BGR softsign-cy.BGR te-cy.BGR tse-cy.BGR ve-cy.BGR yatcyr.BGR yusbigiotifiedcyr.BGR ze-cy.BGR zhe-cy.BGR]; +@locl_def = [De-cy Ef-cy El-cy de-cy eiotifiedcyr el-cy ge-cy hardsign-cy ii-cy iishort-cy iotifieda-cy iu-cy ka-cy pe-cy sha-cy shcha-cy softsign-cy te-cy tse-cy ve-cy yatcyr yusbigiotifiedcyr ze-cy zhe-cy]; +@locl.SRB = [be-cy.SRB iegravecyr.SRB igravecyr.SRB]; +@loclSRB_def = [be-cy iegravecyr igravecyr]; +@accent = [grave acute.case grave.case acute]; +@pics = [neptune leo virgo bishopwhite knightwhite rookblack bishopblack knightblack heartwhite diamondwhite-misc spadewhite heart clubwhite crossedswords flower floretteblack florettewhite floretteoutlinedpetalledblackeight]; +@pics_def = [A B C D E F G H I J K L M N O P Q R]; +#/< otclasses + +#/> tags +@tag.omultiocular-cy.alt = [omultiocular-cy]; +@tag.yi-cy_yi-cy.alt = [uniE000]; +#/< tags +#< classes + +# automatic +@Uppercase = [ A Aacute Abreve Acircumflex Adieresis Agrave Amacron Aogonek Aring Atilde AE B C Cacute Ccaron Ccedilla Ccircumflex Cdotaccent D Eth Dcaron Dcroat E Eacute Ebreve Ecaron Ecircumflex Edieresis Edotaccent Egrave Emacron Eogonek F G Gacute Gbreve Gcircumflex Gcommaaccent Gdotaccent H Hbar Hcircumflex I IJ Iacute Ibreve Icircumflex Idieresis Idotaccent Igrave Imacron Iogonek Itilde J Jcircumflex K Kcommaaccent L Lacute Lcaron Lcommaaccent Ldot Lslash M N Nacute Ncaron Ncommaaccent Eng Ntilde O Oacute Obreve Ocircumflex Odieresis Ograve Ohungarumlaut Omacron Oslash Otilde OE P Thorn Q R Racute Rcaron Rcommaaccent S Sacute Scaron Scedilla Scircumflex Scommaaccent Germandbls T Tbar Tcaron Tcedilla Tcommaaccent U Uacute Ubreve Ucircumflex Udieresis Ugrave Uhungarumlaut Umacron Uogonek Uring Utilde V W Wacute Wcircumflex Wdieresis Wgrave X Y Yacute Ycircumflex Ydieresis Z Zacute Zcaron Zdotaccent A.ss01 Aacute.ss01 Abreve.ss01 Acircumflex.ss01 Adieresis.ss01 Agrave.ss01 Amacron.ss01 Aogonek.ss01 Aring.ss01 Atilde.ss01 AE.ss01 G.ss01 Gacute.ss01 Gbreve.ss01 Gcircumflex.ss01 Gcommaaccent.ss01 Gdotaccent.ss01 J.ss01 Jcircumflex.ss01 K.ss01 Kcommaaccent.ss01 M.ss01 N.ss01 Nacute.ss01 Ncaron.ss01 Ncommaaccent.ss01 Eng.ss01 Ntilde.ss01 Q.ss01 V.ss01 W.ss01 Wacute.ss01 Wcircumflex.ss01 Wdieresis.ss01 Wgrave.ss01 X.ss01 Y.ss01 Yacute.ss01 Ycircumflex.ss01 Ydieresis.ss01 Z.ss01 Zacute.ss01 Zcaron.ss01 Zdotaccent.ss01 A-cy Be-cy Ve-cy Ge-cy Gheupturn-cy De-cy Ie-cy Io-cy Zhe-cy Ze-cy Ii-cy Iishort-cy Ka-cy El-cy Em-cy En-cy O-cy Pe-cy Er-cy Es-cy Te-cy U-cy Ushort-cy Ef-cy Ha-cy Che-cy Tse-cy Sha-cy Shcha-cy Softsign-cy Hardsign-cy Yeru-cy Dze-cy E-cy Ereversed-cy I-cy Yi-cy Iu-cy Ia-cy A-cy.ss01 Zhe-cy.ss01 Ka-cy.ss01 Em-cy.ss01 U-cy.ss01 Ushort-cy.ss01 Ha-cy.ss01 Ia-cy.ss01 ]; + +# Prefix: Languagesystems +# automatic +languagesystem DFLT dflt; + +languagesystem latn dflt; +languagesystem latn ROM; +languagesystem latn MOL; +languagesystem latn CAT; +languagesystem cyrl dflt; +languagesystem cyrl BGR; +languagesystem cyrl BSH; +languagesystem cyrl CHU; +languagesystem cyrl SRB; +languagesystem cyrl MKD; + +lookup liga_accent { + sub @accent by [grave grave grave grave]; +} liga_accent; +feature aalt { +# Access All Alternates + +#> feature + feature locl; + feature sups; + feature case; + feature lnum; + feature pnum; + feature tnum; + feature onum; + feature salt; + feature ss01; + feature hist; +#< feature +} aalt; +feature ccmp { +# automatic +lookup ccmp_Other_1 { + @Markscomb = [dieresis dotaccent grave acute hungarumlaut circumflex caron breve ring tilde macron]; + @MarkscombCase = [dieresis.case dotaccent.case grave.case acute.case hungarumlaut.case circumflex.case caron.case breve.case ring.case tilde.case macron.case]; + sub @Markscomb @Markscomb' by @MarkscombCase; + sub @cpsp @Markscomb' by @MarkscombCase; +} ccmp_Other_1; + +lookup ccmp_Other_2 { + sub @Markscomb' @MarkscombCase by @MarkscombCase; + sub @MarkscombCase @Markscomb' by @MarkscombCase; +} ccmp_Other_2; +} ccmp; + +feature locl { +# automatic + +script latn; + language ROM; + language MOL; + sub Scedilla by Scommaaccent; + sub scedilla by scommaaccent; + sub Tcedilla by Tcommaaccent; + sub tcedilla by tcommaaccent; + +script latn; + language CAT; + sub l' periodcentered' l by ldot; + sub L' periodcentered' L by Ldot; + +script cyrl; # Cyrillic + language SRB ; # Serbian + + lookup locl_SRB_MCD { + # GSUB lookup 20, type 11 (Single) + sub @loclSRB_def by @locl.SRB; + } locl_SRB_MCD; + + language MKD ; # Serbian + lookup locl_SRB_MCD; + + language BSH ; # Bashkir + sub [Gestrokecyr gestrokecyr Zetailcyr zetailcyr] by [Gestrokecyr.BSH gestrokecyr.BSH Zetailcyr.BSH zetailcyr.BSH]; + sub [Estailcyr estailcyr] by [Estailcyr.BSH estailcyr.BSH]; + + language CHU ; # Chuvash + sub [Estailcyr estailcyr] by [Estailcyr.CHU estailcyr.CHU]; + + language BGR ; # Bulgarian + sub @locl_def by @locl_BGR; + +} locl; + +feature sups { +# Superscript + +#> feature + sub one by onesuperior; + sub three by threesuperior; + sub two by twosuperior; +#< feature +} sups; +feature ordn { +# Ordinals + +#> feature + sub [zero one two three four five six seven eight nine] [A a]' by ordfeminine; + sub [zero one two three four five six seven eight nine] [O o]' by ordmasculine; + sub N o period by numero; +#< feature +} ordn; +feature case { +# Case Sensitive Forms + +#> feature + + sub @case_def by @case; + +#< feature +} case; +feature liga { +# Standard Ligatures + +#> feature +sub f f i by f_f_i; +sub f f l by f_f_l; +sub f f by f_f; +sub f i by fi; +sub f l by fl; +sub yi-cy yi-cy by uniE000; +sub hyphen greater by arrowright; +sub less hyphen by arrowleft; +sub backslash bar slash by arrowdown; +sub slash bar backslash by arrowup; + + lookup accent_2 { + sub E-cy @accent' lookup liga_accent; + sub I-cy @accent' lookup liga_accent; + sub Yi-cy @accent' lookup liga_accent; + sub A-cy @accent' lookup liga_accent; + sub Ie-cy @accent' lookup liga_accent; + sub Ii-cy @accent' lookup liga_accent; + sub O-cy @accent' lookup liga_accent; + sub U-cy @accent' lookup liga_accent; + sub Yeru-cy @accent' lookup liga_accent; + sub Ereversed-cy @accent' lookup liga_accent; + sub Iu-cy @accent' lookup liga_accent; + sub Ia-cy @accent' lookup liga_accent; + sub Io-cy @accent' lookup liga_accent; + sub Yatcyr @accent' lookup liga_accent; + + sub e-cy @accent' lookup liga_accent; + sub i-cy @accent' lookup liga_accent; + sub yi-cy @accent' lookup liga_accent; + sub a-cy @accent' lookup liga_accent; + sub ie-cy @accent' lookup liga_accent; + sub ii-cy @accent' lookup liga_accent; + sub o-cy @accent' lookup liga_accent; + sub u-cy @accent' lookup liga_accent; + sub yeru-cy @accent' lookup liga_accent; + sub ereversed-cy @accent' lookup liga_accent; + sub iu-cy @accent' lookup liga_accent; + sub ia-cy @accent' lookup liga_accent; + sub io-cy @accent' lookup liga_accent; + sub yatcyr @accent' lookup liga_accent; + } accent_2; + + lookup accent_3 { + sub E-cy grave by uniF45D; + sub I-cy grave by uniF45E; + sub Yi-cy grave by uniF45F; + sub A-cy grave by A-cy.accented; + sub Ie-cy grave by E-cy.accented; + sub Ii-cy grave by Ii-cy.accented; + sub O-cy grave by O-cy.accented; + sub U-cy grave by U-cy.accented; + sub Yeru-cy grave by Yeru-cy.accented; + sub Ereversed-cy grave by Ereversed-cy.accented; + sub Iu-cy grave by Iu-cy.accented; + sub Ia-cy grave by Ia-cy.accented; + sub Io-cy grave by Io-cy.accented; + sub Yatcyr grave by uniF478; + + sub e-cy grave by uniF475; + sub i-cy grave by uniF476; + sub yi-cy grave by uniF477; + sub a-cy grave by a-cy.accented; + sub ie-cy grave by e-cy.accented; + sub ii-cy grave by ii-cy.accented; + sub o-cy grave by o-cy.accented; + sub u-cy grave by u-cy.accented; + sub yeru-cy grave by yeru-cy.accented; + sub ereversed-cy grave by ereversed-cy.accented; + sub iu-cy grave by iu-cy.accented; + sub ia-cy grave by ia-cy.accented; + sub io-cy grave by io-cy.accented; + sub yatcyr grave by uniF479; + } accent_3; + +#< feature +} liga; +feature dlig { +# Discretionary Ligatures + +#> feature + +sub M a c P a w l o g o by uniE01A; +sub M P a w l o g o by uniE01A; +sub M P l o g o by uniE01A; +sub M A C P A W L O G O by uniE01A; +sub m a c p a w l o g o by uniE01A; +sub t r i d e n t by neptune; +sub t r y z u b by neptune; +sub u k r a i n e s i g n by neptune; +sub T R I D E N T by neptune; +sub T R Y Z U B by neptune; +sub U k r a i n e S i g n by neptune; +sub T r y z u b by neptune; +sub T r i d e n t by neptune; +sub Te-cy Er-cy Ii-cy Ze-cy U-cy Be-cy by neptune; + +#< feature +} dlig; +feature lnum { +# Lining Figures + +#> feature + sub eight.osf by eight.tf; + sub eight by eight.tf; + sub five.osf by five.tf; + sub five by five.tf; + sub four.osf by four.tf; + sub four by four.tf; + sub nine.osf by nine.tf; + sub nine by nine.tf; + sub one.osf by one.tf; + sub one by one.tf; + sub seven.osf by seven.tf; + sub seven by seven.tf; + sub six.osf by six.tf; + sub six by six.tf; + sub three.osf by three.tf; + sub three by three.tf; + sub two.osf by two.tf; + sub two by two.tf; + sub zero.osf by zero.tf; + sub zero by zero.tf; +#< feature +} lnum; +feature pnum { +# Proportional Figures + +#> feature + sub eight.tf by eight.osf; + sub eight by eight.osf; + sub five.tf by five.osf; + sub five by five.osf; + sub four.tf by four.osf; + sub four by four.osf; + sub nine.tf by nine.osf; + sub nine by nine.osf; + sub one.tf by one.osf; + sub one by one.osf; + sub seven.tf by seven.osf; + sub seven by seven.osf; + sub six.tf by six.osf; + sub six by six.osf; + sub three.tf by three.osf; + sub three by three.osf; + sub two.tf by two.osf; + sub two by two.osf; + sub zero.tf by zero.osf; + sub zero by zero.osf; +#< feature +} pnum; +feature tnum { +# Tabular Figures + +#> feature + sub eight by eight.tf; + sub eight.osf by eight.tf; + sub five by five.tf; + sub five.osf by five.tf; + sub four by four.tf; + sub four.osf by four.tf; + sub nine by nine.tf; + sub nine.osf by nine.tf; + sub one by one.tf; + sub one.osf by one.tf; + sub seven by seven.tf; + sub seven.osf by seven.tf; + sub six by six.tf; + sub six.osf by six.tf; + sub three by three.tf; + sub three.osf by three.tf; + sub two by two.tf; + sub two.osf by two.tf; + sub zero by zero.tf; + sub zero.osf by zero.tf; +#< feature +} tnum; +feature onum { +# Oldstyle Figures + +#> feature + sub eight by eight.osf; + sub eight.tf by eight.osf; + sub five by five.osf; + sub five.tf by five.osf; + sub four by four.osf; + sub four.tf by four.osf; + sub nine by nine.osf; + sub nine.tf by nine.osf; + sub one by one.osf; + sub one.tf by one.osf; + sub seven by seven.osf; + sub seven.tf by seven.osf; + sub six by six.osf; + sub six.tf by six.osf; + sub three by three.osf; + sub three.tf by three.osf; + sub two by two.osf; + sub two.tf by two.osf; + sub zero by zero.osf; + sub zero.tf by zero.osf; +#< feature +} onum; +feature salt { +# Stylistic Alternates + +#> feature + sub A from [A.ss01]; + sub A-cy from [A-cy.ss01]; + sub AE from [AE.ss01]; + sub Aacute from [Aacute.ss01]; + sub Abreve from [Abreve.ss01]; + sub Acircumflex from [Acircumflex.ss01]; + sub Adieresis from [Adieresis.ss01]; + sub Agrave from [Agrave.ss01]; + sub Amacron from [Amacron.ss01]; + sub Aogonek from [Aogonek.ss01]; + sub Aring from [Aring.ss01]; + sub Atilde from [Atilde.ss01]; + sub Em-cy from [Em-cy.ss01]; + sub Eng from [Eng.ss01]; + sub G from [G.ss01]; + sub Gacute from [Gacute.ss01]; + sub Gbreve from [Gbreve.ss01]; + sub Gcircumflex from [Gcircumflex.ss01]; + sub Gcommaaccent from [Gcommaaccent.ss01]; + sub Gdotaccent from [Gdotaccent.ss01]; + sub Ha-cy from [Ha-cy.ss01]; + sub Ia-cy from [Ia-cy.ss01]; + sub J from [J.ss01]; + sub Jcircumflex from [Jcircumflex.ss01]; + sub K from [K.ss01]; + sub Ka-cy from [Ka-cy.ss01]; + sub Kcommaaccent from [Kcommaaccent.ss01]; + sub M from [M.ss01]; + sub N from [N.ss01]; + sub Nacute from [Nacute.ss01]; + sub Ncaron from [Ncaron.ss01]; + sub Ncommaaccent from [Ncommaaccent.ss01]; + sub Ntilde from [Ntilde.ss01]; + sub Q from [Q.ss01]; + sub U-cy from [U-cy.ss01]; + sub Ushort-cy from [Ushort-cy.ss01]; + sub V from [V.ss01]; + sub W from [W.ss01]; + sub Wacute from [Wacute.ss01]; + sub Wcircumflex from [Wcircumflex.ss01]; + sub Wdieresis from [Wdieresis.ss01]; + sub Wgrave from [Wgrave.ss01]; + sub X from [X.ss01]; + sub Y from [Y.ss01]; + sub Yacute from [Yacute.ss01]; + sub Ycircumflex from [Ycircumflex.ss01]; + sub Ydieresis from [Ydieresis.ss01]; + sub Z from [Z.ss01]; + sub Zacute from [Zacute.ss01]; + sub Zcaron from [Zcaron.ss01]; + sub Zdotaccent from [Zdotaccent.ss01]; + sub Zhe-cy from [Zhe-cy.ss01]; + sub a from [a.ss01]; + sub a-cy from [a-cy.ss01]; + sub aacute from [aacute.ss01]; + sub abreve from [abreve.ss01]; + sub acircumflex from [acircumflex.ss01]; + sub adieresis from [adieresis.ss01]; + sub ae from [ae.ss01]; + sub agrave from [agrave.ss01]; + sub amacron from [amacron.ss01]; + sub aogonek from [aogonek.ss01]; + sub aring from [aring.ss01]; + sub arrowdown from [arrowdown.ss01]; + sub arrowleft from [arrowleft.ss01]; + sub arrowright from [arrowright.ss01]; + sub arrowup from [arrowup.ss01]; + sub atilde from [atilde.ss01]; + sub b from [b.ss01]; + sub caron from [caron.salt]; + sub commaaccentcomb from [commaaccentcomb.salt]; + sub d from [d.ss01]; + sub dcaron from [dcaron.ss01]; + sub dcroat from [dcroat.ss01]; + sub de-cy from [de-cy.ss01]; + sub e from [e.ss01]; + sub eacute from [eacute.ss01]; + sub ebreve from [ebreve.ss01]; + sub ecaron from [ecaron.ss01]; + sub ecircumflex from [ecircumflex.ss01]; + sub edieresis from [edieresis.ss01]; + sub edotaccent from [edotaccent.ss01]; + sub egrave from [egrave.ss01]; + sub el-cy from [el-cy.ss01]; + sub emacron from [emacron.ss01]; + sub eogonek from [eogonek.ss01]; + sub er-cy from [er-cy.ss01]; + sub f from [f.ss01]; + sub f_f from [f_f.ss01]; + sub f_f_i from [f_f_i.ss01]; + sub f_f_l from [f_f_l.ss01]; + sub fi from [fi.ss01]; + sub fl from [fl.ss01]; + sub g from [g.ss01]; + sub gacute from [gacute.ss01]; + sub gbreve from [gbreve.ss01]; + sub gcircumflex from [gcircumflex.ss01]; + sub gcommaaccent from [gcommaaccent.ss01]; + sub gdotaccent from [gdotaccent.ss01]; + sub germandbls from [germandbls.ss01]; + sub hardsign-cy from [hardsign-cy.ss01]; + sub ia-cy from [ia-cy.ss01]; + sub ie-cy from [ie-cy.ss01]; + sub io-cy from [io-cy.ss01]; + sub l from [l.ss01]; + sub lacute from [lacute.ss01]; + sub lcaron from [lcaron.ss01]; + sub lcommaaccent from [lcommaaccent.ss01]; + sub ldot from [ldot.ss01]; + sub ljecyr from [ljecyr.ss01]; + sub lslash from [lslash.ss01]; + sub njecyr from [njecyr.ss01]; + sub numero from [numero.ss01]; + sub oe from [oe.ss01]; + sub p from [p.ss01]; + sub q from [q.ss01]; + sub softsign-cy from [softsign-cy.ss01]; + sub t from [t.ss01]; + sub tbar from [tbar.ss01]; + sub tcaron from [tcaron.ss01]; + sub tcedilla from [tcedilla.ss01]; + sub tcommaaccent from [tcommaaccent.ss01]; + sub te-cy from [te-cy.ss01]; + sub uniE000 from [uniE000.alt]; + sub ve-cy from [ve-cy.ss01]; + sub yen from [yen.ss01]; + sub yeru-cy from [yeru-cy.ss01]; +#< feature +} salt; +feature ss03 { +# Stylistic Set 01–20 + +#> feature + featureNames { + name "Bulgarian forms"; + name 1 "Bulgarian forms"; + }; + + sub @locl_def by @locl_BGR; + +#< feature +} ss03; +feature ss04 { +# Stylistic Set 01–20 + +#> feature + featureNames { + name "Serbian/Macedonian forms"; + name 1 "Serbian/Macedonian forms"; + }; + + sub @loclSRB_def by @locl.SRB; + +#< feature +} ss04; +feature ss01 { +# Stylistic Set 01–20 + +#> feature + + featureNames { + name "Humanistic forms"; + name 1 "Humanistic forms"; + }; + + sub @ss01_def by @ss01; + +#< feature +} ss01; +feature ss05 { +# Stylistic Set 01–20 + +#> feature + + featureNames { + name "Ukrainian pictograms"; + name 1 "Ukrainian pictograms"; + }; + + sub @pics_def by @pics; + +#< feature +} ss05; +feature hist { +# Historical Forms + +#> feature + sub e-cy by e-cy.hist; + sub s by longs; +#< feature +} hist; +feature frac { +# Fractions + +#> feature +lookup frac_precomposed { + + sub one slash four by onequarter; + sub one slash two by onehalf; + sub three slash four by threequarters; + sub one fraction four by onequarter; + sub one fraction two by onehalf; + sub three fraction four by threequarters; +} frac_precomposed; +#< feature +} frac; +feature cpsp { +# Capital Spacing + +#> feature + + pos @cpsp <5 0 10 0>; + +#< feature +} cpsp; +feature dnom { +# Denominator + +#> feature + sub thousandscyr by thousandscyr.dnom; +#< feature +} dnom; diff --git a/sources/FixelDisplay-ExtraBold.ufo/fontinfo.plist b/sources/FixelDisplay-ExtraBold.ufo/fontinfo.plist new file mode 100644 index 00000000..1d97cdbc --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/fontinfo.plist @@ -0,0 +1,207 @@ + + + + + ascender + 720 + capHeight + 700 + descender + -200 + familyName + Fixel Display + guidelines + + + angle + 0 + name + m + x + 0 + y + -963.8 + + + angle + 0 + name + m + x + 0 + y + 189 + + + italicAngle + 0 + openTypeGaspRangeRecords + + + rangeGaspBehavior + + 0 + 1 + 2 + 3 + + rangeMaxPPEM + 65535 + + + openTypeHeadCreated + 2023/09/05 09:25:48 + openTypeHeadFlags + + + openTypeHheaAscender + 720 + openTypeHheaCaretOffset + -0 + openTypeHheaDescender + -190 + openTypeHheaLineGap + 100 + openTypeNameDesigner + AlfaBravo + openTypeNameDesignerURL + https://alfabravo.design/ + openTypeNameManufacturer + Kyrylo Tkachov, Marchela Mozhyna, Serhii Makarenko, Maria Weinstein, Zakhar Kryvoshyya + + openTypeNameManufacturerURL + https://macpaw.com/ + openTypeNamePreferredFamilyName + Fixel Display + openTypeNamePreferredSubfamilyName + ExtraBold + openTypeNameVersion + Version 1.200 + openTypeOS2CodePageRanges + + 0 + 1 + 2 + 4 + 7 + 29 + + openTypeOS2Panose + + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + + openTypeOS2Selection + + + openTypeOS2StrikeoutPosition + 300 + openTypeOS2StrikeoutSize + 50 + openTypeOS2SubscriptXOffset + -0 + openTypeOS2SubscriptXSize + 650 + openTypeOS2SubscriptYOffset + 75 + openTypeOS2SubscriptYSize + 600 + openTypeOS2SuperscriptXOffset + -0 + openTypeOS2SuperscriptXSize + 650 + openTypeOS2SuperscriptYOffset + 350 + openTypeOS2SuperscriptYSize + 600 + openTypeOS2Type + + 2 + + openTypeOS2TypoAscender + 720 + openTypeOS2TypoDescender + -200 + openTypeOS2TypoLineGap + 290 + openTypeOS2UnicodeRanges + + 0 + 1 + 2 + 9 + 31 + 33 + 60 + + openTypeOS2WeightClass + 800 + openTypeOS2WidthClass + 5 + openTypeOS2WinAscent + 750 + openTypeOS2WinDescent + 250 + postscriptBlueFuzz + 1 + postscriptBlueScale + 0.039625 + postscriptBlueShift + 7 + postscriptBlueValues + + -20 + 0 + + postscriptFontName + FixelDisplay-ExtraBold + postscriptForceBold + + postscriptFullName + Fixel Display ExtraBold + postscriptIsFixedPitch + + postscriptStemSnapH + + 69 + 74 + 76 + 80 + 99 + + postscriptStemSnapV + + 74 + 80 + 93 + + postscriptUnderlinePosition + -100 + postscriptUnderlineThickness + 50 + postscriptWeightName + Extra Bold + styleMapFamilyName + Fixel Display ExtraBold + styleMapStyleName + regular + styleName + ExtraBold + unitsPerEm + 1000 + versionMajor + 1 + versionMinor + 200 + xHeight + 520 + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/A_-cy.accented.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/A_-cy.accented.glif new file mode 100644 index 00000000..ac057a95 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/A_-cy.accented.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+acute.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/A_-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/A_-cy.glif new file mode 100644 index 00000000..31ee6212 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/A_-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/A_-cy.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/A_-cy.ss01.glif new file mode 100644 index 00000000..45d81ba0 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/A_-cy.ss01.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + com.fontlab.recipe + A + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/A_.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/A_.glif new file mode 100644 index 00000000..a197d66e --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/A_.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/A_.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/A_.ss01.glif new file mode 100644 index 00000000..c6e1be6a --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/A_.ss01.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/A_E_.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/A_E_.glif new file mode 100644 index 00000000..b3899903 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/A_E_.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + A + com.fontlab.metricsRight + E + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/A_E_.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/A_E_.ss01.glif new file mode 100644 index 00000000..4ee1a565 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/A_E_.ss01.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + A.ss01 + com.fontlab.metricsRight + E + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/A_E_acute.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/A_E_acute.glif new file mode 100644 index 00000000..12d6767d --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/A_E_acute.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + AE+acute.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/A_acute.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/A_acute.glif new file mode 100644 index 00000000..fea8dec5 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/A_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+acute.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/A_acute.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/A_acute.ss01.glif new file mode 100644 index 00000000..d4a05c89 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/A_acute.ss01.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + A.ss01+acute.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/A_breve.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/A_breve.glif new file mode 100644 index 00000000..7cd0c8ba --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/A_breve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+breve.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/A_breve.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/A_breve.ss01.glif new file mode 100644 index 00000000..fd6d2987 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/A_breve.ss01.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + A.ss01+breve.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/A_brevecyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/A_brevecyr.glif new file mode 100644 index 00000000..9f3d24e0 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/A_brevecyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+breve.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/A_caron.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/A_caron.glif new file mode 100644 index 00000000..4c65f3a7 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/A_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+caron.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/A_circumflex.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/A_circumflex.glif new file mode 100644 index 00000000..a8519c02 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/A_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+circumflex.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/A_circumflex.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/A_circumflex.ss01.glif new file mode 100644 index 00000000..eda67344 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/A_circumflex.ss01.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + A.ss01+circumflex.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/A_dieresis.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/A_dieresis.glif new file mode 100644 index 00000000..88901ec7 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/A_dieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+dieresis.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/A_dieresis.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/A_dieresis.ss01.glif new file mode 100644 index 00000000..ce0bb9ad --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/A_dieresis.ss01.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + A.ss01+dieresis.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/A_dieresiscyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/A_dieresiscyr.glif new file mode 100644 index 00000000..2e7915f9 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/A_dieresiscyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/A_grave.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/A_grave.glif new file mode 100644 index 00000000..d313f75f --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/A_grave.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+grave.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/A_grave.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/A_grave.ss01.glif new file mode 100644 index 00000000..e0f0038d --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/A_grave.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A.ss01+grave.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/A_iecyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/A_iecyr.glif new file mode 100644 index 00000000..d67e1d14 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/A_iecyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + AE + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/A_macron.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/A_macron.glif new file mode 100644 index 00000000..2ee6821c --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/A_macron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+macron.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/A_macron.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/A_macron.ss01.glif new file mode 100644 index 00000000..9808b3cb --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/A_macron.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A.ss01+macron.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/A_ogonek.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/A_ogonek.glif new file mode 100644 index 00000000..7946431b --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/A_ogonek.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+ogonek + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/A_ogonek.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/A_ogonek.ss01.glif new file mode 100644 index 00000000..a04b20ce --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/A_ogonek.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A.ss01+ogonek + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/A_ring.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/A_ring.glif new file mode 100644 index 00000000..f5fabb2f --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/A_ring.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+ring.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/A_ring.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/A_ring.ss01.glif new file mode 100644 index 00000000..13ab92d1 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/A_ring.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A.ss01+ring.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/A_tilde.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/A_tilde.glif new file mode 100644 index 00000000..9ba32ba6 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/A_tilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+tilde.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/A_tilde.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/A_tilde.ss01.glif new file mode 100644 index 00000000..52a3e70b --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/A_tilde.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A.ss01+tilde.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/B_.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/B_.glif new file mode 100644 index 00000000..a1d19302 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/B_.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/B_e-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/B_e-cy.glif new file mode 100644 index 00000000..216e9b74 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/B_e-cy.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + B-10 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/C_.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/C_.glif new file mode 100644 index 00000000..df5c9498 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/C_.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/C_R_.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/C_R_.glif new file mode 100644 index 00000000..a38a285e --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/C_R_.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/C_acute.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/C_acute.glif new file mode 100644 index 00000000..48cde7bc --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/C_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+acute.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/C_caron.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/C_caron.glif new file mode 100644 index 00000000..e4081cae --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/C_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+caron.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/C_cedilla.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/C_cedilla.glif new file mode 100644 index 00000000..4cb5d265 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/C_cedilla.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+cedilla + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/C_che-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/C_che-cy.glif new file mode 100644 index 00000000..da080f08 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/C_che-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ч + com.fontlab.metricsRight + Ч + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/C_circumflex.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/C_circumflex.glif new file mode 100644 index 00000000..ed35efad --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/C_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+circumflex.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/C_dotaccent.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/C_dotaccent.glif new file mode 100644 index 00000000..9502cb63 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/C_dotaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+dotaccent.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/C_he-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/C_he-cy.glif new file mode 100644 index 00000000..cb23ad9b --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/C_he-cy.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/C_heabkhcyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/C_heabkhcyr.glif new file mode 100644 index 00000000..e3cffb7b --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/C_heabkhcyr.glif @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + |Schwa + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/C_heabkhtailcyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/C_heabkhtailcyr.glif new file mode 100644 index 00000000..dac364bc --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/C_heabkhtailcyr.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Cheabkhcyr + com.fontlab.metricsRight + Cheabkhcyr + com.fontlab.recipe + Cheabkhcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/C_hedieresiscyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/C_hedieresiscyr.glif new file mode 100644 index 00000000..2328fb26 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/C_hedieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Che-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/C_hekhakascyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/C_hekhakascyr.glif new file mode 100644 index 00000000..a7a4f0c6 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/C_hekhakascyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ч + com.fontlab.metricsRight + H + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/C_hetailcyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/C_hetailcyr.glif new file mode 100644 index 00000000..1f5db151 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/C_hetailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ч + com.fontlab.metricsRight + Entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/C_hevertcyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/C_hevertcyr.glif new file mode 100644 index 00000000..984d9a4a --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/C_hevertcyr.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ч + com.fontlab.metricsRight + Н + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/C_rossedO_-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/C_rossedO_-cy.glif new file mode 100644 index 00000000..f34b2112 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/C_rossedO_-cy.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + com.fontlab.recipe + O + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/D_.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/D_.glif new file mode 100644 index 00000000..72539e9b --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/D_.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/D_caron.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/D_caron.glif new file mode 100644 index 00000000..2a2311a0 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/D_caron.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + D+caron.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/D_checyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/D_checyr.glif new file mode 100644 index 00000000..8d48a4e7 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/D_checyr.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Д+10 + com.fontlab.metricsRight + Д + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/D_croat.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/D_croat.glif new file mode 100644 index 00000000..c34d6045 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/D_croat.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + D + com.fontlab.recipe + Eth + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/D_e-cy.B_G_R_.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/D_e-cy.B_G_R_.glif new file mode 100644 index 00000000..76959c83 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/D_e-cy.B_G_R_.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + l() + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/D_e-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/D_e-cy.glif new file mode 100644 index 00000000..6dabb59c --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/D_e-cy.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/D_eS_oft-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/D_eS_oft-cy.glif new file mode 100644 index 00000000..c656ad19 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/D_eS_oft-cy.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Д + com.fontlab.metricsRight + Ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/D_ekomicyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/D_ekomicyr.glif new file mode 100644 index 00000000..fa3a9172 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/D_ekomicyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.metricsLeft + |P + com.fontlab.metricsRight + H + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/D_elta.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/D_elta.glif new file mode 100644 index 00000000..97997814 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/D_elta.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + A + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/D_jecyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/D_jecyr.glif new file mode 100644 index 00000000..0d76e470 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/D_jecyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/D_jekomicyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/D_jekomicyr.glif new file mode 100644 index 00000000..b470c3e0 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/D_jekomicyr.glif @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Dekomicyr + com.fontlab.metricsRight + Njekomicyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/D_jerv-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/D_jerv-cy.glif new file mode 100644 index 00000000..5185f0a6 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/D_jerv-cy.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + r() + com.fontlab.metricsRight + O + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/D_oubleO_-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/D_oubleO_-cy.glif new file mode 100644 index 00000000..f159faa7 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/D_oubleO_-cy.glif @@ -0,0 +1,91 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + com.fontlab.recipe + O_O + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/D_we-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/D_we-cy.glif new file mode 100644 index 00000000..fea19f90 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/D_we-cy.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Д + com.fontlab.metricsRight + Д + com.fontlab.recipe + Д + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/D_ze-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/D_ze-cy.glif new file mode 100644 index 00000000..f870b973 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/D_ze-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + S + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/D_zeR_eversed-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/D_zeR_eversed-cy.glif new file mode 100644 index 00000000..b27f5ed1 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/D_zeR_eversed-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + S + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/D_zeabkhcyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/D_zeabkhcyr.glif new file mode 100644 index 00000000..ed8c0972 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/D_zeabkhcyr.glif @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + З-10 + com.fontlab.metricsRight + З-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/D_zelo-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/D_zelo-cy.glif new file mode 100644 index 00000000..de138386 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/D_zelo-cy.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/D_zhecyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/D_zhecyr.glif new file mode 100644 index 00000000..8c5c3588 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/D_zhecyr.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/D_zjekomicyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/D_zjekomicyr.glif new file mode 100644 index 00000000..dc6cf45f --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/D_zjekomicyr.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + З-10 + com.fontlab.metricsRight + Ц-5 + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/D_zwe-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/D_zwe-cy.glif new file mode 100644 index 00000000..a5d92559 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/D_zwe-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + S + com.fontlab.metricsRight + S + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/D_zze-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/D_zze-cy.glif new file mode 100644 index 00000000..4df1c5b5 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/D_zze-cy.glif @@ -0,0 +1,84 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Д + com.fontlab.metricsRight + Д-20 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/D_zzhecyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/D_zzhecyr.glif new file mode 100644 index 00000000..a13e0bbe --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/D_zzhecyr.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Д + com.fontlab.metricsRight + Ж + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_-cy.accented.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_-cy.accented.glif new file mode 100644 index 00000000..3908eb4c --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_-cy.accented.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+acute.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_-cy.glif new file mode 100644 index 00000000..1dcf976d --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_-cy.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + C + com.fontlab.metricsRight + C + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_.glif new file mode 100644 index 00000000..a0a5c6a4 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + com.fontlab.metricsRight + F+10 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_acute.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_acute.glif new file mode 100644 index 00000000..4cacfb63 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+acute.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_breve.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_breve.glif new file mode 100644 index 00000000..c571ce83 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_breve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+breve.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_caron.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_caron.glif new file mode 100644 index 00000000..4829b5c4 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+caron.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_circumflex.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_circumflex.glif new file mode 100644 index 00000000..ca5084ca --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+circumflex.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_dieresis.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_dieresis.glif new file mode 100644 index 00000000..5306319f --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_dieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+dieresiscase.alt + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_dotaccent.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_dotaccent.glif new file mode 100644 index 00000000..3db1947c --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_dotaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+dotaccent.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_f-cy.B_G_R_.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_f-cy.B_G_R_.glif new file mode 100644 index 00000000..10d9b54f --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_f-cy.B_G_R_.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_f-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_f-cy.glif new file mode 100644 index 00000000..99e58854 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_f-cy.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_grave.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_grave.glif new file mode 100644 index 00000000..5cd850a7 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_grave.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+grave.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_iotifiedcyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_iotifiedcyr.glif new file mode 100644 index 00000000..58325d5c --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_iotifiedcyr.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + C + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_l-cy.B_G_R_.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_l-cy.B_G_R_.glif new file mode 100644 index 00000000..e5d1ae30 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_l-cy.B_G_R_.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + A + com.fontlab.metricsRight + l() + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_l-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_l-cy.glif new file mode 100644 index 00000000..79a80f4c --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_l-cy.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_lS_oft-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_lS_oft-cy.glif new file mode 100644 index 00000000..c6aa4e4a --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_lS_oft-cy.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_lhookcyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_lhookcyr.glif new file mode 100644 index 00000000..ad215296 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_lhookcyr.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Л + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_lmiddlehookcyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_lmiddlehookcyr.glif new file mode 100644 index 00000000..30ef71a4 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_lmiddlehookcyr.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Shhacyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_lsharptailcyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_lsharptailcyr.glif new file mode 100644 index 00000000..46307cb1 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_lsharptailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Ensharptailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_lsmallcyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_lsmallcyr.glif new file mode 100644 index 00000000..d95aa398 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_lsmallcyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + el-cy.BGR + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_ltailcyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_ltailcyr.glif new file mode 100644 index 00000000..96b5aa73 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_ltailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_m-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_m-cy.glif new file mode 100644 index 00000000..bc4f5486 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_m-cy.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + M + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_m-cy.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_m-cy.ss01.glif new file mode 100644 index 00000000..995da6bb --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_m-cy.ss01.glif @@ -0,0 +1,13 @@ + + + + + + + + + com.fontlab.recipe + M + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_mS_oft-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_mS_oft-cy.glif new file mode 100644 index 00000000..24f64115 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_mS_oft-cy.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + M + com.fontlab.metricsRight + Ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_macron.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_macron.glif new file mode 100644 index 00000000..0cdd58c5 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_macron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+macron.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_msharptailcyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_msharptailcyr.glif new file mode 100644 index 00000000..5b861a16 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_msharptailcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Н + com.fontlab.metricsRight + Ensharptailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_n-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_n-cy.glif new file mode 100644 index 00000000..5a8ce028 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_n-cy.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + H + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_ng.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_ng.glif new file mode 100644 index 00000000..e90d500e --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_ng.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + N + com.fontlab.metricsRight + l() + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_ng.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_ng.ss01.glif new file mode 100644 index 00000000..9d44b192 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_ng.ss01.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + N.ss01 + com.fontlab.metricsRight + J.ss01 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_ngecyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_ngecyr.glif new file mode 100644 index 00000000..4377d324 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_ngecyr.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_nhookcyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_nhookcyr.glif new file mode 100644 index 00000000..c26bd570 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_nhookcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_nhookleftcyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_nhookleftcyr.glif new file mode 100644 index 00000000..a266db55 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_nhookleftcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + r()-159 + com.fontlab.metricsRight + H + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_nmiddlehookcyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_nmiddlehookcyr.glif new file mode 100644 index 00000000..75c871f3 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_nmiddlehookcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Shhacyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_nsharptailcyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_nsharptailcyr.glif new file mode 100644 index 00000000..4836eab8 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_nsharptailcyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Н + com.fontlab.metricsRight + Д + com.fontlab.recipe + Entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_ntailcyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_ntailcyr.glif new file mode 100644 index 00000000..a2c21557 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_ntailcyr.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Ц + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_ogonek.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_ogonek.glif new file mode 100644 index 00000000..738f935c --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_ogonek.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+ogonek + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_r-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_r-cy.glif new file mode 100644 index 00000000..382744f6 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_r-cy.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + P + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_reversed-cy.accented.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_reversed-cy.accented.glif new file mode 100644 index 00000000..e9291bda --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_reversed-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Э+acute.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_reversed-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_reversed-cy.glif new file mode 100644 index 00000000..294c70f9 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_reversed-cy.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |C + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_reverseddieresiscyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_reverseddieresiscyr.glif new file mode 100644 index 00000000..41c4e3c9 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_reverseddieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ereversed-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_rtickcyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_rtickcyr.glif new file mode 100644 index 00000000..13b2c4c7 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_rtickcyr.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + P + com.fontlab.metricsRight + P + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_s-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_s-cy.glif new file mode 100644 index 00000000..8fab11be --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_s-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_stailcyr.B_S_H_.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_stailcyr.B_S_H_.glif new file mode 100644 index 00000000..92eb6ff1 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_stailcyr.B_S_H_.glif @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + C + com.fontlab.metricsRight + C + com.fontlab.recipe + C + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_stailcyr.C_H_U_.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_stailcyr.C_H_U_.glif new file mode 100644 index 00000000..6a1e356f --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_stailcyr.C_H_U_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+cedilla.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_stailcyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_stailcyr.glif new file mode 100644 index 00000000..cd612de2 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_stailcyr.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + С + com.fontlab.metricsRight + С + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_th.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_th.glif new file mode 100644 index 00000000..875fa0a2 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/E_th.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + D + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/F_.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/F_.glif new file mode 100644 index 00000000..64c2aec8 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/F_.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/F_itacyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/F_itacyr.glif new file mode 100644 index 00000000..ef63f71d --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/F_itacyr.glif @@ -0,0 +1,78 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + com.fontlab.recipe + Obarcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/G_.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/G_.glif new file mode 100644 index 00000000..866fc186 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/G_.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O+18 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/G_.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/G_.ss01.glif new file mode 100644 index 00000000..33b640f5 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/G_.ss01.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O+10 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/G_acute.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/G_acute.glif new file mode 100644 index 00000000..31b8dd52 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/G_acute.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + G+acute.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/G_acute.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/G_acute.ss01.glif new file mode 100644 index 00000000..89ef1337 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/G_acute.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G.ss01+acute.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/G_breve.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/G_breve.glif new file mode 100644 index 00000000..12adf396 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/G_breve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G+breve.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/G_breve.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/G_breve.ss01.glif new file mode 100644 index 00000000..7f71ad45 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/G_breve.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G.ss01+breve.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/G_circumflex.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/G_circumflex.glif new file mode 100644 index 00000000..9dea09a9 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/G_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G+circumflex.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/G_circumflex.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/G_circumflex.ss01.glif new file mode 100644 index 00000000..9e78d080 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/G_circumflex.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G.ss01+circumflex.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/G_commaaccent.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/G_commaaccent.glif new file mode 100644 index 00000000..5fbfbf6a --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/G_commaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G+commaaccentcomb + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/G_commaaccent.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/G_commaaccent.ss01.glif new file mode 100644 index 00000000..6a9a165e --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/G_commaaccent.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G.ss01+commaaccentcomb + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/G_dotaccent.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/G_dotaccent.glif new file mode 100644 index 00000000..7b185921 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/G_dotaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G+dotaccent.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/G_dotaccent.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/G_dotaccent.ss01.glif new file mode 100644 index 00000000..2221212a --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/G_dotaccent.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G.ss01+dotaccent.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/G_e-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/G_e-cy.glif new file mode 100644 index 00000000..395358c2 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/G_e-cy.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + T + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/G_ehookcyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/G_ehookcyr.glif new file mode 100644 index 00000000..afee30e1 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/G_ehookcyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Г + com.fontlab.metricsRight + Tshecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/G_ehookstrokecyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/G_ehookstrokecyr.glif new file mode 100644 index 00000000..a58fca1a --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/G_ehookstrokecyr.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Gestrokecyr + com.fontlab.metricsRight + Gestrokecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/G_ermandbls.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/G_ermandbls.glif new file mode 100644 index 00000000..d5fb68a5 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/G_ermandbls.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + U + com.fontlab.metricsRight + B-5 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/G_estrokecyr.B_S_H_.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/G_estrokecyr.B_S_H_.glif new file mode 100644 index 00000000..8bcdd3e9 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/G_estrokecyr.B_S_H_.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + F + com.fontlab.metricsRight + Gestrokecyr + com.fontlab.recipe + Gestrokecyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/G_estrokecyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/G_estrokecyr.glif new file mode 100644 index 00000000..08f9f552 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/G_estrokecyr.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + Г + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/G_etailcyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/G_etailcyr.glif new file mode 100644 index 00000000..88aa15a1 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/G_etailcyr.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Г + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/G_heupturn-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/G_heupturn-cy.glif new file mode 100644 index 00000000..4c287edd --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/G_heupturn-cy.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Г + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/G_jecyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/G_jecyr.glif new file mode 100644 index 00000000..1dcbcba8 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/G_jecyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ge-cy+acute.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/H_.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/H_.glif new file mode 100644 index 00000000..544b5901 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/H_.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + com.fontlab.metricsRight + I + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/H_a-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/H_a-cy.glif new file mode 100644 index 00000000..1cd1f9b9 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/H_a-cy.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + X + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/H_a-cy.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/H_a-cy.ss01.glif new file mode 100644 index 00000000..693756cb --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/H_a-cy.ss01.glif @@ -0,0 +1,14 @@ + + + + + + + + + + com.fontlab.recipe + X + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/H_aabkhcyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/H_aabkhcyr.glif new file mode 100644 index 00000000..5eb02044 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/H_aabkhcyr.glif @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/H_ahookcyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/H_ahookcyr.glif new file mode 100644 index 00000000..23a03acc --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/H_ahookcyr.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + X + com.fontlab.metricsRight + X + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/H_ardsign-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/H_ardsign-cy.glif new file mode 100644 index 00000000..e88fdfaa --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/H_ardsign-cy.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + Ь + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/H_astrokecyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/H_astrokecyr.glif new file mode 100644 index 00000000..e1143d1e --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/H_astrokecyr.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + X + com.fontlab.metricsRight + X + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/H_bar.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/H_bar.glif new file mode 100644 index 00000000..e8c34d29 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/H_bar.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + r() + com.fontlab.metricsRight + H + com.schriftgestaltung.Glyphs.rightMetricsKey + H + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/H_circumflex.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/H_circumflex.glif new file mode 100644 index 00000000..81a9af54 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/H_circumflex.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + H+circumflex.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/H_we-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/H_we-cy.glif new file mode 100644 index 00000000..a3c8d0e7 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/H_we-cy.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Iota-cy + com.fontlab.metricsRight + Tshecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/I_-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/I_-cy.glif new file mode 100644 index 00000000..9d798c18 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/I_-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/I_.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/I_.glif new file mode 100644 index 00000000..3aa03df1 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/I_.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/I_J_.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/I_J_.glif new file mode 100644 index 00000000..9c004f7b --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/I_J_.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + I_J + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/I_a-cy.accented.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/I_a-cy.accented.glif new file mode 100644 index 00000000..94a9ab9c --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/I_a-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Я+acute.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/I_a-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/I_a-cy.glif new file mode 100644 index 00000000..1770764f --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/I_a-cy.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |R+10 + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/I_a-cy.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/I_a-cy.ss01.glif new file mode 100644 index 00000000..5ade9cf6 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/I_a-cy.ss01.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/I_acute.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/I_acute.glif new file mode 100644 index 00000000..de5adab5 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/I_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+acute.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/I_breve.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/I_breve.glif new file mode 100644 index 00000000..038b3b6e --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/I_breve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+breve.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/I_circumflex.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/I_circumflex.glif new file mode 100644 index 00000000..72ec9dd2 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/I_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+circumflex.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/I_dieresis.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/I_dieresis.glif new file mode 100644 index 00000000..c2082b89 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/I_dieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+dieresiscase.alt + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/I_dieresiscyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/I_dieresiscyr.glif new file mode 100644 index 00000000..1b70e339 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/I_dieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ii-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/I_dotaccent.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/I_dotaccent.glif new file mode 100644 index 00000000..cbc45368 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/I_dotaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+dotaccent.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/I_e-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/I_e-cy.glif new file mode 100644 index 00000000..c6590008 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/I_e-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/I_ebrevecyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/I_ebrevecyr.glif new file mode 100644 index 00000000..f7d26255 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/I_ebrevecyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+breve.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/I_egravecyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/I_egravecyr.glif new file mode 100644 index 00000000..bf07cb3a --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/I_egravecyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+grave.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/I_grave.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/I_grave.glif new file mode 100644 index 00000000..8e455de4 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/I_grave.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+grave.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/I_gravecyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/I_gravecyr.glif new file mode 100644 index 00000000..1b2aa66a --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/I_gravecyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ii-cy+grave.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/I_i-cy.accented.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/I_i-cy.accented.glif new file mode 100644 index 00000000..5043efd0 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/I_i-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + И+acute.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/I_i-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/I_i-cy.glif new file mode 100644 index 00000000..fa71fbeb --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/I_i-cy.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/I_ishort-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/I_ishort-cy.glif new file mode 100644 index 00000000..04b2d820 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/I_ishort-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + uni0418+breve.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/I_macron.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/I_macron.glif new file mode 100644 index 00000000..0170dca7 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/I_macron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+macron.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/I_macroncyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/I_macroncyr.glif new file mode 100644 index 00000000..89c61cdd --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/I_macroncyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ii-cy+macron.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/I_o-cy.accented.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/I_o-cy.accented.glif new file mode 100644 index 00000000..29d6ba89 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/I_o-cy.accented.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + com.fontlab.recipe + E+dieresis.case+acute.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/I_o-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/I_o-cy.glif new file mode 100644 index 00000000..76c14c26 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/I_o-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Edieresis + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/I_ogonek.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/I_ogonek.glif new file mode 100644 index 00000000..54f57355 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/I_ogonek.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+ogonek + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/I_ota-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/I_ota-cy.glif new file mode 100644 index 00000000..b1a034e1 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/I_ota-cy.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |J + com.fontlab.metricsRight + |J + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/I_otifiedA_-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/I_otifiedA_-cy.glif new file mode 100644 index 00000000..242ce56d --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/I_otifiedA_-cy.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + com.fontlab.metricsRight + A + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/I_shortsharptailcyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/I_shortsharptailcyr.glif new file mode 100644 index 00000000..72dff23f --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/I_shortsharptailcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Й + com.fontlab.metricsRight + Ensharptailcyr + com.fontlab.recipe + Й + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/I_tilde.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/I_tilde.glif new file mode 100644 index 00000000..6a2de754 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/I_tilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+tilde.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/I_u-cy.accented.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/I_u-cy.accented.glif new file mode 100644 index 00000000..e0b22a53 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/I_u-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ю+acute.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/I_u-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/I_u-cy.glif new file mode 100644 index 00000000..dc9b9177 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/I_u-cy.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/I_zhitsacyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/I_zhitsacyr.glif new file mode 100644 index 00000000..fb1682b6 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/I_zhitsacyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + V + com.fontlab.metricsRight + + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/I_zhitsagravedblcyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/I_zhitsagravedblcyr.glif new file mode 100644 index 00000000..a7977216 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/I_zhitsagravedblcyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + com.fontlab.metricsLeft + Izhitsacyr + com.fontlab.metricsRight + Izhitsacyr + com.fontlab.recipe + Izhitsacyr+hungarumlaut.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/J_.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/J_.glif new file mode 100644 index 00000000..eb416c10 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/J_.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + U + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/J_.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/J_.ss01.glif new file mode 100644 index 00000000..6bb0ddc7 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/J_.ss01.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + U + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/J_circumflex.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/J_circumflex.glif new file mode 100644 index 00000000..db795c14 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/J_circumflex.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + J+circumflex.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/J_circumflex.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/J_circumflex.ss01.glif new file mode 100644 index 00000000..5876428e --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/J_circumflex.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + J.ss01+circumflex.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/J_ecyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/J_ecyr.glif new file mode 100644 index 00000000..a1486ca2 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/J_ecyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsLeft + J + com.fontlab.metricsRight + J + com.fontlab.recipe + J + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/K_.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/K_.glif new file mode 100644 index 00000000..fa034958 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/K_.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/K_.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/K_.ss01.glif new file mode 100644 index 00000000..c4f60cb7 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/K_.ss01.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/K_a-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/K_a-cy.glif new file mode 100644 index 00000000..2bbaace5 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/K_a-cy.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.recipe + K + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/K_a-cy.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/K_a-cy.ss01.glif new file mode 100644 index 00000000..0bc2bfa1 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/K_a-cy.ss01.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.recipe + K + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/K_aaleutcyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/K_aaleutcyr.glif new file mode 100644 index 00000000..f995733a --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/K_aaleutcyr.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + K + com.fontlab.metricsRight + K + com.fontlab.recipe + K + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/K_abashkcyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/K_abashkcyr.glif new file mode 100644 index 00000000..eece12bc --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/K_abashkcyr.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Hardsign-cy + com.fontlab.metricsRight + K + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/K_ahookcyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/K_ahookcyr.glif new file mode 100644 index 00000000..b9884f18 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/K_ahookcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + K + com.fontlab.metricsRight + Djecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/K_astrokecyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/K_astrokecyr.glif new file mode 100644 index 00000000..1d6d94e8 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/K_astrokecyr.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Yatcyr + com.fontlab.metricsRight + K + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/K_atailcyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/K_atailcyr.glif new file mode 100644 index 00000000..3b985942 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/K_atailcyr.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + К-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/K_averticalstrokecyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/K_averticalstrokecyr.glif new file mode 100644 index 00000000..ce141627 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/K_averticalstrokecyr.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + K + com.fontlab.metricsRight + Ж + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/K_commaaccent.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/K_commaaccent.glif new file mode 100644 index 00000000..367085bc --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/K_commaaccent.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + K+commaaccentcomb + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/K_commaaccent.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/K_commaaccent.ss01.glif new file mode 100644 index 00000000..93b23257 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/K_commaaccent.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + K.ss01+commaaccentcomb + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/K_jecyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/K_jecyr.glif new file mode 100644 index 00000000..30faf869 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/K_jecyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ka-cy+acute.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/K_oppacyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/K_oppacyr.glif new file mode 100644 index 00000000..090c4464 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/K_oppacyr.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + C-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/K_sicyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/K_sicyr.glif new file mode 100644 index 00000000..7874831c --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/K_sicyr.glif @@ -0,0 +1,98 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + З-10 + com.fontlab.metricsRight + З + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/L_.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/L_.glif new file mode 100644 index 00000000..aecc8329 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/L_.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/L_acute.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/L_acute.glif new file mode 100644 index 00000000..0f441f9a --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/L_acute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + L+acute.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/L_caron.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/L_caron.glif new file mode 100644 index 00000000..aa9b02e4 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/L_caron.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + com.fontlab.recipe + L+caron.salt + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/L_commaaccent.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/L_commaaccent.glif new file mode 100644 index 00000000..ffc678f4 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/L_commaaccent.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + L+commaaccentcomb + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/L_dot.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/L_dot.glif new file mode 100644 index 00000000..a50cf1f8 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/L_dot.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + com.fontlab.metricsRight + L + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/L_hacyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/L_hacyr.glif new file mode 100644 index 00000000..5733a961 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/L_hacyr.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + X + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/L_jecyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/L_jecyr.glif new file mode 100644 index 00000000..5c9f5c8a --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/L_jecyr.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Ь + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/L_jekomicyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/L_jekomicyr.glif new file mode 100644 index 00000000..1d745461 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/L_jekomicyr.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Njekomicyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/L_slash.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/L_slash.glif new file mode 100644 index 00000000..97656409 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/L_slash.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + L-80 + com.fontlab.metricsRight + L + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/M_.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/M_.glif new file mode 100644 index 00000000..49b8f192 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/M_.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/M_.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/M_.ss01.glif new file mode 100644 index 00000000..7f82fe15 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/M_.ss01.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H-25 + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/N_.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/N_.glif new file mode 100644 index 00000000..e6630f5e --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/N_.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/N_.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/N_.ss01.glif new file mode 100644 index 00000000..7cc659a6 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/N_.ss01.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H-10 + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/N_U_L_L_.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/N_U_L_L_.glif new file mode 100644 index 00000000..1ad177ae --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/N_U_L_L_.glif @@ -0,0 +1,4 @@ + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/N_acute.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/N_acute.glif new file mode 100644 index 00000000..d0625702 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/N_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N+acute.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/N_acute.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/N_acute.ss01.glif new file mode 100644 index 00000000..ca976389 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/N_acute.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N.ss01+acute.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/N_caron.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/N_caron.glif new file mode 100644 index 00000000..65937d91 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/N_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N+caron.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/N_caron.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/N_caron.ss01.glif new file mode 100644 index 00000000..c1462b3c --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/N_caron.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N.ss01+caron.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/N_commaaccent.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/N_commaaccent.glif new file mode 100644 index 00000000..90612ad9 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/N_commaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N+commaaccentcomb + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/N_commaaccent.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/N_commaaccent.ss01.glif new file mode 100644 index 00000000..bf44bc68 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/N_commaaccent.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N.ss01+commaaccentcomb + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/N_jecyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/N_jecyr.glif new file mode 100644 index 00000000..05a64ad6 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/N_jecyr.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Н + com.fontlab.metricsRight + Ь + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/N_jekomicyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/N_jekomicyr.glif new file mode 100644 index 00000000..5ff65fc4 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/N_jekomicyr.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + |u + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/N_tilde.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/N_tilde.glif new file mode 100644 index 00000000..db2b930a --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/N_tilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N+tilde.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/N_tilde.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/N_tilde.ss01.glif new file mode 100644 index 00000000..c044e7c9 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/N_tilde.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N.ss01+tilde.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/O_-cy.accented.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/O_-cy.accented.glif new file mode 100644 index 00000000..9c38042d --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/O_-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+acute.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/O_-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/O_-cy.glif new file mode 100644 index 00000000..d2e03e59 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/O_-cy.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/O_.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/O_.glif new file mode 100644 index 00000000..bf06c858 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/O_.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/O_B_inocular-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/O_B_inocular-cy.glif new file mode 100644 index 00000000..84a4b480 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/O_B_inocular-cy.glif @@ -0,0 +1,81 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/O_D_oubleM_onocular-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/O_D_oubleM_onocular-cy.glif new file mode 100644 index 00000000..adfa54c8 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/O_D_oubleM_onocular-cy.glif @@ -0,0 +1,119 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + com.fontlab.recipe + DoubleO-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/O_E_.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/O_E_.glif new file mode 100644 index 00000000..465faf4c --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/O_E_.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + E + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/O_M_onocular-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/O_M_onocular-cy.glif new file mode 100644 index 00000000..a78242b3 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/O_M_onocular-cy.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/O_acute.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/O_acute.glif new file mode 100644 index 00000000..c24ae0fa --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/O_acute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+acute.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/O_barcyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/O_barcyr.glif new file mode 100644 index 00000000..de698458 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/O_barcyr.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + r() + com.fontlab.metricsRight + O + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/O_bardieresiscyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/O_bardieresiscyr.glif new file mode 100644 index 00000000..e67e9a32 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/O_bardieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Obarcyr+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/O_breve.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/O_breve.glif new file mode 100644 index 00000000..13a01abd --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/O_breve.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+breve.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/O_circumflex.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/O_circumflex.glif new file mode 100644 index 00000000..49ad0fae --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/O_circumflex.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+circumflex.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/O_dieresis.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/O_dieresis.glif new file mode 100644 index 00000000..87ffe0ad --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/O_dieresis.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+dieresis.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/O_dieresiscyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/O_dieresiscyr.glif new file mode 100644 index 00000000..213d427c --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/O_dieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/O_grave.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/O_grave.glif new file mode 100644 index 00000000..96e7756e --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/O_grave.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+grave.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/O_hungarumlaut.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/O_hungarumlaut.glif new file mode 100644 index 00000000..1a1add55 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/O_hungarumlaut.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+hungarumlaut.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/O_macron.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/O_macron.glif new file mode 100644 index 00000000..afeef239 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/O_macron.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+macron.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/O_mega.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/O_mega.glif new file mode 100644 index 00000000..96414845 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/O_mega.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O+10 + com.fontlab.metricsRight + O+10 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/O_megaB_road-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/O_megaB_road-cy.glif new file mode 100644 index 00000000..eff33275 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/O_megaB_road-cy.glif @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O+10 + com.fontlab.metricsRight + O+10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/O_megacyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/O_megacyr.glif new file mode 100644 index 00000000..d5ca22a0 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/O_megacyr.glif @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O+10 + com.fontlab.metricsRight + O+10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/O_megaroundcyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/O_megaroundcyr.glif new file mode 100644 index 00000000..9d4bde7f --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/O_megaroundcyr.glif @@ -0,0 +1,81 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/O_megatitlocyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/O_megatitlocyr.glif new file mode 100644 index 00000000..2e54aa74 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/O_megatitlocyr.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O+10 + com.fontlab.metricsRight + O+10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/O_slash.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/O_slash.glif new file mode 100644 index 00000000..1db30d82 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/O_slash.glif @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/O_slashacute.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/O_slashacute.glif new file mode 100644 index 00000000..baf37ac2 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/O_slashacute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Oslash+acute.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/O_tcyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/O_tcyr.glif new file mode 100644 index 00000000..16e5dfb3 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/O_tcyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Omegacyr+uni2DEE.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/O_tilde.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/O_tilde.glif new file mode 100644 index 00000000..125c248f --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/O_tilde.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+tilde.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/P_.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/P_.glif new file mode 100644 index 00000000..f12ada25 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/P_.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/P_alochkacyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/P_alochkacyr.glif new file mode 100644 index 00000000..83162fd2 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/P_alochkacyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/P_e-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/P_e-cy.glif new file mode 100644 index 00000000..80c7c0a9 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/P_e-cy.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/P_ehookcyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/P_ehookcyr.glif new file mode 100644 index 00000000..1203a0a8 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/P_ehookcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + П + com.fontlab.metricsRight + Shhacyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/P_etailcyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/P_etailcyr.glif new file mode 100644 index 00000000..68ac0a9a --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/P_etailcyr.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/P_sicyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/P_sicyr.glif new file mode 100644 index 00000000..14ea3bdb --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/P_sicyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + U-20 + com.fontlab.metricsRight + U-20 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/Q_.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/Q_.glif new file mode 100644 index 00000000..2b22a8ea --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/Q_.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/Q_.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/Q_.ss01.glif new file mode 100644 index 00000000..9866bf9a --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/Q_.ss01.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/Q_acyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/Q_acyr.glif new file mode 100644 index 00000000..a5d02875 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/Q_acyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Q + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/R_.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/R_.glif new file mode 100644 index 00000000..050afc8c --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/R_.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/R_acute.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/R_acute.glif new file mode 100644 index 00000000..0dcc8aa6 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/R_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + R+acute.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/R_caron.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/R_caron.glif new file mode 100644 index 00000000..c7a7a522 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/R_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + R+caron.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/R_commaaccent.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/R_commaaccent.glif new file mode 100644 index 00000000..ff8980a3 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/R_commaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + R+commaaccentcomb + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/R_eversedzecyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/R_eversedzecyr.glif new file mode 100644 index 00000000..567e2124 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/R_eversedzecyr.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + + com.fontlab.metricsRight + + com.fontlab.recipe + З + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/R_hacyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/R_hacyr.glif new file mode 100644 index 00000000..2d67b69b --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/R_hacyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + P + com.fontlab.metricsRight + X + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/S_.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/S_.glif new file mode 100644 index 00000000..5d8ca353 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/S_.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/S_acute.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/S_acute.glif new file mode 100644 index 00000000..c064d956 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/S_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + S+acute.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/S_caron.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/S_caron.glif new file mode 100644 index 00000000..acd1ecf2 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/S_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + S+caron.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/S_cedilla.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/S_cedilla.glif new file mode 100644 index 00000000..96437b41 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/S_cedilla.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + S+cedilla + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/S_chwa.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/S_chwa.glif new file mode 100644 index 00000000..0c94bab9 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/S_chwa.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Schwacyr + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/S_chwacyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/S_chwacyr.glif new file mode 100644 index 00000000..d5e8147f --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/S_chwacyr.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O-10 + com.fontlab.metricsRight + O + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/S_chwadieresiscyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/S_chwadieresiscyr.glif new file mode 100644 index 00000000..6e82ef68 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/S_chwadieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Schwacyr+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/S_circumflex.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/S_circumflex.glif new file mode 100644 index 00000000..ec78414a --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/S_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + S+circumflex.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/S_commaaccent.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/S_commaaccent.glif new file mode 100644 index 00000000..87ec21ec --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/S_commaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + S+commaaccentcomb + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/S_emisoftcyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/S_emisoftcyr.glif new file mode 100644 index 00000000..ca6152e5 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/S_emisoftcyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Yat + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/S_ha-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/S_ha-cy.glif new file mode 100644 index 00000000..28694d0b --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/S_ha-cy.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/S_hcha-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/S_hcha-cy.glif new file mode 100644 index 00000000..f83a998f --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/S_hcha-cy.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Д + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/S_hhacyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/S_hhacyr.glif new file mode 100644 index 00000000..854c6c9e --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/S_hhacyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.metricsLeft + Н + com.fontlab.metricsRight + Tshecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/S_hhatailcyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/S_hhatailcyr.glif new file mode 100644 index 00000000..c59ab6f2 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/S_hhatailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/S_hwe-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/S_hwe-cy.glif new file mode 100644 index 00000000..00fab4e5 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/S_hwe-cy.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Щ + com.fontlab.metricsRight + Щ-20 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/S_jekomicyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/S_jekomicyr.glif new file mode 100644 index 00000000..d1cf787a --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/S_jekomicyr.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + |Schwa + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/S_oftsign-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/S_oftsign-cy.glif new file mode 100644 index 00000000..4fab0eba --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/S_oftsign-cy.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + P + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/T_.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/T_.glif new file mode 100644 index 00000000..216bde04 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/T_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/T_bar.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/T_bar.glif new file mode 100644 index 00000000..bf2bedd3 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/T_bar.glif @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/T_caron.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/T_caron.glif new file mode 100644 index 00000000..175bb692 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/T_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + T+caron.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/T_cedilla.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/T_cedilla.glif new file mode 100644 index 00000000..959fc405 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/T_cedilla.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + T+cedilla + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/T_che-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/T_che-cy.glif new file mode 100644 index 00000000..c4027144 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/T_che-cy.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Tetsecyr-20 + com.fontlab.metricsRight + Ч + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/T_commaaccent.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/T_commaaccent.glif new file mode 100644 index 00000000..5e100c20 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/T_commaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + T+commaaccentcomb + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/T_e-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/T_e-cy.glif new file mode 100644 index 00000000..fc1051a3 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/T_e-cy.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + com.fontlab.recipe + T + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/T_eW_ithM_iddleH_ook-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/T_eW_ithM_iddleH_ook-cy.glif new file mode 100644 index 00000000..c3d275ad --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/T_eW_ithM_iddleH_ook-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Djecyr + com.fontlab.metricsRight + Gehookcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/T_etailcyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/T_etailcyr.glif new file mode 100644 index 00000000..a7f762a5 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/T_etailcyr.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/T_etsecyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/T_etsecyr.glif new file mode 100644 index 00000000..f1e7b8b0 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/T_etsecyr.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Tshecyr + com.fontlab.metricsRight + Ц + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/T_horn.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/T_horn.glif new file mode 100644 index 00000000..19cf6ad4 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/T_horn.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + P + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/T_jekomicyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/T_jekomicyr.glif new file mode 100644 index 00000000..5602ac1d --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/T_jekomicyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + Njekomicyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/T_se-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/T_se-cy.glif new file mode 100644 index 00000000..c2d1cf6d --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/T_se-cy.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Д + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/T_seR_eversed-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/T_seR_eversed-cy.glif new file mode 100644 index 00000000..efe07dca --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/T_seR_eversed-cy.glif @@ -0,0 +1,20 @@ + + + + + + + + + + com.fontlab.metricsLeft + + com.fontlab.metricsRight + H + com.fontlab.recipe + Ц + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/T_shecyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/T_shecyr.glif new file mode 100644 index 00000000..85fa4197 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/T_shecyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + n + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/T_sse-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/T_sse-cy.glif new file mode 100644 index 00000000..21f5341e --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/T_sse-cy.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + T + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/T_swe-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/T_swe-cy.glif new file mode 100644 index 00000000..e8b98593 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/T_swe-cy.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Shwe-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/T_we-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/T_we-cy.glif new file mode 100644 index 00000000..5dd79316 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/T_we-cy.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + T + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/U_-cy.accented.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/U_-cy.accented.glif new file mode 100644 index 00000000..537b6180 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/U_-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + У+acute.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/U_-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/U_-cy.glif new file mode 100644 index 00000000..d7f92446 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/U_-cy.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Y+10 + com.fontlab.metricsRight + Y+5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/U_-cy.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/U_-cy.ss01.glif new file mode 100644 index 00000000..78af87e9 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/U_-cy.ss01.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/U_.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/U_.glif new file mode 100644 index 00000000..69ff0aaf --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/U_.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H-10 + com.fontlab.metricsRight + H-10 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/U_acute.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/U_acute.glif new file mode 100644 index 00000000..f1ffa919 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/U_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+acute.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/U_acutedblcyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/U_acutedblcyr.glif new file mode 100644 index 00000000..62ff31ba --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/U_acutedblcyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U-cy+hungarumlaut.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/U_breve.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/U_breve.glif new file mode 100644 index 00000000..6520da23 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/U_breve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+breve.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/U_circumflex.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/U_circumflex.glif new file mode 100644 index 00000000..417d36e1 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/U_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+circumflex.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/U_dieresis.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/U_dieresis.glif new file mode 100644 index 00000000..3f854c46 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/U_dieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+dieresis.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/U_dieresiscyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/U_dieresiscyr.glif new file mode 100644 index 00000000..48c918c3 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/U_dieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/U_grave.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/U_grave.glif new file mode 100644 index 00000000..9715391a --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/U_grave.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+grave.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/U_hungarumlaut.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/U_hungarumlaut.glif new file mode 100644 index 00000000..a99c11d9 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/U_hungarumlaut.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+hungarumlaut.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/U_kM_onograph-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/U_kM_onograph-cy.glif new file mode 100644 index 00000000..9044b3d0 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/U_kM_onograph-cy.glif @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/U_kcyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/U_kcyr.glif new file mode 100644 index 00000000..ce7583eb --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/U_kcyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + y + com.fontlab.recipe + О_у + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/U_macron.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/U_macron.glif new file mode 100644 index 00000000..27c8b45d --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/U_macron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+macron.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/U_macroncyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/U_macroncyr.glif new file mode 100644 index 00000000..a81567f7 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/U_macroncyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U-cy+macron.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/U_ogonek.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/U_ogonek.glif new file mode 100644 index 00000000..9a2ec0e5 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/U_ogonek.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + U+ogonek + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/U_ring.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/U_ring.glif new file mode 100644 index 00000000..51e8fff5 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/U_ring.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+ring.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/U_short-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/U_short-cy.glif new file mode 100644 index 00000000..2dfc5da9 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/U_short-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ucyr+breve.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/U_short-cy.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/U_short-cy.ss01.glif new file mode 100644 index 00000000..6355c027 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/U_short-cy.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ucyr.ss01+breve.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/U_straightcyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/U_straightcyr.glif new file mode 100644 index 00000000..12acf5e4 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/U_straightcyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsRight + Y + com.fontlab.recipe + Y + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/U_straightstrokecyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/U_straightstrokecyr.glif new file mode 100644 index 00000000..295ab9d6 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/U_straightstrokecyr.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/U_tilde.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/U_tilde.glif new file mode 100644 index 00000000..3d28b27c --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/U_tilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+tilde.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/V_.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/V_.glif new file mode 100644 index 00000000..ae6c324a --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/V_.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/V_.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/V_.ss01.glif new file mode 100644 index 00000000..2a4ab0ae --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/V_.ss01.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/V_e-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/V_e-cy.glif new file mode 100644 index 00000000..6cd46310 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/V_e-cy.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + B + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/W_.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/W_.glif new file mode 100644 index 00000000..113ec565 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/W_.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/W_.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/W_.ss01.glif new file mode 100644 index 00000000..827d03a3 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/W_.ss01.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |A + com.fontlab.metricsRight + |A + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/W_acute.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/W_acute.glif new file mode 100644 index 00000000..75b24101 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/W_acute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W+acute.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/W_acute.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/W_acute.ss01.glif new file mode 100644 index 00000000..257464c4 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/W_acute.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W.ss01+acute.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/W_circumflex.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/W_circumflex.glif new file mode 100644 index 00000000..16012e74 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/W_circumflex.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W+circumflex.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/W_circumflex.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/W_circumflex.ss01.glif new file mode 100644 index 00000000..277936c8 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/W_circumflex.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W.ss01+circumflex.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/W_dieresis.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/W_dieresis.glif new file mode 100644 index 00000000..cbab643a --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/W_dieresis.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + W+dieresis.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/W_dieresis.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/W_dieresis.ss01.glif new file mode 100644 index 00000000..c82a5562 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/W_dieresis.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W.ss01+dieresis.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/W_ecyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/W_ecyr.glif new file mode 100644 index 00000000..77b4b614 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/W_ecyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/W_grave.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/W_grave.glif new file mode 100644 index 00000000..cdbe1de9 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/W_grave.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W+grave.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/W_grave.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/W_grave.ss01.glif new file mode 100644 index 00000000..ea945880 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/W_grave.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W.ss01+grave.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/X_.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/X_.glif new file mode 100644 index 00000000..7f1d029a --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/X_.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/X_.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/X_.ss01.glif new file mode 100644 index 00000000..5e34772c --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/X_.ss01.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/X_atailcyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/X_atailcyr.glif new file mode 100644 index 00000000..294853f9 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/X_atailcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + X + com.fontlab.metricsRight + Katailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/Y_.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/Y_.glif new file mode 100644 index 00000000..4aa8b9d2 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/Y_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/Y_.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/Y_.ss01.glif new file mode 100644 index 00000000..9227dcc0 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/Y_.ss01.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/Y_acute.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/Y_acute.glif new file mode 100644 index 00000000..86cd73a4 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/Y_acute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y+acute.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/Y_acute.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/Y_acute.ss01.glif new file mode 100644 index 00000000..3b25025d --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/Y_acute.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y.ss01+acute.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/Y_aecyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/Y_aecyr.glif new file mode 100644 index 00000000..7794d46a --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/Y_aecyr.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Я + com.fontlab.metricsRight + E + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/Y_atI_otified-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/Y_atI_otified-cy.glif new file mode 100644 index 00000000..8d447753 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/Y_atI_otified-cy.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + com.fontlab.metricsRight + Yatcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/Y_atcyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/Y_atcyr.glif new file mode 100644 index 00000000..f1b5e824 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/Y_atcyr.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Т + com.fontlab.metricsRight + Ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/Y_circumflex.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/Y_circumflex.glif new file mode 100644 index 00000000..4ccb1829 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/Y_circumflex.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y+circumflex.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/Y_circumflex.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/Y_circumflex.ss01.glif new file mode 100644 index 00000000..8b620978 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/Y_circumflex.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y.ss01+circumflex.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/Y_dieresis.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/Y_dieresis.glif new file mode 100644 index 00000000..3334211b --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/Y_dieresis.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y+dieresis.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/Y_dieresis.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/Y_dieresis.ss01.glif new file mode 100644 index 00000000..b793908c --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/Y_dieresis.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y.ss01+dieresis.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/Y_erN_eutral-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/Y_erN_eutral-cy.glif new file mode 100644 index 00000000..bf289910 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/Y_erN_eutral-cy.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Hardsign-cy + com.fontlab.metricsRight + Ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/Y_eru-cy.accented.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/Y_eru-cy.accented.glif new file mode 100644 index 00000000..f75a9f02 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/Y_eru-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ы+acute.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/Y_eru-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/Y_eru-cy.glif new file mode 100644 index 00000000..21c4a00e --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/Y_eru-cy.glif @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/Y_eru-cymacron.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/Y_eru-cymacron.glif new file mode 100644 index 00000000..f7b94280 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/Y_eru-cymacron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ы+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/Y_eruB_ackY_er-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/Y_eruB_ackY_er-cy.glif new file mode 100644 index 00000000..7cc89858 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/Y_eruB_ackY_er-cy.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Hardsign + com.fontlab.metricsRight + I + com.fontlab.recipe + Hardsign-cy_I + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/Y_i-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/Y_i-cy.glif new file mode 100644 index 00000000..9154eb78 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/Y_i-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Idieresis + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/Y_longdieresiscyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/Y_longdieresiscyr.glif new file mode 100644 index 00000000..bd01dd94 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/Y_longdieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Yeru-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/Y_n-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/Y_n-cy.glif new file mode 100644 index 00000000..185323e0 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/Y_n-cy.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |Izhitsa + com.fontlab.metricsRight + |Izhitsa + com.fontlab.recipe + Izhitsa + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/Y_uR_eversed-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/Y_uR_eversed-cy.glif new file mode 100644 index 00000000..9748ce30 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/Y_uR_eversed-cy.glif @@ -0,0 +1,20 @@ + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + H + com.fontlab.recipe + Ю + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/Y_usB_lended-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/Y_usB_lended-cy.glif new file mode 100644 index 00000000..6b3a98fb --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/Y_usB_lended-cy.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Yusbigcyr + com.fontlab.metricsRight + Yusbigcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/Y_usC_losedlittle-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/Y_usC_losedlittle-cy.glif new file mode 100644 index 00000000..06ee676e --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/Y_usC_losedlittle-cy.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + A + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/Y_usbigcyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/Y_usbigcyr.glif new file mode 100644 index 00000000..70f24525 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/Y_usbigcyr.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ж + com.fontlab.metricsRight + Ж + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/Y_usbigiotifiedcyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/Y_usbigiotifiedcyr.glif new file mode 100644 index 00000000..e60bc8e6 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/Y_usbigiotifiedcyr.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + Ж + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/Y_usiotifiedC_losedL_ittle-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/Y_usiotifiedC_losedL_ittle-cy.glif new file mode 100644 index 00000000..593b1b81 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/Y_usiotifiedC_losedL_ittle-cy.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + A + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/Y_uslittlecyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/Y_uslittlecyr.glif new file mode 100644 index 00000000..d885be39 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/Y_uslittlecyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + А-5 + com.fontlab.metricsRight + А-5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/Y_uslittleiotifiedcyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/Y_uslittleiotifiedcyr.glif new file mode 100644 index 00000000..5ed3e5a6 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/Y_uslittleiotifiedcyr.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + А-5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/Z_.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/Z_.glif new file mode 100644 index 00000000..9db77ca8 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/Z_.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/Z_.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/Z_.ss01.glif new file mode 100644 index 00000000..988427f0 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/Z_.ss01.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/Z_acute.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/Z_acute.glif new file mode 100644 index 00000000..14a75c99 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/Z_acute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Z+acute.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/Z_acute.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/Z_acute.ss01.glif new file mode 100644 index 00000000..01b579d6 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/Z_acute.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Z.ss01+acute.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/Z_caron.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/Z_caron.glif new file mode 100644 index 00000000..68e614c0 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/Z_caron.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Z+caron.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/Z_caron.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/Z_caron.ss01.glif new file mode 100644 index 00000000..2451b9f3 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/Z_caron.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Z.ss01+caron.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/Z_dotaccent.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/Z_dotaccent.glif new file mode 100644 index 00000000..714b4cf8 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/Z_dotaccent.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Z+dotaccent.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/Z_dotaccent.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/Z_dotaccent.ss01.glif new file mode 100644 index 00000000..a85dd980 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/Z_dotaccent.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Z.ss01+dotaccent.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/Z_e-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/Z_e-cy.glif new file mode 100644 index 00000000..6dd681b8 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/Z_e-cy.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |C + com.fontlab.metricsRight + B + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/Z_edieresiscyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/Z_edieresiscyr.glif new file mode 100644 index 00000000..8f58f929 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/Z_edieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ze-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/Z_emlya-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/Z_emlya-cy.glif new file mode 100644 index 00000000..5ca6fa66 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/Z_emlya-cy.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Z-10 + com.fontlab.metricsRight + Z + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/Z_etailcyr.B_S_H_.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/Z_etailcyr.B_S_H_.glif new file mode 100644 index 00000000..82a63894 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/Z_etailcyr.B_S_H_.glif @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + З + com.fontlab.metricsRight + З + com.fontlab.recipe + Zetailcyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/Z_etailcyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/Z_etailcyr.glif new file mode 100644 index 00000000..07ef80a6 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/Z_etailcyr.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + З + com.fontlab.metricsRight + З + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/Z_he-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/Z_he-cy.glif new file mode 100644 index 00000000..7b4f5c5c --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/Z_he-cy.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |K + com.fontlab.metricsRight + K + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/Z_he-cy.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/Z_he-cy.ss01.glif new file mode 100644 index 00000000..75fd4541 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/Z_he-cy.ss01.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |K + com.fontlab.metricsRight + K + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/Z_hebrevecyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/Z_hebrevecyr.glif new file mode 100644 index 00000000..365679e1 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/Z_hebrevecyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Zhe-cy+breve.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/Z_hedieresiscyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/Z_hedieresiscyr.glif new file mode 100644 index 00000000..0cb1be43 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/Z_hedieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Zhe-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/Z_hetailcyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/Z_hetailcyr.glif new file mode 100644 index 00000000..c537b12b --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/Z_hetailcyr.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ж + com.fontlab.metricsRight + Katailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/Z_hwe-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/Z_hwe-cy.glif new file mode 100644 index 00000000..b8c84565 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/Z_hwe-cy.glif @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + З + com.fontlab.metricsRight + Ж + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/Z_jekomicyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/Z_jekomicyr.glif new file mode 100644 index 00000000..1998d883 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/Z_jekomicyr.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Dzjekomicyr + com.fontlab.metricsRight + Njekomicyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/_notdef.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/_notdef.glif new file mode 100644 index 00000000..e4b80e62 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/_notdef.glif @@ -0,0 +1,178 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + =55 + com.schriftgestaltung.Glyphs.rightMetricsKey + =55 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/_perc-circule.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/_perc-circule.glif new file mode 100644 index 00000000..e94eb936 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/_perc-circule.glif @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.schriftgestaltung.Glyphs.Export + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/a-cy.accented.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/a-cy.accented.glif new file mode 100644 index 00000000..91e6ae80 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/a-cy.accented.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+acute + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/a-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/a-cy.glif new file mode 100644 index 00000000..e373fe3f --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/a-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/a-cy.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/a-cy.ss01.glif new file mode 100644 index 00000000..c165c448 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/a-cy.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/a.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/a.glif new file mode 100644 index 00000000..774f5536 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/a.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + n-10 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/a.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/a.ss01.glif new file mode 100644 index 00000000..57cccea2 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/a.ss01.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/aacute.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/aacute.glif new file mode 100644 index 00000000..3989d7e0 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/aacute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+acute + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/aacute.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/aacute.ss01.glif new file mode 100644 index 00000000..7a5d9e2e --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/aacute.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+acute + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/abreve.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/abreve.glif new file mode 100644 index 00000000..cc398f0c --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/abreve.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+breve + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/abreve.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/abreve.ss01.glif new file mode 100644 index 00000000..40ff25f1 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/abreve.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+breve + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/abrevecyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/abrevecyr.glif new file mode 100644 index 00000000..bb799265 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/abrevecyr.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+breve + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/acaron.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/acaron.glif new file mode 100644 index 00000000..60f1906d --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/acaron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+caron + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/acircumflex.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/acircumflex.glif new file mode 100644 index 00000000..436e4c0c --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/acircumflex.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+circumflex + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/acircumflex.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/acircumflex.ss01.glif new file mode 100644 index 00000000..220b7d64 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/acircumflex.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+circumflex + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/acute.case.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/acute.case.glif new file mode 100644 index 00000000..e9982819 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/acute.case.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/acute.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/acute.glif new file mode 100644 index 00000000..77edc16d --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/acute.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/adieresis.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/adieresis.glif new file mode 100644 index 00000000..84371bf0 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/adieresis.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+dieresis + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/adieresis.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/adieresis.ss01.glif new file mode 100644 index 00000000..af952854 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/adieresis.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+dieresis + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/adieresiscyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/adieresiscyr.glif new file mode 100644 index 00000000..49da27a3 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/adieresiscyr.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/ae.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ae.glif new file mode 100644 index 00000000..d84a7f7a --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ae.glif @@ -0,0 +1,101 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + a + com.fontlab.metricsRight + e + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/ae.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ae.ss01.glif new file mode 100644 index 00000000..42f4f722 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ae.ss01.glif @@ -0,0 +1,96 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + a + com.fontlab.metricsRight + e.ss01 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/aeacute.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/aeacute.glif new file mode 100644 index 00000000..122ad222 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/aeacute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ae+acute + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/agrave.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/agrave.glif new file mode 100644 index 00000000..cc8f1511 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/agrave.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+grave + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/agrave.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/agrave.ss01.glif new file mode 100644 index 00000000..35542c7e --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/agrave.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+grave + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/aiecyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/aiecyr.glif new file mode 100644 index 00000000..4b70cfcf --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/aiecyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ae + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/amacron.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/amacron.glif new file mode 100644 index 00000000..c6d770d4 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/amacron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+macron + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/amacron.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/amacron.ss01.glif new file mode 100644 index 00000000..8f5ce2b9 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/amacron.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+macron + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/ampersand.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ampersand.glif new file mode 100644 index 00000000..78ab3bd7 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ampersand.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/aogonek.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/aogonek.glif new file mode 100644 index 00000000..acfd901f --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/aogonek.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+ogonek + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/aogonek.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/aogonek.ss01.glif new file mode 100644 index 00000000..7cbc4944 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/aogonek.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+ogonek + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/apostrophemod.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/apostrophemod.glif new file mode 100644 index 00000000..6b6b2132 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/apostrophemod.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + apostrophe + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/approxequal.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/approxequal.glif new file mode 100644 index 00000000..53c22045 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/approxequal.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/aring.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/aring.glif new file mode 100644 index 00000000..2fe44941 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/aring.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+ring + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/aring.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/aring.ss01.glif new file mode 100644 index 00000000..81537902 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/aring.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+ring + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/arrowdown.case.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/arrowdown.case.glif new file mode 100644 index 00000000..ab8b5288 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/arrowdown.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + arrowup + com.fontlab.metricsRight + arrowup + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/arrowdown.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/arrowdown.glif new file mode 100644 index 00000000..7d47baf8 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/arrowdown.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + arrowup + com.fontlab.metricsRight + arrowup + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/arrowdown.ss01.case.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/arrowdown.ss01.case.glif new file mode 100644 index 00000000..b3469adc --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/arrowdown.ss01.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + arrowup + com.fontlab.metricsRight + arrowup + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/arrowdown.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/arrowdown.ss01.glif new file mode 100644 index 00000000..a4a97fef --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/arrowdown.ss01.glif @@ -0,0 +1,15 @@ + + + + + + + + + com.fontlab.metricsLeft + arrowup + com.fontlab.metricsRight + arrowup + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/arrowleft.case.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/arrowleft.case.glif new file mode 100644 index 00000000..54dd498a --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/arrowleft.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + arrowleft + com.fontlab.metricsRight + arrowleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/arrowleft.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/arrowleft.glif new file mode 100644 index 00000000..d072ab1b --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/arrowleft.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/arrowleft.ss01.case.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/arrowleft.ss01.case.glif new file mode 100644 index 00000000..a10ece63 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/arrowleft.ss01.case.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + arrowleft + com.fontlab.metricsRight + arrowleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/arrowleft.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/arrowleft.ss01.glif new file mode 100644 index 00000000..5fbb9340 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/arrowleft.ss01.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + arrowleft + com.fontlab.metricsRight + arrowleft + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/arrowright.case.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/arrowright.case.glif new file mode 100644 index 00000000..0dbcc717 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/arrowright.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |arrowleft + com.fontlab.metricsRight + |arrowleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/arrowright.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/arrowright.glif new file mode 100644 index 00000000..eb7eb81d --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/arrowright.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + |arrowleft + com.fontlab.metricsRight + |arrowleft + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/arrowright.ss01.case.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/arrowright.ss01.case.glif new file mode 100644 index 00000000..0fe6dbff --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/arrowright.ss01.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |arrowleft + com.fontlab.metricsRight + |arrowleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/arrowright.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/arrowright.ss01.glif new file mode 100644 index 00000000..7a17fe36 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/arrowright.ss01.glif @@ -0,0 +1,15 @@ + + + + + + + + + com.fontlab.metricsLeft + |arrowleft + com.fontlab.metricsRight + |arrowleft + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/arrowup.case.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/arrowup.case.glif new file mode 100644 index 00000000..9d0a0026 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/arrowup.case.glif @@ -0,0 +1,15 @@ + + + + + + + + + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/arrowup.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/arrowup.glif new file mode 100644 index 00000000..4e6e74ad --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/arrowup.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + l() + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/arrowup.ss01.case.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/arrowup.ss01.case.glif new file mode 100644 index 00000000..4e2f4a42 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/arrowup.ss01.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + arrowup + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/arrowup.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/arrowup.ss01.glif new file mode 100644 index 00000000..6306b75f --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/arrowup.ss01.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + arrowup + com.fontlab.metricsRight + l() + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/asciicircum.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/asciicircum.glif new file mode 100644 index 00000000..72d4b446 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/asciicircum.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/asciitilde.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/asciitilde.glif new file mode 100644 index 00000000..fea1803e --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/asciitilde.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/asterisk.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/asterisk.glif new file mode 100644 index 00000000..25578670 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/asterisk.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/at.case.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/at.case.glif new file mode 100644 index 00000000..4867abdd --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/at.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/at.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/at.glif new file mode 100644 index 00000000..45dd118a --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/at.glif @@ -0,0 +1,92 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/atilde.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/atilde.glif new file mode 100644 index 00000000..8841f34d --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/atilde.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+tilde + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/atilde.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/atilde.ss01.glif new file mode 100644 index 00000000..52f45ecf --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/atilde.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+tilde + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/b.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/b.glif new file mode 100644 index 00000000..d922d60f --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/b.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/b.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/b.ss01.glif new file mode 100644 index 00000000..455a2950 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/b.ss01.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/backslash.case.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/backslash.case.glif new file mode 100644 index 00000000..bf9c0c48 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/backslash.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + backslash + com.fontlab.metricsRight + backslash + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/backslash.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/backslash.glif new file mode 100644 index 00000000..e1c6225f --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/backslash.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/bar.case.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/bar.case.glif new file mode 100644 index 00000000..bb1501b4 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/bar.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + H-10 + com.fontlab.metricsRight + H-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/bar.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/bar.glif new file mode 100644 index 00000000..78086363 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/bar.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H-10 + com.fontlab.metricsRight + H-10 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/be-cy.S_R_B_.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/be-cy.S_R_B_.glif new file mode 100644 index 00000000..ca14a347 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/be-cy.S_R_B_.glif @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/be-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/be-cy.glif new file mode 100644 index 00000000..ea04a7f1 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/be-cy.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/bishopblack.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/bishopblack.glif new file mode 100644 index 00000000..ca85d057 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/bishopblack.glif @@ -0,0 +1,241 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =10 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/bishopwhite.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/bishopwhite.glif new file mode 100644 index 00000000..d950ae1d --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/bishopwhite.glif @@ -0,0 +1,331 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/braceleft.case.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/braceleft.case.glif new file mode 100644 index 00000000..d39fa8a9 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/braceleft.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |braceright.case + com.fontlab.metricsRight + |braceright.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/braceleft.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/braceleft.glif new file mode 100644 index 00000000..d75e40a2 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/braceleft.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/braceright.case.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/braceright.case.glif new file mode 100644 index 00000000..df0944ee --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/braceright.case.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/braceright.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/braceright.glif new file mode 100644 index 00000000..bc71186f --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/braceright.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/bracketangleleft.case.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/bracketangleleft.case.glif new file mode 100644 index 00000000..3ffc9681 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/bracketangleleft.case.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + parenleft.case + com.fontlab.metricsRight + parenleft.case + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/bracketangleleft.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/bracketangleleft.glif new file mode 100644 index 00000000..4b28ee2e --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/bracketangleleft.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + parenleft + com.fontlab.metricsRight + parenleft + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/bracketangleright.case.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/bracketangleright.case.glif new file mode 100644 index 00000000..053fcb30 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/bracketangleright.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |bracketangleleft.case + com.fontlab.metricsRight + |bracketangleleft.case + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/bracketangleright.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/bracketangleright.glif new file mode 100644 index 00000000..de2deb0a --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/bracketangleright.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.metricsLeft + |bracketangleleft + com.fontlab.metricsRight + |bracketangleleft + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/bracketleft.case.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/bracketleft.case.glif new file mode 100644 index 00000000..409f0b87 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/bracketleft.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |bracketright.case + com.fontlab.metricsRight + |bracketright.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/bracketleft.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/bracketleft.glif new file mode 100644 index 00000000..c5094280 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/bracketleft.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/bracketright.case.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/bracketright.case.glif new file mode 100644 index 00000000..fc5852c8 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/bracketright.case.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |bracketleft + com.fontlab.metricsRight + |bracketleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/bracketright.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/bracketright.glif new file mode 100644 index 00000000..0ec8509e --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/bracketright.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |bracketleft + com.fontlab.metricsRight + |bracketleft + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/breve.case.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/breve.case.glif new file mode 100644 index 00000000..d3541418 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/breve.case.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/breve.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/breve.glif new file mode 100644 index 00000000..49385141 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/breve.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/brokenbar.case.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/brokenbar.case.glif new file mode 100644 index 00000000..33cf978d --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/brokenbar.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + bar + com.fontlab.metricsRight + bar + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/brokenbar.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/brokenbar.glif new file mode 100644 index 00000000..a7a2e7fe --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/brokenbar.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + bar + com.fontlab.metricsRight + bar + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/bullet.case.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/bullet.case.glif new file mode 100644 index 00000000..b9bcdbb3 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/bullet.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + period + com.fontlab.metricsRight + period + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/bullet.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/bullet.glif new file mode 100644 index 00000000..13f6b887 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/bullet.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + period + com.fontlab.metricsRight + period + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/c.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/c.glif new file mode 100644 index 00000000..42576a59 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/c.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/cacute.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/cacute.glif new file mode 100644 index 00000000..38d525f2 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/cacute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+acute + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/caron.case.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/caron.case.glif new file mode 100644 index 00000000..c8596200 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/caron.case.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/caron.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/caron.glif new file mode 100644 index 00000000..a16e65ee --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/caron.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/caron.salt.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/caron.salt.glif new file mode 100644 index 00000000..c4e0381d --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/caron.salt.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/ccaron.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ccaron.glif new file mode 100644 index 00000000..00c7d53f --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ccaron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+caron + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/ccedilla.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ccedilla.glif new file mode 100644 index 00000000..653454af --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ccedilla.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+cedilla + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/cche-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/cche-cy.glif new file mode 100644 index 00000000..e3457dcc --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/cche-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ч + com.fontlab.metricsRight + ч + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/ccircumflex.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ccircumflex.glif new file mode 100644 index 00000000..4b5d0cf5 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ccircumflex.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+circumflex + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/cdotaccent.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/cdotaccent.glif new file mode 100644 index 00000000..00341052 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/cdotaccent.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+dotaccent + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/cedilla.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/cedilla.glif new file mode 100644 index 00000000..a21e882e --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/cedilla.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/cent.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/cent.glif new file mode 100644 index 00000000..829c1b35 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/cent.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + c + com.fontlab.metricsRight + c + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/che-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/che-cy.glif new file mode 100644 index 00000000..3b2c1e17 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/che-cy.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + u-10 + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/cheabkhcyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/cheabkhcyr.glif new file mode 100644 index 00000000..0ebace17 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/cheabkhcyr.glif @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + e + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/cheabkhtailcyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/cheabkhtailcyr.glif new file mode 100644 index 00000000..58665a17 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/cheabkhtailcyr.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + cheabkhcyr + com.fontlab.metricsRight + cheabkhcyr + com.fontlab.recipe + cheabkhcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/chedieresiscyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/chedieresiscyr.glif new file mode 100644 index 00000000..59d39c17 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/chedieresiscyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + che-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/chekhakascyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/chekhakascyr.glif new file mode 100644 index 00000000..6d86f5f4 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/chekhakascyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ч + com.fontlab.metricsRight + н + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/chetailcyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/chetailcyr.glif new file mode 100644 index 00000000..456030ba --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/chetailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ч + com.fontlab.metricsRight + entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/chevertcyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/chevertcyr.glif new file mode 100644 index 00000000..939fd508 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/chevertcyr.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ч + com.fontlab.metricsRight + н + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/circumflex.case.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/circumflex.case.glif new file mode 100644 index 00000000..9d02be7a --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/circumflex.case.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/circumflex.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/circumflex.glif new file mode 100644 index 00000000..a63b2f07 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/circumflex.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/clubwhite.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/clubwhite.glif new file mode 100644 index 00000000..4a2bcb20 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/clubwhite.glif @@ -0,0 +1,155 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/colon.case.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/colon.case.glif new file mode 100644 index 00000000..3ef2e340 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/colon.case.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/colon.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/colon.glif new file mode 100644 index 00000000..3c42bf0c --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/colon.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/colontriangularmod.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/colontriangularmod.glif new file mode 100644 index 00000000..4dbee3b5 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/colontriangularmod.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + colon + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/comma.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/comma.glif new file mode 100644 index 00000000..194f1c47 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/comma.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/commaaccentcomb.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/commaaccentcomb.glif new file mode 100644 index 00000000..95fa4120 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/commaaccentcomb.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/commaaccentcomb.salt.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/commaaccentcomb.salt.glif new file mode 100644 index 00000000..1f9e5646 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/commaaccentcomb.salt.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/contents.plist b/sources/FixelDisplay-ExtraBold.ufo/glyphs/contents.plist new file mode 100644 index 00000000..2830b2de --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/contents.plist @@ -0,0 +1,2352 @@ + + + + + .notdef + _notdef.glif + A + A_.glif + A-cy + A_-cy.glif + A-cy.accented + A_-cy.accented.glif + A-cy.ss01 + A_-cy.ss01.glif + A.ss01 + A_.ss01.glif + AE + A_E_.glif + AE.ss01 + A_E_.ss01.glif + AEacute + A_E_acute.glif + Aacute + A_acute.glif + Aacute.ss01 + A_acute.ss01.glif + Abreve + A_breve.glif + Abreve.ss01 + A_breve.ss01.glif + Abrevecyr + A_brevecyr.glif + Acaron + A_caron.glif + Acircumflex + A_circumflex.glif + Acircumflex.ss01 + A_circumflex.ss01.glif + Adieresis + A_dieresis.glif + Adieresis.ss01 + A_dieresis.ss01.glif + Adieresiscyr + A_dieresiscyr.glif + Agrave + A_grave.glif + Agrave.ss01 + A_grave.ss01.glif + Aiecyr + A_iecyr.glif + Amacron + A_macron.glif + Amacron.ss01 + A_macron.ss01.glif + Aogonek + A_ogonek.glif + Aogonek.ss01 + A_ogonek.ss01.glif + Aring + A_ring.glif + Aring.ss01 + A_ring.ss01.glif + Atilde + A_tilde.glif + Atilde.ss01 + A_tilde.ss01.glif + B + B_.glif + Be-cy + B_e-cy.glif + C + C_.glif + CR + C_R_.glif + Cacute + C_acute.glif + Ccaron + C_caron.glif + Ccedilla + C_cedilla.glif + Cche-cy + C_che-cy.glif + Ccircumflex + C_circumflex.glif + Cdotaccent + C_dotaccent.glif + Che-cy + C_he-cy.glif + Cheabkhcyr + C_heabkhcyr.glif + Cheabkhtailcyr + C_heabkhtailcyr.glif + Chedieresiscyr + C_hedieresiscyr.glif + Chekhakascyr + C_hekhakascyr.glif + Chetailcyr + C_hetailcyr.glif + Chevertcyr + C_hevertcyr.glif + CrossedO-cy + C_rossedO_-cy.glif + D + D_.glif + Dcaron + D_caron.glif + Dchecyr + D_checyr.glif + Dcroat + D_croat.glif + De-cy + D_e-cy.glif + De-cy.BGR + D_e-cy.B_G_R_.glif + DeSoft-cy + D_eS_oft-cy.glif + Dekomicyr + D_ekomicyr.glif + Delta + D_elta.glif + Djecyr + D_jecyr.glif + Djekomicyr + D_jekomicyr.glif + Djerv-cy + D_jerv-cy.glif + DoubleO-cy + D_oubleO_-cy.glif + Dwe-cy + D_we-cy.glif + Dze-cy + D_ze-cy.glif + DzeReversed-cy + D_zeR_eversed-cy.glif + Dzeabkhcyr + D_zeabkhcyr.glif + Dzelo-cy + D_zelo-cy.glif + Dzhecyr + D_zhecyr.glif + Dzjekomicyr + D_zjekomicyr.glif + Dzwe-cy + D_zwe-cy.glif + Dzze-cy + D_zze-cy.glif + Dzzhecyr + D_zzhecyr.glif + E + E_.glif + E-cy + E_-cy.glif + E-cy.accented + E_-cy.accented.glif + Eacute + E_acute.glif + Ebreve + E_breve.glif + Ecaron + E_caron.glif + Ecircumflex + E_circumflex.glif + Edieresis + E_dieresis.glif + Edotaccent + E_dotaccent.glif + Ef-cy + E_f-cy.glif + Ef-cy.BGR + E_f-cy.B_G_R_.glif + Egrave + E_grave.glif + Eiotifiedcyr + E_iotifiedcyr.glif + El-cy + E_l-cy.glif + El-cy.BGR + E_l-cy.B_G_R_.glif + ElSoft-cy + E_lS_oft-cy.glif + Elhookcyr + E_lhookcyr.glif + Elmiddlehookcyr + E_lmiddlehookcyr.glif + Elsharptailcyr + E_lsharptailcyr.glif + Elsmallcyr + E_lsmallcyr.glif + Eltailcyr + E_ltailcyr.glif + Em-cy + E_m-cy.glif + Em-cy.ss01 + E_m-cy.ss01.glif + EmSoft-cy + E_mS_oft-cy.glif + Emacron + E_macron.glif + Emsharptailcyr + E_msharptailcyr.glif + En-cy + E_n-cy.glif + Eng + E_ng.glif + Eng.ss01 + E_ng.ss01.glif + Engecyr + E_ngecyr.glif + Enhookcyr + E_nhookcyr.glif + Enhookleftcyr + E_nhookleftcyr.glif + Enmiddlehookcyr + E_nmiddlehookcyr.glif + Ensharptailcyr + E_nsharptailcyr.glif + Entailcyr + E_ntailcyr.glif + Eogonek + E_ogonek.glif + Er-cy + E_r-cy.glif + Ereversed-cy + E_reversed-cy.glif + Ereversed-cy.accented + E_reversed-cy.accented.glif + Ereverseddieresiscyr + E_reverseddieresiscyr.glif + Ertickcyr + E_rtickcyr.glif + Es-cy + E_s-cy.glif + Estailcyr + E_stailcyr.glif + Estailcyr.BSH + E_stailcyr.B_S_H_.glif + Estailcyr.CHU + E_stailcyr.C_H_U_.glif + Eth + E_th.glif + F + F_.glif + Fitacyr + F_itacyr.glif + G + G_.glif + G.ss01 + G_.ss01.glif + Gacute + G_acute.glif + Gacute.ss01 + G_acute.ss01.glif + Gbreve + G_breve.glif + Gbreve.ss01 + G_breve.ss01.glif + Gcircumflex + G_circumflex.glif + Gcircumflex.ss01 + G_circumflex.ss01.glif + Gcommaaccent + G_commaaccent.glif + Gcommaaccent.ss01 + G_commaaccent.ss01.glif + Gdotaccent + G_dotaccent.glif + Gdotaccent.ss01 + G_dotaccent.ss01.glif + Ge-cy + G_e-cy.glif + Gehookcyr + G_ehookcyr.glif + Gehookstrokecyr + G_ehookstrokecyr.glif + Germandbls + G_ermandbls.glif + Gestrokecyr + G_estrokecyr.glif + Gestrokecyr.BSH + G_estrokecyr.B_S_H_.glif + Getailcyr + G_etailcyr.glif + Gheupturn-cy + G_heupturn-cy.glif + Gjecyr + G_jecyr.glif + H + H_.glif + Ha-cy + H_a-cy.glif + Ha-cy.ss01 + H_a-cy.ss01.glif + Haabkhcyr + H_aabkhcyr.glif + Hahookcyr + H_ahookcyr.glif + Hardsign-cy + H_ardsign-cy.glif + Hastrokecyr + H_astrokecyr.glif + Hbar + H_bar.glif + Hcircumflex + H_circumflex.glif + Hwe-cy + H_we-cy.glif + I + I_.glif + I-cy + I_-cy.glif + IJ + I_J_.glif + Ia-cy + I_a-cy.glif + Ia-cy.accented + I_a-cy.accented.glif + Ia-cy.ss01 + I_a-cy.ss01.glif + Iacute + I_acute.glif + Ibreve + I_breve.glif + Icircumflex + I_circumflex.glif + Idieresis + I_dieresis.glif + Idieresiscyr + I_dieresiscyr.glif + Idotaccent + I_dotaccent.glif + Ie-cy + I_e-cy.glif + Iebrevecyr + I_ebrevecyr.glif + Iegravecyr + I_egravecyr.glif + Igrave + I_grave.glif + Igravecyr + I_gravecyr.glif + Ii-cy + I_i-cy.glif + Ii-cy.accented + I_i-cy.accented.glif + Iishort-cy + I_ishort-cy.glif + Imacron + I_macron.glif + Imacroncyr + I_macroncyr.glif + Io-cy + I_o-cy.glif + Io-cy.accented + I_o-cy.accented.glif + Iogonek + I_ogonek.glif + Iota-cy + I_ota-cy.glif + IotifiedA-cy + I_otifiedA_-cy.glif + Ishortsharptailcyr + I_shortsharptailcyr.glif + Itilde + I_tilde.glif + Iu-cy + I_u-cy.glif + Iu-cy.accented + I_u-cy.accented.glif + Izhitsacyr + I_zhitsacyr.glif + Izhitsagravedblcyr + I_zhitsagravedblcyr.glif + J + J_.glif + J.ss01 + J_.ss01.glif + Jcircumflex + J_circumflex.glif + Jcircumflex.ss01 + J_circumflex.ss01.glif + Jecyr + J_ecyr.glif + K + K_.glif + K.ss01 + K_.ss01.glif + Ka-cy + K_a-cy.glif + Ka-cy.ss01 + K_a-cy.ss01.glif + Kaaleutcyr + K_aaleutcyr.glif + Kabashkcyr + K_abashkcyr.glif + Kahookcyr + K_ahookcyr.glif + Kastrokecyr + K_astrokecyr.glif + Katailcyr + K_atailcyr.glif + Kaverticalstrokecyr + K_averticalstrokecyr.glif + Kcommaaccent + K_commaaccent.glif + Kcommaaccent.ss01 + K_commaaccent.ss01.glif + Kjecyr + K_jecyr.glif + Koppacyr + K_oppacyr.glif + Ksicyr + K_sicyr.glif + L + L_.glif + Lacute + L_acute.glif + Lcaron + L_caron.glif + Lcommaaccent + L_commaaccent.glif + Ldot + L_dot.glif + Lhacyr + L_hacyr.glif + Ljecyr + L_jecyr.glif + Ljekomicyr + L_jekomicyr.glif + Lslash + L_slash.glif + M + M_.glif + M.ss01 + M_.ss01.glif + N + N_.glif + N.ss01 + N_.ss01.glif + NULL + N_U_L_L_.glif + Nacute + N_acute.glif + Nacute.ss01 + N_acute.ss01.glif + Ncaron + N_caron.glif + Ncaron.ss01 + N_caron.ss01.glif + Ncommaaccent + N_commaaccent.glif + Ncommaaccent.ss01 + N_commaaccent.ss01.glif + Njecyr + N_jecyr.glif + Njekomicyr + N_jekomicyr.glif + Ntilde + N_tilde.glif + Ntilde.ss01 + N_tilde.ss01.glif + O + O_.glif + O-cy + O_-cy.glif + O-cy.accented + O_-cy.accented.glif + OBinocular-cy + O_B_inocular-cy.glif + ODoubleMonocular-cy + O_D_oubleM_onocular-cy.glif + OE + O_E_.glif + OMonocular-cy + O_M_onocular-cy.glif + Oacute + O_acute.glif + Obarcyr + O_barcyr.glif + Obardieresiscyr + O_bardieresiscyr.glif + Obreve + O_breve.glif + Ocircumflex + O_circumflex.glif + Odieresis + O_dieresis.glif + Odieresiscyr + O_dieresiscyr.glif + Ograve + O_grave.glif + Ohungarumlaut + O_hungarumlaut.glif + Omacron + O_macron.glif + Omega + O_mega.glif + OmegaBroad-cy + O_megaB_road-cy.glif + Omegacyr + O_megacyr.glif + Omegaroundcyr + O_megaroundcyr.glif + Omegatitlocyr + O_megatitlocyr.glif + Oslash + O_slash.glif + Oslashacute + O_slashacute.glif + Otcyr + O_tcyr.glif + Otilde + O_tilde.glif + P + P_.glif + Palochkacyr + P_alochkacyr.glif + Pe-cy + P_e-cy.glif + Pehookcyr + P_ehookcyr.glif + Petailcyr + P_etailcyr.glif + Psicyr + P_sicyr.glif + Q + Q_.glif + Q.ss01 + Q_.ss01.glif + Qacyr + Q_acyr.glif + R + R_.glif + Racute + R_acute.glif + Rcaron + R_caron.glif + Rcommaaccent + R_commaaccent.glif + Reversedzecyr + R_eversedzecyr.glif + Rhacyr + R_hacyr.glif + S + S_.glif + Sacute + S_acute.glif + Scaron + S_caron.glif + Scedilla + S_cedilla.glif + Schwa + S_chwa.glif + Schwacyr + S_chwacyr.glif + Schwadieresiscyr + S_chwadieresiscyr.glif + Scircumflex + S_circumflex.glif + Scommaaccent + S_commaaccent.glif + Semisoftcyr + S_emisoftcyr.glif + Sha-cy + S_ha-cy.glif + Shcha-cy + S_hcha-cy.glif + Shhacyr + S_hhacyr.glif + Shhatailcyr + S_hhatailcyr.glif + Shwe-cy + S_hwe-cy.glif + Sjekomicyr + S_jekomicyr.glif + Softsign-cy + S_oftsign-cy.glif + T + T_.glif + Tbar + T_bar.glif + Tcaron + T_caron.glif + Tcedilla + T_cedilla.glif + Tche-cy + T_che-cy.glif + Tcommaaccent + T_commaaccent.glif + Te-cy + T_e-cy.glif + TeWithMiddleHook-cy + T_eW_ithM_iddleH_ook-cy.glif + Tetailcyr + T_etailcyr.glif + Tetsecyr + T_etsecyr.glif + Thorn + T_horn.glif + Tjekomicyr + T_jekomicyr.glif + Tse-cy + T_se-cy.glif + TseReversed-cy + T_seR_eversed-cy.glif + Tshecyr + T_shecyr.glif + Tsse-cy + T_sse-cy.glif + Tswe-cy + T_swe-cy.glif + Twe-cy + T_we-cy.glif + U + U_.glif + U-cy + U_-cy.glif + U-cy.accented + U_-cy.accented.glif + U-cy.ss01 + U_-cy.ss01.glif + Uacute + U_acute.glif + Uacutedblcyr + U_acutedblcyr.glif + Ubreve + U_breve.glif + Ucircumflex + U_circumflex.glif + Udieresis + U_dieresis.glif + Udieresiscyr + U_dieresiscyr.glif + Ugrave + U_grave.glif + Uhungarumlaut + U_hungarumlaut.glif + UkMonograph-cy + U_kM_onograph-cy.glif + Ukcyr + U_kcyr.glif + Umacron + U_macron.glif + Umacroncyr + U_macroncyr.glif + Uogonek + U_ogonek.glif + Uring + U_ring.glif + Ushort-cy + U_short-cy.glif + Ushort-cy.ss01 + U_short-cy.ss01.glif + Ustraightcyr + U_straightcyr.glif + Ustraightstrokecyr + U_straightstrokecyr.glif + Utilde + U_tilde.glif + V + V_.glif + V.ss01 + V_.ss01.glif + Ve-cy + V_e-cy.glif + W + W_.glif + W.ss01 + W_.ss01.glif + Wacute + W_acute.glif + Wacute.ss01 + W_acute.ss01.glif + Wcircumflex + W_circumflex.glif + Wcircumflex.ss01 + W_circumflex.ss01.glif + Wdieresis + W_dieresis.glif + Wdieresis.ss01 + W_dieresis.ss01.glif + Wecyr + W_ecyr.glif + Wgrave + W_grave.glif + Wgrave.ss01 + W_grave.ss01.glif + X + X_.glif + X.ss01 + X_.ss01.glif + Xatailcyr + X_atailcyr.glif + Y + Y_.glif + Y.ss01 + Y_.ss01.glif + Yacute + Y_acute.glif + Yacute.ss01 + Y_acute.ss01.glif + Yaecyr + Y_aecyr.glif + YatIotified-cy + Y_atI_otified-cy.glif + Yatcyr + Y_atcyr.glif + Ycircumflex + Y_circumflex.glif + Ycircumflex.ss01 + Y_circumflex.ss01.glif + Ydieresis + Y_dieresis.glif + Ydieresis.ss01 + Y_dieresis.ss01.glif + YerNeutral-cy + Y_erN_eutral-cy.glif + Yeru-cy + Y_eru-cy.glif + Yeru-cy.accented + Y_eru-cy.accented.glif + Yeru-cymacron + Y_eru-cymacron.glif + YeruBackYer-cy + Y_eruB_ackY_er-cy.glif + Yi-cy + Y_i-cy.glif + Ylongdieresiscyr + Y_longdieresiscyr.glif + Yn-cy + Y_n-cy.glif + YuReversed-cy + Y_uR_eversed-cy.glif + YusBlended-cy + Y_usB_lended-cy.glif + YusClosedlittle-cy + Y_usC_losedlittle-cy.glif + Yusbigcyr + Y_usbigcyr.glif + Yusbigiotifiedcyr + Y_usbigiotifiedcyr.glif + YusiotifiedClosedLittle-cy + Y_usiotifiedC_losedL_ittle-cy.glif + Yuslittlecyr + Y_uslittlecyr.glif + Yuslittleiotifiedcyr + Y_uslittleiotifiedcyr.glif + Z + Z_.glif + Z.ss01 + Z_.ss01.glif + Zacute + Z_acute.glif + Zacute.ss01 + Z_acute.ss01.glif + Zcaron + Z_caron.glif + Zcaron.ss01 + Z_caron.ss01.glif + Zdotaccent + Z_dotaccent.glif + Zdotaccent.ss01 + Z_dotaccent.ss01.glif + Ze-cy + Z_e-cy.glif + Zedieresiscyr + Z_edieresiscyr.glif + Zemlya-cy + Z_emlya-cy.glif + Zetailcyr + Z_etailcyr.glif + Zetailcyr.BSH + Z_etailcyr.B_S_H_.glif + Zhe-cy + Z_he-cy.glif + Zhe-cy.ss01 + Z_he-cy.ss01.glif + Zhebrevecyr + Z_hebrevecyr.glif + Zhedieresiscyr + Z_hedieresiscyr.glif + Zhetailcyr + Z_hetailcyr.glif + Zhwe-cy + Z_hwe-cy.glif + Zjekomicyr + Z_jekomicyr.glif + _perc-circule + _perc-circule.glif + a + a.glif + a-cy + a-cy.glif + a-cy.accented + a-cy.accented.glif + a-cy.ss01 + a-cy.ss01.glif + a.ss01 + a.ss01.glif + aacute + aacute.glif + aacute.ss01 + aacute.ss01.glif + abreve + abreve.glif + abreve.ss01 + abreve.ss01.glif + abrevecyr + abrevecyr.glif + acaron + acaron.glif + acircumflex + acircumflex.glif + acircumflex.ss01 + acircumflex.ss01.glif + acute + acute.glif + acute.case + acute.case.glif + adieresis + adieresis.glif + adieresis.ss01 + adieresis.ss01.glif + adieresiscyr + adieresiscyr.glif + ae + ae.glif + ae.ss01 + ae.ss01.glif + aeacute + aeacute.glif + agrave + agrave.glif + agrave.ss01 + agrave.ss01.glif + aiecyr + aiecyr.glif + amacron + amacron.glif + amacron.ss01 + amacron.ss01.glif + ampersand + ampersand.glif + aogonek + aogonek.glif + aogonek.ss01 + aogonek.ss01.glif + apostrophemod + apostrophemod.glif + approxequal + approxequal.glif + aring + aring.glif + aring.ss01 + aring.ss01.glif + arrowdown + arrowdown.glif + arrowdown.case + arrowdown.case.glif + arrowdown.ss01 + arrowdown.ss01.glif + arrowdown.ss01.case + arrowdown.ss01.case.glif + arrowleft + arrowleft.glif + arrowleft.case + arrowleft.case.glif + arrowleft.ss01 + arrowleft.ss01.glif + arrowleft.ss01.case + arrowleft.ss01.case.glif + arrowright + arrowright.glif + arrowright.case + arrowright.case.glif + arrowright.ss01 + arrowright.ss01.glif + arrowright.ss01.case + arrowright.ss01.case.glif + arrowup + arrowup.glif + arrowup.case + arrowup.case.glif + arrowup.ss01 + arrowup.ss01.glif + arrowup.ss01.case + arrowup.ss01.case.glif + asciicircum + asciicircum.glif + asciitilde + asciitilde.glif + asterisk + asterisk.glif + at + at.glif + at.case + at.case.glif + atilde + atilde.glif + atilde.ss01 + atilde.ss01.glif + b + b.glif + b.ss01 + b.ss01.glif + backslash + backslash.glif + backslash.case + backslash.case.glif + bar + bar.glif + bar.case + bar.case.glif + be-cy + be-cy.glif + be-cy.SRB + be-cy.S_R_B_.glif + bishopblack + bishopblack.glif + bishopwhite + bishopwhite.glif + braceleft + braceleft.glif + braceleft.case + braceleft.case.glif + braceright + braceright.glif + braceright.case + braceright.case.glif + bracketangleleft + bracketangleleft.glif + bracketangleleft.case + bracketangleleft.case.glif + bracketangleright + bracketangleright.glif + bracketangleright.case + bracketangleright.case.glif + bracketleft + bracketleft.glif + bracketleft.case + bracketleft.case.glif + bracketright + bracketright.glif + bracketright.case + bracketright.case.glif + breve + breve.glif + breve.case + breve.case.glif + brokenbar + brokenbar.glif + brokenbar.case + brokenbar.case.glif + bullet + bullet.glif + bullet.case + bullet.case.glif + c + c.glif + cacute + cacute.glif + caron + caron.glif + caron.case + caron.case.glif + caron.salt + caron.salt.glif + ccaron + ccaron.glif + ccedilla + ccedilla.glif + cche-cy + cche-cy.glif + ccircumflex + ccircumflex.glif + cdotaccent + cdotaccent.glif + cedilla + cedilla.glif + cent + cent.glif + che-cy + che-cy.glif + cheabkhcyr + cheabkhcyr.glif + cheabkhtailcyr + cheabkhtailcyr.glif + chedieresiscyr + chedieresiscyr.glif + chekhakascyr + chekhakascyr.glif + chetailcyr + chetailcyr.glif + chevertcyr + chevertcyr.glif + circumflex + circumflex.glif + circumflex.case + circumflex.case.glif + clubwhite + clubwhite.glif + colon + colon.glif + colon.case + colon.case.glif + colontriangularmod + colontriangularmod.glif + comma + comma.glif + commaaccentcomb + commaaccentcomb.glif + commaaccentcomb.salt + commaaccentcomb.salt.glif + copyright + copyright.glif + crossedo-cy + crossedo-cy.glif + crossedswords + crossedswords.glif + currency + currency.glif + d + d.glif + d.ss01 + d.ss01.glif + dagger + dagger.glif + daggerdbl + daggerdbl.glif + dcaron + dcaron.glif + dcaron.ss01 + dcaron.ss01.glif + dchecyr + dchecyr.glif + dcroat + dcroat.glif + dcroat.ss01 + dcroat.ss01.glif + de-cy + de-cy.glif + de-cy.BGR + de-cy.B_G_R_.glif + de-cy.ss01 + de-cy.ss01.glif + deSoft-cy + deS_oft-cy.glif + degree + degree.glif + dekomicyr + dekomicyr.glif + diamondwhite-misc + diamondwhite-misc.glif + dieresis + dieresis.glif + dieresis.alt + dieresis.alt.glif + dieresis.case + dieresis.case.glif + dieresisacute + dieresisacute.glif + dieresiscase.alt + dieresiscase.alt.glif + divide + divide.glif + djecyr + djecyr.glif + djekomicyr + djekomicyr.glif + djerv-cy + djerv-cy.glif + dollar + dollar.glif + dotaccent + dotaccent.glif + dotaccent.case + dotaccent.case.glif + doubleo-cy + doubleo-cy.glif + dramsignarmn + dramsignarmn.glif + dwe-cy + dwe-cy.glif + dze-cy + dze-cy.glif + dzeReversed-cy + dzeR_eversed-cy.glif + dzeabkhcyr + dzeabkhcyr.glif + dzelo-cy + dzelo-cy.glif + dzhecyr + dzhecyr.glif + dzjekomicyr + dzjekomicyr.glif + dzwe-cy + dzwe-cy.glif + dzze-cy + dzze-cy.glif + dzzhecyr + dzzhecyr.glif + e + e.glif + e-cy + e-cy.glif + e-cy.accented + e-cy.accented.glif + e-cy.hist + e-cy.hist.glif + e.ss01 + e.ss01.glif + eacute + eacute.glif + eacute.ss01 + eacute.ss01.glif + ebreve + ebreve.glif + ebreve.ss01 + ebreve.ss01.glif + ecaron + ecaron.glif + ecaron.ss01 + ecaron.ss01.glif + ecircumflex + ecircumflex.glif + ecircumflex.ss01 + ecircumflex.ss01.glif + edieresis + edieresis.glif + edieresis.ss01 + edieresis.ss01.glif + edotaccent + edotaccent.glif + edotaccent.ss01 + edotaccent.ss01.glif + ef-cy + ef-cy.glif + egrave + egrave.glif + egrave.ss01 + egrave.ss01.glif + eight + eight.glif + eight.osf + eight.osf.glif + eight.tf + eight.tf.glif + eiotifiedcyr + eiotifiedcyr.glif + eiotifiedcyr.BGR + eiotifiedcyr.B_G_R_.glif + el-cy + el-cy.glif + el-cy.BGR + el-cy.B_G_R_.glif + el-cy.ss01 + el-cy.ss01.glif + elSoft-cy + elS_oft-cy.glif + elhookcyr + elhookcyr.glif + ellipsis + ellipsis.glif + elmiddlehookcyr + elmiddlehookcyr.glif + elsharptailcyr + elsharptailcyr.glif + eltailcyr + eltailcyr.glif + em-cy + em-cy.glif + emSoft-cy + emS_oft-cy.glif + emacron + emacron.glif + emacron.ss01 + emacron.ss01.glif + emdash + emdash.glif + emdash.case + emdash.case.glif + emsharptailcyr + emsharptailcyr.glif + en-cy + en-cy.glif + enclosingcirclecomb + enclosingcirclecomb.glif + endash + endash.glif + endash.case + endash.case.glif + eng + eng.glif + engecyr + engecyr.glif + enhookcyr + enhookcyr.glif + enhookleftcyr + enhookleftcyr.glif + enmiddlehookcyr + enmiddlehookcyr.glif + ensharptailcyr + ensharptailcyr.glif + entailcyr + entailcyr.glif + eogonek + eogonek.glif + eogonek.ss01 + eogonek.ss01.glif + equal + equal.glif + er-cy + er-cy.glif + er-cy.ss01 + er-cy.ss01.glif + ereversed-cy + ereversed-cy.glif + ereversed-cy.accented + ereversed-cy.accented.glif + ereverseddieresiscyr + ereverseddieresiscyr.glif + ertickcyr + ertickcyr.glif + es-cy + es-cy.glif + estailcyr + estailcyr.glif + estailcyr.BSH + estailcyr.B_S_H_.glif + estailcyr.CHU + estailcyr.C_H_U_.glif + estimated + estimated.glif + eth + eth.glif + eturned + eturned.glif + euro + euro.glif + exclam + exclam.glif + exclamdown + exclamdown.glif + exclamdown.case + exclamdown.case.glif + f + f.glif + f.ss01 + f.ss01.glif + f_f + f_f.glif + f_f.ss01 + f_f.ss01.glif + f_f_i + f_f_i.glif + f_f_i.ss01 + f_f_i.ss01.glif + f_f_l + f_f_l.glif + f_f_l.ss01 + f_f_l.ss01.glif + fi + fi.glif + fi.ss01 + fi.ss01.glif + fitacyr + fitacyr.glif + five + five.glif + five.osf + five.osf.glif + five.tf + five.tf.glif + fl + fl.glif + fl.ss01 + fl.ss01.glif + floretteblack + floretteblack.glif + floretteoutlinedpetalledblackeight + floretteoutlinedpetalledblackeight.glif + florettewhite + florettewhite.glif + florin + florin.glif + flower + flower.glif + four + four.glif + four.osf + four.osf.glif + four.tf + four.tf.glif + fraction + fraction.glif + g + g.glif + g.ss01 + g.ss01.glif + gacute + gacute.glif + gacute.ss01 + gacute.ss01.glif + gbreve + gbreve.glif + gbreve.ss01 + gbreve.ss01.glif + gcircumflex + gcircumflex.glif + gcircumflex.ss01 + gcircumflex.ss01.glif + gcommaaccent + gcommaaccent.glif + gcommaaccent.ss01 + gcommaaccent.ss01.glif + gdotaccent + gdotaccent.glif + gdotaccent.ss01 + gdotaccent.ss01.glif + ge-cy + ge-cy.glif + ge-cy.BGR + ge-cy.B_G_R_.glif + ge-cy.SRB + ge-cy.S_R_B_.glif + gehookcyr + gehookcyr.glif + gehookstrokecyr + gehookstrokecyr.glif + germandbls + germandbls.glif + germandbls.ss01 + germandbls.ss01.glif + gestrokecyr + gestrokecyr.glif + gestrokecyr.BSH + gestrokecyr.B_S_H_.glif + getailcyr + getailcyr.glif + gheupturn-cy + gheupturn-cy.glif + gjecyr + gjecyr.glif + gjecyr.SRB + gjecyr.S_R_B_.glif + grave + grave.glif + grave.case + grave.case.glif + greater + greater.glif + greaterequal + greaterequal.glif + guillemetleft + guillemetleft.glif + guillemetleft.case + guillemetleft.case.glif + guillemetright + guillemetright.glif + guillemetright.case + guillemetright.case.glif + guilsinglleft + guilsinglleft.glif + guilsinglleft.case + guilsinglleft.case.glif + guilsinglright + guilsinglright.glif + guilsinglright.case + guilsinglright.case.glif + h + h.glif + ha-cy + ha-cy.glif + haabkhcyr + haabkhcyr.glif + hahookcyr + hahookcyr.glif + hardsign-cy + hardsign-cy.glif + hardsign-cy.BGR + hardsign-cy.B_G_R_.glif + hardsign-cy.ss01 + hardsign-cy.ss01.glif + hastrokecyr + hastrokecyr.glif + hbar + hbar.glif + hcircumflex + hcircumflex.glif + heart + heart.glif + heartwhite + heartwhite.glif + hryvnia + hryvnia.glif + hundredmillionscomb-cy + hundredmillionscomb-cy.glif + hundredthousandscombcyr + hundredthousandscombcyr.glif + hungarumlaut + hungarumlaut.glif + hungarumlaut.case + hungarumlaut.case.glif + hwe-cy + hwe-cy.glif + hyphen + hyphen.glif + hyphen.case + hyphen.case.glif + i + i.glif + i-cy + i-cy.glif + ia-cy + ia-cy.glif + ia-cy.accented + ia-cy.accented.glif + ia-cy.ss01 + ia-cy.ss01.glif + iacute + iacute.glif + ibreve + ibreve.glif + icircumflex + icircumflex.glif + idieresis + idieresis.glif + idieresiscyr + idieresiscyr.glif + idotless + idotless.glif + ie-cy + ie-cy.glif + ie-cy.ss01 + ie-cy.ss01.glif + iebrevecyr + iebrevecyr.glif + iegravecyr + iegravecyr.glif + iegravecyr.SRB + iegravecyr.S_R_B_.glif + igrave + igrave.glif + igravecyr + igravecyr.glif + igravecyr.SRB + igravecyr.S_R_B_.glif + ii-cy + ii-cy.glif + ii-cy.BGR + ii-cy.B_G_R_.glif + ii-cy.accented + ii-cy.accented.glif + iishort-cy + iishort-cy.glif + iishort-cy.BGR + iishort-cy.B_G_R_.glif + ij + ij.glif + imacron + imacron.glif + imacroncyr + imacroncyr.glif + increment + increment.glif + infinity + infinity.glif + integral + integral.glif + io-cy + io-cy.glif + io-cy.accented + io-cy.accented.glif + io-cy.ss01 + io-cy.ss01.glif + iogonek + iogonek.glif + iota-cy + iota-cy.glif + iotifieda-cy + iotifieda-cy.glif + iotifieda-cy.BGR + iotifieda-cy.B_G_R_.glif + iotifieda-cy.hist + iotifieda-cy.hist.glif + ishortsharptailcyr + ishortsharptailcyr.glif + itilde + itilde.glif + iu-cy + iu-cy.glif + iu-cy.BGR + iu-cy.B_G_R_.glif + iu-cy.accented + iu-cy.accented.glif + izhitsacyr + izhitsacyr.glif + izhitsagravedblcyr + izhitsagravedblcyr.glif + j + j.glif + jcircumflex + jcircumflex.glif + jdotless + jdotless.glif + je-cy + je-cy.glif + k + k.glif + ka-cy + ka-cy.glif + ka-cy.BGR + ka-cy.B_G_R_.glif + kaaleutcyr + kaaleutcyr.glif + kabashkcyr + kabashkcyr.glif + kahookcyr + kahookcyr.glif + kastrokecyr + kastrokecyr.glif + katailcyr + katailcyr.glif + kaverticalstrokecyr + kaverticalstrokecyr.glif + kcommaaccent + kcommaaccent.glif + kgreenlandic + kgreenlandic.glif + kjecyr + kjecyr.glif + knightblack + knightblack.glif + knightwhite + knightwhite.glif + koppacyr + koppacyr.glif + ksicyr + ksicyr.glif + l + l.glif + l.ss01 + l.ss01.glif + lacute + lacute.glif + lacute.ss01 + lacute.ss01.glif + lcaron + lcaron.glif + lcaron.ss01 + lcaron.ss01.glif + lcommaaccent + lcommaaccent.glif + lcommaaccent.ss01 + lcommaaccent.ss01.glif + ldot + ldot.glif + ldot.ss01 + ldot.ss01.glif + leo + leo.glif + less + less.glif + lessequal + lessequal.glif + lhacyr + lhacyr.glif + ljecyr + ljecyr.glif + ljecyr.ss01 + ljecyr.ss01.glif + ljekomicyr + ljekomicyr.glif + longs + longs.glif + lslash + lslash.glif + lslash.ss01 + lslash.ss01.glif + m + m.glif + macron + macron.glif + macron-fwd + macron-fwd.glif + macron-fwd.alt + macron-fwd.alt.glif + macron.case + macron.case.glif + macronacute.SRB + macronacute.S_R_B_.glif + millionscombcyr + millionscombcyr.glif + minus + minus.glif + minute + minute.glif + mu + mu.glif + multiply + multiply.glif + n + n.glif + nacute + nacute.glif + napostrophe + napostrophe.glif + ncaron + ncaron.glif + ncommaaccent + ncommaaccent.glif + neptune + neptune.glif + nine + nine.glif + nine.osf + nine.osf.glif + nine.tf + nine.tf.glif + njecyr + njecyr.glif + njecyr.ss01 + njecyr.ss01.glif + njekomicyr + njekomicyr.glif + notequal + notequal.glif + ntilde + ntilde.glif + numbersign + numbersign.glif + numero + numero.glif + numero.ss01 + numero.ss01.glif + o + o.glif + o-cy + o-cy.glif + o-cy.accented + o-cy.accented.glif + oBinocular-cy + oB_inocular-cy.glif + oDoubleMonocular-cy + oD_oubleM_onocular-cy.glif + oMonocular-cy + oM_onocular-cy.glif + oacute + oacute.glif + obarcyr + obarcyr.glif + obardieresiscyr + obardieresiscyr.glif + obreve + obreve.glif + ocircumflex + ocircumflex.glif + odieresis + odieresis.glif + odieresiscyr + odieresiscyr.glif + oe + oe.glif + oe.ss01 + oe.ss01.glif + ogonek + ogonek.glif + ograve + ograve.glif + ohungarumlaut + ohungarumlaut.glif + omacron + omacron.glif + omegaBroad-cy + omegaB_road-cy.glif + omegacyr + omegacyr.glif + omegaroundcyr + omegaroundcyr.glif + omegatitlocyr + omegatitlocyr.glif + omultiocular-cy + omultiocular-cy.glif + omultiocular-cy.alt + omultiocular-cy.alt.glif + one + one.glif + one.osf + one.osf.glif + one.tf + one.tf.glif + onehalf + onehalf.glif + onequarter + onequarter.glif + onesuperior + onesuperior.glif + ordfeminine + ordfeminine.glif + ordmasculine + ordmasculine.glif + oslash + oslash.glif + oslashacute + oslashacute.glif + otcyr + otcyr.glif + otilde + otilde.glif + p + p.glif + p.ss01 + p.ss01.glif + palatcombcyr + palatcombcyr.glif + palochkacyr + palochkacyr.glif + paragraph + paragraph.glif + parenleft + parenleft.glif + parenleft.case + parenleft.case.glif + parenright + parenright.glif + parenright.case + parenright.case.glif + partialdiff + partialdiff.glif + pe-cy + pe-cy.glif + pe-cy.BGR + pe-cy.B_G_R_.glif + pe-cy.SRB + pe-cy.S_R_B_.glif + pehookcyr + pehookcyr.glif + percent + percent.glif + period + period.glif + periodcentered + periodcentered.glif + perthousand + perthousand.glif + petailcyr + petailcyr.glif + pi + pi.glif + plus + plus.glif + plusminus + plusminus.glif + pokrytiecombcyr + pokrytiecombcyr.glif + product + product.glif + proportional + proportional.glif + psicyr + psicyr.glif + q + q.glif + q.ss01 + q.ss01.glif + qacyr + qacyr.glif + question + question.glif + questiondown + questiondown.glif + questiondown.case + questiondown.case.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 + radical + radical.glif + rcaron + rcaron.glif + rcommaaccent + rcommaaccent.glif + registered + registered.glif + reversedzecyr + reversedzecyr.glif + rhacyr + rhacyr.glif + ring + ring.glif + ring.case + ring.case.glif + rookblack + rookblack.glif + ruble + ruble.glif + s + s.glif + sacute + sacute.glif + scaron + scaron.glif + scedilla + scedilla.glif + schwacyr + schwacyr.glif + schwadieresiscyr + schwadieresiscyr.glif + scircumflex + scircumflex.glif + scommaaccent + scommaaccent.glif + second + second.glif + section + section.glif + semicolon + semicolon.glif + semicolon.case + semicolon.case.glif + semisoftcyr + semisoftcyr.glif + seven + seven.glif + seven.osf + seven.osf.glif + seven.tf + seven.tf.glif + sha-cy + sha-cy.glif + sha-cy.BGR + sha-cy.B_G_R_.glif + shcha-cy + shcha-cy.glif + shcha-cy.BGR + shcha-cy.B_G_R_.glif + shhacyr + shhacyr.glif + shhatailcyr + shhatailcyr.glif + shwe-cy + shwe-cy.glif + six + six.glif + six.osf + six.osf.glif + six.tf + six.tf.glif + sjekomicyr + sjekomicyr.glif + slash + slash.glif + slash.case + slash.case.glif + softsign-cy + softsign-cy.glif + softsign-cy.BGR + softsign-cy.B_G_R_.glif + softsign-cy.ss01 + softsign-cy.ss01.glif + space + space.glif + spadewhite + spadewhite.glif + sterling + sterling.glif + summation + summation.glif + t + t.glif + t.ss01 + t.ss01.glif + tbar + tbar.glif + tbar.ss01 + tbar.ss01.glif + tcaron + tcaron.glif + tcaron.ss01 + tcaron.ss01.glif + tcedilla + tcedilla.glif + tcedilla.ss01 + tcedilla.ss01.glif + tche-cy + tche-cy.glif + tcommaaccent + tcommaaccent.glif + tcommaaccent.ss01 + tcommaaccent.ss01.glif + te-cy + te-cy.glif + te-cy.BGR + te-cy.B_G_R_.glif + te-cy.SRB + te-cy.S_R_B_.glif + te-cy.ss01 + te-cy.ss01.glif + tenge + tenge.glif + tenmillionscomb-cy + tenmillionscomb-cy.glif + tetailcyr + tetailcyr.glif + tetsecyr + tetsecyr.glif + tewithmiddlehook-cy + tewithmiddlehook-cy.glif + thorn + thorn.glif + thousandmillionscomb-cy + thousandmillionscomb-cy.glif + thousandscyr + thousandscyr.glif + thousandscyr.dnom + thousandscyr.dnom.glif + three + three.glif + three.osf + three.osf.glif + three.tf + three.tf.glif + threequarters + threequarters.glif + threesuperior + threesuperior.glif + tilde + tilde.glif + tilde.case + tilde.case.glif + titlocombcyr + titlocombcyr.glif + tjekomicyr + tjekomicyr.glif + trademark + trademark.glif + tse-cy + tse-cy.glif + tse-cy.BGR + tse-cy.B_G_R_.glif + tseReversed-cy + tseR_eversed-cy.glif + tshecyr + tshecyr.glif + tsse-cy + tsse-cy.glif + tswe-cy + tswe-cy.glif + twe-cy + twe-cy.glif + two + two.glif + two.osf + two.osf.glif + two.tf + two.tf.glif + twosuperior + twosuperior.glif + u + u.glif + u-cy + u-cy.glif + u-cy.accented + u-cy.accented.glif + uacute + uacute.glif + uacutedblcyr + uacutedblcyr.glif + ubreve + ubreve.glif + ucircumflex + ucircumflex.glif + udieresis + udieresis.glif + udieresiscyr + udieresiscyr.glif + ugrave + ugrave.glif + uhungarumlaut + uhungarumlaut.glif + ukMonograph-cy + ukM_onograph-cy.glif + ukcyr + ukcyr.glif + umacron + umacron.glif + umacroncyr + umacroncyr.glif + underscore + underscore.glif + uni1C80 + uni1C_80.glif + uni1C81 + uni1C_81.glif + uni1C82 + uni1C_82.glif + uni1C83 + uni1C_83.glif + uni1C84 + uni1C_84.glif + uni1C85 + uni1C_85.glif + uni1C86 + uni1C_86.glif + uni1C87 + uni1C_87.glif + uni1C88 + uni1C_88.glif + uni1EBC + uni1E_B_C_.glif + uni1EBD + uni1E_B_D_.glif + uni2010 + uni2010.glif + uni2DEE + uni2D_E_E_.glif + uni2DEE.case + uni2D_E_E_.case.glif + uniE000 + uniE_000.glif + uniE000.alt + uniE_000.alt.glif + uniE01A + uniE_01A_.glif + uniF43A + uniF_43A_.glif + uniF43B + uniF_43B_.glif + uniF45D + uniF_45D_.glif + uniF45E + uniF_45E_.glif + uniF45F + uniF_45F_.glif + uniF475 + uniF_475.glif + uniF476 + uniF_476.glif + uniF477 + uniF_477.glif + uniF478 + uniF_478.glif + uniF479 + uniF_479.glif + uniF498 + uniF_498.glif + uniF499 + uniF_499.glif + uniF49A + uniF_49A_.glif + uniF49B + uniF_49B_.glif + uniF49C + uniF_49C_.glif + uniF49D + uniF_49D_.glif + uniF49E + uniF_49E_.glif + uniF49F + uniF_49F_.glif + uniF4C6 + uniF_4C_6.glif + uniF4C7 + uniF_4C_7.glif + uniF4CC + uniF_4C_C_.glif + uniF4CD + uniF_4C_D_.glif + uniF4D2 + uniF_4D_2.glif + uniF4D3 + uniF_4D_3.glif + uniF4D4 + uniF_4D_4.glif + uniF4D5 + uniF_4D_5.glif + uniF4D6 + uniF_4D_6.glif + uniF4D7 + uniF_4D_7.glif + uniF4D8 + uniF_4D_8.glif + uniF4D9 + uniF_4D_9.glif + uniF50E + uniF_50E_.glif + uniF50F + uniF_50F_.glif + uniF510 + uniF_510.glif + uniF511 + uniF_511.glif + uniF512 + uniF_512.glif + uniF513 + uniF_513.glif + uniF514 + uniF_514.glif + uniF515 + uniF_515.glif + uniF516 + uniF_516.glif + uniF517 + uniF_517.glif + uniF518 + uniF_518.glif + uniF519 + uniF_519.glif + uniF51A + uniF_51A_.glif + uniF51B + uniF_51B_.glif + uniF51C + uniF_51C_.glif + uniF51D + uniF_51D_.glif + uniF51E + uniF_51E_.glif + uniF51F + uniF_51F_.glif + uniF521 + uniF_521.glif + uniF522 + uniF_522.glif + uniF523 + uniF_523.glif + uniF524 + uniF_524.glif + uniF525 + uniF_525.glif + uniF526 + uniF_526.glif + uniF527 + uniF_527.glif + uniF528 + uniF_528.glif + uniF529 + uniF_529.glif + uniF52A + uniF_52A_.glif + uniF52B + uniF_52B_.glif + uniF52C + uniF_52C_.glif + uniF52D + uniF_52D_.glif + uniF52E + uniF_52E_.glif + uniF52F + uniF_52F_.glif + uniF532 + uniF_532.glif + uniF533 + uniF_533.glif + uniF536 + uniF_536.glif + uniF537 + uniF_537.glif + uniF538 + uniF_538.glif + uniF539 + uniF_539.glif + uniF830 + uniF_830.glif + uniF831 + uniF_831.glif + uniF833 + uniF_833.glif + uniF834 + uniF_834.glif + uniF839 + uniF_839.glif + uniF83A + uniF_83A_.glif + uniF86F + uniF_86F_.glif + uniF870 + uniF_870.glif + uniF872 + uniF_872.glif + uniF873 + uniF_873.glif + uniF875 + uniF_875.glif + uniF876 + uniF_876.glif + uniF878 + uniF_878.glif + uniF879 + uniF_879.glif + uniF87B + uniF_87B_.glif + uniF87C + uniF_87C_.glif + uniF87E + uniF_87E_.glif + uniF87F + uniF_87F_.glif + uogonek + uogonek.glif + uring + uring.glif + ushort-cy + ushort-cy.glif + ustraightcyr + ustraightcyr.glif + ustraightstrokecyr + ustraightstrokecyr.glif + utilde + utilde.glif + v + v.glif + ve-cy + ve-cy.glif + ve-cy.BGR + ve-cy.B_G_R_.glif + ve-cy.ss01 + ve-cy.ss01.glif + virgo + virgo.glif + vzmetcomb-cy + vzmetcomb-cy.glif + w + w.glif + wacute + wacute.glif + wcircumflex + wcircumflex.glif + wdieresis + wdieresis.glif + wecyr + wecyr.glif + wgrave + wgrave.glif + x + x.glif + xatailcyr + xatailcyr.glif + y + y.glif + yacute + yacute.glif + yaecyr + yaecyr.glif + yatIotified-cy + yatI_otified-cy.glif + yatcyr + yatcyr.glif + yatcyr.BGR + yatcyr.B_G_R_.glif + ycircumflex + ycircumflex.glif + ydieresis + ydieresis.glif + yen + yen.glif + yen.ss01 + yen.ss01.glif + yerNeutral-cy + yerN_eutral-cy.glif + yeru-cy + yeru-cy.glif + yeru-cy.accented + yeru-cy.accented.glif + yeru-cy.ss01 + yeru-cy.ss01.glif + yeruBackyer-cy + yeruB_ackyer-cy.glif + yi-cy + yi-cy.glif + yi-cy.alt + yi-cy.alt.glif + ylongdieresiscyr + ylongdieresiscyr.glif + yn-cy + yn-cy.glif + yuReversed-cy + yuR_eversed-cy.glif + yusBlended-cy + yusB_lended-cy.glif + yusClosedlittle-cy + yusC_losedlittle-cy.glif + yusbigcyr + yusbigcyr.glif + yusbigiotifiedcyr + yusbigiotifiedcyr.glif + yusbigiotifiedcyr.BGR + yusbigiotifiedcyr.B_G_R_.glif + yusiotifiedClosedLittle-cy + yusiotifiedC_losedL_ittle-cy.glif + yuslittlecyr + yuslittlecyr.glif + yuslittleiotifiedcyr + yuslittleiotifiedcyr.glif + z + z.glif + zacute + zacute.glif + zcaron + zcaron.glif + zdotaccent + zdotaccent.glif + ze-cy + ze-cy.glif + ze-cy.BGR + ze-cy.B_G_R_.glif + zedieresiscyr + zedieresiscyr.glif + zemlya-cy + zemlya-cy.glif + zero + zero.glif + zero.osf + zero.osf.glif + zero.tf + zero.tf.glif + zetailcyr + zetailcyr.glif + zetailcyr.BSH + zetailcyr.B_S_H_.glif + zhe-cy + zhe-cy.glif + zhe-cy.BGR + zhe-cy.B_G_R_.glif + zhebrevecyr + zhebrevecyr.glif + zhedieresiscyr + zhedieresiscyr.glif + zhetailcyr + zhetailcyr.glif + zhwe-cy + zhwe-cy.glif + zjekomicyr + zjekomicyr.glif + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/copyright.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/copyright.glif new file mode 100644 index 00000000..a738e294 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/copyright.glif @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/crossedo-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/crossedo-cy.glif new file mode 100644 index 00000000..9ca954cd --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/crossedo-cy.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + com.fontlab.recipe + o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/crossedswords.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/crossedswords.glif new file mode 100644 index 00000000..3dba7209 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/crossedswords.glif @@ -0,0 +1,103 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/currency.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/currency.glif new file mode 100644 index 00000000..715cf4d3 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/currency.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/d.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/d.glif new file mode 100644 index 00000000..7d427714 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/d.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/d.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/d.ss01.glif new file mode 100644 index 00000000..c25a8e4e --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/d.ss01.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/dagger.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/dagger.glif new file mode 100644 index 00000000..61546e20 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/dagger.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/daggerdbl.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/daggerdbl.glif new file mode 100644 index 00000000..16145008 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/daggerdbl.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/dcaron.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/dcaron.glif new file mode 100644 index 00000000..c8d38ef7 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/dcaron.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + d+caron.salt + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/dcaron.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/dcaron.ss01.glif new file mode 100644 index 00000000..2b7a3aee --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/dcaron.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + d.ss01+caron.salt + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/dchecyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/dchecyr.glif new file mode 100644 index 00000000..e06074a3 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/dchecyr.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + д+10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/dcroat.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/dcroat.glif new file mode 100644 index 00000000..e361dbf7 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/dcroat.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + d + com.fontlab.metricsRight + |hbar + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/dcroat.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/dcroat.ss01.glif new file mode 100644 index 00000000..3ef31c39 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/dcroat.ss01.glif @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + d.ss01 + com.fontlab.metricsRight + |hbar + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/de-cy.B_G_R_.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/de-cy.B_G_R_.glif new file mode 100644 index 00000000..a4b0c7d7 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/de-cy.B_G_R_.glif @@ -0,0 +1,77 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + q + com.fontlab.metricsRight + q + com.fontlab.recipe + uni1C81 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/de-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/de-cy.glif new file mode 100644 index 00000000..245e6845 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/de-cy.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/de-cy.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/de-cy.ss01.glif new file mode 100644 index 00000000..606a3339 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/de-cy.ss01.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/deS_oft-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/deS_oft-cy.glif new file mode 100644 index 00000000..4b30e606 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/deS_oft-cy.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + д + com.fontlab.metricsRight + ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/degree.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/degree.glif new file mode 100644 index 00000000..01b4f746 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/degree.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/dekomicyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/dekomicyr.glif new file mode 100644 index 00000000..906ad1bc --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/dekomicyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + d + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/diamondwhite-misc.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/diamondwhite-misc.glif new file mode 100644 index 00000000..0b90f153 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/diamondwhite-misc.glif @@ -0,0 +1,145 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =32 + com.fontlab.metricsRight + =32 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/dieresis.alt.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/dieresis.alt.glif new file mode 100644 index 00000000..b5e33367 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/dieresis.alt.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 1,0.6,0.994,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/dieresis.case.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/dieresis.case.glif new file mode 100644 index 00000000..c364541c --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/dieresis.case.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/dieresis.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/dieresis.glif new file mode 100644 index 00000000..44b3d3bd --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/dieresis.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/dieresisacute.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/dieresisacute.glif new file mode 100644 index 00000000..7182288f --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/dieresisacute.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/dieresiscase.alt.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/dieresiscase.alt.glif new file mode 100644 index 00000000..484ad1e2 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/dieresiscase.alt.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 1,0.6,0.994,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/divide.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/divide.glif new file mode 100644 index 00000000..5e380e85 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/divide.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/djecyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/djecyr.glif new file mode 100644 index 00000000..45bf3baa --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/djecyr.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hbar + com.fontlab.metricsRight + h + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/djekomicyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/djekomicyr.glif new file mode 100644 index 00000000..bbcf4e65 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/djekomicyr.glif @@ -0,0 +1,73 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + d + com.fontlab.metricsRight + njekomicyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/djerv-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/djerv-cy.glif new file mode 100644 index 00000000..d7c9d08b --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/djerv-cy.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + r() + com.fontlab.metricsRight + п-30 + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/dollar.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/dollar.glif new file mode 100644 index 00000000..9d4f1a4b --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/dollar.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + S + com.fontlab.metricsRight + S + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/dotaccent.case.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/dotaccent.case.glif new file mode 100644 index 00000000..056a10cd --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/dotaccent.case.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/dotaccent.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/dotaccent.glif new file mode 100644 index 00000000..45096d68 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/dotaccent.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/doubleo-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/doubleo-cy.glif new file mode 100644 index 00000000..8a00f096 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/doubleo-cy.glif @@ -0,0 +1,91 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + com.fontlab.recipe + o_o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/dramsignarmn.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/dramsignarmn.glif new file mode 100644 index 00000000..cffd84f6 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/dramsignarmn.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/dwe-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/dwe-cy.glif new file mode 100644 index 00000000..9d593adb --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/dwe-cy.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + д + com.fontlab.metricsRight + д + com.fontlab.recipe + д + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/dze-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/dze-cy.glif new file mode 100644 index 00000000..b3ed20fd --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/dze-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + s + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/dzeR_eversed-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/dzeR_eversed-cy.glif new file mode 100644 index 00000000..cb82bdac --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/dzeR_eversed-cy.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |s + com.fontlab.metricsRight + |s + com.fontlab.recipe + s + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/dzeabkhcyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/dzeabkhcyr.glif new file mode 100644 index 00000000..c57ef80c --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/dzeabkhcyr.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + z-30 + com.fontlab.metricsRight + з-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/dzelo-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/dzelo-cy.glif new file mode 100644 index 00000000..af626d22 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/dzelo-cy.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/dzhecyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/dzhecyr.glif new file mode 100644 index 00000000..89d8e36b --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/dzhecyr.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/dzjekomicyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/dzjekomicyr.glif new file mode 100644 index 00000000..19964bbc --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/dzjekomicyr.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + zjekomicyr + com.fontlab.metricsRight + ц-5 + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/dzwe-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/dzwe-cy.glif new file mode 100644 index 00000000..c86c31e5 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/dzwe-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + s + com.fontlab.metricsRight + s + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/dzze-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/dzze-cy.glif new file mode 100644 index 00000000..3fe84e4d --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/dzze-cy.glif @@ -0,0 +1,84 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + д + com.fontlab.metricsRight + д-30 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/dzzhecyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/dzzhecyr.glif new file mode 100644 index 00000000..54624448 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/dzzhecyr.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + д+5 + com.fontlab.metricsRight + ж+5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/e-cy.accented.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/e-cy.accented.glif new file mode 100644 index 00000000..a56b1c96 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/e-cy.accented.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+acute + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/e-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/e-cy.glif new file mode 100644 index 00000000..90b1904b --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/e-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + c + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/e-cy.hist.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/e-cy.hist.glif new file mode 100644 index 00000000..ffbb9e13 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/e-cy.hist.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + c + com.fontlab.recipe + uni1C83 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/e.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/e.glif new file mode 100644 index 00000000..72576d24 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/e.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/e.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/e.ss01.glif new file mode 100644 index 00000000..1a35a69f --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/e.ss01.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + O-5 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/eacute.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/eacute.glif new file mode 100644 index 00000000..6580b475 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/eacute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+acute + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/eacute.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/eacute.ss01.glif new file mode 100644 index 00000000..3739a5d7 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/eacute.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+acute + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/ebreve.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ebreve.glif new file mode 100644 index 00000000..9e14a4eb --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ebreve.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+breve + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/ebreve.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ebreve.ss01.glif new file mode 100644 index 00000000..fe787dca --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ebreve.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+breve + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/ecaron.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ecaron.glif new file mode 100644 index 00000000..e89a2017 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ecaron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+caron + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/ecaron.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ecaron.ss01.glif new file mode 100644 index 00000000..8b7e52b9 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ecaron.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+caron + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/ecircumflex.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ecircumflex.glif new file mode 100644 index 00000000..fd7750f0 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ecircumflex.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+circumflex + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/ecircumflex.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ecircumflex.ss01.glif new file mode 100644 index 00000000..2966367f --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ecircumflex.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+circumflex + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/edieresis.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/edieresis.glif new file mode 100644 index 00000000..aaeb5c12 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/edieresis.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsLeft + e + com.fontlab.metricsRight + e + com.fontlab.recipe + e+dieresis + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/edieresis.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/edieresis.ss01.glif new file mode 100644 index 00000000..5fc24183 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/edieresis.ss01.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsLeft + e + com.fontlab.metricsRight + e + com.fontlab.recipe + e.ss01+dieresis + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/edotaccent.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/edotaccent.glif new file mode 100644 index 00000000..7e4951b2 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/edotaccent.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+dotaccent + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/edotaccent.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/edotaccent.ss01.glif new file mode 100644 index 00000000..4a706fa6 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/edotaccent.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+dotaccent + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/ef-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ef-cy.glif new file mode 100644 index 00000000..251d1d14 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ef-cy.glif @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/egrave.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/egrave.glif new file mode 100644 index 00000000..d22908e6 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/egrave.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+grave + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/egrave.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/egrave.ss01.glif new file mode 100644 index 00000000..cd6f5968 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/egrave.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+grave + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/eight.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/eight.glif new file mode 100644 index 00000000..5a24f24b --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/eight.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/eight.osf.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/eight.osf.glif new file mode 100644 index 00000000..7d705347 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/eight.osf.glif @@ -0,0 +1,15 @@ + + + + + + + + + com.fontlab.metricsLeft + eight + com.fontlab.metricsRight + eight + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/eight.tf.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/eight.tf.glif new file mode 100644 index 00000000..e526b258 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/eight.tf.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/eiotifiedcyr.B_G_R_.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/eiotifiedcyr.B_G_R_.glif new file mode 100644 index 00000000..7abf3ed2 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/eiotifiedcyr.B_G_R_.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + c + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/eiotifiedcyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/eiotifiedcyr.glif new file mode 100644 index 00000000..d2d7fe59 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/eiotifiedcyr.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + c + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/el-cy.B_G_R_.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/el-cy.B_G_R_.glif new file mode 100644 index 00000000..a78027be --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/el-cy.B_G_R_.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + v + com.fontlab.metricsRight + v + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/el-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/el-cy.glif new file mode 100644 index 00000000..83e81ad3 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/el-cy.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/el-cy.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/el-cy.ss01.glif new file mode 100644 index 00000000..0b7a2b33 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/el-cy.ss01.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/elS_oft-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/elS_oft-cy.glif new file mode 100644 index 00000000..c9d58286 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/elS_oft-cy.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/elhookcyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/elhookcyr.glif new file mode 100644 index 00000000..f554f88a --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/elhookcyr.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + н + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/ellipsis.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ellipsis.glif new file mode 100644 index 00000000..7e3d55a7 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ellipsis.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/elmiddlehookcyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/elmiddlehookcyr.glif new file mode 100644 index 00000000..df91ee71 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/elmiddlehookcyr.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + enmiddlehookcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/elsharptailcyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/elsharptailcyr.glif new file mode 100644 index 00000000..1907c5dd --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/elsharptailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + ensharptailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/eltailcyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/eltailcyr.glif new file mode 100644 index 00000000..6dbf331d --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/eltailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/em-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/em-cy.glif new file mode 100644 index 00000000..be1bea48 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/em-cy.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/emS_oft-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/emS_oft-cy.glif new file mode 100644 index 00000000..40673119 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/emS_oft-cy.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + м + com.fontlab.metricsRight + ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/emacron.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/emacron.glif new file mode 100644 index 00000000..2e0fa120 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/emacron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+macron + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/emacron.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/emacron.ss01.glif new file mode 100644 index 00000000..45191bdc --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/emacron.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+macron + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/emdash.case.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/emdash.case.glif new file mode 100644 index 00000000..887c7d2b --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/emdash.case.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/emdash.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/emdash.glif new file mode 100644 index 00000000..e06aba20 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/emdash.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/emsharptailcyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/emsharptailcyr.glif new file mode 100644 index 00000000..ef7df1d3 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/emsharptailcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + м + com.fontlab.metricsRight + ensharptailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/en-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/en-cy.glif new file mode 100644 index 00000000..eb9c1596 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/en-cy.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/enclosingcirclecomb.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/enclosingcirclecomb.glif new file mode 100644 index 00000000..375a2aa5 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/enclosingcirclecomb.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/endash.case.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/endash.case.glif new file mode 100644 index 00000000..ca134859 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/endash.case.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/endash.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/endash.glif new file mode 100644 index 00000000..df2372fc --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/endash.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/eng.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/eng.glif new file mode 100644 index 00000000..9fc99ca0 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/eng.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + n + com.fontlab.metricsRight + dotlessj + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/engecyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/engecyr.glif new file mode 100644 index 00000000..04b51717 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/engecyr.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/enhookcyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/enhookcyr.glif new file mode 100644 index 00000000..aab618ed --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/enhookcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/enhookleftcyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/enhookleftcyr.glif new file mode 100644 index 00000000..2f04d629 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/enhookleftcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + j + com.fontlab.metricsRight + н + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/enmiddlehookcyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/enmiddlehookcyr.glif new file mode 100644 index 00000000..fb6c2cb0 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/enmiddlehookcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + softsign-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/ensharptailcyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ensharptailcyr.glif new file mode 100644 index 00000000..dbe8abe2 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ensharptailcyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + д + com.fontlab.recipe + entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/entailcyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/entailcyr.glif new file mode 100644 index 00000000..a4328f59 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/entailcyr.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + ц + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/eogonek.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/eogonek.glif new file mode 100644 index 00000000..fb510548 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/eogonek.glif @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + e+ogonek + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/eogonek.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/eogonek.ss01.glif new file mode 100644 index 00000000..5e65b826 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/eogonek.ss01.glif @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + e.ss01+ogonek + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/equal.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/equal.glif new file mode 100644 index 00000000..303953c6 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/equal.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/er-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/er-cy.glif new file mode 100644 index 00000000..96bbcd40 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/er-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + p + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/er-cy.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/er-cy.ss01.glif new file mode 100644 index 00000000..3da5987e --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/er-cy.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + p.ss01 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/ereversed-cy.accented.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ereversed-cy.accented.glif new file mode 100644 index 00000000..5f85059d --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ereversed-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + э+acute + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/ereversed-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ereversed-cy.glif new file mode 100644 index 00000000..51ac80b0 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ereversed-cy.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |c + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/ereverseddieresiscyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ereverseddieresiscyr.glif new file mode 100644 index 00000000..379019a4 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ereverseddieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ereversed-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/ertickcyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ertickcyr.glif new file mode 100644 index 00000000..dbcdf1d3 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ertickcyr.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + p + com.fontlab.metricsRight + p + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/es-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/es-cy.glif new file mode 100644 index 00000000..abb3e9a1 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/es-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/estailcyr.B_S_H_.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/estailcyr.B_S_H_.glif new file mode 100644 index 00000000..cebc013f --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/estailcyr.B_S_H_.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + c + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/estailcyr.C_H_U_.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/estailcyr.C_H_U_.glif new file mode 100644 index 00000000..4ee8053f --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/estailcyr.C_H_U_.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+cedilla + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/estailcyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/estailcyr.glif new file mode 100644 index 00000000..ec0a09bb --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/estailcyr.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + с + com.fontlab.metricsRight + с + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/estimated.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/estimated.glif new file mode 100644 index 00000000..4203763a --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/estimated.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/eth.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/eth.glif new file mode 100644 index 00000000..327aa542 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/eth.glif @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/eturned.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/eturned.glif new file mode 100644 index 00000000..a2ad101b --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/eturned.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + schwacyr + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/euro.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/euro.glif new file mode 100644 index 00000000..c81cef2d --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/euro.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + C + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/exclam.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/exclam.glif new file mode 100644 index 00000000..f6838494 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/exclam.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/exclamdown.case.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/exclamdown.case.glif new file mode 100644 index 00000000..358185f5 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/exclamdown.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + exclamdown + com.fontlab.metricsRight + exclamdown + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/exclamdown.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/exclamdown.glif new file mode 100644 index 00000000..80159911 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/exclamdown.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/f.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/f.glif new file mode 100644 index 00000000..0c68aed7 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/f.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/f.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/f.ss01.glif new file mode 100644 index 00000000..421eae1f --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/f.ss01.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/f_f.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/f_f.glif new file mode 100644 index 00000000..80bfc8d9 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/f_f.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f + com.fontlab.metricsRight + f + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/f_f.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/f_f.ss01.glif new file mode 100644 index 00000000..51c742d6 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/f_f.ss01.glif @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f.ss01 + com.fontlab.metricsRight + f.ss01 + com.fontlab.recipe + f.ss01_f.ss01 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/f_f_i.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/f_f_i.glif new file mode 100644 index 00000000..5159d28c --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/f_f_i.glif @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f + com.fontlab.metricsRight + i + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/f_f_i.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/f_f_i.ss01.glif new file mode 100644 index 00000000..bfc86e9a --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/f_f_i.ss01.glif @@ -0,0 +1,88 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f.ss01 + com.fontlab.metricsRight + i + com.fontlab.recipe + f.ss01_f.ss01_i + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/f_f_l.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/f_f_l.glif new file mode 100644 index 00000000..7579f3de --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/f_f_l.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f + com.fontlab.metricsRight + l + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/f_f_l.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/f_f_l.ss01.glif new file mode 100644 index 00000000..7ad01718 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/f_f_l.ss01.glif @@ -0,0 +1,86 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f.ss01 + com.fontlab.metricsRight + l.ss01 + com.fontlab.recipe + f.ss01_f.ss01_l.ss01 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/fi.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/fi.glif new file mode 100644 index 00000000..dd824c06 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/fi.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f + com.fontlab.metricsRight + i + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/fi.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/fi.ss01.glif new file mode 100644 index 00000000..8efdf4f1 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/fi.ss01.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f.ss01 + com.fontlab.metricsRight + i + com.fontlab.recipe + f.ss01_i + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/fitacyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/fitacyr.glif new file mode 100644 index 00000000..a1e72bac --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/fitacyr.glif @@ -0,0 +1,76 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + obarcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/five.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/five.glif new file mode 100644 index 00000000..049cb86e --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/five.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/five.osf.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/five.osf.glif new file mode 100644 index 00000000..8e1f835f --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/five.osf.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + five + com.fontlab.metricsRight + five + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/five.tf.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/five.tf.glif new file mode 100644 index 00000000..7b52caeb --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/five.tf.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/fl.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/fl.glif new file mode 100644 index 00000000..d6c33fc3 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/fl.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f + com.fontlab.metricsRight + l + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/fl.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/fl.ss01.glif new file mode 100644 index 00000000..a81f8973 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/fl.ss01.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f.ss01 + com.fontlab.metricsRight + l.ss01 + com.fontlab.recipe + f.ss01_l.ss01 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/floretteblack.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/floretteblack.glif new file mode 100644 index 00000000..350f62cc --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/floretteblack.glif @@ -0,0 +1,522 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/floretteoutlinedpetalledblackeight.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/floretteoutlinedpetalledblackeight.glif new file mode 100644 index 00000000..01cc963a --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/floretteoutlinedpetalledblackeight.glif @@ -0,0 +1,693 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/florettewhite.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/florettewhite.glif new file mode 100644 index 00000000..c7093263 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/florettewhite.glif @@ -0,0 +1,417 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/florin.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/florin.glif new file mode 100644 index 00000000..93bb99e8 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/florin.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/flower.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/flower.glif new file mode 100644 index 00000000..00a5f309 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/flower.glif @@ -0,0 +1,278 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/four.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/four.glif new file mode 100644 index 00000000..367f5068 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/four.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/four.osf.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/four.osf.glif new file mode 100644 index 00000000..dec45cc9 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/four.osf.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + four + com.fontlab.metricsRight + four + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/four.tf.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/four.tf.glif new file mode 100644 index 00000000..fbaf2aad --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/four.tf.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/fraction.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/fraction.glif new file mode 100644 index 00000000..c85abfb4 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/fraction.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/g.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/g.glif new file mode 100644 index 00000000..5901ed0d --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/g.glif @@ -0,0 +1,94 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/g.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/g.ss01.glif new file mode 100644 index 00000000..a9f66bad --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/g.ss01.glif @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/gacute.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/gacute.glif new file mode 100644 index 00000000..f3d8a258 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/gacute.glif @@ -0,0 +1,109 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + g+acute + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/gacute.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/gacute.ss01.glif new file mode 100644 index 00000000..91989560 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/gacute.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + g.ss01+acute + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/gbreve.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/gbreve.glif new file mode 100644 index 00000000..59951250 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/gbreve.glif @@ -0,0 +1,119 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + g+breve + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/gbreve.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/gbreve.ss01.glif new file mode 100644 index 00000000..ed4c5fc5 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/gbreve.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + g.ss01+breve + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/gcircumflex.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/gcircumflex.glif new file mode 100644 index 00000000..7f41ab1b --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/gcircumflex.glif @@ -0,0 +1,113 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + g+circumflex + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/gcircumflex.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/gcircumflex.ss01.glif new file mode 100644 index 00000000..7cddaa8a --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/gcircumflex.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + g.ss01+circumflex + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/gcommaaccent.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/gcommaaccent.glif new file mode 100644 index 00000000..0d6ef70d --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/gcommaaccent.glif @@ -0,0 +1,121 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + g+commaaccentcomb.salt + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/gcommaaccent.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/gcommaaccent.ss01.glif new file mode 100644 index 00000000..bafa0afd --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/gcommaaccent.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + g.ss01+commaaccentcomb.salt + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/gdotaccent.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/gdotaccent.glif new file mode 100644 index 00000000..e5e8d2c6 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/gdotaccent.glif @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + g+dotaccent + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/gdotaccent.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/gdotaccent.ss01.glif new file mode 100644 index 00000000..528b25d2 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/gdotaccent.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + g.ss01+dotaccent + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/ge-cy.B_G_R_.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ge-cy.B_G_R_.glif new file mode 100644 index 00000000..8ec8eaca --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ge-cy.B_G_R_.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |s+5 + com.fontlab.metricsRight + |s+5 + com.fontlab.recipe + dzeReversed-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/ge-cy.S_R_B_.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ge-cy.S_R_B_.glif new file mode 100644 index 00000000..808e8547 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ge-cy.S_R_B_.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + iota-cy+macron + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/ge-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ge-cy.glif new file mode 100644 index 00000000..34166bdd --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ge-cy.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + т + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/gehookcyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/gehookcyr.glif new file mode 100644 index 00000000..809a7bba --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/gehookcyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + г + com.fontlab.metricsRight + enmiddlehookcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/gehookstrokecyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/gehookstrokecyr.glif new file mode 100644 index 00000000..567a9554 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/gehookstrokecyr.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + gestrokecyr + com.fontlab.metricsRight + gestrokecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/germandbls.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/germandbls.glif new file mode 100644 index 00000000..c3298591 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/germandbls.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + h-5 + com.fontlab.metricsRight + з + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/germandbls.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/germandbls.ss01.glif new file mode 100644 index 00000000..bac81422 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/germandbls.ss01.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f.ss01 + com.fontlab.metricsRight + з + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/gestrokecyr.B_S_H_.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/gestrokecyr.B_S_H_.glif new file mode 100644 index 00000000..f7d3306c --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/gestrokecyr.B_S_H_.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + г + com.fontlab.metricsRight + gestrokecyr + com.fontlab.recipe + gestrokecyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/gestrokecyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/gestrokecyr.glif new file mode 100644 index 00000000..92342c4e --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/gestrokecyr.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + г + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/getailcyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/getailcyr.glif new file mode 100644 index 00000000..2ede75dc --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/getailcyr.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + г + com.fontlab.metricsRight + г + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/gheupturn-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/gheupturn-cy.glif new file mode 100644 index 00000000..ebf3418f --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/gheupturn-cy.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + г + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/gjecyr.S_R_B_.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/gjecyr.S_R_B_.glif new file mode 100644 index 00000000..e4bc9a8d --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/gjecyr.S_R_B_.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + iota-cy+macronacute.SRB + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/gjecyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/gjecyr.glif new file mode 100644 index 00000000..d50c45c0 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/gjecyr.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/grave.case.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/grave.case.glif new file mode 100644 index 00000000..75cefe39 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/grave.case.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/grave.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/grave.glif new file mode 100644 index 00000000..9507200b --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/grave.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/greater.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/greater.glif new file mode 100644 index 00000000..3d669632 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/greater.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |less + com.fontlab.metricsRight + |less + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/greaterequal.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/greaterequal.glif new file mode 100644 index 00000000..e077c264 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/greaterequal.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/guillemetleft.case.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/guillemetleft.case.glif new file mode 100644 index 00000000..06abba49 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/guillemetleft.case.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + guilsinglleft + com.fontlab.metricsRight + guilsinglleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/guillemetleft.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/guillemetleft.glif new file mode 100644 index 00000000..cee5272a --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/guillemetleft.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + guilsinglleft + com.fontlab.metricsRight + guilsinglleft + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/guillemetright.case.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/guillemetright.case.glif new file mode 100644 index 00000000..443e7f29 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/guillemetright.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |guillemetleft.case + com.fontlab.metricsRight + |guillemetleft.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/guillemetright.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/guillemetright.glif new file mode 100644 index 00000000..4b0d9f4c --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/guillemetright.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |guilsinglleft + com.fontlab.metricsRight + |guilsinglleft + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/guilsinglleft.case.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/guilsinglleft.case.glif new file mode 100644 index 00000000..2c8d25df --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/guilsinglleft.case.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/guilsinglleft.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/guilsinglleft.glif new file mode 100644 index 00000000..39ca55d2 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/guilsinglleft.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/guilsinglright.case.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/guilsinglright.case.glif new file mode 100644 index 00000000..f09764ec --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/guilsinglright.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |guilsinglleft + com.fontlab.metricsRight + |guilsinglleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/guilsinglright.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/guilsinglright.glif new file mode 100644 index 00000000..2afa3989 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/guilsinglright.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + |guilsinglleft + com.fontlab.metricsRight + |guilsinglleft + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/h.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/h.glif new file mode 100644 index 00000000..9a1d13be --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/h.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + com.fontlab.metricsRight + n + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/ha-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ha-cy.glif new file mode 100644 index 00000000..134e6649 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ha-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + x + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/haabkhcyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/haabkhcyr.glif new file mode 100644 index 00000000..d706bb59 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/haabkhcyr.glif @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + |o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/hahookcyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/hahookcyr.glif new file mode 100644 index 00000000..9a490515 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/hahookcyr.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + x + com.fontlab.metricsRight + x + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/hardsign-cy.B_G_R_.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/hardsign-cy.B_G_R_.glif new file mode 100644 index 00000000..f8d10799 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/hardsign-cy.B_G_R_.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/hardsign-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/hardsign-cy.glif new file mode 100644 index 00000000..d777cafd --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/hardsign-cy.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/hardsign-cy.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/hardsign-cy.ss01.glif new file mode 100644 index 00000000..9b09bcfe --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/hardsign-cy.ss01.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/hastrokecyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/hastrokecyr.glif new file mode 100644 index 00000000..79385399 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/hastrokecyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + x + com.fontlab.metricsRight + x + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/hbar.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/hbar.glif new file mode 100644 index 00000000..968caa9a --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/hbar.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + h + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/hcircumflex.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/hcircumflex.glif new file mode 100644 index 00000000..8765709a --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/hcircumflex.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + h+circumflex.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/heart.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/heart.glif new file mode 100644 index 00000000..6e3c32dd --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/heart.glif @@ -0,0 +1,320 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/heartwhite.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/heartwhite.glif new file mode 100644 index 00000000..9e65d060 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/heartwhite.glif @@ -0,0 +1,189 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =46 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/hryvnia.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/hryvnia.glif new file mode 100644 index 00000000..733edc40 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/hryvnia.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/hundredmillionscomb-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/hundredmillionscomb-cy.glif new file mode 100644 index 00000000..215eec02 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/hundredmillionscomb-cy.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/hundredthousandscombcyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/hundredthousandscombcyr.glif new file mode 100644 index 00000000..335f859a --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/hundredthousandscombcyr.glif @@ -0,0 +1,141 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/hungarumlaut.case.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/hungarumlaut.case.glif new file mode 100644 index 00000000..3e022b81 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/hungarumlaut.case.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/hungarumlaut.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/hungarumlaut.glif new file mode 100644 index 00000000..707b65cc --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/hungarumlaut.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/hwe-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/hwe-cy.glif new file mode 100644 index 00000000..6fd5c6e1 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/hwe-cy.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + h + com.fontlab.metricsRight + h + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/hyphen.case.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/hyphen.case.glif new file mode 100644 index 00000000..81e87932 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/hyphen.case.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.metricsLeft + hyphen + com.fontlab.metricsRight + hyphen + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/hyphen.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/hyphen.glif new file mode 100644 index 00000000..37258a11 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/hyphen.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/i-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/i-cy.glif new file mode 100644 index 00000000..cfb45d8b --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/i-cy.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + i + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/i.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/i.glif new file mode 100644 index 00000000..39ed626f --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/i.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + dotlessi+dotaccent + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/ia-cy.accented.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ia-cy.accented.glif new file mode 100644 index 00000000..e0080115 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ia-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + я+acute + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/ia-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ia-cy.glif new file mode 100644 index 00000000..5613daa2 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ia-cy.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/ia-cy.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ia-cy.ss01.glif new file mode 100644 index 00000000..5ee993f0 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ia-cy.ss01.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/iacute.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/iacute.glif new file mode 100644 index 00000000..5af0fec6 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/iacute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + dotlessi+acute + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/ibreve.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ibreve.glif new file mode 100644 index 00000000..40f517f7 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ibreve.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + dotlessi+breve + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/icircumflex.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/icircumflex.glif new file mode 100644 index 00000000..c4b118c7 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/icircumflex.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + dotlessi+circumflex + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/idieresis.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/idieresis.glif new file mode 100644 index 00000000..af3cea00 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/idieresis.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + idotless+dieresis.alt + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/idieresiscyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/idieresiscyr.glif new file mode 100644 index 00000000..ea525f19 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/idieresiscyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ii-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/idotless.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/idotless.glif new file mode 100644 index 00000000..05c1fa63 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/idotless.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/ie-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ie-cy.glif new file mode 100644 index 00000000..cf5b1e23 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ie-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/ie-cy.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ie-cy.ss01.glif new file mode 100644 index 00000000..d7efcb3e --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ie-cy.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/iebrevecyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/iebrevecyr.glif new file mode 100644 index 00000000..3c8448f8 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/iebrevecyr.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+breve + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/iegravecyr.S_R_B_.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/iegravecyr.S_R_B_.glif new file mode 100644 index 00000000..c937e6cb --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/iegravecyr.S_R_B_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+grave + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/iegravecyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/iegravecyr.glif new file mode 100644 index 00000000..a42d49b5 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/iegravecyr.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+grave + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/igrave.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/igrave.glif new file mode 100644 index 00000000..3e80b83b --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/igrave.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + dotlessi+grave + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/igravecyr.S_R_B_.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/igravecyr.S_R_B_.glif new file mode 100644 index 00000000..e9a26783 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/igravecyr.S_R_B_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+grave + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/igravecyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/igravecyr.glif new file mode 100644 index 00000000..5a24eaf0 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/igravecyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ii-cy+grave + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/ii-cy.B_G_R_.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ii-cy.B_G_R_.glif new file mode 100644 index 00000000..9f8d131c --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ii-cy.B_G_R_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/ii-cy.accented.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ii-cy.accented.glif new file mode 100644 index 00000000..d7934088 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ii-cy.accented.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + и+acute + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/ii-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ii-cy.glif new file mode 100644 index 00000000..d96bdc5e --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ii-cy.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/iishort-cy.B_G_R_.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/iishort-cy.B_G_R_.glif new file mode 100644 index 00000000..b3d04520 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/iishort-cy.B_G_R_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/iishort-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/iishort-cy.glif new file mode 100644 index 00000000..3771a1dc --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/iishort-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + icyr+breve + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/ij.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ij.glif new file mode 100644 index 00000000..c5c986e8 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ij.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + i + com.fontlab.metricsRight + j + com.fontlab.recipe + i_j + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/imacron.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/imacron.glif new file mode 100644 index 00000000..27437511 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/imacron.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =5 + com.fontlab.metricsRight + =5 + com.fontlab.recipe + idotless+macron + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/imacroncyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/imacroncyr.glif new file mode 100644 index 00000000..56de9345 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/imacroncyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ii-cy+macron + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/increment.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/increment.glif new file mode 100644 index 00000000..e0852b29 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/increment.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/infinity.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/infinity.glif new file mode 100644 index 00000000..0720fada --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/infinity.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/integral.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/integral.glif new file mode 100644 index 00000000..0d5ae85f --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/integral.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/io-cy.accented.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/io-cy.accented.glif new file mode 100644 index 00000000..469801ff --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/io-cy.accented.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsLeft + e + com.fontlab.metricsRight + e + com.fontlab.recipe + e+dieresisacute + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/io-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/io-cy.glif new file mode 100644 index 00000000..4042d74c --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/io-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + edieresis + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/io-cy.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/io-cy.ss01.glif new file mode 100644 index 00000000..90ac91da --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/io-cy.ss01.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + edieresis.ss01 + com.schriftgestaltung.Glyphs.ComponentInfo + + + alignment + -1 + index + 0 + name + edieresis.ss01 + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/iogonek.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/iogonek.glif new file mode 100644 index 00000000..3827dccd --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/iogonek.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + i+ogonek + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/iota-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/iota-cy.glif new file mode 100644 index 00000000..63d4d377 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/iota-cy.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l.ss01 + com.fontlab.metricsRight + l.ss01 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/iotifieda-cy.B_G_R_.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/iotifieda-cy.B_G_R_.glif new file mode 100644 index 00000000..4b5afc83 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/iotifieda-cy.B_G_R_.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + el-cy.BGR + com.fontlab.recipe + iotifieda-cy + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/iotifieda-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/iotifieda-cy.glif new file mode 100644 index 00000000..2604ab5f --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/iotifieda-cy.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + yusClosedlittle-cy + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/iotifieda-cy.hist.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/iotifieda-cy.hist.glif new file mode 100644 index 00000000..d974a701 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/iotifieda-cy.hist.glif @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + reversedzecyr + com.fontlab.metricsRight + a + public.markColor + 0.6,0.997,1,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/ishortsharptailcyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ishortsharptailcyr.glif new file mode 100644 index 00000000..39f6c1b6 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ishortsharptailcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + й + com.fontlab.metricsRight + ensharptailcyr + com.fontlab.recipe + й + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/itilde.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/itilde.glif new file mode 100644 index 00000000..60e1f252 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/itilde.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + dotlessi+tilde + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/iu-cy.B_G_R_.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/iu-cy.B_G_R_.glif new file mode 100644 index 00000000..343fc6cd --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/iu-cy.B_G_R_.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + o + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/iu-cy.accented.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/iu-cy.accented.glif new file mode 100644 index 00000000..b091c3a2 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/iu-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ю+acute + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/iu-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/iu-cy.glif new file mode 100644 index 00000000..ccb2474e --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/iu-cy.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/izhitsacyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/izhitsacyr.glif new file mode 100644 index 00000000..56e05132 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/izhitsacyr.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + v + com.fontlab.metricsRight + + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/izhitsagravedblcyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/izhitsagravedblcyr.glif new file mode 100644 index 00000000..3f7c4e38 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/izhitsagravedblcyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + com.fontlab.metricsLeft + izhitsacyr + com.fontlab.metricsRight + izhitsacyr + com.fontlab.recipe + izhitsacyr+hungarumlaut + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/j.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/j.glif new file mode 100644 index 00000000..7108bfa4 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/j.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + i + com.fontlab.recipe + dotlessj+dotaccent + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/jcircumflex.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/jcircumflex.glif new file mode 100644 index 00000000..579a8ad8 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/jcircumflex.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + dotlessj+circumflex + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/jdotless.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/jdotless.glif new file mode 100644 index 00000000..d0a2ff22 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/jdotless.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + l + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/je-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/je-cy.glif new file mode 100644 index 00000000..a6083821 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/je-cy.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + j + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/k.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/k.glif new file mode 100644 index 00000000..aacb0178 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/k.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/ka-cy.B_G_R_.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ka-cy.B_G_R_.glif new file mode 100644 index 00000000..4d989eb7 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ka-cy.B_G_R_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + k + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/ka-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ka-cy.glif new file mode 100644 index 00000000..b719449c --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ka-cy.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + k + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/kaaleutcyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/kaaleutcyr.glif new file mode 100644 index 00000000..b39aaeef --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/kaaleutcyr.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + k + com.fontlab.metricsRight + k + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/kabashkcyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/kabashkcyr.glif new file mode 100644 index 00000000..344f545b --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/kabashkcyr.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hardsign-cy + com.fontlab.metricsRight + k + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/kahookcyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/kahookcyr.glif new file mode 100644 index 00000000..329f3bed --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/kahookcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + n + com.fontlab.metricsRight + k+10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/kastrokecyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/kastrokecyr.glif new file mode 100644 index 00000000..43ef12f6 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/kastrokecyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hbar + com.fontlab.metricsRight + k + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/katailcyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/katailcyr.glif new file mode 100644 index 00000000..4a1b240f --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/katailcyr.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + k + com.fontlab.metricsRight + к-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/kaverticalstrokecyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/kaverticalstrokecyr.glif new file mode 100644 index 00000000..2d785406 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/kaverticalstrokecyr.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + k + com.fontlab.metricsRight + k + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/kcommaaccent.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/kcommaaccent.glif new file mode 100644 index 00000000..d57e94be --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/kcommaaccent.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsLeft + k + com.fontlab.metricsRight + k + com.fontlab.recipe + k+commaaccentcomb + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/kgreenlandic.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/kgreenlandic.glif new file mode 100644 index 00000000..518753ff --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/kgreenlandic.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + kacyr + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/kjecyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/kjecyr.glif new file mode 100644 index 00000000..e46ba21d --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/kjecyr.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/knightblack.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/knightblack.glif new file mode 100644 index 00000000..5386b5a0 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/knightblack.glif @@ -0,0 +1,313 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =30 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/knightwhite.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/knightwhite.glif new file mode 100644 index 00000000..5679fe94 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/knightwhite.glif @@ -0,0 +1,320 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/koppacyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/koppacyr.glif new file mode 100644 index 00000000..e9690765 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/koppacyr.glif @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + c-20 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/ksicyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ksicyr.glif new file mode 100644 index 00000000..a7c60cea --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ksicyr.glif @@ -0,0 +1,102 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + з-10 + com.fontlab.metricsRight + з + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/l.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/l.glif new file mode 100644 index 00000000..16942971 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/l.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/l.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/l.ss01.glif new file mode 100644 index 00000000..1a4c3e98 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/l.ss01.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/lacute.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/lacute.glif new file mode 100644 index 00000000..47e51085 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/lacute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l+acute.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/lacute.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/lacute.ss01.glif new file mode 100644 index 00000000..ee23705f --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/lacute.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l.ss01+acute.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/layerinfo.plist b/sources/FixelDisplay-ExtraBold.ufo/glyphs/layerinfo.plist new file mode 100644 index 00000000..8c198655 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/layerinfo.plist @@ -0,0 +1,21 @@ + + + + + lib + + com.fontlab.layer.name + Body + com.fontlab.layer.opacity + 1 + com.fontlab.layer.visible + + com.fontlab.layer.locked + + com.fontlab.layer.service + + com.fontlab.layer.wireframe + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/lcaron.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/lcaron.glif new file mode 100644 index 00000000..dc6ec3bb --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/lcaron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l+caron.salt + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/lcaron.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/lcaron.ss01.glif new file mode 100644 index 00000000..5330bfab --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/lcaron.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l.ss01+caron.salt + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/lcommaaccent.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/lcommaaccent.glif new file mode 100644 index 00000000..c7043eb2 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/lcommaaccent.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l+commaaccentcomb + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/lcommaaccent.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/lcommaaccent.ss01.glif new file mode 100644 index 00000000..ab51b47e --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/lcommaaccent.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l.ss01+commaaccentcomb + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/ldot.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ldot.glif new file mode 100644 index 00000000..8e1ceefa --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ldot.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/ldot.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ldot.ss01.glif new file mode 100644 index 00000000..f5437789 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ldot.ss01.glif @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + l.ss01_periodcentered + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/leo.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/leo.glif new file mode 100644 index 00000000..874e2627 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/leo.glif @@ -0,0 +1,494 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/less.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/less.glif new file mode 100644 index 00000000..35e879c0 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/less.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/lessequal.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/lessequal.glif new file mode 100644 index 00000000..a4b36ebd --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/lessequal.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/lhacyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/lhacyr.glif new file mode 100644 index 00000000..dad4092b --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/lhacyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + х + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/ljecyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ljecyr.glif new file mode 100644 index 00000000..6fe08105 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ljecyr.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + ь + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/ljecyr.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ljecyr.ss01.glif new file mode 100644 index 00000000..e9a3e308 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ljecyr.ss01.glif @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + ь + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/ljekomicyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ljekomicyr.glif new file mode 100644 index 00000000..ea0476f4 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ljekomicyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + njekomicyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/longs.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/longs.glif new file mode 100644 index 00000000..9ab3b28d --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/longs.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + n + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/lslash.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/lslash.glif new file mode 100644 index 00000000..9aeeaa69 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/lslash.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Lslash+12 + com.fontlab.metricsRight + |Lslash+12 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/lslash.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/lslash.ss01.glif new file mode 100644 index 00000000..825191ce --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/lslash.ss01.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Lslash-10 + com.fontlab.metricsRight + |Lslash + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/m.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/m.glif new file mode 100644 index 00000000..57b43c8f --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/m.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + n + com.fontlab.metricsRight + n + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/macron-fwd.alt.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/macron-fwd.alt.glif new file mode 100644 index 00000000..cfd42b8d --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/macron-fwd.alt.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/macron-fwd.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/macron-fwd.glif new file mode 100644 index 00000000..635ba33f --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/macron-fwd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/macron.case.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/macron.case.glif new file mode 100644 index 00000000..bfd03115 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/macron.case.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/macron.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/macron.glif new file mode 100644 index 00000000..4ed30231 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/macron.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/macronacute.S_R_B_.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/macronacute.S_R_B_.glif new file mode 100644 index 00000000..9f360ebe --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/macronacute.S_R_B_.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + macron+acute + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/millionscombcyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/millionscombcyr.glif new file mode 100644 index 00000000..3415922c --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/millionscombcyr.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/minus.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/minus.glif new file mode 100644 index 00000000..995e1f32 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/minus.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/minute.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/minute.glif new file mode 100644 index 00000000..8bd3ede4 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/minute.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/mu.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/mu.glif new file mode 100644 index 00000000..b5e56f9a --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/mu.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + p + com.fontlab.metricsRight + u + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/multiply.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/multiply.glif new file mode 100644 index 00000000..81f9a9ae --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/multiply.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/n.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/n.glif new file mode 100644 index 00000000..9ac2f87d --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/n.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/nacute.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/nacute.glif new file mode 100644 index 00000000..4a3596bf --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/nacute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + n+acute + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/napostrophe.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/napostrophe.glif new file mode 100644 index 00000000..5499ac8d --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/napostrophe.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + com.fontlab.metricsRight + n + com.schriftgestaltung.Glyphs.ComponentInfo + + + alignment + -1 + index + 0 + name + n + + + alignment + -1 + index + 1 + name + quoteright + + + com.schriftgestaltung.Glyphs.rightMetricsKey + n + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/ncaron.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ncaron.glif new file mode 100644 index 00000000..8242ec55 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ncaron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + n+caron + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/ncommaaccent.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ncommaaccent.glif new file mode 100644 index 00000000..1b255769 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ncommaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + n+commaaccentcomb + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/neptune.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/neptune.glif new file mode 100644 index 00000000..703f4b96 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/neptune.glif @@ -0,0 +1,125 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ш + com.fontlab.metricsRight + Ш + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/nine.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/nine.glif new file mode 100644 index 00000000..18e3e127 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/nine.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + |six + com.fontlab.metricsRight + |six + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/nine.osf.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/nine.osf.glif new file mode 100644 index 00000000..5309d506 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/nine.osf.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |six + com.fontlab.metricsRight + |six + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/nine.tf.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/nine.tf.glif new file mode 100644 index 00000000..82520f7b --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/nine.tf.glif @@ -0,0 +1,7 @@ + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/njecyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/njecyr.glif new file mode 100644 index 00000000..2e6c780c --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/njecyr.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + ь + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/njecyr.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/njecyr.ss01.glif new file mode 100644 index 00000000..e002bb06 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/njecyr.ss01.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + ь + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/njekomicyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/njekomicyr.glif new file mode 100644 index 00000000..083e4ffc --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/njekomicyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + |u + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/notequal.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/notequal.glif new file mode 100644 index 00000000..2661fad9 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/notequal.glif @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/ntilde.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ntilde.glif new file mode 100644 index 00000000..7a03704d --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ntilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + n+tilde + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/numbersign.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/numbersign.glif new file mode 100644 index 00000000..caabfec3 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/numbersign.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/numero.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/numero.glif new file mode 100644 index 00000000..cc7d5c8a --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/numero.glif @@ -0,0 +1,90 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + N + com.fontlab.recipe + N+ordmasculine + com.schriftgestaltung.Glyphs.ComponentInfo + + + alignment + -1 + index + 0 + name + N + + + alignment + -1 + index + 1 + name + ordmasculine + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/numero.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/numero.ss01.glif new file mode 100644 index 00000000..4c5ec0d0 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/numero.ss01.glif @@ -0,0 +1,95 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + N.ss01 + com.fontlab.metricsRight + ordmasculine + com.fontlab.recipe + N.ss01+ordmasculine + com.schriftgestaltung.Glyphs.ComponentInfo + + + alignment + -1 + index + 0 + name + ordmasculine + + + alignment + -1 + index + 1 + name + N.ss01 + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/o-cy.accented.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/o-cy.accented.glif new file mode 100644 index 00000000..b472163b --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/o-cy.accented.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+acute + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/o-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/o-cy.glif new file mode 100644 index 00000000..354f86cd --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/o-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/o.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/o.glif new file mode 100644 index 00000000..e2f19cfe --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/o.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/oB_inocular-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/oB_inocular-cy.glif new file mode 100644 index 00000000..5fa3736a --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/oB_inocular-cy.glif @@ -0,0 +1,81 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/oD_oubleM_onocular-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/oD_oubleM_onocular-cy.glif new file mode 100644 index 00000000..6564fa6a --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/oD_oubleM_onocular-cy.glif @@ -0,0 +1,121 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + com.fontlab.recipe + doubleo-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/oM_onocular-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/oM_onocular-cy.glif new file mode 100644 index 00000000..0214d3ad --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/oM_onocular-cy.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/oacute.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/oacute.glif new file mode 100644 index 00000000..f6c2f009 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/oacute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+acute + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/obarcyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/obarcyr.glif new file mode 100644 index 00000000..b301c1ea --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/obarcyr.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/obardieresiscyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/obardieresiscyr.glif new file mode 100644 index 00000000..a1e62248 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/obardieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + obarcyr+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/obreve.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/obreve.glif new file mode 100644 index 00000000..15f1dfe8 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/obreve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+breve + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/ocircumflex.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ocircumflex.glif new file mode 100644 index 00000000..1d8c42fe --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ocircumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+circumflex + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/odieresis.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/odieresis.glif new file mode 100644 index 00000000..69d6b0e4 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/odieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+dieresis + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/odieresiscyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/odieresiscyr.glif new file mode 100644 index 00000000..50cab65f --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/odieresiscyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/oe.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/oe.glif new file mode 100644 index 00000000..20469cdc --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/oe.glif @@ -0,0 +1,86 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + e + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/oe.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/oe.ss01.glif new file mode 100644 index 00000000..ae1c89b3 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/oe.ss01.glif @@ -0,0 +1,95 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + e.ss01 + public.markColor + 0.6,0.997,1,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/ogonek.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ogonek.glif new file mode 100644 index 00000000..f36cbbf8 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ogonek.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/ograve.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ograve.glif new file mode 100644 index 00000000..66d49f54 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ograve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+grave + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/ohungarumlaut.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ohungarumlaut.glif new file mode 100644 index 00000000..5eb14346 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ohungarumlaut.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+hungarumlaut + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/omacron.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/omacron.glif new file mode 100644 index 00000000..e160e3a3 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/omacron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+macron + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/omegaB_road-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/omegaB_road-cy.glif new file mode 100644 index 00000000..8b6cbe5f --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/omegaB_road-cy.glif @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o+5 + com.fontlab.metricsRight + o+5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/omegacyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/omegacyr.glif new file mode 100644 index 00000000..e20886a5 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/omegacyr.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + w + com.fontlab.metricsRight + w + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/omegaroundcyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/omegaroundcyr.glif new file mode 100644 index 00000000..0ceb1967 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/omegaroundcyr.glif @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/omegatitlocyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/omegatitlocyr.glif new file mode 100644 index 00000000..c9aace8e --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/omegatitlocyr.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o+5 + com.fontlab.metricsRight + o+5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/omultiocular-cy.alt.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/omultiocular-cy.alt.glif new file mode 100644 index 00000000..d913bc05 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/omultiocular-cy.alt.glif @@ -0,0 +1,366 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + oMonocular-cy + com.fontlab.metricsRight + oMonocular-cy + public.markColor + 0.6,0.997,1,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/omultiocular-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/omultiocular-cy.glif new file mode 100644 index 00000000..d641f2b0 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/omultiocular-cy.glif @@ -0,0 +1,517 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + oMonocular-cy + com.fontlab.metricsRight + oMonocular-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/one.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/one.glif new file mode 100644 index 00000000..551bcc06 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/one.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =40 + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/one.osf.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/one.osf.glif new file mode 100644 index 00000000..adfcc17d --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/one.osf.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + one + com.fontlab.metricsRight + one + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/one.tf.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/one.tf.glif new file mode 100644 index 00000000..809ad882 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/one.tf.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/onehalf.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/onehalf.glif new file mode 100644 index 00000000..e481f95b --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/onehalf.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/onequarter.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/onequarter.glif new file mode 100644 index 00000000..ca15f593 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/onequarter.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/onesuperior.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/onesuperior.glif new file mode 100644 index 00000000..47a04351 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/onesuperior.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/ordfeminine.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ordfeminine.glif new file mode 100644 index 00000000..93f369ba --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ordfeminine.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/ordmasculine.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ordmasculine.glif new file mode 100644 index 00000000..a088f9d3 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ordmasculine.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/oslash.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/oslash.glif new file mode 100644 index 00000000..b59b499f --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/oslash.glif @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/oslashacute.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/oslashacute.glif new file mode 100644 index 00000000..429fbe62 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/oslashacute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + oslash+acute + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/otcyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/otcyr.glif new file mode 100644 index 00000000..bc22d35d --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/otcyr.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsRight + w + com.fontlab.recipe + omegacyr+uni2DEE + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/otilde.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/otilde.glif new file mode 100644 index 00000000..c7310b00 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/otilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+tilde + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/p.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/p.glif new file mode 100644 index 00000000..f52276bf --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/p.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/p.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/p.ss01.glif new file mode 100644 index 00000000..f0d9ba88 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/p.ss01.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/palatcombcyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/palatcombcyr.glif new file mode 100644 index 00000000..a0158143 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/palatcombcyr.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/palochkacyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/palochkacyr.glif new file mode 100644 index 00000000..5b199972 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/palochkacyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/paragraph.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/paragraph.glif new file mode 100644 index 00000000..1aabf003 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/paragraph.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |P + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/parenleft.case.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/parenleft.case.glif new file mode 100644 index 00000000..03efba6d --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/parenleft.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |parenright.case + com.fontlab.metricsRight + |parenright.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/parenleft.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/parenleft.glif new file mode 100644 index 00000000..82bf6df0 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/parenleft.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/parenright.case.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/parenright.case.glif new file mode 100644 index 00000000..17452d78 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/parenright.case.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + parenright + com.fontlab.metricsRight + parenright + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/parenright.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/parenright.glif new file mode 100644 index 00000000..7fffc4ce --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/parenright.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/partialdiff.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/partialdiff.glif new file mode 100644 index 00000000..506bffa3 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/partialdiff.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/pe-cy.B_G_R_.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/pe-cy.B_G_R_.glif new file mode 100644 index 00000000..9673d6cd --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/pe-cy.B_G_R_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + n + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/pe-cy.S_R_B_.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/pe-cy.S_R_B_.glif new file mode 100644 index 00000000..5b07334b --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/pe-cy.S_R_B_.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+macron-fwd.alt + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/pe-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/pe-cy.glif new file mode 100644 index 00000000..28f37552 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/pe-cy.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/pehookcyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/pehookcyr.glif new file mode 100644 index 00000000..d321435e --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/pehookcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + п + com.fontlab.metricsRight + enmiddlehookcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/percent.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/percent.glif new file mode 100644 index 00000000..ba7b6b57 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/percent.glif @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/period.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/period.glif new file mode 100644 index 00000000..4a2a14e7 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/period.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/periodcentered.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/periodcentered.glif new file mode 100644 index 00000000..0e81b221 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/periodcentered.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/perthousand.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/perthousand.glif new file mode 100644 index 00000000..57bf554e --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/perthousand.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/petailcyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/petailcyr.glif new file mode 100644 index 00000000..57d4166b --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/petailcyr.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + п + com.fontlab.metricsRight + entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/pi.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/pi.glif new file mode 100644 index 00000000..f72a76ec --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/pi.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f + com.fontlab.metricsRight + t + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/plus.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/plus.glif new file mode 100644 index 00000000..5a17e86e --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/plus.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/plusminus.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/plusminus.glif new file mode 100644 index 00000000..5d4906ff --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/plusminus.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/pokrytiecombcyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/pokrytiecombcyr.glif new file mode 100644 index 00000000..d94dd0a1 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/pokrytiecombcyr.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/product.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/product.glif new file mode 100644 index 00000000..f4f27f51 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/product.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/proportional.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/proportional.glif new file mode 100644 index 00000000..fbefe06f --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/proportional.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/psicyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/psicyr.glif new file mode 100644 index 00000000..0e62a325 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/psicyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + u + com.fontlab.metricsRight + |u + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/q.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/q.glif new file mode 100644 index 00000000..97defce5 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/q.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/q.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/q.ss01.glif new file mode 100644 index 00000000..c9d5e712 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/q.ss01.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/qacyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/qacyr.glif new file mode 100644 index 00000000..1cc5fff8 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/qacyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + q + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/question.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/question.glif new file mode 100644 index 00000000..6a56af5c --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/question.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/questiondown.case.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/questiondown.case.glif new file mode 100644 index 00000000..753df5c1 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/questiondown.case.glif @@ -0,0 +1,19 @@ + + + + + + + + + com.fontlab.metricsLeft + |question + com.fontlab.metricsRight + |question + com.fontlab.recipe + questiondown + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/questiondown.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/questiondown.glif new file mode 100644 index 00000000..fcf66db6 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/questiondown.glif @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |question + com.fontlab.metricsRight + |question + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/quotedbl.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/quotedbl.glif new file mode 100644 index 00000000..d860b861 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/quotedbl.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/quotedblbase.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/quotedblbase.glif new file mode 100644 index 00000000..c1aaedb3 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/quotedblbase.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + comma + com.fontlab.metricsRight + comma + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/quotedblleft.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/quotedblleft.glif new file mode 100644 index 00000000..d81a2c96 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/quotedblleft.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + |comma + com.fontlab.metricsRight + |comma + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/quotedblright.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/quotedblright.glif new file mode 100644 index 00000000..8bef45b3 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/quotedblright.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.metricsLeft + comma+20 + com.fontlab.metricsRight + comma-20 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/quoteleft.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/quoteleft.glif new file mode 100644 index 00000000..008dc8c1 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/quoteleft.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + quotedblleft + com.fontlab.metricsRight + quotedblleft + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/quoteright.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/quoteright.glif new file mode 100644 index 00000000..5d0f631e --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/quoteright.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + com.fontlab.metricsLeft + quotedblright + com.fontlab.metricsRight + quotedblright + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/quotesinglbase.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/quotesinglbase.glif new file mode 100644 index 00000000..25a5dcab --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/quotesinglbase.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + com.fontlab.recipe + comma + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/quotesingle.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/quotesingle.glif new file mode 100644 index 00000000..54526483 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/quotesingle.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/r.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/r.glif new file mode 100644 index 00000000..e6babefb --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/r.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/racute.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/racute.glif new file mode 100644 index 00000000..4aaf43e3 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/racute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + r+acute + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/radical.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/radical.glif new file mode 100644 index 00000000..c4b7ba57 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/radical.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + V + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/rcaron.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/rcaron.glif new file mode 100644 index 00000000..d26612d9 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/rcaron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + r+caron + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/rcommaaccent.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/rcommaaccent.glif new file mode 100644 index 00000000..f8bc98f2 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/rcommaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + r+commaaccentcomb + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/registered.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/registered.glif new file mode 100644 index 00000000..e74d2484 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/registered.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/reversedzecyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/reversedzecyr.glif new file mode 100644 index 00000000..c11316ab --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/reversedzecyr.glif @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + + com.fontlab.metricsRight + + com.fontlab.recipe + з + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/rhacyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/rhacyr.glif new file mode 100644 index 00000000..efd1d9d5 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/rhacyr.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + p + com.fontlab.metricsRight + x + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/ring.case.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ring.case.glif new file mode 100644 index 00000000..c183de9c --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ring.case.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/ring.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ring.glif new file mode 100644 index 00000000..0e919cc1 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ring.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/rookblack.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/rookblack.glif new file mode 100644 index 00000000..76cddace --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/rookblack.glif @@ -0,0 +1,270 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =30 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/ruble.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ruble.glif new file mode 100644 index 00000000..b6dd7258 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ruble.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + P + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/s.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/s.glif new file mode 100644 index 00000000..29c97aa8 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/s.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/sacute.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/sacute.glif new file mode 100644 index 00000000..662d26e6 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/sacute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + s+acute + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/scaron.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/scaron.glif new file mode 100644 index 00000000..e962c539 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/scaron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + s+caron + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/scedilla.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/scedilla.glif new file mode 100644 index 00000000..e7dab140 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/scedilla.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + s+cedilla + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/schwacyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/schwacyr.glif new file mode 100644 index 00000000..76b7ffd6 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/schwacyr.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |e + com.fontlab.metricsRight + o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/schwadieresiscyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/schwadieresiscyr.glif new file mode 100644 index 00000000..00a1f6ae --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/schwadieresiscyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + schwacyr+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/scircumflex.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/scircumflex.glif new file mode 100644 index 00000000..665e0053 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/scircumflex.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + s+circumflex + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/scommaaccent.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/scommaaccent.glif new file mode 100644 index 00000000..52ee38a6 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/scommaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + s+commaaccentcomb + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/second.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/second.glif new file mode 100644 index 00000000..6b8fb63b --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/second.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/section.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/section.glif new file mode 100644 index 00000000..b78d3822 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/section.glif @@ -0,0 +1,87 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + S + com.fontlab.metricsRight + S + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/semicolon.case.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/semicolon.case.glif new file mode 100644 index 00000000..259df34f --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/semicolon.case.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.metricsLeft + semicolon + com.fontlab.metricsRight + semicolon + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/semicolon.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/semicolon.glif new file mode 100644 index 00000000..1d82b37f --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/semicolon.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/semisoftcyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/semisoftcyr.glif new file mode 100644 index 00000000..69a1ddf6 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/semisoftcyr.glif @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + t + com.fontlab.metricsRight + ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/seven.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/seven.glif new file mode 100644 index 00000000..00a701e3 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/seven.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/seven.osf.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/seven.osf.glif new file mode 100644 index 00000000..57d826d1 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/seven.osf.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + seven + com.fontlab.metricsRight + seven + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/seven.tf.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/seven.tf.glif new file mode 100644 index 00000000..c7cf6852 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/seven.tf.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/sha-cy.B_G_R_.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/sha-cy.B_G_R_.glif new file mode 100644 index 00000000..ee77694c --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/sha-cy.B_G_R_.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + u + com.fontlab.metricsRight + l + com.fontlab.recipe + m + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/sha-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/sha-cy.glif new file mode 100644 index 00000000..287ba572 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/sha-cy.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/shcha-cy.B_G_R_.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/shcha-cy.B_G_R_.glif new file mode 100644 index 00000000..3cedea86 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/shcha-cy.B_G_R_.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + u + com.fontlab.metricsRight + щ + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/shcha-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/shcha-cy.glif new file mode 100644 index 00000000..ea6af2ec --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/shcha-cy.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + д + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/shhacyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/shhacyr.glif new file mode 100644 index 00000000..2fe80ca4 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/shhacyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsRight + n + com.fontlab.recipe + h + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/shhatailcyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/shhatailcyr.glif new file mode 100644 index 00000000..b387f302 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/shhatailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + h + com.fontlab.metricsRight + entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/shwe-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/shwe-cy.glif new file mode 100644 index 00000000..a6a985a5 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/shwe-cy.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + щ + com.fontlab.metricsRight + щ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/six.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/six.glif new file mode 100644 index 00000000..fd72bbfb --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/six.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/six.osf.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/six.osf.glif new file mode 100644 index 00000000..13064de3 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/six.osf.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + six + com.fontlab.metricsRight + six + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/six.tf.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/six.tf.glif new file mode 100644 index 00000000..62406fa5 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/six.tf.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/sjekomicyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/sjekomicyr.glif new file mode 100644 index 00000000..314be0cb --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/sjekomicyr.glif @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + e + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/slash.case.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/slash.case.glif new file mode 100644 index 00000000..41be0b24 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/slash.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + slash + com.fontlab.metricsRight + slash + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/slash.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/slash.glif new file mode 100644 index 00000000..b1f22d20 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/slash.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/softsign-cy.B_G_R_.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/softsign-cy.B_G_R_.glif new file mode 100644 index 00000000..2dfce299 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/softsign-cy.B_G_R_.glif @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + u + com.fontlab.metricsRight + ь-5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/softsign-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/softsign-cy.glif new file mode 100644 index 00000000..0026eed5 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/softsign-cy.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/softsign-cy.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/softsign-cy.ss01.glif new file mode 100644 index 00000000..68d22f13 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/softsign-cy.ss01.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/space.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/space.glif new file mode 100644 index 00000000..b9075c7e --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/space.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/spadewhite.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/spadewhite.glif new file mode 100644 index 00000000..5680507f --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/spadewhite.glif @@ -0,0 +1,453 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/sterling.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/sterling.glif new file mode 100644 index 00000000..a674aaa9 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/sterling.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/summation.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/summation.glif new file mode 100644 index 00000000..028c44bf --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/summation.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/t.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/t.glif new file mode 100644 index 00000000..b1293324 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/t.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/t.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/t.ss01.glif new file mode 100644 index 00000000..c117c490 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/t.ss01.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/tbar.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/tbar.glif new file mode 100644 index 00000000..c96827a7 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/tbar.glif @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/tbar.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/tbar.ss01.glif new file mode 100644 index 00000000..681d9ec6 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/tbar.ss01.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/tcaron.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/tcaron.glif new file mode 100644 index 00000000..12766a22 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/tcaron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.metricsLeft + t + com.fontlab.metricsRight + t + com.fontlab.recipe + t+caron.salt + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/tcaron.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/tcaron.ss01.glif new file mode 100644 index 00000000..bb95accb --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/tcaron.ss01.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + com.fontlab.recipe + t.ss01+caron.salt + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/tcedilla.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/tcedilla.glif new file mode 100644 index 00000000..d7147d15 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/tcedilla.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + t+cedilla + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/tcedilla.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/tcedilla.ss01.glif new file mode 100644 index 00000000..aad4fb3d --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/tcedilla.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + t.ss01+cedilla + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/tche-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/tche-cy.glif new file mode 100644 index 00000000..16c39a27 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/tche-cy.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + tetsecyr-20 + com.fontlab.metricsRight + ч + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/tcommaaccent.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/tcommaaccent.glif new file mode 100644 index 00000000..42413df6 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/tcommaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + t+commaaccentcomb + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/tcommaaccent.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/tcommaaccent.ss01.glif new file mode 100644 index 00000000..8b3fb5f2 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/tcommaaccent.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + t.ss01+commaaccentcomb + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/te-cy.B_G_R_.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/te-cy.B_G_R_.glif new file mode 100644 index 00000000..637d51a6 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/te-cy.B_G_R_.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + m + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/te-cy.S_R_B_.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/te-cy.S_R_B_.glif new file mode 100644 index 00000000..bd5e8d87 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/te-cy.S_R_B_.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ш.BGR+macron-fwd + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/te-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/te-cy.glif new file mode 100644 index 00000000..f109aa05 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/te-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/te-cy.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/te-cy.ss01.glif new file mode 100644 index 00000000..41edbbfb --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/te-cy.ss01.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/tenge.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/tenge.glif new file mode 100644 index 00000000..f8352ebd --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/tenge.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + T + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/tenmillionscomb-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/tenmillionscomb-cy.glif new file mode 100644 index 00000000..65a382f8 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/tenmillionscomb-cy.glif @@ -0,0 +1,109 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/tetailcyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/tetailcyr.glif new file mode 100644 index 00000000..3baa8f61 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/tetailcyr.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + т + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/tetsecyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/tetsecyr.glif new file mode 100644 index 00000000..6731efa4 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/tetsecyr.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + т + com.fontlab.metricsRight + ц + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/tewithmiddlehook-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/tewithmiddlehook-cy.glif new file mode 100644 index 00000000..81ab9ee8 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/tewithmiddlehook-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + т + com.fontlab.metricsRight + gehookcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/thorn.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/thorn.glif new file mode 100644 index 00000000..69828210 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/thorn.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + b + com.fontlab.metricsRight + b + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/thousandmillionscomb-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/thousandmillionscomb-cy.glif new file mode 100644 index 00000000..384ef4bc --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/thousandmillionscomb-cy.glif @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/thousandscyr.dnom.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/thousandscyr.dnom.glif new file mode 100644 index 00000000..ab5a5449 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/thousandscyr.dnom.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + | + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/thousandscyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/thousandscyr.glif new file mode 100644 index 00000000..f3d83c2e --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/thousandscyr.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + | + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/three.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/three.glif new file mode 100644 index 00000000..f4a55386 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/three.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/three.osf.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/three.osf.glif new file mode 100644 index 00000000..370b9279 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/three.osf.glif @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + three + com.fontlab.metricsRight + three + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/three.tf.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/three.tf.glif new file mode 100644 index 00000000..7af98349 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/three.tf.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/threequarters.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/threequarters.glif new file mode 100644 index 00000000..4c99d9f5 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/threequarters.glif @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/threesuperior.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/threesuperior.glif new file mode 100644 index 00000000..1db513e0 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/threesuperior.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/tilde.case.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/tilde.case.glif new file mode 100644 index 00000000..05e616db --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/tilde.case.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/tilde.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/tilde.glif new file mode 100644 index 00000000..a9e250ff --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/tilde.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/titlocombcyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/titlocombcyr.glif new file mode 100644 index 00000000..ec4c1e91 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/titlocombcyr.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/tjekomicyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/tjekomicyr.glif new file mode 100644 index 00000000..43fa0ff7 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/tjekomicyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + т + com.fontlab.metricsRight + njekomicyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/trademark.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/trademark.glif new file mode 100644 index 00000000..e6f7948d --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/trademark.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/tse-cy.B_G_R_.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/tse-cy.B_G_R_.glif new file mode 100644 index 00000000..784587a5 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/tse-cy.B_G_R_.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + u + com.fontlab.metricsRight + ц + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/tse-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/tse-cy.glif new file mode 100644 index 00000000..29591b47 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/tse-cy.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + д + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/tseR_eversed-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/tseR_eversed-cy.glif new file mode 100644 index 00000000..b6639a94 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/tseR_eversed-cy.glif @@ -0,0 +1,20 @@ + + + + + + + + + + com.fontlab.metricsLeft + + com.fontlab.metricsRight + н + com.fontlab.recipe + ц + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/tshecyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/tshecyr.glif new file mode 100644 index 00000000..adb49682 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/tshecyr.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + hbar + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/tsse-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/tsse-cy.glif new file mode 100644 index 00000000..1940638b --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/tsse-cy.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + т + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/tswe-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/tswe-cy.glif new file mode 100644 index 00000000..4c31af5e --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/tswe-cy.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ш + com.fontlab.metricsRight + shwe-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/twe-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/twe-cy.glif new file mode 100644 index 00000000..9f0aff3b --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/twe-cy.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + т.ss01 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/two.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/two.glif new file mode 100644 index 00000000..9bded4a3 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/two.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/two.osf.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/two.osf.glif new file mode 100644 index 00000000..2e37c3da --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/two.osf.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + two + com.fontlab.metricsRight + two + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/two.tf.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/two.tf.glif new file mode 100644 index 00000000..fc4fc7b0 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/two.tf.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/twosuperior.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/twosuperior.glif new file mode 100644 index 00000000..56877eb9 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/twosuperior.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/u-cy.accented.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/u-cy.accented.glif new file mode 100644 index 00000000..b3006049 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/u-cy.accented.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + y+acute + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/u-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/u-cy.glif new file mode 100644 index 00000000..7ca6ea4e --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/u-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + y + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/u.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/u.glif new file mode 100644 index 00000000..a0302c90 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/u.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |n + com.fontlab.metricsRight + l + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/uacute.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uacute.glif new file mode 100644 index 00000000..963eb152 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uacute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+acute + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/uacutedblcyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uacutedblcyr.glif new file mode 100644 index 00000000..c620fdcf --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uacutedblcyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u-cy+hungarumlaut + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/ubreve.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ubreve.glif new file mode 100644 index 00000000..309c75fd --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ubreve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+breve + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/ucircumflex.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ucircumflex.glif new file mode 100644 index 00000000..26f50814 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ucircumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+circumflex + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/udieresis.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/udieresis.glif new file mode 100644 index 00000000..d078d99e --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/udieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+dieresis + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/udieresiscyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/udieresiscyr.glif new file mode 100644 index 00000000..e46853f2 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/udieresiscyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/ugrave.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ugrave.glif new file mode 100644 index 00000000..d200c3df --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ugrave.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+grave + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/uhungarumlaut.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uhungarumlaut.glif new file mode 100644 index 00000000..539c74a3 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uhungarumlaut.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+hungarumlaut + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/ukM_onograph-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ukM_onograph-cy.glif new file mode 100644 index 00000000..dc969178 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ukM_onograph-cy.glif @@ -0,0 +1,78 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + y-30 + com.fontlab.metricsRight + y-20 + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/ukcyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ukcyr.glif new file mode 100644 index 00000000..b61be2cf --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ukcyr.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + y + com.fontlab.recipe + uni1C82_у + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/umacron.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/umacron.glif new file mode 100644 index 00000000..5860f455 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/umacron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+macron + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/umacroncyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/umacroncyr.glif new file mode 100644 index 00000000..45931c1c --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/umacroncyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u-cy+macron + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/underscore.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/underscore.glif new file mode 100644 index 00000000..32249412 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/underscore.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/uni1C_80.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uni1C_80.glif new file mode 100644 index 00000000..363923f2 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uni1C_80.glif @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + б + com.fontlab.metricsRight + o-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/uni1C_81.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uni1C_81.glif new file mode 100644 index 00000000..ceb69339 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uni1C_81.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + д-10 + com.fontlab.metricsRight + | + com.fontlab.recipe + д + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/uni1C_82.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uni1C_82.glif new file mode 100644 index 00000000..228891e6 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uni1C_82.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/uni1C_83.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uni1C_83.glif new file mode 100644 index 00000000..b91077f6 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uni1C_83.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + c + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/uni1C_84.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uni1C_84.glif new file mode 100644 index 00000000..95f4fc7a --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uni1C_84.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/uni1C_85.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uni1C_85.glif new file mode 100644 index 00000000..e5572106 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uni1C_85.glif @@ -0,0 +1,20 @@ + + + + + + + + + + com.fontlab.metricsLeft + ш + com.fontlab.metricsRight + l() + com.fontlab.recipe + ш + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/uni1C_86.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uni1C_86.glif new file mode 100644 index 00000000..32e56828 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uni1C_86.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + uni1C84 + com.fontlab.metricsRight + ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/uni1C_87.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uni1C_87.glif new file mode 100644 index 00000000..8d0ca4ee --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uni1C_87.glif @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + uni1C84-40 + com.fontlab.metricsRight + ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/uni1C_88.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uni1C_88.glif new file mode 100644 index 00000000..2119a3d1 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uni1C_88.glif @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/uni1E_B_C_.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uni1E_B_C_.glif new file mode 100644 index 00000000..27d8f885 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uni1E_B_C_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+tilde.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/uni1E_B_D_.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uni1E_B_D_.glif new file mode 100644 index 00000000..59a008c8 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uni1E_B_D_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+tilde + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/uni2010.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uni2010.glif new file mode 100644 index 00000000..41e5409d --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uni2010.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + hyphen + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/uni2D_E_E_.case.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uni2D_E_E_.case.glif new file mode 100644 index 00000000..a87b60cc --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uni2D_E_E_.case.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/uni2D_E_E_.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uni2D_E_E_.glif new file mode 100644 index 00000000..8b35ea4c --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uni2D_E_E_.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniE_000.alt.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniE_000.alt.glif new file mode 100644 index 00000000..efa5365e --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniE_000.alt.glif @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + ї_ї + public.markColor + 0.6,0.997,1,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniE_000.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniE_000.glif new file mode 100644 index 00000000..d22d87ba --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniE_000.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + ї_ї + public.markColor + 0.6,0.997,1,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniE_01A_.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniE_01A_.glif new file mode 100644 index 00000000..7a486e43 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniE_01A_.glif @@ -0,0 +1,115 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_43A_.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_43A_.glif new file mode 100644 index 00000000..219a6f91 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_43A_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_43B_.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_43B_.glif new file mode 100644 index 00000000..2ac81b6e --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_43B_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ustraightcyr+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_45D_.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_45D_.glif new file mode 100644 index 00000000..8b63c7c5 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_45D_.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Є+acute.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_45E_.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_45E_.glif new file mode 100644 index 00000000..a9108c3a --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_45E_.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Iacute + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_45F_.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_45F_.glif new file mode 100644 index 00000000..40008a16 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_45F_.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + com.fontlab.recipe + I+dieresiscase.alt+acute.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_475.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_475.glif new file mode 100644 index 00000000..932bf787 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_475.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + є+acute + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_476.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_476.glif new file mode 100644 index 00000000..44074bef --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_476.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + iacute + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_477.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_477.glif new file mode 100644 index 00000000..469a1d2e --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_477.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + dotlessi+dieresisacute + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_478.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_478.glif new file mode 100644 index 00000000..fc77ba2f --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_478.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Yat+acute.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_479.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_479.glif new file mode 100644 index 00000000..1716ccc1 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_479.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + yat+acute + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_498.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_498.glif new file mode 100644 index 00000000..eeda5463 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_498.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ю+dieresis.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_499.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_499.glif new file mode 100644 index 00000000..0b32b5b9 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_499.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ю+dieresis + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_49A_.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_49A_.glif new file mode 100644 index 00000000..02e292ae --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_49A_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Obarcyr+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_49B_.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_49B_.glif new file mode 100644 index 00000000..65215bbe --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_49B_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + obarcyr+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_49C_.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_49C_.glif new file mode 100644 index 00000000..b784bbfa --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_49C_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Schwacyr+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_49D_.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_49D_.glif new file mode 100644 index 00000000..fb3bcc2e --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_49D_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + schwacyr+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_49E_.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_49E_.glif new file mode 100644 index 00000000..476ab9a3 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_49E_.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Yatcyr + com.fontlab.metricsRight + Tshecyr + com.fontlab.recipe + Shhacyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_49F_.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_49F_.glif new file mode 100644 index 00000000..186d8b58 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_49F_.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + hbar + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_4C_6.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_4C_6.glif new file mode 100644 index 00000000..5585971f --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_4C_6.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ч + com.fontlab.metricsRight + Ч + com.fontlab.recipe + Ч + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_4C_7.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_4C_7.glif new file mode 100644 index 00000000..785d51bc --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_4C_7.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ч + com.fontlab.metricsRight + ч + com.fontlab.recipe + ч+enhookcyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_4C_C_.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_4C_C_.glif new file mode 100644 index 00000000..05706a78 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_4C_C_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + У+acute.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_4C_D_.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_4C_D_.glif new file mode 100644 index 00000000..94833bd7 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_4C_D_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + y+acute + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_4D_2.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_4D_2.glif new file mode 100644 index 00000000..519bd9a6 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_4D_2.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+grave.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_4D_3.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_4D_3.glif new file mode 100644 index 00000000..c403f655 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_4D_3.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+grave + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_4D_4.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_4D_4.glif new file mode 100644 index 00000000..990ace0a --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_4D_4.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + P+caron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_4D_5.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_4D_5.glif new file mode 100644 index 00000000..c71a9c92 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_4D_5.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + p+caron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_4D_6.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_4D_6.glif new file mode 100644 index 00000000..0e0795f9 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_4D_6.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Э+dotaccent.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_4D_7.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_4D_7.glif new file mode 100644 index 00000000..6ce17e6a --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_4D_7.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + э+dotaccent + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_4D_8.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_4D_8.glif new file mode 100644 index 00000000..c43697bf --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_4D_8.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Я+dieresis.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_4D_9.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_4D_9.glif new file mode 100644 index 00000000..a11bdb1d --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_4D_9.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + я+dieresis + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_50E_.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_50E_.glif new file mode 100644 index 00000000..824e25b8 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_50E_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_50F_.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_50F_.glif new file mode 100644 index 00000000..c7d05945 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_50F_.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_510.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_510.glif new file mode 100644 index 00000000..e0201355 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_510.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_511.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_511.glif new file mode 100644 index 00000000..11736c9c --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_511.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_512.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_512.glif new file mode 100644 index 00000000..b280dbdf --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_512.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + com.fontlab.metricsLeft + E + com.fontlab.metricsRight + E + com.fontlab.recipe + E+dieresis.case+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_513.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_513.glif new file mode 100644 index 00000000..7737322d --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_513.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.recipe + e+dieresis+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_514.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_514.glif new file mode 100644 index 00000000..0b14366a --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_514.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + com.fontlab.metricsLeft + E + com.fontlab.metricsRight + E + com.fontlab.recipe + E+dieresis.case+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_515.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_515.glif new file mode 100644 index 00000000..774ca672 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_515.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.recipe + e+dieresis+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_516.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_516.glif new file mode 100644 index 00000000..4411e1d8 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_516.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + З+caron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_517.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_517.glif new file mode 100644 index 00000000..d188eac6 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_517.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + з+caron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_518.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_518.glif new file mode 100644 index 00000000..12866a25 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_518.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_519.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_519.glif new file mode 100644 index 00000000..f4ecb0cc --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_519.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_51A_.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_51A_.glif new file mode 100644 index 00000000..e61d9ede --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_51A_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_51B_.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_51B_.glif new file mode 100644 index 00000000..3b147809 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_51B_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_51C_.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_51C_.glif new file mode 100644 index 00000000..6ea1d859 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_51C_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Obarcyr+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_51D_.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_51D_.glif new file mode 100644 index 00000000..6b3638d3 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_51D_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + obarcyr+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_51E_.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_51E_.glif new file mode 100644 index 00000000..42d1a182 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_51E_.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + com.fontlab.recipe + Obarcyr+dieresis.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_51F_.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_51F_.glif new file mode 100644 index 00000000..db21ba1b --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_51F_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.recipe + obarcyr+dieresis+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_521.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_521.glif new file mode 100644 index 00000000..1ece7e4f --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_521.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ы+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_522.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_522.glif new file mode 100644 index 00000000..7bcd4be3 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_522.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Э+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_523.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_523.glif new file mode 100644 index 00000000..d6027602 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_523.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + э+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_524.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_524.glif new file mode 100644 index 00000000..da460038 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_524.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Э+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_525.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_525.glif new file mode 100644 index 00000000..893b6cfe --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_525.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + э+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_526.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_526.glif new file mode 100644 index 00000000..be37bb4e --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_526.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Є+dieresis.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_527.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_527.glif new file mode 100644 index 00000000..0acecff7 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_527.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + є+dieresis + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_528.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_528.glif new file mode 100644 index 00000000..1ad06521 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_528.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Я+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_529.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_529.glif new file mode 100644 index 00000000..870fc671 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_529.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + я+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_52A_.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_52A_.glif new file mode 100644 index 00000000..f2c5798c --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_52A_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Я+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_52B_.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_52B_.glif new file mode 100644 index 00000000..1c10a1a0 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_52B_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + я+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_52C_.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_52C_.glif new file mode 100644 index 00000000..44f16fd4 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_52C_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ю+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_52D_.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_52D_.glif new file mode 100644 index 00000000..b9eec83a --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_52D_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ю+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_52E_.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_52E_.glif new file mode 100644 index 00000000..00486702 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_52E_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ю+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_52F_.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_52F_.glif new file mode 100644 index 00000000..418d6b99 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_52F_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ю+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_532.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_532.glif new file mode 100644 index 00000000..9fa7d8b1 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_532.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Й + com.fontlab.metricsRight + Й + com.fontlab.recipe + Й + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_533.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_533.glif new file mode 100644 index 00000000..3e695ab8 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_533.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + l() + com.fontlab.recipe + й+enhookcyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_536.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_536.glif new file mode 100644 index 00000000..3b4386e4 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_536.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ы+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_537.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_537.glif new file mode 100644 index 00000000..698d9bba --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_537.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ы+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_538.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_538.glif new file mode 100644 index 00000000..d23ff1c8 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_538.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Reversedzecyr+dieresis.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_539.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_539.glif new file mode 100644 index 00000000..27886dca --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_539.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + reversedzecyr+dieresis + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_830.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_830.glif new file mode 100644 index 00000000..0f86b7b5 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_830.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+circumflex.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_831.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_831.glif new file mode 100644 index 00000000..2c5196da --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_831.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+circumflex + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_833.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_833.glif new file mode 100644 index 00000000..5c02cb03 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_833.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+circumflex.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_834.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_834.glif new file mode 100644 index 00000000..7ad78086 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_834.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+circumflex + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_839.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_839.glif new file mode 100644 index 00000000..78ccb49c --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_839.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+circumflex.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_83A_.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_83A_.glif new file mode 100644 index 00000000..b513dba7 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_83A_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+circumflex + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_86F_.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_86F_.glif new file mode 100644 index 00000000..c8b4f20a --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_86F_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + K+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_870.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_870.glif new file mode 100644 index 00000000..85462074 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_870.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + к+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_872.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_872.glif new file mode 100644 index 00000000..51bf73f0 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_872.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Л+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_873.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_873.glif new file mode 100644 index 00000000..344f5983 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_873.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + л+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_875.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_875.glif new file mode 100644 index 00000000..b932bae1 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_875.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_876.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_876.glif new file mode 100644 index 00000000..c37de4d0 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_876.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_878.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_878.glif new file mode 100644 index 00000000..5fe5aea2 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_878.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + X+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_879.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_879.glif new file mode 100644 index 00000000..170bd4da --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_879.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + x+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_87B_.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_87B_.glif new file mode 100644 index 00000000..ddfa1373 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_87B_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ц+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_87C_.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_87C_.glif new file mode 100644 index 00000000..47fef5dc --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_87C_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ц+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_87E_.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_87E_.glif new file mode 100644 index 00000000..5a838e6e --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_87E_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ч+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_87F_.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_87F_.glif new file mode 100644 index 00000000..3f5d325f --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uniF_87F_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ч+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/uogonek.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uogonek.glif new file mode 100644 index 00000000..ade4623b --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uogonek.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+ogonek + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/uring.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uring.glif new file mode 100644 index 00000000..364364ed --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/uring.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+ring + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/ushort-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ushort-cy.glif new file mode 100644 index 00000000..413e568f --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ushort-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + uni0443+breve + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/ustraightcyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ustraightcyr.glif new file mode 100644 index 00000000..44a176ee --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ustraightcyr.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + v + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/ustraightstrokecyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ustraightstrokecyr.glif new file mode 100644 index 00000000..b0739469 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ustraightstrokecyr.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/utilde.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/utilde.glif new file mode 100644 index 00000000..f8b26626 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/utilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+tilde + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/v.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/v.glif new file mode 100644 index 00000000..3ee405d2 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/v.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/ve-cy.B_G_R_.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ve-cy.B_G_R_.glif new file mode 100644 index 00000000..f3613d32 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ve-cy.B_G_R_.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + b-5 + com.fontlab.metricsRight + b + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/ve-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ve-cy.glif new file mode 100644 index 00000000..7375b80d --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ve-cy.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/ve-cy.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ve-cy.ss01.glif new file mode 100644 index 00000000..152693df --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ve-cy.ss01.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/virgo.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/virgo.glif new file mode 100644 index 00000000..05e84a17 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/virgo.glif @@ -0,0 +1,224 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =55 + com.fontlab.metricsRight + =35 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/vzmetcomb-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/vzmetcomb-cy.glif new file mode 100644 index 00000000..dbde07cc --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/vzmetcomb-cy.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/w.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/w.glif new file mode 100644 index 00000000..9a6d73db --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/w.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/wacute.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/wacute.glif new file mode 100644 index 00000000..8b1fa97d --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/wacute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + w+acute + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/wcircumflex.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/wcircumflex.glif new file mode 100644 index 00000000..765ea207 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/wcircumflex.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + w+circumflex + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/wdieresis.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/wdieresis.glif new file mode 100644 index 00000000..f887fe32 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/wdieresis.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + w+dieresis + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/wecyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/wecyr.glif new file mode 100644 index 00000000..cbc73ab0 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/wecyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + w + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/wgrave.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/wgrave.glif new file mode 100644 index 00000000..5e03e3c4 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/wgrave.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + w+grave + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/x.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/x.glif new file mode 100644 index 00000000..05a795b4 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/x.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/xatailcyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/xatailcyr.glif new file mode 100644 index 00000000..60ac0cbc --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/xatailcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + x + com.fontlab.metricsRight + zhetailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/y.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/y.glif new file mode 100644 index 00000000..6e2a6bd5 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/y.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/yacute.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/yacute.glif new file mode 100644 index 00000000..1039c4b2 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/yacute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + y+acute + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/yaecyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/yaecyr.glif new file mode 100644 index 00000000..325e43c8 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/yaecyr.glif @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + я + com.fontlab.metricsRight + e + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/yatI_otified-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/yatI_otified-cy.glif new file mode 100644 index 00000000..8afbf4b7 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/yatI_otified-cy.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + com.fontlab.metricsRight + yatcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/yatcyr.B_G_R_.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/yatcyr.B_G_R_.glif new file mode 100644 index 00000000..4520cd3a --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/yatcyr.B_G_R_.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hardsign-cy + com.fontlab.metricsRight + ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/yatcyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/yatcyr.glif new file mode 100644 index 00000000..82e5c585 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/yatcyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hardsign-cy + com.fontlab.metricsRight + ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/ycircumflex.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ycircumflex.glif new file mode 100644 index 00000000..08ac8967 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ycircumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + y+circumflex + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/ydieresis.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ydieresis.glif new file mode 100644 index 00000000..0fc3c63d --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ydieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + y+dieresis + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/yen.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/yen.glif new file mode 100644 index 00000000..b2e36e92 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/yen.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/yen.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/yen.ss01.glif new file mode 100644 index 00000000..e7b13925 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/yen.ss01.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/yerN_eutral-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/yerN_eutral-cy.glif new file mode 100644 index 00000000..86f72039 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/yerN_eutral-cy.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hardsign-cy + com.fontlab.metricsRight + ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/yeru-cy.accented.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/yeru-cy.accented.glif new file mode 100644 index 00000000..e3204801 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/yeru-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ы+acute + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/yeru-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/yeru-cy.glif new file mode 100644 index 00000000..b4a488c0 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/yeru-cy.glif @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/yeru-cy.ss01.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/yeru-cy.ss01.glif new file mode 100644 index 00000000..14a8c259 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/yeru-cy.ss01.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/yeruB_ackyer-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/yeruB_ackyer-cy.glif new file mode 100644 index 00000000..fe52c6ff --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/yeruB_ackyer-cy.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hardsign-cy + com.fontlab.metricsRight + dotlessi + com.fontlab.recipe + hardsign-cy_dotlessi + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/yi-cy.alt.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/yi-cy.alt.glif new file mode 100644 index 00000000..c782779f --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/yi-cy.alt.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.recipe + idieresis + public.markColor + 0.6,0.997,1,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/yi-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/yi-cy.glif new file mode 100644 index 00000000..b120ccde --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/yi-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + idieresis + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/ylongdieresiscyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ylongdieresiscyr.glif new file mode 100644 index 00000000..c6992c53 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ylongdieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + yeru-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/yn-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/yn-cy.glif new file mode 100644 index 00000000..efe21f79 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/yn-cy.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |izhitsacyr + com.fontlab.metricsRight + |izhitsacyr + com.fontlab.recipe + izhitsa + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/yuR_eversed-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/yuR_eversed-cy.glif new file mode 100644 index 00000000..9f84c368 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/yuR_eversed-cy.glif @@ -0,0 +1,20 @@ + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l + com.fontlab.recipe + ю + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/yusB_lended-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/yusB_lended-cy.glif new file mode 100644 index 00000000..88c48faf --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/yusB_lended-cy.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + yusbigcyr + com.fontlab.metricsRight + yusbigcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/yusC_losedlittle-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/yusC_losedlittle-cy.glif new file mode 100644 index 00000000..cf63aea5 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/yusC_losedlittle-cy.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + yuslittlecyr + com.fontlab.metricsRight + yuslittlecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/yusbigcyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/yusbigcyr.glif new file mode 100644 index 00000000..f03b5877 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/yusbigcyr.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/yusbigiotifiedcyr.B_G_R_.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/yusbigiotifiedcyr.B_G_R_.glif new file mode 100644 index 00000000..f4363f17 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/yusbigiotifiedcyr.B_G_R_.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + com.fontlab.metricsRight + ж + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/yusbigiotifiedcyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/yusbigiotifiedcyr.glif new file mode 100644 index 00000000..59f6dd0e --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/yusbigiotifiedcyr.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + ж + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/yusiotifiedC_losedL_ittle-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/yusiotifiedC_losedL_ittle-cy.glif new file mode 100644 index 00000000..bb67c6a8 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/yusiotifiedC_losedL_ittle-cy.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + yusClosedlittle-cy + com.fontlab.recipe + yusClosedlittle-cy+н + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/yuslittlecyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/yuslittlecyr.glif new file mode 100644 index 00000000..576fc52c --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/yuslittlecyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + v-5 + com.fontlab.metricsRight + v-5 + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/yuslittleiotifiedcyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/yuslittleiotifiedcyr.glif new file mode 100644 index 00000000..11136933 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/yuslittleiotifiedcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + v-10 + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/z.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/z.glif new file mode 100644 index 00000000..eee28a55 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/z.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/zacute.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/zacute.glif new file mode 100644 index 00000000..b1c77189 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/zacute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + z+acute + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/zcaron.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/zcaron.glif new file mode 100644 index 00000000..dfeba07e --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/zcaron.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + z+caron + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/zdotaccent.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/zdotaccent.glif new file mode 100644 index 00000000..4f295684 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/zdotaccent.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + z+dotaccent + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/ze-cy.B_G_R_.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ze-cy.B_G_R_.glif new file mode 100644 index 00000000..fb220574 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ze-cy.B_G_R_.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |c-12 + com.fontlab.metricsRight + в-5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/ze-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ze-cy.glif new file mode 100644 index 00000000..d257467c --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/ze-cy.glif @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |c-5 + com.fontlab.metricsRight + в + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/zedieresiscyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/zedieresiscyr.glif new file mode 100644 index 00000000..867aff73 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/zedieresiscyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ze-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/zemlya-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/zemlya-cy.glif new file mode 100644 index 00000000..6ac8a4a6 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/zemlya-cy.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + z-10 + com.fontlab.metricsRight + z + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/zero.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/zero.glif new file mode 100644 index 00000000..69be01ac --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/zero.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/zero.osf.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/zero.osf.glif new file mode 100644 index 00000000..5fbfa355 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/zero.osf.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + zero + com.fontlab.metricsRight + zero + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/zero.tf.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/zero.tf.glif new file mode 100644 index 00000000..fd2719cc --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/zero.tf.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/zetailcyr.B_S_H_.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/zetailcyr.B_S_H_.glif new file mode 100644 index 00000000..b6901022 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/zetailcyr.B_S_H_.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + з + com.fontlab.metricsRight + з + com.fontlab.recipe + з + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/zetailcyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/zetailcyr.glif new file mode 100644 index 00000000..818eba78 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/zetailcyr.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + з + com.fontlab.metricsRight + з + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/zhe-cy.B_G_R_.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/zhe-cy.B_G_R_.glif new file mode 100644 index 00000000..bd6954c4 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/zhe-cy.B_G_R_.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |k + com.fontlab.metricsRight + k + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/zhe-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/zhe-cy.glif new file mode 100644 index 00000000..cb0be870 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/zhe-cy.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |k + com.fontlab.metricsRight + k + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/zhebrevecyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/zhebrevecyr.glif new file mode 100644 index 00000000..64ea27f9 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/zhebrevecyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + zhe-cy+breve + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/zhedieresiscyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/zhedieresiscyr.glif new file mode 100644 index 00000000..e175c87c --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/zhedieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + zhe-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/zhetailcyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/zhetailcyr.glif new file mode 100644 index 00000000..8778f130 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/zhetailcyr.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ж + com.fontlab.metricsRight + katailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/zhwe-cy.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/zhwe-cy.glif new file mode 100644 index 00000000..7bcce242 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/zhwe-cy.glif @@ -0,0 +1,87 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + з + com.fontlab.metricsRight + ж + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/glyphs/zjekomicyr.glif b/sources/FixelDisplay-ExtraBold.ufo/glyphs/zjekomicyr.glif new file mode 100644 index 00000000..2ee876b6 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/glyphs/zjekomicyr.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + з-20 + com.fontlab.metricsRight + njekomicyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/groups.plist b/sources/FixelDisplay-ExtraBold.ufo/groups.plist new file mode 100644 index 00000000..0215e532 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/groups.plist @@ -0,0 +1,2992 @@ + + + + + accent + + grave + acute.case + grave.case + acute + + case + + arrowdown.case + arrowdown.ss01.case + arrowleft.case + arrowleft.ss01.case + arrowright.case + arrowright.ss01.case + arrowup.case + arrowup.ss01.case + backslash.case + bar.case + braceleft.case + braceright.case + bracketleft.case + bracketright.case + brokenbar.case + bullet.case + colon.case + emdash.case + endash.case + exclamdown.case + guillemetleft.case + guillemetright.case + guilsinglleft.case + guilsinglright.case + hyphen.case + parenleft.case + parenright.case + questiondown.case + semicolon.case + at.case + bracketangleleft.case + bracketangleright.case + slash.case + + case_def + + arrowdown + arrowdown.ss01 + arrowleft + arrowleft.ss01 + arrowright + arrowright.ss01 + arrowup + arrowup.ss01 + backslash + bar + braceleft + braceright + bracketleft + bracketright + brokenbar + bullet + colon + emdash + endash + exclamdown + guillemetleft + guillemetright + guilsinglleft + guilsinglright + hyphen + parenleft + parenright + questiondown + semicolon + at + bracketangleleft + bracketangleright + slash + + cpsp + + 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 + Agrave + Aacute + Acircumflex + Atilde + Adieresis + Aring + AE + Ccedilla + Egrave + Eacute + Ecircumflex + Edieresis + Igrave + Iacute + Icircumflex + Idieresis + Eth + Ntilde + Ograve + Oacute + Ocircumflex + Otilde + Odieresis + Oslash + Ugrave + Uacute + Ucircumflex + Udieresis + Yacute + Thorn + Amacron + Abreve + Aogonek + Cacute + Ccircumflex + Cdotaccent + Ccaron + Dcaron + Dcroat + Emacron + Ebreve + Edotaccent + Eogonek + Ecaron + Gcircumflex + Gbreve + Gdotaccent + Gcommaaccent + Hcircumflex + Hbar + Itilde + Imacron + Ibreve + Iogonek + Idotaccent + IJ + Jcircumflex + Kcommaaccent + Lacute + Lcommaaccent + Lcaron + Ldot + Lslash + Nacute + Ncommaaccent + Ncaron + Eng + Omacron + Obreve + Ohungarumlaut + OE + Racute + Rcommaaccent + Rcaron + Sacute + Scircumflex + Scedilla + Scaron + Tcedilla + Tcaron + Tbar + Utilde + Umacron + Ubreve + Uring + Uhungarumlaut + Uogonek + Wcircumflex + Ycircumflex + Ydieresis + Zacute + Zdotaccent + Zcaron + Schwa + Acaron + Gacute + AEacute + Oslashacute + Scommaaccent + Tcommaaccent + Delta + Omega + Iegravecyr + uniF43A + A-cy.accented + E-cy.accented + Ii-cy.accented + O-cy.accented + U-cy.accented + Yeru-cy.accented + Ereversed-cy.accented + Iu-cy.accented + Ia-cy.accented + Io-cy.accented + uniF498 + uniF49A + uniF49C + uniF49E + uniF4C6 + uniF4CC + uniF4D2 + uniF4D4 + uniF4D6 + uniF4D8 + uniF50E + uniF510 + uniF512 + uniF514 + uniF516 + uniF518 + uniF51A + uniF51C + uniF51E + Yeru-cymacron + uniF522 + uniF524 + uniF526 + uniF528 + uniF52A + uniF52C + uniF52E + uniF532 + uniF536 + uniF538 + uniF830 + uniF833 + uniF839 + uniF86F + uniF872 + uniF875 + uniF878 + uniF87B + uniF87E + Io-cy + Djecyr + Gjecyr + E-cy + Dze-cy + I-cy + Yi-cy + Jecyr + Ljecyr + Njecyr + Tshecyr + Kjecyr + Igravecyr + Ushort-cy + Dzhecyr + A-cy + Be-cy + Ve-cy + Ge-cy + De-cy + Ie-cy + Zhe-cy + Ze-cy + Ii-cy + Iishort-cy + Ka-cy + El-cy + Em-cy + En-cy + O-cy + Pe-cy + Er-cy + Es-cy + Te-cy + U-cy + Ef-cy + Ha-cy + Tse-cy + Che-cy + Sha-cy + Shcha-cy + Hardsign-cy + Yeru-cy + Softsign-cy + Ereversed-cy + Iu-cy + Ia-cy + Omegacyr + Yatcyr + Eiotifiedcyr + Yuslittlecyr + Yuslittleiotifiedcyr + Yusbigcyr + Yusbigiotifiedcyr + Ksicyr + Psicyr + Fitacyr + Izhitsacyr + Izhitsagravedblcyr + Ukcyr + Omegaroundcyr + Omegatitlocyr + Otcyr + Koppacyr + Ishortsharptailcyr + Semisoftcyr + Ertickcyr + Gheupturn-cy + Gestrokecyr + Gehookcyr + Zhetailcyr + Zetailcyr + Katailcyr + Kaverticalstrokecyr + Kastrokecyr + Kabashkcyr + Entailcyr + Engecyr + Pehookcyr + Haabkhcyr + Estailcyr + Tetailcyr + Ustraightcyr + Ustraightstrokecyr + Xatailcyr + Tetsecyr + Chetailcyr + Chevertcyr + Shhacyr + Cheabkhcyr + Cheabkhtailcyr + Palochkacyr + Zhebrevecyr + Kahookcyr + Elsharptailcyr + Enhookcyr + Ensharptailcyr + Chekhakascyr + Emsharptailcyr + Abrevecyr + Adieresiscyr + Aiecyr + Iebrevecyr + Schwacyr + Schwadieresiscyr + Zhedieresiscyr + Zedieresiscyr + Dzeabkhcyr + Imacroncyr + Idieresiscyr + Odieresiscyr + Obarcyr + Obardieresiscyr + Ereverseddieresiscyr + Umacroncyr + Udieresiscyr + Uacutedblcyr + Chedieresiscyr + Getailcyr + Ylongdieresiscyr + Gehookstrokecyr + Hahookcyr + Hastrokecyr + Dekomicyr + Djekomicyr + Zjekomicyr + Dzjekomicyr + Ljekomicyr + Njekomicyr + Sjekomicyr + Tjekomicyr + Reversedzecyr + Elhookcyr + Lhacyr + Rhacyr + Yaecyr + Qacyr + Wecyr + Kaaleutcyr + Elmiddlehookcyr + Enmiddlehookcyr + Petailcyr + Shhatailcyr + Enhookleftcyr + Dzzhecyr + Dchecyr + Eltailcyr + Wgrave + Wacute + Wdieresis + Germandbls + uni1EBC + Zemlya-cy + Dzelo-cy + DzeReversed-cy + Iota-cy + Djerv-cy + UkMonograph-cy + OmegaBroad-cy + YerNeutral-cy + YeruBackYer-cy + YatIotified-cy + YuReversed-cy + IotifiedA-cy + YusClosedlittle-cy + YusBlended-cy + YusiotifiedClosedLittle-cy + Yn-cy + TseReversed-cy + DeSoft-cy + ElSoft-cy + EmSoft-cy + OMonocular-cy + OBinocular-cy + ODoubleMonocular-cy + Dwe-cy + Dzwe-cy + Zhwe-cy + Cche-cy + Dzze-cy + TeWithMiddleHook-cy + Twe-cy + Tswe-cy + Tsse-cy + Tche-cy + Hwe-cy + Shwe-cy + DoubleO-cy + CrossedO-cy + A-cy.ss01 + A.ss01 + AE.ss01 + Aacute.ss01 + Abreve.ss01 + Acircumflex.ss01 + Adieresis.ss01 + Agrave.ss01 + Amacron.ss01 + Aogonek.ss01 + Aring.ss01 + Atilde.ss01 + Em-cy.ss01 + Eng.ss01 + G.ss01 + Gacute.ss01 + Gbreve.ss01 + Gcircumflex.ss01 + Gcommaaccent.ss01 + Gdotaccent.ss01 + Ha-cy.ss01 + Ia-cy.ss01 + J.ss01 + Jcircumflex.ss01 + K.ss01 + Ka-cy.ss01 + Kcommaaccent.ss01 + M.ss01 + N.ss01 + Nacute.ss01 + Ncaron.ss01 + Ncommaaccent.ss01 + Ntilde.ss01 + Q.ss01 + U-cy.ss01 + Ushort-cy.ss01 + V.ss01 + W.ss01 + Wacute.ss01 + Wcircumflex.ss01 + Wdieresis.ss01 + Wgrave.ss01 + X.ss01 + Y.ss01 + Yacute.ss01 + Ycircumflex.ss01 + Ydieresis.ss01 + Z.ss01 + Zacute.ss01 + Zcaron.ss01 + Zdotaccent.ss01 + Zetailcyr.BSH + Gestrokecyr.BSH + Estailcyr.BSH + Estailcyr.CHU + Zhe-cy.ss01 + + locl.SRB + + be-cy.SRB + iegravecyr.SRB + igravecyr.SRB + + loclSRB_def + + be-cy + iegravecyr + igravecyr + + locl_BGR + + De-cy.BGR + Ef-cy.BGR + El-cy.BGR + de-cy.BGR + eiotifiedcyr.BGR + el-cy.BGR + ge-cy.BGR + hardsign-cy.BGR + ii-cy.BGR + iishort-cy.BGR + iotifieda-cy.BGR + iu-cy.BGR + ka-cy.BGR + pe-cy.BGR + sha-cy.BGR + shcha-cy.BGR + softsign-cy.BGR + te-cy.BGR + tse-cy.BGR + ve-cy.BGR + yatcyr.BGR + yusbigiotifiedcyr.BGR + ze-cy.BGR + zhe-cy.BGR + + locl_def + + De-cy + Ef-cy + El-cy + de-cy + eiotifiedcyr + el-cy + ge-cy + hardsign-cy + ii-cy + iishort-cy + iotifieda-cy + iu-cy + ka-cy + pe-cy + sha-cy + shcha-cy + softsign-cy + te-cy + tse-cy + ve-cy + yatcyr + yusbigiotifiedcyr + ze-cy + zhe-cy + + pics + + neptune + leo + virgo + bishopwhite + knightwhite + rookblack + bishopblack + knightblack + heartwhite + diamondwhite-misc + spadewhite + heart + clubwhite + crossedswords + flower + floretteblack + florettewhite + floretteoutlinedpetalledblackeight + + pics_def + + A + B + C + D + E + F + G + H + I + J + K + L + M + N + O + P + Q + R + + public.kern1.A.ss012 + + A-cy.ss01 + A.ss01 + Aacute.ss01 + Abreve.ss01 + Acircumflex.ss01 + Adieresis.ss01 + Agrave.ss01 + Amacron.ss01 + Aogonek.ss01 + Aring.ss01 + Atilde.ss01 + + public.kern1.A2 + + A + A-cy + A-cy.accented + Aacute + Abreve + Abrevecyr + Acaron + Acircumflex + Adieresis + Adieresiscyr + Agrave + Amacron + Aogonek + Aring + Atilde + De-cy.BGR + Delta + El-cy.BGR + IotifiedA-cy + Yn-cy + YusClosedlittle-cy + YusiotifiedClosedLittle-cy + Yuslittlecyr + Yuslittleiotifiedcyr + uniF50E + uniF830 + + public.kern1.AE + + AE + AE.ss01 + AEacute + Aiecyr + + public.kern1.C1 + + C + Cacute + Ccaron + Ccedilla + Ccircumflex + Cdotaccent + E-cy + Eiotifiedcyr + Es-cy + Estailcyr + Estailcyr.BSH + Estailcyr.CHU + Reversedzecyr + uniF45D + uniF526 + uniF538 + uniF875 + + public.kern1.Decyr + + Chetailcyr + De-cy + Dwe-cy + Dzze-cy + Elsharptailcyr + Eltailcyr + Emsharptailcyr + Ensharptailcyr + Entailcyr + Ishortsharptailcyr + Petailcyr + Shcha-cy + Shwe-cy + Tetsecyr + Tse-cy + Tswe-cy + uniF87B + + public.kern1.E1 + + E + E-cy.accented + Eacute + Ebreve + Ecaron + Ecircumflex + Edieresis + Edotaccent + Egrave + Emacron + Eogonek + Ie-cy + Iebrevecyr + Io-cy + Io-cy.accented + Yaecyr + uni1EBC + uniF510 + uniF512 + uniF514 + uniF833 + + public.kern1.G.ss01 + + G.ss01 + Gacute.ss01 + Gbreve.ss01 + Gcircumflex.ss01 + Gcommaaccent.ss01 + Gdotaccent.ss01 + + public.kern1.G1 + + G + Gacute + Gbreve + Gcircumflex + Gcommaaccent + Gdotaccent + + public.kern1.Ge-cy + + DeSoft-cy + ElSoft-cy + EmSoft-cy + Engecyr + Ge-cy + Gehookstrokecyr + Gestrokecyr + Gestrokecyr.BSH + Getailcyr + Gheupturn-cy + Gjecyr + TseReversed-cy + YeruBackYer-cy + uniF872 + + public.kern1.H + + Eng + Eng.ss01 + H + Hbar + Hcircumflex + I + Iacute + Ibreve + Icircumflex + Idieresis + Idotaccent + Igrave + Imacron + Iogonek + Itilde + J.ss01 + Jcircumflex.ss01 + M + M.ss01 + N + N.ss01 + Nacute + Nacute.ss01 + Ncaron + Ncaron.ss01 + Ncommaaccent + Ncommaaccent.ss01 + Ntilde + Ntilde.ss01 + + public.kern1.Hardcyr + + Hardsign-cy + Ljecyr + Njecyr + Semisoftcyr + Shhacyr + Softsign-cy + YatIotified-cy + Yatcyr + YerNeutral-cy + uniF478 + + public.kern1.J1 + + J + Jcircumflex + Jecyr + + public.kern1.K + + K + K.ss01 + Ka-cy + Ka-cy.ss01 + Kaaleutcyr + Kabashkcyr + Kastrokecyr + Kcommaaccent + Kcommaaccent.ss01 + Kjecyr + uniF86F + + public.kern1.L + + L + Lacute + Lcaron + Lcommaaccent + Lslash + + public.kern1.O + + Cheabkhcyr + Cheabkhtailcyr + CrossedO-cy + D + Dcaron + Dcroat + DoubleO-cy + Ef-cy + Ef-cy.BGR + Ereversed-cy + Ereversed-cy.accented + Ereverseddieresiscyr + Eth + Fitacyr + Iu-cy + Iu-cy.accented + O + O-cy + O-cy.accented + OBinocular-cy + ODoubleMonocular-cy + OMonocular-cy + Oacute + Obarcyr + Obardieresiscyr + Obreve + Ocircumflex + Odieresis + Odieresiscyr + Ograve + Ohungarumlaut + Omacron + Omega + Omegaroundcyr + Oslash + Oslashacute + Otilde + Q + Qacyr + Schwa + Schwacyr + Schwadieresiscyr + Sjekomicyr + uniF498 + uniF49A + uniF49C + uniF4D2 + uniF4D6 + uniF518 + uniF51A + uniF51C + uniF51E + uniF522 + uniF524 + uniF52C + uniF52E + uniF839 + + public.kern1.Oslash.alt + + Ha-cy + Ha-cy.ss01 + Hahookcyr + Lhacyr + Rhacyr + X + X.ss01 + uniF878 + + public.kern1.P + + Er-cy + Ertickcyr + P + uniF4D4 + + public.kern1.R + + R + Racute + Rcaron + Rcommaaccent + + public.kern1.S1 + + Dzwe-cy + S + Sacute + Scaron + Scedilla + Scircumflex + Scommaaccent + + public.kern1.T1 + + Koppacyr + T + Tcaron + Tcedilla + Tcommaaccent + Te-cy + Tetailcyr + Tsse-cy + Twe-cy + + public.kern1.U1 + + OmegaBroad-cy + Omegacyr + Omegatitlocyr + Otcyr + Psicyr + U + Uacute + Ubreve + Ucircumflex + Udieresis + Ugrave + Uhungarumlaut + Umacron + Uogonek + Uring + Utilde + + public.kern1.Ucyr1 + + U-cy + U-cy.accented + U-cy.ss01 + Uacutedblcyr + Udieresiscyr + Umacroncyr + Ushort-cy + Ushort-cy.ss01 + uniF4CC + + public.kern1.V + + Izhitsacyr + Izhitsagravedblcyr + V + V.ss01 + + public.kern1.W.ss011 + + W.ss01 + Wacute.ss01 + Wcircumflex.ss01 + Wdieresis.ss01 + Wgrave.ss01 + + public.kern1.W1 + + W + Wacute + Wcircumflex + Wdieresis + Wecyr + Wgrave + + public.kern1.Y.ss011 + + Y.ss01 + Yacute.ss01 + Ycircumflex.ss01 + Ydieresis.ss01 + + public.kern1.Y1 + + Ustraightcyr + Ustraightstrokecyr + Y + Yacute + Ycircumflex + Ydieresis + uniF43A + + public.kern1.Yacyr + + Cche-cy + Che-cy + Chedieresiscyr + Chekhakascyr + Chevertcyr + Dekomicyr + Elhookcyr + Em-cy + En-cy + Enhookcyr + Enhookleftcyr + I-cy + Ia-cy + Ia-cy.accented + Ia-cy.ss01 + Idieresiscyr + Ii-cy + Ii-cy.accented + Iishort-cy + Imacroncyr + Palochkacyr + Pe-cy + Sha-cy + Tche-cy + Yeru-cy + Yeru-cy.accented + Yeru-cymacron + Yi-cy + Ylongdieresiscyr + YuReversed-cy + palochkacyr + uniF45E + uniF45F + uniF4C6 + uniF4D8 + uniF528 + uniF52A + uniF532 + uniF536 + uniF87E + + public.kern1.Z1 + + Dzelo-cy + Z + Z.ss01 + Zacute + Zacute.ss01 + Zcaron + Zcaron.ss01 + Zdotaccent + Zdotaccent.ss01 + Zemlya-cy + + public.kern1.Ze-cy + + Dzeabkhcyr + Ksicyr + Ze-cy + Zedieresiscyr + Zetailcyr + Zetailcyr.BSH + uniF516 + + public.kern1.Zhe-cy + + Dzzhecyr + Katailcyr + Kaverticalstrokecyr + Xatailcyr + YusBlended-cy + Yusbigcyr + Yusbigiotifiedcyr + Zhe-cy + Zhebrevecyr + Zhedieresiscyr + Zhetailcyr + Zhwe-cy + + public.kern1.a1 + + a + aacute + abreve + acaron + acircumflex + adieresis + agrave + amacron + aogonek + aring + atilde + + public.kern1.c1 + + c + cacute + ccaron + ccedilla + ccircumflex + cdotaccent + e-cy + e-cy.hist + eiotifiedcyr + eiotifiedcyr.BGR + es-cy + estailcyr + estailcyr.BSH + estailcyr.CHU + koppacyr + reversedzecyr + sjekomicyr + uni1C83 + uniF475 + uniF527 + uniF539 + uniF876 + + public.kern1.comma1 + + comma + quotedblbase + quotesinglbase + + public.kern1.copyright1 + + copyright + registered + + public.kern1.dcaron + + dcaron + dcaron.ss01 + lcaron + + public.kern1.decyr1 + + chetailcyr + dchecyr + de-cy + de-cy.ss01 + dwe-cy + dzze-cy + elsharptailcyr + eltailcyr + emsharptailcyr + ensharptailcyr + entailcyr + ishortsharptailcyr + petailcyr + shcha-cy + shcha-cy.BGR + shhatailcyr + shwe-cy + tetsecyr + tse-cy + tse-cy.BGR + tswe-cy + uniF87C + + public.kern1.e.ss011 + + e.ss01 + eacute.ss01 + ebreve.ss01 + ecaron.ss01 + ecircumflex.ss01 + edieresis.ss01 + edotaccent.ss01 + egrave.ss01 + emacron.ss01 + eogonek.ss01 + oe.ss01 + + public.kern1.e1 + + ae + aeacute + aiecyr + cheabkhcyr + cheabkhtailcyr + e + e-cy.accented + eacute + ebreve + ecaron + ecircumflex + edieresis + edotaccent + egrave + emacron + eogonek + ie-cy + iebrevecyr + iegravecyr + iegravecyr.SRB + io-cy + io-cy.accented + uni1EBD + uniF511 + uniF513 + uniF515 + uniF834 + yaecyr + + public.kern1.el-cy.BGR + + el-cy.BGR + iotifieda-cy + iotifieda-cy.BGR + uni1C81 + yn-cy + yusClosedlittle-cy + yusiotifiedClosedLittle-cy + yuslittlecyr + yuslittleiotifiedcyr + + public.kern1.emdash1 + + emdash + endash + hyphen + + public.kern1.f1 + + f + f_f + + public.kern1.fi + + f_f_i + fi + + public.kern1.five1 + + five + five.tf + + public.kern1.four1 + + four + four.tf + + public.kern1.g.ss011 + + g.ss01 + gacute.ss01 + gbreve.ss01 + gcircumflex.ss01 + gcommaaccent.ss01 + gdotaccent.ss01 + + public.kern1.g1 + + g + gacute + gbreve + gcircumflex + gcommaaccent + gdotaccent + + public.kern1.gecyr + + deSoft-cy + elSoft-cy + emSoft-cy + engecyr + ge-cy + gehookstrokecyr + gestrokecyr + gestrokecyr.BSH + getailcyr + gheupturn-cy + gjecyr + + public.kern1.guillemotright1 + + guillemetright + guilsinglright + + public.kern1.hardcyr + + Tjekomicyr + djekomicyr + elmiddlehookcyr + enmiddlehookcyr + gehookcyr + hardsign-cy + hardsign-cy.BGR + hardsign-cy.ss01 + ljecyr + ljecyr.ss01 + ljekomicyr + njecyr + njecyr.ss01 + njekomicyr + pehookcyr + semisoftcyr + softsign-cy + softsign-cy.BGR + softsign-cy.ss01 + tewithmiddlehook-cy + tjekomicyr + uni1C86 + uni1C87 + uniF479 + yatIotified-cy + yatcyr + yatcyr.BGR + yerNeutral-cy + zjekomicyr + + public.kern1.i1 + + Djekomicyr + Ljekomicyr + Njekomicyr + Zjekomicyr + i + i-cy + iacute + icircumflex + igrave + imacron + iogonek + itilde + uniF476 + yi-cy.alt + + public.kern1.icyr1 + + cche-cy + che-cy + chedieresiscyr + chekhakascyr + chevertcyr + de-cy.BGR + el-cy + elhookcyr + em-cy + en-cy + enhookcyr + enhookleftcyr + ia-cy + ia-cy.accented + idieresiscyr + igravecyr + ii-cy + ii-cy.accented + iishort-cy + imacroncyr + mu + pe-cy + psicyr + q + qacyr + sha-cy + sha-cy.BGR + tche-cy + tseReversed-cy + ubreve + uni1C85 + uniF4C7 + uniF4D9 + uniF521 + uniF529 + uniF52B + uniF533 + uniF537 + uniF873 + uniF87F + utilde + yeru-cy + yeru-cy.accented + yeru-cy.ss01 + yeruBackyer-cy + ylongdieresiscyr + yuReversed-cy + + public.kern1.j1 + + ij + j + jcircumflex + jdotless + + public.kern1.k + + k + ka-cy + ka-cy.BGR + kaaleutcyr + kabashkcyr + kastrokecyr + kcommaaccent + kgreenlandic + kjecyr + uniF870 + + public.kern1.l + + f_f_l + fl + l + lacute + lcommaaccent + + public.kern1.l.ss011 + + Iota-cy + iota-cy + l.ss01 + lacute.ss01 + lcommaaccent.ss01 + + public.kern1.n + + Djecyr + Elmiddlehookcyr + Enmiddlehookcyr + Gehookcyr + Hwe-cy + Kahookcyr + Pehookcyr + Shhatailcyr + TeWithMiddleHook-cy + Tshecyr + a-cy.accented + a-cy.ss01 + a.ss01 + aacute.ss01 + abreve.ss01 + abrevecyr + acircumflex.ss01 + adieresis.ss01 + adieresiscyr + agrave.ss01 + aogonek.ss01 + aring.ss01 + atilde.ss01 + djecyr + el-cy.ss01 + h + hbar + hcircumflex + hwe-cy + ia-cy.ss01 + iotifieda-cy.hist + m + n + nacute + napostrophe + ncaron + ncommaaccent + ntilde + pe-cy.BGR + q.ss01 + shhacyr + te-cy.BGR + tshecyr + uniF49E + uniF49F + uniF50F + uniF831 + + public.kern1.numero + + numero + numero.ss01 + + public.kern1.o1 + + b + b.ss01 + be-cy.SRB + crossedo-cy + ef-cy + er-cy + er-cy.ss01 + ereversed-cy + ereversed-cy.accented + ereverseddieresiscyr + ertickcyr + eturned + fitacyr + iu-cy + iu-cy.BGR + iu-cy.accented + o + o-cy + o-cy.accented + oBinocular-cy + oDoubleMonocular-cy + oMonocular-cy + oacute + obarcyr + obardieresiscyr + obreve + ocircumflex + odieresis + odieresiscyr + ograve + ohungarumlaut + omacron + omegaBroad-cy + omegaroundcyr + omegatitlocyr + oslashacute + otilde + p + p.ss01 + schwacyr + schwadieresiscyr + thorn + uni1C82 + uniF499 + uniF49D + uniF4D3 + uniF4D5 + uniF4D7 + uniF519 + uniF51B + uniF51D + uniF51F + uniF523 + uniF525 + uniF52D + uniF52F + uniF83A + + public.kern1.period1 + + ellipsis + period + + public.kern1.quotedbl1 + + quotedbl + quotesingle + + public.kern1.quoteleft1 + + quotedblleft + quoteleft + + public.kern1.quoteright1 + + apostrophemod + minute + quotedblright + quoteright + second + + public.kern1.s1 + + dzwe-cy + s + sacute + scaron + scedilla + scircumflex + scommaaccent + + public.kern1.t.ss011 + + t.ss01 + tcedilla.ss01 + tcommaaccent.ss01 + + public.kern1.t1 + + t + tcaron + tcedilla + tcommaaccent + + public.kern1.te-cy + + te-cy + tetailcyr + tsse-cy + twe-cy + + public.kern1.u1 + + igravecyr.SRB + ii-cy.BGR + iishort-cy.BGR + pe-cy.SRB + te-cy.SRB + u + uacute + ucircumflex + udieresis + ugrave + uhungarumlaut + umacron + uogonek + uring + + public.kern1.uni0435.ss011 + + ie-cy.ss01 + io-cy.ss01 + + public.kern1.v + + izhitsacyr + izhitsagravedblcyr + v + + public.kern1.w1 + + omegacyr + otcyr + w + wacute + wcircumflex + wdieresis + wecyr + wgrave + + public.kern1.x + + ha-cy + hahookcyr + lhacyr + rhacyr + uniF879 + x + + public.kern1.y1 + + Ukcyr + u-cy + u-cy.accented + uacutedblcyr + udieresiscyr + ukcyr + umacroncyr + uniF43B + uniF4CD + ushort-cy + ustraightcyr + ustraightstrokecyr + y + yacute + ycircumflex + ydieresis + + public.kern1.z1 + + dzelo-cy + z + zacute + zcaron + zdotaccent + zemlya-cy + + public.kern1.ze-cy + + dzeabkhcyr + ksicyr + uniF517 + ze-cy + ze-cy.BGR + zedieresiscyr + zetailcyr + zetailcyr.BSH + + public.kern1.zhe-cy + + dzzhecyr + katailcyr + kaverticalstrokecyr + xatailcyr + yusBlended-cy + yusbigcyr + yusbigiotifiedcyr + yusbigiotifiedcyr.BGR + zhe-cy + zhe-cy.BGR + zhebrevecyr + zhedieresiscyr + zhetailcyr + zhwe-cy + + public.kern2.A.ss01 + + A.ss01 + AE.ss01 + Aacute.ss01 + Acircumflex.ss01 + Adieresis.ss01 + Agrave.ss01 + Amacron.ss01 + Aogonek.ss01 + Atilde.ss01 + + public.kern2.A.ss012 + + A-cy.ss01 + Abreve.ss01 + Aring.ss01 + + public.kern2.A2 + + A + A-cy + A-cy.accented + AE + AEacute + Aacute + Abreve + Abrevecyr + Acaron + Acircumflex + Adieresis + Adieresiscyr + Agrave + Aiecyr + Amacron + Aogonek + Aring + Atilde + De-cy.BGR + Delta + El-cy.BGR + Yn-cy + YusClosedlittle-cy + Yuslittlecyr + uniF50E + uniF830 + + public.kern2.B + + B + D + Dcaron + E + Eacute + Ecaron + Ecircumflex + Edieresis + Edotaccent + Egrave + Emacron + Eogonek + F + H + Hbar + Hcircumflex + I + Iacute + Ibreve + Icircumflex + Idieresis + Idotaccent + Igrave + Imacron + Iogonek + Itilde + K + K.ss01 + Kcommaaccent + Kcommaaccent.ss01 + L + Lacute + Lcaron + Lcommaaccent + Ldot + M + N + N.ss01 + Nacute + Nacute.ss01 + Ncaron + Ncaron.ss01 + Ncommaaccent + Ncommaaccent.ss01 + Ntilde + Ntilde.ss01 + P + R + Racute + Rcaron + Rcommaaccent + Thorn + uni1EBC + + public.kern2.Che-cy + + Cche-cy + Che-cy + Chedieresiscyr + Chekhakascyr + Chetailcyr + Chevertcyr + uniF4C6 + uniF87E + + public.kern2.De-cy + + Dchecyr + De-cy + DeSoft-cy + Dwe-cy + Dzze-cy + Dzzhecyr + TseReversed-cy + + public.kern2.El-cy + + El-cy + ElSoft-cy + Elhookcyr + Elmiddlehookcyr + Elsharptailcyr + Eltailcyr + Lhacyr + Ljekomicyr + uniF872 + + public.kern2.Eth + + Dcroat + Eth + Gestrokecyr + + public.kern2.G + + C + Cacute + Ccaron + Ccedilla + Ccircumflex + Cdotaccent + CrossedO-cy + DoubleO-cy + E-cy + Ef-cy.BGR + Es-cy + Estailcyr + Estailcyr.BSH + Estailcyr.CHU + Fitacyr + G + G.ss01 + Gacute + Gacute.ss01 + Gbreve + Gbreve.ss01 + Gcircumflex + Gcircumflex.ss01 + Gcommaaccent + Gcommaaccent.ss01 + Gdotaccent + Gdotaccent.ss01 + Haabkhcyr + Koppacyr + O + O-cy + O-cy.accented + OBinocular-cy + ODoubleMonocular-cy + OE + OMonocular-cy + Oacute + Obarcyr + Obardieresiscyr + Obreve + Ocircumflex + Odieresis + Odieresiscyr + Ograve + Ohungarumlaut + Omacron + Omegaroundcyr + Oslash + Otilde + Q + Q.ss01 + Qacyr + Schwacyr + Schwadieresiscyr + Sjekomicyr + Ukcyr + YuReversed-cy + uniF45D + uniF49A + uniF49C + uniF4D2 + uniF518 + uniF51A + uniF51C + uniF51E + uniF526 + uniF839 + uniF875 + + public.kern2.Gecyr + + Be-cy + E-cy.accented + Eiotifiedcyr + Em-cy + EmSoft-cy + Emsharptailcyr + En-cy + Engecyr + Enhookcyr + Enhookleftcyr + Enmiddlehookcyr + Ensharptailcyr + Entailcyr + Er-cy + Ertickcyr + Gehookcyr + Gestrokecyr.BSH + Getailcyr + Gheupturn-cy + Gjecyr + Hwe-cy + I-cy + Iebrevecyr + Ii-cy + Ii-cy.accented + Io-cy.accented + IotifiedA-cy + Iu-cy.accented + Ka-cy + Kaaleutcyr + Kahookcyr + Katailcyr + Kaverticalstrokecyr + Kjecyr + Njekomicyr + Palochkacyr + Pe-cy + Pehookcyr + Petailcyr + Rhacyr + Shhacyr + Shhatailcyr + Shwe-cy + Tswe-cy + Ve-cy + Yeru-cy.accented + Yeru-cymacron + Yi-cy + Ylongdieresiscyr + Yusbigiotifiedcyr + YusiotifiedClosedLittle-cy + Yuslittleiotifiedcyr + palochkacyr + uniF45E + uniF45F + uniF498 + uniF4D4 + uniF510 + uniF512 + uniF514 + uniF52C + uniF52E + uniF532 + uniF536 + uniF833 + uniF86F + uniF87B + + public.kern2.Ia-cy + + Ia-cy + Ia-cy.accented + Yaecyr + uniF4D8 + uniF528 + uniF52A + + public.kern2.Iishort-cy + + Idieresiscyr + Iishort-cy + Imacroncyr + Ishortsharptailcyr + + public.kern2.J + + J + Jcircumflex + Jecyr + + public.kern2.Oslash.alt + + Ha-cy.ss01 + Hahookcyr + X + X.ss01 + Xatailcyr + uniF878 + + public.kern2.S + + Dzwe-cy + S + Sacute + Scaron + Scedilla + Scircumflex + Scommaaccent + + public.kern2.T + + Djecyr + T + Tcaron + Tcedilla + Tche-cy + Tcommaaccent + Te-cy + TeWithMiddleHook-cy + Tetailcyr + Tetsecyr + Tjekomicyr + Tshecyr + Tsse-cy + Twe-cy + + public.kern2.U + + Iota-cy + OmegaBroad-cy + Omegacyr + Omegatitlocyr + Otcyr + Psicyr + U + Uacute + Ubreve + Ucircumflex + Udieresis + Ugrave + Uhungarumlaut + Umacron + Uogonek + Uring + Utilde + + public.kern2.Ucyr.ss01 + + U-cy.accented + U-cy.ss01 + Uacutedblcyr + Udieresiscyr + Umacroncyr + Ushort-cy.ss01 + uniF4CC + + public.kern2.V + + Izhitsacyr + Izhitsagravedblcyr + V + V.ss01 + + public.kern2.W + + W + W.ss01 + Wacute + Wacute.ss01 + Wcircumflex + Wcircumflex.ss01 + Wdieresis + Wdieresis.ss01 + Wecyr + Wgrave + Wgrave.ss01 + + public.kern2.Y + + Ustraightcyr + Ustraightstrokecyr + Y + Y.ss01 + Yacute + Yacute.ss01 + Ycircumflex + Ycircumflex.ss01 + Ydieresis + Ydieresis.ss01 + uniF43A + + public.kern2.Z + + Dzelo-cy + Z + Z.ss01 + Zacute + Zacute.ss01 + Zcaron + Zcaron.ss01 + Zdotaccent + Zdotaccent.ss01 + Zemlya-cy + + public.kern2.Ze-cy1 + + Dzeabkhcyr + Ksicyr + Ze-cy + Zedieresiscyr + Zetailcyr + Zetailcyr.BSH + Zhwe-cy + uniF516 + + public.kern2.Zhe-cy1 + + YusBlended-cy + Yusbigcyr + Zhe-cy + Zhebrevecyr + Zhedieresiscyr + Zhetailcyr + + public.kern2.a + + a + a-cy + a-cy.accented + aacute + abreve + abrevecyr + acaron + acircumflex + adieresis + adieresiscyr + ae + aeacute + agrave + aiecyr + amacron + aogonek + aring + atilde + uniF50F + uniF831 + + public.kern2.acute.case + + acute.case + hungarumlaut.case + + public.kern2.che-cy + + cche-cy + che-cy + chedieresiscyr + chekhakascyr + chetailcyr + chevertcyr + uniF4C7 + uniF87F + + public.kern2.comma + + comma + quotedblbase + quotesinglbase + + public.kern2.copyright + + copyright + registered + + public.kern2.decyr.ss01 + + de-cy.ss01 + deSoft-cy + dwe-cy + dzze-cy + dzzhecyr + tseReversed-cy + + public.kern2.el-cy + + el-cy + el-cy.ss01 + elSoft-cy + elhookcyr + elmiddlehookcyr + elsharptailcyr + eltailcyr + lhacyr + ljecyr.ss01 + ljekomicyr + uniF873 + + public.kern2.el-cy.BGR1 + + el-cy.BGR + uni1C81 + yn-cy + yusClosedlittle-cy + yuslittlecyr + + public.kern2.emdash + + emdash + endash + hyphen + + public.kern2.f + + f + f_f + f_f_i + f_f_l + fi + fl + gestrokecyr + + public.kern2.f_f.ss01 + + f_f.ss01 + f_f_i.ss01 + f_f_l.ss01 + + public.kern2.fi.ss01 + + fi.ss01 + fl.ss01 + + public.kern2.five + + five + five.tf + + public.kern2.four + + four + four.tf + + public.kern2.g + + g + gacute + gbreve + gcircumflex + gcommaaccent + gdotaccent + + public.kern2.g.ss01 + + g.ss01 + gacute.ss01 + gbreve.ss01 + gcircumflex.ss01 + gcommaaccent.ss01 + gdotaccent.ss01 + + public.kern2.guillemotleft + + guillemetleft + guilsinglleft + + public.kern2.guillemotright + + guillemetright + guilsinglright + + public.kern2.h + + eiotifiedcyr.BGR + h + hcircumflex + hwe-cy + iotifieda-cy.BGR + iu-cy.BGR + k + ka-cy.BGR + kcommaaccent + l + lacute + lcaron + lcommaaccent + ldot + shhacyr + shhatailcyr + ve-cy.BGR + yatcyr.BGR + yusbigiotifiedcyr.BGR + + public.kern2.i1 + + i + i-cy + iacute + icircumflex + igrave + imacron + iogonek + itilde + uniF476 + yi-cy.alt + + public.kern2.ia-cy + + ia-cy + ia-cy.accented + ia-cy.ss01 + uniF4D9 + uniF529 + uniF52B + yaecyr + + public.kern2.j + + enhookleftcyr + j + jcircumflex + jdotless + + public.kern2.l.ss01 + + l.ss01 + lacute.ss01 + lcaron.ss01 + lcommaaccent.ss01 + ldot.ss01 + + public.kern2.m + + eiotifiedcyr + em-cy + emSoft-cy + emsharptailcyr + en-cy + eng + engecyr + enhookcyr + enmiddlehookcyr + ensharptailcyr + entailcyr + er-cy + er-cy.ss01 + ertickcyr + ge-cy + gehookcyr + gehookstrokecyr + gestrokecyr.BSH + getailcyr + gheupturn-cy + gjecyr + idieresiscyr + idotless + igravecyr + ii-cy + ii-cy.accented + iishort-cy + imacroncyr + iotifieda-cy + ishortsharptailcyr + iu-cy + iu-cy.accented + ka-cy + kaaleutcyr + kahookcyr + katailcyr + kaverticalstrokecyr + kgreenlandic + kjecyr + m + mu + n + nacute + ncaron + ncommaaccent + njecyr.ss01 + njekomicyr + ntilde + p + p.ss01 + pe-cy + pe-cy.BGR + pehookcyr + petailcyr + psicyr + r + racute + rcaron + rcommaaccent + rhacyr + sha-cy + shcha-cy + shwe-cy + softsign-cy + softsign-cy.BGR + softsign-cy.ss01 + te-cy.BGR + tse-cy + tswe-cy + uni1C85 + uniF499 + uniF4D5 + uniF521 + uniF52D + uniF52F + uniF533 + uniF537 + uniF870 + uniF87C + ve-cy + ve-cy.ss01 + yatIotified-cy + yeru-cy + yeru-cy.accented + yeru-cy.ss01 + ylongdieresiscyr + yusbigiotifiedcyr + yusiotifiedClosedLittle-cy + yuslittleiotifiedcyr + + public.kern2.o + + Dekomicyr + Djekomicyr + a-cy.ss01 + a.ss01 + aacute.ss01 + abreve.ss01 + acircumflex.ss01 + adieresis.ss01 + agrave.ss01 + amacron.ss01 + aogonek.ss01 + aring.ss01 + atilde.ss01 + c + cacute + ccaron + ccedilla + ccircumflex + cdotaccent + cent + crossedo-cy + d + d.ss01 + dcaron + dcaron.ss01 + dcroat + dcroat.ss01 + de-cy.BGR + dekomicyr + djekomicyr + e + e-cy + e-cy.accented + e-cy.hist + e.ss01 + eacute + eacute.ss01 + ebreve + ebreve.ss01 + ecaron + ecaron.ss01 + ecircumflex + ecircumflex.ss01 + edieresis + edieresis.ss01 + edotaccent + edotaccent.ss01 + ef-cy + egrave + egrave.ss01 + emacron + emacron.ss01 + eogonek + eogonek.ss01 + es-cy + estailcyr + estailcyr.BSH + estailcyr.CHU + eth + eturned + fitacyr + haabkhcyr + ie-cy + ie-cy.ss01 + iebrevecyr + iegravecyr + iegravecyr.SRB + io-cy + io-cy.accented + io-cy.ss01 + koppacyr + o + o-cy + o-cy.accented + oBinocular-cy + oDoubleMonocular-cy + oMonocular-cy + oacute + obarcyr + obardieresiscyr + obreve + ocircumflex + odieresis + odieresiscyr + oe.ss01 + ograve + ohungarumlaut + omacron + omegaBroad-cy + omegaroundcyr + omegatitlocyr + oslashacute + otilde + q + q.ss01 + qacyr + schwacyr + schwadieresiscyr + sjekomicyr + ukcyr + uni1C82 + uni1C83 + uni1EBD + uniF475 + uniF49D + uniF4D3 + uniF511 + uniF513 + uniF515 + uniF519 + uniF51B + uniF51D + uniF51F + uniF527 + uniF834 + uniF83A + uniF876 + yuReversed-cy + + public.kern2.percent + + percent + perthousand + + public.kern2.period + + ellipsis + period + + public.kern2.quotedbl + + quotedbl + quotesingle + + public.kern2.quoteleft + + quotedblleft + quoteleft + + public.kern2.quoteright + + apostrophemod + minute + quotedblright + quoteright + second + + public.kern2.s + + dzwe-cy + s + sacute + scaron + scedilla + scircumflex + scommaaccent + + public.kern2.t + + t + t.ss01 + tbar.ss01 + tcaron + tcaron.ss01 + tcedilla + tcedilla.ss01 + tcommaaccent + tcommaaccent.ss01 + + public.kern2.tecyr + + tche-cy + te-cy.ss01 + tetailcyr + tetsecyr + tewithmiddlehook-cy + tjekomicyr + tsse-cy + twe-cy + + public.kern2.u + + igravecyr.SRB + ii-cy.BGR + iishort-cy.BGR + iota-cy + pe-cy.SRB + sha-cy.BGR + shcha-cy.BGR + te-cy.SRB + tse-cy.BGR + u + uacute + ubreve + ucircumflex + udieresis + ugrave + uhungarumlaut + umacron + uogonek + uring + utilde + + public.kern2.v1 + + izhitsacyr + izhitsagravedblcyr + v + + public.kern2.w + + omegacyr + otcyr + w + wacute + wcircumflex + wdieresis + wecyr + wgrave + + public.kern2.x + + ha-cy + hahookcyr + uniF879 + x + + public.kern2.y + + u-cy + u-cy.accented + uacutedblcyr + udieresiscyr + umacroncyr + uniF43B + uniF4CD + ustraightcyr + ustraightstrokecyr + y + yacute + ycircumflex + ydieresis + + public.kern2.z + + dzelo-cy + z + zacute + zcaron + zdotaccent + zemlya-cy + + public.kern2.ze-cy1 + + dzeabkhcyr + ksicyr + uniF517 + ze-cy + ze-cy.BGR + zedieresiscyr + zetailcyr + zetailcyr.BSH + zhwe-cy + + public.kern2.zero + + uni1C80 + zero + zero.tf + + public.kern2.zhe-cy1 + + xatailcyr + yusBlended-cy + yusbigcyr + zhe-cy + zhe-cy.BGR + zhebrevecyr + zhedieresiscyr + zhetailcyr + + ss01 + + A-cy.ss01 + A.ss01 + AE.ss01 + Aacute.ss01 + Abreve.ss01 + Acircumflex.ss01 + Adieresis.ss01 + Agrave.ss01 + Amacron.ss01 + Aogonek.ss01 + Aring.ss01 + Atilde.ss01 + Em-cy.ss01 + Eng.ss01 + G.ss01 + Gacute.ss01 + Gbreve.ss01 + Gcircumflex.ss01 + Gcommaaccent.ss01 + Gdotaccent.ss01 + Ha-cy.ss01 + Ia-cy.ss01 + J.ss01 + Jcircumflex.ss01 + K.ss01 + Ka-cy.ss01 + Kcommaaccent.ss01 + M.ss01 + N.ss01 + Nacute.ss01 + Ncaron.ss01 + Ncommaaccent.ss01 + Ntilde.ss01 + Q.ss01 + U-cy.ss01 + Ushort-cy.ss01 + V.ss01 + W.ss01 + Wacute.ss01 + Wcircumflex.ss01 + Wdieresis.ss01 + Wgrave.ss01 + X.ss01 + Y.ss01 + Yacute.ss01 + Ycircumflex.ss01 + Ydieresis.ss01 + Z.ss01 + Zacute.ss01 + Zcaron.ss01 + Zdotaccent.ss01 + Zhe-cy.ss01 + a-cy.ss01 + a.ss01 + aacute.ss01 + abreve.ss01 + acircumflex.ss01 + adieresis.ss01 + ae.ss01 + agrave.ss01 + amacron.ss01 + aogonek.ss01 + aring.ss01 + arrowdown.ss01 + arrowdown.ss01.case + arrowleft.ss01 + arrowleft.ss01.case + arrowright.ss01 + arrowright.ss01.case + arrowup.ss01 + arrowup.ss01.case + atilde.ss01 + b.ss01 + d.ss01 + dcaron.ss01 + dcroat.ss01 + de-cy.ss01 + e.ss01 + eacute.ss01 + ebreve.ss01 + ecaron.ss01 + ecircumflex.ss01 + edieresis.ss01 + edotaccent.ss01 + egrave.ss01 + el-cy.ss01 + emacron.ss01 + eogonek.ss01 + er-cy.ss01 + f.ss01 + f_f.ss01 + f_f_i.ss01 + f_f_l.ss01 + fi.ss01 + fl.ss01 + g.ss01 + gacute.ss01 + gbreve.ss01 + gcircumflex.ss01 + gcommaaccent.ss01 + gdotaccent.ss01 + germandbls.ss01 + hardsign-cy.ss01 + ia-cy.ss01 + ie-cy.ss01 + io-cy.ss01 + l.ss01 + lacute.ss01 + lcaron.ss01 + lcommaaccent.ss01 + ldot.ss01 + ljecyr.ss01 + lslash.ss01 + njecyr.ss01 + numero.ss01 + oe.ss01 + p.ss01 + q.ss01 + softsign-cy.ss01 + t.ss01 + tbar.ss01 + tcaron.ss01 + tcedilla.ss01 + tcommaaccent.ss01 + te-cy.ss01 + ve-cy.ss01 + yen.ss01 + yeru-cy.ss01 + + ss01_def + + A-cy + A + AE + Aacute + Abreve + Acircumflex + Adieresis + Agrave + Amacron + Aogonek + Aring + Atilde + Em-cy + Eng + G + Gacute + Gbreve + Gcircumflex + Gcommaaccent + Gdotaccent + Ha-cy + Ia-cy + J + Jcircumflex + K + Ka-cy + Kcommaaccent + M + N + Nacute + Ncaron + Ncommaaccent + Ntilde + Q + U-cy + Ushort-cy + V + W + Wacute + Wcircumflex + Wdieresis + Wgrave + X + Y + Yacute + Ycircumflex + Ydieresis + Z + Zacute + Zcaron + Zdotaccent + Zhe-cy + a-cy + a + aacute + abreve + acircumflex + adieresis + ae + agrave + amacron + aogonek + aring + arrowdown + arrowdown.case + arrowleft + arrowleft.case + arrowright + arrowright.case + arrowup + arrowup.case + atilde + b + d + dcaron + dcroat + de-cy + e + eacute + ebreve + ecaron + ecircumflex + edieresis + edotaccent + egrave + el-cy + emacron + eogonek + er-cy + f + f_f + f_f_i + f_f_l + fi + fl + g + gacute + gbreve + gcircumflex + gcommaaccent + gdotaccent + germandbls + hardsign-cy + ia-cy + ie-cy + io-cy + l + lacute + lcaron + lcommaaccent + ldot + ljecyr + lslash + njecyr + numero + oe + p + q + softsign-cy + t + tbar + tcaron + tcedilla + tcommaaccent + te-cy + ve-cy + yen + yeru-cy + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/kerning.plist b/sources/FixelDisplay-ExtraBold.ufo/kerning.plist new file mode 100644 index 00000000..a2a81f17 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/kerning.plist @@ -0,0 +1,2685 @@ + + + + + Zhe-cy + + public.kern2.G + -36 + + space + + public.kern2.Y + -110 + + uni1C82 + + public.kern2.y + -54 + + public.kern1.A.ss012 + + public.kern2.A.ss01 + 16 + public.kern2.A.ss012 + 8 + public.kern2.B + -2 + public.kern2.G + -28 + public.kern2.T + -64 + public.kern2.U + -20 + public.kern2.Ucyr.ss01 + -56 + public.kern2.V + -54 + public.kern2.W + -44 + public.kern2.Y + -91 + public.kern2.a + -18 + public.kern2.comma + 8 + public.kern2.decyr.ss01 + 8 + public.kern2.emdash + -18 + public.kern2.l.ss01 + -16 + public.kern2.m + -8 + public.kern2.o + -20 + public.kern2.quotedbl + -64 + public.kern2.quoteright + -26 + public.kern2.t + -32 + public.kern2.tecyr + -46 + public.kern2.u + -12 + public.kern2.w + -22 + public.kern2.x + 9 + public.kern2.y + -42 + + public.kern1.A2 + + public.kern2.A2 + 32 + public.kern2.G + -28 + public.kern2.J + 26 + public.kern2.Oslash.alt + 16 + public.kern2.S + 12 + public.kern2.T + -64 + public.kern2.U + -18 + public.kern2.Ucyr.ss01 + -44 + public.kern2.V + -48 + public.kern2.W + -48 + public.kern2.Y + -90 + public.kern2.Z + 24 + public.kern2.a + -1 + public.kern2.comma + 16 + public.kern2.decyr.ss01 + 17 + public.kern2.emdash + -2 + public.kern2.g + 17 + public.kern2.j + 4 + public.kern2.o + -10 + public.kern2.period + 38 + public.kern2.quotedbl + -50 + public.kern2.quoteright + -50 + public.kern2.t + -18 + public.kern2.tecyr + -30 + public.kern2.u + -9 + public.kern2.w + -20 + public.kern2.x + 8 + public.kern2.y + -32 + public.kern2.z + 10 + + public.kern1.C1 + + public.kern2.A.ss01 + 10 + public.kern2.A2 + -8 + public.kern2.B + -8 + public.kern2.G + -18 + public.kern2.J + 16 + public.kern2.Oslash.alt + -15 + public.kern2.S + 10 + public.kern2.T + 2 + public.kern2.U + -8 + public.kern2.Ucyr.ss01 + -8 + public.kern2.V + 2 + public.kern2.Y + -20 + public.kern2.Z + 8 + public.kern2.comma + -2 + public.kern2.emdash + -20 + public.kern2.f + -8 + public.kern2.g + -17 + public.kern2.g.ss01 + -16 + public.kern2.j + 31 + public.kern2.o + -18 + public.kern2.period + -4 + public.kern2.quoteright + -16 + public.kern2.s + -8 + public.kern2.t + -8 + public.kern2.tecyr + -8 + public.kern2.u + -9 + public.kern2.w + -16 + public.kern2.x + -17 + public.kern2.y + -16 + + public.kern1.Decyr + + public.kern2.A.ss012 + 18 + public.kern2.A2 + 8 + public.kern2.G + -10 + public.kern2.T + -28 + public.kern2.Ucyr.ss01 + -30 + public.kern2.a + -2 + public.kern2.comma + 48 + public.kern2.decyr.ss01 + 32 + public.kern2.emdash + -18 + public.kern2.o + -10 + public.kern2.period + 28 + public.kern2.quoteright + -28 + public.kern2.tecyr + -28 + public.kern2.y + -16 + + public.kern1.E1 + + public.kern2.A.ss012 + 2 + public.kern2.G + -9 + public.kern2.J + 10 + public.kern2.a + -8 + public.kern2.f + -16 + public.kern2.g.ss01 + -8 + public.kern2.i1 + 8 + public.kern2.o + -10 + public.kern2.period + 4 + public.kern2.quoteright + -8 + public.kern2.t + -8 + public.kern2.w + -17 + public.kern2.y + -18 + + public.kern1.G.ss01 + + public.kern2.A.ss01 + 10 + public.kern2.G + -24 + public.kern2.T + -18 + public.kern2.U + -24 + public.kern2.V + -44 + public.kern2.W + -34 + public.kern2.Y + -44 + public.kern2.Z + -8 + public.kern2.l.ss01 + -8 + public.kern2.o + -8 + public.kern2.quotedbl + -50 + public.kern2.quoteright + -36 + public.kern2.t + -9 + public.kern2.w + -29 + public.kern2.y + -28 + public.kern2.z + 8 + + public.kern1.G1 + + public.kern2.G + 2 + public.kern2.J + 16 + public.kern2.T + -10 + public.kern2.V + -28 + public.kern2.W + -18 + public.kern2.Y + -44 + public.kern2.comma + 2 + public.kern2.emdash + 4 + public.kern2.period + 10 + public.kern2.quotedbl + -16 + public.kern2.quoteright + -8 + public.kern2.w + -8 + public.kern2.y + -16 + public.kern2.z + 8 + + public.kern1.Ge-cy + + public.kern2.A.ss012 + -62 + public.kern2.A2 + -62 + public.kern2.G + -18 + public.kern2.Gecyr + 18 + public.kern2.T + 20 + public.kern2.Ucyr.ss01 + 6 + public.kern2.a + -92 + public.kern2.comma + -84 + public.kern2.decyr.ss01 + -32 + public.kern2.emdash + -76 + public.kern2.guillemotright + -24 + public.kern2.i1 + 48 + public.kern2.m + -36 + public.kern2.o + -78 + public.kern2.period + -114 + public.kern2.quoteright + 2 + public.kern2.x + -10 + public.kern2.y + -10 + + public.kern1.H + + public.kern2.Gecyr + 1 + public.kern2.comma + -4 + public.kern2.i1 + 16 + public.kern2.j + 35 + public.kern2.quoteright + -4 + public.kern2.s + -8 + public.kern2.y + -8 + + public.kern1.Hardcyr + + public.kern2.A.ss012 + 18 + public.kern2.Oslash.alt + -19 + public.kern2.T + -94 + public.kern2.Ucyr.ss01 + -62 + public.kern2.comma + -4 + public.kern2.emdash + 16 + public.kern2.period + -2 + public.kern2.quotedbl + -120 + public.kern2.quoteright + -16 + public.kern2.tecyr + -22 + public.kern2.x + -28 + public.kern2.y + -30 + + public.kern1.J1 + + public.kern2.A.ss012 + 9 + public.kern2.A2 + -10 + public.kern2.J + 8 + public.kern2.W + 8 + public.kern2.Z + -2 + public.kern2.comma + -30 + public.kern2.i1 + 8 + public.kern2.j + 8 + public.kern2.period + -6 + public.kern2.s + -8 + public.kern2.y + -8 + + public.kern1.K + + public.kern2.A.ss01 + 12 + public.kern2.A2 + 16 + public.kern2.G + -56 + public.kern2.J + 14 + public.kern2.S + -8 + public.kern2.a + -10 + public.kern2.comma + 8 + public.kern2.emdash + -52 + public.kern2.f + -25 + public.kern2.g + -4 + public.kern2.i1 + 32 + public.kern2.j + -2 + public.kern2.l.ss01 + -8 + public.kern2.o + -40 + public.kern2.period + 2 + public.kern2.quoteright + -38 + public.kern2.t + -38 + public.kern2.tecyr + -72 + public.kern2.u + -30 + public.kern2.w + -46 + public.kern2.y + -40 + + public.kern1.L + + public.kern2.A.ss01 + 18 + public.kern2.A2 + 22 + public.kern2.G + -32 + public.kern2.J + 16 + public.kern2.T + -98 + public.kern2.U + -24 + public.kern2.V + -100 + public.kern2.W + -52 + public.kern2.Y + -130 + public.kern2.Z + 8 + public.kern2.a + -10 + public.kern2.emdash + -32 + public.kern2.f + -16 + public.kern2.guillemotleft + -24 + public.kern2.guillemotright + 8 + public.kern2.j + 6 + public.kern2.o + -16 + public.kern2.period + 16 + public.kern2.quotedbl + -90 + public.kern2.quoteright + -86 + public.kern2.t + -28 + public.kern2.u + -10 + public.kern2.w + -52 + public.kern2.x + -8 + public.kern2.y + -82 + public.kern2.z + 10 + + public.kern1.O + + Zhe-cy + -36 + public.kern2.A.ss01 + -1 + public.kern2.A.ss012 + -11 + public.kern2.A2 + -28 + public.kern2.J + -24 + public.kern2.Oslash.alt + -46 + public.kern2.S + -16 + public.kern2.T + -32 + public.kern2.Ucyr.ss01 + -38 + public.kern2.V + -39 + public.kern2.W + -18 + public.kern2.Y + -64 + public.kern2.Z + -36 + public.kern2.a + -10 + public.kern2.comma + -48 + public.kern2.decyr.ss01 + -12 + public.kern2.emdash + 4 + public.kern2.j + -2 + public.kern2.period + -34 + public.kern2.quotedbl + -21 + public.kern2.quoteright + -2 + public.kern2.s + -8 + public.kern2.tecyr + 8 + public.kern2.w + -16 + public.kern2.x + -18 + public.kern2.y + -8 + public.kern2.z + -10 + + public.kern1.Oslash.alt + + public.kern2.A.ss01 + 16 + public.kern2.A.ss012 + 12 + public.kern2.A2 + 8 + public.kern2.G + -46 + public.kern2.J + 26 + public.kern2.S + -10 + public.kern2.Ucyr.ss01 + 12 + public.kern2.W + 12 + public.kern2.a + -10 + public.kern2.comma + 10 + public.kern2.decyr.ss01 + 8 + public.kern2.emdash + -30 + public.kern2.f + -1 + public.kern2.g + -1 + public.kern2.i1 + 32 + public.kern2.j + -2 + public.kern2.o + -30 + public.kern2.period + 2 + public.kern2.quoteright + -56 + public.kern2.s + -1 + public.kern2.t + -18 + public.kern2.tecyr + -44 + public.kern2.u + -10 + public.kern2.w + -20 + public.kern2.x + 8 + public.kern2.y + -28 + + public.kern1.P + + public.kern2.A.ss01 + -40 + public.kern2.A.ss012 + -40 + public.kern2.A2 + -54 + public.kern2.B + -4 + public.kern2.J + -58 + public.kern2.Oslash.alt + -46 + public.kern2.T + -8 + public.kern2.Ucyr.ss01 + -28 + public.kern2.V + -17 + public.kern2.W + -1 + public.kern2.Y + -26 + public.kern2.Z + -24 + public.kern2.a + -20 + public.kern2.comma + -102 + public.kern2.decyr.ss01 + -38 + public.kern2.emdash + -18 + public.kern2.fi.ss01 + 8 + public.kern2.g + -10 + public.kern2.g.ss01 + -12 + public.kern2.j + -14 + public.kern2.o + -22 + public.kern2.period + -146 + public.kern2.quotedbl + -4 + public.kern2.s + -12 + public.kern2.t + 16 + public.kern2.tecyr + 9 + public.kern2.x + -1 + public.kern2.z + -2 + + public.kern1.R + + public.kern2.A.ss01 + 2 + public.kern2.G + -28 + public.kern2.J + 2 + public.kern2.S + -16 + public.kern2.T + -28 + public.kern2.U + -12 + public.kern2.V + -27 + public.kern2.W + -9 + public.kern2.Y + -44 + public.kern2.a + -1 + public.kern2.emdash + -26 + public.kern2.f + -8 + public.kern2.j + -10 + public.kern2.m + -8 + public.kern2.o + -36 + public.kern2.period + 8 + public.kern2.quotedbl + -28 + public.kern2.quoteright + -8 + public.kern2.s + -9 + public.kern2.t + -9 + public.kern2.u + -20 + public.kern2.w + -17 + public.kern2.y + -25 + + public.kern1.S1 + + public.kern2.A.ss01 + 18 + public.kern2.G + -8 + public.kern2.J + 19 + public.kern2.Oslash.alt + -17 + public.kern2.T + -25 + public.kern2.V + -18 + public.kern2.W + -18 + public.kern2.Y + -30 + public.kern2.Z + -2 + public.kern2.emdash + 18 + public.kern2.f + -16 + public.kern2.g + -4 + public.kern2.i1 + 8 + public.kern2.j + -10 + public.kern2.quotedbl + -22 + public.kern2.quoteright + -14 + public.kern2.t + -9 + public.kern2.w + -14 + public.kern2.x + -17 + public.kern2.y + -22 + + public.kern1.T1 + + public.kern2.A.ss01 + -54 + public.kern2.A.ss012 + -55 + public.kern2.A2 + -64 + public.kern2.G + -32 + public.kern2.J + -62 + public.kern2.S + -2 + public.kern2.T + 24 + public.kern2.V + 4 + public.kern2.W + 12 + public.kern2.Y + 2 + public.kern2.a + -60 + public.kern2.comma + -74 + public.kern2.decyr.ss01 + -64 + public.kern2.emdash + -86 + public.kern2.f + -10 + public.kern2.g + -70 + public.kern2.g.ss01 + -56 + public.kern2.guillemotleft + -70 + public.kern2.guillemotright + -62 + public.kern2.i1 + -12 + public.kern2.j + -20 + public.kern2.m + -28 + public.kern2.o + -80 + public.kern2.period + -102 + public.kern2.quotedbl + 28 + public.kern2.quoteright + -26 + public.kern2.s + -56 + public.kern2.tecyr + -28 + public.kern2.u + -27 + public.kern2.w + -28 + public.kern2.x + -20 + public.kern2.y + -20 + public.kern2.z + -26 + + public.kern1.U1 + + public.kern2.A.ss01 + -2 + public.kern2.A2 + -18 + public.kern2.J + -12 + public.kern2.Z + -12 + public.kern2.comma + -30 + public.kern2.i1 + 8 + public.kern2.j + 8 + public.kern2.period + -6 + public.kern2.quoteright + -16 + public.kern2.z + -10 + + public.kern1.Ucyr1 + + public.kern2.A.ss012 + -52 + public.kern2.A2 + -60 + public.kern2.G + -38 + public.kern2.T + 10 + public.kern2.a + -50 + public.kern2.comma + -94 + public.kern2.decyr.ss01 + -50 + public.kern2.emdash + -58 + public.kern2.guillemotright + -60 + public.kern2.i1 + 52 + public.kern2.m + -44 + public.kern2.o + -62 + public.kern2.period + -106 + public.kern2.tecyr + -12 + public.kern2.x + -20 + public.kern2.y + -30 + + public.kern1.V + + public.kern2.A.ss01 + -56 + public.kern2.A.ss012 + -52 + public.kern2.A2 + -57 + public.kern2.G + -39 + public.kern2.J + -78 + public.kern2.Oslash.alt + -2 + public.kern2.S + -14 + public.kern2.T + 4 + public.kern2.W + 16 + public.kern2.Z + -14 + public.kern2.a + -50 + public.kern2.comma + -68 + public.kern2.emdash + -56 + public.kern2.f + -1 + public.kern2.g + -32 + public.kern2.g.ss01 + -56 + public.kern2.guillemotleft + -42 + public.kern2.guillemotright + -30 + public.kern2.i1 + 40 + public.kern2.j + -12 + public.kern2.m + -50 + public.kern2.o + -63 + public.kern2.period + -106 + public.kern2.quotedbl + 18 + public.kern2.quoteright + -10 + public.kern2.s + -40 + public.kern2.t + -10 + public.kern2.u + -50 + public.kern2.w + -18 + public.kern2.x + -20 + public.kern2.y + -20 + public.kern2.z + -20 + + public.kern1.W.ss011 + + public.kern2.A.ss01 + -36 + public.kern2.A.ss012 + -34 + public.kern2.A2 + -100 + public.kern2.G + -16 + public.kern2.J + -46 + public.kern2.S + -8 + public.kern2.T + 12 + public.kern2.V + 10 + public.kern2.W + 16 + public.kern2.Y + 16 + public.kern2.Z + -10 + public.kern2.a + -44 + public.kern2.comma + -64 + public.kern2.emdash + -28 + public.kern2.g + -19 + public.kern2.g.ss01 + -34 + public.kern2.guillemotright + -10 + public.kern2.i1 + 54 + public.kern2.m + -18 + public.kern2.o + -32 + public.kern2.period + -88 + public.kern2.quotedbl + 18 + public.kern2.s + -26 + public.kern2.u + -26 + public.kern2.w + -19 + public.kern2.y + -3 + public.kern2.z + -18 + + public.kern1.W1 + + public.kern2.A.ss01 + -40 + public.kern2.A.ss012 + -34 + public.kern2.A2 + -48 + public.kern2.G + -18 + public.kern2.J + -52 + public.kern2.S + -9 + public.kern2.T + 4 + public.kern2.V + 8 + public.kern2.Y + 8 + public.kern2.Z + -10 + public.kern2.a + -48 + public.kern2.comma + -40 + public.kern2.emdash + -20 + public.kern2.g + -22 + public.kern2.guillemotleft + -24 + public.kern2.guillemotright + -16 + public.kern2.i1 + -6 + public.kern2.j + -4 + public.kern2.m + -22 + public.kern2.o + -41 + public.kern2.period + -64 + public.kern2.quotedbl + 16 + public.kern2.quoteright + -12 + public.kern2.s + -20 + public.kern2.u + -28 + public.kern2.w + -9 + public.kern2.x + -2 + public.kern2.y + -10 + public.kern2.z + -28 + + public.kern1.Y.ss011 + + public.kern2.A.ss01 + -78 + public.kern2.A.ss012 + -92 + public.kern2.G + -54 + public.kern2.S + -13 + public.kern2.W + 12 + public.kern2.Y + 24 + public.kern2.Z + -22 + public.kern2.a + -50 + public.kern2.comma + -124 + public.kern2.emdash + -106 + public.kern2.g.ss01 + -88 + public.kern2.i1 + 50 + public.kern2.m + -70 + public.kern2.o + -120 + public.kern2.period + -138 + public.kern2.quoteright + -20 + public.kern2.s + -75 + public.kern2.t + -24 + public.kern2.u + -60 + public.kern2.w + -40 + public.kern2.x + -32 + public.kern2.y + -24 + public.kern2.z + -32 + + public.kern1.Y1 + + public.kern2.A.ss012 + -94 + public.kern2.A2 + -90 + public.kern2.B + -8 + public.kern2.G + -64 + public.kern2.J + -72 + public.kern2.S + -38 + public.kern2.T + 10 + public.kern2.V + 20 + public.kern2.W + 8 + public.kern2.Y + 25 + public.kern2.a + -78 + public.kern2.comma + -96 + public.kern2.emdash + -108 + public.kern2.f + -30 + public.kern2.g + -76 + public.kern2.guillemotleft + -96 + public.kern2.guillemotright + -68 + public.kern2.i1 + 44 + public.kern2.j + -6 + public.kern2.m + -80 + public.kern2.o + -110 + public.kern2.period + -148 + public.kern2.quotedbl + 26 + public.kern2.quoteright + -36 + public.kern2.s + -86 + public.kern2.t + -18 + public.kern2.u + -70 + public.kern2.w + -54 + public.kern2.x + -48 + public.kern2.y + -48 + public.kern2.z + -50 + + public.kern1.Yacyr + + public.kern2.A.ss012 + 8 + public.kern2.i1 + 8 + + public.kern1.Z1 + + public.kern2.A.ss01 + 36 + public.kern2.A.ss012 + 28 + public.kern2.A2 + 8 + public.kern2.B + 8 + public.kern2.G + -34 + public.kern2.J + 24 + public.kern2.Oslash.alt + -8 + public.kern2.S + 16 + public.kern2.T + 2 + public.kern2.V + 8 + public.kern2.Z + 16 + public.kern2.a + 6 + public.kern2.comma + 30 + public.kern2.emdash + -22 + public.kern2.i1 + 34 + public.kern2.j + 16 + public.kern2.o + -14 + public.kern2.period + 26 + public.kern2.quotedbl + 8 + public.kern2.quoteright + -32 + public.kern2.s + 6 + public.kern2.t + -10 + public.kern2.u + -4 + public.kern2.w + -20 + public.kern2.y + -10 + public.kern2.z + 24 + + public.kern1.a1 + + public.kern2.A.ss012 + 18 + public.kern2.G + -1 + public.kern2.J + 8 + public.kern2.S + -4 + public.kern2.T + -70 + public.kern2.U + -8 + public.kern2.V + -63 + public.kern2.W + -40 + public.kern2.Y + -96 + public.kern2.comma + -2 + public.kern2.f + -5 + public.kern2.j + -4 + public.kern2.quotedbl + -30 + public.kern2.quoteright + -28 + public.kern2.t + -9 + public.kern2.u + -10 + public.kern2.w + -27 + public.kern2.y + -20 + public.kern2.z + 12 + + public.kern1.c1 + + public.kern2.A.ss012 + 16 + public.kern2.A2 + 12 + public.kern2.G + 2 + public.kern2.J + 16 + public.kern2.Oslash.alt + -8 + public.kern2.T + -50 + public.kern2.Ucyr.ss01 + -34 + public.kern2.V + -38 + public.kern2.W + -20 + public.kern2.Y + -50 + public.kern2.Z + 8 + public.kern2.a + 8 + public.kern2.comma + -2 + public.kern2.emdash + -24 + public.kern2.g + 2 + public.kern2.o + -8 + public.kern2.period + 4 + public.kern2.quotedbl + -14 + public.kern2.quoteright + -4 + public.kern2.t + 8 + + public.kern1.comma1 + + public.kern2.A.ss01 + 8 + public.kern2.A2 + 8 + public.kern2.G + -30 + public.kern2.J + 28 + public.kern2.T + -78 + public.kern2.U + -6 + public.kern2.V + -72 + public.kern2.W + -38 + public.kern2.Y + -108 + public.kern2.Z + 24 + public.kern2.a + -4 + public.kern2.f + -16 + public.kern2.five + -4 + public.kern2.g.ss01 + 6 + public.kern2.h + -4 + public.kern2.i1 + -4 + public.kern2.j + 8 + public.kern2.m + -4 + public.kern2.o + -8 + public.kern2.t + -30 + public.kern2.u + -6 + public.kern2.w + -14 + public.kern2.x + -4 + public.kern2.y + -46 + public.kern2.z + 6 + public.kern2.zero + -6 + + public.kern1.dcaron + + public.kern2.B + 94 + public.kern2.G + 24 + public.kern2.J + 8 + public.kern2.Oslash.alt + 124 + public.kern2.S + 84 + public.kern2.T + 132 + public.kern2.U + 102 + public.kern2.V + 128 + public.kern2.W + 136 + public.kern2.Y + 150 + public.kern2.Z + 112 + public.kern2.a + 24 + public.kern2.f + 7 + public.kern2.fi.ss01 + 86 + public.kern2.g + 16 + public.kern2.g.ss01 + 16 + public.kern2.h + 104 + public.kern2.i1 + 104 + public.kern2.j + 94 + public.kern2.l.ss01 + 98 + public.kern2.m + 24 + public.kern2.o + 16 + public.kern2.s + 25 + public.kern2.t + 72 + public.kern2.u + 24 + public.kern2.w + 30 + public.kern2.x + 28 + public.kern2.y + 28 + public.kern2.z + 88 + + public.kern1.decyr1 + + public.kern2.A.ss012 + 24 + public.kern2.A2 + 18 + public.kern2.G + -16 + public.kern2.Oslash.alt + 8 + public.kern2.T + -56 + public.kern2.Ucyr.ss01 + -24 + public.kern2.comma + 28 + public.kern2.decyr.ss01 + 17 + public.kern2.emdash + -18 + public.kern2.o + -12 + public.kern2.period + 18 + public.kern2.quoteright + -28 + public.kern2.tecyr + -28 + public.kern2.x + 8 + public.kern2.y + -8 + + public.kern1.e.ss011 + + public.kern2.Oslash.alt + -10 + public.kern2.T + -64 + public.kern2.V + -50 + public.kern2.W + -24 + public.kern2.Y + -80 + public.kern2.comma + -6 + public.kern2.emdash + -2 + public.kern2.o + -8 + public.kern2.quotedbl + -24 + public.kern2.w + -16 + public.kern2.y + -16 + + public.kern1.e1 + + public.kern2.A.ss012 + 18 + public.kern2.A2 + -1 + public.kern2.G + 8 + public.kern2.Oslash.alt + -20 + public.kern2.T + -64 + public.kern2.Ucyr.ss01 + -54 + public.kern2.V + -60 + public.kern2.W + -34 + public.kern2.Y + -94 + public.kern2.Z + -10 + public.kern2.comma + -8 + public.kern2.j + -12 + public.kern2.period + -12 + public.kern2.quotedbl + -22 + public.kern2.quoteright + -8 + public.kern2.w + -18 + public.kern2.x + -20 + public.kern2.y + -28 + public.kern2.z + -2 + + public.kern1.emdash1 + + public.kern2.A.ss01 + 10 + public.kern2.A.ss012 + 8 + public.kern2.A2 + -2 + public.kern2.G + 4 + public.kern2.J + -10 + public.kern2.Oslash.alt + -28 + public.kern2.S + -14 + public.kern2.T + -86 + public.kern2.Ucyr.ss01 + -50 + public.kern2.V + -56 + public.kern2.W + -20 + public.kern2.Y + -108 + public.kern2.Z + -10 + public.kern2.decyr.ss01 + -14 + public.kern2.f + -24 + public.kern2.five + -20 + public.kern2.four + 4 + public.kern2.g.ss01 + 2 + public.kern2.j + -4 + public.kern2.tecyr + -40 + public.kern2.x + -36 + public.kern2.y + -42 + public.kern2.z + -6 + + public.kern1.f1 + + public.kern2.A.ss012 + -10 + public.kern2.A2 + -28 + public.kern2.J + -44 + public.kern2.S + 10 + public.kern2.T + 18 + public.kern2.V + 2 + public.kern2.Y + 10 + public.kern2.a + -13 + public.kern2.comma + -48 + public.kern2.emdash + -28 + public.kern2.f + 2 + public.kern2.g + -2 + public.kern2.h + 8 + public.kern2.i1 + 16 + public.kern2.o + -14 + public.kern2.period + -54 + public.kern2.quotedbl + 36 + public.kern2.quoteright + 28 + public.kern2.s + -4 + public.kern2.t + 29 + public.kern2.w + 8 + public.kern2.x + 8 + public.kern2.y + 12 + + public.kern1.five1 + + public.kern2.comma + -30 + public.kern2.five + -24 + public.kern2.i1 + 16 + public.kern2.period + -11 + + public.kern1.four1 + + public.kern2.emdash + -4 + public.kern2.five + 10 + public.kern2.four + 26 + public.kern2.period + 16 + public.kern2.quotedbl + -20 + + public.kern1.g.ss011 + + public.kern2.A.ss01 + 16 + public.kern2.V + -4 + public.kern2.W + 16 + public.kern2.Y + -24 + public.kern2.comma + 26 + public.kern2.g.ss01 + 16 + public.kern2.h + 8 + public.kern2.i1 + 8 + public.kern2.j + 48 + public.kern2.l.ss01 + 16 + public.kern2.m + 16 + public.kern2.o + 8 + public.kern2.quotedbl + 24 + public.kern2.quoteright + 34 + public.kern2.s + 8 + public.kern2.t + 32 + public.kern2.u + 8 + public.kern2.w + 8 + public.kern2.x + 24 + public.kern2.y + 16 + public.kern2.z + 16 + + public.kern1.g1 + + public.kern2.A2 + 17 + public.kern2.T + -16 + public.kern2.V + -20 + public.kern2.W + -2 + public.kern2.Y + -30 + public.kern2.a + -8 + public.kern2.comma + 18 + public.kern2.f + 2 + public.kern2.i1 + 8 + public.kern2.j + 51 + public.kern2.m + -8 + public.kern2.o + -4 + public.kern2.quotedbl + -2 + public.kern2.s + -8 + public.kern2.w + -8 + public.kern2.y + -6 + + public.kern1.gecyr + + public.kern2.A2 + -26 + public.kern2.G + 8 + public.kern2.Oslash.alt + -16 + public.kern2.T + -24 + public.kern2.Ucyr.ss01 + -36 + public.kern2.a + -16 + public.kern2.comma + -60 + public.kern2.decyr.ss01 + -30 + public.kern2.emdash + -50 + public.kern2.i1 + 32 + public.kern2.o + -16 + public.kern2.period + -104 + public.kern2.quoteright + 6 + public.kern2.x + 2 + public.kern2.y + 4 + + public.kern1.guillemotright1 + + public.kern2.J + -16 + public.kern2.T + -70 + public.kern2.V + -42 + public.kern2.W + -24 + public.kern2.Y + -96 + + public.kern1.hardcyr + + public.kern2.Oslash.alt + -10 + public.kern2.T + -78 + public.kern2.Ucyr.ss01 + -44 + public.kern2.period + -2 + public.kern2.quotedbl + -72 + public.kern2.quoteright + -36 + public.kern2.tecyr + -74 + public.kern2.x + -20 + public.kern2.y + -58 + + public.kern1.i1 + + public.kern2.B + 8 + public.kern2.G + -8 + public.kern2.Gecyr + 8 + public.kern2.Oslash.alt + 32 + public.kern2.T + -12 + public.kern2.U + 8 + public.kern2.Ucyr.ss01 + 40 + public.kern2.V + 44 + public.kern2.W + 3 + public.kern2.Y + 52 + public.kern2.Z + 24 + public.kern2.h + 21 + public.kern2.i1 + 5 + public.kern2.percent + 24 + public.kern2.quotedbl + 22 + public.kern2.quoteright + -18 + + public.kern1.icyr1 + + tenmillionscomb-cy + 22 + public.kern2.A.ss012 + 8 + public.kern2.J + 8 + public.kern2.T + -28 + public.kern2.Ucyr.ss01 + -44 + public.kern2.V + -10 + public.kern2.W + -20 + public.kern2.Y + -80 + public.kern2.j + 24 + public.kern2.quoteright + -4 + + public.kern1.j1 + + public.kern2.T + -16 + public.kern2.i1 + 8 + public.kern2.j + 16 + public.kern2.quoteright + -4 + public.kern2.z + 8 + + public.kern1.k + + public.kern2.A.ss01 + 16 + public.kern2.A.ss012 + 18 + public.kern2.A2 + 18 + public.kern2.G + -18 + public.kern2.J + 18 + public.kern2.T + -12 + public.kern2.Ucyr.ss01 + -20 + public.kern2.V + -24 + public.kern2.W + -20 + public.kern2.Y + -44 + public.kern2.a + -10 + public.kern2.emdash + -48 + public.kern2.o + -44 + public.kern2.quoteright + -16 + public.kern2.s + -8 + public.kern2.t + 8 + public.kern2.x + 18 + public.kern2.z + 8 + + public.kern1.l + + public.kern2.i1 + 8 + public.kern2.j + 20 + public.kern2.quoteright + -4 + public.kern2.s + 4 + + public.kern1.l.ss011 + + public.kern2.A.ss01 + 16 + public.kern2.G + -8 + public.kern2.T + -56 + public.kern2.U + -8 + public.kern2.V + -48 + public.kern2.W + -40 + public.kern2.Y + -40 + public.kern2.comma + 4 + public.kern2.f + -40 + public.kern2.fi.ss01 + -16 + public.kern2.g.ss01 + 8 + public.kern2.j + -4 + public.kern2.o + -8 + public.kern2.period + 4 + public.kern2.quoteright + -34 + public.kern2.t + -25 + public.kern2.w + -46 + public.kern2.y + -54 + + public.kern1.n + + public.kern2.A.ss01 + 8 + public.kern2.A.ss012 + 8 + public.kern2.G + -8 + public.kern2.J + 16 + public.kern2.T + -61 + public.kern2.Ucyr.ss01 + -54 + public.kern2.V + -60 + public.kern2.W + -40 + public.kern2.Y + -100 + public.kern2.g + 4 + public.kern2.guillemotright + 8 + public.kern2.j + -4 + public.kern2.quotedbl + -28 + public.kern2.quoteright + -12 + public.kern2.w + -17 + public.kern2.y + -24 + + public.kern1.numero + + public.kern2.i1 + 32 + + public.kern1.o1 + + public.kern2.A.ss01 + 8 + public.kern2.A.ss012 + 8 + public.kern2.A2 + -10 + public.kern2.J + -4 + public.kern2.Oslash.alt + -30 + public.kern2.S + -18 + public.kern2.T + -80 + public.kern2.Ucyr.ss01 + -50 + public.kern2.V + -63 + public.kern2.W + -41 + public.kern2.Y + -108 + public.kern2.Z + -14 + public.kern2.a + -1 + public.kern2.comma + -34 + public.kern2.emdash + 8 + public.kern2.j + -12 + public.kern2.period + -18 + public.kern2.quotedbl + -24 + public.kern2.quoteright + -16 + public.kern2.s + -10 + public.kern2.t + -4 + public.kern2.tecyr + -22 + public.kern2.w + -19 + public.kern2.x + -25 + public.kern2.y + -30 + public.kern2.z + -12 + + public.kern1.period1 + + public.kern2.A.ss01 + 4 + public.kern2.A.ss012 + 22 + public.kern2.A2 + 38 + public.kern2.G + -34 + public.kern2.J + 44 + public.kern2.Oslash.alt + 10 + public.kern2.S + 8 + public.kern2.T + -102 + public.kern2.U + -6 + public.kern2.Ucyr.ss01 + -20 + public.kern2.V + -106 + public.kern2.W + -64 + public.kern2.Y + -148 + public.kern2.Z + 18 + public.kern2.f + -24 + public.kern2.five + -2 + public.kern2.four + 8 + public.kern2.g.ss01 + 10 + public.kern2.j + 4 + public.kern2.o + -18 + public.kern2.quotedbl + -32 + public.kern2.t + -30 + public.kern2.tecyr + -68 + public.kern2.u + -14 + public.kern2.w + -38 + public.kern2.y + -75 + public.kern2.z + 8 + public.kern2.zero + -18 + + public.kern1.quotedbl1 + + public.kern2.A.ss01 + -54 + public.kern2.A.ss012 + -46 + public.kern2.A2 + -50 + public.kern2.G + -21 + public.kern2.J + -56 + public.kern2.T + 30 + public.kern2.V + 18 + public.kern2.W + 16 + public.kern2.Y + 26 + public.kern2.Z + -2 + public.kern2.a + -30 + public.kern2.decyr.ss01 + -40 + public.kern2.four + -68 + public.kern2.g + -17 + public.kern2.g.ss01 + -24 + public.kern2.i1 + 22 + public.kern2.j + -4 + public.kern2.o + -25 + public.kern2.period + -34 + public.kern2.s + -18 + public.kern2.t + 16 + public.kern2.u + -2 + public.kern2.w + 8 + public.kern2.x + -2 + public.kern2.y + 8 + public.kern2.z + -2 + public.kern2.zero + -12 + + public.kern1.quoteleft1 + + public.kern2.A.ss01 + -38 + public.kern2.A2 + -44 + public.kern2.B + 8 + public.kern2.G + -20 + public.kern2.J + -24 + public.kern2.Oslash.alt + 26 + public.kern2.T + 32 + public.kern2.V + 28 + public.kern2.W + 24 + public.kern2.Y + 36 + public.kern2.Z + 6 + public.kern2.a + -30 + public.kern2.f + 2 + public.kern2.g + -42 + public.kern2.g.ss01 + -30 + public.kern2.i1 + 42 + public.kern2.j + -2 + public.kern2.m + -20 + public.kern2.o + -44 + public.kern2.s + -22 + public.kern2.u + -20 + public.kern2.w + -6 + public.kern2.x + -22 + public.kern2.y + -10 + public.kern2.z + -22 + + public.kern1.quoteright1 + + public.kern2.A.ss01 + -56 + public.kern2.A2 + -60 + public.kern2.G + -30 + public.kern2.J + -42 + public.kern2.Oslash.alt + 6 + public.kern2.S + -14 + public.kern2.T + 20 + public.kern2.U + -4 + public.kern2.V + 24 + public.kern2.W + 24 + public.kern2.Y + 26 + public.kern2.Z + -6 + public.kern2.a + -62 + public.kern2.f + -8 + public.kern2.g + -72 + public.kern2.g.ss01 + -18 + public.kern2.h + -14 + public.kern2.i1 + 13 + public.kern2.m + -22 + public.kern2.o + -74 + public.kern2.s + -54 + public.kern2.u + -22 + public.kern2.w + -8 + public.kern2.x + -8 + public.kern2.y + -30 + public.kern2.z + -36 + + public.kern1.s1 + + public.kern2.A.ss01 + 8 + public.kern2.A2 + 2 + public.kern2.G + -8 + public.kern2.J + 8 + public.kern2.Oslash.alt + -1 + public.kern2.T + -56 + public.kern2.V + -40 + public.kern2.W + -28 + public.kern2.Y + -86 + public.kern2.Z + -2 + public.kern2.a + 8 + public.kern2.comma + -2 + public.kern2.emdash + -24 + public.kern2.f + -8 + public.kern2.guillemotright + 16 + public.kern2.o + -2 + public.kern2.period + -4 + public.kern2.quotedbl + -30 + public.kern2.quoteright + -12 + public.kern2.s + 4 + public.kern2.t + -8 + public.kern2.w + -20 + public.kern2.x + -10 + public.kern2.y + -24 + + public.kern1.t.ss011 + + public.kern2.A.ss01 + 24 + public.kern2.B + 8 + public.kern2.G + 8 + public.kern2.Y + -32 + public.kern2.Z + 8 + public.kern2.h + 8 + public.kern2.j + 16 + public.kern2.l.ss01 + 8 + public.kern2.period + 16 + public.kern2.s + 8 + public.kern2.t + 16 + public.kern2.z + 16 + + public.kern1.t1 + + public.kern2.G + -2 + public.kern2.J + 28 + public.kern2.T + -3 + public.kern2.V + -20 + public.kern2.W + -2 + public.kern2.Y + -21 + public.kern2.Z + 8 + public.kern2.a + 8 + public.kern2.emdash + -6 + public.kern2.f + 14 + public.kern2.g + 8 + public.kern2.h + 4 + public.kern2.i1 + 8 + public.kern2.j + 9 + public.kern2.o + -2 + public.kern2.period + 8 + public.kern2.quotedbl + 16 + public.kern2.quoteright + 8 + public.kern2.t + 18 + public.kern2.x + 8 + public.kern2.y + 2 + public.kern2.z + 20 + + public.kern1.u1 + + public.kern2.A.ss01 + 8 + public.kern2.T + -44 + public.kern2.V + -50 + public.kern2.W + -22 + public.kern2.Y + -80 + public.kern2.j + -2 + public.kern2.quotedbl + -2 + public.kern2.quoteright + -4 + public.kern2.z + 8 + + public.kern1.uni0435.ss011 + + public.kern2.A.ss012 + 16 + public.kern2.T + -62 + public.kern2.Ucyr.ss01 + -36 + public.kern2.V + -50 + public.kern2.W + -12 + public.kern2.Y + -76 + public.kern2.w + -9 + public.kern2.x + -2 + public.kern2.y + -10 + + public.kern1.w1 + + public.kern2.A.ss01 + -16 + public.kern2.A.ss012 + -9 + public.kern2.A2 + -20 + public.kern2.J + -34 + public.kern2.Oslash.alt + -20 + public.kern2.S + -4 + public.kern2.T + -12 + public.kern2.V + -18 + public.kern2.W + -9 + public.kern2.Y + -54 + public.kern2.Z + -30 + public.kern2.a + -19 + public.kern2.comma + -28 + public.kern2.f + 8 + public.kern2.g + -8 + public.kern2.j + -10 + public.kern2.o + -19 + public.kern2.period + -38 + public.kern2.quotedbl + 8 + public.kern2.quoteright + 8 + public.kern2.s + -19 + public.kern2.w + -8 + + public.kern1.x + + public.kern2.A.ss01 + 16 + public.kern2.A.ss012 + 16 + public.kern2.A2 + 16 + public.kern2.G + -18 + public.kern2.J + 16 + public.kern2.S + -2 + public.kern2.T + -12 + public.kern2.Ucyr.ss01 + -12 + public.kern2.V + -20 + public.kern2.W + -2 + public.kern2.Y + -48 + public.kern2.a + -8 + public.kern2.emdash + -36 + public.kern2.o + -25 + public.kern2.quotedbl + -2 + public.kern2.s + -18 + public.kern2.x + 16 + public.kern2.z + 8 + + public.kern1.y1 + + public.kern2.A.ss01 + -16 + public.kern2.A.ss012 + -17 + public.kern2.A2 + -20 + public.kern2.G + -8 + public.kern2.J + -44 + public.kern2.Oslash.alt + -30 + public.kern2.T + -12 + public.kern2.Ucyr.ss01 + -25 + public.kern2.V + -20 + public.kern2.W + -9 + public.kern2.Y + -48 + public.kern2.Z + -20 + public.kern2.a + -13 + public.kern2.comma + -40 + public.kern2.decyr.ss01 + -28 + public.kern2.emdash + -24 + public.kern2.f + 12 + public.kern2.g + -10 + public.kern2.g.ss01 + -16 + public.kern2.h + -8 + public.kern2.j + -10 + public.kern2.o + -20 + public.kern2.period + -72 + public.kern2.quotedbl + 8 + public.kern2.quoteright + 4 + public.kern2.s + -16 + public.kern2.t + 10 + public.kern2.x + 8 + public.kern2.y + 8 + public.kern2.z + -8 + + public.kern1.z1 + + public.kern2.A.ss012 + 16 + public.kern2.A2 + 18 + public.kern2.J + 24 + public.kern2.S + -4 + public.kern2.T + -18 + public.kern2.V + -20 + public.kern2.W + -28 + public.kern2.Y + -50 + public.kern2.comma + 10 + public.kern2.f + 18 + public.kern2.g + 8 + public.kern2.j + 8 + public.kern2.o + -12 + public.kern2.period + 8 + public.kern2.quotedbl + -4 + public.kern2.quoteright + -2 + public.kern2.t + 8 + public.kern2.x + 8 + public.kern2.z + 8 + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/layercontents.plist b/sources/FixelDisplay-ExtraBold.ufo/layercontents.plist new file mode 100644 index 00000000..7a35a5cf --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/layercontents.plist @@ -0,0 +1,10 @@ + + + + + + public.default + glyphs + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/lib.plist b/sources/FixelDisplay-ExtraBold.ufo/lib.plist new file mode 100644 index 00000000..c0069150 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/lib.plist @@ -0,0 +1,1671 @@ + + + + + com.fontlab.v2.tth + + stems + + 69 + + width + 69 + horizontal + + round + + 35 + 3 + 47 + 4 + 60 + 5 + 0 + 7 + 22 + 8 + + + 74 + + width + 74 + horizontal + + round + + 19 + 2 + 35 + 3 + 47 + 4 + 60 + 5 + 72 + 6 + 0 + 7 + 20 + 8 + + + 76 + + width + 76 + horizontal + + round + + 19 + 2 + 35 + 3 + 72 + 6 + 0 + 7 + 20 + 8 + + + 80 + + width + 80 + horizontal + + round + + 29 + 3 + 47 + 4 + 60 + 5 + 72 + 6 + 0 + 7 + 20 + 8 + + + 99 + + width + 99 + horizontal + + round + + 19 + 2 + 29 + 3 + 37 + 4 + 48 + 5 + 58 + 6 + 0 + 7 + 16 + 8 + + + 74 + + width + 74 + horizontal + + round + + 19 + 2 + 35 + 3 + 47 + 4 + 60 + 5 + 72 + 6 + 0 + 7 + 20 + 8 + + + 80 + + width + 80 + horizontal + + round + + 29 + 3 + 47 + 4 + 60 + 5 + 72 + 6 + 0 + 7 + 20 + 8 + + + 93 + + width + 93 + horizontal + + round + + 19 + 2 + 29 + 3 + 37 + 4 + 48 + 5 + 58 + 6 + 0 + 7 + 16 + 8 + + + + + com.schriftgestaltung.disablesAutomaticAlignment + + com.schriftgestaltung.fontMasterID + master01 + com.schriftgestaltung.glyphOrder + + com.schriftgestaltung.master.name + regular + com.schriftgestaltung.useNiceNames + + com.schriftgestaltung.weightValue + 400 + public.postscriptNames + + A-cy + uni0410 + A-cy.ss01 + uni0410.ss01 + Be-cy + uni0411 + Che-cy + uni0427 + De-cy + uni0414 + Dze-cy + uni0405 + E-cy + uni0404 + Ef-cy + uni0424 + El-cy + uni041B + Em-cy + uni041C + Em-cy.ss01 + uni041C.ss01 + En-cy + uni041D + Er-cy + uni0420 + Ereversed-cy + uni042D + Es-cy + uni0421 + Gacute + uni01F4 + Gacute.ss01 + uni01F4.ss01 + Gcommaaccent + uni0122 + Gcommaaccent.ss01 + uni0122.ss01 + Ge-cy + uni0413 + Germandbls + uni1E9E + Gheupturn-cy + uni0490 + Ha-cy + uni0425 + Ha-cy.ss01 + uni0425.ss01 + Hardsign-cy + uni042A + I-cy + uni0406 + Ia-cy + uni042F + Ia-cy.ss01 + uni042F.ss01 + Ie-cy + uni0415 + Ii-cy + uni0418 + Iishort-cy + uni0419 + Io-cy + uni0401 + Iu-cy + uni042E + Ka-cy + uni041A + Ka-cy.ss01 + uni041A.ss01 + Kcommaaccent + uni0136 + Kcommaaccent.ss01 + uni0136.ss01 + Lcommaaccent + uni013B + Ncommaaccent + uni0145 + Ncommaaccent.ss01 + uni0145.ss01 + O-cy + uni041E + Pe-cy + uni041F + Rcommaaccent + uni0156 + Scommaaccent + uni0218 + Sha-cy + uni0428 + Shcha-cy + uni0429 + Softsign-cy + uni042C + Tcedilla + uni0162 + Tcommaaccent + uni021A + Te-cy + uni0422 + Tse-cy + uni0426 + U-cy + uni0423 + U-cy.ss01 + uni0423.ss01 + Ushort-cy + uni040E + Ushort-cy.ss01 + uni040E.ss01 + Ve-cy + uni0412 + Yeru-cy + uni042B + Yi-cy + uni0407 + Ze-cy + uni0417 + Zhe-cy + uni0416 + Zhe-cy.ss01 + uni0416.ss01 + _perc-circule + _perccircule + a-cy + uni0430 + a-cy.ss01 + uni0430.ss01 + be-cy + uni0431 + che-cy + uni0447 + commaaccentcomb + uni0326 + commaaccentcomb.salt + uni0326.salt + de-cy + uni0434 + de-cy.ss01 + uni0434.ss01 + dze-cy + uni0455 + e-cy + uni0454 + ef-cy + uni0444 + el-cy + uni043B + el-cy.ss01 + uni043B.ss01 + em-cy + uni043C + en-cy + uni043D + er-cy + uni0440 + er-cy.ss01 + uni0440.ss01 + ereversed-cy + uni044D + es-cy + uni0441 + euro + Euro + gacute + uni01F5 + gacute.ss01 + uni01F5.ss01 + gcommaaccent + uni0123 + gcommaaccent.ss01 + uni0123.ss01 + ge-cy + uni0433 + gheupturn-cy + uni0491 + guillemetleft + guillemotleft + guillemetright + guillemotright + ha-cy + uni0445 + hardsign-cy + uni044A + hardsign-cy.ss01 + uni044A.ss01 + hryvnia + uni20B4 + i-cy + uni0456 + ia-cy + uni044F + ia-cy.ss01 + uni044F.ss01 + idotless + dotlessi + ie-cy + uni0435 + ie-cy.ss01 + uni0435.ss01 + ii-cy + uni0438 + iishort-cy + uni0439 + io-cy + uni0451 + io-cy.ss01 + uni0451.ss01 + iu-cy + uni044E + jdotless + uni0237 + je-cy + uni0458 + ka-cy + uni043A + kcommaaccent + uni0137 + lcommaaccent + uni013C + lcommaaccent.ss01 + uni013C.ss01 + ncommaaccent + uni0146 + numero + uni2116 + numero.ss01 + uni2116.ss01 + o-cy + uni043E + onesuperior + uni00B9 + pe-cy + uni043F + rcommaaccent + uni0157 + scommaaccent + uni0219 + sha-cy + uni0448 + shcha-cy + uni0449 + softsign-cy + uni044C + softsign-cy.ss01 + uni044C.ss01 + tcedilla + uni0163 + tcedilla.ss01 + uni0163.ss01 + tcommaaccent + uni021B + tcommaaccent.ss01 + uni021B.ss01 + te-cy + uni0442 + te-cy.ss01 + uni0442.ss01 + threesuperior + uni00B3 + tse-cy + uni0446 + twosuperior + uni00B2 + u-cy + uni0443 + ushort-cy + uni045E + ve-cy + uni0432 + ve-cy.ss01 + uni0432.ss01 + yeru-cy + uni044B + yeru-cy.ss01 + uni044B.ss01 + yi-cy + uni0457 + ze-cy + uni0437 + zhe-cy + uni0436 + + public.skipExportGlyphs + + Oslash.bold + oslash.bold + _perc-circule + + public.glyphOrder + + .notdef + NULL + CR + space + A + Aacute + Abreve + Acircumflex + Adieresis + Agrave + Amacron + Aogonek + Aring + Atilde + AE + B + C + Cacute + Ccaron + Ccedilla + Ccircumflex + Cdotaccent + D + Eth + Dcaron + Dcroat + E + Eacute + Ebreve + Ecaron + Ecircumflex + Edieresis + Edotaccent + Egrave + Emacron + Eogonek + F + G + Gacute + Gbreve + Gcircumflex + Gcommaaccent + Gdotaccent + H + Hbar + Hcircumflex + I + IJ + Iacute + Ibreve + Icircumflex + Idieresis + Idotaccent + Igrave + Imacron + Iogonek + Itilde + J + Jcircumflex + K + Kcommaaccent + L + Lacute + Lcaron + Lcommaaccent + Ldot + Lslash + M + N + Nacute + Ncaron + Ncommaaccent + Eng + Ntilde + O + Oacute + Obreve + Ocircumflex + Odieresis + Ograve + Ohungarumlaut + Omacron + Oslash + Otilde + OE + P + Thorn + Q + R + Racute + Rcaron + Rcommaaccent + S + Sacute + Scaron + Scedilla + Scircumflex + Scommaaccent + Germandbls + T + Tbar + Tcaron + Tcedilla + Tcommaaccent + U + Uacute + Ubreve + Ucircumflex + Udieresis + Ugrave + Uhungarumlaut + Umacron + Uogonek + Uring + Utilde + V + W + Wacute + Wcircumflex + Wdieresis + Wgrave + X + Y + Yacute + Ycircumflex + Ydieresis + Z + Zacute + Zcaron + Zdotaccent + A.ss01 + Aacute.ss01 + Abreve.ss01 + Acircumflex.ss01 + Adieresis.ss01 + Agrave.ss01 + Amacron.ss01 + Aogonek.ss01 + Aring.ss01 + Atilde.ss01 + AE.ss01 + G.ss01 + Gacute.ss01 + Gbreve.ss01 + Gcircumflex.ss01 + Gcommaaccent.ss01 + Gdotaccent.ss01 + J.ss01 + Jcircumflex.ss01 + K.ss01 + Kcommaaccent.ss01 + M.ss01 + N.ss01 + Nacute.ss01 + Ncaron.ss01 + Ncommaaccent.ss01 + Eng.ss01 + Ntilde.ss01 + Q.ss01 + V.ss01 + W.ss01 + Wacute.ss01 + Wcircumflex.ss01 + Wdieresis.ss01 + Wgrave.ss01 + X.ss01 + Y.ss01 + Yacute.ss01 + Ycircumflex.ss01 + Ydieresis.ss01 + Z.ss01 + Zacute.ss01 + Zcaron.ss01 + Zdotaccent.ss01 + a + aacute + abreve + acircumflex + adieresis + agrave + amacron + aogonek + aring + atilde + ae + b + c + cacute + ccaron + ccedilla + ccircumflex + cdotaccent + d + eth + dcaron + dcroat + e + eacute + ebreve + ecaron + ecircumflex + edieresis + edotaccent + egrave + emacron + eogonek + f + g + gacute + gbreve + gcircumflex + gcommaaccent + gdotaccent + h + hbar + hcircumflex + i + idotless + iacute + ibreve + icircumflex + idieresis + igrave + ij + imacron + iogonek + itilde + j + jdotless + jcircumflex + k + kcommaaccent + kgreenlandic + l + lacute + lcaron + lcommaaccent + ldot + lslash + m + n + nacute + napostrophe + ncaron + ncommaaccent + eng + ntilde + o + oacute + obreve + ocircumflex + odieresis + ograve + ohungarumlaut + omacron + oslash + otilde + oe + p + thorn + q + r + racute + rcaron + rcommaaccent + s + sacute + scaron + scedilla + scircumflex + scommaaccent + germandbls + t + tbar + tcaron + tcedilla + tcommaaccent + u + uacute + ubreve + ucircumflex + udieresis + ugrave + uhungarumlaut + umacron + uogonek + uring + utilde + v + w + wacute + wcircumflex + wdieresis + wgrave + x + y + yacute + ycircumflex + ydieresis + z + zacute + zcaron + zdotaccent + a.ss01 + aacute.ss01 + abreve.ss01 + acircumflex.ss01 + adieresis.ss01 + agrave.ss01 + amacron.ss01 + aogonek.ss01 + aring.ss01 + atilde.ss01 + ae.ss01 + b.ss01 + d.ss01 + dcaron.ss01 + dcroat.ss01 + e.ss01 + eacute.ss01 + ebreve.ss01 + ecaron.ss01 + ecircumflex.ss01 + edieresis.ss01 + edotaccent.ss01 + egrave.ss01 + emacron.ss01 + eogonek.ss01 + f.ss01 + g.ss01 + gacute.ss01 + gbreve.ss01 + gcircumflex.ss01 + gcommaaccent.ss01 + gdotaccent.ss01 + l.ss01 + lacute.ss01 + lcaron.ss01 + lcommaaccent.ss01 + ldot.ss01 + lslash.ss01 + oe.ss01 + p.ss01 + q.ss01 + germandbls.ss01 + t.ss01 + tbar.ss01 + tcaron.ss01 + tcedilla.ss01 + tcommaaccent.ss01 + f_f + f_f_i + f_f_l + fi + fl + f_f.ss01 + f_f_i.ss01 + f_f_l.ss01 + fi.ss01 + fl.ss01 + ordfeminine + ordmasculine + A-cy + Be-cy + Ve-cy + Ge-cy + Gheupturn-cy + De-cy + Ie-cy + Io-cy + Zhe-cy + Ze-cy + Ii-cy + Iishort-cy + Ka-cy + El-cy + Em-cy + En-cy + O-cy + Pe-cy + Er-cy + Es-cy + Te-cy + U-cy + Ushort-cy + Ef-cy + Ha-cy + Che-cy + Tse-cy + Sha-cy + Shcha-cy + Softsign-cy + Hardsign-cy + Yeru-cy + Dze-cy + E-cy + Ereversed-cy + I-cy + Yi-cy + Iu-cy + Ia-cy + A-cy.ss01 + Zhe-cy.ss01 + Ka-cy.ss01 + Em-cy.ss01 + U-cy.ss01 + Ushort-cy.ss01 + Ha-cy.ss01 + Ia-cy.ss01 + a-cy + be-cy + ve-cy + ge-cy + gheupturn-cy + de-cy + ie-cy + io-cy + zhe-cy + ze-cy + ii-cy + iishort-cy + ka-cy + el-cy + em-cy + en-cy + o-cy + pe-cy + er-cy + es-cy + te-cy + u-cy + ushort-cy + ef-cy + ha-cy + che-cy + tse-cy + sha-cy + shcha-cy + softsign-cy + hardsign-cy + yeru-cy + dze-cy + e-cy + ereversed-cy + i-cy + yi-cy + je-cy + iu-cy + ia-cy + a-cy.ss01 + ve-cy.ss01 + de-cy.ss01 + ie-cy.ss01 + io-cy.ss01 + el-cy.ss01 + er-cy.ss01 + te-cy.ss01 + softsign-cy.ss01 + hardsign-cy.ss01 + yeru-cy.ss01 + ia-cy.ss01 + zero + one + two + three + four + five + six + seven + eight + nine + zero.osf + one.osf + two.osf + three.osf + four.osf + five.osf + six.osf + seven.osf + nine.osf + zero.tf + one.tf + two.tf + three.tf + four.tf + five.tf + six.tf + seven.tf + eight.tf + nine.tf + onesuperior + twosuperior + threesuperior + period + comma + colon + semicolon + ellipsis + exclam + exclamdown + question + questiondown + periodcentered + bullet + asterisk + numbersign + slash + backslash + parenleft + parenright + braceleft + braceright + bracketleft + bracketright + hyphen + endash + emdash + underscore + quotesinglbase + quotedblbase + quotedblleft + quotedblright + quoteleft + quoteright + guillemetleft + guillemetright + guilsinglleft + guilsinglright + quotedbl + quotesingle + cent + currency + dollar + euro + hryvnia + sterling + yen + yen.ss01 + plus + minus + multiply + divide + equal + greater + less + asciitilde + asciicircum + percent + perthousand + at + ampersand + paragraph + section + copyright + registered + trademark + degree + bar + brokenbar + dagger + daggerdbl + numero + estimated + numero.ss01 + commaaccentcomb + dieresis + dotaccent + grave + acute + hungarumlaut + circumflex + caron + breve + ring + tilde + macron + cedilla + ogonek + dieresis.case + dotaccent.case + grave.case + acute.case + hungarumlaut.case + circumflex.case + caron.case + breve.case + ring.case + tilde.case + macron.case + commaaccentcomb.salt + caron.salt + uniE01A + _perc-circule + eight.osf + ruble + Ljecyr + Njecyr + Jecyr + dzhecyr + Dzhecyr + ljecyr + njecyr + Tshecyr + Djecyr + tshecyr + djecyr + tenge + ljecyr.ss01 + njecyr.ss01 + dramsignarmn + gjecyr + kjecyr + neptune + florin + plusminus + fraction + onequarter + onehalf + threequarters + mu + lessequal + greaterequal + minute + second + Schwacyr + schwacyr + Gestrokecyr + gestrokecyr + Obarcyr + obarcyr + Entailcyr + entailcyr + Katailcyr + katailcyr + Ustraightstrokecyr + ustraightstrokecyr + Shhacyr + shhacyr + ustraightcyr + Ustraightcyr + partialdiff + increment + integral + summation + radical + infinity + Omega + pi + longs + Delta + product + notequal + proportional + approxequal + Schwa + eturned + Oslashacute + oslashacute + AEacute + aeacute + uni2010 + Aiecyr + aiecyr + uni1EBC + uni1EBD + Acaron + acaron + Gjecyr + Kjecyr + uniE000 + uniE000.alt + arrowleft + arrowup + arrowright + arrowdown + arrowdown.ss01 + arrowleft.ss01 + arrowright.ss01 + arrowup.ss01 + yi-cy.alt + Omegacyr + omegacyr + Yatcyr + yatcyr + Eiotifiedcyr + eiotifiedcyr + Ksicyr + ksicyr + Shwe-cy + Fitacyr + fitacyr + Koppacyr + Iegravecyr + Igravecyr + iegravecyr + igravecyr + Zhebrevecyr + zhebrevecyr + Abrevecyr + abrevecyr + Adieresiscyr + adieresiscyr + Iebrevecyr + iebrevecyr + Schwadieresiscyr + schwadieresiscyr + Zhedieresiscyr + zhedieresiscyr + Zedieresiscyr + zedieresiscyr + Imacroncyr + imacroncyr + Idieresiscyr + idieresiscyr + Odieresiscyr + odieresiscyr + Umacroncyr + umacroncyr + Udieresiscyr + udieresiscyr + Uacutedblcyr + uacutedblcyr + Dekomicyr + dekomicyr + Wecyr + wecyr + Qacyr + qacyr + Ylongdieresiscyr + ylongdieresiscyr + Chedieresiscyr + chedieresiscyr + Obardieresiscyr + obardieresiscyr + Ereverseddieresiscyr + ereverseddieresiscyr + Zhetailcyr + zhetailcyr + Tetailcyr + tetailcyr + Xatailcyr + xatailcyr + Chetailcyr + chetailcyr + Chekhakascyr + chekhakascyr + Getailcyr + getailcyr + Petailcyr + petailcyr + Eltailcyr + eltailcyr + Shhatailcyr + shhatailcyr + Palochkacyr + palochkacyr + Dzzhecyr + Yaecyr + yaecyr + Tetsecyr + tetsecyr + Engecyr + engecyr + kabashkcyr + Kabashkcyr + semisoftcyr + Semisoftcyr + Reversedzecyr + reversedzecyr + Elmiddlehookcyr + Enmiddlehookcyr + Enhookcyr + Kahookcyr + Pehookcyr + Gehookcyr + parenleft.case + parenright.case + hyphen.case + bracketleft.case + bracketright.case + braceleft.case + braceright.case + exclamdown.case + guillemetleft.case + guillemetright.case + endash.case + emdash.case + bullet.case + guilsinglleft.case + guilsinglright.case + arrowleft.case + arrowup.case + arrowright.case + arrowdown.case + arrowdown.ss01.case + arrowleft.ss01.case + arrowright.ss01.case + arrowup.ss01.case + Enhookleftcyr + enhookleftcyr + enhookcyr + gehookcyr + pehookcyr + kahookcyr + enmiddlehookcyr + elmiddlehookcyr + kastrokecyr + Kastrokecyr + Chevertcyr + chevertcyr + Kaverticalstrokecyr + kaverticalstrokecyr + Elhookcyr + elhookcyr + zetailcyr + Zetailcyr + Estailcyr + estailcyr + Haabkhcyr + koppacyr + ukcyr + Ukcyr + omegaroundcyr + Izhitsagravedblcyr + izhitsagravedblcyr + izhitsacyr + Izhitsacyr + Yusbigcyr + yusbigcyr + Psicyr + psicyr + Omegaroundcyr + Yuslittlecyr + yuslittlecyr + yuslittleiotifiedcyr + Yuslittleiotifiedcyr + Yusbigiotifiedcyr + yusbigiotifiedcyr + Omegatitlocyr + omegatitlocyr + Otcyr + otcyr + uni2DEE + uni2DEE.case + ertickcyr + Ertickcyr + Lhacyr + lhacyr + ensharptailcyr + Ensharptailcyr + emsharptailcyr + elsharptailcyr + ishortsharptailcyr + Ishortsharptailcyr + Emsharptailcyr + Elsharptailcyr + njekomicyr + Njekomicyr + ljekomicyr + tjekomicyr + djekomicyr + zjekomicyr + colon.case + questiondown.case + slash.case + semicolon.case + backslash.case + bar.case + brokenbar.case + dzjekomicyr + Cheabkhcyr + cheabkhcyr + cheabkhtailcyr + sjekomicyr + Sjekomicyr + Ljekomicyr + Tjekomicyr + Djekomicyr + kaaleutcyr + dzzhecyr + haabkhcyr + Dchecyr + dchecyr + dzeabkhcyr + Dzeabkhcyr + palatcombcyr + Cheabkhtailcyr + Dzjekomicyr + Zjekomicyr + rhacyr + Rhacyr + Kaaleutcyr + thousandscyr + titlocombcyr + pokrytiecombcyr + hundredthousandscombcyr + millionscombcyr + Gehookstrokecyr + gehookstrokecyr + Hahookcyr + hahookcyr + Hastrokecyr + uni1C80 + uni1C81 + uni1C82 + uni1C83 + uni1C84 + uni1C85 + uni1C86 + uni1C87 + Zemlya-cy + zemlya-cy + Dzelo-cy + dzelo-cy + DzeReversed-cy + dzeReversed-cy + Iota-cy + iota-cy + Djerv-cy + djerv-cy + UkMonograph-cy + ukMonograph-cy + OmegaBroad-cy + omegaBroad-cy + YerNeutral-cy + yerNeutral-cy + YeruBackYer-cy + yeruBackyer-cy + YatIotified-cy + yatIotified-cy + YuReversed-cy + yuReversed-cy + IotifiedA-cy + iotifieda-cy + YusClosedlittle-cy + yusClosedlittle-cy + YusBlended-cy + yusBlended-cy + YusiotifiedClosedLittle-cy + yusiotifiedClosedLittle-cy + Yn-cy + yn-cy + TseReversed-cy + tseReversed-cy + DeSoft-cy + deSoft-cy + ElSoft-cy + elSoft-cy + EmSoft-cy + emSoft-cy + OMonocular-cy + oMonocular-cy + OBinocular-cy + oBinocular-cy + ODoubleMonocular-cy + oDoubleMonocular-cy + omultiocular-cy + vzmetcomb-cy + tenmillionscomb-cy + hundredmillionscomb-cy + thousandmillionscomb-cy + Dwe-cy + dwe-cy + Dzwe-cy + dzwe-cy + Zhwe-cy + zhwe-cy + Cche-cy + cche-cy + Dzze-cy + dzze-cy + TeWithMiddleHook-cy + tewithmiddlehook-cy + Twe-cy + twe-cy + Tswe-cy + tswe-cy + Tsse-cy + tsse-cy + Tche-cy + tche-cy + Hwe-cy + hwe-cy + shwe-cy + DoubleO-cy + doubleo-cy + CrossedO-cy + crossedo-cy + hastrokecyr + uniF43A + A-cy.accented + E-cy.accented + Ii-cy.accented + O-cy.accented + U-cy.accented + Yeru-cy.accented + Ereversed-cy.accented + Iu-cy.accented + Ia-cy.accented + Io-cy.accented + uniF498 + uniF49A + uniF49C + uniF49E + uniF4C6 + uniF4CC + uniF4D2 + uniF4D4 + uniF4D6 + uniF4D8 + Zetailcyr.BSH + Estailcyr.CHU + uniF50E + uniF510 + uniF512 + uniF514 + uniF516 + uniF518 + uniF51A + uniF51C + uniF51E + Yeru-cymacron + uniF522 + uniF524 + uniF526 + uniF528 + uniF52A + uniF52C + uniF52E + uniF532 + uniF536 + uniF538 + Gestrokecyr.BSH + Estailcyr.BSH + uniF830 + uniF833 + uniF839 + uniF86F + uniF872 + uniF875 + uniF878 + uniF87B + uniF87E + apostrophemod + colontriangularmod + uni1C88 + uniF87F + uniF87C + uniF879 + uniF876 + uniF873 + uniF870 + uniF83A + uniF834 + uniF831 + zetailcyr.BSH + estailcyr.CHU + uniF50F + uniF511 + uniF513 + uniF515 + uniF517 + uniF519 + uniF51B + uniF51D + uniF51F + uniF521 + uniF523 + uniF525 + uniF527 + uniF529 + uniF52B + uniF52D + uniF52F + uniF533 + uniF537 + uniF539 + gestrokecyr.BSH + estailcyr.BSH + uniF499 + uniF49B + uniF49D + uniF49F + uniF4C7 + uniF4CD + uniF4D3 + uniF4D5 + uniF4D7 + uniF4D9 + a-cy.accented + e-cy.accented + ii-cy.accented + o-cy.accented + u-cy.accented + yeru-cy.accented + ereversed-cy.accented + iu-cy.accented + ia-cy.accented + io-cy.accented + uniF43B + at.case + dieresis.alt + dieresiscase.alt + e-cy.hist + omultiocular-cy.alt + iotifieda-cy.hist + be-cy.SRB + ve-cy.BGR + ge-cy.BGR + de-cy.BGR + zhe-cy.BGR + ze-cy.BGR + ii-cy.BGR + iishort-cy.BGR + ka-cy.BGR + el-cy.BGR + pe-cy.BGR + te-cy.BGR + tse-cy.BGR + sha-cy.BGR + shcha-cy.BGR + hardsign-cy.BGR + softsign-cy.BGR + iu-cy.BGR + yatcyr.BGR + eiotifiedcyr.BGR + yusbigiotifiedcyr.BGR + iotifieda-cy.BGR + De-cy.BGR + El-cy.BGR + Ef-cy.BGR + dieresisacute + uniF45D + uniF45E + uniF45F + uniF475 + uniF476 + uniF477 + uniF478 + uniF479 + Elsmallcyr + enclosingcirclecomb + ge-cy.SRB + pe-cy.SRB + te-cy.SRB + gjecyr.SRB + macron-fwd + macron-fwd.alt + macronacute.SRB + iegravecyr.SRB + igravecyr.SRB + flower + knightwhite + knightblack + floretteblack + florettewhite + floretteoutlinedpetalledblackeight + rookblack + bishopblack + leo + heartwhite + diamondwhite-misc + spadewhite + clubwhite + bishopwhite + heart + crossedswords + virgo + thousandscyr.dnom + bracketangleleft + bracketangleright + bracketangleleft.case + bracketangleright.case + + + diff --git a/sources/FixelDisplay-ExtraBold.ufo/metainfo.plist b/sources/FixelDisplay-ExtraBold.ufo/metainfo.plist new file mode 100644 index 00000000..10582b84 --- /dev/null +++ b/sources/FixelDisplay-ExtraBold.ufo/metainfo.plist @@ -0,0 +1,10 @@ + + + + + creator + com.fontlab.ufoLib + formatVersion + 3 + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/features.fea b/sources/FixelDisplay-ExtraLight.ufo/features.fea new file mode 100644 index 00000000..302ade93 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/features.fea @@ -0,0 +1,573 @@ +#> classes +#/> otclasses +@ss01_def = [A-cy A AE Aacute Abreve Acircumflex Adieresis Agrave Amacron Aogonek Aring Atilde Em-cy Eng G Gacute Gbreve Gcircumflex Gcommaaccent Gdotaccent Ha-cy Ia-cy J Jcircumflex K Ka-cy Kcommaaccent M N Nacute Ncaron Ncommaaccent Ntilde Q U-cy Ushort-cy V W Wacute Wcircumflex Wdieresis Wgrave X Y Yacute Ycircumflex Ydieresis Z Zacute Zcaron Zdotaccent Zhe-cy a-cy a aacute abreve acircumflex adieresis ae agrave amacron aogonek aring arrowdown arrowdown.case arrowleft arrowleft.case arrowright arrowright.case arrowup arrowup.case atilde b d dcaron dcroat de-cy e eacute ebreve ecaron ecircumflex edieresis edotaccent egrave el-cy emacron eogonek er-cy f f_f f_f_i f_f_l fi fl g gacute gbreve gcircumflex gcommaaccent gdotaccent germandbls hardsign-cy ia-cy ie-cy io-cy l lacute lcaron lcommaaccent ldot ljecyr lslash njecyr numero oe p q softsign-cy t tbar tcaron tcedilla tcommaaccent te-cy ve-cy yen yeru-cy]; +@ss01 = [A-cy.ss01 A.ss01 AE.ss01 Aacute.ss01 Abreve.ss01 Acircumflex.ss01 Adieresis.ss01 Agrave.ss01 Amacron.ss01 Aogonek.ss01 Aring.ss01 Atilde.ss01 Em-cy.ss01 Eng.ss01 G.ss01 Gacute.ss01 Gbreve.ss01 Gcircumflex.ss01 Gcommaaccent.ss01 Gdotaccent.ss01 Ha-cy.ss01 Ia-cy.ss01 J.ss01 Jcircumflex.ss01 K.ss01 Ka-cy.ss01 Kcommaaccent.ss01 M.ss01 N.ss01 Nacute.ss01 Ncaron.ss01 Ncommaaccent.ss01 Ntilde.ss01 Q.ss01 U-cy.ss01 Ushort-cy.ss01 V.ss01 W.ss01 Wacute.ss01 Wcircumflex.ss01 Wdieresis.ss01 Wgrave.ss01 X.ss01 Y.ss01 Yacute.ss01 Ycircumflex.ss01 Ydieresis.ss01 Z.ss01 Zacute.ss01 Zcaron.ss01 Zdotaccent.ss01 Zhe-cy.ss01 a-cy.ss01 a.ss01 aacute.ss01 abreve.ss01 acircumflex.ss01 adieresis.ss01 ae.ss01 agrave.ss01 amacron.ss01 aogonek.ss01 aring.ss01 arrowdown.ss01 arrowdown.ss01.case arrowleft.ss01 arrowleft.ss01.case arrowright.ss01 arrowright.ss01.case arrowup.ss01 arrowup.ss01.case atilde.ss01 b.ss01 d.ss01 dcaron.ss01 dcroat.ss01 de-cy.ss01 e.ss01 eacute.ss01 ebreve.ss01 ecaron.ss01 ecircumflex.ss01 edieresis.ss01 edotaccent.ss01 egrave.ss01 el-cy.ss01 emacron.ss01 eogonek.ss01 er-cy.ss01 f.ss01 f_f.ss01 f_f_i.ss01 f_f_l.ss01 fi.ss01 fl.ss01 g.ss01 gacute.ss01 gbreve.ss01 gcircumflex.ss01 gcommaaccent.ss01 gdotaccent.ss01 germandbls.ss01 hardsign-cy.ss01 ia-cy.ss01 ie-cy.ss01 io-cy.ss01 l.ss01 lacute.ss01 lcaron.ss01 lcommaaccent.ss01 ldot.ss01 ljecyr.ss01 lslash.ss01 njecyr.ss01 numero.ss01 oe.ss01 p.ss01 q.ss01 softsign-cy.ss01 t.ss01 tbar.ss01 tcaron.ss01 tcedilla.ss01 tcommaaccent.ss01 te-cy.ss01 ve-cy.ss01 yen.ss01 yeru-cy.ss01]; +@case = [arrowdown.case arrowdown.ss01.case arrowleft.case arrowleft.ss01.case arrowright.case arrowright.ss01.case arrowup.case arrowup.ss01.case backslash.case bar.case braceleft.case braceright.case bracketleft.case bracketright.case brokenbar.case bullet.case colon.case emdash.case endash.case exclamdown.case guillemetleft.case guillemetright.case guilsinglleft.case guilsinglright.case hyphen.case parenleft.case parenright.case questiondown.case semicolon.case at.case bracketangleleft.case bracketangleright.case slash.case]; +@case_def = [arrowdown arrowdown.ss01 arrowleft arrowleft.ss01 arrowright arrowright.ss01 arrowup arrowup.ss01 backslash bar braceleft braceright bracketleft bracketright brokenbar bullet colon emdash endash exclamdown guillemetleft guillemetright guilsinglleft guilsinglright hyphen parenleft parenright questiondown semicolon at bracketangleleft bracketangleright slash]; +@cpsp = [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 Agrave Aacute Acircumflex Atilde Adieresis Aring AE Ccedilla Egrave Eacute Ecircumflex Edieresis Igrave Iacute Icircumflex Idieresis Eth Ntilde Ograve Oacute Ocircumflex Otilde Odieresis Oslash Ugrave Uacute Ucircumflex Udieresis Yacute Thorn Amacron Abreve Aogonek Cacute Ccircumflex Cdotaccent Ccaron Dcaron Dcroat Emacron Ebreve Edotaccent Eogonek Ecaron Gcircumflex Gbreve Gdotaccent Gcommaaccent Hcircumflex Hbar Itilde Imacron Ibreve Iogonek Idotaccent IJ Jcircumflex Kcommaaccent Lacute Lcommaaccent Lcaron Ldot Lslash Nacute Ncommaaccent Ncaron Eng Omacron Obreve Ohungarumlaut OE Racute Rcommaaccent Rcaron Sacute Scircumflex Scedilla Scaron Tcedilla Tcaron Tbar Utilde Umacron Ubreve Uring Uhungarumlaut Uogonek Wcircumflex Ycircumflex Ydieresis Zacute Zdotaccent Zcaron Schwa Acaron Gacute AEacute Oslashacute Scommaaccent Tcommaaccent Delta Omega Iegravecyr uniF43A A-cy.accented E-cy.accented Ii-cy.accented O-cy.accented U-cy.accented Yeru-cy.accented Ereversed-cy.accented Iu-cy.accented Ia-cy.accented Io-cy.accented uniF498 uniF49A uniF49C uniF49E uniF4C6 uniF4CC uniF4D2 uniF4D4 uniF4D6 uniF4D8 uniF50E uniF510 uniF512 uniF514 uniF516 uniF518 uniF51A uniF51C uniF51E Yeru-cymacron uniF522 uniF524 uniF526 uniF528 uniF52A uniF52C uniF52E uniF532 uniF536 uniF538 uniF830 uniF833 uniF839 uniF86F uniF872 uniF875 uniF878 uniF87B uniF87E Io-cy Djecyr Gjecyr E-cy Dze-cy I-cy Yi-cy Jecyr Ljecyr Njecyr Tshecyr Kjecyr Igravecyr Ushort-cy Dzhecyr A-cy Be-cy Ve-cy Ge-cy De-cy Ie-cy Zhe-cy Ze-cy Ii-cy Iishort-cy Ka-cy El-cy Em-cy En-cy O-cy Pe-cy Er-cy Es-cy Te-cy U-cy Ef-cy Ha-cy Tse-cy Che-cy Sha-cy Shcha-cy Hardsign-cy Yeru-cy Softsign-cy Ereversed-cy Iu-cy Ia-cy Omegacyr Yatcyr Eiotifiedcyr Yuslittlecyr Yuslittleiotifiedcyr Yusbigcyr Yusbigiotifiedcyr Ksicyr Psicyr Fitacyr Izhitsacyr Izhitsagravedblcyr Ukcyr Omegaroundcyr Omegatitlocyr Otcyr Koppacyr Ishortsharptailcyr Semisoftcyr Ertickcyr Gheupturn-cy Gestrokecyr Gehookcyr Zhetailcyr Zetailcyr Katailcyr Kaverticalstrokecyr Kastrokecyr Kabashkcyr Entailcyr Engecyr Pehookcyr Haabkhcyr Estailcyr Tetailcyr Ustraightcyr Ustraightstrokecyr Xatailcyr Tetsecyr Chetailcyr Chevertcyr Shhacyr Cheabkhcyr Cheabkhtailcyr Palochkacyr Zhebrevecyr Kahookcyr Elsharptailcyr Enhookcyr Ensharptailcyr Chekhakascyr Emsharptailcyr Abrevecyr Adieresiscyr Aiecyr Iebrevecyr Schwacyr Schwadieresiscyr Zhedieresiscyr Zedieresiscyr Dzeabkhcyr Imacroncyr Idieresiscyr Odieresiscyr Obarcyr Obardieresiscyr Ereverseddieresiscyr Umacroncyr Udieresiscyr Uacutedblcyr Chedieresiscyr Getailcyr Ylongdieresiscyr Gehookstrokecyr Hahookcyr Hastrokecyr Dekomicyr Djekomicyr Zjekomicyr Dzjekomicyr Ljekomicyr Njekomicyr Sjekomicyr Tjekomicyr Reversedzecyr Elhookcyr Lhacyr Rhacyr Yaecyr Qacyr Wecyr Kaaleutcyr Elmiddlehookcyr Enmiddlehookcyr Petailcyr Shhatailcyr Enhookleftcyr Dzzhecyr Dchecyr Eltailcyr Wgrave Wacute Wdieresis Germandbls uni1EBC Zemlya-cy Dzelo-cy DzeReversed-cy Iota-cy Djerv-cy UkMonograph-cy OmegaBroad-cy YerNeutral-cy YeruBackYer-cy YatIotified-cy YuReversed-cy IotifiedA-cy YusClosedlittle-cy YusBlended-cy YusiotifiedClosedLittle-cy Yn-cy TseReversed-cy DeSoft-cy ElSoft-cy EmSoft-cy OMonocular-cy OBinocular-cy ODoubleMonocular-cy Dwe-cy Dzwe-cy Zhwe-cy Cche-cy Dzze-cy TeWithMiddleHook-cy Twe-cy Tswe-cy Tsse-cy Tche-cy Hwe-cy Shwe-cy DoubleO-cy CrossedO-cy A-cy.ss01 A.ss01 AE.ss01 Aacute.ss01 Abreve.ss01 Acircumflex.ss01 Adieresis.ss01 Agrave.ss01 Amacron.ss01 Aogonek.ss01 Aring.ss01 Atilde.ss01 Em-cy.ss01 Eng.ss01 G.ss01 Gacute.ss01 Gbreve.ss01 Gcircumflex.ss01 Gcommaaccent.ss01 Gdotaccent.ss01 Ha-cy.ss01 Ia-cy.ss01 J.ss01 Jcircumflex.ss01 K.ss01 Ka-cy.ss01 Kcommaaccent.ss01 M.ss01 N.ss01 Nacute.ss01 Ncaron.ss01 Ncommaaccent.ss01 Ntilde.ss01 Q.ss01 U-cy.ss01 Ushort-cy.ss01 V.ss01 W.ss01 Wacute.ss01 Wcircumflex.ss01 Wdieresis.ss01 Wgrave.ss01 X.ss01 Y.ss01 Yacute.ss01 Ycircumflex.ss01 Ydieresis.ss01 Z.ss01 Zacute.ss01 Zcaron.ss01 Zdotaccent.ss01 Zetailcyr.BSH Gestrokecyr.BSH Estailcyr.BSH Estailcyr.CHU Zhe-cy.ss01]; +@locl_BGR = [De-cy.BGR Ef-cy.BGR El-cy.BGR de-cy.BGR eiotifiedcyr.BGR el-cy.BGR ge-cy.BGR hardsign-cy.BGR ii-cy.BGR iishort-cy.BGR iotifieda-cy.BGR iu-cy.BGR ka-cy.BGR pe-cy.BGR sha-cy.BGR shcha-cy.BGR softsign-cy.BGR te-cy.BGR tse-cy.BGR ve-cy.BGR yatcyr.BGR yusbigiotifiedcyr.BGR ze-cy.BGR zhe-cy.BGR]; +@locl_def = [De-cy Ef-cy El-cy de-cy eiotifiedcyr el-cy ge-cy hardsign-cy ii-cy iishort-cy iotifieda-cy iu-cy ka-cy pe-cy sha-cy shcha-cy softsign-cy te-cy tse-cy ve-cy yatcyr yusbigiotifiedcyr ze-cy zhe-cy]; +@locl.SRB = [be-cy.SRB iegravecyr.SRB igravecyr.SRB]; +@loclSRB_def = [be-cy iegravecyr igravecyr]; +@accent = [grave acute.case grave.case acute]; +@pics = [neptune leo virgo bishopwhite knightwhite rookblack bishopblack knightblack heartwhite diamondwhite-misc spadewhite heart clubwhite crossedswords flower floretteblack florettewhite floretteoutlinedpetalledblackeight]; +@pics_def = [A B C D E F G H I J K L M N O P Q R]; +#/< otclasses + +#/> tags +@tag.omultiocular-cy.alt = [omultiocular-cy]; +@tag.yi-cy_yi-cy.alt = [uniE000]; +#/< tags +#< classes + +# automatic +@Uppercase = [ A Aacute Abreve Acircumflex Adieresis Agrave Amacron Aogonek Aring Atilde AE B C Cacute Ccaron Ccedilla Ccircumflex Cdotaccent D Eth Dcaron Dcroat E Eacute Ebreve Ecaron Ecircumflex Edieresis Edotaccent Egrave Emacron Eogonek F G Gacute Gbreve Gcircumflex Gcommaaccent Gdotaccent H Hbar Hcircumflex I IJ Iacute Ibreve Icircumflex Idieresis Idotaccent Igrave Imacron Iogonek Itilde J Jcircumflex K Kcommaaccent L Lacute Lcaron Lcommaaccent Ldot Lslash M N Nacute Ncaron Ncommaaccent Eng Ntilde O Oacute Obreve Ocircumflex Odieresis Ograve Ohungarumlaut Omacron Oslash Otilde OE P Thorn Q R Racute Rcaron Rcommaaccent S Sacute Scaron Scedilla Scircumflex Scommaaccent Germandbls T Tbar Tcaron Tcedilla Tcommaaccent U Uacute Ubreve Ucircumflex Udieresis Ugrave Uhungarumlaut Umacron Uogonek Uring Utilde V W Wacute Wcircumflex Wdieresis Wgrave X Y Yacute Ycircumflex Ydieresis Z Zacute Zcaron Zdotaccent A.ss01 Aacute.ss01 Abreve.ss01 Acircumflex.ss01 Adieresis.ss01 Agrave.ss01 Amacron.ss01 Aogonek.ss01 Aring.ss01 Atilde.ss01 AE.ss01 G.ss01 Gacute.ss01 Gbreve.ss01 Gcircumflex.ss01 Gcommaaccent.ss01 Gdotaccent.ss01 J.ss01 Jcircumflex.ss01 K.ss01 Kcommaaccent.ss01 M.ss01 N.ss01 Nacute.ss01 Ncaron.ss01 Ncommaaccent.ss01 Eng.ss01 Ntilde.ss01 Q.ss01 V.ss01 W.ss01 Wacute.ss01 Wcircumflex.ss01 Wdieresis.ss01 Wgrave.ss01 X.ss01 Y.ss01 Yacute.ss01 Ycircumflex.ss01 Ydieresis.ss01 Z.ss01 Zacute.ss01 Zcaron.ss01 Zdotaccent.ss01 A-cy Be-cy Ve-cy Ge-cy Gheupturn-cy De-cy Ie-cy Io-cy Zhe-cy Ze-cy Ii-cy Iishort-cy Ka-cy El-cy Em-cy En-cy O-cy Pe-cy Er-cy Es-cy Te-cy U-cy Ushort-cy Ef-cy Ha-cy Che-cy Tse-cy Sha-cy Shcha-cy Softsign-cy Hardsign-cy Yeru-cy Dze-cy E-cy Ereversed-cy I-cy Yi-cy Iu-cy Ia-cy A-cy.ss01 Zhe-cy.ss01 Ka-cy.ss01 Em-cy.ss01 U-cy.ss01 Ushort-cy.ss01 Ha-cy.ss01 Ia-cy.ss01 ]; + +# Prefix: Languagesystems +# automatic +languagesystem DFLT dflt; + +languagesystem latn dflt; +languagesystem latn ROM; +languagesystem latn MOL; +languagesystem latn CAT; +languagesystem cyrl dflt; +languagesystem cyrl BGR; +languagesystem cyrl BSH; +languagesystem cyrl CHU; +languagesystem cyrl SRB; +languagesystem cyrl MKD; + +lookup liga_accent { + sub @accent by [grave grave grave grave]; +} liga_accent; +feature aalt { +# Access All Alternates + +#> feature + feature locl; + feature sups; + feature case; + feature lnum; + feature pnum; + feature tnum; + feature onum; + feature salt; + feature ss01; + feature hist; +#< feature +} aalt; +feature ccmp { +# automatic +lookup ccmp_Other_1 { + @Markscomb = [dieresis dotaccent grave acute hungarumlaut circumflex caron breve ring tilde macron]; + @MarkscombCase = [dieresis.case dotaccent.case grave.case acute.case hungarumlaut.case circumflex.case caron.case breve.case ring.case tilde.case macron.case]; + sub @Markscomb @Markscomb' by @MarkscombCase; + sub @cpsp @Markscomb' by @MarkscombCase; +} ccmp_Other_1; + +lookup ccmp_Other_2 { + sub @Markscomb' @MarkscombCase by @MarkscombCase; + sub @MarkscombCase @Markscomb' by @MarkscombCase; +} ccmp_Other_2; +} ccmp; + +feature locl { +# automatic + +script latn; + language ROM; + language MOL; + sub Scedilla by Scommaaccent; + sub scedilla by scommaaccent; + sub Tcedilla by Tcommaaccent; + sub tcedilla by tcommaaccent; + +script latn; + language CAT; + sub l' periodcentered' l by ldot; + sub L' periodcentered' L by Ldot; + +script cyrl; # Cyrillic + language SRB ; # Serbian + + lookup locl_SRB_MCD { + # GSUB lookup 20, type 11 (Single) + sub @loclSRB_def by @locl.SRB; + } locl_SRB_MCD; + + language MKD ; # Serbian + lookup locl_SRB_MCD; + + language BSH ; # Bashkir + sub [Gestrokecyr gestrokecyr Zetailcyr zetailcyr] by [Gestrokecyr.BSH gestrokecyr.BSH Zetailcyr.BSH zetailcyr.BSH]; + sub [Estailcyr estailcyr] by [Estailcyr.BSH estailcyr.BSH]; + + language CHU ; # Chuvash + sub [Estailcyr estailcyr] by [Estailcyr.CHU estailcyr.CHU]; + + language BGR ; # Bulgarian + sub @locl_def by @locl_BGR; + +} locl; + +feature sups { +# Superscript + +#> feature + sub one by onesuperior; + sub three by threesuperior; + sub two by twosuperior; +#< feature +} sups; +feature ordn { +# Ordinals + +#> feature + sub [zero one two three four five six seven eight nine] [A a]' by ordfeminine; + sub [zero one two three four five six seven eight nine] [O o]' by ordmasculine; + sub N o period by numero; +#< feature +} ordn; +feature case { +# Case Sensitive Forms + +#> feature + + sub @case_def by @case; + +#< feature +} case; +feature liga { +# Standard Ligatures + +#> feature +sub f f i by f_f_i; +sub f f l by f_f_l; +sub f f by f_f; +sub f i by fi; +sub f l by fl; +sub yi-cy yi-cy by uniE000; +sub hyphen greater by arrowright; +sub less hyphen by arrowleft; +sub backslash bar slash by arrowdown; +sub slash bar backslash by arrowup; + + lookup accent_2 { + sub E-cy @accent' lookup liga_accent; + sub I-cy @accent' lookup liga_accent; + sub Yi-cy @accent' lookup liga_accent; + sub A-cy @accent' lookup liga_accent; + sub Ie-cy @accent' lookup liga_accent; + sub Ii-cy @accent' lookup liga_accent; + sub O-cy @accent' lookup liga_accent; + sub U-cy @accent' lookup liga_accent; + sub Yeru-cy @accent' lookup liga_accent; + sub Ereversed-cy @accent' lookup liga_accent; + sub Iu-cy @accent' lookup liga_accent; + sub Ia-cy @accent' lookup liga_accent; + sub Io-cy @accent' lookup liga_accent; + sub Yatcyr @accent' lookup liga_accent; + + sub e-cy @accent' lookup liga_accent; + sub i-cy @accent' lookup liga_accent; + sub yi-cy @accent' lookup liga_accent; + sub a-cy @accent' lookup liga_accent; + sub ie-cy @accent' lookup liga_accent; + sub ii-cy @accent' lookup liga_accent; + sub o-cy @accent' lookup liga_accent; + sub u-cy @accent' lookup liga_accent; + sub yeru-cy @accent' lookup liga_accent; + sub ereversed-cy @accent' lookup liga_accent; + sub iu-cy @accent' lookup liga_accent; + sub ia-cy @accent' lookup liga_accent; + sub io-cy @accent' lookup liga_accent; + sub yatcyr @accent' lookup liga_accent; + } accent_2; + + lookup accent_3 { + sub E-cy grave by uniF45D; + sub I-cy grave by uniF45E; + sub Yi-cy grave by uniF45F; + sub A-cy grave by A-cy.accented; + sub Ie-cy grave by E-cy.accented; + sub Ii-cy grave by Ii-cy.accented; + sub O-cy grave by O-cy.accented; + sub U-cy grave by U-cy.accented; + sub Yeru-cy grave by Yeru-cy.accented; + sub Ereversed-cy grave by Ereversed-cy.accented; + sub Iu-cy grave by Iu-cy.accented; + sub Ia-cy grave by Ia-cy.accented; + sub Io-cy grave by Io-cy.accented; + sub Yatcyr grave by uniF478; + + sub e-cy grave by uniF475; + sub i-cy grave by uniF476; + sub yi-cy grave by uniF477; + sub a-cy grave by a-cy.accented; + sub ie-cy grave by e-cy.accented; + sub ii-cy grave by ii-cy.accented; + sub o-cy grave by o-cy.accented; + sub u-cy grave by u-cy.accented; + sub yeru-cy grave by yeru-cy.accented; + sub ereversed-cy grave by ereversed-cy.accented; + sub iu-cy grave by iu-cy.accented; + sub ia-cy grave by ia-cy.accented; + sub io-cy grave by io-cy.accented; + sub yatcyr grave by uniF479; + } accent_3; + +#< feature +} liga; +feature dlig { +# Discretionary Ligatures + +#> feature + +sub M a c P a w l o g o by uniE01A; +sub M P a w l o g o by uniE01A; +sub M P l o g o by uniE01A; +sub M A C P A W L O G O by uniE01A; +sub m a c p a w l o g o by uniE01A; +sub t r i d e n t by neptune; +sub t r y z u b by neptune; +sub u k r a i n e s i g n by neptune; +sub T R I D E N T by neptune; +sub T R Y Z U B by neptune; +sub U k r a i n e S i g n by neptune; +sub T r y z u b by neptune; +sub T r i d e n t by neptune; +sub Te-cy Er-cy Ii-cy Ze-cy U-cy Be-cy by neptune; + +#< feature +} dlig; +feature lnum { +# Lining Figures + +#> feature + sub eight.osf by eight.tf; + sub eight by eight.tf; + sub five.osf by five.tf; + sub five by five.tf; + sub four.osf by four.tf; + sub four by four.tf; + sub nine.osf by nine.tf; + sub nine by nine.tf; + sub one.osf by one.tf; + sub one by one.tf; + sub seven.osf by seven.tf; + sub seven by seven.tf; + sub six.osf by six.tf; + sub six by six.tf; + sub three.osf by three.tf; + sub three by three.tf; + sub two.osf by two.tf; + sub two by two.tf; + sub zero.osf by zero.tf; + sub zero by zero.tf; +#< feature +} lnum; +feature pnum { +# Proportional Figures + +#> feature + sub eight.tf by eight.osf; + sub eight by eight.osf; + sub five.tf by five.osf; + sub five by five.osf; + sub four.tf by four.osf; + sub four by four.osf; + sub nine.tf by nine.osf; + sub nine by nine.osf; + sub one.tf by one.osf; + sub one by one.osf; + sub seven.tf by seven.osf; + sub seven by seven.osf; + sub six.tf by six.osf; + sub six by six.osf; + sub three.tf by three.osf; + sub three by three.osf; + sub two.tf by two.osf; + sub two by two.osf; + sub zero.tf by zero.osf; + sub zero by zero.osf; +#< feature +} pnum; +feature tnum { +# Tabular Figures + +#> feature + sub eight by eight.tf; + sub eight.osf by eight.tf; + sub five by five.tf; + sub five.osf by five.tf; + sub four by four.tf; + sub four.osf by four.tf; + sub nine by nine.tf; + sub nine.osf by nine.tf; + sub one by one.tf; + sub one.osf by one.tf; + sub seven by seven.tf; + sub seven.osf by seven.tf; + sub six by six.tf; + sub six.osf by six.tf; + sub three by three.tf; + sub three.osf by three.tf; + sub two by two.tf; + sub two.osf by two.tf; + sub zero by zero.tf; + sub zero.osf by zero.tf; +#< feature +} tnum; +feature onum { +# Oldstyle Figures + +#> feature + sub eight by eight.osf; + sub eight.tf by eight.osf; + sub five by five.osf; + sub five.tf by five.osf; + sub four by four.osf; + sub four.tf by four.osf; + sub nine by nine.osf; + sub nine.tf by nine.osf; + sub one by one.osf; + sub one.tf by one.osf; + sub seven by seven.osf; + sub seven.tf by seven.osf; + sub six by six.osf; + sub six.tf by six.osf; + sub three by three.osf; + sub three.tf by three.osf; + sub two by two.osf; + sub two.tf by two.osf; + sub zero by zero.osf; + sub zero.tf by zero.osf; +#< feature +} onum; +feature salt { +# Stylistic Alternates + +#> feature + sub A from [A.ss01]; + sub A-cy from [A-cy.ss01]; + sub AE from [AE.ss01]; + sub Aacute from [Aacute.ss01]; + sub Abreve from [Abreve.ss01]; + sub Acircumflex from [Acircumflex.ss01]; + sub Adieresis from [Adieresis.ss01]; + sub Agrave from [Agrave.ss01]; + sub Amacron from [Amacron.ss01]; + sub Aogonek from [Aogonek.ss01]; + sub Aring from [Aring.ss01]; + sub Atilde from [Atilde.ss01]; + sub Em-cy from [Em-cy.ss01]; + sub Eng from [Eng.ss01]; + sub G from [G.ss01]; + sub Gacute from [Gacute.ss01]; + sub Gbreve from [Gbreve.ss01]; + sub Gcircumflex from [Gcircumflex.ss01]; + sub Gcommaaccent from [Gcommaaccent.ss01]; + sub Gdotaccent from [Gdotaccent.ss01]; + sub Ha-cy from [Ha-cy.ss01]; + sub Ia-cy from [Ia-cy.ss01]; + sub J from [J.ss01]; + sub Jcircumflex from [Jcircumflex.ss01]; + sub K from [K.ss01]; + sub Ka-cy from [Ka-cy.ss01]; + sub Kcommaaccent from [Kcommaaccent.ss01]; + sub M from [M.ss01]; + sub N from [N.ss01]; + sub Nacute from [Nacute.ss01]; + sub Ncaron from [Ncaron.ss01]; + sub Ncommaaccent from [Ncommaaccent.ss01]; + sub Ntilde from [Ntilde.ss01]; + sub Q from [Q.ss01]; + sub U-cy from [U-cy.ss01]; + sub Ushort-cy from [Ushort-cy.ss01]; + sub V from [V.ss01]; + sub W from [W.ss01]; + sub Wacute from [Wacute.ss01]; + sub Wcircumflex from [Wcircumflex.ss01]; + sub Wdieresis from [Wdieresis.ss01]; + sub Wgrave from [Wgrave.ss01]; + sub X from [X.ss01]; + sub Y from [Y.ss01]; + sub Yacute from [Yacute.ss01]; + sub Ycircumflex from [Ycircumflex.ss01]; + sub Ydieresis from [Ydieresis.ss01]; + sub Z from [Z.ss01]; + sub Zacute from [Zacute.ss01]; + sub Zcaron from [Zcaron.ss01]; + sub Zdotaccent from [Zdotaccent.ss01]; + sub Zhe-cy from [Zhe-cy.ss01]; + sub a from [a.ss01]; + sub a-cy from [a-cy.ss01]; + sub aacute from [aacute.ss01]; + sub abreve from [abreve.ss01]; + sub acircumflex from [acircumflex.ss01]; + sub adieresis from [adieresis.ss01]; + sub ae from [ae.ss01]; + sub agrave from [agrave.ss01]; + sub amacron from [amacron.ss01]; + sub aogonek from [aogonek.ss01]; + sub aring from [aring.ss01]; + sub arrowdown from [arrowdown.ss01]; + sub arrowleft from [arrowleft.ss01]; + sub arrowright from [arrowright.ss01]; + sub arrowup from [arrowup.ss01]; + sub atilde from [atilde.ss01]; + sub b from [b.ss01]; + sub caron from [caron.salt]; + sub commaaccentcomb from [commaaccentcomb.salt]; + sub d from [d.ss01]; + sub dcaron from [dcaron.ss01]; + sub dcroat from [dcroat.ss01]; + sub de-cy from [de-cy.ss01]; + sub e from [e.ss01]; + sub eacute from [eacute.ss01]; + sub ebreve from [ebreve.ss01]; + sub ecaron from [ecaron.ss01]; + sub ecircumflex from [ecircumflex.ss01]; + sub edieresis from [edieresis.ss01]; + sub edotaccent from [edotaccent.ss01]; + sub egrave from [egrave.ss01]; + sub el-cy from [el-cy.ss01]; + sub emacron from [emacron.ss01]; + sub eogonek from [eogonek.ss01]; + sub er-cy from [er-cy.ss01]; + sub f from [f.ss01]; + sub f_f from [f_f.ss01]; + sub f_f_i from [f_f_i.ss01]; + sub f_f_l from [f_f_l.ss01]; + sub fi from [fi.ss01]; + sub fl from [fl.ss01]; + sub g from [g.ss01]; + sub gacute from [gacute.ss01]; + sub gbreve from [gbreve.ss01]; + sub gcircumflex from [gcircumflex.ss01]; + sub gcommaaccent from [gcommaaccent.ss01]; + sub gdotaccent from [gdotaccent.ss01]; + sub germandbls from [germandbls.ss01]; + sub hardsign-cy from [hardsign-cy.ss01]; + sub ia-cy from [ia-cy.ss01]; + sub ie-cy from [ie-cy.ss01]; + sub io-cy from [io-cy.ss01]; + sub l from [l.ss01]; + sub lacute from [lacute.ss01]; + sub lcaron from [lcaron.ss01]; + sub lcommaaccent from [lcommaaccent.ss01]; + sub ldot from [ldot.ss01]; + sub ljecyr from [ljecyr.ss01]; + sub lslash from [lslash.ss01]; + sub njecyr from [njecyr.ss01]; + sub numero from [numero.ss01]; + sub oe from [oe.ss01]; + sub p from [p.ss01]; + sub q from [q.ss01]; + sub softsign-cy from [softsign-cy.ss01]; + sub t from [t.ss01]; + sub tbar from [tbar.ss01]; + sub tcaron from [tcaron.ss01]; + sub tcedilla from [tcedilla.ss01]; + sub tcommaaccent from [tcommaaccent.ss01]; + sub te-cy from [te-cy.ss01]; + sub uniE000 from [uniE000.alt]; + sub ve-cy from [ve-cy.ss01]; + sub yen from [yen.ss01]; + sub yeru-cy from [yeru-cy.ss01]; +#< feature +} salt; +feature ss03 { +# Stylistic Set 01–20 + +#> feature + featureNames { + name "Bulgarian forms"; + name 1 "Bulgarian forms"; + }; + + sub @locl_def by @locl_BGR; + +#< feature +} ss03; +feature ss04 { +# Stylistic Set 01–20 + +#> feature + featureNames { + name "Serbian/Macedonian forms"; + name 1 "Serbian/Macedonian forms"; + }; + + sub @loclSRB_def by @locl.SRB; + +#< feature +} ss04; +feature ss01 { +# Stylistic Set 01–20 + +#> feature + + featureNames { + name "Humanistic forms"; + name 1 "Humanistic forms"; + }; + + sub @ss01_def by @ss01; + +#< feature +} ss01; +feature ss05 { +# Stylistic Set 01–20 + +#> feature + + featureNames { + name "Ukrainian pictograms"; + name 1 "Ukrainian pictograms"; + }; + + sub @pics_def by @pics; + +#< feature +} ss05; +feature hist { +# Historical Forms + +#> feature + sub e-cy by e-cy.hist; + sub s by longs; +#< feature +} hist; +feature frac { +# Fractions + +#> feature +lookup frac_precomposed { + + sub one slash four by onequarter; + sub one slash two by onehalf; + sub three slash four by threequarters; + sub one fraction four by onequarter; + sub one fraction two by onehalf; + sub three fraction four by threequarters; +} frac_precomposed; +#< feature +} frac; +feature cpsp { +# Capital Spacing + +#> feature + + pos @cpsp <5 0 10 0>; + +#< feature +} cpsp; +feature dnom { +# Denominator + +#> feature + sub thousandscyr by thousandscyr.dnom; +#< feature +} dnom; diff --git a/sources/FixelDisplay-ExtraLight.ufo/fontinfo.plist b/sources/FixelDisplay-ExtraLight.ufo/fontinfo.plist new file mode 100644 index 00000000..eee72160 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/fontinfo.plist @@ -0,0 +1,207 @@ + + + + + ascender + 720 + capHeight + 700 + descender + -200 + familyName + Fixel Display + guidelines + + + angle + 0 + name + m + x + 0 + y + 229.667 + + + angle + 0 + name + m + x + 0 + y + 189 + + + italicAngle + 0 + openTypeGaspRangeRecords + + + rangeGaspBehavior + + 0 + 1 + 2 + 3 + + rangeMaxPPEM + 65535 + + + openTypeHeadCreated + 2023/09/05 09:25:33 + openTypeHeadFlags + + + openTypeHheaAscender + 720 + openTypeHheaCaretOffset + -0 + openTypeHheaDescender + -190 + openTypeHheaLineGap + 100 + openTypeNameDesigner + AlfaBravo + openTypeNameDesignerURL + https://alfabravo.design/ + openTypeNameManufacturer + Kyrylo Tkachov, Marchela Mozhyna, Serhii Makarenko, Maria Weinstein, Zakhar Kryvoshyya + + openTypeNameManufacturerURL + https://macpaw.com/ + openTypeNamePreferredFamilyName + Fixel Display + openTypeNamePreferredSubfamilyName + ExtraLight + openTypeNameVersion + Version 1.200 + openTypeOS2CodePageRanges + + 0 + 1 + 2 + 4 + 7 + 29 + + openTypeOS2Panose + + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + + openTypeOS2Selection + + + openTypeOS2StrikeoutPosition + 300 + openTypeOS2StrikeoutSize + 50 + openTypeOS2SubscriptXOffset + -0 + openTypeOS2SubscriptXSize + 650 + openTypeOS2SubscriptYOffset + 75 + openTypeOS2SubscriptYSize + 600 + openTypeOS2SuperscriptXOffset + -0 + openTypeOS2SuperscriptXSize + 650 + openTypeOS2SuperscriptYOffset + 350 + openTypeOS2SuperscriptYSize + 600 + openTypeOS2Type + + 2 + + openTypeOS2TypoAscender + 720 + openTypeOS2TypoDescender + -200 + openTypeOS2TypoLineGap + 290 + openTypeOS2UnicodeRanges + + 0 + 1 + 2 + 9 + 31 + 33 + 60 + + openTypeOS2WeightClass + 200 + openTypeOS2WidthClass + 5 + openTypeOS2WinAscent + 750 + openTypeOS2WinDescent + 250 + postscriptBlueFuzz + 1 + postscriptBlueScale + 0.039625 + postscriptBlueShift + 7 + postscriptBlueValues + + -20 + 0 + + postscriptFontName + FixelDisplay-ExtraLight + postscriptForceBold + + postscriptFullName + Fixel Display ExtraLight + postscriptIsFixedPitch + + postscriptStemSnapH + + 69 + 74 + 76 + 80 + 99 + + postscriptStemSnapV + + 74 + 80 + 93 + + postscriptUnderlinePosition + -100 + postscriptUnderlineThickness + 50 + postscriptWeightName + Extra Light + styleMapFamilyName + Fixel Display ExtraLight + styleMapStyleName + regular + styleName + ExtraLight + unitsPerEm + 1000 + versionMajor + 1 + versionMinor + 200 + xHeight + 520 + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/A_-cy.accented.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/A_-cy.accented.glif new file mode 100644 index 00000000..f1125a67 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/A_-cy.accented.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+acute.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/A_-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/A_-cy.glif new file mode 100644 index 00000000..3d1e9eb7 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/A_-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/A_-cy.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/A_-cy.ss01.glif new file mode 100644 index 00000000..7f6b16c0 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/A_-cy.ss01.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + com.fontlab.recipe + A + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/A_.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/A_.glif new file mode 100644 index 00000000..6defb951 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/A_.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/A_.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/A_.ss01.glif new file mode 100644 index 00000000..28561a0f --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/A_.ss01.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/A_E_.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/A_E_.glif new file mode 100644 index 00000000..f709ebe4 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/A_E_.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + A + com.fontlab.metricsRight + E + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/A_E_.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/A_E_.ss01.glif new file mode 100644 index 00000000..8d736b2f --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/A_E_.ss01.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + A.ss01 + com.fontlab.metricsRight + E + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/A_E_acute.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/A_E_acute.glif new file mode 100644 index 00000000..eaf28e90 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/A_E_acute.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + AE+acute.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/A_acute.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/A_acute.glif new file mode 100644 index 00000000..6d2695d3 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/A_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+acute.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/A_acute.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/A_acute.ss01.glif new file mode 100644 index 00000000..a6188076 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/A_acute.ss01.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + A.ss01+acute.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/A_breve.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/A_breve.glif new file mode 100644 index 00000000..9bed758e --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/A_breve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+breve.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/A_breve.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/A_breve.ss01.glif new file mode 100644 index 00000000..edcccfbe --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/A_breve.ss01.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + A.ss01+breve.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/A_brevecyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/A_brevecyr.glif new file mode 100644 index 00000000..6a6393a1 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/A_brevecyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+breve.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/A_caron.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/A_caron.glif new file mode 100644 index 00000000..f15b27f2 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/A_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+caron.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/A_circumflex.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/A_circumflex.glif new file mode 100644 index 00000000..a6575aff --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/A_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+circumflex.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/A_circumflex.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/A_circumflex.ss01.glif new file mode 100644 index 00000000..9de9a5c6 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/A_circumflex.ss01.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + A.ss01+circumflex.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/A_dieresis.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/A_dieresis.glif new file mode 100644 index 00000000..38043542 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/A_dieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+dieresis.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/A_dieresis.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/A_dieresis.ss01.glif new file mode 100644 index 00000000..dd73d7bf --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/A_dieresis.ss01.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + A.ss01+dieresis.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/A_dieresiscyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/A_dieresiscyr.glif new file mode 100644 index 00000000..7153cb5b --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/A_dieresiscyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/A_grave.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/A_grave.glif new file mode 100644 index 00000000..18dd47b7 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/A_grave.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+grave.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/A_grave.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/A_grave.ss01.glif new file mode 100644 index 00000000..341dd4a6 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/A_grave.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A.ss01+grave.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/A_iecyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/A_iecyr.glif new file mode 100644 index 00000000..ec491579 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/A_iecyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + AE + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/A_macron.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/A_macron.glif new file mode 100644 index 00000000..f1ed0734 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/A_macron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+macron.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/A_macron.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/A_macron.ss01.glif new file mode 100644 index 00000000..01532a93 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/A_macron.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A.ss01+macron.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/A_ogonek.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/A_ogonek.glif new file mode 100644 index 00000000..3bb087f5 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/A_ogonek.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+ogonek + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/A_ogonek.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/A_ogonek.ss01.glif new file mode 100644 index 00000000..f648d8e4 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/A_ogonek.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A.ss01+ogonek + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/A_ring.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/A_ring.glif new file mode 100644 index 00000000..fc47cdb4 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/A_ring.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+ring.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/A_ring.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/A_ring.ss01.glif new file mode 100644 index 00000000..11f16f8d --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/A_ring.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A.ss01+ring.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/A_tilde.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/A_tilde.glif new file mode 100644 index 00000000..5d8af773 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/A_tilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+tilde.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/A_tilde.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/A_tilde.ss01.glif new file mode 100644 index 00000000..86f2b212 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/A_tilde.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A.ss01+tilde.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/B_.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/B_.glif new file mode 100644 index 00000000..bf8ff783 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/B_.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/B_e-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/B_e-cy.glif new file mode 100644 index 00000000..008df4cb --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/B_e-cy.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + B-10 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/C_.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/C_.glif new file mode 100644 index 00000000..0e0f8430 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/C_.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/C_R_.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/C_R_.glif new file mode 100644 index 00000000..a38a285e --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/C_R_.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/C_acute.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/C_acute.glif new file mode 100644 index 00000000..718f0f6e --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/C_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+acute.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/C_caron.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/C_caron.glif new file mode 100644 index 00000000..9256ba16 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/C_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+caron.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/C_cedilla.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/C_cedilla.glif new file mode 100644 index 00000000..a6a99103 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/C_cedilla.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+cedilla + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/C_che-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/C_che-cy.glif new file mode 100644 index 00000000..d74275c4 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/C_che-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ч + com.fontlab.metricsRight + Ч + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/C_circumflex.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/C_circumflex.glif new file mode 100644 index 00000000..77f0af4e --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/C_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+circumflex.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/C_dotaccent.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/C_dotaccent.glif new file mode 100644 index 00000000..68b250b3 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/C_dotaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+dotaccent.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/C_he-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/C_he-cy.glif new file mode 100644 index 00000000..f4e96037 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/C_he-cy.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/C_heabkhcyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/C_heabkhcyr.glif new file mode 100644 index 00000000..1cd6c74e --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/C_heabkhcyr.glif @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + |Schwa + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/C_heabkhtailcyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/C_heabkhtailcyr.glif new file mode 100644 index 00000000..6e9f51f5 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/C_heabkhtailcyr.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Cheabkhcyr + com.fontlab.metricsRight + Cheabkhcyr + com.fontlab.recipe + Cheabkhcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/C_hedieresiscyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/C_hedieresiscyr.glif new file mode 100644 index 00000000..fe5fff75 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/C_hedieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Che-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/C_hekhakascyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/C_hekhakascyr.glif new file mode 100644 index 00000000..0bceab9c --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/C_hekhakascyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ч + com.fontlab.metricsRight + H + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/C_hetailcyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/C_hetailcyr.glif new file mode 100644 index 00000000..49284615 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/C_hetailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ч + com.fontlab.metricsRight + Entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/C_hevertcyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/C_hevertcyr.glif new file mode 100644 index 00000000..f8dbda8d --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/C_hevertcyr.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ч + com.fontlab.metricsRight + Н + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/C_rossedO_-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/C_rossedO_-cy.glif new file mode 100644 index 00000000..9ee876bc --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/C_rossedO_-cy.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + com.fontlab.recipe + O + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/D_.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/D_.glif new file mode 100644 index 00000000..fc9d4bf4 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/D_.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/D_caron.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/D_caron.glif new file mode 100644 index 00000000..86e40890 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/D_caron.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + D+caron.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/D_checyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/D_checyr.glif new file mode 100644 index 00000000..73431f63 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/D_checyr.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Д+10 + com.fontlab.metricsRight + Д + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/D_croat.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/D_croat.glif new file mode 100644 index 00000000..edfcaf0e --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/D_croat.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + D + com.fontlab.recipe + Eth + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/D_e-cy.B_G_R_.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/D_e-cy.B_G_R_.glif new file mode 100644 index 00000000..5cbe930d --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/D_e-cy.B_G_R_.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + l() + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/D_e-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/D_e-cy.glif new file mode 100644 index 00000000..8394d662 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/D_e-cy.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/D_eS_oft-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/D_eS_oft-cy.glif new file mode 100644 index 00000000..9521c985 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/D_eS_oft-cy.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Д + com.fontlab.metricsRight + Ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/D_ekomicyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/D_ekomicyr.glif new file mode 100644 index 00000000..6fc1c4a2 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/D_ekomicyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.metricsLeft + |P + com.fontlab.metricsRight + H + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/D_elta.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/D_elta.glif new file mode 100644 index 00000000..06fa169f --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/D_elta.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + A + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/D_jecyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/D_jecyr.glif new file mode 100644 index 00000000..1b6c0f0d --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/D_jecyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/D_jekomicyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/D_jekomicyr.glif new file mode 100644 index 00000000..90330daf --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/D_jekomicyr.glif @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Dekomicyr + com.fontlab.metricsRight + Njekomicyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/D_jerv-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/D_jerv-cy.glif new file mode 100644 index 00000000..ca77707f --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/D_jerv-cy.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + r() + com.fontlab.metricsRight + O + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/D_oubleO_-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/D_oubleO_-cy.glif new file mode 100644 index 00000000..0cda4cbe --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/D_oubleO_-cy.glif @@ -0,0 +1,91 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + com.fontlab.recipe + O_O + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/D_we-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/D_we-cy.glif new file mode 100644 index 00000000..b5cd6e00 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/D_we-cy.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Д + com.fontlab.metricsRight + Д + com.fontlab.recipe + Д + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/D_ze-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/D_ze-cy.glif new file mode 100644 index 00000000..dac9463c --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/D_ze-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + S + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/D_zeR_eversed-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/D_zeR_eversed-cy.glif new file mode 100644 index 00000000..34768bd4 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/D_zeR_eversed-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + S + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/D_zeabkhcyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/D_zeabkhcyr.glif new file mode 100644 index 00000000..3031b8d9 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/D_zeabkhcyr.glif @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + З-10 + com.fontlab.metricsRight + З-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/D_zelo-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/D_zelo-cy.glif new file mode 100644 index 00000000..385509ff --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/D_zelo-cy.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/D_zhecyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/D_zhecyr.glif new file mode 100644 index 00000000..000d33d2 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/D_zhecyr.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/D_zjekomicyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/D_zjekomicyr.glif new file mode 100644 index 00000000..cb6a6ac3 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/D_zjekomicyr.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + З-10 + com.fontlab.metricsRight + Ц-5 + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/D_zwe-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/D_zwe-cy.glif new file mode 100644 index 00000000..b1f257f0 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/D_zwe-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + S + com.fontlab.metricsRight + S + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/D_zze-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/D_zze-cy.glif new file mode 100644 index 00000000..cabadb3e --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/D_zze-cy.glif @@ -0,0 +1,84 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Д + com.fontlab.metricsRight + Д-20 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/D_zzhecyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/D_zzhecyr.glif new file mode 100644 index 00000000..2fda14b4 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/D_zzhecyr.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Д + com.fontlab.metricsRight + Ж + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_-cy.accented.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_-cy.accented.glif new file mode 100644 index 00000000..c3175d0b --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_-cy.accented.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+acute.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_-cy.glif new file mode 100644 index 00000000..6727bd8f --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_-cy.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + C + com.fontlab.metricsRight + C + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_.glif new file mode 100644 index 00000000..9eb429ba --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + com.fontlab.metricsRight + F+10 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_acute.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_acute.glif new file mode 100644 index 00000000..d00e5b20 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+acute.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_breve.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_breve.glif new file mode 100644 index 00000000..7adbbe9c --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_breve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+breve.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_caron.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_caron.glif new file mode 100644 index 00000000..adad40fb --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+caron.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_circumflex.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_circumflex.glif new file mode 100644 index 00000000..2a66ff09 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+circumflex.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_dieresis.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_dieresis.glif new file mode 100644 index 00000000..c1935f6b --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_dieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+dieresiscase.alt + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_dotaccent.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_dotaccent.glif new file mode 100644 index 00000000..e293a6b5 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_dotaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+dotaccent.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_f-cy.B_G_R_.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_f-cy.B_G_R_.glif new file mode 100644 index 00000000..bb4e6fd5 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_f-cy.B_G_R_.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_f-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_f-cy.glif new file mode 100644 index 00000000..b8ea359e --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_f-cy.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_grave.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_grave.glif new file mode 100644 index 00000000..0687f5f0 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_grave.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+grave.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_iotifiedcyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_iotifiedcyr.glif new file mode 100644 index 00000000..c4b9d100 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_iotifiedcyr.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + C + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_l-cy.B_G_R_.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_l-cy.B_G_R_.glif new file mode 100644 index 00000000..090a2784 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_l-cy.B_G_R_.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + A + com.fontlab.metricsRight + l() + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_l-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_l-cy.glif new file mode 100644 index 00000000..7816707d --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_l-cy.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_lS_oft-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_lS_oft-cy.glif new file mode 100644 index 00000000..335cbb39 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_lS_oft-cy.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_lhookcyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_lhookcyr.glif new file mode 100644 index 00000000..f9a4d780 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_lhookcyr.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Л + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_lmiddlehookcyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_lmiddlehookcyr.glif new file mode 100644 index 00000000..731c32c4 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_lmiddlehookcyr.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Shhacyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_lsharptailcyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_lsharptailcyr.glif new file mode 100644 index 00000000..6ee4a0b3 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_lsharptailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Ensharptailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_lsmallcyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_lsmallcyr.glif new file mode 100644 index 00000000..806590fb --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_lsmallcyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + el-cy.BGR + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_ltailcyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_ltailcyr.glif new file mode 100644 index 00000000..8894f9ae --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_ltailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_m-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_m-cy.glif new file mode 100644 index 00000000..ec81aaaf --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_m-cy.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + M + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_m-cy.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_m-cy.ss01.glif new file mode 100644 index 00000000..24c162f2 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_m-cy.ss01.glif @@ -0,0 +1,13 @@ + + + + + + + + + com.fontlab.recipe + M + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_mS_oft-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_mS_oft-cy.glif new file mode 100644 index 00000000..e5ab173d --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_mS_oft-cy.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + M + com.fontlab.metricsRight + Ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_macron.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_macron.glif new file mode 100644 index 00000000..4d1b18ba --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_macron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+macron.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_msharptailcyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_msharptailcyr.glif new file mode 100644 index 00000000..252cad37 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_msharptailcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Н + com.fontlab.metricsRight + Ensharptailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_n-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_n-cy.glif new file mode 100644 index 00000000..18f48fd1 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_n-cy.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + H + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_ng.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_ng.glif new file mode 100644 index 00000000..0ff4d97b --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_ng.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + N + com.fontlab.metricsRight + l() + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_ng.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_ng.ss01.glif new file mode 100644 index 00000000..12d04b0f --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_ng.ss01.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + N.ss01 + com.fontlab.metricsRight + J.ss01 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_ngecyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_ngecyr.glif new file mode 100644 index 00000000..bd0c3e79 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_ngecyr.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_nhookcyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_nhookcyr.glif new file mode 100644 index 00000000..208ca02e --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_nhookcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_nhookleftcyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_nhookleftcyr.glif new file mode 100644 index 00000000..c998f855 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_nhookleftcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + r()-159 + com.fontlab.metricsRight + H + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_nmiddlehookcyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_nmiddlehookcyr.glif new file mode 100644 index 00000000..ef2e1d97 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_nmiddlehookcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Shhacyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_nsharptailcyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_nsharptailcyr.glif new file mode 100644 index 00000000..758fc5a1 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_nsharptailcyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Н + com.fontlab.metricsRight + Д + com.fontlab.recipe + Entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_ntailcyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_ntailcyr.glif new file mode 100644 index 00000000..65cf70ab --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_ntailcyr.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Ц + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_ogonek.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_ogonek.glif new file mode 100644 index 00000000..b926be3e --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_ogonek.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+ogonek + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_r-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_r-cy.glif new file mode 100644 index 00000000..1f44f05d --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_r-cy.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + P + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_reversed-cy.accented.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_reversed-cy.accented.glif new file mode 100644 index 00000000..963e177e --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_reversed-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Э+acute.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_reversed-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_reversed-cy.glif new file mode 100644 index 00000000..a6550779 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_reversed-cy.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |C + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_reverseddieresiscyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_reverseddieresiscyr.glif new file mode 100644 index 00000000..bf12ed91 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_reverseddieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ereversed-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_rtickcyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_rtickcyr.glif new file mode 100644 index 00000000..20cb5336 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_rtickcyr.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + P + com.fontlab.metricsRight + P + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_s-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_s-cy.glif new file mode 100644 index 00000000..63429156 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_s-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_stailcyr.B_S_H_.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_stailcyr.B_S_H_.glif new file mode 100644 index 00000000..2d43193a --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_stailcyr.B_S_H_.glif @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + C + com.fontlab.metricsRight + C + com.fontlab.recipe + C + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_stailcyr.C_H_U_.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_stailcyr.C_H_U_.glif new file mode 100644 index 00000000..ee36b371 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_stailcyr.C_H_U_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+cedilla.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_stailcyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_stailcyr.glif new file mode 100644 index 00000000..fc67afe5 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_stailcyr.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + С + com.fontlab.metricsRight + С + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_th.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_th.glif new file mode 100644 index 00000000..3b97f84a --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/E_th.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + D + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/F_.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/F_.glif new file mode 100644 index 00000000..72cc7d09 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/F_.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/F_itacyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/F_itacyr.glif new file mode 100644 index 00000000..0cb18c95 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/F_itacyr.glif @@ -0,0 +1,78 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + com.fontlab.recipe + Obarcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/G_.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/G_.glif new file mode 100644 index 00000000..66fa7952 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/G_.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O+18 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/G_.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/G_.ss01.glif new file mode 100644 index 00000000..5a54c293 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/G_.ss01.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O+10 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/G_acute.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/G_acute.glif new file mode 100644 index 00000000..c0895e8e --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/G_acute.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + G+acute.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/G_acute.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/G_acute.ss01.glif new file mode 100644 index 00000000..5149d4c5 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/G_acute.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G.ss01+acute.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/G_breve.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/G_breve.glif new file mode 100644 index 00000000..8d4318ec --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/G_breve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G+breve.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/G_breve.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/G_breve.ss01.glif new file mode 100644 index 00000000..0150b191 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/G_breve.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G.ss01+breve.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/G_circumflex.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/G_circumflex.glif new file mode 100644 index 00000000..ada7f51a --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/G_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G+circumflex.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/G_circumflex.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/G_circumflex.ss01.glif new file mode 100644 index 00000000..52bdf8d1 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/G_circumflex.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G.ss01+circumflex.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/G_commaaccent.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/G_commaaccent.glif new file mode 100644 index 00000000..e728ff36 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/G_commaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G+commaaccentcomb + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/G_commaaccent.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/G_commaaccent.ss01.glif new file mode 100644 index 00000000..6bd6da25 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/G_commaaccent.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G.ss01+commaaccentcomb + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/G_dotaccent.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/G_dotaccent.glif new file mode 100644 index 00000000..799d4809 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/G_dotaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G+dotaccent.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/G_dotaccent.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/G_dotaccent.ss01.glif new file mode 100644 index 00000000..0f26f181 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/G_dotaccent.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G.ss01+dotaccent.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/G_e-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/G_e-cy.glif new file mode 100644 index 00000000..1cca6589 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/G_e-cy.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + T + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/G_ehookcyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/G_ehookcyr.glif new file mode 100644 index 00000000..b0b886a1 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/G_ehookcyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Г + com.fontlab.metricsRight + Tshecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/G_ehookstrokecyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/G_ehookstrokecyr.glif new file mode 100644 index 00000000..d1edf0db --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/G_ehookstrokecyr.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Gestrokecyr + com.fontlab.metricsRight + Gestrokecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/G_ermandbls.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/G_ermandbls.glif new file mode 100644 index 00000000..cde8d30b --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/G_ermandbls.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + U + com.fontlab.metricsRight + B-5 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/G_estrokecyr.B_S_H_.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/G_estrokecyr.B_S_H_.glif new file mode 100644 index 00000000..7cc3f4ed --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/G_estrokecyr.B_S_H_.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + F + com.fontlab.metricsRight + Gestrokecyr + com.fontlab.recipe + Gestrokecyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/G_estrokecyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/G_estrokecyr.glif new file mode 100644 index 00000000..60465d0e --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/G_estrokecyr.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + Г + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/G_etailcyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/G_etailcyr.glif new file mode 100644 index 00000000..c01a16fe --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/G_etailcyr.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Г + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/G_heupturn-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/G_heupturn-cy.glif new file mode 100644 index 00000000..e693b317 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/G_heupturn-cy.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Г + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/G_jecyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/G_jecyr.glif new file mode 100644 index 00000000..8a0e9c37 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/G_jecyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ge-cy+acute.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/H_.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/H_.glif new file mode 100644 index 00000000..37bb5fd6 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/H_.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + com.fontlab.metricsRight + I + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/H_a-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/H_a-cy.glif new file mode 100644 index 00000000..2c79f68b --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/H_a-cy.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + X + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/H_a-cy.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/H_a-cy.ss01.glif new file mode 100644 index 00000000..69be3c23 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/H_a-cy.ss01.glif @@ -0,0 +1,14 @@ + + + + + + + + + + com.fontlab.recipe + X + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/H_aabkhcyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/H_aabkhcyr.glif new file mode 100644 index 00000000..2babae45 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/H_aabkhcyr.glif @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/H_ahookcyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/H_ahookcyr.glif new file mode 100644 index 00000000..50a3406a --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/H_ahookcyr.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + X + com.fontlab.metricsRight + X + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/H_ardsign-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/H_ardsign-cy.glif new file mode 100644 index 00000000..89989546 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/H_ardsign-cy.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + Ь + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/H_astrokecyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/H_astrokecyr.glif new file mode 100644 index 00000000..d055e626 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/H_astrokecyr.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + X + com.fontlab.metricsRight + X + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/H_bar.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/H_bar.glif new file mode 100644 index 00000000..481fdc9f --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/H_bar.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + r() + com.fontlab.metricsRight + H + com.schriftgestaltung.Glyphs.rightMetricsKey + H + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/H_circumflex.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/H_circumflex.glif new file mode 100644 index 00000000..99e9bd68 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/H_circumflex.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + H+circumflex.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/H_we-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/H_we-cy.glif new file mode 100644 index 00000000..e63c0534 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/H_we-cy.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Iota-cy + com.fontlab.metricsRight + Tshecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/I_-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/I_-cy.glif new file mode 100644 index 00000000..c96b7ed6 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/I_-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/I_.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/I_.glif new file mode 100644 index 00000000..205ae2be --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/I_.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/I_J_.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/I_J_.glif new file mode 100644 index 00000000..ad72398f --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/I_J_.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + I_J + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/I_a-cy.accented.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/I_a-cy.accented.glif new file mode 100644 index 00000000..e4550cff --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/I_a-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Я+acute.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/I_a-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/I_a-cy.glif new file mode 100644 index 00000000..ec5f5818 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/I_a-cy.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |R+10 + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/I_a-cy.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/I_a-cy.ss01.glif new file mode 100644 index 00000000..cbb81edb --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/I_a-cy.ss01.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/I_acute.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/I_acute.glif new file mode 100644 index 00000000..1cf3a05d --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/I_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+acute.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/I_breve.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/I_breve.glif new file mode 100644 index 00000000..5bd386c1 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/I_breve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+breve.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/I_circumflex.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/I_circumflex.glif new file mode 100644 index 00000000..57b4e188 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/I_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+circumflex.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/I_dieresis.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/I_dieresis.glif new file mode 100644 index 00000000..acb23c54 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/I_dieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+dieresiscase.alt + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/I_dieresiscyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/I_dieresiscyr.glif new file mode 100644 index 00000000..fb84f832 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/I_dieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ii-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/I_dotaccent.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/I_dotaccent.glif new file mode 100644 index 00000000..88815368 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/I_dotaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+dotaccent.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/I_e-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/I_e-cy.glif new file mode 100644 index 00000000..326a9b07 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/I_e-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/I_ebrevecyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/I_ebrevecyr.glif new file mode 100644 index 00000000..5702096d --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/I_ebrevecyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+breve.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/I_egravecyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/I_egravecyr.glif new file mode 100644 index 00000000..96b0981c --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/I_egravecyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+grave.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/I_grave.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/I_grave.glif new file mode 100644 index 00000000..b6d5bf45 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/I_grave.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+grave.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/I_gravecyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/I_gravecyr.glif new file mode 100644 index 00000000..f64dd9d3 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/I_gravecyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ii-cy+grave.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/I_i-cy.accented.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/I_i-cy.accented.glif new file mode 100644 index 00000000..0d814153 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/I_i-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + И+acute.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/I_i-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/I_i-cy.glif new file mode 100644 index 00000000..77d56ce3 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/I_i-cy.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/I_ishort-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/I_ishort-cy.glif new file mode 100644 index 00000000..1191715a --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/I_ishort-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + uni0418+breve.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/I_macron.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/I_macron.glif new file mode 100644 index 00000000..4cc6b934 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/I_macron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+macron.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/I_macroncyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/I_macroncyr.glif new file mode 100644 index 00000000..201c1125 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/I_macroncyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ii-cy+macron.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/I_o-cy.accented.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/I_o-cy.accented.glif new file mode 100644 index 00000000..ee2ebe6d --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/I_o-cy.accented.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + com.fontlab.recipe + E+dieresis.case+acute.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/I_o-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/I_o-cy.glif new file mode 100644 index 00000000..54011aa1 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/I_o-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Edieresis + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/I_ogonek.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/I_ogonek.glif new file mode 100644 index 00000000..b0144dc9 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/I_ogonek.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+ogonek + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/I_ota-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/I_ota-cy.glif new file mode 100644 index 00000000..5f1a2d57 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/I_ota-cy.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |J + com.fontlab.metricsRight + |J + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/I_otifiedA_-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/I_otifiedA_-cy.glif new file mode 100644 index 00000000..bbb5a13a --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/I_otifiedA_-cy.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + com.fontlab.metricsRight + A + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/I_shortsharptailcyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/I_shortsharptailcyr.glif new file mode 100644 index 00000000..3bac1a6b --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/I_shortsharptailcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Й + com.fontlab.metricsRight + Ensharptailcyr + com.fontlab.recipe + Й + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/I_tilde.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/I_tilde.glif new file mode 100644 index 00000000..29df2c9c --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/I_tilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+tilde.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/I_u-cy.accented.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/I_u-cy.accented.glif new file mode 100644 index 00000000..6bf0f792 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/I_u-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ю+acute.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/I_u-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/I_u-cy.glif new file mode 100644 index 00000000..39b35df7 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/I_u-cy.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/I_zhitsacyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/I_zhitsacyr.glif new file mode 100644 index 00000000..49751244 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/I_zhitsacyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + V + com.fontlab.metricsRight + + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/I_zhitsagravedblcyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/I_zhitsagravedblcyr.glif new file mode 100644 index 00000000..b48250ea --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/I_zhitsagravedblcyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + com.fontlab.metricsLeft + Izhitsacyr + com.fontlab.metricsRight + Izhitsacyr + com.fontlab.recipe + Izhitsacyr+hungarumlaut.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/J_.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/J_.glif new file mode 100644 index 00000000..3b19bc50 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/J_.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + U + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/J_.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/J_.ss01.glif new file mode 100644 index 00000000..cde5ff36 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/J_.ss01.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + U + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/J_circumflex.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/J_circumflex.glif new file mode 100644 index 00000000..6f4270a7 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/J_circumflex.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + J+circumflex.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/J_circumflex.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/J_circumflex.ss01.glif new file mode 100644 index 00000000..76d1bc85 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/J_circumflex.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + J.ss01+circumflex.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/J_ecyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/J_ecyr.glif new file mode 100644 index 00000000..13a5e0b7 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/J_ecyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsLeft + J + com.fontlab.metricsRight + J + com.fontlab.recipe + J + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/K_.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/K_.glif new file mode 100644 index 00000000..a1433221 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/K_.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/K_.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/K_.ss01.glif new file mode 100644 index 00000000..78560cb9 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/K_.ss01.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/K_a-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/K_a-cy.glif new file mode 100644 index 00000000..4e67a151 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/K_a-cy.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.recipe + K + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/K_a-cy.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/K_a-cy.ss01.glif new file mode 100644 index 00000000..a12859d8 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/K_a-cy.ss01.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.recipe + K + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/K_aaleutcyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/K_aaleutcyr.glif new file mode 100644 index 00000000..059ca10d --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/K_aaleutcyr.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + K + com.fontlab.metricsRight + K + com.fontlab.recipe + K + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/K_abashkcyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/K_abashkcyr.glif new file mode 100644 index 00000000..b83be874 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/K_abashkcyr.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Hardsign-cy + com.fontlab.metricsRight + K + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/K_ahookcyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/K_ahookcyr.glif new file mode 100644 index 00000000..d339e2f6 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/K_ahookcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + K + com.fontlab.metricsRight + Djecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/K_astrokecyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/K_astrokecyr.glif new file mode 100644 index 00000000..d1c4b4cc --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/K_astrokecyr.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Yatcyr + com.fontlab.metricsRight + K + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/K_atailcyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/K_atailcyr.glif new file mode 100644 index 00000000..510d0f3e --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/K_atailcyr.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + К-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/K_averticalstrokecyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/K_averticalstrokecyr.glif new file mode 100644 index 00000000..8b9f311e --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/K_averticalstrokecyr.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + K + com.fontlab.metricsRight + Ж + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/K_commaaccent.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/K_commaaccent.glif new file mode 100644 index 00000000..9a6dcb3c --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/K_commaaccent.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + K+commaaccentcomb + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/K_commaaccent.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/K_commaaccent.ss01.glif new file mode 100644 index 00000000..8f7ce1d1 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/K_commaaccent.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + K.ss01+commaaccentcomb + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/K_jecyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/K_jecyr.glif new file mode 100644 index 00000000..98df9c9d --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/K_jecyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ka-cy+acute.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/K_oppacyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/K_oppacyr.glif new file mode 100644 index 00000000..d2fa5209 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/K_oppacyr.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + C-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/K_sicyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/K_sicyr.glif new file mode 100644 index 00000000..6c7634f4 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/K_sicyr.glif @@ -0,0 +1,98 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + З-10 + com.fontlab.metricsRight + З + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/L_.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/L_.glif new file mode 100644 index 00000000..50925bef --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/L_.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/L_acute.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/L_acute.glif new file mode 100644 index 00000000..cb50759b --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/L_acute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + L+acute.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/L_caron.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/L_caron.glif new file mode 100644 index 00000000..db448efb --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/L_caron.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + com.fontlab.recipe + L+caron.salt + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/L_commaaccent.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/L_commaaccent.glif new file mode 100644 index 00000000..87fd0f0c --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/L_commaaccent.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + L+commaaccentcomb + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/L_dot.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/L_dot.glif new file mode 100644 index 00000000..c91d57ac --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/L_dot.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + com.fontlab.metricsRight + L + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/L_hacyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/L_hacyr.glif new file mode 100644 index 00000000..cb43e7e5 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/L_hacyr.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + X + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/L_jecyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/L_jecyr.glif new file mode 100644 index 00000000..db0efd95 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/L_jecyr.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Ь + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/L_jekomicyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/L_jekomicyr.glif new file mode 100644 index 00000000..a5c99531 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/L_jekomicyr.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Njekomicyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/L_slash.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/L_slash.glif new file mode 100644 index 00000000..2d400da7 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/L_slash.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + L-80 + com.fontlab.metricsRight + L + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/M_.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/M_.glif new file mode 100644 index 00000000..75719887 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/M_.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/M_.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/M_.ss01.glif new file mode 100644 index 00000000..f12b7797 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/M_.ss01.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H-25 + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/N_.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/N_.glif new file mode 100644 index 00000000..4996feb6 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/N_.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/N_.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/N_.ss01.glif new file mode 100644 index 00000000..38f97c3b --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/N_.ss01.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H-10 + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/N_U_L_L_.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/N_U_L_L_.glif new file mode 100644 index 00000000..1ad177ae --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/N_U_L_L_.glif @@ -0,0 +1,4 @@ + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/N_acute.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/N_acute.glif new file mode 100644 index 00000000..8997561b --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/N_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N+acute.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/N_acute.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/N_acute.ss01.glif new file mode 100644 index 00000000..39d99ef9 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/N_acute.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N.ss01+acute.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/N_caron.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/N_caron.glif new file mode 100644 index 00000000..856a2a45 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/N_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N+caron.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/N_caron.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/N_caron.ss01.glif new file mode 100644 index 00000000..d10ea6ac --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/N_caron.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N.ss01+caron.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/N_commaaccent.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/N_commaaccent.glif new file mode 100644 index 00000000..8bd6aa4a --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/N_commaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N+commaaccentcomb + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/N_commaaccent.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/N_commaaccent.ss01.glif new file mode 100644 index 00000000..6f303af3 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/N_commaaccent.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N.ss01+commaaccentcomb + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/N_jecyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/N_jecyr.glif new file mode 100644 index 00000000..886be465 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/N_jecyr.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Н + com.fontlab.metricsRight + Ь + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/N_jekomicyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/N_jekomicyr.glif new file mode 100644 index 00000000..26c10ec1 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/N_jekomicyr.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + |u + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/N_tilde.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/N_tilde.glif new file mode 100644 index 00000000..5847fcfd --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/N_tilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N+tilde.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/N_tilde.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/N_tilde.ss01.glif new file mode 100644 index 00000000..3ef5b0d8 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/N_tilde.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N.ss01+tilde.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/O_-cy.accented.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/O_-cy.accented.glif new file mode 100644 index 00000000..e4a96d5b --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/O_-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+acute.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/O_-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/O_-cy.glif new file mode 100644 index 00000000..f1977a98 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/O_-cy.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/O_.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/O_.glif new file mode 100644 index 00000000..2b6a0a3a --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/O_.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/O_B_inocular-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/O_B_inocular-cy.glif new file mode 100644 index 00000000..3e76eb3d --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/O_B_inocular-cy.glif @@ -0,0 +1,81 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/O_D_oubleM_onocular-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/O_D_oubleM_onocular-cy.glif new file mode 100644 index 00000000..b10a09e7 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/O_D_oubleM_onocular-cy.glif @@ -0,0 +1,119 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + com.fontlab.recipe + DoubleO-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/O_E_.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/O_E_.glif new file mode 100644 index 00000000..6c96c652 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/O_E_.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + E + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/O_M_onocular-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/O_M_onocular-cy.glif new file mode 100644 index 00000000..dd12f8db --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/O_M_onocular-cy.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/O_acute.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/O_acute.glif new file mode 100644 index 00000000..50ce8e6b --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/O_acute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+acute.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/O_barcyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/O_barcyr.glif new file mode 100644 index 00000000..387ad5be --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/O_barcyr.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + r() + com.fontlab.metricsRight + O + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/O_bardieresiscyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/O_bardieresiscyr.glif new file mode 100644 index 00000000..5233b46e --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/O_bardieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Obarcyr+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/O_breve.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/O_breve.glif new file mode 100644 index 00000000..9e3f75d4 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/O_breve.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+breve.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/O_circumflex.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/O_circumflex.glif new file mode 100644 index 00000000..e050b1c6 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/O_circumflex.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+circumflex.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/O_dieresis.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/O_dieresis.glif new file mode 100644 index 00000000..a05819b3 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/O_dieresis.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+dieresis.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/O_dieresiscyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/O_dieresiscyr.glif new file mode 100644 index 00000000..c94ce4f6 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/O_dieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/O_grave.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/O_grave.glif new file mode 100644 index 00000000..0e9c5430 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/O_grave.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+grave.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/O_hungarumlaut.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/O_hungarumlaut.glif new file mode 100644 index 00000000..3da3da6d --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/O_hungarumlaut.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+hungarumlaut.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/O_macron.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/O_macron.glif new file mode 100644 index 00000000..f9c39a74 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/O_macron.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+macron.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/O_mega.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/O_mega.glif new file mode 100644 index 00000000..190f1955 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/O_mega.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O+10 + com.fontlab.metricsRight + O+10 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/O_megaB_road-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/O_megaB_road-cy.glif new file mode 100644 index 00000000..4980f6d9 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/O_megaB_road-cy.glif @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O+10 + com.fontlab.metricsRight + O+10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/O_megacyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/O_megacyr.glif new file mode 100644 index 00000000..eddecc4f --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/O_megacyr.glif @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O+10 + com.fontlab.metricsRight + O+10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/O_megaroundcyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/O_megaroundcyr.glif new file mode 100644 index 00000000..2a272959 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/O_megaroundcyr.glif @@ -0,0 +1,81 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/O_megatitlocyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/O_megatitlocyr.glif new file mode 100644 index 00000000..2888c9c1 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/O_megatitlocyr.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O+10 + com.fontlab.metricsRight + O+10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/O_slash.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/O_slash.glif new file mode 100644 index 00000000..65d348e2 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/O_slash.glif @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/O_slashacute.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/O_slashacute.glif new file mode 100644 index 00000000..526f2582 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/O_slashacute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Oslash+acute.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/O_tcyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/O_tcyr.glif new file mode 100644 index 00000000..3f3275c0 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/O_tcyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Omegacyr+uni2DEE.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/O_tilde.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/O_tilde.glif new file mode 100644 index 00000000..839da3ba --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/O_tilde.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+tilde.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/P_.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/P_.glif new file mode 100644 index 00000000..1394e399 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/P_.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/P_alochkacyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/P_alochkacyr.glif new file mode 100644 index 00000000..571e2d4f --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/P_alochkacyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/P_e-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/P_e-cy.glif new file mode 100644 index 00000000..543d8a4d --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/P_e-cy.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/P_ehookcyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/P_ehookcyr.glif new file mode 100644 index 00000000..15097617 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/P_ehookcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + П + com.fontlab.metricsRight + Shhacyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/P_etailcyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/P_etailcyr.glif new file mode 100644 index 00000000..9d3dcd89 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/P_etailcyr.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/P_sicyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/P_sicyr.glif new file mode 100644 index 00000000..8ffbc713 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/P_sicyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + U-20 + com.fontlab.metricsRight + U-20 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/Q_.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/Q_.glif new file mode 100644 index 00000000..c6c6298c --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/Q_.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/Q_.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/Q_.ss01.glif new file mode 100644 index 00000000..8e1254d2 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/Q_.ss01.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/Q_acyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/Q_acyr.glif new file mode 100644 index 00000000..7fc7103c --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/Q_acyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Q + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/R_.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/R_.glif new file mode 100644 index 00000000..3922d3ab --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/R_.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/R_acute.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/R_acute.glif new file mode 100644 index 00000000..cdadb99b --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/R_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + R+acute.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/R_caron.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/R_caron.glif new file mode 100644 index 00000000..e748c6e1 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/R_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + R+caron.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/R_commaaccent.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/R_commaaccent.glif new file mode 100644 index 00000000..7eb8167b --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/R_commaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + R+commaaccentcomb + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/R_eversedzecyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/R_eversedzecyr.glif new file mode 100644 index 00000000..869516c9 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/R_eversedzecyr.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + + com.fontlab.metricsRight + + com.fontlab.recipe + З + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/R_hacyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/R_hacyr.glif new file mode 100644 index 00000000..796fe0d9 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/R_hacyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + P + com.fontlab.metricsRight + X + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/S_.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/S_.glif new file mode 100644 index 00000000..3d0d1ad9 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/S_.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/S_acute.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/S_acute.glif new file mode 100644 index 00000000..09b3c18c --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/S_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + S+acute.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/S_caron.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/S_caron.glif new file mode 100644 index 00000000..8f92204e --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/S_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + S+caron.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/S_cedilla.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/S_cedilla.glif new file mode 100644 index 00000000..1e587b4c --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/S_cedilla.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + S+cedilla + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/S_chwa.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/S_chwa.glif new file mode 100644 index 00000000..428dceca --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/S_chwa.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Schwacyr + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/S_chwacyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/S_chwacyr.glif new file mode 100644 index 00000000..898bb8fa --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/S_chwacyr.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O-10 + com.fontlab.metricsRight + O + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/S_chwadieresiscyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/S_chwadieresiscyr.glif new file mode 100644 index 00000000..9bfd3b1e --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/S_chwadieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Schwacyr+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/S_circumflex.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/S_circumflex.glif new file mode 100644 index 00000000..c7b3849d --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/S_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + S+circumflex.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/S_commaaccent.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/S_commaaccent.glif new file mode 100644 index 00000000..eb86d440 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/S_commaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + S+commaaccentcomb + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/S_emisoftcyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/S_emisoftcyr.glif new file mode 100644 index 00000000..e644bfa4 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/S_emisoftcyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Yat + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/S_ha-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/S_ha-cy.glif new file mode 100644 index 00000000..28789238 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/S_ha-cy.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/S_hcha-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/S_hcha-cy.glif new file mode 100644 index 00000000..54f02ff5 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/S_hcha-cy.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Д + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/S_hhacyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/S_hhacyr.glif new file mode 100644 index 00000000..b4b69338 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/S_hhacyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.metricsLeft + Н + com.fontlab.metricsRight + Tshecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/S_hhatailcyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/S_hhatailcyr.glif new file mode 100644 index 00000000..21a432f6 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/S_hhatailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/S_hwe-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/S_hwe-cy.glif new file mode 100644 index 00000000..711a503e --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/S_hwe-cy.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Щ + com.fontlab.metricsRight + Щ-20 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/S_jekomicyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/S_jekomicyr.glif new file mode 100644 index 00000000..4e540a72 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/S_jekomicyr.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + |Schwa + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/S_oftsign-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/S_oftsign-cy.glif new file mode 100644 index 00000000..8c1c9e6b --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/S_oftsign-cy.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + P + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/T_.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/T_.glif new file mode 100644 index 00000000..d692971f --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/T_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/T_bar.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/T_bar.glif new file mode 100644 index 00000000..7c149ba5 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/T_bar.glif @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/T_caron.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/T_caron.glif new file mode 100644 index 00000000..9dcdfd16 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/T_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + T+caron.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/T_cedilla.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/T_cedilla.glif new file mode 100644 index 00000000..8238631b --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/T_cedilla.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + T+cedilla + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/T_che-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/T_che-cy.glif new file mode 100644 index 00000000..1d33fbf6 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/T_che-cy.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Tetsecyr-20 + com.fontlab.metricsRight + Ч + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/T_commaaccent.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/T_commaaccent.glif new file mode 100644 index 00000000..921fa6f1 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/T_commaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + T+commaaccentcomb + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/T_e-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/T_e-cy.glif new file mode 100644 index 00000000..d6ea13f0 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/T_e-cy.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + com.fontlab.recipe + T + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/T_eW_ithM_iddleH_ook-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/T_eW_ithM_iddleH_ook-cy.glif new file mode 100644 index 00000000..17ec0057 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/T_eW_ithM_iddleH_ook-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Djecyr + com.fontlab.metricsRight + Gehookcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/T_etailcyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/T_etailcyr.glif new file mode 100644 index 00000000..3f7ff7ba --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/T_etailcyr.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/T_etsecyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/T_etsecyr.glif new file mode 100644 index 00000000..ea3a75a8 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/T_etsecyr.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Tshecyr + com.fontlab.metricsRight + Ц + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/T_horn.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/T_horn.glif new file mode 100644 index 00000000..37a0e37d --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/T_horn.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + P + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/T_jekomicyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/T_jekomicyr.glif new file mode 100644 index 00000000..577bc310 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/T_jekomicyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + Njekomicyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/T_se-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/T_se-cy.glif new file mode 100644 index 00000000..77919f8b --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/T_se-cy.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Д + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/T_seR_eversed-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/T_seR_eversed-cy.glif new file mode 100644 index 00000000..8e02daa2 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/T_seR_eversed-cy.glif @@ -0,0 +1,20 @@ + + + + + + + + + + com.fontlab.metricsLeft + + com.fontlab.metricsRight + H + com.fontlab.recipe + Ц + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/T_shecyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/T_shecyr.glif new file mode 100644 index 00000000..e3f8cd8c --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/T_shecyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + n + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/T_sse-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/T_sse-cy.glif new file mode 100644 index 00000000..a09e357b --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/T_sse-cy.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + T + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/T_swe-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/T_swe-cy.glif new file mode 100644 index 00000000..24f45acc --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/T_swe-cy.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Shwe-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/T_we-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/T_we-cy.glif new file mode 100644 index 00000000..bb0d67dd --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/T_we-cy.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + T + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/U_-cy.accented.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/U_-cy.accented.glif new file mode 100644 index 00000000..8c09b2a4 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/U_-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + У+acute.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/U_-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/U_-cy.glif new file mode 100644 index 00000000..faad2766 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/U_-cy.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Y+10 + com.fontlab.metricsRight + Y+5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/U_-cy.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/U_-cy.ss01.glif new file mode 100644 index 00000000..8e1e3ecb --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/U_-cy.ss01.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/U_.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/U_.glif new file mode 100644 index 00000000..fcc03692 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/U_.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H-10 + com.fontlab.metricsRight + H-10 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/U_acute.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/U_acute.glif new file mode 100644 index 00000000..dfe8e688 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/U_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+acute.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/U_acutedblcyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/U_acutedblcyr.glif new file mode 100644 index 00000000..421ced57 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/U_acutedblcyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U-cy+hungarumlaut.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/U_breve.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/U_breve.glif new file mode 100644 index 00000000..b4d84723 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/U_breve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+breve.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/U_circumflex.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/U_circumflex.glif new file mode 100644 index 00000000..b316dc87 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/U_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+circumflex.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/U_dieresis.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/U_dieresis.glif new file mode 100644 index 00000000..03296862 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/U_dieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+dieresis.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/U_dieresiscyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/U_dieresiscyr.glif new file mode 100644 index 00000000..d097e75b --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/U_dieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/U_grave.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/U_grave.glif new file mode 100644 index 00000000..fc0097e0 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/U_grave.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+grave.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/U_hungarumlaut.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/U_hungarumlaut.glif new file mode 100644 index 00000000..8e9c33a1 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/U_hungarumlaut.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+hungarumlaut.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/U_kM_onograph-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/U_kM_onograph-cy.glif new file mode 100644 index 00000000..950a4007 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/U_kM_onograph-cy.glif @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/U_kcyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/U_kcyr.glif new file mode 100644 index 00000000..81d7b617 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/U_kcyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + y + com.fontlab.recipe + О_у + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/U_macron.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/U_macron.glif new file mode 100644 index 00000000..a7f13edd --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/U_macron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+macron.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/U_macroncyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/U_macroncyr.glif new file mode 100644 index 00000000..7a749989 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/U_macroncyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U-cy+macron.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/U_ogonek.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/U_ogonek.glif new file mode 100644 index 00000000..d648b88e --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/U_ogonek.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + U+ogonek + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/U_ring.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/U_ring.glif new file mode 100644 index 00000000..b32fe1de --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/U_ring.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+ring.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/U_short-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/U_short-cy.glif new file mode 100644 index 00000000..8a55ea1b --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/U_short-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ucyr+breve.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/U_short-cy.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/U_short-cy.ss01.glif new file mode 100644 index 00000000..42b8b3d8 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/U_short-cy.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ucyr.ss01+breve.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/U_straightcyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/U_straightcyr.glif new file mode 100644 index 00000000..3f09ae52 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/U_straightcyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsRight + Y + com.fontlab.recipe + Y + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/U_straightstrokecyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/U_straightstrokecyr.glif new file mode 100644 index 00000000..46dcc6e5 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/U_straightstrokecyr.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/U_tilde.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/U_tilde.glif new file mode 100644 index 00000000..4bb11384 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/U_tilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+tilde.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/V_.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/V_.glif new file mode 100644 index 00000000..28d35c14 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/V_.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/V_.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/V_.ss01.glif new file mode 100644 index 00000000..b170fa21 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/V_.ss01.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/V_e-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/V_e-cy.glif new file mode 100644 index 00000000..9c20e4d8 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/V_e-cy.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + B + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/W_.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/W_.glif new file mode 100644 index 00000000..61957fba --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/W_.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/W_.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/W_.ss01.glif new file mode 100644 index 00000000..b923ed49 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/W_.ss01.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |A + com.fontlab.metricsRight + |A + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/W_acute.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/W_acute.glif new file mode 100644 index 00000000..c0be69b2 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/W_acute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W+acute.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/W_acute.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/W_acute.ss01.glif new file mode 100644 index 00000000..3a37a8cc --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/W_acute.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W.ss01+acute.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/W_circumflex.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/W_circumflex.glif new file mode 100644 index 00000000..ed9b7905 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/W_circumflex.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W+circumflex.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/W_circumflex.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/W_circumflex.ss01.glif new file mode 100644 index 00000000..57058c30 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/W_circumflex.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W.ss01+circumflex.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/W_dieresis.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/W_dieresis.glif new file mode 100644 index 00000000..4ded4805 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/W_dieresis.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + W+dieresis.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/W_dieresis.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/W_dieresis.ss01.glif new file mode 100644 index 00000000..e1363d20 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/W_dieresis.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W.ss01+dieresis.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/W_ecyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/W_ecyr.glif new file mode 100644 index 00000000..a3858533 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/W_ecyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/W_grave.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/W_grave.glif new file mode 100644 index 00000000..1b23ebeb --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/W_grave.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W+grave.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/W_grave.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/W_grave.ss01.glif new file mode 100644 index 00000000..7f45de4f --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/W_grave.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W.ss01+grave.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/X_.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/X_.glif new file mode 100644 index 00000000..1ba0810c --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/X_.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/X_.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/X_.ss01.glif new file mode 100644 index 00000000..1d32e24c --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/X_.ss01.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/X_atailcyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/X_atailcyr.glif new file mode 100644 index 00000000..f5d541b9 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/X_atailcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + X + com.fontlab.metricsRight + Katailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/Y_.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/Y_.glif new file mode 100644 index 00000000..e5002e2a --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/Y_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/Y_.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/Y_.ss01.glif new file mode 100644 index 00000000..73b343e3 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/Y_.ss01.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/Y_acute.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/Y_acute.glif new file mode 100644 index 00000000..4bd3f509 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/Y_acute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y+acute.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/Y_acute.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/Y_acute.ss01.glif new file mode 100644 index 00000000..b801bb67 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/Y_acute.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y.ss01+acute.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/Y_aecyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/Y_aecyr.glif new file mode 100644 index 00000000..613c1449 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/Y_aecyr.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Я + com.fontlab.metricsRight + E + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/Y_atI_otified-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/Y_atI_otified-cy.glif new file mode 100644 index 00000000..6680abe3 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/Y_atI_otified-cy.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + com.fontlab.metricsRight + Yatcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/Y_atcyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/Y_atcyr.glif new file mode 100644 index 00000000..bf718827 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/Y_atcyr.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Т + com.fontlab.metricsRight + Ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/Y_circumflex.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/Y_circumflex.glif new file mode 100644 index 00000000..93049ab2 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/Y_circumflex.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y+circumflex.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/Y_circumflex.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/Y_circumflex.ss01.glif new file mode 100644 index 00000000..c9198fa1 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/Y_circumflex.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y.ss01+circumflex.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/Y_dieresis.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/Y_dieresis.glif new file mode 100644 index 00000000..84feaff1 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/Y_dieresis.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y+dieresis.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/Y_dieresis.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/Y_dieresis.ss01.glif new file mode 100644 index 00000000..4bbfa43f --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/Y_dieresis.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y.ss01+dieresis.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/Y_erN_eutral-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/Y_erN_eutral-cy.glif new file mode 100644 index 00000000..a054e628 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/Y_erN_eutral-cy.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Hardsign-cy + com.fontlab.metricsRight + Ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/Y_eru-cy.accented.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/Y_eru-cy.accented.glif new file mode 100644 index 00000000..26f7eac3 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/Y_eru-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ы+acute.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/Y_eru-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/Y_eru-cy.glif new file mode 100644 index 00000000..8c0a8159 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/Y_eru-cy.glif @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/Y_eru-cymacron.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/Y_eru-cymacron.glif new file mode 100644 index 00000000..e2f207b2 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/Y_eru-cymacron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ы+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/Y_eruB_ackY_er-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/Y_eruB_ackY_er-cy.glif new file mode 100644 index 00000000..0d6fc2cf --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/Y_eruB_ackY_er-cy.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Hardsign + com.fontlab.metricsRight + I + com.fontlab.recipe + Hardsign-cy_I + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/Y_i-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/Y_i-cy.glif new file mode 100644 index 00000000..5972648e --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/Y_i-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Idieresis + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/Y_longdieresiscyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/Y_longdieresiscyr.glif new file mode 100644 index 00000000..e3baed75 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/Y_longdieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Yeru-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/Y_n-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/Y_n-cy.glif new file mode 100644 index 00000000..14181889 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/Y_n-cy.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |Izhitsa + com.fontlab.metricsRight + |Izhitsa + com.fontlab.recipe + Izhitsa + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/Y_uR_eversed-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/Y_uR_eversed-cy.glif new file mode 100644 index 00000000..ab9957b9 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/Y_uR_eversed-cy.glif @@ -0,0 +1,20 @@ + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + H + com.fontlab.recipe + Ю + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/Y_usB_lended-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/Y_usB_lended-cy.glif new file mode 100644 index 00000000..571eb30c --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/Y_usB_lended-cy.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Yusbigcyr + com.fontlab.metricsRight + Yusbigcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/Y_usC_losedlittle-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/Y_usC_losedlittle-cy.glif new file mode 100644 index 00000000..27a22af5 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/Y_usC_losedlittle-cy.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + A + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/Y_usbigcyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/Y_usbigcyr.glif new file mode 100644 index 00000000..c4658d76 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/Y_usbigcyr.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ж + com.fontlab.metricsRight + Ж + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/Y_usbigiotifiedcyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/Y_usbigiotifiedcyr.glif new file mode 100644 index 00000000..b2751ab6 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/Y_usbigiotifiedcyr.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + Ж + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/Y_usiotifiedC_losedL_ittle-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/Y_usiotifiedC_losedL_ittle-cy.glif new file mode 100644 index 00000000..84cdb6a3 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/Y_usiotifiedC_losedL_ittle-cy.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + A + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/Y_uslittlecyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/Y_uslittlecyr.glif new file mode 100644 index 00000000..ef78e9d2 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/Y_uslittlecyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + А-5 + com.fontlab.metricsRight + А-5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/Y_uslittleiotifiedcyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/Y_uslittleiotifiedcyr.glif new file mode 100644 index 00000000..e6a1e807 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/Y_uslittleiotifiedcyr.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + А-5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/Z_.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/Z_.glif new file mode 100644 index 00000000..21f36c5d --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/Z_.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/Z_.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/Z_.ss01.glif new file mode 100644 index 00000000..034fece2 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/Z_.ss01.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/Z_acute.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/Z_acute.glif new file mode 100644 index 00000000..cf8bb4d6 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/Z_acute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Z+acute.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/Z_acute.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/Z_acute.ss01.glif new file mode 100644 index 00000000..a0cd3880 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/Z_acute.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Z.ss01+acute.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/Z_caron.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/Z_caron.glif new file mode 100644 index 00000000..8f94c7e8 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/Z_caron.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Z+caron.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/Z_caron.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/Z_caron.ss01.glif new file mode 100644 index 00000000..8778bbda --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/Z_caron.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Z.ss01+caron.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/Z_dotaccent.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/Z_dotaccent.glif new file mode 100644 index 00000000..2f801b33 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/Z_dotaccent.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Z+dotaccent.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/Z_dotaccent.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/Z_dotaccent.ss01.glif new file mode 100644 index 00000000..8e1282cb --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/Z_dotaccent.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Z.ss01+dotaccent.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/Z_e-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/Z_e-cy.glif new file mode 100644 index 00000000..d3ebe96d --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/Z_e-cy.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |C + com.fontlab.metricsRight + B + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/Z_edieresiscyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/Z_edieresiscyr.glif new file mode 100644 index 00000000..08b3f15d --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/Z_edieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ze-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/Z_emlya-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/Z_emlya-cy.glif new file mode 100644 index 00000000..0dcaf007 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/Z_emlya-cy.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Z-10 + com.fontlab.metricsRight + Z + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/Z_etailcyr.B_S_H_.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/Z_etailcyr.B_S_H_.glif new file mode 100644 index 00000000..5ea5485b --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/Z_etailcyr.B_S_H_.glif @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + З + com.fontlab.metricsRight + З + com.fontlab.recipe + Zetailcyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/Z_etailcyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/Z_etailcyr.glif new file mode 100644 index 00000000..e0957427 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/Z_etailcyr.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + З + com.fontlab.metricsRight + З + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/Z_he-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/Z_he-cy.glif new file mode 100644 index 00000000..52fc7ffd --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/Z_he-cy.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |K + com.fontlab.metricsRight + K + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/Z_he-cy.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/Z_he-cy.ss01.glif new file mode 100644 index 00000000..f93dedc4 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/Z_he-cy.ss01.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |K + com.fontlab.metricsRight + K + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/Z_hebrevecyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/Z_hebrevecyr.glif new file mode 100644 index 00000000..0e047fbc --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/Z_hebrevecyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Zhe-cy+breve.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/Z_hedieresiscyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/Z_hedieresiscyr.glif new file mode 100644 index 00000000..43d48165 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/Z_hedieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Zhe-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/Z_hetailcyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/Z_hetailcyr.glif new file mode 100644 index 00000000..f1a9709a --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/Z_hetailcyr.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ж + com.fontlab.metricsRight + Katailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/Z_hwe-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/Z_hwe-cy.glif new file mode 100644 index 00000000..827e72f6 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/Z_hwe-cy.glif @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + З + com.fontlab.metricsRight + Ж + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/Z_jekomicyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/Z_jekomicyr.glif new file mode 100644 index 00000000..1515d7cf --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/Z_jekomicyr.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Dzjekomicyr + com.fontlab.metricsRight + Njekomicyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/_notdef.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/_notdef.glif new file mode 100644 index 00000000..7261060b --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/_notdef.glif @@ -0,0 +1,178 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + =55 + com.schriftgestaltung.Glyphs.rightMetricsKey + =55 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/_perc-circule.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/_perc-circule.glif new file mode 100644 index 00000000..b3830ced --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/_perc-circule.glif @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.schriftgestaltung.Glyphs.Export + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/a-cy.accented.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/a-cy.accented.glif new file mode 100644 index 00000000..2173a682 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/a-cy.accented.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+acute + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/a-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/a-cy.glif new file mode 100644 index 00000000..34358dd3 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/a-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/a-cy.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/a-cy.ss01.glif new file mode 100644 index 00000000..b637970a --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/a-cy.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/a.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/a.glif new file mode 100644 index 00000000..4c9c0fdb --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/a.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + n-10 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/a.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/a.ss01.glif new file mode 100644 index 00000000..5c90ed2b --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/a.ss01.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/aacute.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/aacute.glif new file mode 100644 index 00000000..b1769ee8 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/aacute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+acute + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/aacute.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/aacute.ss01.glif new file mode 100644 index 00000000..f2874249 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/aacute.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+acute + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/abreve.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/abreve.glif new file mode 100644 index 00000000..32d65123 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/abreve.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+breve + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/abreve.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/abreve.ss01.glif new file mode 100644 index 00000000..09873823 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/abreve.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+breve + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/abrevecyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/abrevecyr.glif new file mode 100644 index 00000000..ddcc7840 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/abrevecyr.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+breve + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/acaron.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/acaron.glif new file mode 100644 index 00000000..aeb76539 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/acaron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+caron + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/acircumflex.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/acircumflex.glif new file mode 100644 index 00000000..5fc443a3 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/acircumflex.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+circumflex + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/acircumflex.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/acircumflex.ss01.glif new file mode 100644 index 00000000..9e9789c8 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/acircumflex.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+circumflex + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/acute.case.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/acute.case.glif new file mode 100644 index 00000000..5b1d1ddf --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/acute.case.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/acute.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/acute.glif new file mode 100644 index 00000000..255828db --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/acute.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/adieresis.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/adieresis.glif new file mode 100644 index 00000000..959c6d5f --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/adieresis.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+dieresis + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/adieresis.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/adieresis.ss01.glif new file mode 100644 index 00000000..aa34e01e --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/adieresis.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+dieresis + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/adieresiscyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/adieresiscyr.glif new file mode 100644 index 00000000..f0ffbd09 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/adieresiscyr.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/ae.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ae.glif new file mode 100644 index 00000000..c6db28c7 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ae.glif @@ -0,0 +1,101 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + a + com.fontlab.metricsRight + e + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/ae.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ae.ss01.glif new file mode 100644 index 00000000..12bc8fe1 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ae.ss01.glif @@ -0,0 +1,96 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + a + com.fontlab.metricsRight + e.ss01 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/aeacute.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/aeacute.glif new file mode 100644 index 00000000..ae2397f5 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/aeacute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ae+acute + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/agrave.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/agrave.glif new file mode 100644 index 00000000..8d67c9a6 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/agrave.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+grave + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/agrave.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/agrave.ss01.glif new file mode 100644 index 00000000..34ecdbf3 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/agrave.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+grave + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/aiecyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/aiecyr.glif new file mode 100644 index 00000000..e7d84aac --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/aiecyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ae + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/amacron.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/amacron.glif new file mode 100644 index 00000000..941d50f5 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/amacron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+macron + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/amacron.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/amacron.ss01.glif new file mode 100644 index 00000000..52774384 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/amacron.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+macron + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/ampersand.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ampersand.glif new file mode 100644 index 00000000..861045c8 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ampersand.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/aogonek.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/aogonek.glif new file mode 100644 index 00000000..5d8e8d54 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/aogonek.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+ogonek + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/aogonek.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/aogonek.ss01.glif new file mode 100644 index 00000000..d7564393 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/aogonek.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+ogonek + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/apostrophemod.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/apostrophemod.glif new file mode 100644 index 00000000..4cd45b83 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/apostrophemod.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + apostrophe + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/approxequal.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/approxequal.glif new file mode 100644 index 00000000..c629a0c3 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/approxequal.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/aring.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/aring.glif new file mode 100644 index 00000000..201ec60c --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/aring.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+ring + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/aring.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/aring.ss01.glif new file mode 100644 index 00000000..3e61b0d1 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/aring.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+ring + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/arrowdown.case.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/arrowdown.case.glif new file mode 100644 index 00000000..c1b6f891 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/arrowdown.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + arrowup + com.fontlab.metricsRight + arrowup + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/arrowdown.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/arrowdown.glif new file mode 100644 index 00000000..b856dac8 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/arrowdown.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + arrowup + com.fontlab.metricsRight + arrowup + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/arrowdown.ss01.case.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/arrowdown.ss01.case.glif new file mode 100644 index 00000000..690dd22e --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/arrowdown.ss01.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + arrowup + com.fontlab.metricsRight + arrowup + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/arrowdown.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/arrowdown.ss01.glif new file mode 100644 index 00000000..5e28d7d2 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/arrowdown.ss01.glif @@ -0,0 +1,15 @@ + + + + + + + + + com.fontlab.metricsLeft + arrowup + com.fontlab.metricsRight + arrowup + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/arrowleft.case.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/arrowleft.case.glif new file mode 100644 index 00000000..fc3155e3 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/arrowleft.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + arrowleft + com.fontlab.metricsRight + arrowleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/arrowleft.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/arrowleft.glif new file mode 100644 index 00000000..09a07878 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/arrowleft.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/arrowleft.ss01.case.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/arrowleft.ss01.case.glif new file mode 100644 index 00000000..f0d5dbf4 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/arrowleft.ss01.case.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + arrowleft + com.fontlab.metricsRight + arrowleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/arrowleft.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/arrowleft.ss01.glif new file mode 100644 index 00000000..3b8ce0ca --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/arrowleft.ss01.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + arrowleft + com.fontlab.metricsRight + arrowleft + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/arrowright.case.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/arrowright.case.glif new file mode 100644 index 00000000..df1071aa --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/arrowright.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |arrowleft + com.fontlab.metricsRight + |arrowleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/arrowright.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/arrowright.glif new file mode 100644 index 00000000..c7ae9f19 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/arrowright.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + |arrowleft + com.fontlab.metricsRight + |arrowleft + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/arrowright.ss01.case.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/arrowright.ss01.case.glif new file mode 100644 index 00000000..b0538182 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/arrowright.ss01.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |arrowleft + com.fontlab.metricsRight + |arrowleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/arrowright.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/arrowright.ss01.glif new file mode 100644 index 00000000..2470d1fe --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/arrowright.ss01.glif @@ -0,0 +1,15 @@ + + + + + + + + + com.fontlab.metricsLeft + |arrowleft + com.fontlab.metricsRight + |arrowleft + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/arrowup.case.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/arrowup.case.glif new file mode 100644 index 00000000..7dd474fb --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/arrowup.case.glif @@ -0,0 +1,15 @@ + + + + + + + + + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/arrowup.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/arrowup.glif new file mode 100644 index 00000000..b3cf9805 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/arrowup.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + l() + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/arrowup.ss01.case.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/arrowup.ss01.case.glif new file mode 100644 index 00000000..500cc172 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/arrowup.ss01.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + arrowup + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/arrowup.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/arrowup.ss01.glif new file mode 100644 index 00000000..3109fa96 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/arrowup.ss01.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + arrowup + com.fontlab.metricsRight + l() + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/asciicircum.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/asciicircum.glif new file mode 100644 index 00000000..4e640ebe --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/asciicircum.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/asciitilde.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/asciitilde.glif new file mode 100644 index 00000000..3f21cf99 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/asciitilde.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/asterisk.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/asterisk.glif new file mode 100644 index 00000000..9902a50b --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/asterisk.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/at.case.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/at.case.glif new file mode 100644 index 00000000..e985ea84 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/at.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/at.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/at.glif new file mode 100644 index 00000000..9f385c56 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/at.glif @@ -0,0 +1,92 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/atilde.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/atilde.glif new file mode 100644 index 00000000..03a3f53d --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/atilde.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+tilde + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/atilde.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/atilde.ss01.glif new file mode 100644 index 00000000..96ef20a8 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/atilde.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+tilde + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/b.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/b.glif new file mode 100644 index 00000000..57df1815 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/b.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/b.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/b.ss01.glif new file mode 100644 index 00000000..576d24e9 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/b.ss01.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/backslash.case.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/backslash.case.glif new file mode 100644 index 00000000..93edee70 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/backslash.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + backslash + com.fontlab.metricsRight + backslash + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/backslash.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/backslash.glif new file mode 100644 index 00000000..36ae07dc --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/backslash.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/bar.case.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/bar.case.glif new file mode 100644 index 00000000..1e89908b --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/bar.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + H-10 + com.fontlab.metricsRight + H-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/bar.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/bar.glif new file mode 100644 index 00000000..86067d61 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/bar.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H-10 + com.fontlab.metricsRight + H-10 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/be-cy.S_R_B_.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/be-cy.S_R_B_.glif new file mode 100644 index 00000000..7f3fe4fa --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/be-cy.S_R_B_.glif @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/be-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/be-cy.glif new file mode 100644 index 00000000..5b7d6cef --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/be-cy.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/bishopblack.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/bishopblack.glif new file mode 100644 index 00000000..1fa62b40 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/bishopblack.glif @@ -0,0 +1,241 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =10 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/bishopwhite.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/bishopwhite.glif new file mode 100644 index 00000000..7ccd6c14 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/bishopwhite.glif @@ -0,0 +1,331 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/braceleft.case.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/braceleft.case.glif new file mode 100644 index 00000000..0baf6ae5 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/braceleft.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |braceright.case + com.fontlab.metricsRight + |braceright.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/braceleft.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/braceleft.glif new file mode 100644 index 00000000..c40ecd93 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/braceleft.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/braceright.case.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/braceright.case.glif new file mode 100644 index 00000000..22e04fc6 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/braceright.case.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/braceright.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/braceright.glif new file mode 100644 index 00000000..4f1a1ccd --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/braceright.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/bracketangleleft.case.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/bracketangleleft.case.glif new file mode 100644 index 00000000..0e3bd4e2 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/bracketangleleft.case.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + parenleft.case + com.fontlab.metricsRight + parenleft.case + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/bracketangleleft.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/bracketangleleft.glif new file mode 100644 index 00000000..f5d8ae51 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/bracketangleleft.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + parenleft + com.fontlab.metricsRight + parenleft + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/bracketangleright.case.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/bracketangleright.case.glif new file mode 100644 index 00000000..a046a3ba --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/bracketangleright.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |bracketangleleft.case + com.fontlab.metricsRight + |bracketangleleft.case + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/bracketangleright.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/bracketangleright.glif new file mode 100644 index 00000000..e04a403a --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/bracketangleright.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.metricsLeft + |bracketangleleft + com.fontlab.metricsRight + |bracketangleleft + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/bracketleft.case.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/bracketleft.case.glif new file mode 100644 index 00000000..6ccf9ddb --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/bracketleft.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |bracketright.case + com.fontlab.metricsRight + |bracketright.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/bracketleft.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/bracketleft.glif new file mode 100644 index 00000000..06992fbc --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/bracketleft.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/bracketright.case.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/bracketright.case.glif new file mode 100644 index 00000000..9ef01562 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/bracketright.case.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |bracketleft + com.fontlab.metricsRight + |bracketleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/bracketright.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/bracketright.glif new file mode 100644 index 00000000..61037144 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/bracketright.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |bracketleft + com.fontlab.metricsRight + |bracketleft + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/breve.case.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/breve.case.glif new file mode 100644 index 00000000..f08f7c96 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/breve.case.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/breve.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/breve.glif new file mode 100644 index 00000000..127528b6 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/breve.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/brokenbar.case.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/brokenbar.case.glif new file mode 100644 index 00000000..abfcc373 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/brokenbar.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + bar + com.fontlab.metricsRight + bar + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/brokenbar.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/brokenbar.glif new file mode 100644 index 00000000..23ef336e --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/brokenbar.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + bar + com.fontlab.metricsRight + bar + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/bullet.case.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/bullet.case.glif new file mode 100644 index 00000000..a2628ed2 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/bullet.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + period + com.fontlab.metricsRight + period + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/bullet.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/bullet.glif new file mode 100644 index 00000000..37f2369f --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/bullet.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + period + com.fontlab.metricsRight + period + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/c.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/c.glif new file mode 100644 index 00000000..194e9fbf --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/c.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/cacute.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/cacute.glif new file mode 100644 index 00000000..77adbf22 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/cacute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+acute + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/caron.case.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/caron.case.glif new file mode 100644 index 00000000..2890ccc1 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/caron.case.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/caron.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/caron.glif new file mode 100644 index 00000000..0b698ffb --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/caron.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/caron.salt.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/caron.salt.glif new file mode 100644 index 00000000..bde2c9f8 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/caron.salt.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/ccaron.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ccaron.glif new file mode 100644 index 00000000..7575532b --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ccaron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+caron + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/ccedilla.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ccedilla.glif new file mode 100644 index 00000000..d7be0c40 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ccedilla.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+cedilla + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/cche-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/cche-cy.glif new file mode 100644 index 00000000..00d278cd --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/cche-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ч + com.fontlab.metricsRight + ч + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/ccircumflex.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ccircumflex.glif new file mode 100644 index 00000000..e4a6d207 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ccircumflex.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+circumflex + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/cdotaccent.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/cdotaccent.glif new file mode 100644 index 00000000..95ca9250 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/cdotaccent.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+dotaccent + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/cedilla.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/cedilla.glif new file mode 100644 index 00000000..b246a935 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/cedilla.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/cent.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/cent.glif new file mode 100644 index 00000000..6211c1e1 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/cent.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + c + com.fontlab.metricsRight + c + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/che-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/che-cy.glif new file mode 100644 index 00000000..cffc984f --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/che-cy.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + u-10 + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/cheabkhcyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/cheabkhcyr.glif new file mode 100644 index 00000000..d5b719f9 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/cheabkhcyr.glif @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + e + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/cheabkhtailcyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/cheabkhtailcyr.glif new file mode 100644 index 00000000..f9a2f6fe --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/cheabkhtailcyr.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + cheabkhcyr + com.fontlab.metricsRight + cheabkhcyr + com.fontlab.recipe + cheabkhcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/chedieresiscyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/chedieresiscyr.glif new file mode 100644 index 00000000..e17aaf93 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/chedieresiscyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + che-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/chekhakascyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/chekhakascyr.glif new file mode 100644 index 00000000..4d98e20a --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/chekhakascyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ч + com.fontlab.metricsRight + н + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/chetailcyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/chetailcyr.glif new file mode 100644 index 00000000..7c85ffd6 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/chetailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ч + com.fontlab.metricsRight + entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/chevertcyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/chevertcyr.glif new file mode 100644 index 00000000..4c9dc84c --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/chevertcyr.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ч + com.fontlab.metricsRight + н + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/circumflex.case.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/circumflex.case.glif new file mode 100644 index 00000000..4be61bdc --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/circumflex.case.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/circumflex.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/circumflex.glif new file mode 100644 index 00000000..13d56f94 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/circumflex.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/clubwhite.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/clubwhite.glif new file mode 100644 index 00000000..2dbac1dc --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/clubwhite.glif @@ -0,0 +1,155 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/colon.case.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/colon.case.glif new file mode 100644 index 00000000..896a15e1 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/colon.case.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/colon.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/colon.glif new file mode 100644 index 00000000..99940566 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/colon.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/colontriangularmod.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/colontriangularmod.glif new file mode 100644 index 00000000..56148069 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/colontriangularmod.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + colon + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/comma.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/comma.glif new file mode 100644 index 00000000..a4e86875 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/comma.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/commaaccentcomb.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/commaaccentcomb.glif new file mode 100644 index 00000000..53a79192 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/commaaccentcomb.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/commaaccentcomb.salt.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/commaaccentcomb.salt.glif new file mode 100644 index 00000000..a3e55237 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/commaaccentcomb.salt.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/contents.plist b/sources/FixelDisplay-ExtraLight.ufo/glyphs/contents.plist new file mode 100644 index 00000000..2830b2de --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/contents.plist @@ -0,0 +1,2352 @@ + + + + + .notdef + _notdef.glif + A + A_.glif + A-cy + A_-cy.glif + A-cy.accented + A_-cy.accented.glif + A-cy.ss01 + A_-cy.ss01.glif + A.ss01 + A_.ss01.glif + AE + A_E_.glif + AE.ss01 + A_E_.ss01.glif + AEacute + A_E_acute.glif + Aacute + A_acute.glif + Aacute.ss01 + A_acute.ss01.glif + Abreve + A_breve.glif + Abreve.ss01 + A_breve.ss01.glif + Abrevecyr + A_brevecyr.glif + Acaron + A_caron.glif + Acircumflex + A_circumflex.glif + Acircumflex.ss01 + A_circumflex.ss01.glif + Adieresis + A_dieresis.glif + Adieresis.ss01 + A_dieresis.ss01.glif + Adieresiscyr + A_dieresiscyr.glif + Agrave + A_grave.glif + Agrave.ss01 + A_grave.ss01.glif + Aiecyr + A_iecyr.glif + Amacron + A_macron.glif + Amacron.ss01 + A_macron.ss01.glif + Aogonek + A_ogonek.glif + Aogonek.ss01 + A_ogonek.ss01.glif + Aring + A_ring.glif + Aring.ss01 + A_ring.ss01.glif + Atilde + A_tilde.glif + Atilde.ss01 + A_tilde.ss01.glif + B + B_.glif + Be-cy + B_e-cy.glif + C + C_.glif + CR + C_R_.glif + Cacute + C_acute.glif + Ccaron + C_caron.glif + Ccedilla + C_cedilla.glif + Cche-cy + C_che-cy.glif + Ccircumflex + C_circumflex.glif + Cdotaccent + C_dotaccent.glif + Che-cy + C_he-cy.glif + Cheabkhcyr + C_heabkhcyr.glif + Cheabkhtailcyr + C_heabkhtailcyr.glif + Chedieresiscyr + C_hedieresiscyr.glif + Chekhakascyr + C_hekhakascyr.glif + Chetailcyr + C_hetailcyr.glif + Chevertcyr + C_hevertcyr.glif + CrossedO-cy + C_rossedO_-cy.glif + D + D_.glif + Dcaron + D_caron.glif + Dchecyr + D_checyr.glif + Dcroat + D_croat.glif + De-cy + D_e-cy.glif + De-cy.BGR + D_e-cy.B_G_R_.glif + DeSoft-cy + D_eS_oft-cy.glif + Dekomicyr + D_ekomicyr.glif + Delta + D_elta.glif + Djecyr + D_jecyr.glif + Djekomicyr + D_jekomicyr.glif + Djerv-cy + D_jerv-cy.glif + DoubleO-cy + D_oubleO_-cy.glif + Dwe-cy + D_we-cy.glif + Dze-cy + D_ze-cy.glif + DzeReversed-cy + D_zeR_eversed-cy.glif + Dzeabkhcyr + D_zeabkhcyr.glif + Dzelo-cy + D_zelo-cy.glif + Dzhecyr + D_zhecyr.glif + Dzjekomicyr + D_zjekomicyr.glif + Dzwe-cy + D_zwe-cy.glif + Dzze-cy + D_zze-cy.glif + Dzzhecyr + D_zzhecyr.glif + E + E_.glif + E-cy + E_-cy.glif + E-cy.accented + E_-cy.accented.glif + Eacute + E_acute.glif + Ebreve + E_breve.glif + Ecaron + E_caron.glif + Ecircumflex + E_circumflex.glif + Edieresis + E_dieresis.glif + Edotaccent + E_dotaccent.glif + Ef-cy + E_f-cy.glif + Ef-cy.BGR + E_f-cy.B_G_R_.glif + Egrave + E_grave.glif + Eiotifiedcyr + E_iotifiedcyr.glif + El-cy + E_l-cy.glif + El-cy.BGR + E_l-cy.B_G_R_.glif + ElSoft-cy + E_lS_oft-cy.glif + Elhookcyr + E_lhookcyr.glif + Elmiddlehookcyr + E_lmiddlehookcyr.glif + Elsharptailcyr + E_lsharptailcyr.glif + Elsmallcyr + E_lsmallcyr.glif + Eltailcyr + E_ltailcyr.glif + Em-cy + E_m-cy.glif + Em-cy.ss01 + E_m-cy.ss01.glif + EmSoft-cy + E_mS_oft-cy.glif + Emacron + E_macron.glif + Emsharptailcyr + E_msharptailcyr.glif + En-cy + E_n-cy.glif + Eng + E_ng.glif + Eng.ss01 + E_ng.ss01.glif + Engecyr + E_ngecyr.glif + Enhookcyr + E_nhookcyr.glif + Enhookleftcyr + E_nhookleftcyr.glif + Enmiddlehookcyr + E_nmiddlehookcyr.glif + Ensharptailcyr + E_nsharptailcyr.glif + Entailcyr + E_ntailcyr.glif + Eogonek + E_ogonek.glif + Er-cy + E_r-cy.glif + Ereversed-cy + E_reversed-cy.glif + Ereversed-cy.accented + E_reversed-cy.accented.glif + Ereverseddieresiscyr + E_reverseddieresiscyr.glif + Ertickcyr + E_rtickcyr.glif + Es-cy + E_s-cy.glif + Estailcyr + E_stailcyr.glif + Estailcyr.BSH + E_stailcyr.B_S_H_.glif + Estailcyr.CHU + E_stailcyr.C_H_U_.glif + Eth + E_th.glif + F + F_.glif + Fitacyr + F_itacyr.glif + G + G_.glif + G.ss01 + G_.ss01.glif + Gacute + G_acute.glif + Gacute.ss01 + G_acute.ss01.glif + Gbreve + G_breve.glif + Gbreve.ss01 + G_breve.ss01.glif + Gcircumflex + G_circumflex.glif + Gcircumflex.ss01 + G_circumflex.ss01.glif + Gcommaaccent + G_commaaccent.glif + Gcommaaccent.ss01 + G_commaaccent.ss01.glif + Gdotaccent + G_dotaccent.glif + Gdotaccent.ss01 + G_dotaccent.ss01.glif + Ge-cy + G_e-cy.glif + Gehookcyr + G_ehookcyr.glif + Gehookstrokecyr + G_ehookstrokecyr.glif + Germandbls + G_ermandbls.glif + Gestrokecyr + G_estrokecyr.glif + Gestrokecyr.BSH + G_estrokecyr.B_S_H_.glif + Getailcyr + G_etailcyr.glif + Gheupturn-cy + G_heupturn-cy.glif + Gjecyr + G_jecyr.glif + H + H_.glif + Ha-cy + H_a-cy.glif + Ha-cy.ss01 + H_a-cy.ss01.glif + Haabkhcyr + H_aabkhcyr.glif + Hahookcyr + H_ahookcyr.glif + Hardsign-cy + H_ardsign-cy.glif + Hastrokecyr + H_astrokecyr.glif + Hbar + H_bar.glif + Hcircumflex + H_circumflex.glif + Hwe-cy + H_we-cy.glif + I + I_.glif + I-cy + I_-cy.glif + IJ + I_J_.glif + Ia-cy + I_a-cy.glif + Ia-cy.accented + I_a-cy.accented.glif + Ia-cy.ss01 + I_a-cy.ss01.glif + Iacute + I_acute.glif + Ibreve + I_breve.glif + Icircumflex + I_circumflex.glif + Idieresis + I_dieresis.glif + Idieresiscyr + I_dieresiscyr.glif + Idotaccent + I_dotaccent.glif + Ie-cy + I_e-cy.glif + Iebrevecyr + I_ebrevecyr.glif + Iegravecyr + I_egravecyr.glif + Igrave + I_grave.glif + Igravecyr + I_gravecyr.glif + Ii-cy + I_i-cy.glif + Ii-cy.accented + I_i-cy.accented.glif + Iishort-cy + I_ishort-cy.glif + Imacron + I_macron.glif + Imacroncyr + I_macroncyr.glif + Io-cy + I_o-cy.glif + Io-cy.accented + I_o-cy.accented.glif + Iogonek + I_ogonek.glif + Iota-cy + I_ota-cy.glif + IotifiedA-cy + I_otifiedA_-cy.glif + Ishortsharptailcyr + I_shortsharptailcyr.glif + Itilde + I_tilde.glif + Iu-cy + I_u-cy.glif + Iu-cy.accented + I_u-cy.accented.glif + Izhitsacyr + I_zhitsacyr.glif + Izhitsagravedblcyr + I_zhitsagravedblcyr.glif + J + J_.glif + J.ss01 + J_.ss01.glif + Jcircumflex + J_circumflex.glif + Jcircumflex.ss01 + J_circumflex.ss01.glif + Jecyr + J_ecyr.glif + K + K_.glif + K.ss01 + K_.ss01.glif + Ka-cy + K_a-cy.glif + Ka-cy.ss01 + K_a-cy.ss01.glif + Kaaleutcyr + K_aaleutcyr.glif + Kabashkcyr + K_abashkcyr.glif + Kahookcyr + K_ahookcyr.glif + Kastrokecyr + K_astrokecyr.glif + Katailcyr + K_atailcyr.glif + Kaverticalstrokecyr + K_averticalstrokecyr.glif + Kcommaaccent + K_commaaccent.glif + Kcommaaccent.ss01 + K_commaaccent.ss01.glif + Kjecyr + K_jecyr.glif + Koppacyr + K_oppacyr.glif + Ksicyr + K_sicyr.glif + L + L_.glif + Lacute + L_acute.glif + Lcaron + L_caron.glif + Lcommaaccent + L_commaaccent.glif + Ldot + L_dot.glif + Lhacyr + L_hacyr.glif + Ljecyr + L_jecyr.glif + Ljekomicyr + L_jekomicyr.glif + Lslash + L_slash.glif + M + M_.glif + M.ss01 + M_.ss01.glif + N + N_.glif + N.ss01 + N_.ss01.glif + NULL + N_U_L_L_.glif + Nacute + N_acute.glif + Nacute.ss01 + N_acute.ss01.glif + Ncaron + N_caron.glif + Ncaron.ss01 + N_caron.ss01.glif + Ncommaaccent + N_commaaccent.glif + Ncommaaccent.ss01 + N_commaaccent.ss01.glif + Njecyr + N_jecyr.glif + Njekomicyr + N_jekomicyr.glif + Ntilde + N_tilde.glif + Ntilde.ss01 + N_tilde.ss01.glif + O + O_.glif + O-cy + O_-cy.glif + O-cy.accented + O_-cy.accented.glif + OBinocular-cy + O_B_inocular-cy.glif + ODoubleMonocular-cy + O_D_oubleM_onocular-cy.glif + OE + O_E_.glif + OMonocular-cy + O_M_onocular-cy.glif + Oacute + O_acute.glif + Obarcyr + O_barcyr.glif + Obardieresiscyr + O_bardieresiscyr.glif + Obreve + O_breve.glif + Ocircumflex + O_circumflex.glif + Odieresis + O_dieresis.glif + Odieresiscyr + O_dieresiscyr.glif + Ograve + O_grave.glif + Ohungarumlaut + O_hungarumlaut.glif + Omacron + O_macron.glif + Omega + O_mega.glif + OmegaBroad-cy + O_megaB_road-cy.glif + Omegacyr + O_megacyr.glif + Omegaroundcyr + O_megaroundcyr.glif + Omegatitlocyr + O_megatitlocyr.glif + Oslash + O_slash.glif + Oslashacute + O_slashacute.glif + Otcyr + O_tcyr.glif + Otilde + O_tilde.glif + P + P_.glif + Palochkacyr + P_alochkacyr.glif + Pe-cy + P_e-cy.glif + Pehookcyr + P_ehookcyr.glif + Petailcyr + P_etailcyr.glif + Psicyr + P_sicyr.glif + Q + Q_.glif + Q.ss01 + Q_.ss01.glif + Qacyr + Q_acyr.glif + R + R_.glif + Racute + R_acute.glif + Rcaron + R_caron.glif + Rcommaaccent + R_commaaccent.glif + Reversedzecyr + R_eversedzecyr.glif + Rhacyr + R_hacyr.glif + S + S_.glif + Sacute + S_acute.glif + Scaron + S_caron.glif + Scedilla + S_cedilla.glif + Schwa + S_chwa.glif + Schwacyr + S_chwacyr.glif + Schwadieresiscyr + S_chwadieresiscyr.glif + Scircumflex + S_circumflex.glif + Scommaaccent + S_commaaccent.glif + Semisoftcyr + S_emisoftcyr.glif + Sha-cy + S_ha-cy.glif + Shcha-cy + S_hcha-cy.glif + Shhacyr + S_hhacyr.glif + Shhatailcyr + S_hhatailcyr.glif + Shwe-cy + S_hwe-cy.glif + Sjekomicyr + S_jekomicyr.glif + Softsign-cy + S_oftsign-cy.glif + T + T_.glif + Tbar + T_bar.glif + Tcaron + T_caron.glif + Tcedilla + T_cedilla.glif + Tche-cy + T_che-cy.glif + Tcommaaccent + T_commaaccent.glif + Te-cy + T_e-cy.glif + TeWithMiddleHook-cy + T_eW_ithM_iddleH_ook-cy.glif + Tetailcyr + T_etailcyr.glif + Tetsecyr + T_etsecyr.glif + Thorn + T_horn.glif + Tjekomicyr + T_jekomicyr.glif + Tse-cy + T_se-cy.glif + TseReversed-cy + T_seR_eversed-cy.glif + Tshecyr + T_shecyr.glif + Tsse-cy + T_sse-cy.glif + Tswe-cy + T_swe-cy.glif + Twe-cy + T_we-cy.glif + U + U_.glif + U-cy + U_-cy.glif + U-cy.accented + U_-cy.accented.glif + U-cy.ss01 + U_-cy.ss01.glif + Uacute + U_acute.glif + Uacutedblcyr + U_acutedblcyr.glif + Ubreve + U_breve.glif + Ucircumflex + U_circumflex.glif + Udieresis + U_dieresis.glif + Udieresiscyr + U_dieresiscyr.glif + Ugrave + U_grave.glif + Uhungarumlaut + U_hungarumlaut.glif + UkMonograph-cy + U_kM_onograph-cy.glif + Ukcyr + U_kcyr.glif + Umacron + U_macron.glif + Umacroncyr + U_macroncyr.glif + Uogonek + U_ogonek.glif + Uring + U_ring.glif + Ushort-cy + U_short-cy.glif + Ushort-cy.ss01 + U_short-cy.ss01.glif + Ustraightcyr + U_straightcyr.glif + Ustraightstrokecyr + U_straightstrokecyr.glif + Utilde + U_tilde.glif + V + V_.glif + V.ss01 + V_.ss01.glif + Ve-cy + V_e-cy.glif + W + W_.glif + W.ss01 + W_.ss01.glif + Wacute + W_acute.glif + Wacute.ss01 + W_acute.ss01.glif + Wcircumflex + W_circumflex.glif + Wcircumflex.ss01 + W_circumflex.ss01.glif + Wdieresis + W_dieresis.glif + Wdieresis.ss01 + W_dieresis.ss01.glif + Wecyr + W_ecyr.glif + Wgrave + W_grave.glif + Wgrave.ss01 + W_grave.ss01.glif + X + X_.glif + X.ss01 + X_.ss01.glif + Xatailcyr + X_atailcyr.glif + Y + Y_.glif + Y.ss01 + Y_.ss01.glif + Yacute + Y_acute.glif + Yacute.ss01 + Y_acute.ss01.glif + Yaecyr + Y_aecyr.glif + YatIotified-cy + Y_atI_otified-cy.glif + Yatcyr + Y_atcyr.glif + Ycircumflex + Y_circumflex.glif + Ycircumflex.ss01 + Y_circumflex.ss01.glif + Ydieresis + Y_dieresis.glif + Ydieresis.ss01 + Y_dieresis.ss01.glif + YerNeutral-cy + Y_erN_eutral-cy.glif + Yeru-cy + Y_eru-cy.glif + Yeru-cy.accented + Y_eru-cy.accented.glif + Yeru-cymacron + Y_eru-cymacron.glif + YeruBackYer-cy + Y_eruB_ackY_er-cy.glif + Yi-cy + Y_i-cy.glif + Ylongdieresiscyr + Y_longdieresiscyr.glif + Yn-cy + Y_n-cy.glif + YuReversed-cy + Y_uR_eversed-cy.glif + YusBlended-cy + Y_usB_lended-cy.glif + YusClosedlittle-cy + Y_usC_losedlittle-cy.glif + Yusbigcyr + Y_usbigcyr.glif + Yusbigiotifiedcyr + Y_usbigiotifiedcyr.glif + YusiotifiedClosedLittle-cy + Y_usiotifiedC_losedL_ittle-cy.glif + Yuslittlecyr + Y_uslittlecyr.glif + Yuslittleiotifiedcyr + Y_uslittleiotifiedcyr.glif + Z + Z_.glif + Z.ss01 + Z_.ss01.glif + Zacute + Z_acute.glif + Zacute.ss01 + Z_acute.ss01.glif + Zcaron + Z_caron.glif + Zcaron.ss01 + Z_caron.ss01.glif + Zdotaccent + Z_dotaccent.glif + Zdotaccent.ss01 + Z_dotaccent.ss01.glif + Ze-cy + Z_e-cy.glif + Zedieresiscyr + Z_edieresiscyr.glif + Zemlya-cy + Z_emlya-cy.glif + Zetailcyr + Z_etailcyr.glif + Zetailcyr.BSH + Z_etailcyr.B_S_H_.glif + Zhe-cy + Z_he-cy.glif + Zhe-cy.ss01 + Z_he-cy.ss01.glif + Zhebrevecyr + Z_hebrevecyr.glif + Zhedieresiscyr + Z_hedieresiscyr.glif + Zhetailcyr + Z_hetailcyr.glif + Zhwe-cy + Z_hwe-cy.glif + Zjekomicyr + Z_jekomicyr.glif + _perc-circule + _perc-circule.glif + a + a.glif + a-cy + a-cy.glif + a-cy.accented + a-cy.accented.glif + a-cy.ss01 + a-cy.ss01.glif + a.ss01 + a.ss01.glif + aacute + aacute.glif + aacute.ss01 + aacute.ss01.glif + abreve + abreve.glif + abreve.ss01 + abreve.ss01.glif + abrevecyr + abrevecyr.glif + acaron + acaron.glif + acircumflex + acircumflex.glif + acircumflex.ss01 + acircumflex.ss01.glif + acute + acute.glif + acute.case + acute.case.glif + adieresis + adieresis.glif + adieresis.ss01 + adieresis.ss01.glif + adieresiscyr + adieresiscyr.glif + ae + ae.glif + ae.ss01 + ae.ss01.glif + aeacute + aeacute.glif + agrave + agrave.glif + agrave.ss01 + agrave.ss01.glif + aiecyr + aiecyr.glif + amacron + amacron.glif + amacron.ss01 + amacron.ss01.glif + ampersand + ampersand.glif + aogonek + aogonek.glif + aogonek.ss01 + aogonek.ss01.glif + apostrophemod + apostrophemod.glif + approxequal + approxequal.glif + aring + aring.glif + aring.ss01 + aring.ss01.glif + arrowdown + arrowdown.glif + arrowdown.case + arrowdown.case.glif + arrowdown.ss01 + arrowdown.ss01.glif + arrowdown.ss01.case + arrowdown.ss01.case.glif + arrowleft + arrowleft.glif + arrowleft.case + arrowleft.case.glif + arrowleft.ss01 + arrowleft.ss01.glif + arrowleft.ss01.case + arrowleft.ss01.case.glif + arrowright + arrowright.glif + arrowright.case + arrowright.case.glif + arrowright.ss01 + arrowright.ss01.glif + arrowright.ss01.case + arrowright.ss01.case.glif + arrowup + arrowup.glif + arrowup.case + arrowup.case.glif + arrowup.ss01 + arrowup.ss01.glif + arrowup.ss01.case + arrowup.ss01.case.glif + asciicircum + asciicircum.glif + asciitilde + asciitilde.glif + asterisk + asterisk.glif + at + at.glif + at.case + at.case.glif + atilde + atilde.glif + atilde.ss01 + atilde.ss01.glif + b + b.glif + b.ss01 + b.ss01.glif + backslash + backslash.glif + backslash.case + backslash.case.glif + bar + bar.glif + bar.case + bar.case.glif + be-cy + be-cy.glif + be-cy.SRB + be-cy.S_R_B_.glif + bishopblack + bishopblack.glif + bishopwhite + bishopwhite.glif + braceleft + braceleft.glif + braceleft.case + braceleft.case.glif + braceright + braceright.glif + braceright.case + braceright.case.glif + bracketangleleft + bracketangleleft.glif + bracketangleleft.case + bracketangleleft.case.glif + bracketangleright + bracketangleright.glif + bracketangleright.case + bracketangleright.case.glif + bracketleft + bracketleft.glif + bracketleft.case + bracketleft.case.glif + bracketright + bracketright.glif + bracketright.case + bracketright.case.glif + breve + breve.glif + breve.case + breve.case.glif + brokenbar + brokenbar.glif + brokenbar.case + brokenbar.case.glif + bullet + bullet.glif + bullet.case + bullet.case.glif + c + c.glif + cacute + cacute.glif + caron + caron.glif + caron.case + caron.case.glif + caron.salt + caron.salt.glif + ccaron + ccaron.glif + ccedilla + ccedilla.glif + cche-cy + cche-cy.glif + ccircumflex + ccircumflex.glif + cdotaccent + cdotaccent.glif + cedilla + cedilla.glif + cent + cent.glif + che-cy + che-cy.glif + cheabkhcyr + cheabkhcyr.glif + cheabkhtailcyr + cheabkhtailcyr.glif + chedieresiscyr + chedieresiscyr.glif + chekhakascyr + chekhakascyr.glif + chetailcyr + chetailcyr.glif + chevertcyr + chevertcyr.glif + circumflex + circumflex.glif + circumflex.case + circumflex.case.glif + clubwhite + clubwhite.glif + colon + colon.glif + colon.case + colon.case.glif + colontriangularmod + colontriangularmod.glif + comma + comma.glif + commaaccentcomb + commaaccentcomb.glif + commaaccentcomb.salt + commaaccentcomb.salt.glif + copyright + copyright.glif + crossedo-cy + crossedo-cy.glif + crossedswords + crossedswords.glif + currency + currency.glif + d + d.glif + d.ss01 + d.ss01.glif + dagger + dagger.glif + daggerdbl + daggerdbl.glif + dcaron + dcaron.glif + dcaron.ss01 + dcaron.ss01.glif + dchecyr + dchecyr.glif + dcroat + dcroat.glif + dcroat.ss01 + dcroat.ss01.glif + de-cy + de-cy.glif + de-cy.BGR + de-cy.B_G_R_.glif + de-cy.ss01 + de-cy.ss01.glif + deSoft-cy + deS_oft-cy.glif + degree + degree.glif + dekomicyr + dekomicyr.glif + diamondwhite-misc + diamondwhite-misc.glif + dieresis + dieresis.glif + dieresis.alt + dieresis.alt.glif + dieresis.case + dieresis.case.glif + dieresisacute + dieresisacute.glif + dieresiscase.alt + dieresiscase.alt.glif + divide + divide.glif + djecyr + djecyr.glif + djekomicyr + djekomicyr.glif + djerv-cy + djerv-cy.glif + dollar + dollar.glif + dotaccent + dotaccent.glif + dotaccent.case + dotaccent.case.glif + doubleo-cy + doubleo-cy.glif + dramsignarmn + dramsignarmn.glif + dwe-cy + dwe-cy.glif + dze-cy + dze-cy.glif + dzeReversed-cy + dzeR_eversed-cy.glif + dzeabkhcyr + dzeabkhcyr.glif + dzelo-cy + dzelo-cy.glif + dzhecyr + dzhecyr.glif + dzjekomicyr + dzjekomicyr.glif + dzwe-cy + dzwe-cy.glif + dzze-cy + dzze-cy.glif + dzzhecyr + dzzhecyr.glif + e + e.glif + e-cy + e-cy.glif + e-cy.accented + e-cy.accented.glif + e-cy.hist + e-cy.hist.glif + e.ss01 + e.ss01.glif + eacute + eacute.glif + eacute.ss01 + eacute.ss01.glif + ebreve + ebreve.glif + ebreve.ss01 + ebreve.ss01.glif + ecaron + ecaron.glif + ecaron.ss01 + ecaron.ss01.glif + ecircumflex + ecircumflex.glif + ecircumflex.ss01 + ecircumflex.ss01.glif + edieresis + edieresis.glif + edieresis.ss01 + edieresis.ss01.glif + edotaccent + edotaccent.glif + edotaccent.ss01 + edotaccent.ss01.glif + ef-cy + ef-cy.glif + egrave + egrave.glif + egrave.ss01 + egrave.ss01.glif + eight + eight.glif + eight.osf + eight.osf.glif + eight.tf + eight.tf.glif + eiotifiedcyr + eiotifiedcyr.glif + eiotifiedcyr.BGR + eiotifiedcyr.B_G_R_.glif + el-cy + el-cy.glif + el-cy.BGR + el-cy.B_G_R_.glif + el-cy.ss01 + el-cy.ss01.glif + elSoft-cy + elS_oft-cy.glif + elhookcyr + elhookcyr.glif + ellipsis + ellipsis.glif + elmiddlehookcyr + elmiddlehookcyr.glif + elsharptailcyr + elsharptailcyr.glif + eltailcyr + eltailcyr.glif + em-cy + em-cy.glif + emSoft-cy + emS_oft-cy.glif + emacron + emacron.glif + emacron.ss01 + emacron.ss01.glif + emdash + emdash.glif + emdash.case + emdash.case.glif + emsharptailcyr + emsharptailcyr.glif + en-cy + en-cy.glif + enclosingcirclecomb + enclosingcirclecomb.glif + endash + endash.glif + endash.case + endash.case.glif + eng + eng.glif + engecyr + engecyr.glif + enhookcyr + enhookcyr.glif + enhookleftcyr + enhookleftcyr.glif + enmiddlehookcyr + enmiddlehookcyr.glif + ensharptailcyr + ensharptailcyr.glif + entailcyr + entailcyr.glif + eogonek + eogonek.glif + eogonek.ss01 + eogonek.ss01.glif + equal + equal.glif + er-cy + er-cy.glif + er-cy.ss01 + er-cy.ss01.glif + ereversed-cy + ereversed-cy.glif + ereversed-cy.accented + ereversed-cy.accented.glif + ereverseddieresiscyr + ereverseddieresiscyr.glif + ertickcyr + ertickcyr.glif + es-cy + es-cy.glif + estailcyr + estailcyr.glif + estailcyr.BSH + estailcyr.B_S_H_.glif + estailcyr.CHU + estailcyr.C_H_U_.glif + estimated + estimated.glif + eth + eth.glif + eturned + eturned.glif + euro + euro.glif + exclam + exclam.glif + exclamdown + exclamdown.glif + exclamdown.case + exclamdown.case.glif + f + f.glif + f.ss01 + f.ss01.glif + f_f + f_f.glif + f_f.ss01 + f_f.ss01.glif + f_f_i + f_f_i.glif + f_f_i.ss01 + f_f_i.ss01.glif + f_f_l + f_f_l.glif + f_f_l.ss01 + f_f_l.ss01.glif + fi + fi.glif + fi.ss01 + fi.ss01.glif + fitacyr + fitacyr.glif + five + five.glif + five.osf + five.osf.glif + five.tf + five.tf.glif + fl + fl.glif + fl.ss01 + fl.ss01.glif + floretteblack + floretteblack.glif + floretteoutlinedpetalledblackeight + floretteoutlinedpetalledblackeight.glif + florettewhite + florettewhite.glif + florin + florin.glif + flower + flower.glif + four + four.glif + four.osf + four.osf.glif + four.tf + four.tf.glif + fraction + fraction.glif + g + g.glif + g.ss01 + g.ss01.glif + gacute + gacute.glif + gacute.ss01 + gacute.ss01.glif + gbreve + gbreve.glif + gbreve.ss01 + gbreve.ss01.glif + gcircumflex + gcircumflex.glif + gcircumflex.ss01 + gcircumflex.ss01.glif + gcommaaccent + gcommaaccent.glif + gcommaaccent.ss01 + gcommaaccent.ss01.glif + gdotaccent + gdotaccent.glif + gdotaccent.ss01 + gdotaccent.ss01.glif + ge-cy + ge-cy.glif + ge-cy.BGR + ge-cy.B_G_R_.glif + ge-cy.SRB + ge-cy.S_R_B_.glif + gehookcyr + gehookcyr.glif + gehookstrokecyr + gehookstrokecyr.glif + germandbls + germandbls.glif + germandbls.ss01 + germandbls.ss01.glif + gestrokecyr + gestrokecyr.glif + gestrokecyr.BSH + gestrokecyr.B_S_H_.glif + getailcyr + getailcyr.glif + gheupturn-cy + gheupturn-cy.glif + gjecyr + gjecyr.glif + gjecyr.SRB + gjecyr.S_R_B_.glif + grave + grave.glif + grave.case + grave.case.glif + greater + greater.glif + greaterequal + greaterequal.glif + guillemetleft + guillemetleft.glif + guillemetleft.case + guillemetleft.case.glif + guillemetright + guillemetright.glif + guillemetright.case + guillemetright.case.glif + guilsinglleft + guilsinglleft.glif + guilsinglleft.case + guilsinglleft.case.glif + guilsinglright + guilsinglright.glif + guilsinglright.case + guilsinglright.case.glif + h + h.glif + ha-cy + ha-cy.glif + haabkhcyr + haabkhcyr.glif + hahookcyr + hahookcyr.glif + hardsign-cy + hardsign-cy.glif + hardsign-cy.BGR + hardsign-cy.B_G_R_.glif + hardsign-cy.ss01 + hardsign-cy.ss01.glif + hastrokecyr + hastrokecyr.glif + hbar + hbar.glif + hcircumflex + hcircumflex.glif + heart + heart.glif + heartwhite + heartwhite.glif + hryvnia + hryvnia.glif + hundredmillionscomb-cy + hundredmillionscomb-cy.glif + hundredthousandscombcyr + hundredthousandscombcyr.glif + hungarumlaut + hungarumlaut.glif + hungarumlaut.case + hungarumlaut.case.glif + hwe-cy + hwe-cy.glif + hyphen + hyphen.glif + hyphen.case + hyphen.case.glif + i + i.glif + i-cy + i-cy.glif + ia-cy + ia-cy.glif + ia-cy.accented + ia-cy.accented.glif + ia-cy.ss01 + ia-cy.ss01.glif + iacute + iacute.glif + ibreve + ibreve.glif + icircumflex + icircumflex.glif + idieresis + idieresis.glif + idieresiscyr + idieresiscyr.glif + idotless + idotless.glif + ie-cy + ie-cy.glif + ie-cy.ss01 + ie-cy.ss01.glif + iebrevecyr + iebrevecyr.glif + iegravecyr + iegravecyr.glif + iegravecyr.SRB + iegravecyr.S_R_B_.glif + igrave + igrave.glif + igravecyr + igravecyr.glif + igravecyr.SRB + igravecyr.S_R_B_.glif + ii-cy + ii-cy.glif + ii-cy.BGR + ii-cy.B_G_R_.glif + ii-cy.accented + ii-cy.accented.glif + iishort-cy + iishort-cy.glif + iishort-cy.BGR + iishort-cy.B_G_R_.glif + ij + ij.glif + imacron + imacron.glif + imacroncyr + imacroncyr.glif + increment + increment.glif + infinity + infinity.glif + integral + integral.glif + io-cy + io-cy.glif + io-cy.accented + io-cy.accented.glif + io-cy.ss01 + io-cy.ss01.glif + iogonek + iogonek.glif + iota-cy + iota-cy.glif + iotifieda-cy + iotifieda-cy.glif + iotifieda-cy.BGR + iotifieda-cy.B_G_R_.glif + iotifieda-cy.hist + iotifieda-cy.hist.glif + ishortsharptailcyr + ishortsharptailcyr.glif + itilde + itilde.glif + iu-cy + iu-cy.glif + iu-cy.BGR + iu-cy.B_G_R_.glif + iu-cy.accented + iu-cy.accented.glif + izhitsacyr + izhitsacyr.glif + izhitsagravedblcyr + izhitsagravedblcyr.glif + j + j.glif + jcircumflex + jcircumflex.glif + jdotless + jdotless.glif + je-cy + je-cy.glif + k + k.glif + ka-cy + ka-cy.glif + ka-cy.BGR + ka-cy.B_G_R_.glif + kaaleutcyr + kaaleutcyr.glif + kabashkcyr + kabashkcyr.glif + kahookcyr + kahookcyr.glif + kastrokecyr + kastrokecyr.glif + katailcyr + katailcyr.glif + kaverticalstrokecyr + kaverticalstrokecyr.glif + kcommaaccent + kcommaaccent.glif + kgreenlandic + kgreenlandic.glif + kjecyr + kjecyr.glif + knightblack + knightblack.glif + knightwhite + knightwhite.glif + koppacyr + koppacyr.glif + ksicyr + ksicyr.glif + l + l.glif + l.ss01 + l.ss01.glif + lacute + lacute.glif + lacute.ss01 + lacute.ss01.glif + lcaron + lcaron.glif + lcaron.ss01 + lcaron.ss01.glif + lcommaaccent + lcommaaccent.glif + lcommaaccent.ss01 + lcommaaccent.ss01.glif + ldot + ldot.glif + ldot.ss01 + ldot.ss01.glif + leo + leo.glif + less + less.glif + lessequal + lessequal.glif + lhacyr + lhacyr.glif + ljecyr + ljecyr.glif + ljecyr.ss01 + ljecyr.ss01.glif + ljekomicyr + ljekomicyr.glif + longs + longs.glif + lslash + lslash.glif + lslash.ss01 + lslash.ss01.glif + m + m.glif + macron + macron.glif + macron-fwd + macron-fwd.glif + macron-fwd.alt + macron-fwd.alt.glif + macron.case + macron.case.glif + macronacute.SRB + macronacute.S_R_B_.glif + millionscombcyr + millionscombcyr.glif + minus + minus.glif + minute + minute.glif + mu + mu.glif + multiply + multiply.glif + n + n.glif + nacute + nacute.glif + napostrophe + napostrophe.glif + ncaron + ncaron.glif + ncommaaccent + ncommaaccent.glif + neptune + neptune.glif + nine + nine.glif + nine.osf + nine.osf.glif + nine.tf + nine.tf.glif + njecyr + njecyr.glif + njecyr.ss01 + njecyr.ss01.glif + njekomicyr + njekomicyr.glif + notequal + notequal.glif + ntilde + ntilde.glif + numbersign + numbersign.glif + numero + numero.glif + numero.ss01 + numero.ss01.glif + o + o.glif + o-cy + o-cy.glif + o-cy.accented + o-cy.accented.glif + oBinocular-cy + oB_inocular-cy.glif + oDoubleMonocular-cy + oD_oubleM_onocular-cy.glif + oMonocular-cy + oM_onocular-cy.glif + oacute + oacute.glif + obarcyr + obarcyr.glif + obardieresiscyr + obardieresiscyr.glif + obreve + obreve.glif + ocircumflex + ocircumflex.glif + odieresis + odieresis.glif + odieresiscyr + odieresiscyr.glif + oe + oe.glif + oe.ss01 + oe.ss01.glif + ogonek + ogonek.glif + ograve + ograve.glif + ohungarumlaut + ohungarumlaut.glif + omacron + omacron.glif + omegaBroad-cy + omegaB_road-cy.glif + omegacyr + omegacyr.glif + omegaroundcyr + omegaroundcyr.glif + omegatitlocyr + omegatitlocyr.glif + omultiocular-cy + omultiocular-cy.glif + omultiocular-cy.alt + omultiocular-cy.alt.glif + one + one.glif + one.osf + one.osf.glif + one.tf + one.tf.glif + onehalf + onehalf.glif + onequarter + onequarter.glif + onesuperior + onesuperior.glif + ordfeminine + ordfeminine.glif + ordmasculine + ordmasculine.glif + oslash + oslash.glif + oslashacute + oslashacute.glif + otcyr + otcyr.glif + otilde + otilde.glif + p + p.glif + p.ss01 + p.ss01.glif + palatcombcyr + palatcombcyr.glif + palochkacyr + palochkacyr.glif + paragraph + paragraph.glif + parenleft + parenleft.glif + parenleft.case + parenleft.case.glif + parenright + parenright.glif + parenright.case + parenright.case.glif + partialdiff + partialdiff.glif + pe-cy + pe-cy.glif + pe-cy.BGR + pe-cy.B_G_R_.glif + pe-cy.SRB + pe-cy.S_R_B_.glif + pehookcyr + pehookcyr.glif + percent + percent.glif + period + period.glif + periodcentered + periodcentered.glif + perthousand + perthousand.glif + petailcyr + petailcyr.glif + pi + pi.glif + plus + plus.glif + plusminus + plusminus.glif + pokrytiecombcyr + pokrytiecombcyr.glif + product + product.glif + proportional + proportional.glif + psicyr + psicyr.glif + q + q.glif + q.ss01 + q.ss01.glif + qacyr + qacyr.glif + question + question.glif + questiondown + questiondown.glif + questiondown.case + questiondown.case.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 + radical + radical.glif + rcaron + rcaron.glif + rcommaaccent + rcommaaccent.glif + registered + registered.glif + reversedzecyr + reversedzecyr.glif + rhacyr + rhacyr.glif + ring + ring.glif + ring.case + ring.case.glif + rookblack + rookblack.glif + ruble + ruble.glif + s + s.glif + sacute + sacute.glif + scaron + scaron.glif + scedilla + scedilla.glif + schwacyr + schwacyr.glif + schwadieresiscyr + schwadieresiscyr.glif + scircumflex + scircumflex.glif + scommaaccent + scommaaccent.glif + second + second.glif + section + section.glif + semicolon + semicolon.glif + semicolon.case + semicolon.case.glif + semisoftcyr + semisoftcyr.glif + seven + seven.glif + seven.osf + seven.osf.glif + seven.tf + seven.tf.glif + sha-cy + sha-cy.glif + sha-cy.BGR + sha-cy.B_G_R_.glif + shcha-cy + shcha-cy.glif + shcha-cy.BGR + shcha-cy.B_G_R_.glif + shhacyr + shhacyr.glif + shhatailcyr + shhatailcyr.glif + shwe-cy + shwe-cy.glif + six + six.glif + six.osf + six.osf.glif + six.tf + six.tf.glif + sjekomicyr + sjekomicyr.glif + slash + slash.glif + slash.case + slash.case.glif + softsign-cy + softsign-cy.glif + softsign-cy.BGR + softsign-cy.B_G_R_.glif + softsign-cy.ss01 + softsign-cy.ss01.glif + space + space.glif + spadewhite + spadewhite.glif + sterling + sterling.glif + summation + summation.glif + t + t.glif + t.ss01 + t.ss01.glif + tbar + tbar.glif + tbar.ss01 + tbar.ss01.glif + tcaron + tcaron.glif + tcaron.ss01 + tcaron.ss01.glif + tcedilla + tcedilla.glif + tcedilla.ss01 + tcedilla.ss01.glif + tche-cy + tche-cy.glif + tcommaaccent + tcommaaccent.glif + tcommaaccent.ss01 + tcommaaccent.ss01.glif + te-cy + te-cy.glif + te-cy.BGR + te-cy.B_G_R_.glif + te-cy.SRB + te-cy.S_R_B_.glif + te-cy.ss01 + te-cy.ss01.glif + tenge + tenge.glif + tenmillionscomb-cy + tenmillionscomb-cy.glif + tetailcyr + tetailcyr.glif + tetsecyr + tetsecyr.glif + tewithmiddlehook-cy + tewithmiddlehook-cy.glif + thorn + thorn.glif + thousandmillionscomb-cy + thousandmillionscomb-cy.glif + thousandscyr + thousandscyr.glif + thousandscyr.dnom + thousandscyr.dnom.glif + three + three.glif + three.osf + three.osf.glif + three.tf + three.tf.glif + threequarters + threequarters.glif + threesuperior + threesuperior.glif + tilde + tilde.glif + tilde.case + tilde.case.glif + titlocombcyr + titlocombcyr.glif + tjekomicyr + tjekomicyr.glif + trademark + trademark.glif + tse-cy + tse-cy.glif + tse-cy.BGR + tse-cy.B_G_R_.glif + tseReversed-cy + tseR_eversed-cy.glif + tshecyr + tshecyr.glif + tsse-cy + tsse-cy.glif + tswe-cy + tswe-cy.glif + twe-cy + twe-cy.glif + two + two.glif + two.osf + two.osf.glif + two.tf + two.tf.glif + twosuperior + twosuperior.glif + u + u.glif + u-cy + u-cy.glif + u-cy.accented + u-cy.accented.glif + uacute + uacute.glif + uacutedblcyr + uacutedblcyr.glif + ubreve + ubreve.glif + ucircumflex + ucircumflex.glif + udieresis + udieresis.glif + udieresiscyr + udieresiscyr.glif + ugrave + ugrave.glif + uhungarumlaut + uhungarumlaut.glif + ukMonograph-cy + ukM_onograph-cy.glif + ukcyr + ukcyr.glif + umacron + umacron.glif + umacroncyr + umacroncyr.glif + underscore + underscore.glif + uni1C80 + uni1C_80.glif + uni1C81 + uni1C_81.glif + uni1C82 + uni1C_82.glif + uni1C83 + uni1C_83.glif + uni1C84 + uni1C_84.glif + uni1C85 + uni1C_85.glif + uni1C86 + uni1C_86.glif + uni1C87 + uni1C_87.glif + uni1C88 + uni1C_88.glif + uni1EBC + uni1E_B_C_.glif + uni1EBD + uni1E_B_D_.glif + uni2010 + uni2010.glif + uni2DEE + uni2D_E_E_.glif + uni2DEE.case + uni2D_E_E_.case.glif + uniE000 + uniE_000.glif + uniE000.alt + uniE_000.alt.glif + uniE01A + uniE_01A_.glif + uniF43A + uniF_43A_.glif + uniF43B + uniF_43B_.glif + uniF45D + uniF_45D_.glif + uniF45E + uniF_45E_.glif + uniF45F + uniF_45F_.glif + uniF475 + uniF_475.glif + uniF476 + uniF_476.glif + uniF477 + uniF_477.glif + uniF478 + uniF_478.glif + uniF479 + uniF_479.glif + uniF498 + uniF_498.glif + uniF499 + uniF_499.glif + uniF49A + uniF_49A_.glif + uniF49B + uniF_49B_.glif + uniF49C + uniF_49C_.glif + uniF49D + uniF_49D_.glif + uniF49E + uniF_49E_.glif + uniF49F + uniF_49F_.glif + uniF4C6 + uniF_4C_6.glif + uniF4C7 + uniF_4C_7.glif + uniF4CC + uniF_4C_C_.glif + uniF4CD + uniF_4C_D_.glif + uniF4D2 + uniF_4D_2.glif + uniF4D3 + uniF_4D_3.glif + uniF4D4 + uniF_4D_4.glif + uniF4D5 + uniF_4D_5.glif + uniF4D6 + uniF_4D_6.glif + uniF4D7 + uniF_4D_7.glif + uniF4D8 + uniF_4D_8.glif + uniF4D9 + uniF_4D_9.glif + uniF50E + uniF_50E_.glif + uniF50F + uniF_50F_.glif + uniF510 + uniF_510.glif + uniF511 + uniF_511.glif + uniF512 + uniF_512.glif + uniF513 + uniF_513.glif + uniF514 + uniF_514.glif + uniF515 + uniF_515.glif + uniF516 + uniF_516.glif + uniF517 + uniF_517.glif + uniF518 + uniF_518.glif + uniF519 + uniF_519.glif + uniF51A + uniF_51A_.glif + uniF51B + uniF_51B_.glif + uniF51C + uniF_51C_.glif + uniF51D + uniF_51D_.glif + uniF51E + uniF_51E_.glif + uniF51F + uniF_51F_.glif + uniF521 + uniF_521.glif + uniF522 + uniF_522.glif + uniF523 + uniF_523.glif + uniF524 + uniF_524.glif + uniF525 + uniF_525.glif + uniF526 + uniF_526.glif + uniF527 + uniF_527.glif + uniF528 + uniF_528.glif + uniF529 + uniF_529.glif + uniF52A + uniF_52A_.glif + uniF52B + uniF_52B_.glif + uniF52C + uniF_52C_.glif + uniF52D + uniF_52D_.glif + uniF52E + uniF_52E_.glif + uniF52F + uniF_52F_.glif + uniF532 + uniF_532.glif + uniF533 + uniF_533.glif + uniF536 + uniF_536.glif + uniF537 + uniF_537.glif + uniF538 + uniF_538.glif + uniF539 + uniF_539.glif + uniF830 + uniF_830.glif + uniF831 + uniF_831.glif + uniF833 + uniF_833.glif + uniF834 + uniF_834.glif + uniF839 + uniF_839.glif + uniF83A + uniF_83A_.glif + uniF86F + uniF_86F_.glif + uniF870 + uniF_870.glif + uniF872 + uniF_872.glif + uniF873 + uniF_873.glif + uniF875 + uniF_875.glif + uniF876 + uniF_876.glif + uniF878 + uniF_878.glif + uniF879 + uniF_879.glif + uniF87B + uniF_87B_.glif + uniF87C + uniF_87C_.glif + uniF87E + uniF_87E_.glif + uniF87F + uniF_87F_.glif + uogonek + uogonek.glif + uring + uring.glif + ushort-cy + ushort-cy.glif + ustraightcyr + ustraightcyr.glif + ustraightstrokecyr + ustraightstrokecyr.glif + utilde + utilde.glif + v + v.glif + ve-cy + ve-cy.glif + ve-cy.BGR + ve-cy.B_G_R_.glif + ve-cy.ss01 + ve-cy.ss01.glif + virgo + virgo.glif + vzmetcomb-cy + vzmetcomb-cy.glif + w + w.glif + wacute + wacute.glif + wcircumflex + wcircumflex.glif + wdieresis + wdieresis.glif + wecyr + wecyr.glif + wgrave + wgrave.glif + x + x.glif + xatailcyr + xatailcyr.glif + y + y.glif + yacute + yacute.glif + yaecyr + yaecyr.glif + yatIotified-cy + yatI_otified-cy.glif + yatcyr + yatcyr.glif + yatcyr.BGR + yatcyr.B_G_R_.glif + ycircumflex + ycircumflex.glif + ydieresis + ydieresis.glif + yen + yen.glif + yen.ss01 + yen.ss01.glif + yerNeutral-cy + yerN_eutral-cy.glif + yeru-cy + yeru-cy.glif + yeru-cy.accented + yeru-cy.accented.glif + yeru-cy.ss01 + yeru-cy.ss01.glif + yeruBackyer-cy + yeruB_ackyer-cy.glif + yi-cy + yi-cy.glif + yi-cy.alt + yi-cy.alt.glif + ylongdieresiscyr + ylongdieresiscyr.glif + yn-cy + yn-cy.glif + yuReversed-cy + yuR_eversed-cy.glif + yusBlended-cy + yusB_lended-cy.glif + yusClosedlittle-cy + yusC_losedlittle-cy.glif + yusbigcyr + yusbigcyr.glif + yusbigiotifiedcyr + yusbigiotifiedcyr.glif + yusbigiotifiedcyr.BGR + yusbigiotifiedcyr.B_G_R_.glif + yusiotifiedClosedLittle-cy + yusiotifiedC_losedL_ittle-cy.glif + yuslittlecyr + yuslittlecyr.glif + yuslittleiotifiedcyr + yuslittleiotifiedcyr.glif + z + z.glif + zacute + zacute.glif + zcaron + zcaron.glif + zdotaccent + zdotaccent.glif + ze-cy + ze-cy.glif + ze-cy.BGR + ze-cy.B_G_R_.glif + zedieresiscyr + zedieresiscyr.glif + zemlya-cy + zemlya-cy.glif + zero + zero.glif + zero.osf + zero.osf.glif + zero.tf + zero.tf.glif + zetailcyr + zetailcyr.glif + zetailcyr.BSH + zetailcyr.B_S_H_.glif + zhe-cy + zhe-cy.glif + zhe-cy.BGR + zhe-cy.B_G_R_.glif + zhebrevecyr + zhebrevecyr.glif + zhedieresiscyr + zhedieresiscyr.glif + zhetailcyr + zhetailcyr.glif + zhwe-cy + zhwe-cy.glif + zjekomicyr + zjekomicyr.glif + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/copyright.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/copyright.glif new file mode 100644 index 00000000..fe76e0b5 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/copyright.glif @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/crossedo-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/crossedo-cy.glif new file mode 100644 index 00000000..f592741b --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/crossedo-cy.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + com.fontlab.recipe + o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/crossedswords.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/crossedswords.glif new file mode 100644 index 00000000..72845b0f --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/crossedswords.glif @@ -0,0 +1,103 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/currency.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/currency.glif new file mode 100644 index 00000000..c1422df7 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/currency.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/d.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/d.glif new file mode 100644 index 00000000..396cb392 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/d.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/d.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/d.ss01.glif new file mode 100644 index 00000000..94a4f929 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/d.ss01.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/dagger.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/dagger.glif new file mode 100644 index 00000000..d5ab26b7 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/dagger.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/daggerdbl.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/daggerdbl.glif new file mode 100644 index 00000000..7d83b836 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/daggerdbl.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/dcaron.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/dcaron.glif new file mode 100644 index 00000000..01ab5640 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/dcaron.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + d+caron.salt + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/dcaron.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/dcaron.ss01.glif new file mode 100644 index 00000000..2e134742 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/dcaron.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + d.ss01+caron.salt + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/dchecyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/dchecyr.glif new file mode 100644 index 00000000..4fa46b66 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/dchecyr.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + д+10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/dcroat.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/dcroat.glif new file mode 100644 index 00000000..3dbab635 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/dcroat.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + d + com.fontlab.metricsRight + |hbar + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/dcroat.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/dcroat.ss01.glif new file mode 100644 index 00000000..06b37f2c --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/dcroat.ss01.glif @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + d.ss01 + com.fontlab.metricsRight + |hbar + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/de-cy.B_G_R_.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/de-cy.B_G_R_.glif new file mode 100644 index 00000000..0765887c --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/de-cy.B_G_R_.glif @@ -0,0 +1,77 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + q + com.fontlab.metricsRight + q + com.fontlab.recipe + uni1C81 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/de-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/de-cy.glif new file mode 100644 index 00000000..d8de3038 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/de-cy.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/de-cy.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/de-cy.ss01.glif new file mode 100644 index 00000000..5f5ba458 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/de-cy.ss01.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/deS_oft-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/deS_oft-cy.glif new file mode 100644 index 00000000..8c877906 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/deS_oft-cy.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + д + com.fontlab.metricsRight + ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/degree.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/degree.glif new file mode 100644 index 00000000..856b7e05 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/degree.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/dekomicyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/dekomicyr.glif new file mode 100644 index 00000000..b4bdd939 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/dekomicyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + d + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/diamondwhite-misc.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/diamondwhite-misc.glif new file mode 100644 index 00000000..eda183ed --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/diamondwhite-misc.glif @@ -0,0 +1,145 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =47 + com.fontlab.metricsRight + =47 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/dieresis.alt.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/dieresis.alt.glif new file mode 100644 index 00000000..2bf797a8 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/dieresis.alt.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 1,0.6,0.994,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/dieresis.case.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/dieresis.case.glif new file mode 100644 index 00000000..ada139ef --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/dieresis.case.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/dieresis.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/dieresis.glif new file mode 100644 index 00000000..d2bc53e3 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/dieresis.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/dieresisacute.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/dieresisacute.glif new file mode 100644 index 00000000..e4805d55 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/dieresisacute.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/dieresiscase.alt.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/dieresiscase.alt.glif new file mode 100644 index 00000000..a73abdc1 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/dieresiscase.alt.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 1,0.6,0.994,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/divide.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/divide.glif new file mode 100644 index 00000000..c818e587 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/divide.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/djecyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/djecyr.glif new file mode 100644 index 00000000..e9492cc2 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/djecyr.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hbar + com.fontlab.metricsRight + h + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/djekomicyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/djekomicyr.glif new file mode 100644 index 00000000..2ab9d922 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/djekomicyr.glif @@ -0,0 +1,73 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + d + com.fontlab.metricsRight + njekomicyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/djerv-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/djerv-cy.glif new file mode 100644 index 00000000..aaab7097 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/djerv-cy.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + r() + com.fontlab.metricsRight + п-30 + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/dollar.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/dollar.glif new file mode 100644 index 00000000..3ff3ed90 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/dollar.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + S + com.fontlab.metricsRight + S + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/dotaccent.case.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/dotaccent.case.glif new file mode 100644 index 00000000..f740cbca --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/dotaccent.case.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/dotaccent.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/dotaccent.glif new file mode 100644 index 00000000..a7b9371a --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/dotaccent.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/doubleo-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/doubleo-cy.glif new file mode 100644 index 00000000..50c5df4b --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/doubleo-cy.glif @@ -0,0 +1,91 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + com.fontlab.recipe + o_o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/dramsignarmn.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/dramsignarmn.glif new file mode 100644 index 00000000..e3ef88cc --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/dramsignarmn.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/dwe-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/dwe-cy.glif new file mode 100644 index 00000000..e3faf906 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/dwe-cy.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + д + com.fontlab.metricsRight + д + com.fontlab.recipe + д + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/dze-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/dze-cy.glif new file mode 100644 index 00000000..78162078 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/dze-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + s + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/dzeR_eversed-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/dzeR_eversed-cy.glif new file mode 100644 index 00000000..bc9f907d --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/dzeR_eversed-cy.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |s + com.fontlab.metricsRight + |s + com.fontlab.recipe + s + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/dzeabkhcyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/dzeabkhcyr.glif new file mode 100644 index 00000000..0534b3da --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/dzeabkhcyr.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + z-30 + com.fontlab.metricsRight + з-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/dzelo-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/dzelo-cy.glif new file mode 100644 index 00000000..f827d678 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/dzelo-cy.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/dzhecyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/dzhecyr.glif new file mode 100644 index 00000000..c3c4b358 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/dzhecyr.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/dzjekomicyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/dzjekomicyr.glif new file mode 100644 index 00000000..5650a713 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/dzjekomicyr.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + zjekomicyr + com.fontlab.metricsRight + ц-5 + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/dzwe-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/dzwe-cy.glif new file mode 100644 index 00000000..d734f788 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/dzwe-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + s + com.fontlab.metricsRight + s + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/dzze-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/dzze-cy.glif new file mode 100644 index 00000000..8fd270e5 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/dzze-cy.glif @@ -0,0 +1,84 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + д + com.fontlab.metricsRight + д-30 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/dzzhecyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/dzzhecyr.glif new file mode 100644 index 00000000..9f802de0 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/dzzhecyr.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + д+5 + com.fontlab.metricsRight + ж+5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/e-cy.accented.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/e-cy.accented.glif new file mode 100644 index 00000000..d51dd323 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/e-cy.accented.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+acute + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/e-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/e-cy.glif new file mode 100644 index 00000000..af205077 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/e-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + c + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/e-cy.hist.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/e-cy.hist.glif new file mode 100644 index 00000000..21387e5f --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/e-cy.hist.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + c + com.fontlab.recipe + uni1C83 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/e.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/e.glif new file mode 100644 index 00000000..346c5b08 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/e.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/e.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/e.ss01.glif new file mode 100644 index 00000000..8cccdefd --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/e.ss01.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + O-5 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/eacute.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/eacute.glif new file mode 100644 index 00000000..bce63f5d --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/eacute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+acute + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/eacute.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/eacute.ss01.glif new file mode 100644 index 00000000..24769f04 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/eacute.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+acute + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/ebreve.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ebreve.glif new file mode 100644 index 00000000..a62d7f79 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ebreve.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+breve + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/ebreve.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ebreve.ss01.glif new file mode 100644 index 00000000..03be9247 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ebreve.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+breve + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/ecaron.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ecaron.glif new file mode 100644 index 00000000..0859fccb --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ecaron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+caron + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/ecaron.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ecaron.ss01.glif new file mode 100644 index 00000000..4296affc --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ecaron.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+caron + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/ecircumflex.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ecircumflex.glif new file mode 100644 index 00000000..dbde9d63 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ecircumflex.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+circumflex + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/ecircumflex.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ecircumflex.ss01.glif new file mode 100644 index 00000000..1e1bb511 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ecircumflex.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+circumflex + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/edieresis.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/edieresis.glif new file mode 100644 index 00000000..3a773aec --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/edieresis.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsLeft + e + com.fontlab.metricsRight + e + com.fontlab.recipe + e+dieresis + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/edieresis.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/edieresis.ss01.glif new file mode 100644 index 00000000..99e655d5 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/edieresis.ss01.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsLeft + e + com.fontlab.metricsRight + e + com.fontlab.recipe + e.ss01+dieresis + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/edotaccent.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/edotaccent.glif new file mode 100644 index 00000000..15c5105d --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/edotaccent.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+dotaccent + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/edotaccent.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/edotaccent.ss01.glif new file mode 100644 index 00000000..39b04b58 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/edotaccent.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+dotaccent + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/ef-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ef-cy.glif new file mode 100644 index 00000000..41a6b507 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ef-cy.glif @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/egrave.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/egrave.glif new file mode 100644 index 00000000..4263a5b9 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/egrave.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+grave + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/egrave.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/egrave.ss01.glif new file mode 100644 index 00000000..a63dbca9 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/egrave.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+grave + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/eight.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/eight.glif new file mode 100644 index 00000000..244979a8 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/eight.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/eight.osf.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/eight.osf.glif new file mode 100644 index 00000000..ab52c764 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/eight.osf.glif @@ -0,0 +1,15 @@ + + + + + + + + + com.fontlab.metricsLeft + eight + com.fontlab.metricsRight + eight + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/eight.tf.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/eight.tf.glif new file mode 100644 index 00000000..d88dbf5b --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/eight.tf.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/eiotifiedcyr.B_G_R_.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/eiotifiedcyr.B_G_R_.glif new file mode 100644 index 00000000..051c359e --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/eiotifiedcyr.B_G_R_.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + c + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/eiotifiedcyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/eiotifiedcyr.glif new file mode 100644 index 00000000..00a7f93f --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/eiotifiedcyr.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + c + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/el-cy.B_G_R_.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/el-cy.B_G_R_.glif new file mode 100644 index 00000000..d391dd3e --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/el-cy.B_G_R_.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + v + com.fontlab.metricsRight + v + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/el-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/el-cy.glif new file mode 100644 index 00000000..8b3c5172 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/el-cy.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/el-cy.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/el-cy.ss01.glif new file mode 100644 index 00000000..465ecb05 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/el-cy.ss01.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/elS_oft-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/elS_oft-cy.glif new file mode 100644 index 00000000..a0216aaa --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/elS_oft-cy.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/elhookcyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/elhookcyr.glif new file mode 100644 index 00000000..972a7a7b --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/elhookcyr.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + н + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/ellipsis.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ellipsis.glif new file mode 100644 index 00000000..fabd3285 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ellipsis.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/elmiddlehookcyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/elmiddlehookcyr.glif new file mode 100644 index 00000000..4721a5f7 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/elmiddlehookcyr.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + enmiddlehookcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/elsharptailcyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/elsharptailcyr.glif new file mode 100644 index 00000000..8c43d712 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/elsharptailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + ensharptailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/eltailcyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/eltailcyr.glif new file mode 100644 index 00000000..0d06ea2e --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/eltailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/em-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/em-cy.glif new file mode 100644 index 00000000..5d173f1a --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/em-cy.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/emS_oft-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/emS_oft-cy.glif new file mode 100644 index 00000000..7778eee4 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/emS_oft-cy.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + м + com.fontlab.metricsRight + ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/emacron.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/emacron.glif new file mode 100644 index 00000000..04009c88 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/emacron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+macron + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/emacron.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/emacron.ss01.glif new file mode 100644 index 00000000..f7b9a7d1 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/emacron.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+macron + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/emdash.case.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/emdash.case.glif new file mode 100644 index 00000000..e8bcdb17 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/emdash.case.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/emdash.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/emdash.glif new file mode 100644 index 00000000..8d0978cf --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/emdash.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/emsharptailcyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/emsharptailcyr.glif new file mode 100644 index 00000000..f2a97644 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/emsharptailcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + м + com.fontlab.metricsRight + ensharptailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/en-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/en-cy.glif new file mode 100644 index 00000000..c61c4d73 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/en-cy.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/enclosingcirclecomb.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/enclosingcirclecomb.glif new file mode 100644 index 00000000..9030a6ed --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/enclosingcirclecomb.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/endash.case.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/endash.case.glif new file mode 100644 index 00000000..27a5d485 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/endash.case.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/endash.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/endash.glif new file mode 100644 index 00000000..6f55afc7 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/endash.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/eng.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/eng.glif new file mode 100644 index 00000000..68af8788 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/eng.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + n + com.fontlab.metricsRight + dotlessj + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/engecyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/engecyr.glif new file mode 100644 index 00000000..6d9f2785 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/engecyr.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/enhookcyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/enhookcyr.glif new file mode 100644 index 00000000..e26403a4 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/enhookcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/enhookleftcyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/enhookleftcyr.glif new file mode 100644 index 00000000..206cecf7 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/enhookleftcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + j + com.fontlab.metricsRight + н + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/enmiddlehookcyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/enmiddlehookcyr.glif new file mode 100644 index 00000000..6bb291d7 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/enmiddlehookcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + softsign-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/ensharptailcyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ensharptailcyr.glif new file mode 100644 index 00000000..283024c4 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ensharptailcyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + д + com.fontlab.recipe + entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/entailcyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/entailcyr.glif new file mode 100644 index 00000000..41aa2950 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/entailcyr.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + ц + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/eogonek.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/eogonek.glif new file mode 100644 index 00000000..64650943 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/eogonek.glif @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + e+ogonek + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/eogonek.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/eogonek.ss01.glif new file mode 100644 index 00000000..842826fa --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/eogonek.ss01.glif @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + e.ss01+ogonek + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/equal.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/equal.glif new file mode 100644 index 00000000..3a8d753a --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/equal.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/er-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/er-cy.glif new file mode 100644 index 00000000..583bb83a --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/er-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + p + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/er-cy.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/er-cy.ss01.glif new file mode 100644 index 00000000..721d1aa5 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/er-cy.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + p.ss01 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/ereversed-cy.accented.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ereversed-cy.accented.glif new file mode 100644 index 00000000..fa69519c --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ereversed-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + э+acute + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/ereversed-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ereversed-cy.glif new file mode 100644 index 00000000..576a3909 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ereversed-cy.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |c + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/ereverseddieresiscyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ereverseddieresiscyr.glif new file mode 100644 index 00000000..ea7eebd8 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ereverseddieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ereversed-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/ertickcyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ertickcyr.glif new file mode 100644 index 00000000..c1628c67 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ertickcyr.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + p + com.fontlab.metricsRight + p + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/es-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/es-cy.glif new file mode 100644 index 00000000..578524b2 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/es-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/estailcyr.B_S_H_.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/estailcyr.B_S_H_.glif new file mode 100644 index 00000000..4c27d581 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/estailcyr.B_S_H_.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + c + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/estailcyr.C_H_U_.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/estailcyr.C_H_U_.glif new file mode 100644 index 00000000..17039d0c --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/estailcyr.C_H_U_.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+cedilla + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/estailcyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/estailcyr.glif new file mode 100644 index 00000000..e45a7bc5 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/estailcyr.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + с + com.fontlab.metricsRight + с + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/estimated.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/estimated.glif new file mode 100644 index 00000000..d6489e46 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/estimated.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/eth.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/eth.glif new file mode 100644 index 00000000..29d84f10 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/eth.glif @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/eturned.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/eturned.glif new file mode 100644 index 00000000..3854db94 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/eturned.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + schwacyr + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/euro.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/euro.glif new file mode 100644 index 00000000..7c9a3964 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/euro.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + C + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/exclam.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/exclam.glif new file mode 100644 index 00000000..726adfff --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/exclam.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/exclamdown.case.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/exclamdown.case.glif new file mode 100644 index 00000000..6f9ee40a --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/exclamdown.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + exclamdown + com.fontlab.metricsRight + exclamdown + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/exclamdown.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/exclamdown.glif new file mode 100644 index 00000000..9ebbd798 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/exclamdown.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/f.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/f.glif new file mode 100644 index 00000000..ca796b78 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/f.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/f.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/f.ss01.glif new file mode 100644 index 00000000..16e5bec0 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/f.ss01.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/f_f.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/f_f.glif new file mode 100644 index 00000000..0e325a11 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/f_f.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f + com.fontlab.metricsRight + f + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/f_f.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/f_f.ss01.glif new file mode 100644 index 00000000..0d3520b3 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/f_f.ss01.glif @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f.ss01 + com.fontlab.metricsRight + f.ss01 + com.fontlab.recipe + f.ss01_f.ss01 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/f_f_i.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/f_f_i.glif new file mode 100644 index 00000000..585bcf32 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/f_f_i.glif @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f + com.fontlab.metricsRight + i + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/f_f_i.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/f_f_i.ss01.glif new file mode 100644 index 00000000..2e022602 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/f_f_i.ss01.glif @@ -0,0 +1,88 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f.ss01 + com.fontlab.metricsRight + i + com.fontlab.recipe + f.ss01_f.ss01_i + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/f_f_l.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/f_f_l.glif new file mode 100644 index 00000000..b35cbe95 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/f_f_l.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f + com.fontlab.metricsRight + l + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/f_f_l.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/f_f_l.ss01.glif new file mode 100644 index 00000000..419026b9 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/f_f_l.ss01.glif @@ -0,0 +1,86 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f.ss01 + com.fontlab.metricsRight + l.ss01 + com.fontlab.recipe + f.ss01_f.ss01_l.ss01 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/fi.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/fi.glif new file mode 100644 index 00000000..cb08579e --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/fi.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f + com.fontlab.metricsRight + i + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/fi.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/fi.ss01.glif new file mode 100644 index 00000000..5c3e7d21 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/fi.ss01.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f.ss01 + com.fontlab.metricsRight + i + com.fontlab.recipe + f.ss01_i + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/fitacyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/fitacyr.glif new file mode 100644 index 00000000..11d78091 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/fitacyr.glif @@ -0,0 +1,76 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + obarcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/five.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/five.glif new file mode 100644 index 00000000..03157cd3 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/five.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/five.osf.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/five.osf.glif new file mode 100644 index 00000000..5c0bb230 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/five.osf.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + five + com.fontlab.metricsRight + five + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/five.tf.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/five.tf.glif new file mode 100644 index 00000000..fab77068 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/five.tf.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/fl.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/fl.glif new file mode 100644 index 00000000..3b801a4f --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/fl.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f + com.fontlab.metricsRight + l + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/fl.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/fl.ss01.glif new file mode 100644 index 00000000..7b0f313f --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/fl.ss01.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f.ss01 + com.fontlab.metricsRight + l.ss01 + com.fontlab.recipe + f.ss01_l.ss01 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/floretteblack.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/floretteblack.glif new file mode 100644 index 00000000..81b781c7 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/floretteblack.glif @@ -0,0 +1,522 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/floretteoutlinedpetalledblackeight.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/floretteoutlinedpetalledblackeight.glif new file mode 100644 index 00000000..8da6f394 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/floretteoutlinedpetalledblackeight.glif @@ -0,0 +1,693 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/florettewhite.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/florettewhite.glif new file mode 100644 index 00000000..2bede2b5 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/florettewhite.glif @@ -0,0 +1,417 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/florin.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/florin.glif new file mode 100644 index 00000000..3f8fe809 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/florin.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/flower.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/flower.glif new file mode 100644 index 00000000..05a810d3 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/flower.glif @@ -0,0 +1,278 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/four.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/four.glif new file mode 100644 index 00000000..a8a119f9 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/four.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/four.osf.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/four.osf.glif new file mode 100644 index 00000000..84614e59 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/four.osf.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + four + com.fontlab.metricsRight + four + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/four.tf.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/four.tf.glif new file mode 100644 index 00000000..aed11f32 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/four.tf.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/fraction.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/fraction.glif new file mode 100644 index 00000000..6bc68a9d --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/fraction.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/g.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/g.glif new file mode 100644 index 00000000..937b6fb7 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/g.glif @@ -0,0 +1,94 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/g.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/g.ss01.glif new file mode 100644 index 00000000..c972ad19 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/g.ss01.glif @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/gacute.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/gacute.glif new file mode 100644 index 00000000..05aa45fe --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/gacute.glif @@ -0,0 +1,109 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + g+acute + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/gacute.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/gacute.ss01.glif new file mode 100644 index 00000000..15eae467 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/gacute.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + g.ss01+acute + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/gbreve.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/gbreve.glif new file mode 100644 index 00000000..2c551baa --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/gbreve.glif @@ -0,0 +1,119 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + g+breve + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/gbreve.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/gbreve.ss01.glif new file mode 100644 index 00000000..4a2b0a02 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/gbreve.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + g.ss01+breve + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/gcircumflex.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/gcircumflex.glif new file mode 100644 index 00000000..db21f862 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/gcircumflex.glif @@ -0,0 +1,113 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + g+circumflex + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/gcircumflex.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/gcircumflex.ss01.glif new file mode 100644 index 00000000..d79f152f --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/gcircumflex.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + g.ss01+circumflex + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/gcommaaccent.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/gcommaaccent.glif new file mode 100644 index 00000000..8b072c03 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/gcommaaccent.glif @@ -0,0 +1,121 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + g+commaaccentcomb.salt + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/gcommaaccent.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/gcommaaccent.ss01.glif new file mode 100644 index 00000000..22d6f4c8 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/gcommaaccent.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + g.ss01+commaaccentcomb.salt + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/gdotaccent.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/gdotaccent.glif new file mode 100644 index 00000000..98a79be0 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/gdotaccent.glif @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + g+dotaccent + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/gdotaccent.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/gdotaccent.ss01.glif new file mode 100644 index 00000000..008ce638 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/gdotaccent.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + g.ss01+dotaccent + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/ge-cy.B_G_R_.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ge-cy.B_G_R_.glif new file mode 100644 index 00000000..4348255a --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ge-cy.B_G_R_.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |s+5 + com.fontlab.metricsRight + |s+5 + com.fontlab.recipe + dzeReversed-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/ge-cy.S_R_B_.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ge-cy.S_R_B_.glif new file mode 100644 index 00000000..11196d8f --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ge-cy.S_R_B_.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + iota-cy+macron + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/ge-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ge-cy.glif new file mode 100644 index 00000000..2b7b6788 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ge-cy.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + т + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/gehookcyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/gehookcyr.glif new file mode 100644 index 00000000..2c4e5140 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/gehookcyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + г + com.fontlab.metricsRight + enmiddlehookcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/gehookstrokecyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/gehookstrokecyr.glif new file mode 100644 index 00000000..2d5673b1 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/gehookstrokecyr.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + gestrokecyr + com.fontlab.metricsRight + gestrokecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/germandbls.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/germandbls.glif new file mode 100644 index 00000000..4145fa45 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/germandbls.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + h-5 + com.fontlab.metricsRight + з + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/germandbls.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/germandbls.ss01.glif new file mode 100644 index 00000000..6a21d129 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/germandbls.ss01.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f.ss01 + com.fontlab.metricsRight + з + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/gestrokecyr.B_S_H_.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/gestrokecyr.B_S_H_.glif new file mode 100644 index 00000000..206c4cd2 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/gestrokecyr.B_S_H_.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + г + com.fontlab.metricsRight + gestrokecyr + com.fontlab.recipe + gestrokecyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/gestrokecyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/gestrokecyr.glif new file mode 100644 index 00000000..f8d13046 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/gestrokecyr.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + г + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/getailcyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/getailcyr.glif new file mode 100644 index 00000000..f06d6901 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/getailcyr.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + г + com.fontlab.metricsRight + г + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/gheupturn-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/gheupturn-cy.glif new file mode 100644 index 00000000..0b79c78d --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/gheupturn-cy.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + г + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/gjecyr.S_R_B_.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/gjecyr.S_R_B_.glif new file mode 100644 index 00000000..3f36a99f --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/gjecyr.S_R_B_.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + iota-cy+macronacute.SRB + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/gjecyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/gjecyr.glif new file mode 100644 index 00000000..6cd1f9bc --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/gjecyr.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/grave.case.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/grave.case.glif new file mode 100644 index 00000000..3aef4b8c --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/grave.case.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/grave.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/grave.glif new file mode 100644 index 00000000..af68e745 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/grave.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/greater.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/greater.glif new file mode 100644 index 00000000..3c56ca99 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/greater.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |less + com.fontlab.metricsRight + |less + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/greaterequal.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/greaterequal.glif new file mode 100644 index 00000000..f340e595 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/greaterequal.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/guillemetleft.case.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/guillemetleft.case.glif new file mode 100644 index 00000000..4c1f8680 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/guillemetleft.case.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + guilsinglleft + com.fontlab.metricsRight + guilsinglleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/guillemetleft.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/guillemetleft.glif new file mode 100644 index 00000000..92eba8f0 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/guillemetleft.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + guilsinglleft + com.fontlab.metricsRight + guilsinglleft + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/guillemetright.case.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/guillemetright.case.glif new file mode 100644 index 00000000..79035a1a --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/guillemetright.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |guillemetleft.case + com.fontlab.metricsRight + |guillemetleft.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/guillemetright.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/guillemetright.glif new file mode 100644 index 00000000..236fb04d --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/guillemetright.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |guilsinglleft + com.fontlab.metricsRight + |guilsinglleft + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/guilsinglleft.case.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/guilsinglleft.case.glif new file mode 100644 index 00000000..af755b30 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/guilsinglleft.case.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/guilsinglleft.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/guilsinglleft.glif new file mode 100644 index 00000000..ce2c0b24 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/guilsinglleft.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/guilsinglright.case.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/guilsinglright.case.glif new file mode 100644 index 00000000..c73ea9bc --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/guilsinglright.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |guilsinglleft + com.fontlab.metricsRight + |guilsinglleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/guilsinglright.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/guilsinglright.glif new file mode 100644 index 00000000..ea2fbcd6 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/guilsinglright.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + |guilsinglleft + com.fontlab.metricsRight + |guilsinglleft + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/h.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/h.glif new file mode 100644 index 00000000..bc27170b --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/h.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + com.fontlab.metricsRight + n + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/ha-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ha-cy.glif new file mode 100644 index 00000000..6d4d62c1 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ha-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + x + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/haabkhcyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/haabkhcyr.glif new file mode 100644 index 00000000..a344b3d4 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/haabkhcyr.glif @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + |o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/hahookcyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/hahookcyr.glif new file mode 100644 index 00000000..885aa7ce --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/hahookcyr.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + x + com.fontlab.metricsRight + x + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/hardsign-cy.B_G_R_.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/hardsign-cy.B_G_R_.glif new file mode 100644 index 00000000..95dc5236 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/hardsign-cy.B_G_R_.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/hardsign-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/hardsign-cy.glif new file mode 100644 index 00000000..fcefa885 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/hardsign-cy.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/hardsign-cy.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/hardsign-cy.ss01.glif new file mode 100644 index 00000000..e6d7f2fa --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/hardsign-cy.ss01.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/hastrokecyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/hastrokecyr.glif new file mode 100644 index 00000000..0cd5717a --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/hastrokecyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + x + com.fontlab.metricsRight + x + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/hbar.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/hbar.glif new file mode 100644 index 00000000..804842e9 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/hbar.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + h + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/hcircumflex.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/hcircumflex.glif new file mode 100644 index 00000000..85b31427 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/hcircumflex.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + h+circumflex.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/heart.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/heart.glif new file mode 100644 index 00000000..e490b465 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/heart.glif @@ -0,0 +1,320 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/heartwhite.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/heartwhite.glif new file mode 100644 index 00000000..89d85b60 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/heartwhite.glif @@ -0,0 +1,189 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =43 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/hryvnia.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/hryvnia.glif new file mode 100644 index 00000000..b4a37951 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/hryvnia.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/hundredmillionscomb-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/hundredmillionscomb-cy.glif new file mode 100644 index 00000000..0784170e --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/hundredmillionscomb-cy.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/hundredthousandscombcyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/hundredthousandscombcyr.glif new file mode 100644 index 00000000..69db9118 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/hundredthousandscombcyr.glif @@ -0,0 +1,141 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/hungarumlaut.case.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/hungarumlaut.case.glif new file mode 100644 index 00000000..30a79bbf --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/hungarumlaut.case.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/hungarumlaut.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/hungarumlaut.glif new file mode 100644 index 00000000..b8e961fb --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/hungarumlaut.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/hwe-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/hwe-cy.glif new file mode 100644 index 00000000..b78b7da9 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/hwe-cy.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + h + com.fontlab.metricsRight + h + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/hyphen.case.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/hyphen.case.glif new file mode 100644 index 00000000..8faf4d67 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/hyphen.case.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.metricsLeft + hyphen + com.fontlab.metricsRight + hyphen + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/hyphen.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/hyphen.glif new file mode 100644 index 00000000..f6a28d9b --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/hyphen.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/i-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/i-cy.glif new file mode 100644 index 00000000..c7870a5d --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/i-cy.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + i + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/i.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/i.glif new file mode 100644 index 00000000..3449be80 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/i.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + dotlessi+dotaccent + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/ia-cy.accented.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ia-cy.accented.glif new file mode 100644 index 00000000..dd00d768 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ia-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + я+acute + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/ia-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ia-cy.glif new file mode 100644 index 00000000..3d23780f --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ia-cy.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/ia-cy.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ia-cy.ss01.glif new file mode 100644 index 00000000..f12326bd --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ia-cy.ss01.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/iacute.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/iacute.glif new file mode 100644 index 00000000..990a1872 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/iacute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + dotlessi+acute + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/ibreve.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ibreve.glif new file mode 100644 index 00000000..1af69a5a --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ibreve.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + dotlessi+breve + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/icircumflex.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/icircumflex.glif new file mode 100644 index 00000000..3b7d35c9 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/icircumflex.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + dotlessi+circumflex + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/idieresis.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/idieresis.glif new file mode 100644 index 00000000..1ef9589c --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/idieresis.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + idotless+dieresis.alt + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/idieresiscyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/idieresiscyr.glif new file mode 100644 index 00000000..efde28a3 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/idieresiscyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ii-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/idotless.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/idotless.glif new file mode 100644 index 00000000..7914fbe4 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/idotless.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/ie-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ie-cy.glif new file mode 100644 index 00000000..f363e4b7 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ie-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/ie-cy.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ie-cy.ss01.glif new file mode 100644 index 00000000..6641ca49 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ie-cy.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/iebrevecyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/iebrevecyr.glif new file mode 100644 index 00000000..b0b663a7 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/iebrevecyr.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+breve + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/iegravecyr.S_R_B_.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/iegravecyr.S_R_B_.glif new file mode 100644 index 00000000..2edb3ad4 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/iegravecyr.S_R_B_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+grave + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/iegravecyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/iegravecyr.glif new file mode 100644 index 00000000..ee8e3822 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/iegravecyr.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+grave + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/igrave.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/igrave.glif new file mode 100644 index 00000000..736547ba --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/igrave.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + dotlessi+grave + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/igravecyr.S_R_B_.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/igravecyr.S_R_B_.glif new file mode 100644 index 00000000..f21c0046 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/igravecyr.S_R_B_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+grave + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/igravecyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/igravecyr.glif new file mode 100644 index 00000000..f3c54a11 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/igravecyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ii-cy+grave + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/ii-cy.B_G_R_.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ii-cy.B_G_R_.glif new file mode 100644 index 00000000..81f646a9 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ii-cy.B_G_R_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/ii-cy.accented.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ii-cy.accented.glif new file mode 100644 index 00000000..0bf3ba42 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ii-cy.accented.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + и+acute + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/ii-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ii-cy.glif new file mode 100644 index 00000000..806b3f72 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ii-cy.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/iishort-cy.B_G_R_.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/iishort-cy.B_G_R_.glif new file mode 100644 index 00000000..4061af4f --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/iishort-cy.B_G_R_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/iishort-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/iishort-cy.glif new file mode 100644 index 00000000..4670b6ad --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/iishort-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + icyr+breve + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/ij.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ij.glif new file mode 100644 index 00000000..ca46fc6b --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ij.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + i + com.fontlab.metricsRight + j + com.fontlab.recipe + i_j + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/imacron.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/imacron.glif new file mode 100644 index 00000000..70b10a77 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/imacron.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =5 + com.fontlab.metricsRight + =5 + com.fontlab.recipe + idotless+macron + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/imacroncyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/imacroncyr.glif new file mode 100644 index 00000000..e85b0878 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/imacroncyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ii-cy+macron + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/increment.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/increment.glif new file mode 100644 index 00000000..b080a450 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/increment.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/infinity.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/infinity.glif new file mode 100644 index 00000000..3f11a145 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/infinity.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/integral.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/integral.glif new file mode 100644 index 00000000..17ed7cdf --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/integral.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/io-cy.accented.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/io-cy.accented.glif new file mode 100644 index 00000000..a6760dbe --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/io-cy.accented.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsLeft + e + com.fontlab.metricsRight + e + com.fontlab.recipe + e+dieresisacute + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/io-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/io-cy.glif new file mode 100644 index 00000000..8c875cac --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/io-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + edieresis + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/io-cy.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/io-cy.ss01.glif new file mode 100644 index 00000000..21629e9c --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/io-cy.ss01.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + edieresis.ss01 + com.schriftgestaltung.Glyphs.ComponentInfo + + + alignment + -1 + index + 0 + name + edieresis.ss01 + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/iogonek.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/iogonek.glif new file mode 100644 index 00000000..4df78cfc --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/iogonek.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + i+ogonek + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/iota-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/iota-cy.glif new file mode 100644 index 00000000..26d4b3b7 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/iota-cy.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l.ss01 + com.fontlab.metricsRight + l.ss01 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/iotifieda-cy.B_G_R_.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/iotifieda-cy.B_G_R_.glif new file mode 100644 index 00000000..1dd29d48 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/iotifieda-cy.B_G_R_.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + el-cy.BGR + com.fontlab.recipe + iotifieda-cy + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/iotifieda-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/iotifieda-cy.glif new file mode 100644 index 00000000..bb9b94dd --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/iotifieda-cy.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + yusClosedlittle-cy + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/iotifieda-cy.hist.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/iotifieda-cy.hist.glif new file mode 100644 index 00000000..50bd11d8 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/iotifieda-cy.hist.glif @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + reversedzecyr + com.fontlab.metricsRight + a + public.markColor + 0.6,0.997,1,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/ishortsharptailcyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ishortsharptailcyr.glif new file mode 100644 index 00000000..e3f97982 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ishortsharptailcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + й + com.fontlab.metricsRight + ensharptailcyr + com.fontlab.recipe + й + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/itilde.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/itilde.glif new file mode 100644 index 00000000..104b7805 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/itilde.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + dotlessi+tilde + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/iu-cy.B_G_R_.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/iu-cy.B_G_R_.glif new file mode 100644 index 00000000..436450d4 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/iu-cy.B_G_R_.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + o + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/iu-cy.accented.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/iu-cy.accented.glif new file mode 100644 index 00000000..7caf57a1 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/iu-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ю+acute + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/iu-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/iu-cy.glif new file mode 100644 index 00000000..1c5a26e0 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/iu-cy.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/izhitsacyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/izhitsacyr.glif new file mode 100644 index 00000000..9d99f4ce --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/izhitsacyr.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + v + com.fontlab.metricsRight + + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/izhitsagravedblcyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/izhitsagravedblcyr.glif new file mode 100644 index 00000000..d9162a88 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/izhitsagravedblcyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + com.fontlab.metricsLeft + izhitsacyr + com.fontlab.metricsRight + izhitsacyr + com.fontlab.recipe + izhitsacyr+hungarumlaut + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/j.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/j.glif new file mode 100644 index 00000000..9ce5ca03 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/j.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + i + com.fontlab.recipe + dotlessj+dotaccent + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/jcircumflex.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/jcircumflex.glif new file mode 100644 index 00000000..4a7c34c1 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/jcircumflex.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + dotlessj+circumflex + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/jdotless.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/jdotless.glif new file mode 100644 index 00000000..04133cf4 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/jdotless.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + l + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/je-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/je-cy.glif new file mode 100644 index 00000000..27626de0 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/je-cy.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + j + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/k.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/k.glif new file mode 100644 index 00000000..174656a2 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/k.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/ka-cy.B_G_R_.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ka-cy.B_G_R_.glif new file mode 100644 index 00000000..6c05bc26 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ka-cy.B_G_R_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + k + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/ka-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ka-cy.glif new file mode 100644 index 00000000..dc63c3e7 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ka-cy.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + k + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/kaaleutcyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/kaaleutcyr.glif new file mode 100644 index 00000000..76aeafa9 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/kaaleutcyr.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + k + com.fontlab.metricsRight + k + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/kabashkcyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/kabashkcyr.glif new file mode 100644 index 00000000..57336050 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/kabashkcyr.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hardsign-cy + com.fontlab.metricsRight + k + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/kahookcyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/kahookcyr.glif new file mode 100644 index 00000000..9200133c --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/kahookcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + n + com.fontlab.metricsRight + k+10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/kastrokecyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/kastrokecyr.glif new file mode 100644 index 00000000..3042b89b --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/kastrokecyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hbar + com.fontlab.metricsRight + k + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/katailcyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/katailcyr.glif new file mode 100644 index 00000000..a4f163ea --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/katailcyr.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + k + com.fontlab.metricsRight + к-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/kaverticalstrokecyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/kaverticalstrokecyr.glif new file mode 100644 index 00000000..8da5468e --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/kaverticalstrokecyr.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + k + com.fontlab.metricsRight + k + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/kcommaaccent.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/kcommaaccent.glif new file mode 100644 index 00000000..9f339702 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/kcommaaccent.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsLeft + k + com.fontlab.metricsRight + k + com.fontlab.recipe + k+commaaccentcomb + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/kgreenlandic.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/kgreenlandic.glif new file mode 100644 index 00000000..be041eea --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/kgreenlandic.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + kacyr + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/kjecyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/kjecyr.glif new file mode 100644 index 00000000..d2c67575 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/kjecyr.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/knightblack.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/knightblack.glif new file mode 100644 index 00000000..8c193feb --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/knightblack.glif @@ -0,0 +1,313 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =30 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/knightwhite.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/knightwhite.glif new file mode 100644 index 00000000..9f145d85 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/knightwhite.glif @@ -0,0 +1,320 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/koppacyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/koppacyr.glif new file mode 100644 index 00000000..25967f09 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/koppacyr.glif @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + c-20 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/ksicyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ksicyr.glif new file mode 100644 index 00000000..cdcc413f --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ksicyr.glif @@ -0,0 +1,102 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + з-10 + com.fontlab.metricsRight + з + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/l.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/l.glif new file mode 100644 index 00000000..0c9dd9b5 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/l.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/l.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/l.ss01.glif new file mode 100644 index 00000000..21463a61 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/l.ss01.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/lacute.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/lacute.glif new file mode 100644 index 00000000..61d2a56b --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/lacute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l+acute.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/lacute.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/lacute.ss01.glif new file mode 100644 index 00000000..05c9ad91 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/lacute.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l.ss01+acute.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/layerinfo.plist b/sources/FixelDisplay-ExtraLight.ufo/glyphs/layerinfo.plist new file mode 100644 index 00000000..8c198655 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/layerinfo.plist @@ -0,0 +1,21 @@ + + + + + lib + + com.fontlab.layer.name + Body + com.fontlab.layer.opacity + 1 + com.fontlab.layer.visible + + com.fontlab.layer.locked + + com.fontlab.layer.service + + com.fontlab.layer.wireframe + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/lcaron.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/lcaron.glif new file mode 100644 index 00000000..6d1be91f --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/lcaron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l+caron.salt + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/lcaron.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/lcaron.ss01.glif new file mode 100644 index 00000000..4149a981 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/lcaron.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l.ss01+caron.salt + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/lcommaaccent.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/lcommaaccent.glif new file mode 100644 index 00000000..a4e13145 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/lcommaaccent.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l+commaaccentcomb + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/lcommaaccent.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/lcommaaccent.ss01.glif new file mode 100644 index 00000000..d964570b --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/lcommaaccent.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l.ss01+commaaccentcomb + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/ldot.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ldot.glif new file mode 100644 index 00000000..169a7531 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ldot.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/ldot.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ldot.ss01.glif new file mode 100644 index 00000000..efdac95e --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ldot.ss01.glif @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + l.ss01_periodcentered + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/leo.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/leo.glif new file mode 100644 index 00000000..ffa3b3ee --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/leo.glif @@ -0,0 +1,494 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/less.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/less.glif new file mode 100644 index 00000000..16478c48 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/less.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/lessequal.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/lessequal.glif new file mode 100644 index 00000000..e13425e1 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/lessequal.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/lhacyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/lhacyr.glif new file mode 100644 index 00000000..baba2671 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/lhacyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + х + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/ljecyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ljecyr.glif new file mode 100644 index 00000000..8dc5add8 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ljecyr.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + ь + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/ljecyr.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ljecyr.ss01.glif new file mode 100644 index 00000000..778a77e0 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ljecyr.ss01.glif @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + ь + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/ljekomicyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ljekomicyr.glif new file mode 100644 index 00000000..addb5fa4 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ljekomicyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + njekomicyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/longs.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/longs.glif new file mode 100644 index 00000000..2fbc43d1 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/longs.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + n + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/lslash.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/lslash.glif new file mode 100644 index 00000000..6b345ef7 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/lslash.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Lslash+12 + com.fontlab.metricsRight + |Lslash+12 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/lslash.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/lslash.ss01.glif new file mode 100644 index 00000000..0006ae1a --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/lslash.ss01.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Lslash-10 + com.fontlab.metricsRight + |Lslash + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/m.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/m.glif new file mode 100644 index 00000000..2241e41d --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/m.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + n + com.fontlab.metricsRight + n + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/macron-fwd.alt.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/macron-fwd.alt.glif new file mode 100644 index 00000000..49bc09c6 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/macron-fwd.alt.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/macron-fwd.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/macron-fwd.glif new file mode 100644 index 00000000..df7befb9 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/macron-fwd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/macron.case.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/macron.case.glif new file mode 100644 index 00000000..417602b3 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/macron.case.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/macron.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/macron.glif new file mode 100644 index 00000000..7e82701a --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/macron.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/macronacute.S_R_B_.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/macronacute.S_R_B_.glif new file mode 100644 index 00000000..fbd16e36 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/macronacute.S_R_B_.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + macron+acute + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/millionscombcyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/millionscombcyr.glif new file mode 100644 index 00000000..b2f6dce9 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/millionscombcyr.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/minus.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/minus.glif new file mode 100644 index 00000000..9aacf6d7 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/minus.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/minute.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/minute.glif new file mode 100644 index 00000000..c03aeb64 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/minute.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/mu.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/mu.glif new file mode 100644 index 00000000..8222f69c --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/mu.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + p + com.fontlab.metricsRight + u + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/multiply.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/multiply.glif new file mode 100644 index 00000000..2a0b5dbf --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/multiply.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/n.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/n.glif new file mode 100644 index 00000000..a7ca613b --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/n.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/nacute.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/nacute.glif new file mode 100644 index 00000000..c8548881 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/nacute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + n+acute + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/napostrophe.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/napostrophe.glif new file mode 100644 index 00000000..3e537350 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/napostrophe.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + com.fontlab.metricsRight + n + com.schriftgestaltung.Glyphs.ComponentInfo + + + alignment + -1 + index + 0 + name + n + + + alignment + -1 + index + 1 + name + quoteright + + + com.schriftgestaltung.Glyphs.rightMetricsKey + n + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/ncaron.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ncaron.glif new file mode 100644 index 00000000..f7047d66 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ncaron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + n+caron + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/ncommaaccent.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ncommaaccent.glif new file mode 100644 index 00000000..090abdea --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ncommaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + n+commaaccentcomb + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/neptune.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/neptune.glif new file mode 100644 index 00000000..f159ce23 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/neptune.glif @@ -0,0 +1,125 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ш + com.fontlab.metricsRight + Ш + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/nine.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/nine.glif new file mode 100644 index 00000000..c5371869 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/nine.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + |six + com.fontlab.metricsRight + |six + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/nine.osf.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/nine.osf.glif new file mode 100644 index 00000000..7f5edb95 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/nine.osf.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |six + com.fontlab.metricsRight + |six + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/nine.tf.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/nine.tf.glif new file mode 100644 index 00000000..9f6872ec --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/nine.tf.glif @@ -0,0 +1,7 @@ + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/njecyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/njecyr.glif new file mode 100644 index 00000000..62c3be20 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/njecyr.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + ь + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/njecyr.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/njecyr.ss01.glif new file mode 100644 index 00000000..6598f5a4 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/njecyr.ss01.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + ь + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/njekomicyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/njekomicyr.glif new file mode 100644 index 00000000..cab78d85 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/njekomicyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + |u + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/notequal.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/notequal.glif new file mode 100644 index 00000000..bc068779 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/notequal.glif @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/ntilde.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ntilde.glif new file mode 100644 index 00000000..6e8820e7 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ntilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + n+tilde + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/numbersign.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/numbersign.glif new file mode 100644 index 00000000..5069e131 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/numbersign.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/numero.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/numero.glif new file mode 100644 index 00000000..c833430f --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/numero.glif @@ -0,0 +1,90 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + N + com.fontlab.recipe + N+ordmasculine + com.schriftgestaltung.Glyphs.ComponentInfo + + + alignment + -1 + index + 0 + name + N + + + alignment + -1 + index + 1 + name + ordmasculine + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/numero.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/numero.ss01.glif new file mode 100644 index 00000000..539fbea3 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/numero.ss01.glif @@ -0,0 +1,95 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + N.ss01 + com.fontlab.metricsRight + ordmasculine + com.fontlab.recipe + N.ss01+ordmasculine + com.schriftgestaltung.Glyphs.ComponentInfo + + + alignment + -1 + index + 0 + name + ordmasculine + + + alignment + -1 + index + 1 + name + N.ss01 + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/o-cy.accented.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/o-cy.accented.glif new file mode 100644 index 00000000..9b1590f2 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/o-cy.accented.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+acute + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/o-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/o-cy.glif new file mode 100644 index 00000000..41eb22d9 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/o-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/o.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/o.glif new file mode 100644 index 00000000..258d90f8 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/o.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/oB_inocular-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/oB_inocular-cy.glif new file mode 100644 index 00000000..31013e35 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/oB_inocular-cy.glif @@ -0,0 +1,81 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/oD_oubleM_onocular-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/oD_oubleM_onocular-cy.glif new file mode 100644 index 00000000..8ab6be5d --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/oD_oubleM_onocular-cy.glif @@ -0,0 +1,121 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + com.fontlab.recipe + doubleo-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/oM_onocular-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/oM_onocular-cy.glif new file mode 100644 index 00000000..4cde9e51 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/oM_onocular-cy.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/oacute.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/oacute.glif new file mode 100644 index 00000000..b5960d35 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/oacute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+acute + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/obarcyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/obarcyr.glif new file mode 100644 index 00000000..fcd6416d --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/obarcyr.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/obardieresiscyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/obardieresiscyr.glif new file mode 100644 index 00000000..e4e6a44d --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/obardieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + obarcyr+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/obreve.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/obreve.glif new file mode 100644 index 00000000..f5517038 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/obreve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+breve + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/ocircumflex.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ocircumflex.glif new file mode 100644 index 00000000..9e926d6b --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ocircumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+circumflex + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/odieresis.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/odieresis.glif new file mode 100644 index 00000000..0bc24a7b --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/odieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+dieresis + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/odieresiscyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/odieresiscyr.glif new file mode 100644 index 00000000..8ded1a90 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/odieresiscyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/oe.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/oe.glif new file mode 100644 index 00000000..19ae4747 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/oe.glif @@ -0,0 +1,86 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + e + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/oe.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/oe.ss01.glif new file mode 100644 index 00000000..71812672 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/oe.ss01.glif @@ -0,0 +1,95 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + e.ss01 + public.markColor + 0.6,0.997,1,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/ogonek.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ogonek.glif new file mode 100644 index 00000000..888ea9fe --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ogonek.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/ograve.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ograve.glif new file mode 100644 index 00000000..15a9f782 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ograve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+grave + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/ohungarumlaut.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ohungarumlaut.glif new file mode 100644 index 00000000..db611176 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ohungarumlaut.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+hungarumlaut + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/omacron.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/omacron.glif new file mode 100644 index 00000000..f9b6308e --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/omacron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+macron + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/omegaB_road-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/omegaB_road-cy.glif new file mode 100644 index 00000000..c0c3a6a4 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/omegaB_road-cy.glif @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o+5 + com.fontlab.metricsRight + o+5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/omegacyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/omegacyr.glif new file mode 100644 index 00000000..b040a486 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/omegacyr.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + w + com.fontlab.metricsRight + w + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/omegaroundcyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/omegaroundcyr.glif new file mode 100644 index 00000000..8fdf7d36 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/omegaroundcyr.glif @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/omegatitlocyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/omegatitlocyr.glif new file mode 100644 index 00000000..6e977736 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/omegatitlocyr.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o+5 + com.fontlab.metricsRight + o+5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/omultiocular-cy.alt.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/omultiocular-cy.alt.glif new file mode 100644 index 00000000..fa3281fa --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/omultiocular-cy.alt.glif @@ -0,0 +1,366 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + oMonocular-cy + com.fontlab.metricsRight + oMonocular-cy + public.markColor + 0.6,0.997,1,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/omultiocular-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/omultiocular-cy.glif new file mode 100644 index 00000000..7870d40d --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/omultiocular-cy.glif @@ -0,0 +1,517 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + oMonocular-cy + com.fontlab.metricsRight + oMonocular-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/one.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/one.glif new file mode 100644 index 00000000..884e2cf8 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/one.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =40 + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/one.osf.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/one.osf.glif new file mode 100644 index 00000000..e0f04e36 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/one.osf.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + one + com.fontlab.metricsRight + one + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/one.tf.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/one.tf.glif new file mode 100644 index 00000000..cdb3624e --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/one.tf.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/onehalf.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/onehalf.glif new file mode 100644 index 00000000..23a20c5e --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/onehalf.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/onequarter.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/onequarter.glif new file mode 100644 index 00000000..71d67b18 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/onequarter.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/onesuperior.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/onesuperior.glif new file mode 100644 index 00000000..293aa335 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/onesuperior.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/ordfeminine.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ordfeminine.glif new file mode 100644 index 00000000..3d710951 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ordfeminine.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/ordmasculine.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ordmasculine.glif new file mode 100644 index 00000000..566cc41b --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ordmasculine.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/oslash.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/oslash.glif new file mode 100644 index 00000000..77ec717f --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/oslash.glif @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/oslashacute.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/oslashacute.glif new file mode 100644 index 00000000..bd4698e0 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/oslashacute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + oslash+acute + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/otcyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/otcyr.glif new file mode 100644 index 00000000..fcafdab3 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/otcyr.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsRight + w + com.fontlab.recipe + omegacyr+uni2DEE + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/otilde.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/otilde.glif new file mode 100644 index 00000000..2a57d442 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/otilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+tilde + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/p.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/p.glif new file mode 100644 index 00000000..06ba7a2e --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/p.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/p.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/p.ss01.glif new file mode 100644 index 00000000..1c37eb69 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/p.ss01.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/palatcombcyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/palatcombcyr.glif new file mode 100644 index 00000000..7fdc81dd --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/palatcombcyr.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/palochkacyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/palochkacyr.glif new file mode 100644 index 00000000..ab44c706 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/palochkacyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/paragraph.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/paragraph.glif new file mode 100644 index 00000000..e26aa692 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/paragraph.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |P + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/parenleft.case.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/parenleft.case.glif new file mode 100644 index 00000000..46e665a2 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/parenleft.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |parenright.case + com.fontlab.metricsRight + |parenright.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/parenleft.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/parenleft.glif new file mode 100644 index 00000000..b290f09a --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/parenleft.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/parenright.case.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/parenright.case.glif new file mode 100644 index 00000000..6eeb0870 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/parenright.case.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + parenright + com.fontlab.metricsRight + parenright + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/parenright.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/parenright.glif new file mode 100644 index 00000000..215e9759 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/parenright.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/partialdiff.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/partialdiff.glif new file mode 100644 index 00000000..ed8e82b1 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/partialdiff.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/pe-cy.B_G_R_.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/pe-cy.B_G_R_.glif new file mode 100644 index 00000000..40494fd2 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/pe-cy.B_G_R_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + n + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/pe-cy.S_R_B_.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/pe-cy.S_R_B_.glif new file mode 100644 index 00000000..55623721 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/pe-cy.S_R_B_.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+macron-fwd.alt + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/pe-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/pe-cy.glif new file mode 100644 index 00000000..0b0c4d41 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/pe-cy.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/pehookcyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/pehookcyr.glif new file mode 100644 index 00000000..b10fdca3 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/pehookcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + п + com.fontlab.metricsRight + enmiddlehookcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/percent.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/percent.glif new file mode 100644 index 00000000..40c9ec9e --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/percent.glif @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/period.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/period.glif new file mode 100644 index 00000000..e1fb3f34 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/period.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/periodcentered.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/periodcentered.glif new file mode 100644 index 00000000..15780e02 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/periodcentered.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/perthousand.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/perthousand.glif new file mode 100644 index 00000000..12f876f5 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/perthousand.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/petailcyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/petailcyr.glif new file mode 100644 index 00000000..88df6f62 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/petailcyr.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + п + com.fontlab.metricsRight + entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/pi.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/pi.glif new file mode 100644 index 00000000..68145ec4 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/pi.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f + com.fontlab.metricsRight + t + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/plus.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/plus.glif new file mode 100644 index 00000000..cc3279b3 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/plus.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/plusminus.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/plusminus.glif new file mode 100644 index 00000000..50c658f4 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/plusminus.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/pokrytiecombcyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/pokrytiecombcyr.glif new file mode 100644 index 00000000..d08f24c6 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/pokrytiecombcyr.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/product.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/product.glif new file mode 100644 index 00000000..e72c0783 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/product.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/proportional.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/proportional.glif new file mode 100644 index 00000000..0852128f --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/proportional.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/psicyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/psicyr.glif new file mode 100644 index 00000000..e49e618c --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/psicyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + u + com.fontlab.metricsRight + |u + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/q.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/q.glif new file mode 100644 index 00000000..4578ed41 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/q.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/q.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/q.ss01.glif new file mode 100644 index 00000000..04ddfd03 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/q.ss01.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/qacyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/qacyr.glif new file mode 100644 index 00000000..d7102908 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/qacyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + q + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/question.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/question.glif new file mode 100644 index 00000000..8ae1a357 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/question.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/questiondown.case.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/questiondown.case.glif new file mode 100644 index 00000000..ba8f7653 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/questiondown.case.glif @@ -0,0 +1,19 @@ + + + + + + + + + com.fontlab.metricsLeft + |question + com.fontlab.metricsRight + |question + com.fontlab.recipe + questiondown + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/questiondown.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/questiondown.glif new file mode 100644 index 00000000..9be99ee3 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/questiondown.glif @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |question + com.fontlab.metricsRight + |question + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/quotedbl.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/quotedbl.glif new file mode 100644 index 00000000..3c756ae9 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/quotedbl.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/quotedblbase.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/quotedblbase.glif new file mode 100644 index 00000000..0cb4bd83 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/quotedblbase.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + comma + com.fontlab.metricsRight + comma + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/quotedblleft.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/quotedblleft.glif new file mode 100644 index 00000000..a07cba2c --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/quotedblleft.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + |comma + com.fontlab.metricsRight + |comma + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/quotedblright.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/quotedblright.glif new file mode 100644 index 00000000..8aa9f308 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/quotedblright.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.metricsLeft + comma+20 + com.fontlab.metricsRight + comma-20 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/quoteleft.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/quoteleft.glif new file mode 100644 index 00000000..bbea6104 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/quoteleft.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + quotedblleft + com.fontlab.metricsRight + quotedblleft + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/quoteright.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/quoteright.glif new file mode 100644 index 00000000..0058f51f --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/quoteright.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + com.fontlab.metricsLeft + quotedblright + com.fontlab.metricsRight + quotedblright + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/quotesinglbase.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/quotesinglbase.glif new file mode 100644 index 00000000..37251cc6 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/quotesinglbase.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + com.fontlab.recipe + comma + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/quotesingle.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/quotesingle.glif new file mode 100644 index 00000000..9d39cac7 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/quotesingle.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/r.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/r.glif new file mode 100644 index 00000000..7822a8ea --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/r.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/racute.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/racute.glif new file mode 100644 index 00000000..b53d930a --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/racute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + r+acute + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/radical.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/radical.glif new file mode 100644 index 00000000..b2b992dd --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/radical.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + V + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/rcaron.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/rcaron.glif new file mode 100644 index 00000000..606a82b7 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/rcaron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + r+caron + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/rcommaaccent.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/rcommaaccent.glif new file mode 100644 index 00000000..16b63985 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/rcommaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + r+commaaccentcomb + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/registered.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/registered.glif new file mode 100644 index 00000000..e3f1bfd2 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/registered.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/reversedzecyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/reversedzecyr.glif new file mode 100644 index 00000000..c7e86fe2 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/reversedzecyr.glif @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + + com.fontlab.metricsRight + + com.fontlab.recipe + з + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/rhacyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/rhacyr.glif new file mode 100644 index 00000000..0d668626 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/rhacyr.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + p + com.fontlab.metricsRight + x + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/ring.case.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ring.case.glif new file mode 100644 index 00000000..de7aeb6b --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ring.case.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/ring.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ring.glif new file mode 100644 index 00000000..ae8baf8c --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ring.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/rookblack.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/rookblack.glif new file mode 100644 index 00000000..04daaa7d --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/rookblack.glif @@ -0,0 +1,270 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =30 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/ruble.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ruble.glif new file mode 100644 index 00000000..43ccc241 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ruble.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + P + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/s.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/s.glif new file mode 100644 index 00000000..a899b0a0 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/s.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/sacute.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/sacute.glif new file mode 100644 index 00000000..9dac2741 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/sacute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + s+acute + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/scaron.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/scaron.glif new file mode 100644 index 00000000..a40349f0 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/scaron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + s+caron + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/scedilla.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/scedilla.glif new file mode 100644 index 00000000..2c34d22f --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/scedilla.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + s+cedilla + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/schwacyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/schwacyr.glif new file mode 100644 index 00000000..1c1bba52 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/schwacyr.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |e + com.fontlab.metricsRight + o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/schwadieresiscyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/schwadieresiscyr.glif new file mode 100644 index 00000000..b3f5da2f --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/schwadieresiscyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + schwacyr+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/scircumflex.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/scircumflex.glif new file mode 100644 index 00000000..d0e0cb38 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/scircumflex.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + s+circumflex + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/scommaaccent.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/scommaaccent.glif new file mode 100644 index 00000000..2e09d188 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/scommaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + s+commaaccentcomb + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/second.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/second.glif new file mode 100644 index 00000000..b682ebda --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/second.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/section.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/section.glif new file mode 100644 index 00000000..931eeea0 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/section.glif @@ -0,0 +1,87 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + S + com.fontlab.metricsRight + S + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/semicolon.case.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/semicolon.case.glif new file mode 100644 index 00000000..495374e2 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/semicolon.case.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.metricsLeft + semicolon + com.fontlab.metricsRight + semicolon + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/semicolon.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/semicolon.glif new file mode 100644 index 00000000..959c2f19 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/semicolon.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/semisoftcyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/semisoftcyr.glif new file mode 100644 index 00000000..7fa268d6 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/semisoftcyr.glif @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + t + com.fontlab.metricsRight + ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/seven.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/seven.glif new file mode 100644 index 00000000..9b8a992d --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/seven.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/seven.osf.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/seven.osf.glif new file mode 100644 index 00000000..ab3fabb2 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/seven.osf.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + seven + com.fontlab.metricsRight + seven + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/seven.tf.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/seven.tf.glif new file mode 100644 index 00000000..48e3ac89 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/seven.tf.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/sha-cy.B_G_R_.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/sha-cy.B_G_R_.glif new file mode 100644 index 00000000..bed1ca52 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/sha-cy.B_G_R_.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + u + com.fontlab.metricsRight + l + com.fontlab.recipe + m + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/sha-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/sha-cy.glif new file mode 100644 index 00000000..7564d001 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/sha-cy.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/shcha-cy.B_G_R_.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/shcha-cy.B_G_R_.glif new file mode 100644 index 00000000..68452afe --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/shcha-cy.B_G_R_.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + u + com.fontlab.metricsRight + щ + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/shcha-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/shcha-cy.glif new file mode 100644 index 00000000..bed80389 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/shcha-cy.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + д + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/shhacyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/shhacyr.glif new file mode 100644 index 00000000..fa1e0ac3 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/shhacyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsRight + n + com.fontlab.recipe + h + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/shhatailcyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/shhatailcyr.glif new file mode 100644 index 00000000..7cc95e71 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/shhatailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + h + com.fontlab.metricsRight + entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/shwe-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/shwe-cy.glif new file mode 100644 index 00000000..2592d72a --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/shwe-cy.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + щ + com.fontlab.metricsRight + щ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/six.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/six.glif new file mode 100644 index 00000000..f0e6efe7 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/six.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/six.osf.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/six.osf.glif new file mode 100644 index 00000000..8db4efdd --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/six.osf.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + six + com.fontlab.metricsRight + six + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/six.tf.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/six.tf.glif new file mode 100644 index 00000000..86128352 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/six.tf.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/sjekomicyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/sjekomicyr.glif new file mode 100644 index 00000000..188346a4 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/sjekomicyr.glif @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + e + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/slash.case.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/slash.case.glif new file mode 100644 index 00000000..35cc7aa0 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/slash.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + slash + com.fontlab.metricsRight + slash + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/slash.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/slash.glif new file mode 100644 index 00000000..79d3b103 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/slash.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/softsign-cy.B_G_R_.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/softsign-cy.B_G_R_.glif new file mode 100644 index 00000000..a47d79aa --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/softsign-cy.B_G_R_.glif @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + u + com.fontlab.metricsRight + ь-5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/softsign-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/softsign-cy.glif new file mode 100644 index 00000000..2fb8db0d --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/softsign-cy.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/softsign-cy.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/softsign-cy.ss01.glif new file mode 100644 index 00000000..1a21589c --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/softsign-cy.ss01.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/space.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/space.glif new file mode 100644 index 00000000..0a8f9a9d --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/space.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/spadewhite.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/spadewhite.glif new file mode 100644 index 00000000..438512e1 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/spadewhite.glif @@ -0,0 +1,453 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/sterling.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/sterling.glif new file mode 100644 index 00000000..5d1e41c1 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/sterling.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/summation.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/summation.glif new file mode 100644 index 00000000..ee0c194f --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/summation.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/t.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/t.glif new file mode 100644 index 00000000..f212554b --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/t.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/t.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/t.ss01.glif new file mode 100644 index 00000000..57404ca1 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/t.ss01.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/tbar.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/tbar.glif new file mode 100644 index 00000000..6c180c77 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/tbar.glif @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/tbar.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/tbar.ss01.glif new file mode 100644 index 00000000..5a76e666 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/tbar.ss01.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/tcaron.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/tcaron.glif new file mode 100644 index 00000000..1a5cac29 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/tcaron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.metricsLeft + t + com.fontlab.metricsRight + t + com.fontlab.recipe + t+caron.salt + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/tcaron.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/tcaron.ss01.glif new file mode 100644 index 00000000..86ff7d56 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/tcaron.ss01.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + com.fontlab.recipe + t.ss01+caron.salt + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/tcedilla.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/tcedilla.glif new file mode 100644 index 00000000..0af0b8bd --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/tcedilla.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + t+cedilla + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/tcedilla.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/tcedilla.ss01.glif new file mode 100644 index 00000000..71919aed --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/tcedilla.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + t.ss01+cedilla + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/tche-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/tche-cy.glif new file mode 100644 index 00000000..f57aed3b --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/tche-cy.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + tetsecyr-20 + com.fontlab.metricsRight + ч + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/tcommaaccent.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/tcommaaccent.glif new file mode 100644 index 00000000..ebe0879d --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/tcommaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + t+commaaccentcomb + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/tcommaaccent.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/tcommaaccent.ss01.glif new file mode 100644 index 00000000..06af353a --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/tcommaaccent.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + t.ss01+commaaccentcomb + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/te-cy.B_G_R_.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/te-cy.B_G_R_.glif new file mode 100644 index 00000000..fe2de33e --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/te-cy.B_G_R_.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + m + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/te-cy.S_R_B_.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/te-cy.S_R_B_.glif new file mode 100644 index 00000000..ef6a2311 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/te-cy.S_R_B_.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ш.BGR+macron-fwd + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/te-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/te-cy.glif new file mode 100644 index 00000000..cafb0ef3 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/te-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/te-cy.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/te-cy.ss01.glif new file mode 100644 index 00000000..b4717185 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/te-cy.ss01.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/tenge.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/tenge.glif new file mode 100644 index 00000000..f9112148 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/tenge.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + T + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/tenmillionscomb-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/tenmillionscomb-cy.glif new file mode 100644 index 00000000..38b7b525 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/tenmillionscomb-cy.glif @@ -0,0 +1,109 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/tetailcyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/tetailcyr.glif new file mode 100644 index 00000000..f4618764 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/tetailcyr.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + т + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/tetsecyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/tetsecyr.glif new file mode 100644 index 00000000..4a8cf5f0 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/tetsecyr.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + т + com.fontlab.metricsRight + ц + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/tewithmiddlehook-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/tewithmiddlehook-cy.glif new file mode 100644 index 00000000..49d69c08 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/tewithmiddlehook-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + т + com.fontlab.metricsRight + gehookcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/thorn.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/thorn.glif new file mode 100644 index 00000000..84111c60 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/thorn.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + b + com.fontlab.metricsRight + b + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/thousandmillionscomb-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/thousandmillionscomb-cy.glif new file mode 100644 index 00000000..72e3cb9d --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/thousandmillionscomb-cy.glif @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/thousandscyr.dnom.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/thousandscyr.dnom.glif new file mode 100644 index 00000000..07fe1839 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/thousandscyr.dnom.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + | + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/thousandscyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/thousandscyr.glif new file mode 100644 index 00000000..274d4003 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/thousandscyr.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + | + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/three.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/three.glif new file mode 100644 index 00000000..d99d4e51 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/three.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/three.osf.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/three.osf.glif new file mode 100644 index 00000000..92c7dd2d --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/three.osf.glif @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + three + com.fontlab.metricsRight + three + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/three.tf.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/three.tf.glif new file mode 100644 index 00000000..5f15fbf7 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/three.tf.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/threequarters.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/threequarters.glif new file mode 100644 index 00000000..d917685a --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/threequarters.glif @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/threesuperior.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/threesuperior.glif new file mode 100644 index 00000000..c0402096 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/threesuperior.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/tilde.case.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/tilde.case.glif new file mode 100644 index 00000000..8eea54b5 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/tilde.case.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/tilde.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/tilde.glif new file mode 100644 index 00000000..7e00ad26 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/tilde.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/titlocombcyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/titlocombcyr.glif new file mode 100644 index 00000000..200b8bc3 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/titlocombcyr.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/tjekomicyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/tjekomicyr.glif new file mode 100644 index 00000000..1b5c0058 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/tjekomicyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + т + com.fontlab.metricsRight + njekomicyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/trademark.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/trademark.glif new file mode 100644 index 00000000..0ab5df10 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/trademark.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/tse-cy.B_G_R_.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/tse-cy.B_G_R_.glif new file mode 100644 index 00000000..5f893085 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/tse-cy.B_G_R_.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + u + com.fontlab.metricsRight + ц + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/tse-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/tse-cy.glif new file mode 100644 index 00000000..c657e5d4 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/tse-cy.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + д + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/tseR_eversed-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/tseR_eversed-cy.glif new file mode 100644 index 00000000..c0423a3a --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/tseR_eversed-cy.glif @@ -0,0 +1,20 @@ + + + + + + + + + + com.fontlab.metricsLeft + + com.fontlab.metricsRight + н + com.fontlab.recipe + ц + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/tshecyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/tshecyr.glif new file mode 100644 index 00000000..1a21cd81 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/tshecyr.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + hbar + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/tsse-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/tsse-cy.glif new file mode 100644 index 00000000..bfc61938 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/tsse-cy.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + т + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/tswe-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/tswe-cy.glif new file mode 100644 index 00000000..639c07fe --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/tswe-cy.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ш + com.fontlab.metricsRight + shwe-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/twe-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/twe-cy.glif new file mode 100644 index 00000000..faecebd6 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/twe-cy.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + т.ss01 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/two.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/two.glif new file mode 100644 index 00000000..65682fc3 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/two.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/two.osf.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/two.osf.glif new file mode 100644 index 00000000..caaac83d --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/two.osf.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + two + com.fontlab.metricsRight + two + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/two.tf.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/two.tf.glif new file mode 100644 index 00000000..55baad14 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/two.tf.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/twosuperior.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/twosuperior.glif new file mode 100644 index 00000000..ce3583ae --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/twosuperior.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/u-cy.accented.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/u-cy.accented.glif new file mode 100644 index 00000000..6cd244d4 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/u-cy.accented.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + y+acute + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/u-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/u-cy.glif new file mode 100644 index 00000000..3bd036fd --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/u-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + y + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/u.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/u.glif new file mode 100644 index 00000000..d7eed086 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/u.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |n + com.fontlab.metricsRight + l + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/uacute.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uacute.glif new file mode 100644 index 00000000..533803c9 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uacute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+acute + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/uacutedblcyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uacutedblcyr.glif new file mode 100644 index 00000000..09516b2a --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uacutedblcyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u-cy+hungarumlaut + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/ubreve.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ubreve.glif new file mode 100644 index 00000000..4eedcfed --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ubreve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+breve + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/ucircumflex.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ucircumflex.glif new file mode 100644 index 00000000..4f53b8ca --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ucircumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+circumflex + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/udieresis.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/udieresis.glif new file mode 100644 index 00000000..2952fabf --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/udieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+dieresis + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/udieresiscyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/udieresiscyr.glif new file mode 100644 index 00000000..d0286957 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/udieresiscyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/ugrave.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ugrave.glif new file mode 100644 index 00000000..1744d126 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ugrave.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+grave + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/uhungarumlaut.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uhungarumlaut.glif new file mode 100644 index 00000000..ad4f3875 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uhungarumlaut.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+hungarumlaut + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/ukM_onograph-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ukM_onograph-cy.glif new file mode 100644 index 00000000..3b4bbba7 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ukM_onograph-cy.glif @@ -0,0 +1,78 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + y-30 + com.fontlab.metricsRight + y-20 + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/ukcyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ukcyr.glif new file mode 100644 index 00000000..b61c2418 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ukcyr.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + y + com.fontlab.recipe + uni1C82_у + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/umacron.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/umacron.glif new file mode 100644 index 00000000..03671ff3 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/umacron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+macron + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/umacroncyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/umacroncyr.glif new file mode 100644 index 00000000..0e79ec7c --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/umacroncyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u-cy+macron + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/underscore.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/underscore.glif new file mode 100644 index 00000000..99979f56 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/underscore.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/uni1C_80.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uni1C_80.glif new file mode 100644 index 00000000..e93c1ad2 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uni1C_80.glif @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + б + com.fontlab.metricsRight + o-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/uni1C_81.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uni1C_81.glif new file mode 100644 index 00000000..76ff1e62 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uni1C_81.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + д-10 + com.fontlab.metricsRight + | + com.fontlab.recipe + д + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/uni1C_82.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uni1C_82.glif new file mode 100644 index 00000000..3a242863 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uni1C_82.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/uni1C_83.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uni1C_83.glif new file mode 100644 index 00000000..589a3101 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uni1C_83.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + c + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/uni1C_84.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uni1C_84.glif new file mode 100644 index 00000000..664d073e --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uni1C_84.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/uni1C_85.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uni1C_85.glif new file mode 100644 index 00000000..5da378e2 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uni1C_85.glif @@ -0,0 +1,20 @@ + + + + + + + + + + com.fontlab.metricsLeft + ш + com.fontlab.metricsRight + l() + com.fontlab.recipe + ш + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/uni1C_86.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uni1C_86.glif new file mode 100644 index 00000000..e673e0ad --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uni1C_86.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + uni1C84 + com.fontlab.metricsRight + ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/uni1C_87.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uni1C_87.glif new file mode 100644 index 00000000..106a3fd1 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uni1C_87.glif @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + uni1C84-40 + com.fontlab.metricsRight + ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/uni1C_88.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uni1C_88.glif new file mode 100644 index 00000000..85059720 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uni1C_88.glif @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/uni1E_B_C_.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uni1E_B_C_.glif new file mode 100644 index 00000000..2fe632cf --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uni1E_B_C_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+tilde.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/uni1E_B_D_.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uni1E_B_D_.glif new file mode 100644 index 00000000..9303d1cf --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uni1E_B_D_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+tilde + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/uni2010.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uni2010.glif new file mode 100644 index 00000000..10fc5ace --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uni2010.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + hyphen + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/uni2D_E_E_.case.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uni2D_E_E_.case.glif new file mode 100644 index 00000000..9d4e32fc --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uni2D_E_E_.case.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/uni2D_E_E_.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uni2D_E_E_.glif new file mode 100644 index 00000000..dd2749f7 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uni2D_E_E_.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniE_000.alt.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniE_000.alt.glif new file mode 100644 index 00000000..de2d1f8d --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniE_000.alt.glif @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + ї_ї + public.markColor + 0.6,0.997,1,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniE_000.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniE_000.glif new file mode 100644 index 00000000..7b741987 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniE_000.glif @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + ї_ї + public.markColor + 0.6,0.997,1,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniE_01A_.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniE_01A_.glif new file mode 100644 index 00000000..f9595c34 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniE_01A_.glif @@ -0,0 +1,115 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_43A_.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_43A_.glif new file mode 100644 index 00000000..5a1e992c --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_43A_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_43B_.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_43B_.glif new file mode 100644 index 00000000..580cc8ca --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_43B_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ustraightcyr+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_45D_.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_45D_.glif new file mode 100644 index 00000000..d2852191 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_45D_.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Є+acute.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_45E_.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_45E_.glif new file mode 100644 index 00000000..9616f3ea --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_45E_.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Iacute + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_45F_.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_45F_.glif new file mode 100644 index 00000000..df8248a8 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_45F_.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + com.fontlab.recipe + I+dieresiscase.alt+acute.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_475.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_475.glif new file mode 100644 index 00000000..21a73b0a --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_475.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + є+acute + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_476.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_476.glif new file mode 100644 index 00000000..4ae01ec7 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_476.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + iacute + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_477.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_477.glif new file mode 100644 index 00000000..6c39d005 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_477.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + dotlessi+dieresisacute + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_478.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_478.glif new file mode 100644 index 00000000..27410783 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_478.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Yat+acute.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_479.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_479.glif new file mode 100644 index 00000000..d998b0b6 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_479.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + yat+acute + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_498.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_498.glif new file mode 100644 index 00000000..1e248c6e --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_498.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ю+dieresis.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_499.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_499.glif new file mode 100644 index 00000000..88b15704 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_499.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ю+dieresis + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_49A_.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_49A_.glif new file mode 100644 index 00000000..c11ba5ba --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_49A_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Obarcyr+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_49B_.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_49B_.glif new file mode 100644 index 00000000..1f1da7a2 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_49B_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + obarcyr+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_49C_.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_49C_.glif new file mode 100644 index 00000000..960f6916 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_49C_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Schwacyr+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_49D_.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_49D_.glif new file mode 100644 index 00000000..90fbca6c --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_49D_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + schwacyr+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_49E_.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_49E_.glif new file mode 100644 index 00000000..3d297435 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_49E_.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Yatcyr + com.fontlab.metricsRight + Tshecyr + com.fontlab.recipe + Shhacyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_49F_.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_49F_.glif new file mode 100644 index 00000000..0099340a --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_49F_.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + hbar + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_4C_6.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_4C_6.glif new file mode 100644 index 00000000..9eac9887 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_4C_6.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ч + com.fontlab.metricsRight + Ч + com.fontlab.recipe + Ч + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_4C_7.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_4C_7.glif new file mode 100644 index 00000000..aed9bd91 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_4C_7.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ч + com.fontlab.metricsRight + ч + com.fontlab.recipe + ч+enhookcyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_4C_C_.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_4C_C_.glif new file mode 100644 index 00000000..3739f2ce --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_4C_C_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + У+acute.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_4C_D_.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_4C_D_.glif new file mode 100644 index 00000000..13c68935 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_4C_D_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + y+acute + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_4D_2.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_4D_2.glif new file mode 100644 index 00000000..770e27c4 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_4D_2.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+grave.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_4D_3.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_4D_3.glif new file mode 100644 index 00000000..bf200d64 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_4D_3.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+grave + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_4D_4.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_4D_4.glif new file mode 100644 index 00000000..0c0ccf58 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_4D_4.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + P+caron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_4D_5.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_4D_5.glif new file mode 100644 index 00000000..662d4694 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_4D_5.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + p+caron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_4D_6.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_4D_6.glif new file mode 100644 index 00000000..6e6abdeb --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_4D_6.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Э+dotaccent.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_4D_7.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_4D_7.glif new file mode 100644 index 00000000..c7cf213e --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_4D_7.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + э+dotaccent + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_4D_8.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_4D_8.glif new file mode 100644 index 00000000..5a570abe --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_4D_8.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Я+dieresis.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_4D_9.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_4D_9.glif new file mode 100644 index 00000000..8dc40e95 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_4D_9.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + я+dieresis + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_50E_.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_50E_.glif new file mode 100644 index 00000000..6458db8f --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_50E_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_50F_.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_50F_.glif new file mode 100644 index 00000000..0eb263f0 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_50F_.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_510.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_510.glif new file mode 100644 index 00000000..25ef66b2 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_510.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_511.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_511.glif new file mode 100644 index 00000000..d7cdfde9 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_511.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_512.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_512.glif new file mode 100644 index 00000000..8ec483f3 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_512.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + com.fontlab.metricsLeft + E + com.fontlab.metricsRight + E + com.fontlab.recipe + E+dieresis.case+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_513.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_513.glif new file mode 100644 index 00000000..adb0ee01 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_513.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.recipe + e+dieresis+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_514.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_514.glif new file mode 100644 index 00000000..e1a5cc30 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_514.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + com.fontlab.metricsLeft + E + com.fontlab.metricsRight + E + com.fontlab.recipe + E+dieresis.case+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_515.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_515.glif new file mode 100644 index 00000000..4450df10 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_515.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.recipe + e+dieresis+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_516.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_516.glif new file mode 100644 index 00000000..9c208ce7 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_516.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + З+caron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_517.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_517.glif new file mode 100644 index 00000000..9e9cd6ef --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_517.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + з+caron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_518.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_518.glif new file mode 100644 index 00000000..99a3d738 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_518.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_519.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_519.glif new file mode 100644 index 00000000..76026baa --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_519.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_51A_.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_51A_.glif new file mode 100644 index 00000000..5a9a8007 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_51A_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_51B_.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_51B_.glif new file mode 100644 index 00000000..02b22e52 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_51B_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_51C_.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_51C_.glif new file mode 100644 index 00000000..db6dbcb6 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_51C_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Obarcyr+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_51D_.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_51D_.glif new file mode 100644 index 00000000..9e61c5be --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_51D_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + obarcyr+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_51E_.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_51E_.glif new file mode 100644 index 00000000..838c5b44 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_51E_.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + com.fontlab.recipe + Obarcyr+dieresis.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_51F_.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_51F_.glif new file mode 100644 index 00000000..bd731a58 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_51F_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.recipe + obarcyr+dieresis+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_521.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_521.glif new file mode 100644 index 00000000..bdc6dd4a --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_521.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ы+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_522.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_522.glif new file mode 100644 index 00000000..aa73abd8 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_522.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Э+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_523.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_523.glif new file mode 100644 index 00000000..b9bfddfa --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_523.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + э+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_524.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_524.glif new file mode 100644 index 00000000..0120f8d8 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_524.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Э+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_525.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_525.glif new file mode 100644 index 00000000..30630c8f --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_525.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + э+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_526.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_526.glif new file mode 100644 index 00000000..3fc55983 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_526.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Є+dieresis.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_527.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_527.glif new file mode 100644 index 00000000..61a49a36 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_527.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + є+dieresis + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_528.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_528.glif new file mode 100644 index 00000000..8ed5fadc --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_528.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Я+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_529.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_529.glif new file mode 100644 index 00000000..fafa2db7 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_529.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + я+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_52A_.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_52A_.glif new file mode 100644 index 00000000..15f70fb3 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_52A_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Я+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_52B_.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_52B_.glif new file mode 100644 index 00000000..715585c0 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_52B_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + я+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_52C_.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_52C_.glif new file mode 100644 index 00000000..7e37ba0c --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_52C_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ю+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_52D_.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_52D_.glif new file mode 100644 index 00000000..01f56b52 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_52D_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ю+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_52E_.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_52E_.glif new file mode 100644 index 00000000..76b96d0b --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_52E_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ю+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_52F_.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_52F_.glif new file mode 100644 index 00000000..9fb04973 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_52F_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ю+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_532.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_532.glif new file mode 100644 index 00000000..34cb6bfb --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_532.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Й + com.fontlab.metricsRight + Й + com.fontlab.recipe + Й + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_533.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_533.glif new file mode 100644 index 00000000..2190ed6a --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_533.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + l() + com.fontlab.recipe + й+enhookcyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_536.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_536.glif new file mode 100644 index 00000000..80a59e83 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_536.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ы+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_537.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_537.glif new file mode 100644 index 00000000..11e64e12 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_537.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ы+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_538.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_538.glif new file mode 100644 index 00000000..0249b11d --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_538.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Reversedzecyr+dieresis.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_539.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_539.glif new file mode 100644 index 00000000..911c9ce8 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_539.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + reversedzecyr+dieresis + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_830.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_830.glif new file mode 100644 index 00000000..8c8880e8 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_830.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+circumflex.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_831.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_831.glif new file mode 100644 index 00000000..2bf1e85d --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_831.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+circumflex + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_833.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_833.glif new file mode 100644 index 00000000..ae1c139a --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_833.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+circumflex.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_834.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_834.glif new file mode 100644 index 00000000..457cc0ac --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_834.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+circumflex + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_839.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_839.glif new file mode 100644 index 00000000..00a39926 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_839.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+circumflex.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_83A_.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_83A_.glif new file mode 100644 index 00000000..f33480c7 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_83A_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+circumflex + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_86F_.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_86F_.glif new file mode 100644 index 00000000..52003a0e --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_86F_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + K+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_870.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_870.glif new file mode 100644 index 00000000..7100f782 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_870.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + к+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_872.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_872.glif new file mode 100644 index 00000000..53d7247c --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_872.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Л+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_873.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_873.glif new file mode 100644 index 00000000..5f7d4ceb --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_873.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + л+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_875.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_875.glif new file mode 100644 index 00000000..4c49c6de --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_875.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_876.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_876.glif new file mode 100644 index 00000000..33103e6d --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_876.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_878.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_878.glif new file mode 100644 index 00000000..7cd6d674 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_878.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + X+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_879.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_879.glif new file mode 100644 index 00000000..7f024974 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_879.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + x+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_87B_.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_87B_.glif new file mode 100644 index 00000000..a2d5b3f2 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_87B_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ц+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_87C_.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_87C_.glif new file mode 100644 index 00000000..986bdc6c --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_87C_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ц+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_87E_.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_87E_.glif new file mode 100644 index 00000000..3b0e76ec --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_87E_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ч+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_87F_.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_87F_.glif new file mode 100644 index 00000000..6be79f53 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uniF_87F_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ч+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/uogonek.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uogonek.glif new file mode 100644 index 00000000..b3c3bf10 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uogonek.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+ogonek + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/uring.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uring.glif new file mode 100644 index 00000000..8ab28fbc --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/uring.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+ring + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/ushort-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ushort-cy.glif new file mode 100644 index 00000000..9644c5c6 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ushort-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + uni0443+breve + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/ustraightcyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ustraightcyr.glif new file mode 100644 index 00000000..73a1e495 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ustraightcyr.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + v + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/ustraightstrokecyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ustraightstrokecyr.glif new file mode 100644 index 00000000..42acae9c --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ustraightstrokecyr.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/utilde.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/utilde.glif new file mode 100644 index 00000000..bfd360d0 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/utilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+tilde + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/v.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/v.glif new file mode 100644 index 00000000..82ba39c4 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/v.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/ve-cy.B_G_R_.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ve-cy.B_G_R_.glif new file mode 100644 index 00000000..5af763af --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ve-cy.B_G_R_.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + b-5 + com.fontlab.metricsRight + b + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/ve-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ve-cy.glif new file mode 100644 index 00000000..a06e67db --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ve-cy.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/ve-cy.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ve-cy.ss01.glif new file mode 100644 index 00000000..3da036f0 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ve-cy.ss01.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/virgo.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/virgo.glif new file mode 100644 index 00000000..061e3f5a --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/virgo.glif @@ -0,0 +1,224 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =55 + com.fontlab.metricsRight + =35 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/vzmetcomb-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/vzmetcomb-cy.glif new file mode 100644 index 00000000..d1e12bdd --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/vzmetcomb-cy.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/w.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/w.glif new file mode 100644 index 00000000..dea6e70b --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/w.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/wacute.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/wacute.glif new file mode 100644 index 00000000..4f54eb02 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/wacute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + w+acute + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/wcircumflex.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/wcircumflex.glif new file mode 100644 index 00000000..5b17aacb --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/wcircumflex.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + w+circumflex + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/wdieresis.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/wdieresis.glif new file mode 100644 index 00000000..1d93fcc6 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/wdieresis.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + w+dieresis + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/wecyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/wecyr.glif new file mode 100644 index 00000000..abd4023d --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/wecyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + w + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/wgrave.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/wgrave.glif new file mode 100644 index 00000000..cd3c554c --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/wgrave.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + w+grave + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/x.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/x.glif new file mode 100644 index 00000000..805a29fc --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/x.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/xatailcyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/xatailcyr.glif new file mode 100644 index 00000000..99261bd7 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/xatailcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + x + com.fontlab.metricsRight + zhetailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/y.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/y.glif new file mode 100644 index 00000000..26533169 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/y.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/yacute.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/yacute.glif new file mode 100644 index 00000000..f860fdb2 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/yacute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + y+acute + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/yaecyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/yaecyr.glif new file mode 100644 index 00000000..a1b5ea05 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/yaecyr.glif @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + я + com.fontlab.metricsRight + e + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/yatI_otified-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/yatI_otified-cy.glif new file mode 100644 index 00000000..6269a875 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/yatI_otified-cy.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + com.fontlab.metricsRight + yatcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/yatcyr.B_G_R_.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/yatcyr.B_G_R_.glif new file mode 100644 index 00000000..ff3cd678 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/yatcyr.B_G_R_.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hardsign-cy + com.fontlab.metricsRight + ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/yatcyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/yatcyr.glif new file mode 100644 index 00000000..8f0fb8ca --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/yatcyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hardsign-cy + com.fontlab.metricsRight + ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/ycircumflex.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ycircumflex.glif new file mode 100644 index 00000000..7eeec578 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ycircumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + y+circumflex + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/ydieresis.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ydieresis.glif new file mode 100644 index 00000000..b1e2ba6f --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ydieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + y+dieresis + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/yen.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/yen.glif new file mode 100644 index 00000000..d271659a --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/yen.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/yen.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/yen.ss01.glif new file mode 100644 index 00000000..b0eba9f5 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/yen.ss01.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/yerN_eutral-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/yerN_eutral-cy.glif new file mode 100644 index 00000000..f815436e --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/yerN_eutral-cy.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hardsign-cy + com.fontlab.metricsRight + ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/yeru-cy.accented.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/yeru-cy.accented.glif new file mode 100644 index 00000000..c5680d8d --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/yeru-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ы+acute + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/yeru-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/yeru-cy.glif new file mode 100644 index 00000000..472a897f --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/yeru-cy.glif @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/yeru-cy.ss01.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/yeru-cy.ss01.glif new file mode 100644 index 00000000..f0ac64cb --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/yeru-cy.ss01.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/yeruB_ackyer-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/yeruB_ackyer-cy.glif new file mode 100644 index 00000000..7a1464bf --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/yeruB_ackyer-cy.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hardsign-cy + com.fontlab.metricsRight + dotlessi + com.fontlab.recipe + hardsign-cy_dotlessi + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/yi-cy.alt.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/yi-cy.alt.glif new file mode 100644 index 00000000..e532b277 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/yi-cy.alt.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.recipe + idieresis + public.markColor + 0.6,0.997,1,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/yi-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/yi-cy.glif new file mode 100644 index 00000000..be591182 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/yi-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + idieresis + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/ylongdieresiscyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ylongdieresiscyr.glif new file mode 100644 index 00000000..164faefd --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ylongdieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + yeru-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/yn-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/yn-cy.glif new file mode 100644 index 00000000..7358b006 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/yn-cy.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |izhitsacyr + com.fontlab.metricsRight + |izhitsacyr + com.fontlab.recipe + izhitsa + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/yuR_eversed-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/yuR_eversed-cy.glif new file mode 100644 index 00000000..d5ffd60f --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/yuR_eversed-cy.glif @@ -0,0 +1,20 @@ + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l + com.fontlab.recipe + ю + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/yusB_lended-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/yusB_lended-cy.glif new file mode 100644 index 00000000..8e534dc1 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/yusB_lended-cy.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + yusbigcyr + com.fontlab.metricsRight + yusbigcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/yusC_losedlittle-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/yusC_losedlittle-cy.glif new file mode 100644 index 00000000..e0cb7613 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/yusC_losedlittle-cy.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + yuslittlecyr + com.fontlab.metricsRight + yuslittlecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/yusbigcyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/yusbigcyr.glif new file mode 100644 index 00000000..252b54cb --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/yusbigcyr.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/yusbigiotifiedcyr.B_G_R_.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/yusbigiotifiedcyr.B_G_R_.glif new file mode 100644 index 00000000..284b8c72 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/yusbigiotifiedcyr.B_G_R_.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + com.fontlab.metricsRight + ж + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/yusbigiotifiedcyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/yusbigiotifiedcyr.glif new file mode 100644 index 00000000..5d7d3034 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/yusbigiotifiedcyr.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + ж + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/yusiotifiedC_losedL_ittle-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/yusiotifiedC_losedL_ittle-cy.glif new file mode 100644 index 00000000..fd6cbeab --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/yusiotifiedC_losedL_ittle-cy.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + yusClosedlittle-cy + com.fontlab.recipe + yusClosedlittle-cy+н + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/yuslittlecyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/yuslittlecyr.glif new file mode 100644 index 00000000..35bceb9a --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/yuslittlecyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + v-5 + com.fontlab.metricsRight + v-5 + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/yuslittleiotifiedcyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/yuslittleiotifiedcyr.glif new file mode 100644 index 00000000..8a099b0a --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/yuslittleiotifiedcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + v-10 + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/z.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/z.glif new file mode 100644 index 00000000..07b090a7 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/z.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/zacute.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/zacute.glif new file mode 100644 index 00000000..4c3fc2af --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/zacute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + z+acute + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/zcaron.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/zcaron.glif new file mode 100644 index 00000000..1e869507 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/zcaron.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + z+caron + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/zdotaccent.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/zdotaccent.glif new file mode 100644 index 00000000..b375a32c --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/zdotaccent.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + z+dotaccent + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/ze-cy.B_G_R_.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ze-cy.B_G_R_.glif new file mode 100644 index 00000000..cfb0043e --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ze-cy.B_G_R_.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |c-12 + com.fontlab.metricsRight + в-5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/ze-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ze-cy.glif new file mode 100644 index 00000000..d419bbfe --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/ze-cy.glif @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |c-5 + com.fontlab.metricsRight + в + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/zedieresiscyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/zedieresiscyr.glif new file mode 100644 index 00000000..9250550c --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/zedieresiscyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ze-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/zemlya-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/zemlya-cy.glif new file mode 100644 index 00000000..22a9f4f0 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/zemlya-cy.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + z-10 + com.fontlab.metricsRight + z + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/zero.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/zero.glif new file mode 100644 index 00000000..b6ad966c --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/zero.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/zero.osf.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/zero.osf.glif new file mode 100644 index 00000000..32908a4f --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/zero.osf.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + zero + com.fontlab.metricsRight + zero + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/zero.tf.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/zero.tf.glif new file mode 100644 index 00000000..1adc42db --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/zero.tf.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/zetailcyr.B_S_H_.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/zetailcyr.B_S_H_.glif new file mode 100644 index 00000000..8ea331f1 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/zetailcyr.B_S_H_.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + з + com.fontlab.metricsRight + з + com.fontlab.recipe + з + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/zetailcyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/zetailcyr.glif new file mode 100644 index 00000000..508d231a --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/zetailcyr.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + з + com.fontlab.metricsRight + з + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/zhe-cy.B_G_R_.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/zhe-cy.B_G_R_.glif new file mode 100644 index 00000000..0d55d8e4 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/zhe-cy.B_G_R_.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |k + com.fontlab.metricsRight + k + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/zhe-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/zhe-cy.glif new file mode 100644 index 00000000..cf92874c --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/zhe-cy.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |k + com.fontlab.metricsRight + k + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/zhebrevecyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/zhebrevecyr.glif new file mode 100644 index 00000000..7818c615 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/zhebrevecyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + zhe-cy+breve + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/zhedieresiscyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/zhedieresiscyr.glif new file mode 100644 index 00000000..30391b56 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/zhedieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + zhe-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/zhetailcyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/zhetailcyr.glif new file mode 100644 index 00000000..3d41b355 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/zhetailcyr.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ж + com.fontlab.metricsRight + katailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/zhwe-cy.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/zhwe-cy.glif new file mode 100644 index 00000000..9081cc77 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/zhwe-cy.glif @@ -0,0 +1,87 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + з + com.fontlab.metricsRight + ж + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/glyphs/zjekomicyr.glif b/sources/FixelDisplay-ExtraLight.ufo/glyphs/zjekomicyr.glif new file mode 100644 index 00000000..8ebca2a9 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/glyphs/zjekomicyr.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + з-20 + com.fontlab.metricsRight + njekomicyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/groups.plist b/sources/FixelDisplay-ExtraLight.ufo/groups.plist new file mode 100644 index 00000000..0215e532 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/groups.plist @@ -0,0 +1,2992 @@ + + + + + accent + + grave + acute.case + grave.case + acute + + case + + arrowdown.case + arrowdown.ss01.case + arrowleft.case + arrowleft.ss01.case + arrowright.case + arrowright.ss01.case + arrowup.case + arrowup.ss01.case + backslash.case + bar.case + braceleft.case + braceright.case + bracketleft.case + bracketright.case + brokenbar.case + bullet.case + colon.case + emdash.case + endash.case + exclamdown.case + guillemetleft.case + guillemetright.case + guilsinglleft.case + guilsinglright.case + hyphen.case + parenleft.case + parenright.case + questiondown.case + semicolon.case + at.case + bracketangleleft.case + bracketangleright.case + slash.case + + case_def + + arrowdown + arrowdown.ss01 + arrowleft + arrowleft.ss01 + arrowright + arrowright.ss01 + arrowup + arrowup.ss01 + backslash + bar + braceleft + braceright + bracketleft + bracketright + brokenbar + bullet + colon + emdash + endash + exclamdown + guillemetleft + guillemetright + guilsinglleft + guilsinglright + hyphen + parenleft + parenright + questiondown + semicolon + at + bracketangleleft + bracketangleright + slash + + cpsp + + 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 + Agrave + Aacute + Acircumflex + Atilde + Adieresis + Aring + AE + Ccedilla + Egrave + Eacute + Ecircumflex + Edieresis + Igrave + Iacute + Icircumflex + Idieresis + Eth + Ntilde + Ograve + Oacute + Ocircumflex + Otilde + Odieresis + Oslash + Ugrave + Uacute + Ucircumflex + Udieresis + Yacute + Thorn + Amacron + Abreve + Aogonek + Cacute + Ccircumflex + Cdotaccent + Ccaron + Dcaron + Dcroat + Emacron + Ebreve + Edotaccent + Eogonek + Ecaron + Gcircumflex + Gbreve + Gdotaccent + Gcommaaccent + Hcircumflex + Hbar + Itilde + Imacron + Ibreve + Iogonek + Idotaccent + IJ + Jcircumflex + Kcommaaccent + Lacute + Lcommaaccent + Lcaron + Ldot + Lslash + Nacute + Ncommaaccent + Ncaron + Eng + Omacron + Obreve + Ohungarumlaut + OE + Racute + Rcommaaccent + Rcaron + Sacute + Scircumflex + Scedilla + Scaron + Tcedilla + Tcaron + Tbar + Utilde + Umacron + Ubreve + Uring + Uhungarumlaut + Uogonek + Wcircumflex + Ycircumflex + Ydieresis + Zacute + Zdotaccent + Zcaron + Schwa + Acaron + Gacute + AEacute + Oslashacute + Scommaaccent + Tcommaaccent + Delta + Omega + Iegravecyr + uniF43A + A-cy.accented + E-cy.accented + Ii-cy.accented + O-cy.accented + U-cy.accented + Yeru-cy.accented + Ereversed-cy.accented + Iu-cy.accented + Ia-cy.accented + Io-cy.accented + uniF498 + uniF49A + uniF49C + uniF49E + uniF4C6 + uniF4CC + uniF4D2 + uniF4D4 + uniF4D6 + uniF4D8 + uniF50E + uniF510 + uniF512 + uniF514 + uniF516 + uniF518 + uniF51A + uniF51C + uniF51E + Yeru-cymacron + uniF522 + uniF524 + uniF526 + uniF528 + uniF52A + uniF52C + uniF52E + uniF532 + uniF536 + uniF538 + uniF830 + uniF833 + uniF839 + uniF86F + uniF872 + uniF875 + uniF878 + uniF87B + uniF87E + Io-cy + Djecyr + Gjecyr + E-cy + Dze-cy + I-cy + Yi-cy + Jecyr + Ljecyr + Njecyr + Tshecyr + Kjecyr + Igravecyr + Ushort-cy + Dzhecyr + A-cy + Be-cy + Ve-cy + Ge-cy + De-cy + Ie-cy + Zhe-cy + Ze-cy + Ii-cy + Iishort-cy + Ka-cy + El-cy + Em-cy + En-cy + O-cy + Pe-cy + Er-cy + Es-cy + Te-cy + U-cy + Ef-cy + Ha-cy + Tse-cy + Che-cy + Sha-cy + Shcha-cy + Hardsign-cy + Yeru-cy + Softsign-cy + Ereversed-cy + Iu-cy + Ia-cy + Omegacyr + Yatcyr + Eiotifiedcyr + Yuslittlecyr + Yuslittleiotifiedcyr + Yusbigcyr + Yusbigiotifiedcyr + Ksicyr + Psicyr + Fitacyr + Izhitsacyr + Izhitsagravedblcyr + Ukcyr + Omegaroundcyr + Omegatitlocyr + Otcyr + Koppacyr + Ishortsharptailcyr + Semisoftcyr + Ertickcyr + Gheupturn-cy + Gestrokecyr + Gehookcyr + Zhetailcyr + Zetailcyr + Katailcyr + Kaverticalstrokecyr + Kastrokecyr + Kabashkcyr + Entailcyr + Engecyr + Pehookcyr + Haabkhcyr + Estailcyr + Tetailcyr + Ustraightcyr + Ustraightstrokecyr + Xatailcyr + Tetsecyr + Chetailcyr + Chevertcyr + Shhacyr + Cheabkhcyr + Cheabkhtailcyr + Palochkacyr + Zhebrevecyr + Kahookcyr + Elsharptailcyr + Enhookcyr + Ensharptailcyr + Chekhakascyr + Emsharptailcyr + Abrevecyr + Adieresiscyr + Aiecyr + Iebrevecyr + Schwacyr + Schwadieresiscyr + Zhedieresiscyr + Zedieresiscyr + Dzeabkhcyr + Imacroncyr + Idieresiscyr + Odieresiscyr + Obarcyr + Obardieresiscyr + Ereverseddieresiscyr + Umacroncyr + Udieresiscyr + Uacutedblcyr + Chedieresiscyr + Getailcyr + Ylongdieresiscyr + Gehookstrokecyr + Hahookcyr + Hastrokecyr + Dekomicyr + Djekomicyr + Zjekomicyr + Dzjekomicyr + Ljekomicyr + Njekomicyr + Sjekomicyr + Tjekomicyr + Reversedzecyr + Elhookcyr + Lhacyr + Rhacyr + Yaecyr + Qacyr + Wecyr + Kaaleutcyr + Elmiddlehookcyr + Enmiddlehookcyr + Petailcyr + Shhatailcyr + Enhookleftcyr + Dzzhecyr + Dchecyr + Eltailcyr + Wgrave + Wacute + Wdieresis + Germandbls + uni1EBC + Zemlya-cy + Dzelo-cy + DzeReversed-cy + Iota-cy + Djerv-cy + UkMonograph-cy + OmegaBroad-cy + YerNeutral-cy + YeruBackYer-cy + YatIotified-cy + YuReversed-cy + IotifiedA-cy + YusClosedlittle-cy + YusBlended-cy + YusiotifiedClosedLittle-cy + Yn-cy + TseReversed-cy + DeSoft-cy + ElSoft-cy + EmSoft-cy + OMonocular-cy + OBinocular-cy + ODoubleMonocular-cy + Dwe-cy + Dzwe-cy + Zhwe-cy + Cche-cy + Dzze-cy + TeWithMiddleHook-cy + Twe-cy + Tswe-cy + Tsse-cy + Tche-cy + Hwe-cy + Shwe-cy + DoubleO-cy + CrossedO-cy + A-cy.ss01 + A.ss01 + AE.ss01 + Aacute.ss01 + Abreve.ss01 + Acircumflex.ss01 + Adieresis.ss01 + Agrave.ss01 + Amacron.ss01 + Aogonek.ss01 + Aring.ss01 + Atilde.ss01 + Em-cy.ss01 + Eng.ss01 + G.ss01 + Gacute.ss01 + Gbreve.ss01 + Gcircumflex.ss01 + Gcommaaccent.ss01 + Gdotaccent.ss01 + Ha-cy.ss01 + Ia-cy.ss01 + J.ss01 + Jcircumflex.ss01 + K.ss01 + Ka-cy.ss01 + Kcommaaccent.ss01 + M.ss01 + N.ss01 + Nacute.ss01 + Ncaron.ss01 + Ncommaaccent.ss01 + Ntilde.ss01 + Q.ss01 + U-cy.ss01 + Ushort-cy.ss01 + V.ss01 + W.ss01 + Wacute.ss01 + Wcircumflex.ss01 + Wdieresis.ss01 + Wgrave.ss01 + X.ss01 + Y.ss01 + Yacute.ss01 + Ycircumflex.ss01 + Ydieresis.ss01 + Z.ss01 + Zacute.ss01 + Zcaron.ss01 + Zdotaccent.ss01 + Zetailcyr.BSH + Gestrokecyr.BSH + Estailcyr.BSH + Estailcyr.CHU + Zhe-cy.ss01 + + locl.SRB + + be-cy.SRB + iegravecyr.SRB + igravecyr.SRB + + loclSRB_def + + be-cy + iegravecyr + igravecyr + + locl_BGR + + De-cy.BGR + Ef-cy.BGR + El-cy.BGR + de-cy.BGR + eiotifiedcyr.BGR + el-cy.BGR + ge-cy.BGR + hardsign-cy.BGR + ii-cy.BGR + iishort-cy.BGR + iotifieda-cy.BGR + iu-cy.BGR + ka-cy.BGR + pe-cy.BGR + sha-cy.BGR + shcha-cy.BGR + softsign-cy.BGR + te-cy.BGR + tse-cy.BGR + ve-cy.BGR + yatcyr.BGR + yusbigiotifiedcyr.BGR + ze-cy.BGR + zhe-cy.BGR + + locl_def + + De-cy + Ef-cy + El-cy + de-cy + eiotifiedcyr + el-cy + ge-cy + hardsign-cy + ii-cy + iishort-cy + iotifieda-cy + iu-cy + ka-cy + pe-cy + sha-cy + shcha-cy + softsign-cy + te-cy + tse-cy + ve-cy + yatcyr + yusbigiotifiedcyr + ze-cy + zhe-cy + + pics + + neptune + leo + virgo + bishopwhite + knightwhite + rookblack + bishopblack + knightblack + heartwhite + diamondwhite-misc + spadewhite + heart + clubwhite + crossedswords + flower + floretteblack + florettewhite + floretteoutlinedpetalledblackeight + + pics_def + + A + B + C + D + E + F + G + H + I + J + K + L + M + N + O + P + Q + R + + public.kern1.A.ss012 + + A-cy.ss01 + A.ss01 + Aacute.ss01 + Abreve.ss01 + Acircumflex.ss01 + Adieresis.ss01 + Agrave.ss01 + Amacron.ss01 + Aogonek.ss01 + Aring.ss01 + Atilde.ss01 + + public.kern1.A2 + + A + A-cy + A-cy.accented + Aacute + Abreve + Abrevecyr + Acaron + Acircumflex + Adieresis + Adieresiscyr + Agrave + Amacron + Aogonek + Aring + Atilde + De-cy.BGR + Delta + El-cy.BGR + IotifiedA-cy + Yn-cy + YusClosedlittle-cy + YusiotifiedClosedLittle-cy + Yuslittlecyr + Yuslittleiotifiedcyr + uniF50E + uniF830 + + public.kern1.AE + + AE + AE.ss01 + AEacute + Aiecyr + + public.kern1.C1 + + C + Cacute + Ccaron + Ccedilla + Ccircumflex + Cdotaccent + E-cy + Eiotifiedcyr + Es-cy + Estailcyr + Estailcyr.BSH + Estailcyr.CHU + Reversedzecyr + uniF45D + uniF526 + uniF538 + uniF875 + + public.kern1.Decyr + + Chetailcyr + De-cy + Dwe-cy + Dzze-cy + Elsharptailcyr + Eltailcyr + Emsharptailcyr + Ensharptailcyr + Entailcyr + Ishortsharptailcyr + Petailcyr + Shcha-cy + Shwe-cy + Tetsecyr + Tse-cy + Tswe-cy + uniF87B + + public.kern1.E1 + + E + E-cy.accented + Eacute + Ebreve + Ecaron + Ecircumflex + Edieresis + Edotaccent + Egrave + Emacron + Eogonek + Ie-cy + Iebrevecyr + Io-cy + Io-cy.accented + Yaecyr + uni1EBC + uniF510 + uniF512 + uniF514 + uniF833 + + public.kern1.G.ss01 + + G.ss01 + Gacute.ss01 + Gbreve.ss01 + Gcircumflex.ss01 + Gcommaaccent.ss01 + Gdotaccent.ss01 + + public.kern1.G1 + + G + Gacute + Gbreve + Gcircumflex + Gcommaaccent + Gdotaccent + + public.kern1.Ge-cy + + DeSoft-cy + ElSoft-cy + EmSoft-cy + Engecyr + Ge-cy + Gehookstrokecyr + Gestrokecyr + Gestrokecyr.BSH + Getailcyr + Gheupturn-cy + Gjecyr + TseReversed-cy + YeruBackYer-cy + uniF872 + + public.kern1.H + + Eng + Eng.ss01 + H + Hbar + Hcircumflex + I + Iacute + Ibreve + Icircumflex + Idieresis + Idotaccent + Igrave + Imacron + Iogonek + Itilde + J.ss01 + Jcircumflex.ss01 + M + M.ss01 + N + N.ss01 + Nacute + Nacute.ss01 + Ncaron + Ncaron.ss01 + Ncommaaccent + Ncommaaccent.ss01 + Ntilde + Ntilde.ss01 + + public.kern1.Hardcyr + + Hardsign-cy + Ljecyr + Njecyr + Semisoftcyr + Shhacyr + Softsign-cy + YatIotified-cy + Yatcyr + YerNeutral-cy + uniF478 + + public.kern1.J1 + + J + Jcircumflex + Jecyr + + public.kern1.K + + K + K.ss01 + Ka-cy + Ka-cy.ss01 + Kaaleutcyr + Kabashkcyr + Kastrokecyr + Kcommaaccent + Kcommaaccent.ss01 + Kjecyr + uniF86F + + public.kern1.L + + L + Lacute + Lcaron + Lcommaaccent + Lslash + + public.kern1.O + + Cheabkhcyr + Cheabkhtailcyr + CrossedO-cy + D + Dcaron + Dcroat + DoubleO-cy + Ef-cy + Ef-cy.BGR + Ereversed-cy + Ereversed-cy.accented + Ereverseddieresiscyr + Eth + Fitacyr + Iu-cy + Iu-cy.accented + O + O-cy + O-cy.accented + OBinocular-cy + ODoubleMonocular-cy + OMonocular-cy + Oacute + Obarcyr + Obardieresiscyr + Obreve + Ocircumflex + Odieresis + Odieresiscyr + Ograve + Ohungarumlaut + Omacron + Omega + Omegaroundcyr + Oslash + Oslashacute + Otilde + Q + Qacyr + Schwa + Schwacyr + Schwadieresiscyr + Sjekomicyr + uniF498 + uniF49A + uniF49C + uniF4D2 + uniF4D6 + uniF518 + uniF51A + uniF51C + uniF51E + uniF522 + uniF524 + uniF52C + uniF52E + uniF839 + + public.kern1.Oslash.alt + + Ha-cy + Ha-cy.ss01 + Hahookcyr + Lhacyr + Rhacyr + X + X.ss01 + uniF878 + + public.kern1.P + + Er-cy + Ertickcyr + P + uniF4D4 + + public.kern1.R + + R + Racute + Rcaron + Rcommaaccent + + public.kern1.S1 + + Dzwe-cy + S + Sacute + Scaron + Scedilla + Scircumflex + Scommaaccent + + public.kern1.T1 + + Koppacyr + T + Tcaron + Tcedilla + Tcommaaccent + Te-cy + Tetailcyr + Tsse-cy + Twe-cy + + public.kern1.U1 + + OmegaBroad-cy + Omegacyr + Omegatitlocyr + Otcyr + Psicyr + U + Uacute + Ubreve + Ucircumflex + Udieresis + Ugrave + Uhungarumlaut + Umacron + Uogonek + Uring + Utilde + + public.kern1.Ucyr1 + + U-cy + U-cy.accented + U-cy.ss01 + Uacutedblcyr + Udieresiscyr + Umacroncyr + Ushort-cy + Ushort-cy.ss01 + uniF4CC + + public.kern1.V + + Izhitsacyr + Izhitsagravedblcyr + V + V.ss01 + + public.kern1.W.ss011 + + W.ss01 + Wacute.ss01 + Wcircumflex.ss01 + Wdieresis.ss01 + Wgrave.ss01 + + public.kern1.W1 + + W + Wacute + Wcircumflex + Wdieresis + Wecyr + Wgrave + + public.kern1.Y.ss011 + + Y.ss01 + Yacute.ss01 + Ycircumflex.ss01 + Ydieresis.ss01 + + public.kern1.Y1 + + Ustraightcyr + Ustraightstrokecyr + Y + Yacute + Ycircumflex + Ydieresis + uniF43A + + public.kern1.Yacyr + + Cche-cy + Che-cy + Chedieresiscyr + Chekhakascyr + Chevertcyr + Dekomicyr + Elhookcyr + Em-cy + En-cy + Enhookcyr + Enhookleftcyr + I-cy + Ia-cy + Ia-cy.accented + Ia-cy.ss01 + Idieresiscyr + Ii-cy + Ii-cy.accented + Iishort-cy + Imacroncyr + Palochkacyr + Pe-cy + Sha-cy + Tche-cy + Yeru-cy + Yeru-cy.accented + Yeru-cymacron + Yi-cy + Ylongdieresiscyr + YuReversed-cy + palochkacyr + uniF45E + uniF45F + uniF4C6 + uniF4D8 + uniF528 + uniF52A + uniF532 + uniF536 + uniF87E + + public.kern1.Z1 + + Dzelo-cy + Z + Z.ss01 + Zacute + Zacute.ss01 + Zcaron + Zcaron.ss01 + Zdotaccent + Zdotaccent.ss01 + Zemlya-cy + + public.kern1.Ze-cy + + Dzeabkhcyr + Ksicyr + Ze-cy + Zedieresiscyr + Zetailcyr + Zetailcyr.BSH + uniF516 + + public.kern1.Zhe-cy + + Dzzhecyr + Katailcyr + Kaverticalstrokecyr + Xatailcyr + YusBlended-cy + Yusbigcyr + Yusbigiotifiedcyr + Zhe-cy + Zhebrevecyr + Zhedieresiscyr + Zhetailcyr + Zhwe-cy + + public.kern1.a1 + + a + aacute + abreve + acaron + acircumflex + adieresis + agrave + amacron + aogonek + aring + atilde + + public.kern1.c1 + + c + cacute + ccaron + ccedilla + ccircumflex + cdotaccent + e-cy + e-cy.hist + eiotifiedcyr + eiotifiedcyr.BGR + es-cy + estailcyr + estailcyr.BSH + estailcyr.CHU + koppacyr + reversedzecyr + sjekomicyr + uni1C83 + uniF475 + uniF527 + uniF539 + uniF876 + + public.kern1.comma1 + + comma + quotedblbase + quotesinglbase + + public.kern1.copyright1 + + copyright + registered + + public.kern1.dcaron + + dcaron + dcaron.ss01 + lcaron + + public.kern1.decyr1 + + chetailcyr + dchecyr + de-cy + de-cy.ss01 + dwe-cy + dzze-cy + elsharptailcyr + eltailcyr + emsharptailcyr + ensharptailcyr + entailcyr + ishortsharptailcyr + petailcyr + shcha-cy + shcha-cy.BGR + shhatailcyr + shwe-cy + tetsecyr + tse-cy + tse-cy.BGR + tswe-cy + uniF87C + + public.kern1.e.ss011 + + e.ss01 + eacute.ss01 + ebreve.ss01 + ecaron.ss01 + ecircumflex.ss01 + edieresis.ss01 + edotaccent.ss01 + egrave.ss01 + emacron.ss01 + eogonek.ss01 + oe.ss01 + + public.kern1.e1 + + ae + aeacute + aiecyr + cheabkhcyr + cheabkhtailcyr + e + e-cy.accented + eacute + ebreve + ecaron + ecircumflex + edieresis + edotaccent + egrave + emacron + eogonek + ie-cy + iebrevecyr + iegravecyr + iegravecyr.SRB + io-cy + io-cy.accented + uni1EBD + uniF511 + uniF513 + uniF515 + uniF834 + yaecyr + + public.kern1.el-cy.BGR + + el-cy.BGR + iotifieda-cy + iotifieda-cy.BGR + uni1C81 + yn-cy + yusClosedlittle-cy + yusiotifiedClosedLittle-cy + yuslittlecyr + yuslittleiotifiedcyr + + public.kern1.emdash1 + + emdash + endash + hyphen + + public.kern1.f1 + + f + f_f + + public.kern1.fi + + f_f_i + fi + + public.kern1.five1 + + five + five.tf + + public.kern1.four1 + + four + four.tf + + public.kern1.g.ss011 + + g.ss01 + gacute.ss01 + gbreve.ss01 + gcircumflex.ss01 + gcommaaccent.ss01 + gdotaccent.ss01 + + public.kern1.g1 + + g + gacute + gbreve + gcircumflex + gcommaaccent + gdotaccent + + public.kern1.gecyr + + deSoft-cy + elSoft-cy + emSoft-cy + engecyr + ge-cy + gehookstrokecyr + gestrokecyr + gestrokecyr.BSH + getailcyr + gheupturn-cy + gjecyr + + public.kern1.guillemotright1 + + guillemetright + guilsinglright + + public.kern1.hardcyr + + Tjekomicyr + djekomicyr + elmiddlehookcyr + enmiddlehookcyr + gehookcyr + hardsign-cy + hardsign-cy.BGR + hardsign-cy.ss01 + ljecyr + ljecyr.ss01 + ljekomicyr + njecyr + njecyr.ss01 + njekomicyr + pehookcyr + semisoftcyr + softsign-cy + softsign-cy.BGR + softsign-cy.ss01 + tewithmiddlehook-cy + tjekomicyr + uni1C86 + uni1C87 + uniF479 + yatIotified-cy + yatcyr + yatcyr.BGR + yerNeutral-cy + zjekomicyr + + public.kern1.i1 + + Djekomicyr + Ljekomicyr + Njekomicyr + Zjekomicyr + i + i-cy + iacute + icircumflex + igrave + imacron + iogonek + itilde + uniF476 + yi-cy.alt + + public.kern1.icyr1 + + cche-cy + che-cy + chedieresiscyr + chekhakascyr + chevertcyr + de-cy.BGR + el-cy + elhookcyr + em-cy + en-cy + enhookcyr + enhookleftcyr + ia-cy + ia-cy.accented + idieresiscyr + igravecyr + ii-cy + ii-cy.accented + iishort-cy + imacroncyr + mu + pe-cy + psicyr + q + qacyr + sha-cy + sha-cy.BGR + tche-cy + tseReversed-cy + ubreve + uni1C85 + uniF4C7 + uniF4D9 + uniF521 + uniF529 + uniF52B + uniF533 + uniF537 + uniF873 + uniF87F + utilde + yeru-cy + yeru-cy.accented + yeru-cy.ss01 + yeruBackyer-cy + ylongdieresiscyr + yuReversed-cy + + public.kern1.j1 + + ij + j + jcircumflex + jdotless + + public.kern1.k + + k + ka-cy + ka-cy.BGR + kaaleutcyr + kabashkcyr + kastrokecyr + kcommaaccent + kgreenlandic + kjecyr + uniF870 + + public.kern1.l + + f_f_l + fl + l + lacute + lcommaaccent + + public.kern1.l.ss011 + + Iota-cy + iota-cy + l.ss01 + lacute.ss01 + lcommaaccent.ss01 + + public.kern1.n + + Djecyr + Elmiddlehookcyr + Enmiddlehookcyr + Gehookcyr + Hwe-cy + Kahookcyr + Pehookcyr + Shhatailcyr + TeWithMiddleHook-cy + Tshecyr + a-cy.accented + a-cy.ss01 + a.ss01 + aacute.ss01 + abreve.ss01 + abrevecyr + acircumflex.ss01 + adieresis.ss01 + adieresiscyr + agrave.ss01 + aogonek.ss01 + aring.ss01 + atilde.ss01 + djecyr + el-cy.ss01 + h + hbar + hcircumflex + hwe-cy + ia-cy.ss01 + iotifieda-cy.hist + m + n + nacute + napostrophe + ncaron + ncommaaccent + ntilde + pe-cy.BGR + q.ss01 + shhacyr + te-cy.BGR + tshecyr + uniF49E + uniF49F + uniF50F + uniF831 + + public.kern1.numero + + numero + numero.ss01 + + public.kern1.o1 + + b + b.ss01 + be-cy.SRB + crossedo-cy + ef-cy + er-cy + er-cy.ss01 + ereversed-cy + ereversed-cy.accented + ereverseddieresiscyr + ertickcyr + eturned + fitacyr + iu-cy + iu-cy.BGR + iu-cy.accented + o + o-cy + o-cy.accented + oBinocular-cy + oDoubleMonocular-cy + oMonocular-cy + oacute + obarcyr + obardieresiscyr + obreve + ocircumflex + odieresis + odieresiscyr + ograve + ohungarumlaut + omacron + omegaBroad-cy + omegaroundcyr + omegatitlocyr + oslashacute + otilde + p + p.ss01 + schwacyr + schwadieresiscyr + thorn + uni1C82 + uniF499 + uniF49D + uniF4D3 + uniF4D5 + uniF4D7 + uniF519 + uniF51B + uniF51D + uniF51F + uniF523 + uniF525 + uniF52D + uniF52F + uniF83A + + public.kern1.period1 + + ellipsis + period + + public.kern1.quotedbl1 + + quotedbl + quotesingle + + public.kern1.quoteleft1 + + quotedblleft + quoteleft + + public.kern1.quoteright1 + + apostrophemod + minute + quotedblright + quoteright + second + + public.kern1.s1 + + dzwe-cy + s + sacute + scaron + scedilla + scircumflex + scommaaccent + + public.kern1.t.ss011 + + t.ss01 + tcedilla.ss01 + tcommaaccent.ss01 + + public.kern1.t1 + + t + tcaron + tcedilla + tcommaaccent + + public.kern1.te-cy + + te-cy + tetailcyr + tsse-cy + twe-cy + + public.kern1.u1 + + igravecyr.SRB + ii-cy.BGR + iishort-cy.BGR + pe-cy.SRB + te-cy.SRB + u + uacute + ucircumflex + udieresis + ugrave + uhungarumlaut + umacron + uogonek + uring + + public.kern1.uni0435.ss011 + + ie-cy.ss01 + io-cy.ss01 + + public.kern1.v + + izhitsacyr + izhitsagravedblcyr + v + + public.kern1.w1 + + omegacyr + otcyr + w + wacute + wcircumflex + wdieresis + wecyr + wgrave + + public.kern1.x + + ha-cy + hahookcyr + lhacyr + rhacyr + uniF879 + x + + public.kern1.y1 + + Ukcyr + u-cy + u-cy.accented + uacutedblcyr + udieresiscyr + ukcyr + umacroncyr + uniF43B + uniF4CD + ushort-cy + ustraightcyr + ustraightstrokecyr + y + yacute + ycircumflex + ydieresis + + public.kern1.z1 + + dzelo-cy + z + zacute + zcaron + zdotaccent + zemlya-cy + + public.kern1.ze-cy + + dzeabkhcyr + ksicyr + uniF517 + ze-cy + ze-cy.BGR + zedieresiscyr + zetailcyr + zetailcyr.BSH + + public.kern1.zhe-cy + + dzzhecyr + katailcyr + kaverticalstrokecyr + xatailcyr + yusBlended-cy + yusbigcyr + yusbigiotifiedcyr + yusbigiotifiedcyr.BGR + zhe-cy + zhe-cy.BGR + zhebrevecyr + zhedieresiscyr + zhetailcyr + zhwe-cy + + public.kern2.A.ss01 + + A.ss01 + AE.ss01 + Aacute.ss01 + Acircumflex.ss01 + Adieresis.ss01 + Agrave.ss01 + Amacron.ss01 + Aogonek.ss01 + Atilde.ss01 + + public.kern2.A.ss012 + + A-cy.ss01 + Abreve.ss01 + Aring.ss01 + + public.kern2.A2 + + A + A-cy + A-cy.accented + AE + AEacute + Aacute + Abreve + Abrevecyr + Acaron + Acircumflex + Adieresis + Adieresiscyr + Agrave + Aiecyr + Amacron + Aogonek + Aring + Atilde + De-cy.BGR + Delta + El-cy.BGR + Yn-cy + YusClosedlittle-cy + Yuslittlecyr + uniF50E + uniF830 + + public.kern2.B + + B + D + Dcaron + E + Eacute + Ecaron + Ecircumflex + Edieresis + Edotaccent + Egrave + Emacron + Eogonek + F + H + Hbar + Hcircumflex + I + Iacute + Ibreve + Icircumflex + Idieresis + Idotaccent + Igrave + Imacron + Iogonek + Itilde + K + K.ss01 + Kcommaaccent + Kcommaaccent.ss01 + L + Lacute + Lcaron + Lcommaaccent + Ldot + M + N + N.ss01 + Nacute + Nacute.ss01 + Ncaron + Ncaron.ss01 + Ncommaaccent + Ncommaaccent.ss01 + Ntilde + Ntilde.ss01 + P + R + Racute + Rcaron + Rcommaaccent + Thorn + uni1EBC + + public.kern2.Che-cy + + Cche-cy + Che-cy + Chedieresiscyr + Chekhakascyr + Chetailcyr + Chevertcyr + uniF4C6 + uniF87E + + public.kern2.De-cy + + Dchecyr + De-cy + DeSoft-cy + Dwe-cy + Dzze-cy + Dzzhecyr + TseReversed-cy + + public.kern2.El-cy + + El-cy + ElSoft-cy + Elhookcyr + Elmiddlehookcyr + Elsharptailcyr + Eltailcyr + Lhacyr + Ljekomicyr + uniF872 + + public.kern2.Eth + + Dcroat + Eth + Gestrokecyr + + public.kern2.G + + C + Cacute + Ccaron + Ccedilla + Ccircumflex + Cdotaccent + CrossedO-cy + DoubleO-cy + E-cy + Ef-cy.BGR + Es-cy + Estailcyr + Estailcyr.BSH + Estailcyr.CHU + Fitacyr + G + G.ss01 + Gacute + Gacute.ss01 + Gbreve + Gbreve.ss01 + Gcircumflex + Gcircumflex.ss01 + Gcommaaccent + Gcommaaccent.ss01 + Gdotaccent + Gdotaccent.ss01 + Haabkhcyr + Koppacyr + O + O-cy + O-cy.accented + OBinocular-cy + ODoubleMonocular-cy + OE + OMonocular-cy + Oacute + Obarcyr + Obardieresiscyr + Obreve + Ocircumflex + Odieresis + Odieresiscyr + Ograve + Ohungarumlaut + Omacron + Omegaroundcyr + Oslash + Otilde + Q + Q.ss01 + Qacyr + Schwacyr + Schwadieresiscyr + Sjekomicyr + Ukcyr + YuReversed-cy + uniF45D + uniF49A + uniF49C + uniF4D2 + uniF518 + uniF51A + uniF51C + uniF51E + uniF526 + uniF839 + uniF875 + + public.kern2.Gecyr + + Be-cy + E-cy.accented + Eiotifiedcyr + Em-cy + EmSoft-cy + Emsharptailcyr + En-cy + Engecyr + Enhookcyr + Enhookleftcyr + Enmiddlehookcyr + Ensharptailcyr + Entailcyr + Er-cy + Ertickcyr + Gehookcyr + Gestrokecyr.BSH + Getailcyr + Gheupturn-cy + Gjecyr + Hwe-cy + I-cy + Iebrevecyr + Ii-cy + Ii-cy.accented + Io-cy.accented + IotifiedA-cy + Iu-cy.accented + Ka-cy + Kaaleutcyr + Kahookcyr + Katailcyr + Kaverticalstrokecyr + Kjecyr + Njekomicyr + Palochkacyr + Pe-cy + Pehookcyr + Petailcyr + Rhacyr + Shhacyr + Shhatailcyr + Shwe-cy + Tswe-cy + Ve-cy + Yeru-cy.accented + Yeru-cymacron + Yi-cy + Ylongdieresiscyr + Yusbigiotifiedcyr + YusiotifiedClosedLittle-cy + Yuslittleiotifiedcyr + palochkacyr + uniF45E + uniF45F + uniF498 + uniF4D4 + uniF510 + uniF512 + uniF514 + uniF52C + uniF52E + uniF532 + uniF536 + uniF833 + uniF86F + uniF87B + + public.kern2.Ia-cy + + Ia-cy + Ia-cy.accented + Yaecyr + uniF4D8 + uniF528 + uniF52A + + public.kern2.Iishort-cy + + Idieresiscyr + Iishort-cy + Imacroncyr + Ishortsharptailcyr + + public.kern2.J + + J + Jcircumflex + Jecyr + + public.kern2.Oslash.alt + + Ha-cy.ss01 + Hahookcyr + X + X.ss01 + Xatailcyr + uniF878 + + public.kern2.S + + Dzwe-cy + S + Sacute + Scaron + Scedilla + Scircumflex + Scommaaccent + + public.kern2.T + + Djecyr + T + Tcaron + Tcedilla + Tche-cy + Tcommaaccent + Te-cy + TeWithMiddleHook-cy + Tetailcyr + Tetsecyr + Tjekomicyr + Tshecyr + Tsse-cy + Twe-cy + + public.kern2.U + + Iota-cy + OmegaBroad-cy + Omegacyr + Omegatitlocyr + Otcyr + Psicyr + U + Uacute + Ubreve + Ucircumflex + Udieresis + Ugrave + Uhungarumlaut + Umacron + Uogonek + Uring + Utilde + + public.kern2.Ucyr.ss01 + + U-cy.accented + U-cy.ss01 + Uacutedblcyr + Udieresiscyr + Umacroncyr + Ushort-cy.ss01 + uniF4CC + + public.kern2.V + + Izhitsacyr + Izhitsagravedblcyr + V + V.ss01 + + public.kern2.W + + W + W.ss01 + Wacute + Wacute.ss01 + Wcircumflex + Wcircumflex.ss01 + Wdieresis + Wdieresis.ss01 + Wecyr + Wgrave + Wgrave.ss01 + + public.kern2.Y + + Ustraightcyr + Ustraightstrokecyr + Y + Y.ss01 + Yacute + Yacute.ss01 + Ycircumflex + Ycircumflex.ss01 + Ydieresis + Ydieresis.ss01 + uniF43A + + public.kern2.Z + + Dzelo-cy + Z + Z.ss01 + Zacute + Zacute.ss01 + Zcaron + Zcaron.ss01 + Zdotaccent + Zdotaccent.ss01 + Zemlya-cy + + public.kern2.Ze-cy1 + + Dzeabkhcyr + Ksicyr + Ze-cy + Zedieresiscyr + Zetailcyr + Zetailcyr.BSH + Zhwe-cy + uniF516 + + public.kern2.Zhe-cy1 + + YusBlended-cy + Yusbigcyr + Zhe-cy + Zhebrevecyr + Zhedieresiscyr + Zhetailcyr + + public.kern2.a + + a + a-cy + a-cy.accented + aacute + abreve + abrevecyr + acaron + acircumflex + adieresis + adieresiscyr + ae + aeacute + agrave + aiecyr + amacron + aogonek + aring + atilde + uniF50F + uniF831 + + public.kern2.acute.case + + acute.case + hungarumlaut.case + + public.kern2.che-cy + + cche-cy + che-cy + chedieresiscyr + chekhakascyr + chetailcyr + chevertcyr + uniF4C7 + uniF87F + + public.kern2.comma + + comma + quotedblbase + quotesinglbase + + public.kern2.copyright + + copyright + registered + + public.kern2.decyr.ss01 + + de-cy.ss01 + deSoft-cy + dwe-cy + dzze-cy + dzzhecyr + tseReversed-cy + + public.kern2.el-cy + + el-cy + el-cy.ss01 + elSoft-cy + elhookcyr + elmiddlehookcyr + elsharptailcyr + eltailcyr + lhacyr + ljecyr.ss01 + ljekomicyr + uniF873 + + public.kern2.el-cy.BGR1 + + el-cy.BGR + uni1C81 + yn-cy + yusClosedlittle-cy + yuslittlecyr + + public.kern2.emdash + + emdash + endash + hyphen + + public.kern2.f + + f + f_f + f_f_i + f_f_l + fi + fl + gestrokecyr + + public.kern2.f_f.ss01 + + f_f.ss01 + f_f_i.ss01 + f_f_l.ss01 + + public.kern2.fi.ss01 + + fi.ss01 + fl.ss01 + + public.kern2.five + + five + five.tf + + public.kern2.four + + four + four.tf + + public.kern2.g + + g + gacute + gbreve + gcircumflex + gcommaaccent + gdotaccent + + public.kern2.g.ss01 + + g.ss01 + gacute.ss01 + gbreve.ss01 + gcircumflex.ss01 + gcommaaccent.ss01 + gdotaccent.ss01 + + public.kern2.guillemotleft + + guillemetleft + guilsinglleft + + public.kern2.guillemotright + + guillemetright + guilsinglright + + public.kern2.h + + eiotifiedcyr.BGR + h + hcircumflex + hwe-cy + iotifieda-cy.BGR + iu-cy.BGR + k + ka-cy.BGR + kcommaaccent + l + lacute + lcaron + lcommaaccent + ldot + shhacyr + shhatailcyr + ve-cy.BGR + yatcyr.BGR + yusbigiotifiedcyr.BGR + + public.kern2.i1 + + i + i-cy + iacute + icircumflex + igrave + imacron + iogonek + itilde + uniF476 + yi-cy.alt + + public.kern2.ia-cy + + ia-cy + ia-cy.accented + ia-cy.ss01 + uniF4D9 + uniF529 + uniF52B + yaecyr + + public.kern2.j + + enhookleftcyr + j + jcircumflex + jdotless + + public.kern2.l.ss01 + + l.ss01 + lacute.ss01 + lcaron.ss01 + lcommaaccent.ss01 + ldot.ss01 + + public.kern2.m + + eiotifiedcyr + em-cy + emSoft-cy + emsharptailcyr + en-cy + eng + engecyr + enhookcyr + enmiddlehookcyr + ensharptailcyr + entailcyr + er-cy + er-cy.ss01 + ertickcyr + ge-cy + gehookcyr + gehookstrokecyr + gestrokecyr.BSH + getailcyr + gheupturn-cy + gjecyr + idieresiscyr + idotless + igravecyr + ii-cy + ii-cy.accented + iishort-cy + imacroncyr + iotifieda-cy + ishortsharptailcyr + iu-cy + iu-cy.accented + ka-cy + kaaleutcyr + kahookcyr + katailcyr + kaverticalstrokecyr + kgreenlandic + kjecyr + m + mu + n + nacute + ncaron + ncommaaccent + njecyr.ss01 + njekomicyr + ntilde + p + p.ss01 + pe-cy + pe-cy.BGR + pehookcyr + petailcyr + psicyr + r + racute + rcaron + rcommaaccent + rhacyr + sha-cy + shcha-cy + shwe-cy + softsign-cy + softsign-cy.BGR + softsign-cy.ss01 + te-cy.BGR + tse-cy + tswe-cy + uni1C85 + uniF499 + uniF4D5 + uniF521 + uniF52D + uniF52F + uniF533 + uniF537 + uniF870 + uniF87C + ve-cy + ve-cy.ss01 + yatIotified-cy + yeru-cy + yeru-cy.accented + yeru-cy.ss01 + ylongdieresiscyr + yusbigiotifiedcyr + yusiotifiedClosedLittle-cy + yuslittleiotifiedcyr + + public.kern2.o + + Dekomicyr + Djekomicyr + a-cy.ss01 + a.ss01 + aacute.ss01 + abreve.ss01 + acircumflex.ss01 + adieresis.ss01 + agrave.ss01 + amacron.ss01 + aogonek.ss01 + aring.ss01 + atilde.ss01 + c + cacute + ccaron + ccedilla + ccircumflex + cdotaccent + cent + crossedo-cy + d + d.ss01 + dcaron + dcaron.ss01 + dcroat + dcroat.ss01 + de-cy.BGR + dekomicyr + djekomicyr + e + e-cy + e-cy.accented + e-cy.hist + e.ss01 + eacute + eacute.ss01 + ebreve + ebreve.ss01 + ecaron + ecaron.ss01 + ecircumflex + ecircumflex.ss01 + edieresis + edieresis.ss01 + edotaccent + edotaccent.ss01 + ef-cy + egrave + egrave.ss01 + emacron + emacron.ss01 + eogonek + eogonek.ss01 + es-cy + estailcyr + estailcyr.BSH + estailcyr.CHU + eth + eturned + fitacyr + haabkhcyr + ie-cy + ie-cy.ss01 + iebrevecyr + iegravecyr + iegravecyr.SRB + io-cy + io-cy.accented + io-cy.ss01 + koppacyr + o + o-cy + o-cy.accented + oBinocular-cy + oDoubleMonocular-cy + oMonocular-cy + oacute + obarcyr + obardieresiscyr + obreve + ocircumflex + odieresis + odieresiscyr + oe.ss01 + ograve + ohungarumlaut + omacron + omegaBroad-cy + omegaroundcyr + omegatitlocyr + oslashacute + otilde + q + q.ss01 + qacyr + schwacyr + schwadieresiscyr + sjekomicyr + ukcyr + uni1C82 + uni1C83 + uni1EBD + uniF475 + uniF49D + uniF4D3 + uniF511 + uniF513 + uniF515 + uniF519 + uniF51B + uniF51D + uniF51F + uniF527 + uniF834 + uniF83A + uniF876 + yuReversed-cy + + public.kern2.percent + + percent + perthousand + + public.kern2.period + + ellipsis + period + + public.kern2.quotedbl + + quotedbl + quotesingle + + public.kern2.quoteleft + + quotedblleft + quoteleft + + public.kern2.quoteright + + apostrophemod + minute + quotedblright + quoteright + second + + public.kern2.s + + dzwe-cy + s + sacute + scaron + scedilla + scircumflex + scommaaccent + + public.kern2.t + + t + t.ss01 + tbar.ss01 + tcaron + tcaron.ss01 + tcedilla + tcedilla.ss01 + tcommaaccent + tcommaaccent.ss01 + + public.kern2.tecyr + + tche-cy + te-cy.ss01 + tetailcyr + tetsecyr + tewithmiddlehook-cy + tjekomicyr + tsse-cy + twe-cy + + public.kern2.u + + igravecyr.SRB + ii-cy.BGR + iishort-cy.BGR + iota-cy + pe-cy.SRB + sha-cy.BGR + shcha-cy.BGR + te-cy.SRB + tse-cy.BGR + u + uacute + ubreve + ucircumflex + udieresis + ugrave + uhungarumlaut + umacron + uogonek + uring + utilde + + public.kern2.v1 + + izhitsacyr + izhitsagravedblcyr + v + + public.kern2.w + + omegacyr + otcyr + w + wacute + wcircumflex + wdieresis + wecyr + wgrave + + public.kern2.x + + ha-cy + hahookcyr + uniF879 + x + + public.kern2.y + + u-cy + u-cy.accented + uacutedblcyr + udieresiscyr + umacroncyr + uniF43B + uniF4CD + ustraightcyr + ustraightstrokecyr + y + yacute + ycircumflex + ydieresis + + public.kern2.z + + dzelo-cy + z + zacute + zcaron + zdotaccent + zemlya-cy + + public.kern2.ze-cy1 + + dzeabkhcyr + ksicyr + uniF517 + ze-cy + ze-cy.BGR + zedieresiscyr + zetailcyr + zetailcyr.BSH + zhwe-cy + + public.kern2.zero + + uni1C80 + zero + zero.tf + + public.kern2.zhe-cy1 + + xatailcyr + yusBlended-cy + yusbigcyr + zhe-cy + zhe-cy.BGR + zhebrevecyr + zhedieresiscyr + zhetailcyr + + ss01 + + A-cy.ss01 + A.ss01 + AE.ss01 + Aacute.ss01 + Abreve.ss01 + Acircumflex.ss01 + Adieresis.ss01 + Agrave.ss01 + Amacron.ss01 + Aogonek.ss01 + Aring.ss01 + Atilde.ss01 + Em-cy.ss01 + Eng.ss01 + G.ss01 + Gacute.ss01 + Gbreve.ss01 + Gcircumflex.ss01 + Gcommaaccent.ss01 + Gdotaccent.ss01 + Ha-cy.ss01 + Ia-cy.ss01 + J.ss01 + Jcircumflex.ss01 + K.ss01 + Ka-cy.ss01 + Kcommaaccent.ss01 + M.ss01 + N.ss01 + Nacute.ss01 + Ncaron.ss01 + Ncommaaccent.ss01 + Ntilde.ss01 + Q.ss01 + U-cy.ss01 + Ushort-cy.ss01 + V.ss01 + W.ss01 + Wacute.ss01 + Wcircumflex.ss01 + Wdieresis.ss01 + Wgrave.ss01 + X.ss01 + Y.ss01 + Yacute.ss01 + Ycircumflex.ss01 + Ydieresis.ss01 + Z.ss01 + Zacute.ss01 + Zcaron.ss01 + Zdotaccent.ss01 + Zhe-cy.ss01 + a-cy.ss01 + a.ss01 + aacute.ss01 + abreve.ss01 + acircumflex.ss01 + adieresis.ss01 + ae.ss01 + agrave.ss01 + amacron.ss01 + aogonek.ss01 + aring.ss01 + arrowdown.ss01 + arrowdown.ss01.case + arrowleft.ss01 + arrowleft.ss01.case + arrowright.ss01 + arrowright.ss01.case + arrowup.ss01 + arrowup.ss01.case + atilde.ss01 + b.ss01 + d.ss01 + dcaron.ss01 + dcroat.ss01 + de-cy.ss01 + e.ss01 + eacute.ss01 + ebreve.ss01 + ecaron.ss01 + ecircumflex.ss01 + edieresis.ss01 + edotaccent.ss01 + egrave.ss01 + el-cy.ss01 + emacron.ss01 + eogonek.ss01 + er-cy.ss01 + f.ss01 + f_f.ss01 + f_f_i.ss01 + f_f_l.ss01 + fi.ss01 + fl.ss01 + g.ss01 + gacute.ss01 + gbreve.ss01 + gcircumflex.ss01 + gcommaaccent.ss01 + gdotaccent.ss01 + germandbls.ss01 + hardsign-cy.ss01 + ia-cy.ss01 + ie-cy.ss01 + io-cy.ss01 + l.ss01 + lacute.ss01 + lcaron.ss01 + lcommaaccent.ss01 + ldot.ss01 + ljecyr.ss01 + lslash.ss01 + njecyr.ss01 + numero.ss01 + oe.ss01 + p.ss01 + q.ss01 + softsign-cy.ss01 + t.ss01 + tbar.ss01 + tcaron.ss01 + tcedilla.ss01 + tcommaaccent.ss01 + te-cy.ss01 + ve-cy.ss01 + yen.ss01 + yeru-cy.ss01 + + ss01_def + + A-cy + A + AE + Aacute + Abreve + Acircumflex + Adieresis + Agrave + Amacron + Aogonek + Aring + Atilde + Em-cy + Eng + G + Gacute + Gbreve + Gcircumflex + Gcommaaccent + Gdotaccent + Ha-cy + Ia-cy + J + Jcircumflex + K + Ka-cy + Kcommaaccent + M + N + Nacute + Ncaron + Ncommaaccent + Ntilde + Q + U-cy + Ushort-cy + V + W + Wacute + Wcircumflex + Wdieresis + Wgrave + X + Y + Yacute + Ycircumflex + Ydieresis + Z + Zacute + Zcaron + Zdotaccent + Zhe-cy + a-cy + a + aacute + abreve + acircumflex + adieresis + ae + agrave + amacron + aogonek + aring + arrowdown + arrowdown.case + arrowleft + arrowleft.case + arrowright + arrowright.case + arrowup + arrowup.case + atilde + b + d + dcaron + dcroat + de-cy + e + eacute + ebreve + ecaron + ecircumflex + edieresis + edotaccent + egrave + el-cy + emacron + eogonek + er-cy + f + f_f + f_f_i + f_f_l + fi + fl + g + gacute + gbreve + gcircumflex + gcommaaccent + gdotaccent + germandbls + hardsign-cy + ia-cy + ie-cy + io-cy + l + lacute + lcaron + lcommaaccent + ldot + ljecyr + lslash + njecyr + numero + oe + p + q + softsign-cy + t + tbar + tcaron + tcedilla + tcommaaccent + te-cy + ve-cy + yen + yeru-cy + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/kerning.plist b/sources/FixelDisplay-ExtraLight.ufo/kerning.plist new file mode 100644 index 00000000..b654e8c6 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/kerning.plist @@ -0,0 +1,2339 @@ + + + + + Zhe-cy + + public.kern2.G + -20 + + space + + public.kern2.Y + -70 + + uni1C82 + + public.kern2.y + -83 + + public.kern1.A.ss012 + + public.kern2.B + -3 + public.kern2.G + -27 + public.kern2.S + -13 + public.kern2.T + -47 + public.kern2.U + -20 + public.kern2.Ucyr.ss01 + -33 + public.kern2.V + -30 + public.kern2.W + -20 + public.kern2.Y + -55 + public.kern2.Z + -7 + public.kern2.a + -23 + public.kern2.decyr.ss01 + -7 + public.kern2.emdash + -3 + public.kern2.j + -13 + public.kern2.o + -27 + public.kern2.quotedbl + -47 + public.kern2.quoteright + -50 + public.kern2.s + -13 + public.kern2.t + -13 + public.kern2.tecyr + -30 + public.kern2.u + -20 + public.kern2.w + -30 + public.kern2.x + -5 + public.kern2.y + -37 + public.kern2.z + -7 + + public.kern1.A2 + + public.kern2.G + -23 + public.kern2.J + 3 + public.kern2.T + -40 + public.kern2.U + -10 + public.kern2.Ucyr.ss01 + -27 + public.kern2.V + -25 + public.kern2.W + -30 + public.kern2.Y + -50 + public.kern2.a + -15 + public.kern2.comma + 7 + public.kern2.decyr.ss01 + 1 + public.kern2.emdash + -10 + public.kern2.g + 2 + public.kern2.j + -7 + public.kern2.o + -17 + public.kern2.period + 37 + public.kern2.quotedbl + -50 + public.kern2.quoteright + -50 + public.kern2.t + -3 + public.kern2.tecyr + -30 + public.kern2.u + -2 + public.kern2.w + -20 + public.kern2.y + -33 + public.kern2.z + 3 + + public.kern1.C1 + + public.kern2.A.ss01 + 10 + public.kern2.G + -3 + public.kern2.Oslash.alt + 2 + public.kern2.S + 3 + public.kern2.T + -3 + public.kern2.V + 10 + public.kern2.W + -7 + public.kern2.Y + -13 + public.kern2.Z + -7 + public.kern2.comma + -3 + public.kern2.emdash + -7 + public.kern2.g + -2 + public.kern2.j + -15 + public.kern2.o + -10 + public.kern2.period + -7 + public.kern2.quoteright + 7 + public.kern2.u + -1 + public.kern2.x + -8 + public.kern2.y + -7 + + public.kern1.Decyr + + public.kern2.A.ss012 + 3 + public.kern2.G + -10 + public.kern2.T + -13 + public.kern2.Ucyr.ss01 + -23 + public.kern2.a + -3 + public.kern2.comma + 13 + public.kern2.decyr.ss01 + 7 + public.kern2.emdash + -10 + public.kern2.o + -10 + public.kern2.period + 7 + public.kern2.quoteright + -7 + public.kern2.tecyr + -20 + public.kern2.y + -13 + + public.kern1.E1 + + public.kern2.A.ss012 + 3 + public.kern2.G + -2 + public.kern2.J + 3 + public.kern2.o + -10 + public.kern2.period + 7 + public.kern2.w + -8 + public.kern2.y + -10 + + public.kern1.G.ss01 + + public.kern2.A.ss01 + 10 + public.kern2.B + 7 + public.kern2.Oslash.alt + 7 + public.kern2.T + -17 + public.kern2.V + -20 + public.kern2.W + -10 + public.kern2.Y + -20 + public.kern2.h + 7 + public.kern2.l.ss01 + 7 + public.kern2.m + 7 + public.kern2.o + 7 + public.kern2.quotedbl + -30 + public.kern2.quoteright + -20 + public.kern2.t + -1 + public.kern2.w + -8 + public.kern2.y + -13 + + public.kern1.G1 + + public.kern2.G + 3 + public.kern2.T + -10 + public.kern2.V + -27 + public.kern2.W + -10 + public.kern2.Y + -20 + public.kern2.comma + 10 + public.kern2.emdash + 7 + public.kern2.period + 3 + public.kern2.quotedbl + -13 + public.kern2.y + -7 + + public.kern1.Ge-cy + + public.kern2.A.ss012 + -50 + public.kern2.A2 + -37 + public.kern2.G + -30 + public.kern2.Gecyr + 3 + public.kern2.T + 33 + public.kern2.Ucyr.ss01 + 10 + public.kern2.a + -73 + public.kern2.comma + -67 + public.kern2.decyr.ss01 + -60 + public.kern2.emdash + -60 + public.kern2.guillemotright + -20 + public.kern2.i1 + 27 + public.kern2.m + -67 + public.kern2.o + -90 + public.kern2.period + -103 + public.kern2.quoteright + 3 + public.kern2.tecyr + -53 + public.kern2.x + -63 + public.kern2.y + -50 + + public.kern1.H + + public.kern2.Gecyr + 1 + public.kern2.W + 7 + public.kern2.comma + -7 + public.kern2.j + -30 + public.kern2.quoteright + -20 + + public.kern1.Hardcyr + + public.kern2.A.ss012 + 3 + public.kern2.Oslash.alt + -12 + public.kern2.T + -110 + public.kern2.Ucyr.ss01 + -70 + public.kern2.comma + -13 + public.kern2.period + -3 + public.kern2.quotedbl + -120 + public.kern2.quoteright + -27 + public.kern2.tecyr + -50 + public.kern2.x + -27 + public.kern2.y + -30 + + public.kern1.J1 + + public.kern2.A.ss012 + 1 + public.kern2.A2 + -10 + public.kern2.S + -7 + public.kern2.Z + -3 + public.kern2.comma + -10 + public.kern2.period + -30 + + public.kern1.K + + public.kern2.A.ss01 + 7 + public.kern2.G + -40 + public.kern2.J + 3 + public.kern2.U + -14 + public.kern2.a + -17 + public.kern2.emdash + -60 + public.kern2.f + -2 + public.kern2.g + -7 + public.kern2.j + -10 + public.kern2.o + -40 + public.kern2.period + 3 + public.kern2.quoteright + -23 + public.kern2.s + -13 + public.kern2.t + -30 + public.kern2.tecyr + -40 + public.kern2.u + -30 + public.kern2.w + -30 + public.kern2.y + -40 + + public.kern1.L + + public.kern2.A.ss01 + 3 + public.kern2.A2 + 3 + public.kern2.G + -40 + public.kern2.S + -13 + public.kern2.T + -90 + public.kern2.U + -40 + public.kern2.V + -107 + public.kern2.W + -73 + public.kern2.Y + -110 + public.kern2.Z + -13 + public.kern2.a + -23 + public.kern2.emdash + -80 + public.kern2.guillemotleft + -33 + public.kern2.j + -10 + public.kern2.o + -40 + public.kern2.quotedbl + -83 + public.kern2.quoteright + -70 + public.kern2.t + -20 + public.kern2.u + -17 + public.kern2.w + -60 + public.kern2.y + -90 + public.kern2.z + 3 + + public.kern1.O + + Zhe-cy + -20 + public.kern2.A.ss01 + -2 + public.kern2.A.ss012 + -8 + public.kern2.A2 + -27 + public.kern2.J + -40 + public.kern2.Oslash.alt + -23 + public.kern2.T + -33 + public.kern2.Ucyr.ss01 + -30 + public.kern2.V + -32 + public.kern2.W + -23 + public.kern2.Y + -47 + public.kern2.Z + -40 + public.kern2.a + -10 + public.kern2.comma + -47 + public.kern2.decyr.ss01 + -13 + public.kern2.emdash + 7 + public.kern2.j + -17 + public.kern2.period + -37 + public.kern2.quotedbl + -13 + public.kern2.quoteright + -3 + public.kern2.x + -10 + public.kern2.y + -7 + public.kern2.z + -13 + + public.kern1.Oslash.alt + + public.kern2.A.ss01 + 7 + public.kern2.G + -23 + public.kern2.J + 4 + public.kern2.S + -10 + public.kern2.W + -7 + public.kern2.a + -10 + public.kern2.comma + 10 + public.kern2.emdash + -23 + public.kern2.f + -2 + public.kern2.g + -2 + public.kern2.g.ss01 + -13 + public.kern2.j + -17 + public.kern2.o + -30 + public.kern2.period + 3 + public.kern2.quoteright + -33 + public.kern2.s + -22 + public.kern2.t + -10 + public.kern2.tecyr + -20 + public.kern2.u + -23 + public.kern2.w + -20 + public.kern2.y + -27 + + public.kern1.P + + public.kern2.A.ss01 + -47 + public.kern2.A.ss012 + -47 + public.kern2.A2 + -62 + public.kern2.B + -7 + public.kern2.J + -83 + public.kern2.Oslash.alt + -30 + public.kern2.T + -27 + public.kern2.Ucyr.ss01 + -20 + public.kern2.V + -8 + public.kern2.W + -8 + public.kern2.Y + -3 + public.kern2.Z + -40 + public.kern2.a + -20 + public.kern2.comma + -110 + public.kern2.decyr.ss01 + -37 + public.kern2.emdash + -10 + public.kern2.g + -17 + public.kern2.g.ss01 + -27 + public.kern2.j + -37 + public.kern2.o + -30 + public.kern2.period + -157 + public.kern2.quotedbl + -7 + public.kern2.s + -20 + public.kern2.tecyr + 8 + public.kern2.x + -8 + public.kern2.z + -3 + + public.kern1.R + + public.kern2.A.ss01 + 3 + public.kern2.G + -20 + public.kern2.J + 3 + public.kern2.T + -33 + public.kern2.U + -13 + public.kern2.V + -18 + public.kern2.W + -22 + public.kern2.Y + -27 + public.kern2.a + -15 + public.kern2.emdash + -17 + public.kern2.j + -23 + public.kern2.o + -20 + public.kern2.quotedbl + -20 + public.kern2.quoteright + -13 + public.kern2.s + -8 + public.kern2.t + -8 + public.kern2.u + -20 + public.kern2.w + -8 + public.kern2.y + -15 + + public.kern1.S1 + + public.kern2.A.ss01 + 10 + public.kern2.J + 5 + public.kern2.Oslash.alt + -8 + public.kern2.T + -15 + public.kern2.V + -10 + public.kern2.W + -17 + public.kern2.Y + -30 + public.kern2.Z + -10 + public.kern2.comma + -7 + public.kern2.emdash + 10 + public.kern2.g + -7 + public.kern2.j + -23 + public.kern2.quotedbl + -10 + public.kern2.quoteright + -30 + public.kern2.t + -8 + public.kern2.w + -10 + public.kern2.x + -2 + public.kern2.y + -10 + + public.kern1.T1 + + public.kern2.A.ss01 + -23 + public.kern2.A.ss012 + -42 + public.kern2.A2 + -40 + public.kern2.G + -33 + public.kern2.J + -77 + public.kern2.S + -17 + public.kern2.T + 13 + public.kern2.V + 13 + public.kern2.W + 7 + public.kern2.Y + 10 + public.kern2.a + -67 + public.kern2.comma + -57 + public.kern2.decyr.ss01 + -93 + public.kern2.emdash + -70 + public.kern2.f + -3 + public.kern2.g + -70 + public.kern2.g.ss01 + -33 + public.kern2.guillemotleft + -57 + public.kern2.guillemotright + -63 + public.kern2.i1 + 7 + public.kern2.j + -20 + public.kern2.m + -73 + public.kern2.o + -93 + public.kern2.period + -83 + public.kern2.quotedbl + 7 + public.kern2.quoteright + -17 + public.kern2.s + -67 + public.kern2.t + -7 + public.kern2.tecyr + -60 + public.kern2.u + -62 + public.kern2.w + -67 + public.kern2.x + -73 + public.kern2.y + -67 + public.kern2.z + -70 + + public.kern1.U1 + + public.kern2.A.ss01 + -10 + public.kern2.A.ss012 + -1 + public.kern2.A2 + -10 + public.kern2.J + -13 + public.kern2.Y + -7 + public.kern2.Z + -33 + public.kern2.a + -7 + public.kern2.comma + -30 + public.kern2.j + -33 + public.kern2.period + -30 + public.kern2.quoteright + -27 + public.kern2.z + -10 + + public.kern1.Ucyr1 + + public.kern2.A.ss012 + -20 + public.kern2.A2 + -27 + public.kern2.G + -23 + public.kern2.T + 3 + public.kern2.a + -50 + public.kern2.comma + -70 + public.kern2.decyr.ss01 + -63 + public.kern2.emdash + -50 + public.kern2.guillemotright + -60 + public.kern2.i1 + 7 + public.kern2.m + -53 + public.kern2.o + -70 + public.kern2.period + -90 + public.kern2.tecyr + -20 + public.kern2.x + -27 + public.kern2.y + -30 + + public.kern1.V + + public.kern2.A.ss01 + -33 + public.kern2.A.ss012 + -20 + public.kern2.A2 + -25 + public.kern2.G + -32 + public.kern2.J + -77 + public.kern2.Oslash.alt + -3 + public.kern2.S + -17 + public.kern2.T + 7 + public.kern2.Z + -30 + public.kern2.a + -50 + public.kern2.comma + -87 + public.kern2.emdash + -40 + public.kern2.f + -8 + public.kern2.g + -47 + public.kern2.g.ss01 + -47 + public.kern2.guillemotleft + -43 + public.kern2.guillemotright + -30 + public.kern2.j + -27 + public.kern2.m + -50 + public.kern2.o + -58 + public.kern2.period + -90 + public.kern2.quotedbl + 3 + public.kern2.quoteright + -10 + public.kern2.s + -40 + public.kern2.t + -10 + public.kern2.u + -50 + public.kern2.w + -10 + public.kern2.x + -27 + public.kern2.y + -20 + public.kern2.z + -20 + + public.kern1.W.ss011 + + public.kern2.A.ss01 + -13 + public.kern2.A.ss012 + -30 + public.kern2.A2 + -53 + public.kern2.J + -63 + public.kern2.S + -7 + public.kern2.T + 7 + public.kern2.V + 3 + public.kern2.Z + -23 + public.kern2.a + -47 + public.kern2.comma + -80 + public.kern2.emdash + -33 + public.kern2.g + -52 + public.kern2.g.ss01 + -30 + public.kern2.guillemotright + -44 + public.kern2.i1 + 4 + public.kern2.j + -13 + public.kern2.m + -37 + public.kern2.o + -53 + public.kern2.period + -107 + public.kern2.quotedbl + 17 + public.kern2.quoteright + 13 + public.kern2.s + -37 + public.kern2.u + -43 + public.kern2.w + -19 + public.kern2.x + -13 + public.kern2.y + -18 + public.kern2.z + -30 + + public.kern1.W1 + + public.kern2.A.ss01 + -47 + public.kern2.A.ss012 + -10 + public.kern2.A2 + -30 + public.kern2.G + -17 + public.kern2.J + -67 + public.kern2.S + -15 + public.kern2.T + 7 + public.kern2.Z + -10 + public.kern2.a + -47 + public.kern2.comma + -53 + public.kern2.emdash + -20 + public.kern2.g + -37 + public.kern2.guillemotleft + -33 + public.kern2.guillemotright + -33 + public.kern2.i1 + -3 + public.kern2.j + -27 + public.kern2.m + -30 + public.kern2.o + -48 + public.kern2.period + -47 + public.kern2.quoteright + -20 + public.kern2.s + -20 + public.kern2.u + -27 + public.kern2.w + -8 + public.kern2.x + -23 + public.kern2.y + -17 + public.kern2.z + -20 + + public.kern1.Y.ss011 + + public.kern2.A.ss01 + -30 + public.kern2.A.ss012 + -40 + public.kern2.B + -7 + public.kern2.G + -30 + public.kern2.S + -14 + public.kern2.Z + -17 + public.kern2.a + -43 + public.kern2.comma + -80 + public.kern2.emdash + -43 + public.kern2.g.ss01 + -40 + public.kern2.i1 + 3 + public.kern2.j + -20 + public.kern2.m + -63 + public.kern2.o + -113 + public.kern2.period + -77 + public.kern2.quotedbl + 7 + public.kern2.s + -72 + public.kern2.t + -13 + public.kern2.u + -53 + public.kern2.w + -33 + public.kern2.x + -27 + public.kern2.y + -20 + public.kern2.z + -27 + + public.kern1.Y1 + + public.kern2.A.ss012 + -30 + public.kern2.A2 + -50 + public.kern2.G + -47 + public.kern2.J + -87 + public.kern2.S + -30 + public.kern2.T + 3 + public.kern2.a + -70 + public.kern2.comma + -80 + public.kern2.emdash + -73 + public.kern2.f + -17 + public.kern2.g + -67 + public.kern2.guillemotleft + -73 + public.kern2.guillemotright + -60 + public.kern2.i1 + -20 + public.kern2.j + -30 + public.kern2.m + -73 + public.kern2.o + -103 + public.kern2.period + -100 + public.kern2.quotedbl + 3 + public.kern2.quoteright + -20 + public.kern2.s + -63 + public.kern2.t + -10 + public.kern2.u + -70 + public.kern2.w + -30 + public.kern2.x + -40 + public.kern2.y + -40 + public.kern2.z + -50 + + public.kern1.Z1 + + public.kern2.A.ss01 + 13 + public.kern2.A.ss012 + 7 + public.kern2.G + -30 + public.kern2.T + 3 + public.kern2.W + -7 + public.kern2.a + -23 + public.kern2.comma + 30 + public.kern2.emdash + -30 + public.kern2.f + -1 + public.kern2.g.ss01 + -7 + public.kern2.i1 + 3 + public.kern2.j + -20 + public.kern2.o + -30 + public.kern2.period + 17 + public.kern2.quoteright + -40 + public.kern2.s + -10 + public.kern2.t + -17 + public.kern2.u + -20 + public.kern2.w + -20 + public.kern2.y + -17 + + public.kern1.a1 + + public.kern2.A.ss012 + 3 + public.kern2.G + -2 + public.kern2.S + -7 + public.kern2.T + -63 + public.kern2.U + -7 + public.kern2.Ucyr.ss01 + -1 + public.kern2.V + -60 + public.kern2.W + -40 + public.kern2.Y + -73 + public.kern2.comma + -3 + public.kern2.f + 7 + public.kern2.j + -13 + public.kern2.quotedbl + -40 + public.kern2.quoteright + -47 + public.kern2.t + -2 + public.kern2.tecyr + -1 + public.kern2.u + -3 + public.kern2.w + -8 + public.kern2.y + -23 + + public.kern1.c1 + + public.kern2.A2 + 7 + public.kern2.G + 3 + public.kern2.T + -63 + public.kern2.Ucyr.ss01 + -50 + public.kern2.V + -37 + public.kern2.W + -27 + public.kern2.Y + -63 + public.kern2.Z + -13 + public.kern2.a + -7 + public.kern2.comma + -10 + public.kern2.emdash + -7 + public.kern2.g + 3 + public.kern2.j + -13 + public.kern2.o + -7 + public.kern2.period + -7 + public.kern2.quotedbl + -37 + public.kern2.quoteright + -20 + public.kern2.x + -13 + public.kern2.y + -13 + + public.kern1.comma1 + + public.kern2.A.ss01 + 7 + public.kern2.B + -7 + public.kern2.G + -50 + public.kern2.J + 7 + public.kern2.Oslash.alt + 7 + public.kern2.S + -13 + public.kern2.T + -63 + public.kern2.U + -30 + public.kern2.V + -87 + public.kern2.W + -57 + public.kern2.Y + -107 + public.kern2.Z + -7 + public.kern2.a + -20 + public.kern2.five + -27 + public.kern2.four + -13 + public.kern2.g.ss01 + -3 + public.kern2.h + -7 + public.kern2.i1 + -7 + public.kern2.m + -7 + public.kern2.o + -33 + public.kern2.t + -10 + public.kern2.u + -23 + public.kern2.w + -50 + public.kern2.x + -7 + public.kern2.y + -63 + public.kern2.z + -3 + public.kern2.zero + -30 + + public.kern1.dcaron + + public.kern2.B + 23 + public.kern2.Oslash.alt + 47 + public.kern2.S + 27 + public.kern2.T + 73 + public.kern2.U + 10 + public.kern2.V + 67 + public.kern2.W + 60 + public.kern2.Y + 63 + public.kern2.Z + 33 + public.kern2.a + -7 + public.kern2.f + 30 + public.kern2.fi.ss01 + 30 + public.kern2.h + 33 + public.kern2.i1 + 33 + public.kern2.j + 10 + public.kern2.l.ss01 + 3 + public.kern2.s + 2 + public.kern2.t + 33 + public.kern2.w + 23 + public.kern2.x + 7 + public.kern2.y + 27 + public.kern2.z + 27 + + public.kern1.decyr1 + + public.kern2.A2 + 3 + public.kern2.G + -7 + public.kern2.T + -93 + public.kern2.Ucyr.ss01 + -40 + public.kern2.a + -13 + public.kern2.comma + 7 + public.kern2.decyr.ss01 + 1 + public.kern2.emdash + -3 + public.kern2.o + -20 + public.kern2.period + 3 + public.kern2.quoteright + -7 + public.kern2.tecyr + -20 + public.kern2.y + -7 + + public.kern1.e.ss011 + + public.kern2.Oslash.alt + -10 + public.kern2.T + -60 + public.kern2.V + -43 + public.kern2.W + -20 + public.kern2.Y + -53 + public.kern2.Z + -20 + public.kern2.comma + -10 + public.kern2.emdash + -3 + public.kern2.quotedbl + -40 + + public.kern1.e1 + + public.kern2.A.ss012 + 3 + public.kern2.A2 + -8 + public.kern2.J + -7 + public.kern2.Oslash.alt + -20 + public.kern2.T + -80 + public.kern2.Ucyr.ss01 + -63 + public.kern2.V + -60 + public.kern2.W + -50 + public.kern2.Y + -83 + public.kern2.Z + -3 + public.kern2.comma + -13 + public.kern2.j + -13 + public.kern2.period + -20 + public.kern2.quotedbl + -43 + public.kern2.quoteright + -33 + public.kern2.t + -13 + public.kern2.w + -10 + public.kern2.x + -20 + public.kern2.y + -20 + public.kern2.z + -3 + + public.kern1.emdash1 + + public.kern2.A.ss01 + 3 + public.kern2.A2 + -10 + public.kern2.G + 13 + public.kern2.J + -50 + public.kern2.Oslash.alt + -20 + public.kern2.S + -50 + public.kern2.T + -70 + public.kern2.Ucyr.ss01 + -50 + public.kern2.V + -40 + public.kern2.W + -20 + public.kern2.Y + -73 + public.kern2.Z + -17 + public.kern2.a + -20 + public.kern2.decyr.ss01 + -30 + public.kern2.five + -7 + public.kern2.four + 7 + public.kern2.g.ss01 + 3 + public.kern2.j + -27 + public.kern2.s + -7 + public.kern2.tecyr + -40 + public.kern2.w + -7 + public.kern2.x + -33 + public.kern2.y + -23 + public.kern2.z + -30 + + public.kern1.f1 + + public.kern2.A.ss012 + -23 + public.kern2.A2 + -7 + public.kern2.J + -53 + public.kern2.S + 3 + public.kern2.T + 3 + public.kern2.V + 10 + public.kern2.Y + 3 + public.kern2.a + -22 + public.kern2.comma + -53 + public.kern2.emdash + -33 + public.kern2.f + 3 + public.kern2.g + -17 + public.kern2.i1 + 14 + public.kern2.j + -7 + public.kern2.o + -43 + public.kern2.period + -83 + public.kern2.quotedbl + 7 + public.kern2.quoteright + 7 + public.kern2.s + -20 + public.kern2.t + 2 + public.kern2.y + 7 + + public.kern1.five1 + + public.kern2.comma + -30 + public.kern2.period + -38 + + public.kern1.four1 + + public.kern2.comma + -20 + public.kern2.emdash + -27 + public.kern2.five + -3 + public.kern2.four + 3 + public.kern2.period + -34 + public.kern2.quotedbl + -20 + + public.kern1.g.ss011 + + public.kern2.Oslash.alt + -13 + public.kern2.S + -7 + public.kern2.T + -40 + public.kern2.V + -27 + public.kern2.W + -13 + public.kern2.Y + -40 + public.kern2.Z + -20 + public.kern2.comma + 10 + public.kern2.emdash + -7 + public.kern2.o + -7 + public.kern2.quotedbl + -7 + public.kern2.quoteright + 3 + + public.kern1.g1 + + public.kern2.A2 + 2 + public.kern2.T + -80 + public.kern2.V + -20 + public.kern2.W + -23 + public.kern2.Y + -23 + public.kern2.a + -7 + public.kern2.comma + 10 + public.kern2.f + 3 + public.kern2.j + 5 + public.kern2.quotedbl + -23 + public.kern2.y + 3 + + public.kern1.gecyr + + public.kern2.A.ss012 + -13 + public.kern2.A2 + -23 + public.kern2.Oslash.alt + -13 + public.kern2.T + -40 + public.kern2.Ucyr.ss01 + -20 + public.kern2.a + -13 + public.kern2.comma + -33 + public.kern2.decyr.ss01 + -37 + public.kern2.emdash + -57 + public.kern2.o + -27 + public.kern2.period + -80 + public.kern2.quoteright + 10 + public.kern2.x + 3 + public.kern2.y + 7 + + public.kern1.guillemotright1 + + public.kern2.J + -53 + public.kern2.T + -57 + public.kern2.V + -43 + public.kern2.W + -33 + public.kern2.Y + -73 + + public.kern1.hardcyr + + public.kern2.A.ss012 + 7 + public.kern2.G + -13 + public.kern2.Oslash.alt + -17 + public.kern2.T + -90 + public.kern2.Ucyr.ss01 + -60 + public.kern2.period + -3 + public.kern2.quotedbl + -110 + public.kern2.quoteright + -20 + public.kern2.tecyr + -90 + public.kern2.x + -13 + public.kern2.y + -50 + + public.kern1.i1 + + public.kern2.T + 7 + public.kern2.V + 7 + public.kern2.W + 10 + public.kern2.Y + 7 + public.kern2.comma + -13 + public.kern2.i1 + 7 + public.kern2.j + -27 + public.kern2.quoteright + -17 + + public.kern1.icyr1 + + public.kern2.A.ss012 + 7 + public.kern2.T + -73 + public.kern2.Ucyr.ss01 + -60 + public.kern2.V + -50 + public.kern2.W + -27 + public.kern2.Y + -73 + public.kern2.quoteright + -7 + + public.kern1.j1 + + public.kern2.quoteright + -7 + + public.kern1.k + + public.kern2.A.ss01 + 7 + public.kern2.A.ss012 + 3 + public.kern2.A2 + 3 + public.kern2.G + -3 + public.kern2.J + 3 + public.kern2.T + -60 + public.kern2.Ucyr.ss01 + -27 + public.kern2.V + -27 + public.kern2.W + -27 + public.kern2.Y + -7 + public.kern2.a + -10 + public.kern2.emdash + -47 + public.kern2.o + -27 + public.kern2.quoteright + -7 + public.kern2.x + 3 + + public.kern1.l + + public.kern2.j + -7 + public.kern2.quoteright + -20 + + public.kern1.l.ss011 + + public.kern2.A.ss01 + 27 + public.kern2.B + 7 + public.kern2.G + 7 + public.kern2.Oslash.alt + 20 + public.kern2.S + 13 + public.kern2.V + -27 + public.kern2.W + -27 + public.kern2.Y + -13 + public.kern2.Z + 7 + public.kern2.comma + 13 + public.kern2.emdash + -7 + public.kern2.f + -13 + public.kern2.j + -20 + public.kern2.period + 7 + public.kern2.quoteright + -3 + public.kern2.t + -3 + public.kern2.w + -30 + public.kern2.y + -23 + + public.kern1.n + + public.kern2.T + -75 + public.kern2.Ucyr.ss01 + -70 + public.kern2.V + -60 + public.kern2.W + -47 + public.kern2.Y + -93 + public.kern2.j + -20 + public.kern2.quotedbl + -37 + public.kern2.quoteright + -27 + public.kern2.w + -2 + public.kern2.y + -20 + + public.kern1.o1 + + public.kern2.A.ss01 + -7 + public.kern2.A.ss012 + -7 + public.kern2.A2 + -17 + public.kern2.J + -20 + public.kern2.Oslash.alt + -30 + public.kern2.S + -10 + public.kern2.T + -93 + public.kern2.Ucyr.ss01 + -83 + public.kern2.V + -58 + public.kern2.W + -48 + public.kern2.Y + -100 + public.kern2.Z + -30 + public.kern2.a + -8 + public.kern2.comma + -30 + public.kern2.g + -7 + public.kern2.j + -20 + public.kern2.period + -43 + public.kern2.quotedbl + -47 + public.kern2.quoteright + -40 + public.kern2.s + -17 + public.kern2.tecyr + -37 + public.kern2.w + -15 + public.kern2.x + -28 + public.kern2.y + -23 + public.kern2.z + -13 + + public.kern1.period1 + + public.kern2.A.ss01 + 20 + public.kern2.A.ss012 + 37 + public.kern2.A2 + 37 + public.kern2.G + -37 + public.kern2.J + 7 + public.kern2.Oslash.alt + 3 + public.kern2.S + -20 + public.kern2.T + -83 + public.kern2.U + -30 + public.kern2.Ucyr.ss01 + -20 + public.kern2.V + -90 + public.kern2.W + -47 + public.kern2.Y + -100 + public.kern2.Z + 10 + public.kern2.a + -20 + public.kern2.five + -30 + public.kern2.four + -20 + public.kern2.g.ss01 + 3 + public.kern2.j + -33 + public.kern2.o + -43 + public.kern2.t + -23 + public.kern2.tecyr + -60 + public.kern2.u + -23 + public.kern2.w + -30 + public.kern2.y + -75 + public.kern2.zero + -37 + + public.kern1.quotedbl1 + + public.kern2.A.ss01 + -63 + public.kern2.A.ss012 + -37 + public.kern2.A2 + -50 + public.kern2.G + -13 + public.kern2.J + -93 + public.kern2.T + 10 + public.kern2.V + 3 + public.kern2.W + 13 + public.kern2.Y + 10 + public.kern2.Z + -3 + public.kern2.a + -37 + public.kern2.decyr.ss01 + -40 + public.kern2.five + -7 + public.kern2.four + -67 + public.kern2.g + -43 + public.kern2.g.ss01 + -33 + public.kern2.j + -20 + public.kern2.o + -47 + public.kern2.period + -3 + public.kern2.s + -33 + public.kern2.u + -3 + public.kern2.x + -10 + public.kern2.z + -3 + public.kern2.zero + -7 + + public.kern1.quoteleft1 + + public.kern2.A.ss01 + -63 + public.kern2.A2 + -67 + public.kern2.G + -20 + public.kern2.J + -47 + public.kern2.Oslash.alt + 10 + public.kern2.T + 33 + public.kern2.V + 20 + public.kern2.W + 20 + public.kern2.Y + 20 + public.kern2.Z + -3 + public.kern2.a + -37 + public.kern2.f + 17 + public.kern2.g + -43 + public.kern2.g.ss01 + -17 + public.kern2.i1 + 3 + public.kern2.j + -17 + public.kern2.m + -7 + public.kern2.o + -47 + public.kern2.s + -30 + public.kern2.t + 13 + public.kern2.u + -7 + public.kern2.w + -17 + public.kern2.x + -23 + public.kern2.y + -10 + public.kern2.z + -10 + + public.kern1.quoteright1 + + public.kern2.A.ss01 + -67 + public.kern2.A2 + -20 + public.kern2.G + -23 + public.kern2.J + -17 + public.kern2.Oslash.alt + 3 + public.kern2.S + -10 + public.kern2.T + 7 + public.kern2.U + -7 + public.kern2.W + 20 + public.kern2.Y + 3 + public.kern2.Z + -10 + public.kern2.a + -63 + public.kern2.g + -73 + public.kern2.g.ss01 + -70 + public.kern2.h + -10 + public.kern2.i1 + -7 + public.kern2.j + -13 + public.kern2.m + -30 + public.kern2.o + -83 + public.kern2.s + -57 + public.kern2.u + -30 + public.kern2.w + -27 + public.kern2.x + -47 + public.kern2.y + -30 + public.kern2.z + -47 + + public.kern1.s1 + + public.kern2.A.ss01 + 13 + public.kern2.A2 + 3 + public.kern2.G + -7 + public.kern2.Oslash.alt + -8 + public.kern2.S + -7 + public.kern2.T + -67 + public.kern2.V + -40 + public.kern2.W + -33 + public.kern2.Y + -90 + public.kern2.Z + -23 + public.kern2.comma + -3 + public.kern2.emdash + -20 + public.kern2.f + 13 + public.kern2.j + -7 + public.kern2.o + -3 + public.kern2.period + -20 + public.kern2.quotedbl + -30 + public.kern2.quoteright + -7 + public.kern2.x + -3 + + public.kern1.t.ss011 + + public.kern2.A.ss01 + 13 + public.kern2.T + -27 + public.kern2.V + -27 + public.kern2.W + -20 + public.kern2.Y + -33 + public.kern2.comma + 7 + public.kern2.o + -20 + + public.kern1.t1 + + public.kern2.G + -3 + public.kern2.J + 7 + public.kern2.T + -38 + public.kern2.V + -20 + public.kern2.W + -17 + public.kern2.Y + -28 + public.kern2.emdash + -50 + public.kern2.f + 3 + public.kern2.o + -17 + public.kern2.t + 3 + public.kern2.y + -3 + public.kern2.z + 7 + + public.kern1.u1 + + public.kern2.T + -73 + public.kern2.V + -50 + public.kern2.W + -30 + public.kern2.Y + -73 + public.kern2.j + -17 + public.kern2.quotedbl + -3 + public.kern2.quoteright + -20 + + public.kern1.uni0435.ss011 + + public.kern2.A.ss012 + 13 + public.kern2.T + -70 + public.kern2.Ucyr.ss01 + -53 + public.kern2.V + -50 + public.kern2.W + -33 + public.kern2.Y + -60 + public.kern2.w + -1 + public.kern2.x + -10 + public.kern2.y + -10 + + public.kern1.w1 + + public.kern2.A.ss01 + -7 + public.kern2.A.ss012 + -8 + public.kern2.A2 + -20 + public.kern2.J + -50 + public.kern2.Oslash.alt + -20 + public.kern2.S + -13 + public.kern2.T + -60 + public.kern2.V + -10 + public.kern2.W + -15 + public.kern2.Y + -30 + public.kern2.Z + -37 + public.kern2.a + -15 + public.kern2.comma + -40 + public.kern2.emdash + -7 + public.kern2.g + -7 + public.kern2.j + -10 + public.kern2.o + -15 + public.kern2.period + -30 + public.kern2.z + -7 + + public.kern1.x + + public.kern2.A.ss012 + 13 + public.kern2.G + -10 + public.kern2.S + -10 + public.kern2.T + -73 + public.kern2.Ucyr.ss01 + -20 + public.kern2.V + -27 + public.kern2.W + -23 + public.kern2.Y + -40 + public.kern2.a + -13 + public.kern2.emdash + -33 + public.kern2.g + -7 + public.kern2.o + -28 + public.kern2.quotedbl + -10 + public.kern2.s + -3 + + public.kern1.y1 + + public.kern2.A.ss01 + -13 + public.kern2.A.ss012 + -15 + public.kern2.A2 + -20 + public.kern2.G + -7 + public.kern2.J + -60 + public.kern2.Oslash.alt + -30 + public.kern2.S + -7 + public.kern2.T + -67 + public.kern2.Ucyr.ss01 + -2 + public.kern2.V + -20 + public.kern2.W + -22 + public.kern2.Y + -47 + public.kern2.Z + -20 + public.kern2.a + -22 + public.kern2.comma + -67 + public.kern2.decyr.ss01 + -40 + public.kern2.emdash + -20 + public.kern2.f + 7 + public.kern2.g + -17 + public.kern2.j + -10 + public.kern2.o + -20 + public.kern2.period + -80 + public.kern2.quoteright + 13 + public.kern2.t + 3 + public.kern2.z + -7 + + public.kern1.z1 + + public.kern2.A2 + 3 + public.kern2.S + -7 + public.kern2.T + -57 + public.kern2.V + -20 + public.kern2.W + -20 + public.kern2.Y + -50 + public.kern2.comma + 3 + public.kern2.f + 17 + public.kern2.j + -7 + public.kern2.o + -13 + public.kern2.quotedbl + -7 + public.kern2.quoteright + 3 + public.kern2.s + -7 + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/layercontents.plist b/sources/FixelDisplay-ExtraLight.ufo/layercontents.plist new file mode 100644 index 00000000..7a35a5cf --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/layercontents.plist @@ -0,0 +1,10 @@ + + + + + + public.default + glyphs + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/lib.plist b/sources/FixelDisplay-ExtraLight.ufo/lib.plist new file mode 100644 index 00000000..c0069150 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/lib.plist @@ -0,0 +1,1671 @@ + + + + + com.fontlab.v2.tth + + stems + + 69 + + width + 69 + horizontal + + round + + 35 + 3 + 47 + 4 + 60 + 5 + 0 + 7 + 22 + 8 + + + 74 + + width + 74 + horizontal + + round + + 19 + 2 + 35 + 3 + 47 + 4 + 60 + 5 + 72 + 6 + 0 + 7 + 20 + 8 + + + 76 + + width + 76 + horizontal + + round + + 19 + 2 + 35 + 3 + 72 + 6 + 0 + 7 + 20 + 8 + + + 80 + + width + 80 + horizontal + + round + + 29 + 3 + 47 + 4 + 60 + 5 + 72 + 6 + 0 + 7 + 20 + 8 + + + 99 + + width + 99 + horizontal + + round + + 19 + 2 + 29 + 3 + 37 + 4 + 48 + 5 + 58 + 6 + 0 + 7 + 16 + 8 + + + 74 + + width + 74 + horizontal + + round + + 19 + 2 + 35 + 3 + 47 + 4 + 60 + 5 + 72 + 6 + 0 + 7 + 20 + 8 + + + 80 + + width + 80 + horizontal + + round + + 29 + 3 + 47 + 4 + 60 + 5 + 72 + 6 + 0 + 7 + 20 + 8 + + + 93 + + width + 93 + horizontal + + round + + 19 + 2 + 29 + 3 + 37 + 4 + 48 + 5 + 58 + 6 + 0 + 7 + 16 + 8 + + + + + com.schriftgestaltung.disablesAutomaticAlignment + + com.schriftgestaltung.fontMasterID + master01 + com.schriftgestaltung.glyphOrder + + com.schriftgestaltung.master.name + regular + com.schriftgestaltung.useNiceNames + + com.schriftgestaltung.weightValue + 400 + public.postscriptNames + + A-cy + uni0410 + A-cy.ss01 + uni0410.ss01 + Be-cy + uni0411 + Che-cy + uni0427 + De-cy + uni0414 + Dze-cy + uni0405 + E-cy + uni0404 + Ef-cy + uni0424 + El-cy + uni041B + Em-cy + uni041C + Em-cy.ss01 + uni041C.ss01 + En-cy + uni041D + Er-cy + uni0420 + Ereversed-cy + uni042D + Es-cy + uni0421 + Gacute + uni01F4 + Gacute.ss01 + uni01F4.ss01 + Gcommaaccent + uni0122 + Gcommaaccent.ss01 + uni0122.ss01 + Ge-cy + uni0413 + Germandbls + uni1E9E + Gheupturn-cy + uni0490 + Ha-cy + uni0425 + Ha-cy.ss01 + uni0425.ss01 + Hardsign-cy + uni042A + I-cy + uni0406 + Ia-cy + uni042F + Ia-cy.ss01 + uni042F.ss01 + Ie-cy + uni0415 + Ii-cy + uni0418 + Iishort-cy + uni0419 + Io-cy + uni0401 + Iu-cy + uni042E + Ka-cy + uni041A + Ka-cy.ss01 + uni041A.ss01 + Kcommaaccent + uni0136 + Kcommaaccent.ss01 + uni0136.ss01 + Lcommaaccent + uni013B + Ncommaaccent + uni0145 + Ncommaaccent.ss01 + uni0145.ss01 + O-cy + uni041E + Pe-cy + uni041F + Rcommaaccent + uni0156 + Scommaaccent + uni0218 + Sha-cy + uni0428 + Shcha-cy + uni0429 + Softsign-cy + uni042C + Tcedilla + uni0162 + Tcommaaccent + uni021A + Te-cy + uni0422 + Tse-cy + uni0426 + U-cy + uni0423 + U-cy.ss01 + uni0423.ss01 + Ushort-cy + uni040E + Ushort-cy.ss01 + uni040E.ss01 + Ve-cy + uni0412 + Yeru-cy + uni042B + Yi-cy + uni0407 + Ze-cy + uni0417 + Zhe-cy + uni0416 + Zhe-cy.ss01 + uni0416.ss01 + _perc-circule + _perccircule + a-cy + uni0430 + a-cy.ss01 + uni0430.ss01 + be-cy + uni0431 + che-cy + uni0447 + commaaccentcomb + uni0326 + commaaccentcomb.salt + uni0326.salt + de-cy + uni0434 + de-cy.ss01 + uni0434.ss01 + dze-cy + uni0455 + e-cy + uni0454 + ef-cy + uni0444 + el-cy + uni043B + el-cy.ss01 + uni043B.ss01 + em-cy + uni043C + en-cy + uni043D + er-cy + uni0440 + er-cy.ss01 + uni0440.ss01 + ereversed-cy + uni044D + es-cy + uni0441 + euro + Euro + gacute + uni01F5 + gacute.ss01 + uni01F5.ss01 + gcommaaccent + uni0123 + gcommaaccent.ss01 + uni0123.ss01 + ge-cy + uni0433 + gheupturn-cy + uni0491 + guillemetleft + guillemotleft + guillemetright + guillemotright + ha-cy + uni0445 + hardsign-cy + uni044A + hardsign-cy.ss01 + uni044A.ss01 + hryvnia + uni20B4 + i-cy + uni0456 + ia-cy + uni044F + ia-cy.ss01 + uni044F.ss01 + idotless + dotlessi + ie-cy + uni0435 + ie-cy.ss01 + uni0435.ss01 + ii-cy + uni0438 + iishort-cy + uni0439 + io-cy + uni0451 + io-cy.ss01 + uni0451.ss01 + iu-cy + uni044E + jdotless + uni0237 + je-cy + uni0458 + ka-cy + uni043A + kcommaaccent + uni0137 + lcommaaccent + uni013C + lcommaaccent.ss01 + uni013C.ss01 + ncommaaccent + uni0146 + numero + uni2116 + numero.ss01 + uni2116.ss01 + o-cy + uni043E + onesuperior + uni00B9 + pe-cy + uni043F + rcommaaccent + uni0157 + scommaaccent + uni0219 + sha-cy + uni0448 + shcha-cy + uni0449 + softsign-cy + uni044C + softsign-cy.ss01 + uni044C.ss01 + tcedilla + uni0163 + tcedilla.ss01 + uni0163.ss01 + tcommaaccent + uni021B + tcommaaccent.ss01 + uni021B.ss01 + te-cy + uni0442 + te-cy.ss01 + uni0442.ss01 + threesuperior + uni00B3 + tse-cy + uni0446 + twosuperior + uni00B2 + u-cy + uni0443 + ushort-cy + uni045E + ve-cy + uni0432 + ve-cy.ss01 + uni0432.ss01 + yeru-cy + uni044B + yeru-cy.ss01 + uni044B.ss01 + yi-cy + uni0457 + ze-cy + uni0437 + zhe-cy + uni0436 + + public.skipExportGlyphs + + Oslash.bold + oslash.bold + _perc-circule + + public.glyphOrder + + .notdef + NULL + CR + space + A + Aacute + Abreve + Acircumflex + Adieresis + Agrave + Amacron + Aogonek + Aring + Atilde + AE + B + C + Cacute + Ccaron + Ccedilla + Ccircumflex + Cdotaccent + D + Eth + Dcaron + Dcroat + E + Eacute + Ebreve + Ecaron + Ecircumflex + Edieresis + Edotaccent + Egrave + Emacron + Eogonek + F + G + Gacute + Gbreve + Gcircumflex + Gcommaaccent + Gdotaccent + H + Hbar + Hcircumflex + I + IJ + Iacute + Ibreve + Icircumflex + Idieresis + Idotaccent + Igrave + Imacron + Iogonek + Itilde + J + Jcircumflex + K + Kcommaaccent + L + Lacute + Lcaron + Lcommaaccent + Ldot + Lslash + M + N + Nacute + Ncaron + Ncommaaccent + Eng + Ntilde + O + Oacute + Obreve + Ocircumflex + Odieresis + Ograve + Ohungarumlaut + Omacron + Oslash + Otilde + OE + P + Thorn + Q + R + Racute + Rcaron + Rcommaaccent + S + Sacute + Scaron + Scedilla + Scircumflex + Scommaaccent + Germandbls + T + Tbar + Tcaron + Tcedilla + Tcommaaccent + U + Uacute + Ubreve + Ucircumflex + Udieresis + Ugrave + Uhungarumlaut + Umacron + Uogonek + Uring + Utilde + V + W + Wacute + Wcircumflex + Wdieresis + Wgrave + X + Y + Yacute + Ycircumflex + Ydieresis + Z + Zacute + Zcaron + Zdotaccent + A.ss01 + Aacute.ss01 + Abreve.ss01 + Acircumflex.ss01 + Adieresis.ss01 + Agrave.ss01 + Amacron.ss01 + Aogonek.ss01 + Aring.ss01 + Atilde.ss01 + AE.ss01 + G.ss01 + Gacute.ss01 + Gbreve.ss01 + Gcircumflex.ss01 + Gcommaaccent.ss01 + Gdotaccent.ss01 + J.ss01 + Jcircumflex.ss01 + K.ss01 + Kcommaaccent.ss01 + M.ss01 + N.ss01 + Nacute.ss01 + Ncaron.ss01 + Ncommaaccent.ss01 + Eng.ss01 + Ntilde.ss01 + Q.ss01 + V.ss01 + W.ss01 + Wacute.ss01 + Wcircumflex.ss01 + Wdieresis.ss01 + Wgrave.ss01 + X.ss01 + Y.ss01 + Yacute.ss01 + Ycircumflex.ss01 + Ydieresis.ss01 + Z.ss01 + Zacute.ss01 + Zcaron.ss01 + Zdotaccent.ss01 + a + aacute + abreve + acircumflex + adieresis + agrave + amacron + aogonek + aring + atilde + ae + b + c + cacute + ccaron + ccedilla + ccircumflex + cdotaccent + d + eth + dcaron + dcroat + e + eacute + ebreve + ecaron + ecircumflex + edieresis + edotaccent + egrave + emacron + eogonek + f + g + gacute + gbreve + gcircumflex + gcommaaccent + gdotaccent + h + hbar + hcircumflex + i + idotless + iacute + ibreve + icircumflex + idieresis + igrave + ij + imacron + iogonek + itilde + j + jdotless + jcircumflex + k + kcommaaccent + kgreenlandic + l + lacute + lcaron + lcommaaccent + ldot + lslash + m + n + nacute + napostrophe + ncaron + ncommaaccent + eng + ntilde + o + oacute + obreve + ocircumflex + odieresis + ograve + ohungarumlaut + omacron + oslash + otilde + oe + p + thorn + q + r + racute + rcaron + rcommaaccent + s + sacute + scaron + scedilla + scircumflex + scommaaccent + germandbls + t + tbar + tcaron + tcedilla + tcommaaccent + u + uacute + ubreve + ucircumflex + udieresis + ugrave + uhungarumlaut + umacron + uogonek + uring + utilde + v + w + wacute + wcircumflex + wdieresis + wgrave + x + y + yacute + ycircumflex + ydieresis + z + zacute + zcaron + zdotaccent + a.ss01 + aacute.ss01 + abreve.ss01 + acircumflex.ss01 + adieresis.ss01 + agrave.ss01 + amacron.ss01 + aogonek.ss01 + aring.ss01 + atilde.ss01 + ae.ss01 + b.ss01 + d.ss01 + dcaron.ss01 + dcroat.ss01 + e.ss01 + eacute.ss01 + ebreve.ss01 + ecaron.ss01 + ecircumflex.ss01 + edieresis.ss01 + edotaccent.ss01 + egrave.ss01 + emacron.ss01 + eogonek.ss01 + f.ss01 + g.ss01 + gacute.ss01 + gbreve.ss01 + gcircumflex.ss01 + gcommaaccent.ss01 + gdotaccent.ss01 + l.ss01 + lacute.ss01 + lcaron.ss01 + lcommaaccent.ss01 + ldot.ss01 + lslash.ss01 + oe.ss01 + p.ss01 + q.ss01 + germandbls.ss01 + t.ss01 + tbar.ss01 + tcaron.ss01 + tcedilla.ss01 + tcommaaccent.ss01 + f_f + f_f_i + f_f_l + fi + fl + f_f.ss01 + f_f_i.ss01 + f_f_l.ss01 + fi.ss01 + fl.ss01 + ordfeminine + ordmasculine + A-cy + Be-cy + Ve-cy + Ge-cy + Gheupturn-cy + De-cy + Ie-cy + Io-cy + Zhe-cy + Ze-cy + Ii-cy + Iishort-cy + Ka-cy + El-cy + Em-cy + En-cy + O-cy + Pe-cy + Er-cy + Es-cy + Te-cy + U-cy + Ushort-cy + Ef-cy + Ha-cy + Che-cy + Tse-cy + Sha-cy + Shcha-cy + Softsign-cy + Hardsign-cy + Yeru-cy + Dze-cy + E-cy + Ereversed-cy + I-cy + Yi-cy + Iu-cy + Ia-cy + A-cy.ss01 + Zhe-cy.ss01 + Ka-cy.ss01 + Em-cy.ss01 + U-cy.ss01 + Ushort-cy.ss01 + Ha-cy.ss01 + Ia-cy.ss01 + a-cy + be-cy + ve-cy + ge-cy + gheupturn-cy + de-cy + ie-cy + io-cy + zhe-cy + ze-cy + ii-cy + iishort-cy + ka-cy + el-cy + em-cy + en-cy + o-cy + pe-cy + er-cy + es-cy + te-cy + u-cy + ushort-cy + ef-cy + ha-cy + che-cy + tse-cy + sha-cy + shcha-cy + softsign-cy + hardsign-cy + yeru-cy + dze-cy + e-cy + ereversed-cy + i-cy + yi-cy + je-cy + iu-cy + ia-cy + a-cy.ss01 + ve-cy.ss01 + de-cy.ss01 + ie-cy.ss01 + io-cy.ss01 + el-cy.ss01 + er-cy.ss01 + te-cy.ss01 + softsign-cy.ss01 + hardsign-cy.ss01 + yeru-cy.ss01 + ia-cy.ss01 + zero + one + two + three + four + five + six + seven + eight + nine + zero.osf + one.osf + two.osf + three.osf + four.osf + five.osf + six.osf + seven.osf + nine.osf + zero.tf + one.tf + two.tf + three.tf + four.tf + five.tf + six.tf + seven.tf + eight.tf + nine.tf + onesuperior + twosuperior + threesuperior + period + comma + colon + semicolon + ellipsis + exclam + exclamdown + question + questiondown + periodcentered + bullet + asterisk + numbersign + slash + backslash + parenleft + parenright + braceleft + braceright + bracketleft + bracketright + hyphen + endash + emdash + underscore + quotesinglbase + quotedblbase + quotedblleft + quotedblright + quoteleft + quoteright + guillemetleft + guillemetright + guilsinglleft + guilsinglright + quotedbl + quotesingle + cent + currency + dollar + euro + hryvnia + sterling + yen + yen.ss01 + plus + minus + multiply + divide + equal + greater + less + asciitilde + asciicircum + percent + perthousand + at + ampersand + paragraph + section + copyright + registered + trademark + degree + bar + brokenbar + dagger + daggerdbl + numero + estimated + numero.ss01 + commaaccentcomb + dieresis + dotaccent + grave + acute + hungarumlaut + circumflex + caron + breve + ring + tilde + macron + cedilla + ogonek + dieresis.case + dotaccent.case + grave.case + acute.case + hungarumlaut.case + circumflex.case + caron.case + breve.case + ring.case + tilde.case + macron.case + commaaccentcomb.salt + caron.salt + uniE01A + _perc-circule + eight.osf + ruble + Ljecyr + Njecyr + Jecyr + dzhecyr + Dzhecyr + ljecyr + njecyr + Tshecyr + Djecyr + tshecyr + djecyr + tenge + ljecyr.ss01 + njecyr.ss01 + dramsignarmn + gjecyr + kjecyr + neptune + florin + plusminus + fraction + onequarter + onehalf + threequarters + mu + lessequal + greaterequal + minute + second + Schwacyr + schwacyr + Gestrokecyr + gestrokecyr + Obarcyr + obarcyr + Entailcyr + entailcyr + Katailcyr + katailcyr + Ustraightstrokecyr + ustraightstrokecyr + Shhacyr + shhacyr + ustraightcyr + Ustraightcyr + partialdiff + increment + integral + summation + radical + infinity + Omega + pi + longs + Delta + product + notequal + proportional + approxequal + Schwa + eturned + Oslashacute + oslashacute + AEacute + aeacute + uni2010 + Aiecyr + aiecyr + uni1EBC + uni1EBD + Acaron + acaron + Gjecyr + Kjecyr + uniE000 + uniE000.alt + arrowleft + arrowup + arrowright + arrowdown + arrowdown.ss01 + arrowleft.ss01 + arrowright.ss01 + arrowup.ss01 + yi-cy.alt + Omegacyr + omegacyr + Yatcyr + yatcyr + Eiotifiedcyr + eiotifiedcyr + Ksicyr + ksicyr + Shwe-cy + Fitacyr + fitacyr + Koppacyr + Iegravecyr + Igravecyr + iegravecyr + igravecyr + Zhebrevecyr + zhebrevecyr + Abrevecyr + abrevecyr + Adieresiscyr + adieresiscyr + Iebrevecyr + iebrevecyr + Schwadieresiscyr + schwadieresiscyr + Zhedieresiscyr + zhedieresiscyr + Zedieresiscyr + zedieresiscyr + Imacroncyr + imacroncyr + Idieresiscyr + idieresiscyr + Odieresiscyr + odieresiscyr + Umacroncyr + umacroncyr + Udieresiscyr + udieresiscyr + Uacutedblcyr + uacutedblcyr + Dekomicyr + dekomicyr + Wecyr + wecyr + Qacyr + qacyr + Ylongdieresiscyr + ylongdieresiscyr + Chedieresiscyr + chedieresiscyr + Obardieresiscyr + obardieresiscyr + Ereverseddieresiscyr + ereverseddieresiscyr + Zhetailcyr + zhetailcyr + Tetailcyr + tetailcyr + Xatailcyr + xatailcyr + Chetailcyr + chetailcyr + Chekhakascyr + chekhakascyr + Getailcyr + getailcyr + Petailcyr + petailcyr + Eltailcyr + eltailcyr + Shhatailcyr + shhatailcyr + Palochkacyr + palochkacyr + Dzzhecyr + Yaecyr + yaecyr + Tetsecyr + tetsecyr + Engecyr + engecyr + kabashkcyr + Kabashkcyr + semisoftcyr + Semisoftcyr + Reversedzecyr + reversedzecyr + Elmiddlehookcyr + Enmiddlehookcyr + Enhookcyr + Kahookcyr + Pehookcyr + Gehookcyr + parenleft.case + parenright.case + hyphen.case + bracketleft.case + bracketright.case + braceleft.case + braceright.case + exclamdown.case + guillemetleft.case + guillemetright.case + endash.case + emdash.case + bullet.case + guilsinglleft.case + guilsinglright.case + arrowleft.case + arrowup.case + arrowright.case + arrowdown.case + arrowdown.ss01.case + arrowleft.ss01.case + arrowright.ss01.case + arrowup.ss01.case + Enhookleftcyr + enhookleftcyr + enhookcyr + gehookcyr + pehookcyr + kahookcyr + enmiddlehookcyr + elmiddlehookcyr + kastrokecyr + Kastrokecyr + Chevertcyr + chevertcyr + Kaverticalstrokecyr + kaverticalstrokecyr + Elhookcyr + elhookcyr + zetailcyr + Zetailcyr + Estailcyr + estailcyr + Haabkhcyr + koppacyr + ukcyr + Ukcyr + omegaroundcyr + Izhitsagravedblcyr + izhitsagravedblcyr + izhitsacyr + Izhitsacyr + Yusbigcyr + yusbigcyr + Psicyr + psicyr + Omegaroundcyr + Yuslittlecyr + yuslittlecyr + yuslittleiotifiedcyr + Yuslittleiotifiedcyr + Yusbigiotifiedcyr + yusbigiotifiedcyr + Omegatitlocyr + omegatitlocyr + Otcyr + otcyr + uni2DEE + uni2DEE.case + ertickcyr + Ertickcyr + Lhacyr + lhacyr + ensharptailcyr + Ensharptailcyr + emsharptailcyr + elsharptailcyr + ishortsharptailcyr + Ishortsharptailcyr + Emsharptailcyr + Elsharptailcyr + njekomicyr + Njekomicyr + ljekomicyr + tjekomicyr + djekomicyr + zjekomicyr + colon.case + questiondown.case + slash.case + semicolon.case + backslash.case + bar.case + brokenbar.case + dzjekomicyr + Cheabkhcyr + cheabkhcyr + cheabkhtailcyr + sjekomicyr + Sjekomicyr + Ljekomicyr + Tjekomicyr + Djekomicyr + kaaleutcyr + dzzhecyr + haabkhcyr + Dchecyr + dchecyr + dzeabkhcyr + Dzeabkhcyr + palatcombcyr + Cheabkhtailcyr + Dzjekomicyr + Zjekomicyr + rhacyr + Rhacyr + Kaaleutcyr + thousandscyr + titlocombcyr + pokrytiecombcyr + hundredthousandscombcyr + millionscombcyr + Gehookstrokecyr + gehookstrokecyr + Hahookcyr + hahookcyr + Hastrokecyr + uni1C80 + uni1C81 + uni1C82 + uni1C83 + uni1C84 + uni1C85 + uni1C86 + uni1C87 + Zemlya-cy + zemlya-cy + Dzelo-cy + dzelo-cy + DzeReversed-cy + dzeReversed-cy + Iota-cy + iota-cy + Djerv-cy + djerv-cy + UkMonograph-cy + ukMonograph-cy + OmegaBroad-cy + omegaBroad-cy + YerNeutral-cy + yerNeutral-cy + YeruBackYer-cy + yeruBackyer-cy + YatIotified-cy + yatIotified-cy + YuReversed-cy + yuReversed-cy + IotifiedA-cy + iotifieda-cy + YusClosedlittle-cy + yusClosedlittle-cy + YusBlended-cy + yusBlended-cy + YusiotifiedClosedLittle-cy + yusiotifiedClosedLittle-cy + Yn-cy + yn-cy + TseReversed-cy + tseReversed-cy + DeSoft-cy + deSoft-cy + ElSoft-cy + elSoft-cy + EmSoft-cy + emSoft-cy + OMonocular-cy + oMonocular-cy + OBinocular-cy + oBinocular-cy + ODoubleMonocular-cy + oDoubleMonocular-cy + omultiocular-cy + vzmetcomb-cy + tenmillionscomb-cy + hundredmillionscomb-cy + thousandmillionscomb-cy + Dwe-cy + dwe-cy + Dzwe-cy + dzwe-cy + Zhwe-cy + zhwe-cy + Cche-cy + cche-cy + Dzze-cy + dzze-cy + TeWithMiddleHook-cy + tewithmiddlehook-cy + Twe-cy + twe-cy + Tswe-cy + tswe-cy + Tsse-cy + tsse-cy + Tche-cy + tche-cy + Hwe-cy + hwe-cy + shwe-cy + DoubleO-cy + doubleo-cy + CrossedO-cy + crossedo-cy + hastrokecyr + uniF43A + A-cy.accented + E-cy.accented + Ii-cy.accented + O-cy.accented + U-cy.accented + Yeru-cy.accented + Ereversed-cy.accented + Iu-cy.accented + Ia-cy.accented + Io-cy.accented + uniF498 + uniF49A + uniF49C + uniF49E + uniF4C6 + uniF4CC + uniF4D2 + uniF4D4 + uniF4D6 + uniF4D8 + Zetailcyr.BSH + Estailcyr.CHU + uniF50E + uniF510 + uniF512 + uniF514 + uniF516 + uniF518 + uniF51A + uniF51C + uniF51E + Yeru-cymacron + uniF522 + uniF524 + uniF526 + uniF528 + uniF52A + uniF52C + uniF52E + uniF532 + uniF536 + uniF538 + Gestrokecyr.BSH + Estailcyr.BSH + uniF830 + uniF833 + uniF839 + uniF86F + uniF872 + uniF875 + uniF878 + uniF87B + uniF87E + apostrophemod + colontriangularmod + uni1C88 + uniF87F + uniF87C + uniF879 + uniF876 + uniF873 + uniF870 + uniF83A + uniF834 + uniF831 + zetailcyr.BSH + estailcyr.CHU + uniF50F + uniF511 + uniF513 + uniF515 + uniF517 + uniF519 + uniF51B + uniF51D + uniF51F + uniF521 + uniF523 + uniF525 + uniF527 + uniF529 + uniF52B + uniF52D + uniF52F + uniF533 + uniF537 + uniF539 + gestrokecyr.BSH + estailcyr.BSH + uniF499 + uniF49B + uniF49D + uniF49F + uniF4C7 + uniF4CD + uniF4D3 + uniF4D5 + uniF4D7 + uniF4D9 + a-cy.accented + e-cy.accented + ii-cy.accented + o-cy.accented + u-cy.accented + yeru-cy.accented + ereversed-cy.accented + iu-cy.accented + ia-cy.accented + io-cy.accented + uniF43B + at.case + dieresis.alt + dieresiscase.alt + e-cy.hist + omultiocular-cy.alt + iotifieda-cy.hist + be-cy.SRB + ve-cy.BGR + ge-cy.BGR + de-cy.BGR + zhe-cy.BGR + ze-cy.BGR + ii-cy.BGR + iishort-cy.BGR + ka-cy.BGR + el-cy.BGR + pe-cy.BGR + te-cy.BGR + tse-cy.BGR + sha-cy.BGR + shcha-cy.BGR + hardsign-cy.BGR + softsign-cy.BGR + iu-cy.BGR + yatcyr.BGR + eiotifiedcyr.BGR + yusbigiotifiedcyr.BGR + iotifieda-cy.BGR + De-cy.BGR + El-cy.BGR + Ef-cy.BGR + dieresisacute + uniF45D + uniF45E + uniF45F + uniF475 + uniF476 + uniF477 + uniF478 + uniF479 + Elsmallcyr + enclosingcirclecomb + ge-cy.SRB + pe-cy.SRB + te-cy.SRB + gjecyr.SRB + macron-fwd + macron-fwd.alt + macronacute.SRB + iegravecyr.SRB + igravecyr.SRB + flower + knightwhite + knightblack + floretteblack + florettewhite + floretteoutlinedpetalledblackeight + rookblack + bishopblack + leo + heartwhite + diamondwhite-misc + spadewhite + clubwhite + bishopwhite + heart + crossedswords + virgo + thousandscyr.dnom + bracketangleleft + bracketangleright + bracketangleleft.case + bracketangleright.case + + + diff --git a/sources/FixelDisplay-ExtraLight.ufo/metainfo.plist b/sources/FixelDisplay-ExtraLight.ufo/metainfo.plist new file mode 100644 index 00000000..10582b84 --- /dev/null +++ b/sources/FixelDisplay-ExtraLight.ufo/metainfo.plist @@ -0,0 +1,10 @@ + + + + + creator + com.fontlab.ufoLib + formatVersion + 3 + + diff --git a/sources/FixelDisplay-Light.ufo/features.fea b/sources/FixelDisplay-Light.ufo/features.fea new file mode 100644 index 00000000..302ade93 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/features.fea @@ -0,0 +1,573 @@ +#> classes +#/> otclasses +@ss01_def = [A-cy A AE Aacute Abreve Acircumflex Adieresis Agrave Amacron Aogonek Aring Atilde Em-cy Eng G Gacute Gbreve Gcircumflex Gcommaaccent Gdotaccent Ha-cy Ia-cy J Jcircumflex K Ka-cy Kcommaaccent M N Nacute Ncaron Ncommaaccent Ntilde Q U-cy Ushort-cy V W Wacute Wcircumflex Wdieresis Wgrave X Y Yacute Ycircumflex Ydieresis Z Zacute Zcaron Zdotaccent Zhe-cy a-cy a aacute abreve acircumflex adieresis ae agrave amacron aogonek aring arrowdown arrowdown.case arrowleft arrowleft.case arrowright arrowright.case arrowup arrowup.case atilde b d dcaron dcroat de-cy e eacute ebreve ecaron ecircumflex edieresis edotaccent egrave el-cy emacron eogonek er-cy f f_f f_f_i f_f_l fi fl g gacute gbreve gcircumflex gcommaaccent gdotaccent germandbls hardsign-cy ia-cy ie-cy io-cy l lacute lcaron lcommaaccent ldot ljecyr lslash njecyr numero oe p q softsign-cy t tbar tcaron tcedilla tcommaaccent te-cy ve-cy yen yeru-cy]; +@ss01 = [A-cy.ss01 A.ss01 AE.ss01 Aacute.ss01 Abreve.ss01 Acircumflex.ss01 Adieresis.ss01 Agrave.ss01 Amacron.ss01 Aogonek.ss01 Aring.ss01 Atilde.ss01 Em-cy.ss01 Eng.ss01 G.ss01 Gacute.ss01 Gbreve.ss01 Gcircumflex.ss01 Gcommaaccent.ss01 Gdotaccent.ss01 Ha-cy.ss01 Ia-cy.ss01 J.ss01 Jcircumflex.ss01 K.ss01 Ka-cy.ss01 Kcommaaccent.ss01 M.ss01 N.ss01 Nacute.ss01 Ncaron.ss01 Ncommaaccent.ss01 Ntilde.ss01 Q.ss01 U-cy.ss01 Ushort-cy.ss01 V.ss01 W.ss01 Wacute.ss01 Wcircumflex.ss01 Wdieresis.ss01 Wgrave.ss01 X.ss01 Y.ss01 Yacute.ss01 Ycircumflex.ss01 Ydieresis.ss01 Z.ss01 Zacute.ss01 Zcaron.ss01 Zdotaccent.ss01 Zhe-cy.ss01 a-cy.ss01 a.ss01 aacute.ss01 abreve.ss01 acircumflex.ss01 adieresis.ss01 ae.ss01 agrave.ss01 amacron.ss01 aogonek.ss01 aring.ss01 arrowdown.ss01 arrowdown.ss01.case arrowleft.ss01 arrowleft.ss01.case arrowright.ss01 arrowright.ss01.case arrowup.ss01 arrowup.ss01.case atilde.ss01 b.ss01 d.ss01 dcaron.ss01 dcroat.ss01 de-cy.ss01 e.ss01 eacute.ss01 ebreve.ss01 ecaron.ss01 ecircumflex.ss01 edieresis.ss01 edotaccent.ss01 egrave.ss01 el-cy.ss01 emacron.ss01 eogonek.ss01 er-cy.ss01 f.ss01 f_f.ss01 f_f_i.ss01 f_f_l.ss01 fi.ss01 fl.ss01 g.ss01 gacute.ss01 gbreve.ss01 gcircumflex.ss01 gcommaaccent.ss01 gdotaccent.ss01 germandbls.ss01 hardsign-cy.ss01 ia-cy.ss01 ie-cy.ss01 io-cy.ss01 l.ss01 lacute.ss01 lcaron.ss01 lcommaaccent.ss01 ldot.ss01 ljecyr.ss01 lslash.ss01 njecyr.ss01 numero.ss01 oe.ss01 p.ss01 q.ss01 softsign-cy.ss01 t.ss01 tbar.ss01 tcaron.ss01 tcedilla.ss01 tcommaaccent.ss01 te-cy.ss01 ve-cy.ss01 yen.ss01 yeru-cy.ss01]; +@case = [arrowdown.case arrowdown.ss01.case arrowleft.case arrowleft.ss01.case arrowright.case arrowright.ss01.case arrowup.case arrowup.ss01.case backslash.case bar.case braceleft.case braceright.case bracketleft.case bracketright.case brokenbar.case bullet.case colon.case emdash.case endash.case exclamdown.case guillemetleft.case guillemetright.case guilsinglleft.case guilsinglright.case hyphen.case parenleft.case parenright.case questiondown.case semicolon.case at.case bracketangleleft.case bracketangleright.case slash.case]; +@case_def = [arrowdown arrowdown.ss01 arrowleft arrowleft.ss01 arrowright arrowright.ss01 arrowup arrowup.ss01 backslash bar braceleft braceright bracketleft bracketright brokenbar bullet colon emdash endash exclamdown guillemetleft guillemetright guilsinglleft guilsinglright hyphen parenleft parenright questiondown semicolon at bracketangleleft bracketangleright slash]; +@cpsp = [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 Agrave Aacute Acircumflex Atilde Adieresis Aring AE Ccedilla Egrave Eacute Ecircumflex Edieresis Igrave Iacute Icircumflex Idieresis Eth Ntilde Ograve Oacute Ocircumflex Otilde Odieresis Oslash Ugrave Uacute Ucircumflex Udieresis Yacute Thorn Amacron Abreve Aogonek Cacute Ccircumflex Cdotaccent Ccaron Dcaron Dcroat Emacron Ebreve Edotaccent Eogonek Ecaron Gcircumflex Gbreve Gdotaccent Gcommaaccent Hcircumflex Hbar Itilde Imacron Ibreve Iogonek Idotaccent IJ Jcircumflex Kcommaaccent Lacute Lcommaaccent Lcaron Ldot Lslash Nacute Ncommaaccent Ncaron Eng Omacron Obreve Ohungarumlaut OE Racute Rcommaaccent Rcaron Sacute Scircumflex Scedilla Scaron Tcedilla Tcaron Tbar Utilde Umacron Ubreve Uring Uhungarumlaut Uogonek Wcircumflex Ycircumflex Ydieresis Zacute Zdotaccent Zcaron Schwa Acaron Gacute AEacute Oslashacute Scommaaccent Tcommaaccent Delta Omega Iegravecyr uniF43A A-cy.accented E-cy.accented Ii-cy.accented O-cy.accented U-cy.accented Yeru-cy.accented Ereversed-cy.accented Iu-cy.accented Ia-cy.accented Io-cy.accented uniF498 uniF49A uniF49C uniF49E uniF4C6 uniF4CC uniF4D2 uniF4D4 uniF4D6 uniF4D8 uniF50E uniF510 uniF512 uniF514 uniF516 uniF518 uniF51A uniF51C uniF51E Yeru-cymacron uniF522 uniF524 uniF526 uniF528 uniF52A uniF52C uniF52E uniF532 uniF536 uniF538 uniF830 uniF833 uniF839 uniF86F uniF872 uniF875 uniF878 uniF87B uniF87E Io-cy Djecyr Gjecyr E-cy Dze-cy I-cy Yi-cy Jecyr Ljecyr Njecyr Tshecyr Kjecyr Igravecyr Ushort-cy Dzhecyr A-cy Be-cy Ve-cy Ge-cy De-cy Ie-cy Zhe-cy Ze-cy Ii-cy Iishort-cy Ka-cy El-cy Em-cy En-cy O-cy Pe-cy Er-cy Es-cy Te-cy U-cy Ef-cy Ha-cy Tse-cy Che-cy Sha-cy Shcha-cy Hardsign-cy Yeru-cy Softsign-cy Ereversed-cy Iu-cy Ia-cy Omegacyr Yatcyr Eiotifiedcyr Yuslittlecyr Yuslittleiotifiedcyr Yusbigcyr Yusbigiotifiedcyr Ksicyr Psicyr Fitacyr Izhitsacyr Izhitsagravedblcyr Ukcyr Omegaroundcyr Omegatitlocyr Otcyr Koppacyr Ishortsharptailcyr Semisoftcyr Ertickcyr Gheupturn-cy Gestrokecyr Gehookcyr Zhetailcyr Zetailcyr Katailcyr Kaverticalstrokecyr Kastrokecyr Kabashkcyr Entailcyr Engecyr Pehookcyr Haabkhcyr Estailcyr Tetailcyr Ustraightcyr Ustraightstrokecyr Xatailcyr Tetsecyr Chetailcyr Chevertcyr Shhacyr Cheabkhcyr Cheabkhtailcyr Palochkacyr Zhebrevecyr Kahookcyr Elsharptailcyr Enhookcyr Ensharptailcyr Chekhakascyr Emsharptailcyr Abrevecyr Adieresiscyr Aiecyr Iebrevecyr Schwacyr Schwadieresiscyr Zhedieresiscyr Zedieresiscyr Dzeabkhcyr Imacroncyr Idieresiscyr Odieresiscyr Obarcyr Obardieresiscyr Ereverseddieresiscyr Umacroncyr Udieresiscyr Uacutedblcyr Chedieresiscyr Getailcyr Ylongdieresiscyr Gehookstrokecyr Hahookcyr Hastrokecyr Dekomicyr Djekomicyr Zjekomicyr Dzjekomicyr Ljekomicyr Njekomicyr Sjekomicyr Tjekomicyr Reversedzecyr Elhookcyr Lhacyr Rhacyr Yaecyr Qacyr Wecyr Kaaleutcyr Elmiddlehookcyr Enmiddlehookcyr Petailcyr Shhatailcyr Enhookleftcyr Dzzhecyr Dchecyr Eltailcyr Wgrave Wacute Wdieresis Germandbls uni1EBC Zemlya-cy Dzelo-cy DzeReversed-cy Iota-cy Djerv-cy UkMonograph-cy OmegaBroad-cy YerNeutral-cy YeruBackYer-cy YatIotified-cy YuReversed-cy IotifiedA-cy YusClosedlittle-cy YusBlended-cy YusiotifiedClosedLittle-cy Yn-cy TseReversed-cy DeSoft-cy ElSoft-cy EmSoft-cy OMonocular-cy OBinocular-cy ODoubleMonocular-cy Dwe-cy Dzwe-cy Zhwe-cy Cche-cy Dzze-cy TeWithMiddleHook-cy Twe-cy Tswe-cy Tsse-cy Tche-cy Hwe-cy Shwe-cy DoubleO-cy CrossedO-cy A-cy.ss01 A.ss01 AE.ss01 Aacute.ss01 Abreve.ss01 Acircumflex.ss01 Adieresis.ss01 Agrave.ss01 Amacron.ss01 Aogonek.ss01 Aring.ss01 Atilde.ss01 Em-cy.ss01 Eng.ss01 G.ss01 Gacute.ss01 Gbreve.ss01 Gcircumflex.ss01 Gcommaaccent.ss01 Gdotaccent.ss01 Ha-cy.ss01 Ia-cy.ss01 J.ss01 Jcircumflex.ss01 K.ss01 Ka-cy.ss01 Kcommaaccent.ss01 M.ss01 N.ss01 Nacute.ss01 Ncaron.ss01 Ncommaaccent.ss01 Ntilde.ss01 Q.ss01 U-cy.ss01 Ushort-cy.ss01 V.ss01 W.ss01 Wacute.ss01 Wcircumflex.ss01 Wdieresis.ss01 Wgrave.ss01 X.ss01 Y.ss01 Yacute.ss01 Ycircumflex.ss01 Ydieresis.ss01 Z.ss01 Zacute.ss01 Zcaron.ss01 Zdotaccent.ss01 Zetailcyr.BSH Gestrokecyr.BSH Estailcyr.BSH Estailcyr.CHU Zhe-cy.ss01]; +@locl_BGR = [De-cy.BGR Ef-cy.BGR El-cy.BGR de-cy.BGR eiotifiedcyr.BGR el-cy.BGR ge-cy.BGR hardsign-cy.BGR ii-cy.BGR iishort-cy.BGR iotifieda-cy.BGR iu-cy.BGR ka-cy.BGR pe-cy.BGR sha-cy.BGR shcha-cy.BGR softsign-cy.BGR te-cy.BGR tse-cy.BGR ve-cy.BGR yatcyr.BGR yusbigiotifiedcyr.BGR ze-cy.BGR zhe-cy.BGR]; +@locl_def = [De-cy Ef-cy El-cy de-cy eiotifiedcyr el-cy ge-cy hardsign-cy ii-cy iishort-cy iotifieda-cy iu-cy ka-cy pe-cy sha-cy shcha-cy softsign-cy te-cy tse-cy ve-cy yatcyr yusbigiotifiedcyr ze-cy zhe-cy]; +@locl.SRB = [be-cy.SRB iegravecyr.SRB igravecyr.SRB]; +@loclSRB_def = [be-cy iegravecyr igravecyr]; +@accent = [grave acute.case grave.case acute]; +@pics = [neptune leo virgo bishopwhite knightwhite rookblack bishopblack knightblack heartwhite diamondwhite-misc spadewhite heart clubwhite crossedswords flower floretteblack florettewhite floretteoutlinedpetalledblackeight]; +@pics_def = [A B C D E F G H I J K L M N O P Q R]; +#/< otclasses + +#/> tags +@tag.omultiocular-cy.alt = [omultiocular-cy]; +@tag.yi-cy_yi-cy.alt = [uniE000]; +#/< tags +#< classes + +# automatic +@Uppercase = [ A Aacute Abreve Acircumflex Adieresis Agrave Amacron Aogonek Aring Atilde AE B C Cacute Ccaron Ccedilla Ccircumflex Cdotaccent D Eth Dcaron Dcroat E Eacute Ebreve Ecaron Ecircumflex Edieresis Edotaccent Egrave Emacron Eogonek F G Gacute Gbreve Gcircumflex Gcommaaccent Gdotaccent H Hbar Hcircumflex I IJ Iacute Ibreve Icircumflex Idieresis Idotaccent Igrave Imacron Iogonek Itilde J Jcircumflex K Kcommaaccent L Lacute Lcaron Lcommaaccent Ldot Lslash M N Nacute Ncaron Ncommaaccent Eng Ntilde O Oacute Obreve Ocircumflex Odieresis Ograve Ohungarumlaut Omacron Oslash Otilde OE P Thorn Q R Racute Rcaron Rcommaaccent S Sacute Scaron Scedilla Scircumflex Scommaaccent Germandbls T Tbar Tcaron Tcedilla Tcommaaccent U Uacute Ubreve Ucircumflex Udieresis Ugrave Uhungarumlaut Umacron Uogonek Uring Utilde V W Wacute Wcircumflex Wdieresis Wgrave X Y Yacute Ycircumflex Ydieresis Z Zacute Zcaron Zdotaccent A.ss01 Aacute.ss01 Abreve.ss01 Acircumflex.ss01 Adieresis.ss01 Agrave.ss01 Amacron.ss01 Aogonek.ss01 Aring.ss01 Atilde.ss01 AE.ss01 G.ss01 Gacute.ss01 Gbreve.ss01 Gcircumflex.ss01 Gcommaaccent.ss01 Gdotaccent.ss01 J.ss01 Jcircumflex.ss01 K.ss01 Kcommaaccent.ss01 M.ss01 N.ss01 Nacute.ss01 Ncaron.ss01 Ncommaaccent.ss01 Eng.ss01 Ntilde.ss01 Q.ss01 V.ss01 W.ss01 Wacute.ss01 Wcircumflex.ss01 Wdieresis.ss01 Wgrave.ss01 X.ss01 Y.ss01 Yacute.ss01 Ycircumflex.ss01 Ydieresis.ss01 Z.ss01 Zacute.ss01 Zcaron.ss01 Zdotaccent.ss01 A-cy Be-cy Ve-cy Ge-cy Gheupturn-cy De-cy Ie-cy Io-cy Zhe-cy Ze-cy Ii-cy Iishort-cy Ka-cy El-cy Em-cy En-cy O-cy Pe-cy Er-cy Es-cy Te-cy U-cy Ushort-cy Ef-cy Ha-cy Che-cy Tse-cy Sha-cy Shcha-cy Softsign-cy Hardsign-cy Yeru-cy Dze-cy E-cy Ereversed-cy I-cy Yi-cy Iu-cy Ia-cy A-cy.ss01 Zhe-cy.ss01 Ka-cy.ss01 Em-cy.ss01 U-cy.ss01 Ushort-cy.ss01 Ha-cy.ss01 Ia-cy.ss01 ]; + +# Prefix: Languagesystems +# automatic +languagesystem DFLT dflt; + +languagesystem latn dflt; +languagesystem latn ROM; +languagesystem latn MOL; +languagesystem latn CAT; +languagesystem cyrl dflt; +languagesystem cyrl BGR; +languagesystem cyrl BSH; +languagesystem cyrl CHU; +languagesystem cyrl SRB; +languagesystem cyrl MKD; + +lookup liga_accent { + sub @accent by [grave grave grave grave]; +} liga_accent; +feature aalt { +# Access All Alternates + +#> feature + feature locl; + feature sups; + feature case; + feature lnum; + feature pnum; + feature tnum; + feature onum; + feature salt; + feature ss01; + feature hist; +#< feature +} aalt; +feature ccmp { +# automatic +lookup ccmp_Other_1 { + @Markscomb = [dieresis dotaccent grave acute hungarumlaut circumflex caron breve ring tilde macron]; + @MarkscombCase = [dieresis.case dotaccent.case grave.case acute.case hungarumlaut.case circumflex.case caron.case breve.case ring.case tilde.case macron.case]; + sub @Markscomb @Markscomb' by @MarkscombCase; + sub @cpsp @Markscomb' by @MarkscombCase; +} ccmp_Other_1; + +lookup ccmp_Other_2 { + sub @Markscomb' @MarkscombCase by @MarkscombCase; + sub @MarkscombCase @Markscomb' by @MarkscombCase; +} ccmp_Other_2; +} ccmp; + +feature locl { +# automatic + +script latn; + language ROM; + language MOL; + sub Scedilla by Scommaaccent; + sub scedilla by scommaaccent; + sub Tcedilla by Tcommaaccent; + sub tcedilla by tcommaaccent; + +script latn; + language CAT; + sub l' periodcentered' l by ldot; + sub L' periodcentered' L by Ldot; + +script cyrl; # Cyrillic + language SRB ; # Serbian + + lookup locl_SRB_MCD { + # GSUB lookup 20, type 11 (Single) + sub @loclSRB_def by @locl.SRB; + } locl_SRB_MCD; + + language MKD ; # Serbian + lookup locl_SRB_MCD; + + language BSH ; # Bashkir + sub [Gestrokecyr gestrokecyr Zetailcyr zetailcyr] by [Gestrokecyr.BSH gestrokecyr.BSH Zetailcyr.BSH zetailcyr.BSH]; + sub [Estailcyr estailcyr] by [Estailcyr.BSH estailcyr.BSH]; + + language CHU ; # Chuvash + sub [Estailcyr estailcyr] by [Estailcyr.CHU estailcyr.CHU]; + + language BGR ; # Bulgarian + sub @locl_def by @locl_BGR; + +} locl; + +feature sups { +# Superscript + +#> feature + sub one by onesuperior; + sub three by threesuperior; + sub two by twosuperior; +#< feature +} sups; +feature ordn { +# Ordinals + +#> feature + sub [zero one two three four five six seven eight nine] [A a]' by ordfeminine; + sub [zero one two three four five six seven eight nine] [O o]' by ordmasculine; + sub N o period by numero; +#< feature +} ordn; +feature case { +# Case Sensitive Forms + +#> feature + + sub @case_def by @case; + +#< feature +} case; +feature liga { +# Standard Ligatures + +#> feature +sub f f i by f_f_i; +sub f f l by f_f_l; +sub f f by f_f; +sub f i by fi; +sub f l by fl; +sub yi-cy yi-cy by uniE000; +sub hyphen greater by arrowright; +sub less hyphen by arrowleft; +sub backslash bar slash by arrowdown; +sub slash bar backslash by arrowup; + + lookup accent_2 { + sub E-cy @accent' lookup liga_accent; + sub I-cy @accent' lookup liga_accent; + sub Yi-cy @accent' lookup liga_accent; + sub A-cy @accent' lookup liga_accent; + sub Ie-cy @accent' lookup liga_accent; + sub Ii-cy @accent' lookup liga_accent; + sub O-cy @accent' lookup liga_accent; + sub U-cy @accent' lookup liga_accent; + sub Yeru-cy @accent' lookup liga_accent; + sub Ereversed-cy @accent' lookup liga_accent; + sub Iu-cy @accent' lookup liga_accent; + sub Ia-cy @accent' lookup liga_accent; + sub Io-cy @accent' lookup liga_accent; + sub Yatcyr @accent' lookup liga_accent; + + sub e-cy @accent' lookup liga_accent; + sub i-cy @accent' lookup liga_accent; + sub yi-cy @accent' lookup liga_accent; + sub a-cy @accent' lookup liga_accent; + sub ie-cy @accent' lookup liga_accent; + sub ii-cy @accent' lookup liga_accent; + sub o-cy @accent' lookup liga_accent; + sub u-cy @accent' lookup liga_accent; + sub yeru-cy @accent' lookup liga_accent; + sub ereversed-cy @accent' lookup liga_accent; + sub iu-cy @accent' lookup liga_accent; + sub ia-cy @accent' lookup liga_accent; + sub io-cy @accent' lookup liga_accent; + sub yatcyr @accent' lookup liga_accent; + } accent_2; + + lookup accent_3 { + sub E-cy grave by uniF45D; + sub I-cy grave by uniF45E; + sub Yi-cy grave by uniF45F; + sub A-cy grave by A-cy.accented; + sub Ie-cy grave by E-cy.accented; + sub Ii-cy grave by Ii-cy.accented; + sub O-cy grave by O-cy.accented; + sub U-cy grave by U-cy.accented; + sub Yeru-cy grave by Yeru-cy.accented; + sub Ereversed-cy grave by Ereversed-cy.accented; + sub Iu-cy grave by Iu-cy.accented; + sub Ia-cy grave by Ia-cy.accented; + sub Io-cy grave by Io-cy.accented; + sub Yatcyr grave by uniF478; + + sub e-cy grave by uniF475; + sub i-cy grave by uniF476; + sub yi-cy grave by uniF477; + sub a-cy grave by a-cy.accented; + sub ie-cy grave by e-cy.accented; + sub ii-cy grave by ii-cy.accented; + sub o-cy grave by o-cy.accented; + sub u-cy grave by u-cy.accented; + sub yeru-cy grave by yeru-cy.accented; + sub ereversed-cy grave by ereversed-cy.accented; + sub iu-cy grave by iu-cy.accented; + sub ia-cy grave by ia-cy.accented; + sub io-cy grave by io-cy.accented; + sub yatcyr grave by uniF479; + } accent_3; + +#< feature +} liga; +feature dlig { +# Discretionary Ligatures + +#> feature + +sub M a c P a w l o g o by uniE01A; +sub M P a w l o g o by uniE01A; +sub M P l o g o by uniE01A; +sub M A C P A W L O G O by uniE01A; +sub m a c p a w l o g o by uniE01A; +sub t r i d e n t by neptune; +sub t r y z u b by neptune; +sub u k r a i n e s i g n by neptune; +sub T R I D E N T by neptune; +sub T R Y Z U B by neptune; +sub U k r a i n e S i g n by neptune; +sub T r y z u b by neptune; +sub T r i d e n t by neptune; +sub Te-cy Er-cy Ii-cy Ze-cy U-cy Be-cy by neptune; + +#< feature +} dlig; +feature lnum { +# Lining Figures + +#> feature + sub eight.osf by eight.tf; + sub eight by eight.tf; + sub five.osf by five.tf; + sub five by five.tf; + sub four.osf by four.tf; + sub four by four.tf; + sub nine.osf by nine.tf; + sub nine by nine.tf; + sub one.osf by one.tf; + sub one by one.tf; + sub seven.osf by seven.tf; + sub seven by seven.tf; + sub six.osf by six.tf; + sub six by six.tf; + sub three.osf by three.tf; + sub three by three.tf; + sub two.osf by two.tf; + sub two by two.tf; + sub zero.osf by zero.tf; + sub zero by zero.tf; +#< feature +} lnum; +feature pnum { +# Proportional Figures + +#> feature + sub eight.tf by eight.osf; + sub eight by eight.osf; + sub five.tf by five.osf; + sub five by five.osf; + sub four.tf by four.osf; + sub four by four.osf; + sub nine.tf by nine.osf; + sub nine by nine.osf; + sub one.tf by one.osf; + sub one by one.osf; + sub seven.tf by seven.osf; + sub seven by seven.osf; + sub six.tf by six.osf; + sub six by six.osf; + sub three.tf by three.osf; + sub three by three.osf; + sub two.tf by two.osf; + sub two by two.osf; + sub zero.tf by zero.osf; + sub zero by zero.osf; +#< feature +} pnum; +feature tnum { +# Tabular Figures + +#> feature + sub eight by eight.tf; + sub eight.osf by eight.tf; + sub five by five.tf; + sub five.osf by five.tf; + sub four by four.tf; + sub four.osf by four.tf; + sub nine by nine.tf; + sub nine.osf by nine.tf; + sub one by one.tf; + sub one.osf by one.tf; + sub seven by seven.tf; + sub seven.osf by seven.tf; + sub six by six.tf; + sub six.osf by six.tf; + sub three by three.tf; + sub three.osf by three.tf; + sub two by two.tf; + sub two.osf by two.tf; + sub zero by zero.tf; + sub zero.osf by zero.tf; +#< feature +} tnum; +feature onum { +# Oldstyle Figures + +#> feature + sub eight by eight.osf; + sub eight.tf by eight.osf; + sub five by five.osf; + sub five.tf by five.osf; + sub four by four.osf; + sub four.tf by four.osf; + sub nine by nine.osf; + sub nine.tf by nine.osf; + sub one by one.osf; + sub one.tf by one.osf; + sub seven by seven.osf; + sub seven.tf by seven.osf; + sub six by six.osf; + sub six.tf by six.osf; + sub three by three.osf; + sub three.tf by three.osf; + sub two by two.osf; + sub two.tf by two.osf; + sub zero by zero.osf; + sub zero.tf by zero.osf; +#< feature +} onum; +feature salt { +# Stylistic Alternates + +#> feature + sub A from [A.ss01]; + sub A-cy from [A-cy.ss01]; + sub AE from [AE.ss01]; + sub Aacute from [Aacute.ss01]; + sub Abreve from [Abreve.ss01]; + sub Acircumflex from [Acircumflex.ss01]; + sub Adieresis from [Adieresis.ss01]; + sub Agrave from [Agrave.ss01]; + sub Amacron from [Amacron.ss01]; + sub Aogonek from [Aogonek.ss01]; + sub Aring from [Aring.ss01]; + sub Atilde from [Atilde.ss01]; + sub Em-cy from [Em-cy.ss01]; + sub Eng from [Eng.ss01]; + sub G from [G.ss01]; + sub Gacute from [Gacute.ss01]; + sub Gbreve from [Gbreve.ss01]; + sub Gcircumflex from [Gcircumflex.ss01]; + sub Gcommaaccent from [Gcommaaccent.ss01]; + sub Gdotaccent from [Gdotaccent.ss01]; + sub Ha-cy from [Ha-cy.ss01]; + sub Ia-cy from [Ia-cy.ss01]; + sub J from [J.ss01]; + sub Jcircumflex from [Jcircumflex.ss01]; + sub K from [K.ss01]; + sub Ka-cy from [Ka-cy.ss01]; + sub Kcommaaccent from [Kcommaaccent.ss01]; + sub M from [M.ss01]; + sub N from [N.ss01]; + sub Nacute from [Nacute.ss01]; + sub Ncaron from [Ncaron.ss01]; + sub Ncommaaccent from [Ncommaaccent.ss01]; + sub Ntilde from [Ntilde.ss01]; + sub Q from [Q.ss01]; + sub U-cy from [U-cy.ss01]; + sub Ushort-cy from [Ushort-cy.ss01]; + sub V from [V.ss01]; + sub W from [W.ss01]; + sub Wacute from [Wacute.ss01]; + sub Wcircumflex from [Wcircumflex.ss01]; + sub Wdieresis from [Wdieresis.ss01]; + sub Wgrave from [Wgrave.ss01]; + sub X from [X.ss01]; + sub Y from [Y.ss01]; + sub Yacute from [Yacute.ss01]; + sub Ycircumflex from [Ycircumflex.ss01]; + sub Ydieresis from [Ydieresis.ss01]; + sub Z from [Z.ss01]; + sub Zacute from [Zacute.ss01]; + sub Zcaron from [Zcaron.ss01]; + sub Zdotaccent from [Zdotaccent.ss01]; + sub Zhe-cy from [Zhe-cy.ss01]; + sub a from [a.ss01]; + sub a-cy from [a-cy.ss01]; + sub aacute from [aacute.ss01]; + sub abreve from [abreve.ss01]; + sub acircumflex from [acircumflex.ss01]; + sub adieresis from [adieresis.ss01]; + sub ae from [ae.ss01]; + sub agrave from [agrave.ss01]; + sub amacron from [amacron.ss01]; + sub aogonek from [aogonek.ss01]; + sub aring from [aring.ss01]; + sub arrowdown from [arrowdown.ss01]; + sub arrowleft from [arrowleft.ss01]; + sub arrowright from [arrowright.ss01]; + sub arrowup from [arrowup.ss01]; + sub atilde from [atilde.ss01]; + sub b from [b.ss01]; + sub caron from [caron.salt]; + sub commaaccentcomb from [commaaccentcomb.salt]; + sub d from [d.ss01]; + sub dcaron from [dcaron.ss01]; + sub dcroat from [dcroat.ss01]; + sub de-cy from [de-cy.ss01]; + sub e from [e.ss01]; + sub eacute from [eacute.ss01]; + sub ebreve from [ebreve.ss01]; + sub ecaron from [ecaron.ss01]; + sub ecircumflex from [ecircumflex.ss01]; + sub edieresis from [edieresis.ss01]; + sub edotaccent from [edotaccent.ss01]; + sub egrave from [egrave.ss01]; + sub el-cy from [el-cy.ss01]; + sub emacron from [emacron.ss01]; + sub eogonek from [eogonek.ss01]; + sub er-cy from [er-cy.ss01]; + sub f from [f.ss01]; + sub f_f from [f_f.ss01]; + sub f_f_i from [f_f_i.ss01]; + sub f_f_l from [f_f_l.ss01]; + sub fi from [fi.ss01]; + sub fl from [fl.ss01]; + sub g from [g.ss01]; + sub gacute from [gacute.ss01]; + sub gbreve from [gbreve.ss01]; + sub gcircumflex from [gcircumflex.ss01]; + sub gcommaaccent from [gcommaaccent.ss01]; + sub gdotaccent from [gdotaccent.ss01]; + sub germandbls from [germandbls.ss01]; + sub hardsign-cy from [hardsign-cy.ss01]; + sub ia-cy from [ia-cy.ss01]; + sub ie-cy from [ie-cy.ss01]; + sub io-cy from [io-cy.ss01]; + sub l from [l.ss01]; + sub lacute from [lacute.ss01]; + sub lcaron from [lcaron.ss01]; + sub lcommaaccent from [lcommaaccent.ss01]; + sub ldot from [ldot.ss01]; + sub ljecyr from [ljecyr.ss01]; + sub lslash from [lslash.ss01]; + sub njecyr from [njecyr.ss01]; + sub numero from [numero.ss01]; + sub oe from [oe.ss01]; + sub p from [p.ss01]; + sub q from [q.ss01]; + sub softsign-cy from [softsign-cy.ss01]; + sub t from [t.ss01]; + sub tbar from [tbar.ss01]; + sub tcaron from [tcaron.ss01]; + sub tcedilla from [tcedilla.ss01]; + sub tcommaaccent from [tcommaaccent.ss01]; + sub te-cy from [te-cy.ss01]; + sub uniE000 from [uniE000.alt]; + sub ve-cy from [ve-cy.ss01]; + sub yen from [yen.ss01]; + sub yeru-cy from [yeru-cy.ss01]; +#< feature +} salt; +feature ss03 { +# Stylistic Set 01–20 + +#> feature + featureNames { + name "Bulgarian forms"; + name 1 "Bulgarian forms"; + }; + + sub @locl_def by @locl_BGR; + +#< feature +} ss03; +feature ss04 { +# Stylistic Set 01–20 + +#> feature + featureNames { + name "Serbian/Macedonian forms"; + name 1 "Serbian/Macedonian forms"; + }; + + sub @loclSRB_def by @locl.SRB; + +#< feature +} ss04; +feature ss01 { +# Stylistic Set 01–20 + +#> feature + + featureNames { + name "Humanistic forms"; + name 1 "Humanistic forms"; + }; + + sub @ss01_def by @ss01; + +#< feature +} ss01; +feature ss05 { +# Stylistic Set 01–20 + +#> feature + + featureNames { + name "Ukrainian pictograms"; + name 1 "Ukrainian pictograms"; + }; + + sub @pics_def by @pics; + +#< feature +} ss05; +feature hist { +# Historical Forms + +#> feature + sub e-cy by e-cy.hist; + sub s by longs; +#< feature +} hist; +feature frac { +# Fractions + +#> feature +lookup frac_precomposed { + + sub one slash four by onequarter; + sub one slash two by onehalf; + sub three slash four by threequarters; + sub one fraction four by onequarter; + sub one fraction two by onehalf; + sub three fraction four by threequarters; +} frac_precomposed; +#< feature +} frac; +feature cpsp { +# Capital Spacing + +#> feature + + pos @cpsp <5 0 10 0>; + +#< feature +} cpsp; +feature dnom { +# Denominator + +#> feature + sub thousandscyr by thousandscyr.dnom; +#< feature +} dnom; diff --git a/sources/FixelDisplay-Light.ufo/fontinfo.plist b/sources/FixelDisplay-Light.ufo/fontinfo.plist new file mode 100644 index 00000000..d8c784c1 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/fontinfo.plist @@ -0,0 +1,207 @@ + + + + + ascender + 720 + capHeight + 700 + descender + -200 + familyName + Fixel Display + guidelines + + + angle + 0 + name + m + x + 0 + y + 209.333 + + + angle + 0 + name + m + x + 0 + y + 189 + + + italicAngle + 0 + openTypeGaspRangeRecords + + + rangeGaspBehavior + + 0 + 1 + 2 + 3 + + rangeMaxPPEM + 65535 + + + openTypeHeadCreated + 2023/09/05 09:25:35 + openTypeHeadFlags + + + openTypeHheaAscender + 720 + openTypeHheaCaretOffset + -0 + openTypeHheaDescender + -190 + openTypeHheaLineGap + 100 + openTypeNameDesigner + AlfaBravo + openTypeNameDesignerURL + https://alfabravo.design/ + openTypeNameManufacturer + Kyrylo Tkachov, Marchela Mozhyna, Serhii Makarenko, Maria Weinstein, Zakhar Kryvoshyya + + openTypeNameManufacturerURL + https://macpaw.com/ + openTypeNamePreferredFamilyName + Fixel Display + openTypeNamePreferredSubfamilyName + Light + openTypeNameVersion + Version 1.200 + openTypeOS2CodePageRanges + + 0 + 1 + 2 + 4 + 7 + 29 + + openTypeOS2Panose + + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + + openTypeOS2Selection + + + openTypeOS2StrikeoutPosition + 300 + openTypeOS2StrikeoutSize + 50 + openTypeOS2SubscriptXOffset + -0 + openTypeOS2SubscriptXSize + 650 + openTypeOS2SubscriptYOffset + 75 + openTypeOS2SubscriptYSize + 600 + openTypeOS2SuperscriptXOffset + -0 + openTypeOS2SuperscriptXSize + 650 + openTypeOS2SuperscriptYOffset + 350 + openTypeOS2SuperscriptYSize + 600 + openTypeOS2Type + + 2 + + openTypeOS2TypoAscender + 720 + openTypeOS2TypoDescender + -200 + openTypeOS2TypoLineGap + 290 + openTypeOS2UnicodeRanges + + 0 + 1 + 2 + 9 + 31 + 33 + 60 + + openTypeOS2WeightClass + 300 + openTypeOS2WidthClass + 5 + openTypeOS2WinAscent + 750 + openTypeOS2WinDescent + 250 + postscriptBlueFuzz + 1 + postscriptBlueScale + 0.039625 + postscriptBlueShift + 7 + postscriptBlueValues + + -20 + 0 + + postscriptFontName + FixelDisplay-Light + postscriptForceBold + + postscriptFullName + Fixel Display Light + postscriptIsFixedPitch + + postscriptStemSnapH + + 69 + 74 + 76 + 80 + 99 + + postscriptStemSnapV + + 74 + 80 + 93 + + postscriptUnderlinePosition + -100 + postscriptUnderlineThickness + 50 + postscriptWeightName + Light + styleMapFamilyName + Fixel Display Light + styleMapStyleName + regular + styleName + Light + unitsPerEm + 1000 + versionMajor + 1 + versionMinor + 200 + xHeight + 520 + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/A_-cy.accented.glif b/sources/FixelDisplay-Light.ufo/glyphs/A_-cy.accented.glif new file mode 100644 index 00000000..dc134ca1 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/A_-cy.accented.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+acute.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/A_-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/A_-cy.glif new file mode 100644 index 00000000..bc8e14f3 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/A_-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/A_-cy.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/A_-cy.ss01.glif new file mode 100644 index 00000000..13056511 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/A_-cy.ss01.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + com.fontlab.recipe + A + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/A_.glif b/sources/FixelDisplay-Light.ufo/glyphs/A_.glif new file mode 100644 index 00000000..259da42d --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/A_.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/A_.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/A_.ss01.glif new file mode 100644 index 00000000..f023ffeb --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/A_.ss01.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/A_E_.glif b/sources/FixelDisplay-Light.ufo/glyphs/A_E_.glif new file mode 100644 index 00000000..773c76cd --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/A_E_.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + A + com.fontlab.metricsRight + E + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/A_E_.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/A_E_.ss01.glif new file mode 100644 index 00000000..f3b93b37 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/A_E_.ss01.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + A.ss01 + com.fontlab.metricsRight + E + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/A_E_acute.glif b/sources/FixelDisplay-Light.ufo/glyphs/A_E_acute.glif new file mode 100644 index 00000000..9bcc3bba --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/A_E_acute.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + AE+acute.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/A_acute.glif b/sources/FixelDisplay-Light.ufo/glyphs/A_acute.glif new file mode 100644 index 00000000..1d10ce42 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/A_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+acute.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/A_acute.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/A_acute.ss01.glif new file mode 100644 index 00000000..0b55b4ed --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/A_acute.ss01.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + A.ss01+acute.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/A_breve.glif b/sources/FixelDisplay-Light.ufo/glyphs/A_breve.glif new file mode 100644 index 00000000..127fcc5a --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/A_breve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+breve.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/A_breve.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/A_breve.ss01.glif new file mode 100644 index 00000000..7f07f168 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/A_breve.ss01.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + A.ss01+breve.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/A_brevecyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/A_brevecyr.glif new file mode 100644 index 00000000..bef6671c --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/A_brevecyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+breve.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/A_caron.glif b/sources/FixelDisplay-Light.ufo/glyphs/A_caron.glif new file mode 100644 index 00000000..ec27e69b --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/A_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+caron.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/A_circumflex.glif b/sources/FixelDisplay-Light.ufo/glyphs/A_circumflex.glif new file mode 100644 index 00000000..17bcc6ac --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/A_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+circumflex.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/A_circumflex.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/A_circumflex.ss01.glif new file mode 100644 index 00000000..b739cde1 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/A_circumflex.ss01.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + A.ss01+circumflex.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/A_dieresis.glif b/sources/FixelDisplay-Light.ufo/glyphs/A_dieresis.glif new file mode 100644 index 00000000..75285e4d --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/A_dieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+dieresis.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/A_dieresis.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/A_dieresis.ss01.glif new file mode 100644 index 00000000..a6d649fc --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/A_dieresis.ss01.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + A.ss01+dieresis.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/A_dieresiscyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/A_dieresiscyr.glif new file mode 100644 index 00000000..1c01538e --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/A_dieresiscyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/A_grave.glif b/sources/FixelDisplay-Light.ufo/glyphs/A_grave.glif new file mode 100644 index 00000000..b3b569e8 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/A_grave.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+grave.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/A_grave.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/A_grave.ss01.glif new file mode 100644 index 00000000..d55e19aa --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/A_grave.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A.ss01+grave.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/A_iecyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/A_iecyr.glif new file mode 100644 index 00000000..af4d010f --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/A_iecyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + AE + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/A_macron.glif b/sources/FixelDisplay-Light.ufo/glyphs/A_macron.glif new file mode 100644 index 00000000..08da00ba --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/A_macron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+macron.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/A_macron.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/A_macron.ss01.glif new file mode 100644 index 00000000..a12952d7 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/A_macron.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A.ss01+macron.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/A_ogonek.glif b/sources/FixelDisplay-Light.ufo/glyphs/A_ogonek.glif new file mode 100644 index 00000000..61413036 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/A_ogonek.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+ogonek + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/A_ogonek.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/A_ogonek.ss01.glif new file mode 100644 index 00000000..94f97209 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/A_ogonek.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A.ss01+ogonek + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/A_ring.glif b/sources/FixelDisplay-Light.ufo/glyphs/A_ring.glif new file mode 100644 index 00000000..d5e50003 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/A_ring.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+ring.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/A_ring.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/A_ring.ss01.glif new file mode 100644 index 00000000..a7b77430 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/A_ring.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A.ss01+ring.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/A_tilde.glif b/sources/FixelDisplay-Light.ufo/glyphs/A_tilde.glif new file mode 100644 index 00000000..a19ac4f2 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/A_tilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+tilde.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/A_tilde.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/A_tilde.ss01.glif new file mode 100644 index 00000000..363f14ff --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/A_tilde.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A.ss01+tilde.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/B_.glif b/sources/FixelDisplay-Light.ufo/glyphs/B_.glif new file mode 100644 index 00000000..25d2bfec --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/B_.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/B_e-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/B_e-cy.glif new file mode 100644 index 00000000..131920af --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/B_e-cy.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + B-10 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/C_.glif b/sources/FixelDisplay-Light.ufo/glyphs/C_.glif new file mode 100644 index 00000000..b91806cd --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/C_.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/C_R_.glif b/sources/FixelDisplay-Light.ufo/glyphs/C_R_.glif new file mode 100644 index 00000000..a38a285e --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/C_R_.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/C_acute.glif b/sources/FixelDisplay-Light.ufo/glyphs/C_acute.glif new file mode 100644 index 00000000..48222d28 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/C_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+acute.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/C_caron.glif b/sources/FixelDisplay-Light.ufo/glyphs/C_caron.glif new file mode 100644 index 00000000..d35f68a2 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/C_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+caron.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/C_cedilla.glif b/sources/FixelDisplay-Light.ufo/glyphs/C_cedilla.glif new file mode 100644 index 00000000..bf340ffb --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/C_cedilla.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+cedilla + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/C_che-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/C_che-cy.glif new file mode 100644 index 00000000..7705713a --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/C_che-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ч + com.fontlab.metricsRight + Ч + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/C_circumflex.glif b/sources/FixelDisplay-Light.ufo/glyphs/C_circumflex.glif new file mode 100644 index 00000000..ee60e49e --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/C_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+circumflex.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/C_dotaccent.glif b/sources/FixelDisplay-Light.ufo/glyphs/C_dotaccent.glif new file mode 100644 index 00000000..2d38e07a --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/C_dotaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+dotaccent.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/C_he-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/C_he-cy.glif new file mode 100644 index 00000000..3133cc65 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/C_he-cy.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/C_heabkhcyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/C_heabkhcyr.glif new file mode 100644 index 00000000..c6a591e8 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/C_heabkhcyr.glif @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + |Schwa + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/C_heabkhtailcyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/C_heabkhtailcyr.glif new file mode 100644 index 00000000..93a7bbcf --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/C_heabkhtailcyr.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Cheabkhcyr + com.fontlab.metricsRight + Cheabkhcyr + com.fontlab.recipe + Cheabkhcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/C_hedieresiscyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/C_hedieresiscyr.glif new file mode 100644 index 00000000..6bbeaa80 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/C_hedieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Che-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/C_hekhakascyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/C_hekhakascyr.glif new file mode 100644 index 00000000..78655008 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/C_hekhakascyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ч + com.fontlab.metricsRight + H + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/C_hetailcyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/C_hetailcyr.glif new file mode 100644 index 00000000..85e899db --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/C_hetailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ч + com.fontlab.metricsRight + Entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/C_hevertcyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/C_hevertcyr.glif new file mode 100644 index 00000000..9d390bd8 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/C_hevertcyr.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ч + com.fontlab.metricsRight + Н + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/C_rossedO_-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/C_rossedO_-cy.glif new file mode 100644 index 00000000..2892cd78 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/C_rossedO_-cy.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + com.fontlab.recipe + O + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/D_.glif b/sources/FixelDisplay-Light.ufo/glyphs/D_.glif new file mode 100644 index 00000000..74709384 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/D_.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/D_caron.glif b/sources/FixelDisplay-Light.ufo/glyphs/D_caron.glif new file mode 100644 index 00000000..81d58b3a --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/D_caron.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + D+caron.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/D_checyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/D_checyr.glif new file mode 100644 index 00000000..674e6f57 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/D_checyr.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Д+10 + com.fontlab.metricsRight + Д + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/D_croat.glif b/sources/FixelDisplay-Light.ufo/glyphs/D_croat.glif new file mode 100644 index 00000000..879976a0 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/D_croat.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + D + com.fontlab.recipe + Eth + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/D_e-cy.B_G_R_.glif b/sources/FixelDisplay-Light.ufo/glyphs/D_e-cy.B_G_R_.glif new file mode 100644 index 00000000..bbee1159 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/D_e-cy.B_G_R_.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + l() + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/D_e-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/D_e-cy.glif new file mode 100644 index 00000000..c7a39ce5 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/D_e-cy.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/D_eS_oft-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/D_eS_oft-cy.glif new file mode 100644 index 00000000..2b33a5c6 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/D_eS_oft-cy.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Д + com.fontlab.metricsRight + Ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/D_ekomicyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/D_ekomicyr.glif new file mode 100644 index 00000000..9d7dec87 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/D_ekomicyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.metricsLeft + |P + com.fontlab.metricsRight + H + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/D_elta.glif b/sources/FixelDisplay-Light.ufo/glyphs/D_elta.glif new file mode 100644 index 00000000..408b67f5 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/D_elta.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + A + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/D_jecyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/D_jecyr.glif new file mode 100644 index 00000000..7feae9e8 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/D_jecyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/D_jekomicyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/D_jekomicyr.glif new file mode 100644 index 00000000..948b0b8e --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/D_jekomicyr.glif @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Dekomicyr + com.fontlab.metricsRight + Njekomicyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/D_jerv-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/D_jerv-cy.glif new file mode 100644 index 00000000..6b738906 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/D_jerv-cy.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + r() + com.fontlab.metricsRight + O + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/D_oubleO_-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/D_oubleO_-cy.glif new file mode 100644 index 00000000..33885099 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/D_oubleO_-cy.glif @@ -0,0 +1,91 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + com.fontlab.recipe + O_O + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/D_we-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/D_we-cy.glif new file mode 100644 index 00000000..32f2725c --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/D_we-cy.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Д + com.fontlab.metricsRight + Д + com.fontlab.recipe + Д + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/D_ze-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/D_ze-cy.glif new file mode 100644 index 00000000..6a6ccda4 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/D_ze-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + S + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/D_zeR_eversed-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/D_zeR_eversed-cy.glif new file mode 100644 index 00000000..77c97b61 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/D_zeR_eversed-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + S + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/D_zeabkhcyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/D_zeabkhcyr.glif new file mode 100644 index 00000000..3b553323 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/D_zeabkhcyr.glif @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + З-10 + com.fontlab.metricsRight + З-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/D_zelo-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/D_zelo-cy.glif new file mode 100644 index 00000000..5d567ab0 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/D_zelo-cy.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/D_zhecyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/D_zhecyr.glif new file mode 100644 index 00000000..645faed2 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/D_zhecyr.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/D_zjekomicyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/D_zjekomicyr.glif new file mode 100644 index 00000000..7674b96b --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/D_zjekomicyr.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + З-10 + com.fontlab.metricsRight + Ц-5 + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/D_zwe-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/D_zwe-cy.glif new file mode 100644 index 00000000..217f7e64 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/D_zwe-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + S + com.fontlab.metricsRight + S + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/D_zze-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/D_zze-cy.glif new file mode 100644 index 00000000..7dfb0612 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/D_zze-cy.glif @@ -0,0 +1,84 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Д + com.fontlab.metricsRight + Д-20 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/D_zzhecyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/D_zzhecyr.glif new file mode 100644 index 00000000..4f033340 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/D_zzhecyr.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Д + com.fontlab.metricsRight + Ж + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/E_-cy.accented.glif b/sources/FixelDisplay-Light.ufo/glyphs/E_-cy.accented.glif new file mode 100644 index 00000000..150ec7b5 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/E_-cy.accented.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+acute.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/E_-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/E_-cy.glif new file mode 100644 index 00000000..d0467aec --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/E_-cy.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + C + com.fontlab.metricsRight + C + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/E_.glif b/sources/FixelDisplay-Light.ufo/glyphs/E_.glif new file mode 100644 index 00000000..4771d83e --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/E_.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + com.fontlab.metricsRight + F+10 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/E_acute.glif b/sources/FixelDisplay-Light.ufo/glyphs/E_acute.glif new file mode 100644 index 00000000..49959a71 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/E_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+acute.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/E_breve.glif b/sources/FixelDisplay-Light.ufo/glyphs/E_breve.glif new file mode 100644 index 00000000..e0c7660a --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/E_breve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+breve.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/E_caron.glif b/sources/FixelDisplay-Light.ufo/glyphs/E_caron.glif new file mode 100644 index 00000000..db99d930 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/E_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+caron.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/E_circumflex.glif b/sources/FixelDisplay-Light.ufo/glyphs/E_circumflex.glif new file mode 100644 index 00000000..2666e5ec --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/E_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+circumflex.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/E_dieresis.glif b/sources/FixelDisplay-Light.ufo/glyphs/E_dieresis.glif new file mode 100644 index 00000000..b06e399d --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/E_dieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+dieresiscase.alt + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/E_dotaccent.glif b/sources/FixelDisplay-Light.ufo/glyphs/E_dotaccent.glif new file mode 100644 index 00000000..5fca7bb1 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/E_dotaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+dotaccent.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/E_f-cy.B_G_R_.glif b/sources/FixelDisplay-Light.ufo/glyphs/E_f-cy.B_G_R_.glif new file mode 100644 index 00000000..12c2144e --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/E_f-cy.B_G_R_.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/E_f-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/E_f-cy.glif new file mode 100644 index 00000000..12ecc832 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/E_f-cy.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/E_grave.glif b/sources/FixelDisplay-Light.ufo/glyphs/E_grave.glif new file mode 100644 index 00000000..17753f5f --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/E_grave.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+grave.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/E_iotifiedcyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/E_iotifiedcyr.glif new file mode 100644 index 00000000..913b0765 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/E_iotifiedcyr.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + C + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/E_l-cy.B_G_R_.glif b/sources/FixelDisplay-Light.ufo/glyphs/E_l-cy.B_G_R_.glif new file mode 100644 index 00000000..cafdc206 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/E_l-cy.B_G_R_.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + A + com.fontlab.metricsRight + l() + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/E_l-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/E_l-cy.glif new file mode 100644 index 00000000..b917426a --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/E_l-cy.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/E_lS_oft-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/E_lS_oft-cy.glif new file mode 100644 index 00000000..e0138ac4 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/E_lS_oft-cy.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/E_lhookcyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/E_lhookcyr.glif new file mode 100644 index 00000000..ab529c1b --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/E_lhookcyr.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Л + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/E_lmiddlehookcyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/E_lmiddlehookcyr.glif new file mode 100644 index 00000000..18108f91 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/E_lmiddlehookcyr.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Shhacyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/E_lsharptailcyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/E_lsharptailcyr.glif new file mode 100644 index 00000000..09b1debf --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/E_lsharptailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Ensharptailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/E_lsmallcyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/E_lsmallcyr.glif new file mode 100644 index 00000000..58afa3b3 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/E_lsmallcyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + el-cy.BGR + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/E_ltailcyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/E_ltailcyr.glif new file mode 100644 index 00000000..a071c798 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/E_ltailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/E_m-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/E_m-cy.glif new file mode 100644 index 00000000..70ea0d8c --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/E_m-cy.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + M + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/E_m-cy.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/E_m-cy.ss01.glif new file mode 100644 index 00000000..24c162f2 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/E_m-cy.ss01.glif @@ -0,0 +1,13 @@ + + + + + + + + + com.fontlab.recipe + M + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/E_mS_oft-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/E_mS_oft-cy.glif new file mode 100644 index 00000000..2e43966f --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/E_mS_oft-cy.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + M + com.fontlab.metricsRight + Ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/E_macron.glif b/sources/FixelDisplay-Light.ufo/glyphs/E_macron.glif new file mode 100644 index 00000000..a0ed8ca8 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/E_macron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+macron.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/E_msharptailcyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/E_msharptailcyr.glif new file mode 100644 index 00000000..c5f945db --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/E_msharptailcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Н + com.fontlab.metricsRight + Ensharptailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/E_n-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/E_n-cy.glif new file mode 100644 index 00000000..df3fb0d1 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/E_n-cy.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + H + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/E_ng.glif b/sources/FixelDisplay-Light.ufo/glyphs/E_ng.glif new file mode 100644 index 00000000..8e58447f --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/E_ng.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + N + com.fontlab.metricsRight + l() + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/E_ng.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/E_ng.ss01.glif new file mode 100644 index 00000000..74f7907a --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/E_ng.ss01.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + N.ss01 + com.fontlab.metricsRight + J.ss01 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/E_ngecyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/E_ngecyr.glif new file mode 100644 index 00000000..c3d29441 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/E_ngecyr.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/E_nhookcyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/E_nhookcyr.glif new file mode 100644 index 00000000..7bbd9cc4 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/E_nhookcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/E_nhookleftcyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/E_nhookleftcyr.glif new file mode 100644 index 00000000..53c9a99f --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/E_nhookleftcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + r()-159 + com.fontlab.metricsRight + H + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/E_nmiddlehookcyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/E_nmiddlehookcyr.glif new file mode 100644 index 00000000..9bec3181 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/E_nmiddlehookcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Shhacyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/E_nsharptailcyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/E_nsharptailcyr.glif new file mode 100644 index 00000000..b35f4565 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/E_nsharptailcyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Н + com.fontlab.metricsRight + Д + com.fontlab.recipe + Entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/E_ntailcyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/E_ntailcyr.glif new file mode 100644 index 00000000..15465ba9 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/E_ntailcyr.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Ц + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/E_ogonek.glif b/sources/FixelDisplay-Light.ufo/glyphs/E_ogonek.glif new file mode 100644 index 00000000..c9f745e3 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/E_ogonek.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+ogonek + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/E_r-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/E_r-cy.glif new file mode 100644 index 00000000..e370e6e4 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/E_r-cy.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + P + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/E_reversed-cy.accented.glif b/sources/FixelDisplay-Light.ufo/glyphs/E_reversed-cy.accented.glif new file mode 100644 index 00000000..f9f35ba9 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/E_reversed-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Э+acute.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/E_reversed-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/E_reversed-cy.glif new file mode 100644 index 00000000..c2d9cb07 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/E_reversed-cy.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |C + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/E_reverseddieresiscyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/E_reverseddieresiscyr.glif new file mode 100644 index 00000000..810c4f4a --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/E_reverseddieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ereversed-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/E_rtickcyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/E_rtickcyr.glif new file mode 100644 index 00000000..af311196 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/E_rtickcyr.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + P + com.fontlab.metricsRight + P + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/E_s-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/E_s-cy.glif new file mode 100644 index 00000000..31981dfb --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/E_s-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/E_stailcyr.B_S_H_.glif b/sources/FixelDisplay-Light.ufo/glyphs/E_stailcyr.B_S_H_.glif new file mode 100644 index 00000000..fda9c37c --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/E_stailcyr.B_S_H_.glif @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + C + com.fontlab.metricsRight + C + com.fontlab.recipe + C + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/E_stailcyr.C_H_U_.glif b/sources/FixelDisplay-Light.ufo/glyphs/E_stailcyr.C_H_U_.glif new file mode 100644 index 00000000..923d7724 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/E_stailcyr.C_H_U_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+cedilla.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/E_stailcyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/E_stailcyr.glif new file mode 100644 index 00000000..faa43e69 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/E_stailcyr.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + С + com.fontlab.metricsRight + С + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/E_th.glif b/sources/FixelDisplay-Light.ufo/glyphs/E_th.glif new file mode 100644 index 00000000..74feee2a --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/E_th.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + D + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/F_.glif b/sources/FixelDisplay-Light.ufo/glyphs/F_.glif new file mode 100644 index 00000000..b121b456 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/F_.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/F_itacyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/F_itacyr.glif new file mode 100644 index 00000000..403fcab9 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/F_itacyr.glif @@ -0,0 +1,78 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + com.fontlab.recipe + Obarcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/G_.glif b/sources/FixelDisplay-Light.ufo/glyphs/G_.glif new file mode 100644 index 00000000..378132e3 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/G_.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O+18 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/G_.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/G_.ss01.glif new file mode 100644 index 00000000..bd90f668 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/G_.ss01.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O+10 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/G_acute.glif b/sources/FixelDisplay-Light.ufo/glyphs/G_acute.glif new file mode 100644 index 00000000..0f9769e6 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/G_acute.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + G+acute.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/G_acute.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/G_acute.ss01.glif new file mode 100644 index 00000000..b7aee535 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/G_acute.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G.ss01+acute.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/G_breve.glif b/sources/FixelDisplay-Light.ufo/glyphs/G_breve.glif new file mode 100644 index 00000000..23eab45b --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/G_breve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G+breve.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/G_breve.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/G_breve.ss01.glif new file mode 100644 index 00000000..b7bdd0aa --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/G_breve.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G.ss01+breve.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/G_circumflex.glif b/sources/FixelDisplay-Light.ufo/glyphs/G_circumflex.glif new file mode 100644 index 00000000..1b36e098 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/G_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G+circumflex.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/G_circumflex.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/G_circumflex.ss01.glif new file mode 100644 index 00000000..50c5af44 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/G_circumflex.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G.ss01+circumflex.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/G_commaaccent.glif b/sources/FixelDisplay-Light.ufo/glyphs/G_commaaccent.glif new file mode 100644 index 00000000..505678ec --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/G_commaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G+commaaccentcomb + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/G_commaaccent.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/G_commaaccent.ss01.glif new file mode 100644 index 00000000..20e0ed3d --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/G_commaaccent.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G.ss01+commaaccentcomb + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/G_dotaccent.glif b/sources/FixelDisplay-Light.ufo/glyphs/G_dotaccent.glif new file mode 100644 index 00000000..45ef4456 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/G_dotaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G+dotaccent.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/G_dotaccent.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/G_dotaccent.ss01.glif new file mode 100644 index 00000000..d796d4ea --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/G_dotaccent.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G.ss01+dotaccent.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/G_e-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/G_e-cy.glif new file mode 100644 index 00000000..c1e84fd9 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/G_e-cy.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + T + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/G_ehookcyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/G_ehookcyr.glif new file mode 100644 index 00000000..aac7385a --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/G_ehookcyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Г + com.fontlab.metricsRight + Tshecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/G_ehookstrokecyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/G_ehookstrokecyr.glif new file mode 100644 index 00000000..d2a6565c --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/G_ehookstrokecyr.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Gestrokecyr + com.fontlab.metricsRight + Gestrokecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/G_ermandbls.glif b/sources/FixelDisplay-Light.ufo/glyphs/G_ermandbls.glif new file mode 100644 index 00000000..602e6219 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/G_ermandbls.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + U + com.fontlab.metricsRight + B-5 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/G_estrokecyr.B_S_H_.glif b/sources/FixelDisplay-Light.ufo/glyphs/G_estrokecyr.B_S_H_.glif new file mode 100644 index 00000000..ddc0e8a5 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/G_estrokecyr.B_S_H_.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + F + com.fontlab.metricsRight + Gestrokecyr + com.fontlab.recipe + Gestrokecyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/G_estrokecyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/G_estrokecyr.glif new file mode 100644 index 00000000..93085b05 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/G_estrokecyr.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + Г + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/G_etailcyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/G_etailcyr.glif new file mode 100644 index 00000000..93a67e84 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/G_etailcyr.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Г + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/G_heupturn-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/G_heupturn-cy.glif new file mode 100644 index 00000000..ee08d220 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/G_heupturn-cy.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Г + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/G_jecyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/G_jecyr.glif new file mode 100644 index 00000000..dd509e92 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/G_jecyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ge-cy+acute.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/H_.glif b/sources/FixelDisplay-Light.ufo/glyphs/H_.glif new file mode 100644 index 00000000..16d220e1 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/H_.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + com.fontlab.metricsRight + I + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/H_a-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/H_a-cy.glif new file mode 100644 index 00000000..81679a7f --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/H_a-cy.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + X + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/H_a-cy.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/H_a-cy.ss01.glif new file mode 100644 index 00000000..9c8f385d --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/H_a-cy.ss01.glif @@ -0,0 +1,14 @@ + + + + + + + + + + com.fontlab.recipe + X + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/H_aabkhcyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/H_aabkhcyr.glif new file mode 100644 index 00000000..2ef6e69f --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/H_aabkhcyr.glif @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/H_ahookcyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/H_ahookcyr.glif new file mode 100644 index 00000000..3d58a07c --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/H_ahookcyr.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + X + com.fontlab.metricsRight + X + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/H_ardsign-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/H_ardsign-cy.glif new file mode 100644 index 00000000..35985e9c --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/H_ardsign-cy.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + Ь + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/H_astrokecyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/H_astrokecyr.glif new file mode 100644 index 00000000..bbcdbd76 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/H_astrokecyr.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + X + com.fontlab.metricsRight + X + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/H_bar.glif b/sources/FixelDisplay-Light.ufo/glyphs/H_bar.glif new file mode 100644 index 00000000..a2b503cf --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/H_bar.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + r() + com.fontlab.metricsRight + H + com.schriftgestaltung.Glyphs.rightMetricsKey + H + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/H_circumflex.glif b/sources/FixelDisplay-Light.ufo/glyphs/H_circumflex.glif new file mode 100644 index 00000000..499cfddc --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/H_circumflex.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + H+circumflex.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/H_we-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/H_we-cy.glif new file mode 100644 index 00000000..2c09b02c --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/H_we-cy.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Iota-cy + com.fontlab.metricsRight + Tshecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/I_-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/I_-cy.glif new file mode 100644 index 00000000..77205a1e --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/I_-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/I_.glif b/sources/FixelDisplay-Light.ufo/glyphs/I_.glif new file mode 100644 index 00000000..701b679a --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/I_.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/I_J_.glif b/sources/FixelDisplay-Light.ufo/glyphs/I_J_.glif new file mode 100644 index 00000000..fed6201b --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/I_J_.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + I_J + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/I_a-cy.accented.glif b/sources/FixelDisplay-Light.ufo/glyphs/I_a-cy.accented.glif new file mode 100644 index 00000000..729fe7d3 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/I_a-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Я+acute.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/I_a-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/I_a-cy.glif new file mode 100644 index 00000000..da42cde3 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/I_a-cy.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |R+10 + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/I_a-cy.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/I_a-cy.ss01.glif new file mode 100644 index 00000000..9343e4ee --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/I_a-cy.ss01.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/I_acute.glif b/sources/FixelDisplay-Light.ufo/glyphs/I_acute.glif new file mode 100644 index 00000000..86559445 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/I_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+acute.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/I_breve.glif b/sources/FixelDisplay-Light.ufo/glyphs/I_breve.glif new file mode 100644 index 00000000..c52f47d7 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/I_breve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+breve.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/I_circumflex.glif b/sources/FixelDisplay-Light.ufo/glyphs/I_circumflex.glif new file mode 100644 index 00000000..6944f717 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/I_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+circumflex.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/I_dieresis.glif b/sources/FixelDisplay-Light.ufo/glyphs/I_dieresis.glif new file mode 100644 index 00000000..5f3c5d86 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/I_dieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+dieresiscase.alt + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/I_dieresiscyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/I_dieresiscyr.glif new file mode 100644 index 00000000..1cccac1e --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/I_dieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ii-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/I_dotaccent.glif b/sources/FixelDisplay-Light.ufo/glyphs/I_dotaccent.glif new file mode 100644 index 00000000..31e86638 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/I_dotaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+dotaccent.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/I_e-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/I_e-cy.glif new file mode 100644 index 00000000..3b194a0f --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/I_e-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/I_ebrevecyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/I_ebrevecyr.glif new file mode 100644 index 00000000..3bd5c22f --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/I_ebrevecyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+breve.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/I_egravecyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/I_egravecyr.glif new file mode 100644 index 00000000..7b60119d --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/I_egravecyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+grave.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/I_grave.glif b/sources/FixelDisplay-Light.ufo/glyphs/I_grave.glif new file mode 100644 index 00000000..cd9e7fd5 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/I_grave.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+grave.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/I_gravecyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/I_gravecyr.glif new file mode 100644 index 00000000..18ce62a9 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/I_gravecyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ii-cy+grave.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/I_i-cy.accented.glif b/sources/FixelDisplay-Light.ufo/glyphs/I_i-cy.accented.glif new file mode 100644 index 00000000..a95789b8 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/I_i-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + И+acute.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/I_i-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/I_i-cy.glif new file mode 100644 index 00000000..a64296f6 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/I_i-cy.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/I_ishort-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/I_ishort-cy.glif new file mode 100644 index 00000000..ea03b2be --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/I_ishort-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + uni0418+breve.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/I_macron.glif b/sources/FixelDisplay-Light.ufo/glyphs/I_macron.glif new file mode 100644 index 00000000..2a7a37ff --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/I_macron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+macron.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/I_macroncyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/I_macroncyr.glif new file mode 100644 index 00000000..b0dac1d3 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/I_macroncyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ii-cy+macron.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/I_o-cy.accented.glif b/sources/FixelDisplay-Light.ufo/glyphs/I_o-cy.accented.glif new file mode 100644 index 00000000..cdbfcb93 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/I_o-cy.accented.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + com.fontlab.recipe + E+dieresis.case+acute.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/I_o-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/I_o-cy.glif new file mode 100644 index 00000000..c1c72399 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/I_o-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Edieresis + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/I_ogonek.glif b/sources/FixelDisplay-Light.ufo/glyphs/I_ogonek.glif new file mode 100644 index 00000000..0b492ec1 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/I_ogonek.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+ogonek + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/I_ota-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/I_ota-cy.glif new file mode 100644 index 00000000..44e77b9c --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/I_ota-cy.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |J + com.fontlab.metricsRight + |J + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/I_otifiedA_-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/I_otifiedA_-cy.glif new file mode 100644 index 00000000..aef2a971 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/I_otifiedA_-cy.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + com.fontlab.metricsRight + A + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/I_shortsharptailcyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/I_shortsharptailcyr.glif new file mode 100644 index 00000000..5cabb126 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/I_shortsharptailcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Й + com.fontlab.metricsRight + Ensharptailcyr + com.fontlab.recipe + Й + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/I_tilde.glif b/sources/FixelDisplay-Light.ufo/glyphs/I_tilde.glif new file mode 100644 index 00000000..282e448f --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/I_tilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+tilde.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/I_u-cy.accented.glif b/sources/FixelDisplay-Light.ufo/glyphs/I_u-cy.accented.glif new file mode 100644 index 00000000..f72258d9 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/I_u-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ю+acute.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/I_u-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/I_u-cy.glif new file mode 100644 index 00000000..7035d070 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/I_u-cy.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/I_zhitsacyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/I_zhitsacyr.glif new file mode 100644 index 00000000..a129f042 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/I_zhitsacyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + V + com.fontlab.metricsRight + + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/I_zhitsagravedblcyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/I_zhitsagravedblcyr.glif new file mode 100644 index 00000000..77bee33a --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/I_zhitsagravedblcyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + com.fontlab.metricsLeft + Izhitsacyr + com.fontlab.metricsRight + Izhitsacyr + com.fontlab.recipe + Izhitsacyr+hungarumlaut.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/J_.glif b/sources/FixelDisplay-Light.ufo/glyphs/J_.glif new file mode 100644 index 00000000..2ed13693 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/J_.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + U + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/J_.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/J_.ss01.glif new file mode 100644 index 00000000..6fc0c6d5 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/J_.ss01.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + U + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/J_circumflex.glif b/sources/FixelDisplay-Light.ufo/glyphs/J_circumflex.glif new file mode 100644 index 00000000..60e1798c --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/J_circumflex.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + J+circumflex.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/J_circumflex.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/J_circumflex.ss01.glif new file mode 100644 index 00000000..10d496a9 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/J_circumflex.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + J.ss01+circumflex.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/J_ecyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/J_ecyr.glif new file mode 100644 index 00000000..e1118fa9 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/J_ecyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsLeft + J + com.fontlab.metricsRight + J + com.fontlab.recipe + J + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/K_.glif b/sources/FixelDisplay-Light.ufo/glyphs/K_.glif new file mode 100644 index 00000000..2c739561 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/K_.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/K_.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/K_.ss01.glif new file mode 100644 index 00000000..f728a3a7 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/K_.ss01.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/K_a-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/K_a-cy.glif new file mode 100644 index 00000000..5c53d1d0 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/K_a-cy.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.recipe + K + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/K_a-cy.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/K_a-cy.ss01.glif new file mode 100644 index 00000000..9df6aac6 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/K_a-cy.ss01.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.recipe + K + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/K_aaleutcyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/K_aaleutcyr.glif new file mode 100644 index 00000000..b8de101e --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/K_aaleutcyr.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + K + com.fontlab.metricsRight + K + com.fontlab.recipe + K + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/K_abashkcyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/K_abashkcyr.glif new file mode 100644 index 00000000..298e8cc9 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/K_abashkcyr.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Hardsign-cy + com.fontlab.metricsRight + K + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/K_ahookcyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/K_ahookcyr.glif new file mode 100644 index 00000000..02f1d485 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/K_ahookcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + K + com.fontlab.metricsRight + Djecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/K_astrokecyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/K_astrokecyr.glif new file mode 100644 index 00000000..d6c31fce --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/K_astrokecyr.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Yatcyr + com.fontlab.metricsRight + K + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/K_atailcyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/K_atailcyr.glif new file mode 100644 index 00000000..596c06cc --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/K_atailcyr.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + К-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/K_averticalstrokecyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/K_averticalstrokecyr.glif new file mode 100644 index 00000000..1b44a83e --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/K_averticalstrokecyr.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + K + com.fontlab.metricsRight + Ж + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/K_commaaccent.glif b/sources/FixelDisplay-Light.ufo/glyphs/K_commaaccent.glif new file mode 100644 index 00000000..f428cac8 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/K_commaaccent.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + K+commaaccentcomb + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/K_commaaccent.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/K_commaaccent.ss01.glif new file mode 100644 index 00000000..a4681c32 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/K_commaaccent.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + K.ss01+commaaccentcomb + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/K_jecyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/K_jecyr.glif new file mode 100644 index 00000000..fed02b0a --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/K_jecyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ka-cy+acute.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/K_oppacyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/K_oppacyr.glif new file mode 100644 index 00000000..4d60d1c7 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/K_oppacyr.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + C-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/K_sicyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/K_sicyr.glif new file mode 100644 index 00000000..9400279e --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/K_sicyr.glif @@ -0,0 +1,98 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + З-10 + com.fontlab.metricsRight + З + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/L_.glif b/sources/FixelDisplay-Light.ufo/glyphs/L_.glif new file mode 100644 index 00000000..83743014 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/L_.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/L_acute.glif b/sources/FixelDisplay-Light.ufo/glyphs/L_acute.glif new file mode 100644 index 00000000..f6bdf05f --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/L_acute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + L+acute.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/L_caron.glif b/sources/FixelDisplay-Light.ufo/glyphs/L_caron.glif new file mode 100644 index 00000000..2ec4eefe --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/L_caron.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + com.fontlab.recipe + L+caron.salt + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/L_commaaccent.glif b/sources/FixelDisplay-Light.ufo/glyphs/L_commaaccent.glif new file mode 100644 index 00000000..c9757162 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/L_commaaccent.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + L+commaaccentcomb + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/L_dot.glif b/sources/FixelDisplay-Light.ufo/glyphs/L_dot.glif new file mode 100644 index 00000000..8d08dffa --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/L_dot.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + com.fontlab.metricsRight + L + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/L_hacyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/L_hacyr.glif new file mode 100644 index 00000000..9c7d7941 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/L_hacyr.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + X + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/L_jecyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/L_jecyr.glif new file mode 100644 index 00000000..4d07b6ea --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/L_jecyr.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Ь + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/L_jekomicyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/L_jekomicyr.glif new file mode 100644 index 00000000..85cdfc80 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/L_jekomicyr.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Njekomicyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/L_slash.glif b/sources/FixelDisplay-Light.ufo/glyphs/L_slash.glif new file mode 100644 index 00000000..25977b3f --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/L_slash.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + L-80 + com.fontlab.metricsRight + L + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/M_.glif b/sources/FixelDisplay-Light.ufo/glyphs/M_.glif new file mode 100644 index 00000000..23b0bc90 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/M_.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/M_.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/M_.ss01.glif new file mode 100644 index 00000000..c98eaa8c --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/M_.ss01.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H-25 + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/N_.glif b/sources/FixelDisplay-Light.ufo/glyphs/N_.glif new file mode 100644 index 00000000..4b29024c --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/N_.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/N_.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/N_.ss01.glif new file mode 100644 index 00000000..e65f2b78 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/N_.ss01.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H-10 + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/N_U_L_L_.glif b/sources/FixelDisplay-Light.ufo/glyphs/N_U_L_L_.glif new file mode 100644 index 00000000..1ad177ae --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/N_U_L_L_.glif @@ -0,0 +1,4 @@ + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/N_acute.glif b/sources/FixelDisplay-Light.ufo/glyphs/N_acute.glif new file mode 100644 index 00000000..d56f8d99 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/N_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N+acute.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/N_acute.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/N_acute.ss01.glif new file mode 100644 index 00000000..7ce96fb0 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/N_acute.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N.ss01+acute.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/N_caron.glif b/sources/FixelDisplay-Light.ufo/glyphs/N_caron.glif new file mode 100644 index 00000000..17717041 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/N_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N+caron.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/N_caron.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/N_caron.ss01.glif new file mode 100644 index 00000000..a7f258d8 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/N_caron.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N.ss01+caron.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/N_commaaccent.glif b/sources/FixelDisplay-Light.ufo/glyphs/N_commaaccent.glif new file mode 100644 index 00000000..b7697dc2 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/N_commaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N+commaaccentcomb + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/N_commaaccent.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/N_commaaccent.ss01.glif new file mode 100644 index 00000000..4b6ee9cf --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/N_commaaccent.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N.ss01+commaaccentcomb + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/N_jecyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/N_jecyr.glif new file mode 100644 index 00000000..8a605eee --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/N_jecyr.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Н + com.fontlab.metricsRight + Ь + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/N_jekomicyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/N_jekomicyr.glif new file mode 100644 index 00000000..9d4935e3 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/N_jekomicyr.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + |u + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/N_tilde.glif b/sources/FixelDisplay-Light.ufo/glyphs/N_tilde.glif new file mode 100644 index 00000000..c3306424 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/N_tilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N+tilde.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/N_tilde.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/N_tilde.ss01.glif new file mode 100644 index 00000000..06faa7a9 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/N_tilde.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N.ss01+tilde.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/O_-cy.accented.glif b/sources/FixelDisplay-Light.ufo/glyphs/O_-cy.accented.glif new file mode 100644 index 00000000..4acb08b3 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/O_-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+acute.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/O_-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/O_-cy.glif new file mode 100644 index 00000000..b4bc2111 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/O_-cy.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/O_.glif b/sources/FixelDisplay-Light.ufo/glyphs/O_.glif new file mode 100644 index 00000000..c0881922 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/O_.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/O_B_inocular-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/O_B_inocular-cy.glif new file mode 100644 index 00000000..35d211e2 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/O_B_inocular-cy.glif @@ -0,0 +1,81 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/O_D_oubleM_onocular-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/O_D_oubleM_onocular-cy.glif new file mode 100644 index 00000000..a4b53510 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/O_D_oubleM_onocular-cy.glif @@ -0,0 +1,119 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + com.fontlab.recipe + DoubleO-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/O_E_.glif b/sources/FixelDisplay-Light.ufo/glyphs/O_E_.glif new file mode 100644 index 00000000..9398b495 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/O_E_.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + E + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/O_M_onocular-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/O_M_onocular-cy.glif new file mode 100644 index 00000000..0abad447 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/O_M_onocular-cy.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/O_acute.glif b/sources/FixelDisplay-Light.ufo/glyphs/O_acute.glif new file mode 100644 index 00000000..05b8520c --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/O_acute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+acute.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/O_barcyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/O_barcyr.glif new file mode 100644 index 00000000..454ded4d --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/O_barcyr.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + r() + com.fontlab.metricsRight + O + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/O_bardieresiscyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/O_bardieresiscyr.glif new file mode 100644 index 00000000..84427906 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/O_bardieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Obarcyr+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/O_breve.glif b/sources/FixelDisplay-Light.ufo/glyphs/O_breve.glif new file mode 100644 index 00000000..362e79d2 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/O_breve.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+breve.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/O_circumflex.glif b/sources/FixelDisplay-Light.ufo/glyphs/O_circumflex.glif new file mode 100644 index 00000000..56f9a847 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/O_circumflex.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+circumflex.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/O_dieresis.glif b/sources/FixelDisplay-Light.ufo/glyphs/O_dieresis.glif new file mode 100644 index 00000000..df588d1d --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/O_dieresis.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+dieresis.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/O_dieresiscyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/O_dieresiscyr.glif new file mode 100644 index 00000000..49edac89 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/O_dieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/O_grave.glif b/sources/FixelDisplay-Light.ufo/glyphs/O_grave.glif new file mode 100644 index 00000000..cf1ca1cf --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/O_grave.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+grave.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/O_hungarumlaut.glif b/sources/FixelDisplay-Light.ufo/glyphs/O_hungarumlaut.glif new file mode 100644 index 00000000..8abdeb07 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/O_hungarumlaut.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+hungarumlaut.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/O_macron.glif b/sources/FixelDisplay-Light.ufo/glyphs/O_macron.glif new file mode 100644 index 00000000..0c528ae1 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/O_macron.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+macron.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/O_mega.glif b/sources/FixelDisplay-Light.ufo/glyphs/O_mega.glif new file mode 100644 index 00000000..68bd2aa3 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/O_mega.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O+10 + com.fontlab.metricsRight + O+10 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/O_megaB_road-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/O_megaB_road-cy.glif new file mode 100644 index 00000000..c000c0b2 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/O_megaB_road-cy.glif @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O+10 + com.fontlab.metricsRight + O+10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/O_megacyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/O_megacyr.glif new file mode 100644 index 00000000..97002235 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/O_megacyr.glif @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O+10 + com.fontlab.metricsRight + O+10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/O_megaroundcyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/O_megaroundcyr.glif new file mode 100644 index 00000000..db3923e0 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/O_megaroundcyr.glif @@ -0,0 +1,81 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/O_megatitlocyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/O_megatitlocyr.glif new file mode 100644 index 00000000..1448d42c --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/O_megatitlocyr.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O+10 + com.fontlab.metricsRight + O+10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/O_slash.glif b/sources/FixelDisplay-Light.ufo/glyphs/O_slash.glif new file mode 100644 index 00000000..aa8c2271 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/O_slash.glif @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/O_slashacute.glif b/sources/FixelDisplay-Light.ufo/glyphs/O_slashacute.glif new file mode 100644 index 00000000..abf77a60 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/O_slashacute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Oslash+acute.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/O_tcyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/O_tcyr.glif new file mode 100644 index 00000000..af14206c --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/O_tcyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Omegacyr+uni2DEE.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/O_tilde.glif b/sources/FixelDisplay-Light.ufo/glyphs/O_tilde.glif new file mode 100644 index 00000000..24cf457b --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/O_tilde.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+tilde.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/P_.glif b/sources/FixelDisplay-Light.ufo/glyphs/P_.glif new file mode 100644 index 00000000..a4df6a3a --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/P_.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/P_alochkacyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/P_alochkacyr.glif new file mode 100644 index 00000000..d2f35da4 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/P_alochkacyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/P_e-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/P_e-cy.glif new file mode 100644 index 00000000..f292dfde --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/P_e-cy.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/P_ehookcyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/P_ehookcyr.glif new file mode 100644 index 00000000..9ddee2b1 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/P_ehookcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + П + com.fontlab.metricsRight + Shhacyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/P_etailcyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/P_etailcyr.glif new file mode 100644 index 00000000..10908488 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/P_etailcyr.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/P_sicyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/P_sicyr.glif new file mode 100644 index 00000000..8c50c6a9 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/P_sicyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + U-20 + com.fontlab.metricsRight + U-20 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/Q_.glif b/sources/FixelDisplay-Light.ufo/glyphs/Q_.glif new file mode 100644 index 00000000..229e582a --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/Q_.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/Q_.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/Q_.ss01.glif new file mode 100644 index 00000000..8e0c7c5c --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/Q_.ss01.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/Q_acyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/Q_acyr.glif new file mode 100644 index 00000000..92fcb848 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/Q_acyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Q + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/R_.glif b/sources/FixelDisplay-Light.ufo/glyphs/R_.glif new file mode 100644 index 00000000..9ec2dd15 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/R_.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/R_acute.glif b/sources/FixelDisplay-Light.ufo/glyphs/R_acute.glif new file mode 100644 index 00000000..ccfb5411 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/R_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + R+acute.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/R_caron.glif b/sources/FixelDisplay-Light.ufo/glyphs/R_caron.glif new file mode 100644 index 00000000..0ddcf037 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/R_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + R+caron.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/R_commaaccent.glif b/sources/FixelDisplay-Light.ufo/glyphs/R_commaaccent.glif new file mode 100644 index 00000000..0bbc7a51 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/R_commaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + R+commaaccentcomb + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/R_eversedzecyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/R_eversedzecyr.glif new file mode 100644 index 00000000..993175d3 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/R_eversedzecyr.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + + com.fontlab.metricsRight + + com.fontlab.recipe + З + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/R_hacyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/R_hacyr.glif new file mode 100644 index 00000000..8a8fa582 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/R_hacyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + P + com.fontlab.metricsRight + X + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/S_.glif b/sources/FixelDisplay-Light.ufo/glyphs/S_.glif new file mode 100644 index 00000000..b9ce95c0 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/S_.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/S_acute.glif b/sources/FixelDisplay-Light.ufo/glyphs/S_acute.glif new file mode 100644 index 00000000..dcf9f7eb --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/S_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + S+acute.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/S_caron.glif b/sources/FixelDisplay-Light.ufo/glyphs/S_caron.glif new file mode 100644 index 00000000..e2c0f2f0 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/S_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + S+caron.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/S_cedilla.glif b/sources/FixelDisplay-Light.ufo/glyphs/S_cedilla.glif new file mode 100644 index 00000000..d51c7ea6 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/S_cedilla.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + S+cedilla + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/S_chwa.glif b/sources/FixelDisplay-Light.ufo/glyphs/S_chwa.glif new file mode 100644 index 00000000..94d64b61 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/S_chwa.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Schwacyr + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/S_chwacyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/S_chwacyr.glif new file mode 100644 index 00000000..701f8bb8 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/S_chwacyr.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O-10 + com.fontlab.metricsRight + O + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/S_chwadieresiscyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/S_chwadieresiscyr.glif new file mode 100644 index 00000000..8c76b27f --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/S_chwadieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Schwacyr+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/S_circumflex.glif b/sources/FixelDisplay-Light.ufo/glyphs/S_circumflex.glif new file mode 100644 index 00000000..f923f42d --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/S_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + S+circumflex.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/S_commaaccent.glif b/sources/FixelDisplay-Light.ufo/glyphs/S_commaaccent.glif new file mode 100644 index 00000000..b1a09aaa --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/S_commaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + S+commaaccentcomb + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/S_emisoftcyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/S_emisoftcyr.glif new file mode 100644 index 00000000..cf6f1bde --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/S_emisoftcyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Yat + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/S_ha-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/S_ha-cy.glif new file mode 100644 index 00000000..69554607 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/S_ha-cy.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/S_hcha-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/S_hcha-cy.glif new file mode 100644 index 00000000..17d165d9 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/S_hcha-cy.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Д + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/S_hhacyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/S_hhacyr.glif new file mode 100644 index 00000000..576152f5 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/S_hhacyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.metricsLeft + Н + com.fontlab.metricsRight + Tshecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/S_hhatailcyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/S_hhatailcyr.glif new file mode 100644 index 00000000..438f8704 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/S_hhatailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/S_hwe-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/S_hwe-cy.glif new file mode 100644 index 00000000..390977b6 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/S_hwe-cy.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Щ + com.fontlab.metricsRight + Щ-20 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/S_jekomicyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/S_jekomicyr.glif new file mode 100644 index 00000000..d6fcda1b --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/S_jekomicyr.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + |Schwa + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/S_oftsign-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/S_oftsign-cy.glif new file mode 100644 index 00000000..7796fd24 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/S_oftsign-cy.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + P + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/T_.glif b/sources/FixelDisplay-Light.ufo/glyphs/T_.glif new file mode 100644 index 00000000..fc2ca5b5 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/T_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/T_bar.glif b/sources/FixelDisplay-Light.ufo/glyphs/T_bar.glif new file mode 100644 index 00000000..78958d8c --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/T_bar.glif @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/T_caron.glif b/sources/FixelDisplay-Light.ufo/glyphs/T_caron.glif new file mode 100644 index 00000000..c463a902 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/T_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + T+caron.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/T_cedilla.glif b/sources/FixelDisplay-Light.ufo/glyphs/T_cedilla.glif new file mode 100644 index 00000000..57c6756f --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/T_cedilla.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + T+cedilla + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/T_che-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/T_che-cy.glif new file mode 100644 index 00000000..496c195b --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/T_che-cy.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Tetsecyr-20 + com.fontlab.metricsRight + Ч + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/T_commaaccent.glif b/sources/FixelDisplay-Light.ufo/glyphs/T_commaaccent.glif new file mode 100644 index 00000000..aa37d955 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/T_commaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + T+commaaccentcomb + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/T_e-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/T_e-cy.glif new file mode 100644 index 00000000..d6ea13f0 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/T_e-cy.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + com.fontlab.recipe + T + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/T_eW_ithM_iddleH_ook-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/T_eW_ithM_iddleH_ook-cy.glif new file mode 100644 index 00000000..890c5558 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/T_eW_ithM_iddleH_ook-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Djecyr + com.fontlab.metricsRight + Gehookcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/T_etailcyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/T_etailcyr.glif new file mode 100644 index 00000000..ce59650c --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/T_etailcyr.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/T_etsecyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/T_etsecyr.glif new file mode 100644 index 00000000..36de7f2e --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/T_etsecyr.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Tshecyr + com.fontlab.metricsRight + Ц + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/T_horn.glif b/sources/FixelDisplay-Light.ufo/glyphs/T_horn.glif new file mode 100644 index 00000000..f07f97b9 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/T_horn.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + P + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/T_jekomicyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/T_jekomicyr.glif new file mode 100644 index 00000000..36e53f28 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/T_jekomicyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + Njekomicyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/T_se-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/T_se-cy.glif new file mode 100644 index 00000000..45aaeea1 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/T_se-cy.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Д + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/T_seR_eversed-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/T_seR_eversed-cy.glif new file mode 100644 index 00000000..fc708c86 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/T_seR_eversed-cy.glif @@ -0,0 +1,20 @@ + + + + + + + + + + com.fontlab.metricsLeft + + com.fontlab.metricsRight + H + com.fontlab.recipe + Ц + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/T_shecyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/T_shecyr.glif new file mode 100644 index 00000000..1399a406 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/T_shecyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + n + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/T_sse-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/T_sse-cy.glif new file mode 100644 index 00000000..d0b67596 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/T_sse-cy.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + T + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/T_swe-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/T_swe-cy.glif new file mode 100644 index 00000000..d8200904 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/T_swe-cy.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Shwe-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/T_we-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/T_we-cy.glif new file mode 100644 index 00000000..8261d022 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/T_we-cy.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + T + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/U_-cy.accented.glif b/sources/FixelDisplay-Light.ufo/glyphs/U_-cy.accented.glif new file mode 100644 index 00000000..eb3a4648 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/U_-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + У+acute.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/U_-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/U_-cy.glif new file mode 100644 index 00000000..6d234036 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/U_-cy.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Y+10 + com.fontlab.metricsRight + Y+5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/U_-cy.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/U_-cy.ss01.glif new file mode 100644 index 00000000..c9d53078 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/U_-cy.ss01.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/U_.glif b/sources/FixelDisplay-Light.ufo/glyphs/U_.glif new file mode 100644 index 00000000..f11849ce --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/U_.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H-10 + com.fontlab.metricsRight + H-10 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/U_acute.glif b/sources/FixelDisplay-Light.ufo/glyphs/U_acute.glif new file mode 100644 index 00000000..7f0530dc --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/U_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+acute.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/U_acutedblcyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/U_acutedblcyr.glif new file mode 100644 index 00000000..a4092d47 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/U_acutedblcyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U-cy+hungarumlaut.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/U_breve.glif b/sources/FixelDisplay-Light.ufo/glyphs/U_breve.glif new file mode 100644 index 00000000..b71415ea --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/U_breve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+breve.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/U_circumflex.glif b/sources/FixelDisplay-Light.ufo/glyphs/U_circumflex.glif new file mode 100644 index 00000000..52f45201 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/U_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+circumflex.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/U_dieresis.glif b/sources/FixelDisplay-Light.ufo/glyphs/U_dieresis.glif new file mode 100644 index 00000000..584e8ea7 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/U_dieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+dieresis.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/U_dieresiscyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/U_dieresiscyr.glif new file mode 100644 index 00000000..15d6f6a3 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/U_dieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/U_grave.glif b/sources/FixelDisplay-Light.ufo/glyphs/U_grave.glif new file mode 100644 index 00000000..3dd8790e --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/U_grave.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+grave.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/U_hungarumlaut.glif b/sources/FixelDisplay-Light.ufo/glyphs/U_hungarumlaut.glif new file mode 100644 index 00000000..8f4e0f8b --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/U_hungarumlaut.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+hungarumlaut.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/U_kM_onograph-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/U_kM_onograph-cy.glif new file mode 100644 index 00000000..47f6f248 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/U_kM_onograph-cy.glif @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/U_kcyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/U_kcyr.glif new file mode 100644 index 00000000..74395951 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/U_kcyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + y + com.fontlab.recipe + О_у + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/U_macron.glif b/sources/FixelDisplay-Light.ufo/glyphs/U_macron.glif new file mode 100644 index 00000000..cbd14098 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/U_macron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+macron.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/U_macroncyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/U_macroncyr.glif new file mode 100644 index 00000000..4af32599 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/U_macroncyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U-cy+macron.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/U_ogonek.glif b/sources/FixelDisplay-Light.ufo/glyphs/U_ogonek.glif new file mode 100644 index 00000000..a6529e8d --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/U_ogonek.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + U+ogonek + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/U_ring.glif b/sources/FixelDisplay-Light.ufo/glyphs/U_ring.glif new file mode 100644 index 00000000..fd5d6274 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/U_ring.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+ring.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/U_short-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/U_short-cy.glif new file mode 100644 index 00000000..9e1cd41b --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/U_short-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ucyr+breve.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/U_short-cy.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/U_short-cy.ss01.glif new file mode 100644 index 00000000..588c7ca5 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/U_short-cy.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ucyr.ss01+breve.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/U_straightcyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/U_straightcyr.glif new file mode 100644 index 00000000..3f09ae52 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/U_straightcyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsRight + Y + com.fontlab.recipe + Y + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/U_straightstrokecyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/U_straightstrokecyr.glif new file mode 100644 index 00000000..77a3e57a --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/U_straightstrokecyr.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/U_tilde.glif b/sources/FixelDisplay-Light.ufo/glyphs/U_tilde.glif new file mode 100644 index 00000000..6accc8a4 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/U_tilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+tilde.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/V_.glif b/sources/FixelDisplay-Light.ufo/glyphs/V_.glif new file mode 100644 index 00000000..ffe07a83 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/V_.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/V_.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/V_.ss01.glif new file mode 100644 index 00000000..12d19319 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/V_.ss01.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/V_e-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/V_e-cy.glif new file mode 100644 index 00000000..269f77b5 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/V_e-cy.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + B + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/W_.glif b/sources/FixelDisplay-Light.ufo/glyphs/W_.glif new file mode 100644 index 00000000..45cbab7a --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/W_.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/W_.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/W_.ss01.glif new file mode 100644 index 00000000..022201e6 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/W_.ss01.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |A + com.fontlab.metricsRight + |A + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/W_acute.glif b/sources/FixelDisplay-Light.ufo/glyphs/W_acute.glif new file mode 100644 index 00000000..b825dc39 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/W_acute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W+acute.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/W_acute.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/W_acute.ss01.glif new file mode 100644 index 00000000..f60cb6f2 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/W_acute.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W.ss01+acute.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/W_circumflex.glif b/sources/FixelDisplay-Light.ufo/glyphs/W_circumflex.glif new file mode 100644 index 00000000..315f2a60 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/W_circumflex.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W+circumflex.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/W_circumflex.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/W_circumflex.ss01.glif new file mode 100644 index 00000000..908e3c6b --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/W_circumflex.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W.ss01+circumflex.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/W_dieresis.glif b/sources/FixelDisplay-Light.ufo/glyphs/W_dieresis.glif new file mode 100644 index 00000000..fae5582a --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/W_dieresis.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + W+dieresis.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/W_dieresis.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/W_dieresis.ss01.glif new file mode 100644 index 00000000..33753953 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/W_dieresis.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W.ss01+dieresis.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/W_ecyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/W_ecyr.glif new file mode 100644 index 00000000..a27aef05 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/W_ecyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/W_grave.glif b/sources/FixelDisplay-Light.ufo/glyphs/W_grave.glif new file mode 100644 index 00000000..4fce7578 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/W_grave.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W+grave.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/W_grave.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/W_grave.ss01.glif new file mode 100644 index 00000000..eb7ef055 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/W_grave.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W.ss01+grave.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/X_.glif b/sources/FixelDisplay-Light.ufo/glyphs/X_.glif new file mode 100644 index 00000000..cba4535f --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/X_.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/X_.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/X_.ss01.glif new file mode 100644 index 00000000..13a92d19 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/X_.ss01.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/X_atailcyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/X_atailcyr.glif new file mode 100644 index 00000000..8d77cbd1 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/X_atailcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + X + com.fontlab.metricsRight + Katailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/Y_.glif b/sources/FixelDisplay-Light.ufo/glyphs/Y_.glif new file mode 100644 index 00000000..0cd21899 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/Y_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/Y_.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/Y_.ss01.glif new file mode 100644 index 00000000..0cc5ee62 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/Y_.ss01.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/Y_acute.glif b/sources/FixelDisplay-Light.ufo/glyphs/Y_acute.glif new file mode 100644 index 00000000..4a43329b --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/Y_acute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y+acute.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/Y_acute.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/Y_acute.ss01.glif new file mode 100644 index 00000000..ef1a507b --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/Y_acute.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y.ss01+acute.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/Y_aecyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/Y_aecyr.glif new file mode 100644 index 00000000..54e3c55c --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/Y_aecyr.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Я + com.fontlab.metricsRight + E + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/Y_atI_otified-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/Y_atI_otified-cy.glif new file mode 100644 index 00000000..7b4a4ce3 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/Y_atI_otified-cy.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + com.fontlab.metricsRight + Yatcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/Y_atcyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/Y_atcyr.glif new file mode 100644 index 00000000..ea0e3f46 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/Y_atcyr.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Т + com.fontlab.metricsRight + Ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/Y_circumflex.glif b/sources/FixelDisplay-Light.ufo/glyphs/Y_circumflex.glif new file mode 100644 index 00000000..faa3b9e8 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/Y_circumflex.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y+circumflex.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/Y_circumflex.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/Y_circumflex.ss01.glif new file mode 100644 index 00000000..29ccd137 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/Y_circumflex.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y.ss01+circumflex.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/Y_dieresis.glif b/sources/FixelDisplay-Light.ufo/glyphs/Y_dieresis.glif new file mode 100644 index 00000000..95491ecf --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/Y_dieresis.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y+dieresis.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/Y_dieresis.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/Y_dieresis.ss01.glif new file mode 100644 index 00000000..ee61747b --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/Y_dieresis.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y.ss01+dieresis.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/Y_erN_eutral-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/Y_erN_eutral-cy.glif new file mode 100644 index 00000000..7aa10f30 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/Y_erN_eutral-cy.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Hardsign-cy + com.fontlab.metricsRight + Ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/Y_eru-cy.accented.glif b/sources/FixelDisplay-Light.ufo/glyphs/Y_eru-cy.accented.glif new file mode 100644 index 00000000..f71da7dd --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/Y_eru-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ы+acute.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/Y_eru-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/Y_eru-cy.glif new file mode 100644 index 00000000..69bf199f --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/Y_eru-cy.glif @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/Y_eru-cymacron.glif b/sources/FixelDisplay-Light.ufo/glyphs/Y_eru-cymacron.glif new file mode 100644 index 00000000..b445ca1a --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/Y_eru-cymacron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ы+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/Y_eruB_ackY_er-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/Y_eruB_ackY_er-cy.glif new file mode 100644 index 00000000..9ecb5fcc --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/Y_eruB_ackY_er-cy.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Hardsign + com.fontlab.metricsRight + I + com.fontlab.recipe + Hardsign-cy_I + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/Y_i-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/Y_i-cy.glif new file mode 100644 index 00000000..04a9b4db --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/Y_i-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Idieresis + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/Y_longdieresiscyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/Y_longdieresiscyr.glif new file mode 100644 index 00000000..62b50940 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/Y_longdieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Yeru-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/Y_n-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/Y_n-cy.glif new file mode 100644 index 00000000..7ec51bbc --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/Y_n-cy.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |Izhitsa + com.fontlab.metricsRight + |Izhitsa + com.fontlab.recipe + Izhitsa + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/Y_uR_eversed-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/Y_uR_eversed-cy.glif new file mode 100644 index 00000000..ab9957b9 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/Y_uR_eversed-cy.glif @@ -0,0 +1,20 @@ + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + H + com.fontlab.recipe + Ю + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/Y_usB_lended-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/Y_usB_lended-cy.glif new file mode 100644 index 00000000..bd9a69ab --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/Y_usB_lended-cy.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Yusbigcyr + com.fontlab.metricsRight + Yusbigcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/Y_usC_losedlittle-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/Y_usC_losedlittle-cy.glif new file mode 100644 index 00000000..c11c2107 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/Y_usC_losedlittle-cy.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + A + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/Y_usbigcyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/Y_usbigcyr.glif new file mode 100644 index 00000000..d77e74f9 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/Y_usbigcyr.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ж + com.fontlab.metricsRight + Ж + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/Y_usbigiotifiedcyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/Y_usbigiotifiedcyr.glif new file mode 100644 index 00000000..390db65c --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/Y_usbigiotifiedcyr.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + Ж + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/Y_usiotifiedC_losedL_ittle-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/Y_usiotifiedC_losedL_ittle-cy.glif new file mode 100644 index 00000000..99ac08ed --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/Y_usiotifiedC_losedL_ittle-cy.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + A + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/Y_uslittlecyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/Y_uslittlecyr.glif new file mode 100644 index 00000000..b916a13f --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/Y_uslittlecyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + А-5 + com.fontlab.metricsRight + А-5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/Y_uslittleiotifiedcyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/Y_uslittleiotifiedcyr.glif new file mode 100644 index 00000000..2bf6cc3f --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/Y_uslittleiotifiedcyr.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + А-5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/Z_.glif b/sources/FixelDisplay-Light.ufo/glyphs/Z_.glif new file mode 100644 index 00000000..5eab8eb1 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/Z_.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/Z_.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/Z_.ss01.glif new file mode 100644 index 00000000..f98c4302 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/Z_.ss01.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/Z_acute.glif b/sources/FixelDisplay-Light.ufo/glyphs/Z_acute.glif new file mode 100644 index 00000000..235216f8 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/Z_acute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Z+acute.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/Z_acute.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/Z_acute.ss01.glif new file mode 100644 index 00000000..2afa2db0 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/Z_acute.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Z.ss01+acute.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/Z_caron.glif b/sources/FixelDisplay-Light.ufo/glyphs/Z_caron.glif new file mode 100644 index 00000000..6f70add5 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/Z_caron.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Z+caron.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/Z_caron.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/Z_caron.ss01.glif new file mode 100644 index 00000000..866468bd --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/Z_caron.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Z.ss01+caron.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/Z_dotaccent.glif b/sources/FixelDisplay-Light.ufo/glyphs/Z_dotaccent.glif new file mode 100644 index 00000000..16a136dc --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/Z_dotaccent.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Z+dotaccent.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/Z_dotaccent.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/Z_dotaccent.ss01.glif new file mode 100644 index 00000000..8187138e --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/Z_dotaccent.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Z.ss01+dotaccent.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/Z_e-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/Z_e-cy.glif new file mode 100644 index 00000000..9625c62d --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/Z_e-cy.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |C + com.fontlab.metricsRight + B + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/Z_edieresiscyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/Z_edieresiscyr.glif new file mode 100644 index 00000000..1415440c --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/Z_edieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ze-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/Z_emlya-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/Z_emlya-cy.glif new file mode 100644 index 00000000..8290fa95 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/Z_emlya-cy.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Z-10 + com.fontlab.metricsRight + Z + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/Z_etailcyr.B_S_H_.glif b/sources/FixelDisplay-Light.ufo/glyphs/Z_etailcyr.B_S_H_.glif new file mode 100644 index 00000000..e3aaa6e5 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/Z_etailcyr.B_S_H_.glif @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + З + com.fontlab.metricsRight + З + com.fontlab.recipe + Zetailcyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/Z_etailcyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/Z_etailcyr.glif new file mode 100644 index 00000000..72dbd0b8 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/Z_etailcyr.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + З + com.fontlab.metricsRight + З + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/Z_he-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/Z_he-cy.glif new file mode 100644 index 00000000..01e4dbf8 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/Z_he-cy.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |K + com.fontlab.metricsRight + K + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/Z_he-cy.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/Z_he-cy.ss01.glif new file mode 100644 index 00000000..af3aa6f2 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/Z_he-cy.ss01.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |K + com.fontlab.metricsRight + K + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/Z_hebrevecyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/Z_hebrevecyr.glif new file mode 100644 index 00000000..dd21f5d8 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/Z_hebrevecyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Zhe-cy+breve.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/Z_hedieresiscyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/Z_hedieresiscyr.glif new file mode 100644 index 00000000..8b415e75 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/Z_hedieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Zhe-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/Z_hetailcyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/Z_hetailcyr.glif new file mode 100644 index 00000000..488956ac --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/Z_hetailcyr.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ж + com.fontlab.metricsRight + Katailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/Z_hwe-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/Z_hwe-cy.glif new file mode 100644 index 00000000..c8c9469e --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/Z_hwe-cy.glif @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + З + com.fontlab.metricsRight + Ж + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/Z_jekomicyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/Z_jekomicyr.glif new file mode 100644 index 00000000..7b985a8a --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/Z_jekomicyr.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Dzjekomicyr + com.fontlab.metricsRight + Njekomicyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/_notdef.glif b/sources/FixelDisplay-Light.ufo/glyphs/_notdef.glif new file mode 100644 index 00000000..7261060b --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/_notdef.glif @@ -0,0 +1,178 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + =55 + com.schriftgestaltung.Glyphs.rightMetricsKey + =55 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/_perc-circule.glif b/sources/FixelDisplay-Light.ufo/glyphs/_perc-circule.glif new file mode 100644 index 00000000..701bfe7c --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/_perc-circule.glif @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.schriftgestaltung.Glyphs.Export + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/a-cy.accented.glif b/sources/FixelDisplay-Light.ufo/glyphs/a-cy.accented.glif new file mode 100644 index 00000000..b6eeb2b8 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/a-cy.accented.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+acute + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/a-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/a-cy.glif new file mode 100644 index 00000000..98a5b370 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/a-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/a-cy.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/a-cy.ss01.glif new file mode 100644 index 00000000..ef92026c --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/a-cy.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/a.glif b/sources/FixelDisplay-Light.ufo/glyphs/a.glif new file mode 100644 index 00000000..c55d9b03 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/a.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + n-10 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/a.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/a.ss01.glif new file mode 100644 index 00000000..d8786d94 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/a.ss01.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/aacute.glif b/sources/FixelDisplay-Light.ufo/glyphs/aacute.glif new file mode 100644 index 00000000..0da267ff --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/aacute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+acute + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/aacute.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/aacute.ss01.glif new file mode 100644 index 00000000..d8fc4220 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/aacute.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+acute + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/abreve.glif b/sources/FixelDisplay-Light.ufo/glyphs/abreve.glif new file mode 100644 index 00000000..725b20bb --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/abreve.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+breve + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/abreve.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/abreve.ss01.glif new file mode 100644 index 00000000..0adecf36 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/abreve.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+breve + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/abrevecyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/abrevecyr.glif new file mode 100644 index 00000000..a2b52a75 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/abrevecyr.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+breve + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/acaron.glif b/sources/FixelDisplay-Light.ufo/glyphs/acaron.glif new file mode 100644 index 00000000..98c42219 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/acaron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+caron + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/acircumflex.glif b/sources/FixelDisplay-Light.ufo/glyphs/acircumflex.glif new file mode 100644 index 00000000..bba78ae7 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/acircumflex.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+circumflex + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/acircumflex.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/acircumflex.ss01.glif new file mode 100644 index 00000000..35649308 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/acircumflex.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+circumflex + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/acute.case.glif b/sources/FixelDisplay-Light.ufo/glyphs/acute.case.glif new file mode 100644 index 00000000..52dd3854 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/acute.case.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/acute.glif b/sources/FixelDisplay-Light.ufo/glyphs/acute.glif new file mode 100644 index 00000000..19361ceb --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/acute.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/adieresis.glif b/sources/FixelDisplay-Light.ufo/glyphs/adieresis.glif new file mode 100644 index 00000000..b9bea445 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/adieresis.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+dieresis + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/adieresis.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/adieresis.ss01.glif new file mode 100644 index 00000000..a75e7b0a --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/adieresis.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+dieresis + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/adieresiscyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/adieresiscyr.glif new file mode 100644 index 00000000..cf7b5513 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/adieresiscyr.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/ae.glif b/sources/FixelDisplay-Light.ufo/glyphs/ae.glif new file mode 100644 index 00000000..60ff544f --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/ae.glif @@ -0,0 +1,101 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + a + com.fontlab.metricsRight + e + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/ae.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/ae.ss01.glif new file mode 100644 index 00000000..ae533751 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/ae.ss01.glif @@ -0,0 +1,96 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + a + com.fontlab.metricsRight + e.ss01 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/aeacute.glif b/sources/FixelDisplay-Light.ufo/glyphs/aeacute.glif new file mode 100644 index 00000000..a715b177 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/aeacute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ae+acute + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/agrave.glif b/sources/FixelDisplay-Light.ufo/glyphs/agrave.glif new file mode 100644 index 00000000..fb5db60e --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/agrave.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+grave + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/agrave.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/agrave.ss01.glif new file mode 100644 index 00000000..5aa10423 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/agrave.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+grave + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/aiecyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/aiecyr.glif new file mode 100644 index 00000000..d93f41f5 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/aiecyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ae + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/amacron.glif b/sources/FixelDisplay-Light.ufo/glyphs/amacron.glif new file mode 100644 index 00000000..6a8c4569 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/amacron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+macron + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/amacron.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/amacron.ss01.glif new file mode 100644 index 00000000..9160598e --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/amacron.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+macron + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/ampersand.glif b/sources/FixelDisplay-Light.ufo/glyphs/ampersand.glif new file mode 100644 index 00000000..25383701 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/ampersand.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/aogonek.glif b/sources/FixelDisplay-Light.ufo/glyphs/aogonek.glif new file mode 100644 index 00000000..5185865f --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/aogonek.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+ogonek + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/aogonek.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/aogonek.ss01.glif new file mode 100644 index 00000000..20a4fa21 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/aogonek.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+ogonek + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/apostrophemod.glif b/sources/FixelDisplay-Light.ufo/glyphs/apostrophemod.glif new file mode 100644 index 00000000..b1e7fd1e --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/apostrophemod.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + apostrophe + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/approxequal.glif b/sources/FixelDisplay-Light.ufo/glyphs/approxequal.glif new file mode 100644 index 00000000..d35497a1 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/approxequal.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/aring.glif b/sources/FixelDisplay-Light.ufo/glyphs/aring.glif new file mode 100644 index 00000000..e11a3a23 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/aring.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+ring + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/aring.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/aring.ss01.glif new file mode 100644 index 00000000..e1140003 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/aring.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+ring + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/arrowdown.case.glif b/sources/FixelDisplay-Light.ufo/glyphs/arrowdown.case.glif new file mode 100644 index 00000000..695d5c1c --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/arrowdown.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + arrowup + com.fontlab.metricsRight + arrowup + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/arrowdown.glif b/sources/FixelDisplay-Light.ufo/glyphs/arrowdown.glif new file mode 100644 index 00000000..d0f979c7 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/arrowdown.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + arrowup + com.fontlab.metricsRight + arrowup + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/arrowdown.ss01.case.glif b/sources/FixelDisplay-Light.ufo/glyphs/arrowdown.ss01.case.glif new file mode 100644 index 00000000..8979041c --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/arrowdown.ss01.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + arrowup + com.fontlab.metricsRight + arrowup + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/arrowdown.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/arrowdown.ss01.glif new file mode 100644 index 00000000..e89094a0 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/arrowdown.ss01.glif @@ -0,0 +1,15 @@ + + + + + + + + + com.fontlab.metricsLeft + arrowup + com.fontlab.metricsRight + arrowup + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/arrowleft.case.glif b/sources/FixelDisplay-Light.ufo/glyphs/arrowleft.case.glif new file mode 100644 index 00000000..fd7f4399 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/arrowleft.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + arrowleft + com.fontlab.metricsRight + arrowleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/arrowleft.glif b/sources/FixelDisplay-Light.ufo/glyphs/arrowleft.glif new file mode 100644 index 00000000..39b75dbe --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/arrowleft.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/arrowleft.ss01.case.glif b/sources/FixelDisplay-Light.ufo/glyphs/arrowleft.ss01.case.glif new file mode 100644 index 00000000..bc849fa7 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/arrowleft.ss01.case.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + arrowleft + com.fontlab.metricsRight + arrowleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/arrowleft.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/arrowleft.ss01.glif new file mode 100644 index 00000000..1d1abb35 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/arrowleft.ss01.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + arrowleft + com.fontlab.metricsRight + arrowleft + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/arrowright.case.glif b/sources/FixelDisplay-Light.ufo/glyphs/arrowright.case.glif new file mode 100644 index 00000000..81b9350e --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/arrowright.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |arrowleft + com.fontlab.metricsRight + |arrowleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/arrowright.glif b/sources/FixelDisplay-Light.ufo/glyphs/arrowright.glif new file mode 100644 index 00000000..2392067f --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/arrowright.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + |arrowleft + com.fontlab.metricsRight + |arrowleft + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/arrowright.ss01.case.glif b/sources/FixelDisplay-Light.ufo/glyphs/arrowright.ss01.case.glif new file mode 100644 index 00000000..501f4eff --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/arrowright.ss01.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |arrowleft + com.fontlab.metricsRight + |arrowleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/arrowright.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/arrowright.ss01.glif new file mode 100644 index 00000000..99786f6d --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/arrowright.ss01.glif @@ -0,0 +1,15 @@ + + + + + + + + + com.fontlab.metricsLeft + |arrowleft + com.fontlab.metricsRight + |arrowleft + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/arrowup.case.glif b/sources/FixelDisplay-Light.ufo/glyphs/arrowup.case.glif new file mode 100644 index 00000000..7c3138f1 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/arrowup.case.glif @@ -0,0 +1,15 @@ + + + + + + + + + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/arrowup.glif b/sources/FixelDisplay-Light.ufo/glyphs/arrowup.glif new file mode 100644 index 00000000..985339c9 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/arrowup.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + l() + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/arrowup.ss01.case.glif b/sources/FixelDisplay-Light.ufo/glyphs/arrowup.ss01.case.glif new file mode 100644 index 00000000..c357761d --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/arrowup.ss01.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + arrowup + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/arrowup.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/arrowup.ss01.glif new file mode 100644 index 00000000..8f3fef4d --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/arrowup.ss01.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + arrowup + com.fontlab.metricsRight + l() + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/asciicircum.glif b/sources/FixelDisplay-Light.ufo/glyphs/asciicircum.glif new file mode 100644 index 00000000..c310997e --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/asciicircum.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/asciitilde.glif b/sources/FixelDisplay-Light.ufo/glyphs/asciitilde.glif new file mode 100644 index 00000000..528fa61c --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/asciitilde.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/asterisk.glif b/sources/FixelDisplay-Light.ufo/glyphs/asterisk.glif new file mode 100644 index 00000000..652314e6 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/asterisk.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/at.case.glif b/sources/FixelDisplay-Light.ufo/glyphs/at.case.glif new file mode 100644 index 00000000..3a07cd2d --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/at.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/at.glif b/sources/FixelDisplay-Light.ufo/glyphs/at.glif new file mode 100644 index 00000000..3631254d --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/at.glif @@ -0,0 +1,92 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/atilde.glif b/sources/FixelDisplay-Light.ufo/glyphs/atilde.glif new file mode 100644 index 00000000..899ba0a8 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/atilde.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+tilde + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/atilde.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/atilde.ss01.glif new file mode 100644 index 00000000..9c444fa0 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/atilde.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+tilde + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/b.glif b/sources/FixelDisplay-Light.ufo/glyphs/b.glif new file mode 100644 index 00000000..690b996a --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/b.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/b.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/b.ss01.glif new file mode 100644 index 00000000..c4274c55 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/b.ss01.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/backslash.case.glif b/sources/FixelDisplay-Light.ufo/glyphs/backslash.case.glif new file mode 100644 index 00000000..5f808211 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/backslash.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + backslash + com.fontlab.metricsRight + backslash + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/backslash.glif b/sources/FixelDisplay-Light.ufo/glyphs/backslash.glif new file mode 100644 index 00000000..6b5828e9 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/backslash.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/bar.case.glif b/sources/FixelDisplay-Light.ufo/glyphs/bar.case.glif new file mode 100644 index 00000000..d650ebcb --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/bar.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + H-10 + com.fontlab.metricsRight + H-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/bar.glif b/sources/FixelDisplay-Light.ufo/glyphs/bar.glif new file mode 100644 index 00000000..ba506c2f --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/bar.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H-10 + com.fontlab.metricsRight + H-10 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/be-cy.S_R_B_.glif b/sources/FixelDisplay-Light.ufo/glyphs/be-cy.S_R_B_.glif new file mode 100644 index 00000000..efec34f1 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/be-cy.S_R_B_.glif @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/be-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/be-cy.glif new file mode 100644 index 00000000..37543c87 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/be-cy.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/bishopblack.glif b/sources/FixelDisplay-Light.ufo/glyphs/bishopblack.glif new file mode 100644 index 00000000..6ab1fb4c --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/bishopblack.glif @@ -0,0 +1,241 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =10 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/bishopwhite.glif b/sources/FixelDisplay-Light.ufo/glyphs/bishopwhite.glif new file mode 100644 index 00000000..5a3e2ad4 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/bishopwhite.glif @@ -0,0 +1,331 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/braceleft.case.glif b/sources/FixelDisplay-Light.ufo/glyphs/braceleft.case.glif new file mode 100644 index 00000000..0baf6ae5 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/braceleft.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |braceright.case + com.fontlab.metricsRight + |braceright.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/braceleft.glif b/sources/FixelDisplay-Light.ufo/glyphs/braceleft.glif new file mode 100644 index 00000000..509a3ea9 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/braceleft.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/braceright.case.glif b/sources/FixelDisplay-Light.ufo/glyphs/braceright.case.glif new file mode 100644 index 00000000..8d8a614f --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/braceright.case.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/braceright.glif b/sources/FixelDisplay-Light.ufo/glyphs/braceright.glif new file mode 100644 index 00000000..13db567b --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/braceright.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/bracketangleleft.case.glif b/sources/FixelDisplay-Light.ufo/glyphs/bracketangleleft.case.glif new file mode 100644 index 00000000..0fe10863 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/bracketangleleft.case.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + parenleft.case + com.fontlab.metricsRight + parenleft.case + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/bracketangleleft.glif b/sources/FixelDisplay-Light.ufo/glyphs/bracketangleleft.glif new file mode 100644 index 00000000..94abf373 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/bracketangleleft.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + parenleft + com.fontlab.metricsRight + parenleft + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/bracketangleright.case.glif b/sources/FixelDisplay-Light.ufo/glyphs/bracketangleright.case.glif new file mode 100644 index 00000000..e1936d48 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/bracketangleright.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |bracketangleleft.case + com.fontlab.metricsRight + |bracketangleleft.case + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/bracketangleright.glif b/sources/FixelDisplay-Light.ufo/glyphs/bracketangleright.glif new file mode 100644 index 00000000..8c5c8a0c --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/bracketangleright.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.metricsLeft + |bracketangleleft + com.fontlab.metricsRight + |bracketangleleft + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/bracketleft.case.glif b/sources/FixelDisplay-Light.ufo/glyphs/bracketleft.case.glif new file mode 100644 index 00000000..6ccf9ddb --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/bracketleft.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |bracketright.case + com.fontlab.metricsRight + |bracketright.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/bracketleft.glif b/sources/FixelDisplay-Light.ufo/glyphs/bracketleft.glif new file mode 100644 index 00000000..3b3cbc3c --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/bracketleft.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/bracketright.case.glif b/sources/FixelDisplay-Light.ufo/glyphs/bracketright.case.glif new file mode 100644 index 00000000..d3dbddd5 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/bracketright.case.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |bracketleft + com.fontlab.metricsRight + |bracketleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/bracketright.glif b/sources/FixelDisplay-Light.ufo/glyphs/bracketright.glif new file mode 100644 index 00000000..e7850e80 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/bracketright.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |bracketleft + com.fontlab.metricsRight + |bracketleft + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/breve.case.glif b/sources/FixelDisplay-Light.ufo/glyphs/breve.case.glif new file mode 100644 index 00000000..09252c3a --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/breve.case.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/breve.glif b/sources/FixelDisplay-Light.ufo/glyphs/breve.glif new file mode 100644 index 00000000..d1a5f5dc --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/breve.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/brokenbar.case.glif b/sources/FixelDisplay-Light.ufo/glyphs/brokenbar.case.glif new file mode 100644 index 00000000..596af8d2 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/brokenbar.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + bar + com.fontlab.metricsRight + bar + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/brokenbar.glif b/sources/FixelDisplay-Light.ufo/glyphs/brokenbar.glif new file mode 100644 index 00000000..280b84a5 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/brokenbar.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + bar + com.fontlab.metricsRight + bar + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/bullet.case.glif b/sources/FixelDisplay-Light.ufo/glyphs/bullet.case.glif new file mode 100644 index 00000000..44363cf1 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/bullet.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + period + com.fontlab.metricsRight + period + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/bullet.glif b/sources/FixelDisplay-Light.ufo/glyphs/bullet.glif new file mode 100644 index 00000000..0e138ba9 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/bullet.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + period + com.fontlab.metricsRight + period + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/c.glif b/sources/FixelDisplay-Light.ufo/glyphs/c.glif new file mode 100644 index 00000000..5b8be872 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/c.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/cacute.glif b/sources/FixelDisplay-Light.ufo/glyphs/cacute.glif new file mode 100644 index 00000000..98007623 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/cacute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+acute + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/caron.case.glif b/sources/FixelDisplay-Light.ufo/glyphs/caron.case.glif new file mode 100644 index 00000000..a877526e --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/caron.case.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/caron.glif b/sources/FixelDisplay-Light.ufo/glyphs/caron.glif new file mode 100644 index 00000000..f023c442 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/caron.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/caron.salt.glif b/sources/FixelDisplay-Light.ufo/glyphs/caron.salt.glif new file mode 100644 index 00000000..aa25325d --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/caron.salt.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/ccaron.glif b/sources/FixelDisplay-Light.ufo/glyphs/ccaron.glif new file mode 100644 index 00000000..b4ad536d --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/ccaron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+caron + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/ccedilla.glif b/sources/FixelDisplay-Light.ufo/glyphs/ccedilla.glif new file mode 100644 index 00000000..67fcb2fc --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/ccedilla.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+cedilla + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/cche-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/cche-cy.glif new file mode 100644 index 00000000..4f53c1c5 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/cche-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ч + com.fontlab.metricsRight + ч + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/ccircumflex.glif b/sources/FixelDisplay-Light.ufo/glyphs/ccircumflex.glif new file mode 100644 index 00000000..3eb44e91 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/ccircumflex.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+circumflex + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/cdotaccent.glif b/sources/FixelDisplay-Light.ufo/glyphs/cdotaccent.glif new file mode 100644 index 00000000..c45c60dd --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/cdotaccent.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+dotaccent + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/cedilla.glif b/sources/FixelDisplay-Light.ufo/glyphs/cedilla.glif new file mode 100644 index 00000000..74ae008a --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/cedilla.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/cent.glif b/sources/FixelDisplay-Light.ufo/glyphs/cent.glif new file mode 100644 index 00000000..3e7ceff8 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/cent.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + c + com.fontlab.metricsRight + c + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/che-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/che-cy.glif new file mode 100644 index 00000000..a7f28b22 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/che-cy.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + u-10 + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/cheabkhcyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/cheabkhcyr.glif new file mode 100644 index 00000000..d97d0a23 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/cheabkhcyr.glif @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + e + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/cheabkhtailcyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/cheabkhtailcyr.glif new file mode 100644 index 00000000..aab937bd --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/cheabkhtailcyr.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + cheabkhcyr + com.fontlab.metricsRight + cheabkhcyr + com.fontlab.recipe + cheabkhcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/chedieresiscyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/chedieresiscyr.glif new file mode 100644 index 00000000..1be7a079 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/chedieresiscyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + che-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/chekhakascyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/chekhakascyr.glif new file mode 100644 index 00000000..c09dbfc3 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/chekhakascyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ч + com.fontlab.metricsRight + н + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/chetailcyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/chetailcyr.glif new file mode 100644 index 00000000..6ac66bac --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/chetailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ч + com.fontlab.metricsRight + entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/chevertcyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/chevertcyr.glif new file mode 100644 index 00000000..e18ea775 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/chevertcyr.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ч + com.fontlab.metricsRight + н + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/circumflex.case.glif b/sources/FixelDisplay-Light.ufo/glyphs/circumflex.case.glif new file mode 100644 index 00000000..39688285 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/circumflex.case.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/circumflex.glif b/sources/FixelDisplay-Light.ufo/glyphs/circumflex.glif new file mode 100644 index 00000000..8dfd36cb --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/circumflex.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/clubwhite.glif b/sources/FixelDisplay-Light.ufo/glyphs/clubwhite.glif new file mode 100644 index 00000000..d9104ba6 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/clubwhite.glif @@ -0,0 +1,155 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/colon.case.glif b/sources/FixelDisplay-Light.ufo/glyphs/colon.case.glif new file mode 100644 index 00000000..9d9646e8 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/colon.case.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/colon.glif b/sources/FixelDisplay-Light.ufo/glyphs/colon.glif new file mode 100644 index 00000000..eba17152 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/colon.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/colontriangularmod.glif b/sources/FixelDisplay-Light.ufo/glyphs/colontriangularmod.glif new file mode 100644 index 00000000..a9cd8daf --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/colontriangularmod.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + colon + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/comma.glif b/sources/FixelDisplay-Light.ufo/glyphs/comma.glif new file mode 100644 index 00000000..00a8c041 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/comma.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/commaaccentcomb.glif b/sources/FixelDisplay-Light.ufo/glyphs/commaaccentcomb.glif new file mode 100644 index 00000000..d3e5ae46 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/commaaccentcomb.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/commaaccentcomb.salt.glif b/sources/FixelDisplay-Light.ufo/glyphs/commaaccentcomb.salt.glif new file mode 100644 index 00000000..407a40f1 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/commaaccentcomb.salt.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/contents.plist b/sources/FixelDisplay-Light.ufo/glyphs/contents.plist new file mode 100644 index 00000000..2830b2de --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/contents.plist @@ -0,0 +1,2352 @@ + + + + + .notdef + _notdef.glif + A + A_.glif + A-cy + A_-cy.glif + A-cy.accented + A_-cy.accented.glif + A-cy.ss01 + A_-cy.ss01.glif + A.ss01 + A_.ss01.glif + AE + A_E_.glif + AE.ss01 + A_E_.ss01.glif + AEacute + A_E_acute.glif + Aacute + A_acute.glif + Aacute.ss01 + A_acute.ss01.glif + Abreve + A_breve.glif + Abreve.ss01 + A_breve.ss01.glif + Abrevecyr + A_brevecyr.glif + Acaron + A_caron.glif + Acircumflex + A_circumflex.glif + Acircumflex.ss01 + A_circumflex.ss01.glif + Adieresis + A_dieresis.glif + Adieresis.ss01 + A_dieresis.ss01.glif + Adieresiscyr + A_dieresiscyr.glif + Agrave + A_grave.glif + Agrave.ss01 + A_grave.ss01.glif + Aiecyr + A_iecyr.glif + Amacron + A_macron.glif + Amacron.ss01 + A_macron.ss01.glif + Aogonek + A_ogonek.glif + Aogonek.ss01 + A_ogonek.ss01.glif + Aring + A_ring.glif + Aring.ss01 + A_ring.ss01.glif + Atilde + A_tilde.glif + Atilde.ss01 + A_tilde.ss01.glif + B + B_.glif + Be-cy + B_e-cy.glif + C + C_.glif + CR + C_R_.glif + Cacute + C_acute.glif + Ccaron + C_caron.glif + Ccedilla + C_cedilla.glif + Cche-cy + C_che-cy.glif + Ccircumflex + C_circumflex.glif + Cdotaccent + C_dotaccent.glif + Che-cy + C_he-cy.glif + Cheabkhcyr + C_heabkhcyr.glif + Cheabkhtailcyr + C_heabkhtailcyr.glif + Chedieresiscyr + C_hedieresiscyr.glif + Chekhakascyr + C_hekhakascyr.glif + Chetailcyr + C_hetailcyr.glif + Chevertcyr + C_hevertcyr.glif + CrossedO-cy + C_rossedO_-cy.glif + D + D_.glif + Dcaron + D_caron.glif + Dchecyr + D_checyr.glif + Dcroat + D_croat.glif + De-cy + D_e-cy.glif + De-cy.BGR + D_e-cy.B_G_R_.glif + DeSoft-cy + D_eS_oft-cy.glif + Dekomicyr + D_ekomicyr.glif + Delta + D_elta.glif + Djecyr + D_jecyr.glif + Djekomicyr + D_jekomicyr.glif + Djerv-cy + D_jerv-cy.glif + DoubleO-cy + D_oubleO_-cy.glif + Dwe-cy + D_we-cy.glif + Dze-cy + D_ze-cy.glif + DzeReversed-cy + D_zeR_eversed-cy.glif + Dzeabkhcyr + D_zeabkhcyr.glif + Dzelo-cy + D_zelo-cy.glif + Dzhecyr + D_zhecyr.glif + Dzjekomicyr + D_zjekomicyr.glif + Dzwe-cy + D_zwe-cy.glif + Dzze-cy + D_zze-cy.glif + Dzzhecyr + D_zzhecyr.glif + E + E_.glif + E-cy + E_-cy.glif + E-cy.accented + E_-cy.accented.glif + Eacute + E_acute.glif + Ebreve + E_breve.glif + Ecaron + E_caron.glif + Ecircumflex + E_circumflex.glif + Edieresis + E_dieresis.glif + Edotaccent + E_dotaccent.glif + Ef-cy + E_f-cy.glif + Ef-cy.BGR + E_f-cy.B_G_R_.glif + Egrave + E_grave.glif + Eiotifiedcyr + E_iotifiedcyr.glif + El-cy + E_l-cy.glif + El-cy.BGR + E_l-cy.B_G_R_.glif + ElSoft-cy + E_lS_oft-cy.glif + Elhookcyr + E_lhookcyr.glif + Elmiddlehookcyr + E_lmiddlehookcyr.glif + Elsharptailcyr + E_lsharptailcyr.glif + Elsmallcyr + E_lsmallcyr.glif + Eltailcyr + E_ltailcyr.glif + Em-cy + E_m-cy.glif + Em-cy.ss01 + E_m-cy.ss01.glif + EmSoft-cy + E_mS_oft-cy.glif + Emacron + E_macron.glif + Emsharptailcyr + E_msharptailcyr.glif + En-cy + E_n-cy.glif + Eng + E_ng.glif + Eng.ss01 + E_ng.ss01.glif + Engecyr + E_ngecyr.glif + Enhookcyr + E_nhookcyr.glif + Enhookleftcyr + E_nhookleftcyr.glif + Enmiddlehookcyr + E_nmiddlehookcyr.glif + Ensharptailcyr + E_nsharptailcyr.glif + Entailcyr + E_ntailcyr.glif + Eogonek + E_ogonek.glif + Er-cy + E_r-cy.glif + Ereversed-cy + E_reversed-cy.glif + Ereversed-cy.accented + E_reversed-cy.accented.glif + Ereverseddieresiscyr + E_reverseddieresiscyr.glif + Ertickcyr + E_rtickcyr.glif + Es-cy + E_s-cy.glif + Estailcyr + E_stailcyr.glif + Estailcyr.BSH + E_stailcyr.B_S_H_.glif + Estailcyr.CHU + E_stailcyr.C_H_U_.glif + Eth + E_th.glif + F + F_.glif + Fitacyr + F_itacyr.glif + G + G_.glif + G.ss01 + G_.ss01.glif + Gacute + G_acute.glif + Gacute.ss01 + G_acute.ss01.glif + Gbreve + G_breve.glif + Gbreve.ss01 + G_breve.ss01.glif + Gcircumflex + G_circumflex.glif + Gcircumflex.ss01 + G_circumflex.ss01.glif + Gcommaaccent + G_commaaccent.glif + Gcommaaccent.ss01 + G_commaaccent.ss01.glif + Gdotaccent + G_dotaccent.glif + Gdotaccent.ss01 + G_dotaccent.ss01.glif + Ge-cy + G_e-cy.glif + Gehookcyr + G_ehookcyr.glif + Gehookstrokecyr + G_ehookstrokecyr.glif + Germandbls + G_ermandbls.glif + Gestrokecyr + G_estrokecyr.glif + Gestrokecyr.BSH + G_estrokecyr.B_S_H_.glif + Getailcyr + G_etailcyr.glif + Gheupturn-cy + G_heupturn-cy.glif + Gjecyr + G_jecyr.glif + H + H_.glif + Ha-cy + H_a-cy.glif + Ha-cy.ss01 + H_a-cy.ss01.glif + Haabkhcyr + H_aabkhcyr.glif + Hahookcyr + H_ahookcyr.glif + Hardsign-cy + H_ardsign-cy.glif + Hastrokecyr + H_astrokecyr.glif + Hbar + H_bar.glif + Hcircumflex + H_circumflex.glif + Hwe-cy + H_we-cy.glif + I + I_.glif + I-cy + I_-cy.glif + IJ + I_J_.glif + Ia-cy + I_a-cy.glif + Ia-cy.accented + I_a-cy.accented.glif + Ia-cy.ss01 + I_a-cy.ss01.glif + Iacute + I_acute.glif + Ibreve + I_breve.glif + Icircumflex + I_circumflex.glif + Idieresis + I_dieresis.glif + Idieresiscyr + I_dieresiscyr.glif + Idotaccent + I_dotaccent.glif + Ie-cy + I_e-cy.glif + Iebrevecyr + I_ebrevecyr.glif + Iegravecyr + I_egravecyr.glif + Igrave + I_grave.glif + Igravecyr + I_gravecyr.glif + Ii-cy + I_i-cy.glif + Ii-cy.accented + I_i-cy.accented.glif + Iishort-cy + I_ishort-cy.glif + Imacron + I_macron.glif + Imacroncyr + I_macroncyr.glif + Io-cy + I_o-cy.glif + Io-cy.accented + I_o-cy.accented.glif + Iogonek + I_ogonek.glif + Iota-cy + I_ota-cy.glif + IotifiedA-cy + I_otifiedA_-cy.glif + Ishortsharptailcyr + I_shortsharptailcyr.glif + Itilde + I_tilde.glif + Iu-cy + I_u-cy.glif + Iu-cy.accented + I_u-cy.accented.glif + Izhitsacyr + I_zhitsacyr.glif + Izhitsagravedblcyr + I_zhitsagravedblcyr.glif + J + J_.glif + J.ss01 + J_.ss01.glif + Jcircumflex + J_circumflex.glif + Jcircumflex.ss01 + J_circumflex.ss01.glif + Jecyr + J_ecyr.glif + K + K_.glif + K.ss01 + K_.ss01.glif + Ka-cy + K_a-cy.glif + Ka-cy.ss01 + K_a-cy.ss01.glif + Kaaleutcyr + K_aaleutcyr.glif + Kabashkcyr + K_abashkcyr.glif + Kahookcyr + K_ahookcyr.glif + Kastrokecyr + K_astrokecyr.glif + Katailcyr + K_atailcyr.glif + Kaverticalstrokecyr + K_averticalstrokecyr.glif + Kcommaaccent + K_commaaccent.glif + Kcommaaccent.ss01 + K_commaaccent.ss01.glif + Kjecyr + K_jecyr.glif + Koppacyr + K_oppacyr.glif + Ksicyr + K_sicyr.glif + L + L_.glif + Lacute + L_acute.glif + Lcaron + L_caron.glif + Lcommaaccent + L_commaaccent.glif + Ldot + L_dot.glif + Lhacyr + L_hacyr.glif + Ljecyr + L_jecyr.glif + Ljekomicyr + L_jekomicyr.glif + Lslash + L_slash.glif + M + M_.glif + M.ss01 + M_.ss01.glif + N + N_.glif + N.ss01 + N_.ss01.glif + NULL + N_U_L_L_.glif + Nacute + N_acute.glif + Nacute.ss01 + N_acute.ss01.glif + Ncaron + N_caron.glif + Ncaron.ss01 + N_caron.ss01.glif + Ncommaaccent + N_commaaccent.glif + Ncommaaccent.ss01 + N_commaaccent.ss01.glif + Njecyr + N_jecyr.glif + Njekomicyr + N_jekomicyr.glif + Ntilde + N_tilde.glif + Ntilde.ss01 + N_tilde.ss01.glif + O + O_.glif + O-cy + O_-cy.glif + O-cy.accented + O_-cy.accented.glif + OBinocular-cy + O_B_inocular-cy.glif + ODoubleMonocular-cy + O_D_oubleM_onocular-cy.glif + OE + O_E_.glif + OMonocular-cy + O_M_onocular-cy.glif + Oacute + O_acute.glif + Obarcyr + O_barcyr.glif + Obardieresiscyr + O_bardieresiscyr.glif + Obreve + O_breve.glif + Ocircumflex + O_circumflex.glif + Odieresis + O_dieresis.glif + Odieresiscyr + O_dieresiscyr.glif + Ograve + O_grave.glif + Ohungarumlaut + O_hungarumlaut.glif + Omacron + O_macron.glif + Omega + O_mega.glif + OmegaBroad-cy + O_megaB_road-cy.glif + Omegacyr + O_megacyr.glif + Omegaroundcyr + O_megaroundcyr.glif + Omegatitlocyr + O_megatitlocyr.glif + Oslash + O_slash.glif + Oslashacute + O_slashacute.glif + Otcyr + O_tcyr.glif + Otilde + O_tilde.glif + P + P_.glif + Palochkacyr + P_alochkacyr.glif + Pe-cy + P_e-cy.glif + Pehookcyr + P_ehookcyr.glif + Petailcyr + P_etailcyr.glif + Psicyr + P_sicyr.glif + Q + Q_.glif + Q.ss01 + Q_.ss01.glif + Qacyr + Q_acyr.glif + R + R_.glif + Racute + R_acute.glif + Rcaron + R_caron.glif + Rcommaaccent + R_commaaccent.glif + Reversedzecyr + R_eversedzecyr.glif + Rhacyr + R_hacyr.glif + S + S_.glif + Sacute + S_acute.glif + Scaron + S_caron.glif + Scedilla + S_cedilla.glif + Schwa + S_chwa.glif + Schwacyr + S_chwacyr.glif + Schwadieresiscyr + S_chwadieresiscyr.glif + Scircumflex + S_circumflex.glif + Scommaaccent + S_commaaccent.glif + Semisoftcyr + S_emisoftcyr.glif + Sha-cy + S_ha-cy.glif + Shcha-cy + S_hcha-cy.glif + Shhacyr + S_hhacyr.glif + Shhatailcyr + S_hhatailcyr.glif + Shwe-cy + S_hwe-cy.glif + Sjekomicyr + S_jekomicyr.glif + Softsign-cy + S_oftsign-cy.glif + T + T_.glif + Tbar + T_bar.glif + Tcaron + T_caron.glif + Tcedilla + T_cedilla.glif + Tche-cy + T_che-cy.glif + Tcommaaccent + T_commaaccent.glif + Te-cy + T_e-cy.glif + TeWithMiddleHook-cy + T_eW_ithM_iddleH_ook-cy.glif + Tetailcyr + T_etailcyr.glif + Tetsecyr + T_etsecyr.glif + Thorn + T_horn.glif + Tjekomicyr + T_jekomicyr.glif + Tse-cy + T_se-cy.glif + TseReversed-cy + T_seR_eversed-cy.glif + Tshecyr + T_shecyr.glif + Tsse-cy + T_sse-cy.glif + Tswe-cy + T_swe-cy.glif + Twe-cy + T_we-cy.glif + U + U_.glif + U-cy + U_-cy.glif + U-cy.accented + U_-cy.accented.glif + U-cy.ss01 + U_-cy.ss01.glif + Uacute + U_acute.glif + Uacutedblcyr + U_acutedblcyr.glif + Ubreve + U_breve.glif + Ucircumflex + U_circumflex.glif + Udieresis + U_dieresis.glif + Udieresiscyr + U_dieresiscyr.glif + Ugrave + U_grave.glif + Uhungarumlaut + U_hungarumlaut.glif + UkMonograph-cy + U_kM_onograph-cy.glif + Ukcyr + U_kcyr.glif + Umacron + U_macron.glif + Umacroncyr + U_macroncyr.glif + Uogonek + U_ogonek.glif + Uring + U_ring.glif + Ushort-cy + U_short-cy.glif + Ushort-cy.ss01 + U_short-cy.ss01.glif + Ustraightcyr + U_straightcyr.glif + Ustraightstrokecyr + U_straightstrokecyr.glif + Utilde + U_tilde.glif + V + V_.glif + V.ss01 + V_.ss01.glif + Ve-cy + V_e-cy.glif + W + W_.glif + W.ss01 + W_.ss01.glif + Wacute + W_acute.glif + Wacute.ss01 + W_acute.ss01.glif + Wcircumflex + W_circumflex.glif + Wcircumflex.ss01 + W_circumflex.ss01.glif + Wdieresis + W_dieresis.glif + Wdieresis.ss01 + W_dieresis.ss01.glif + Wecyr + W_ecyr.glif + Wgrave + W_grave.glif + Wgrave.ss01 + W_grave.ss01.glif + X + X_.glif + X.ss01 + X_.ss01.glif + Xatailcyr + X_atailcyr.glif + Y + Y_.glif + Y.ss01 + Y_.ss01.glif + Yacute + Y_acute.glif + Yacute.ss01 + Y_acute.ss01.glif + Yaecyr + Y_aecyr.glif + YatIotified-cy + Y_atI_otified-cy.glif + Yatcyr + Y_atcyr.glif + Ycircumflex + Y_circumflex.glif + Ycircumflex.ss01 + Y_circumflex.ss01.glif + Ydieresis + Y_dieresis.glif + Ydieresis.ss01 + Y_dieresis.ss01.glif + YerNeutral-cy + Y_erN_eutral-cy.glif + Yeru-cy + Y_eru-cy.glif + Yeru-cy.accented + Y_eru-cy.accented.glif + Yeru-cymacron + Y_eru-cymacron.glif + YeruBackYer-cy + Y_eruB_ackY_er-cy.glif + Yi-cy + Y_i-cy.glif + Ylongdieresiscyr + Y_longdieresiscyr.glif + Yn-cy + Y_n-cy.glif + YuReversed-cy + Y_uR_eversed-cy.glif + YusBlended-cy + Y_usB_lended-cy.glif + YusClosedlittle-cy + Y_usC_losedlittle-cy.glif + Yusbigcyr + Y_usbigcyr.glif + Yusbigiotifiedcyr + Y_usbigiotifiedcyr.glif + YusiotifiedClosedLittle-cy + Y_usiotifiedC_losedL_ittle-cy.glif + Yuslittlecyr + Y_uslittlecyr.glif + Yuslittleiotifiedcyr + Y_uslittleiotifiedcyr.glif + Z + Z_.glif + Z.ss01 + Z_.ss01.glif + Zacute + Z_acute.glif + Zacute.ss01 + Z_acute.ss01.glif + Zcaron + Z_caron.glif + Zcaron.ss01 + Z_caron.ss01.glif + Zdotaccent + Z_dotaccent.glif + Zdotaccent.ss01 + Z_dotaccent.ss01.glif + Ze-cy + Z_e-cy.glif + Zedieresiscyr + Z_edieresiscyr.glif + Zemlya-cy + Z_emlya-cy.glif + Zetailcyr + Z_etailcyr.glif + Zetailcyr.BSH + Z_etailcyr.B_S_H_.glif + Zhe-cy + Z_he-cy.glif + Zhe-cy.ss01 + Z_he-cy.ss01.glif + Zhebrevecyr + Z_hebrevecyr.glif + Zhedieresiscyr + Z_hedieresiscyr.glif + Zhetailcyr + Z_hetailcyr.glif + Zhwe-cy + Z_hwe-cy.glif + Zjekomicyr + Z_jekomicyr.glif + _perc-circule + _perc-circule.glif + a + a.glif + a-cy + a-cy.glif + a-cy.accented + a-cy.accented.glif + a-cy.ss01 + a-cy.ss01.glif + a.ss01 + a.ss01.glif + aacute + aacute.glif + aacute.ss01 + aacute.ss01.glif + abreve + abreve.glif + abreve.ss01 + abreve.ss01.glif + abrevecyr + abrevecyr.glif + acaron + acaron.glif + acircumflex + acircumflex.glif + acircumflex.ss01 + acircumflex.ss01.glif + acute + acute.glif + acute.case + acute.case.glif + adieresis + adieresis.glif + adieresis.ss01 + adieresis.ss01.glif + adieresiscyr + adieresiscyr.glif + ae + ae.glif + ae.ss01 + ae.ss01.glif + aeacute + aeacute.glif + agrave + agrave.glif + agrave.ss01 + agrave.ss01.glif + aiecyr + aiecyr.glif + amacron + amacron.glif + amacron.ss01 + amacron.ss01.glif + ampersand + ampersand.glif + aogonek + aogonek.glif + aogonek.ss01 + aogonek.ss01.glif + apostrophemod + apostrophemod.glif + approxequal + approxequal.glif + aring + aring.glif + aring.ss01 + aring.ss01.glif + arrowdown + arrowdown.glif + arrowdown.case + arrowdown.case.glif + arrowdown.ss01 + arrowdown.ss01.glif + arrowdown.ss01.case + arrowdown.ss01.case.glif + arrowleft + arrowleft.glif + arrowleft.case + arrowleft.case.glif + arrowleft.ss01 + arrowleft.ss01.glif + arrowleft.ss01.case + arrowleft.ss01.case.glif + arrowright + arrowright.glif + arrowright.case + arrowright.case.glif + arrowright.ss01 + arrowright.ss01.glif + arrowright.ss01.case + arrowright.ss01.case.glif + arrowup + arrowup.glif + arrowup.case + arrowup.case.glif + arrowup.ss01 + arrowup.ss01.glif + arrowup.ss01.case + arrowup.ss01.case.glif + asciicircum + asciicircum.glif + asciitilde + asciitilde.glif + asterisk + asterisk.glif + at + at.glif + at.case + at.case.glif + atilde + atilde.glif + atilde.ss01 + atilde.ss01.glif + b + b.glif + b.ss01 + b.ss01.glif + backslash + backslash.glif + backslash.case + backslash.case.glif + bar + bar.glif + bar.case + bar.case.glif + be-cy + be-cy.glif + be-cy.SRB + be-cy.S_R_B_.glif + bishopblack + bishopblack.glif + bishopwhite + bishopwhite.glif + braceleft + braceleft.glif + braceleft.case + braceleft.case.glif + braceright + braceright.glif + braceright.case + braceright.case.glif + bracketangleleft + bracketangleleft.glif + bracketangleleft.case + bracketangleleft.case.glif + bracketangleright + bracketangleright.glif + bracketangleright.case + bracketangleright.case.glif + bracketleft + bracketleft.glif + bracketleft.case + bracketleft.case.glif + bracketright + bracketright.glif + bracketright.case + bracketright.case.glif + breve + breve.glif + breve.case + breve.case.glif + brokenbar + brokenbar.glif + brokenbar.case + brokenbar.case.glif + bullet + bullet.glif + bullet.case + bullet.case.glif + c + c.glif + cacute + cacute.glif + caron + caron.glif + caron.case + caron.case.glif + caron.salt + caron.salt.glif + ccaron + ccaron.glif + ccedilla + ccedilla.glif + cche-cy + cche-cy.glif + ccircumflex + ccircumflex.glif + cdotaccent + cdotaccent.glif + cedilla + cedilla.glif + cent + cent.glif + che-cy + che-cy.glif + cheabkhcyr + cheabkhcyr.glif + cheabkhtailcyr + cheabkhtailcyr.glif + chedieresiscyr + chedieresiscyr.glif + chekhakascyr + chekhakascyr.glif + chetailcyr + chetailcyr.glif + chevertcyr + chevertcyr.glif + circumflex + circumflex.glif + circumflex.case + circumflex.case.glif + clubwhite + clubwhite.glif + colon + colon.glif + colon.case + colon.case.glif + colontriangularmod + colontriangularmod.glif + comma + comma.glif + commaaccentcomb + commaaccentcomb.glif + commaaccentcomb.salt + commaaccentcomb.salt.glif + copyright + copyright.glif + crossedo-cy + crossedo-cy.glif + crossedswords + crossedswords.glif + currency + currency.glif + d + d.glif + d.ss01 + d.ss01.glif + dagger + dagger.glif + daggerdbl + daggerdbl.glif + dcaron + dcaron.glif + dcaron.ss01 + dcaron.ss01.glif + dchecyr + dchecyr.glif + dcroat + dcroat.glif + dcroat.ss01 + dcroat.ss01.glif + de-cy + de-cy.glif + de-cy.BGR + de-cy.B_G_R_.glif + de-cy.ss01 + de-cy.ss01.glif + deSoft-cy + deS_oft-cy.glif + degree + degree.glif + dekomicyr + dekomicyr.glif + diamondwhite-misc + diamondwhite-misc.glif + dieresis + dieresis.glif + dieresis.alt + dieresis.alt.glif + dieresis.case + dieresis.case.glif + dieresisacute + dieresisacute.glif + dieresiscase.alt + dieresiscase.alt.glif + divide + divide.glif + djecyr + djecyr.glif + djekomicyr + djekomicyr.glif + djerv-cy + djerv-cy.glif + dollar + dollar.glif + dotaccent + dotaccent.glif + dotaccent.case + dotaccent.case.glif + doubleo-cy + doubleo-cy.glif + dramsignarmn + dramsignarmn.glif + dwe-cy + dwe-cy.glif + dze-cy + dze-cy.glif + dzeReversed-cy + dzeR_eversed-cy.glif + dzeabkhcyr + dzeabkhcyr.glif + dzelo-cy + dzelo-cy.glif + dzhecyr + dzhecyr.glif + dzjekomicyr + dzjekomicyr.glif + dzwe-cy + dzwe-cy.glif + dzze-cy + dzze-cy.glif + dzzhecyr + dzzhecyr.glif + e + e.glif + e-cy + e-cy.glif + e-cy.accented + e-cy.accented.glif + e-cy.hist + e-cy.hist.glif + e.ss01 + e.ss01.glif + eacute + eacute.glif + eacute.ss01 + eacute.ss01.glif + ebreve + ebreve.glif + ebreve.ss01 + ebreve.ss01.glif + ecaron + ecaron.glif + ecaron.ss01 + ecaron.ss01.glif + ecircumflex + ecircumflex.glif + ecircumflex.ss01 + ecircumflex.ss01.glif + edieresis + edieresis.glif + edieresis.ss01 + edieresis.ss01.glif + edotaccent + edotaccent.glif + edotaccent.ss01 + edotaccent.ss01.glif + ef-cy + ef-cy.glif + egrave + egrave.glif + egrave.ss01 + egrave.ss01.glif + eight + eight.glif + eight.osf + eight.osf.glif + eight.tf + eight.tf.glif + eiotifiedcyr + eiotifiedcyr.glif + eiotifiedcyr.BGR + eiotifiedcyr.B_G_R_.glif + el-cy + el-cy.glif + el-cy.BGR + el-cy.B_G_R_.glif + el-cy.ss01 + el-cy.ss01.glif + elSoft-cy + elS_oft-cy.glif + elhookcyr + elhookcyr.glif + ellipsis + ellipsis.glif + elmiddlehookcyr + elmiddlehookcyr.glif + elsharptailcyr + elsharptailcyr.glif + eltailcyr + eltailcyr.glif + em-cy + em-cy.glif + emSoft-cy + emS_oft-cy.glif + emacron + emacron.glif + emacron.ss01 + emacron.ss01.glif + emdash + emdash.glif + emdash.case + emdash.case.glif + emsharptailcyr + emsharptailcyr.glif + en-cy + en-cy.glif + enclosingcirclecomb + enclosingcirclecomb.glif + endash + endash.glif + endash.case + endash.case.glif + eng + eng.glif + engecyr + engecyr.glif + enhookcyr + enhookcyr.glif + enhookleftcyr + enhookleftcyr.glif + enmiddlehookcyr + enmiddlehookcyr.glif + ensharptailcyr + ensharptailcyr.glif + entailcyr + entailcyr.glif + eogonek + eogonek.glif + eogonek.ss01 + eogonek.ss01.glif + equal + equal.glif + er-cy + er-cy.glif + er-cy.ss01 + er-cy.ss01.glif + ereversed-cy + ereversed-cy.glif + ereversed-cy.accented + ereversed-cy.accented.glif + ereverseddieresiscyr + ereverseddieresiscyr.glif + ertickcyr + ertickcyr.glif + es-cy + es-cy.glif + estailcyr + estailcyr.glif + estailcyr.BSH + estailcyr.B_S_H_.glif + estailcyr.CHU + estailcyr.C_H_U_.glif + estimated + estimated.glif + eth + eth.glif + eturned + eturned.glif + euro + euro.glif + exclam + exclam.glif + exclamdown + exclamdown.glif + exclamdown.case + exclamdown.case.glif + f + f.glif + f.ss01 + f.ss01.glif + f_f + f_f.glif + f_f.ss01 + f_f.ss01.glif + f_f_i + f_f_i.glif + f_f_i.ss01 + f_f_i.ss01.glif + f_f_l + f_f_l.glif + f_f_l.ss01 + f_f_l.ss01.glif + fi + fi.glif + fi.ss01 + fi.ss01.glif + fitacyr + fitacyr.glif + five + five.glif + five.osf + five.osf.glif + five.tf + five.tf.glif + fl + fl.glif + fl.ss01 + fl.ss01.glif + floretteblack + floretteblack.glif + floretteoutlinedpetalledblackeight + floretteoutlinedpetalledblackeight.glif + florettewhite + florettewhite.glif + florin + florin.glif + flower + flower.glif + four + four.glif + four.osf + four.osf.glif + four.tf + four.tf.glif + fraction + fraction.glif + g + g.glif + g.ss01 + g.ss01.glif + gacute + gacute.glif + gacute.ss01 + gacute.ss01.glif + gbreve + gbreve.glif + gbreve.ss01 + gbreve.ss01.glif + gcircumflex + gcircumflex.glif + gcircumflex.ss01 + gcircumflex.ss01.glif + gcommaaccent + gcommaaccent.glif + gcommaaccent.ss01 + gcommaaccent.ss01.glif + gdotaccent + gdotaccent.glif + gdotaccent.ss01 + gdotaccent.ss01.glif + ge-cy + ge-cy.glif + ge-cy.BGR + ge-cy.B_G_R_.glif + ge-cy.SRB + ge-cy.S_R_B_.glif + gehookcyr + gehookcyr.glif + gehookstrokecyr + gehookstrokecyr.glif + germandbls + germandbls.glif + germandbls.ss01 + germandbls.ss01.glif + gestrokecyr + gestrokecyr.glif + gestrokecyr.BSH + gestrokecyr.B_S_H_.glif + getailcyr + getailcyr.glif + gheupturn-cy + gheupturn-cy.glif + gjecyr + gjecyr.glif + gjecyr.SRB + gjecyr.S_R_B_.glif + grave + grave.glif + grave.case + grave.case.glif + greater + greater.glif + greaterequal + greaterequal.glif + guillemetleft + guillemetleft.glif + guillemetleft.case + guillemetleft.case.glif + guillemetright + guillemetright.glif + guillemetright.case + guillemetright.case.glif + guilsinglleft + guilsinglleft.glif + guilsinglleft.case + guilsinglleft.case.glif + guilsinglright + guilsinglright.glif + guilsinglright.case + guilsinglright.case.glif + h + h.glif + ha-cy + ha-cy.glif + haabkhcyr + haabkhcyr.glif + hahookcyr + hahookcyr.glif + hardsign-cy + hardsign-cy.glif + hardsign-cy.BGR + hardsign-cy.B_G_R_.glif + hardsign-cy.ss01 + hardsign-cy.ss01.glif + hastrokecyr + hastrokecyr.glif + hbar + hbar.glif + hcircumflex + hcircumflex.glif + heart + heart.glif + heartwhite + heartwhite.glif + hryvnia + hryvnia.glif + hundredmillionscomb-cy + hundredmillionscomb-cy.glif + hundredthousandscombcyr + hundredthousandscombcyr.glif + hungarumlaut + hungarumlaut.glif + hungarumlaut.case + hungarumlaut.case.glif + hwe-cy + hwe-cy.glif + hyphen + hyphen.glif + hyphen.case + hyphen.case.glif + i + i.glif + i-cy + i-cy.glif + ia-cy + ia-cy.glif + ia-cy.accented + ia-cy.accented.glif + ia-cy.ss01 + ia-cy.ss01.glif + iacute + iacute.glif + ibreve + ibreve.glif + icircumflex + icircumflex.glif + idieresis + idieresis.glif + idieresiscyr + idieresiscyr.glif + idotless + idotless.glif + ie-cy + ie-cy.glif + ie-cy.ss01 + ie-cy.ss01.glif + iebrevecyr + iebrevecyr.glif + iegravecyr + iegravecyr.glif + iegravecyr.SRB + iegravecyr.S_R_B_.glif + igrave + igrave.glif + igravecyr + igravecyr.glif + igravecyr.SRB + igravecyr.S_R_B_.glif + ii-cy + ii-cy.glif + ii-cy.BGR + ii-cy.B_G_R_.glif + ii-cy.accented + ii-cy.accented.glif + iishort-cy + iishort-cy.glif + iishort-cy.BGR + iishort-cy.B_G_R_.glif + ij + ij.glif + imacron + imacron.glif + imacroncyr + imacroncyr.glif + increment + increment.glif + infinity + infinity.glif + integral + integral.glif + io-cy + io-cy.glif + io-cy.accented + io-cy.accented.glif + io-cy.ss01 + io-cy.ss01.glif + iogonek + iogonek.glif + iota-cy + iota-cy.glif + iotifieda-cy + iotifieda-cy.glif + iotifieda-cy.BGR + iotifieda-cy.B_G_R_.glif + iotifieda-cy.hist + iotifieda-cy.hist.glif + ishortsharptailcyr + ishortsharptailcyr.glif + itilde + itilde.glif + iu-cy + iu-cy.glif + iu-cy.BGR + iu-cy.B_G_R_.glif + iu-cy.accented + iu-cy.accented.glif + izhitsacyr + izhitsacyr.glif + izhitsagravedblcyr + izhitsagravedblcyr.glif + j + j.glif + jcircumflex + jcircumflex.glif + jdotless + jdotless.glif + je-cy + je-cy.glif + k + k.glif + ka-cy + ka-cy.glif + ka-cy.BGR + ka-cy.B_G_R_.glif + kaaleutcyr + kaaleutcyr.glif + kabashkcyr + kabashkcyr.glif + kahookcyr + kahookcyr.glif + kastrokecyr + kastrokecyr.glif + katailcyr + katailcyr.glif + kaverticalstrokecyr + kaverticalstrokecyr.glif + kcommaaccent + kcommaaccent.glif + kgreenlandic + kgreenlandic.glif + kjecyr + kjecyr.glif + knightblack + knightblack.glif + knightwhite + knightwhite.glif + koppacyr + koppacyr.glif + ksicyr + ksicyr.glif + l + l.glif + l.ss01 + l.ss01.glif + lacute + lacute.glif + lacute.ss01 + lacute.ss01.glif + lcaron + lcaron.glif + lcaron.ss01 + lcaron.ss01.glif + lcommaaccent + lcommaaccent.glif + lcommaaccent.ss01 + lcommaaccent.ss01.glif + ldot + ldot.glif + ldot.ss01 + ldot.ss01.glif + leo + leo.glif + less + less.glif + lessequal + lessequal.glif + lhacyr + lhacyr.glif + ljecyr + ljecyr.glif + ljecyr.ss01 + ljecyr.ss01.glif + ljekomicyr + ljekomicyr.glif + longs + longs.glif + lslash + lslash.glif + lslash.ss01 + lslash.ss01.glif + m + m.glif + macron + macron.glif + macron-fwd + macron-fwd.glif + macron-fwd.alt + macron-fwd.alt.glif + macron.case + macron.case.glif + macronacute.SRB + macronacute.S_R_B_.glif + millionscombcyr + millionscombcyr.glif + minus + minus.glif + minute + minute.glif + mu + mu.glif + multiply + multiply.glif + n + n.glif + nacute + nacute.glif + napostrophe + napostrophe.glif + ncaron + ncaron.glif + ncommaaccent + ncommaaccent.glif + neptune + neptune.glif + nine + nine.glif + nine.osf + nine.osf.glif + nine.tf + nine.tf.glif + njecyr + njecyr.glif + njecyr.ss01 + njecyr.ss01.glif + njekomicyr + njekomicyr.glif + notequal + notequal.glif + ntilde + ntilde.glif + numbersign + numbersign.glif + numero + numero.glif + numero.ss01 + numero.ss01.glif + o + o.glif + o-cy + o-cy.glif + o-cy.accented + o-cy.accented.glif + oBinocular-cy + oB_inocular-cy.glif + oDoubleMonocular-cy + oD_oubleM_onocular-cy.glif + oMonocular-cy + oM_onocular-cy.glif + oacute + oacute.glif + obarcyr + obarcyr.glif + obardieresiscyr + obardieresiscyr.glif + obreve + obreve.glif + ocircumflex + ocircumflex.glif + odieresis + odieresis.glif + odieresiscyr + odieresiscyr.glif + oe + oe.glif + oe.ss01 + oe.ss01.glif + ogonek + ogonek.glif + ograve + ograve.glif + ohungarumlaut + ohungarumlaut.glif + omacron + omacron.glif + omegaBroad-cy + omegaB_road-cy.glif + omegacyr + omegacyr.glif + omegaroundcyr + omegaroundcyr.glif + omegatitlocyr + omegatitlocyr.glif + omultiocular-cy + omultiocular-cy.glif + omultiocular-cy.alt + omultiocular-cy.alt.glif + one + one.glif + one.osf + one.osf.glif + one.tf + one.tf.glif + onehalf + onehalf.glif + onequarter + onequarter.glif + onesuperior + onesuperior.glif + ordfeminine + ordfeminine.glif + ordmasculine + ordmasculine.glif + oslash + oslash.glif + oslashacute + oslashacute.glif + otcyr + otcyr.glif + otilde + otilde.glif + p + p.glif + p.ss01 + p.ss01.glif + palatcombcyr + palatcombcyr.glif + palochkacyr + palochkacyr.glif + paragraph + paragraph.glif + parenleft + parenleft.glif + parenleft.case + parenleft.case.glif + parenright + parenright.glif + parenright.case + parenright.case.glif + partialdiff + partialdiff.glif + pe-cy + pe-cy.glif + pe-cy.BGR + pe-cy.B_G_R_.glif + pe-cy.SRB + pe-cy.S_R_B_.glif + pehookcyr + pehookcyr.glif + percent + percent.glif + period + period.glif + periodcentered + periodcentered.glif + perthousand + perthousand.glif + petailcyr + petailcyr.glif + pi + pi.glif + plus + plus.glif + plusminus + plusminus.glif + pokrytiecombcyr + pokrytiecombcyr.glif + product + product.glif + proportional + proportional.glif + psicyr + psicyr.glif + q + q.glif + q.ss01 + q.ss01.glif + qacyr + qacyr.glif + question + question.glif + questiondown + questiondown.glif + questiondown.case + questiondown.case.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 + radical + radical.glif + rcaron + rcaron.glif + rcommaaccent + rcommaaccent.glif + registered + registered.glif + reversedzecyr + reversedzecyr.glif + rhacyr + rhacyr.glif + ring + ring.glif + ring.case + ring.case.glif + rookblack + rookblack.glif + ruble + ruble.glif + s + s.glif + sacute + sacute.glif + scaron + scaron.glif + scedilla + scedilla.glif + schwacyr + schwacyr.glif + schwadieresiscyr + schwadieresiscyr.glif + scircumflex + scircumflex.glif + scommaaccent + scommaaccent.glif + second + second.glif + section + section.glif + semicolon + semicolon.glif + semicolon.case + semicolon.case.glif + semisoftcyr + semisoftcyr.glif + seven + seven.glif + seven.osf + seven.osf.glif + seven.tf + seven.tf.glif + sha-cy + sha-cy.glif + sha-cy.BGR + sha-cy.B_G_R_.glif + shcha-cy + shcha-cy.glif + shcha-cy.BGR + shcha-cy.B_G_R_.glif + shhacyr + shhacyr.glif + shhatailcyr + shhatailcyr.glif + shwe-cy + shwe-cy.glif + six + six.glif + six.osf + six.osf.glif + six.tf + six.tf.glif + sjekomicyr + sjekomicyr.glif + slash + slash.glif + slash.case + slash.case.glif + softsign-cy + softsign-cy.glif + softsign-cy.BGR + softsign-cy.B_G_R_.glif + softsign-cy.ss01 + softsign-cy.ss01.glif + space + space.glif + spadewhite + spadewhite.glif + sterling + sterling.glif + summation + summation.glif + t + t.glif + t.ss01 + t.ss01.glif + tbar + tbar.glif + tbar.ss01 + tbar.ss01.glif + tcaron + tcaron.glif + tcaron.ss01 + tcaron.ss01.glif + tcedilla + tcedilla.glif + tcedilla.ss01 + tcedilla.ss01.glif + tche-cy + tche-cy.glif + tcommaaccent + tcommaaccent.glif + tcommaaccent.ss01 + tcommaaccent.ss01.glif + te-cy + te-cy.glif + te-cy.BGR + te-cy.B_G_R_.glif + te-cy.SRB + te-cy.S_R_B_.glif + te-cy.ss01 + te-cy.ss01.glif + tenge + tenge.glif + tenmillionscomb-cy + tenmillionscomb-cy.glif + tetailcyr + tetailcyr.glif + tetsecyr + tetsecyr.glif + tewithmiddlehook-cy + tewithmiddlehook-cy.glif + thorn + thorn.glif + thousandmillionscomb-cy + thousandmillionscomb-cy.glif + thousandscyr + thousandscyr.glif + thousandscyr.dnom + thousandscyr.dnom.glif + three + three.glif + three.osf + three.osf.glif + three.tf + three.tf.glif + threequarters + threequarters.glif + threesuperior + threesuperior.glif + tilde + tilde.glif + tilde.case + tilde.case.glif + titlocombcyr + titlocombcyr.glif + tjekomicyr + tjekomicyr.glif + trademark + trademark.glif + tse-cy + tse-cy.glif + tse-cy.BGR + tse-cy.B_G_R_.glif + tseReversed-cy + tseR_eversed-cy.glif + tshecyr + tshecyr.glif + tsse-cy + tsse-cy.glif + tswe-cy + tswe-cy.glif + twe-cy + twe-cy.glif + two + two.glif + two.osf + two.osf.glif + two.tf + two.tf.glif + twosuperior + twosuperior.glif + u + u.glif + u-cy + u-cy.glif + u-cy.accented + u-cy.accented.glif + uacute + uacute.glif + uacutedblcyr + uacutedblcyr.glif + ubreve + ubreve.glif + ucircumflex + ucircumflex.glif + udieresis + udieresis.glif + udieresiscyr + udieresiscyr.glif + ugrave + ugrave.glif + uhungarumlaut + uhungarumlaut.glif + ukMonograph-cy + ukM_onograph-cy.glif + ukcyr + ukcyr.glif + umacron + umacron.glif + umacroncyr + umacroncyr.glif + underscore + underscore.glif + uni1C80 + uni1C_80.glif + uni1C81 + uni1C_81.glif + uni1C82 + uni1C_82.glif + uni1C83 + uni1C_83.glif + uni1C84 + uni1C_84.glif + uni1C85 + uni1C_85.glif + uni1C86 + uni1C_86.glif + uni1C87 + uni1C_87.glif + uni1C88 + uni1C_88.glif + uni1EBC + uni1E_B_C_.glif + uni1EBD + uni1E_B_D_.glif + uni2010 + uni2010.glif + uni2DEE + uni2D_E_E_.glif + uni2DEE.case + uni2D_E_E_.case.glif + uniE000 + uniE_000.glif + uniE000.alt + uniE_000.alt.glif + uniE01A + uniE_01A_.glif + uniF43A + uniF_43A_.glif + uniF43B + uniF_43B_.glif + uniF45D + uniF_45D_.glif + uniF45E + uniF_45E_.glif + uniF45F + uniF_45F_.glif + uniF475 + uniF_475.glif + uniF476 + uniF_476.glif + uniF477 + uniF_477.glif + uniF478 + uniF_478.glif + uniF479 + uniF_479.glif + uniF498 + uniF_498.glif + uniF499 + uniF_499.glif + uniF49A + uniF_49A_.glif + uniF49B + uniF_49B_.glif + uniF49C + uniF_49C_.glif + uniF49D + uniF_49D_.glif + uniF49E + uniF_49E_.glif + uniF49F + uniF_49F_.glif + uniF4C6 + uniF_4C_6.glif + uniF4C7 + uniF_4C_7.glif + uniF4CC + uniF_4C_C_.glif + uniF4CD + uniF_4C_D_.glif + uniF4D2 + uniF_4D_2.glif + uniF4D3 + uniF_4D_3.glif + uniF4D4 + uniF_4D_4.glif + uniF4D5 + uniF_4D_5.glif + uniF4D6 + uniF_4D_6.glif + uniF4D7 + uniF_4D_7.glif + uniF4D8 + uniF_4D_8.glif + uniF4D9 + uniF_4D_9.glif + uniF50E + uniF_50E_.glif + uniF50F + uniF_50F_.glif + uniF510 + uniF_510.glif + uniF511 + uniF_511.glif + uniF512 + uniF_512.glif + uniF513 + uniF_513.glif + uniF514 + uniF_514.glif + uniF515 + uniF_515.glif + uniF516 + uniF_516.glif + uniF517 + uniF_517.glif + uniF518 + uniF_518.glif + uniF519 + uniF_519.glif + uniF51A + uniF_51A_.glif + uniF51B + uniF_51B_.glif + uniF51C + uniF_51C_.glif + uniF51D + uniF_51D_.glif + uniF51E + uniF_51E_.glif + uniF51F + uniF_51F_.glif + uniF521 + uniF_521.glif + uniF522 + uniF_522.glif + uniF523 + uniF_523.glif + uniF524 + uniF_524.glif + uniF525 + uniF_525.glif + uniF526 + uniF_526.glif + uniF527 + uniF_527.glif + uniF528 + uniF_528.glif + uniF529 + uniF_529.glif + uniF52A + uniF_52A_.glif + uniF52B + uniF_52B_.glif + uniF52C + uniF_52C_.glif + uniF52D + uniF_52D_.glif + uniF52E + uniF_52E_.glif + uniF52F + uniF_52F_.glif + uniF532 + uniF_532.glif + uniF533 + uniF_533.glif + uniF536 + uniF_536.glif + uniF537 + uniF_537.glif + uniF538 + uniF_538.glif + uniF539 + uniF_539.glif + uniF830 + uniF_830.glif + uniF831 + uniF_831.glif + uniF833 + uniF_833.glif + uniF834 + uniF_834.glif + uniF839 + uniF_839.glif + uniF83A + uniF_83A_.glif + uniF86F + uniF_86F_.glif + uniF870 + uniF_870.glif + uniF872 + uniF_872.glif + uniF873 + uniF_873.glif + uniF875 + uniF_875.glif + uniF876 + uniF_876.glif + uniF878 + uniF_878.glif + uniF879 + uniF_879.glif + uniF87B + uniF_87B_.glif + uniF87C + uniF_87C_.glif + uniF87E + uniF_87E_.glif + uniF87F + uniF_87F_.glif + uogonek + uogonek.glif + uring + uring.glif + ushort-cy + ushort-cy.glif + ustraightcyr + ustraightcyr.glif + ustraightstrokecyr + ustraightstrokecyr.glif + utilde + utilde.glif + v + v.glif + ve-cy + ve-cy.glif + ve-cy.BGR + ve-cy.B_G_R_.glif + ve-cy.ss01 + ve-cy.ss01.glif + virgo + virgo.glif + vzmetcomb-cy + vzmetcomb-cy.glif + w + w.glif + wacute + wacute.glif + wcircumflex + wcircumflex.glif + wdieresis + wdieresis.glif + wecyr + wecyr.glif + wgrave + wgrave.glif + x + x.glif + xatailcyr + xatailcyr.glif + y + y.glif + yacute + yacute.glif + yaecyr + yaecyr.glif + yatIotified-cy + yatI_otified-cy.glif + yatcyr + yatcyr.glif + yatcyr.BGR + yatcyr.B_G_R_.glif + ycircumflex + ycircumflex.glif + ydieresis + ydieresis.glif + yen + yen.glif + yen.ss01 + yen.ss01.glif + yerNeutral-cy + yerN_eutral-cy.glif + yeru-cy + yeru-cy.glif + yeru-cy.accented + yeru-cy.accented.glif + yeru-cy.ss01 + yeru-cy.ss01.glif + yeruBackyer-cy + yeruB_ackyer-cy.glif + yi-cy + yi-cy.glif + yi-cy.alt + yi-cy.alt.glif + ylongdieresiscyr + ylongdieresiscyr.glif + yn-cy + yn-cy.glif + yuReversed-cy + yuR_eversed-cy.glif + yusBlended-cy + yusB_lended-cy.glif + yusClosedlittle-cy + yusC_losedlittle-cy.glif + yusbigcyr + yusbigcyr.glif + yusbigiotifiedcyr + yusbigiotifiedcyr.glif + yusbigiotifiedcyr.BGR + yusbigiotifiedcyr.B_G_R_.glif + yusiotifiedClosedLittle-cy + yusiotifiedC_losedL_ittle-cy.glif + yuslittlecyr + yuslittlecyr.glif + yuslittleiotifiedcyr + yuslittleiotifiedcyr.glif + z + z.glif + zacute + zacute.glif + zcaron + zcaron.glif + zdotaccent + zdotaccent.glif + ze-cy + ze-cy.glif + ze-cy.BGR + ze-cy.B_G_R_.glif + zedieresiscyr + zedieresiscyr.glif + zemlya-cy + zemlya-cy.glif + zero + zero.glif + zero.osf + zero.osf.glif + zero.tf + zero.tf.glif + zetailcyr + zetailcyr.glif + zetailcyr.BSH + zetailcyr.B_S_H_.glif + zhe-cy + zhe-cy.glif + zhe-cy.BGR + zhe-cy.B_G_R_.glif + zhebrevecyr + zhebrevecyr.glif + zhedieresiscyr + zhedieresiscyr.glif + zhetailcyr + zhetailcyr.glif + zhwe-cy + zhwe-cy.glif + zjekomicyr + zjekomicyr.glif + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/copyright.glif b/sources/FixelDisplay-Light.ufo/glyphs/copyright.glif new file mode 100644 index 00000000..d18bfe6e --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/copyright.glif @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/crossedo-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/crossedo-cy.glif new file mode 100644 index 00000000..22bb33e6 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/crossedo-cy.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + com.fontlab.recipe + o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/crossedswords.glif b/sources/FixelDisplay-Light.ufo/glyphs/crossedswords.glif new file mode 100644 index 00000000..3b3a49db --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/crossedswords.glif @@ -0,0 +1,103 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/currency.glif b/sources/FixelDisplay-Light.ufo/glyphs/currency.glif new file mode 100644 index 00000000..a23791ee --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/currency.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/d.glif b/sources/FixelDisplay-Light.ufo/glyphs/d.glif new file mode 100644 index 00000000..67568e8b --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/d.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/d.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/d.ss01.glif new file mode 100644 index 00000000..2cdc4ef5 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/d.ss01.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/dagger.glif b/sources/FixelDisplay-Light.ufo/glyphs/dagger.glif new file mode 100644 index 00000000..794747d6 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/dagger.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/daggerdbl.glif b/sources/FixelDisplay-Light.ufo/glyphs/daggerdbl.glif new file mode 100644 index 00000000..bde46276 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/daggerdbl.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/dcaron.glif b/sources/FixelDisplay-Light.ufo/glyphs/dcaron.glif new file mode 100644 index 00000000..d6a1103d --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/dcaron.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + d+caron.salt + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/dcaron.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/dcaron.ss01.glif new file mode 100644 index 00000000..11f00720 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/dcaron.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + d.ss01+caron.salt + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/dchecyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/dchecyr.glif new file mode 100644 index 00000000..9da30182 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/dchecyr.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + д+10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/dcroat.glif b/sources/FixelDisplay-Light.ufo/glyphs/dcroat.glif new file mode 100644 index 00000000..c1de16c7 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/dcroat.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + d + com.fontlab.metricsRight + |hbar + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/dcroat.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/dcroat.ss01.glif new file mode 100644 index 00000000..420de9d8 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/dcroat.ss01.glif @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + d.ss01 + com.fontlab.metricsRight + |hbar + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/de-cy.B_G_R_.glif b/sources/FixelDisplay-Light.ufo/glyphs/de-cy.B_G_R_.glif new file mode 100644 index 00000000..4aa03324 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/de-cy.B_G_R_.glif @@ -0,0 +1,77 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + q + com.fontlab.metricsRight + q + com.fontlab.recipe + uni1C81 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/de-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/de-cy.glif new file mode 100644 index 00000000..56d460f1 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/de-cy.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/de-cy.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/de-cy.ss01.glif new file mode 100644 index 00000000..6c751578 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/de-cy.ss01.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/deS_oft-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/deS_oft-cy.glif new file mode 100644 index 00000000..7474cd8e --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/deS_oft-cy.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + д + com.fontlab.metricsRight + ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/degree.glif b/sources/FixelDisplay-Light.ufo/glyphs/degree.glif new file mode 100644 index 00000000..0a81307c --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/degree.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/dekomicyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/dekomicyr.glif new file mode 100644 index 00000000..bc9e981e --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/dekomicyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + d + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/diamondwhite-misc.glif b/sources/FixelDisplay-Light.ufo/glyphs/diamondwhite-misc.glif new file mode 100644 index 00000000..a1f9a578 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/diamondwhite-misc.glif @@ -0,0 +1,145 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =43 + com.fontlab.metricsRight + =43 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/dieresis.alt.glif b/sources/FixelDisplay-Light.ufo/glyphs/dieresis.alt.glif new file mode 100644 index 00000000..1b66aea9 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/dieresis.alt.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 1,0.6,0.994,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/dieresis.case.glif b/sources/FixelDisplay-Light.ufo/glyphs/dieresis.case.glif new file mode 100644 index 00000000..fcc0a88a --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/dieresis.case.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/dieresis.glif b/sources/FixelDisplay-Light.ufo/glyphs/dieresis.glif new file mode 100644 index 00000000..66009c40 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/dieresis.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/dieresisacute.glif b/sources/FixelDisplay-Light.ufo/glyphs/dieresisacute.glif new file mode 100644 index 00000000..87160e3a --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/dieresisacute.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/dieresiscase.alt.glif b/sources/FixelDisplay-Light.ufo/glyphs/dieresiscase.alt.glif new file mode 100644 index 00000000..1c1f83bc --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/dieresiscase.alt.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 1,0.6,0.994,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/divide.glif b/sources/FixelDisplay-Light.ufo/glyphs/divide.glif new file mode 100644 index 00000000..8fdefd37 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/divide.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/djecyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/djecyr.glif new file mode 100644 index 00000000..a8275c69 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/djecyr.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hbar + com.fontlab.metricsRight + h + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/djekomicyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/djekomicyr.glif new file mode 100644 index 00000000..6d7ed906 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/djekomicyr.glif @@ -0,0 +1,73 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + d + com.fontlab.metricsRight + njekomicyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/djerv-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/djerv-cy.glif new file mode 100644 index 00000000..1f217ef0 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/djerv-cy.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + r() + com.fontlab.metricsRight + п-30 + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/dollar.glif b/sources/FixelDisplay-Light.ufo/glyphs/dollar.glif new file mode 100644 index 00000000..531dd0ac --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/dollar.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + S + com.fontlab.metricsRight + S + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/dotaccent.case.glif b/sources/FixelDisplay-Light.ufo/glyphs/dotaccent.case.glif new file mode 100644 index 00000000..8a16d0bf --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/dotaccent.case.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/dotaccent.glif b/sources/FixelDisplay-Light.ufo/glyphs/dotaccent.glif new file mode 100644 index 00000000..2a9f6f34 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/dotaccent.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/doubleo-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/doubleo-cy.glif new file mode 100644 index 00000000..ca4a4714 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/doubleo-cy.glif @@ -0,0 +1,91 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + com.fontlab.recipe + o_o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/dramsignarmn.glif b/sources/FixelDisplay-Light.ufo/glyphs/dramsignarmn.glif new file mode 100644 index 00000000..085b02ed --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/dramsignarmn.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/dwe-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/dwe-cy.glif new file mode 100644 index 00000000..4895d894 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/dwe-cy.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + д + com.fontlab.metricsRight + д + com.fontlab.recipe + д + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/dze-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/dze-cy.glif new file mode 100644 index 00000000..94c8febb --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/dze-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + s + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/dzeR_eversed-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/dzeR_eversed-cy.glif new file mode 100644 index 00000000..d9f23411 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/dzeR_eversed-cy.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |s + com.fontlab.metricsRight + |s + com.fontlab.recipe + s + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/dzeabkhcyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/dzeabkhcyr.glif new file mode 100644 index 00000000..a71edfa1 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/dzeabkhcyr.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + z-30 + com.fontlab.metricsRight + з-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/dzelo-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/dzelo-cy.glif new file mode 100644 index 00000000..ecb1292f --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/dzelo-cy.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/dzhecyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/dzhecyr.glif new file mode 100644 index 00000000..8955c115 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/dzhecyr.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/dzjekomicyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/dzjekomicyr.glif new file mode 100644 index 00000000..e7209608 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/dzjekomicyr.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + zjekomicyr + com.fontlab.metricsRight + ц-5 + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/dzwe-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/dzwe-cy.glif new file mode 100644 index 00000000..96caab27 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/dzwe-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + s + com.fontlab.metricsRight + s + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/dzze-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/dzze-cy.glif new file mode 100644 index 00000000..e795f0aa --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/dzze-cy.glif @@ -0,0 +1,84 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + д + com.fontlab.metricsRight + д-30 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/dzzhecyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/dzzhecyr.glif new file mode 100644 index 00000000..6605f3a3 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/dzzhecyr.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + д+5 + com.fontlab.metricsRight + ж+5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/e-cy.accented.glif b/sources/FixelDisplay-Light.ufo/glyphs/e-cy.accented.glif new file mode 100644 index 00000000..3a738827 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/e-cy.accented.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+acute + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/e-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/e-cy.glif new file mode 100644 index 00000000..a724dd7a --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/e-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + c + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/e-cy.hist.glif b/sources/FixelDisplay-Light.ufo/glyphs/e-cy.hist.glif new file mode 100644 index 00000000..7839a7e7 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/e-cy.hist.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + c + com.fontlab.recipe + uni1C83 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/e.glif b/sources/FixelDisplay-Light.ufo/glyphs/e.glif new file mode 100644 index 00000000..e945801b --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/e.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/e.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/e.ss01.glif new file mode 100644 index 00000000..eef1ff33 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/e.ss01.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + O-5 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/eacute.glif b/sources/FixelDisplay-Light.ufo/glyphs/eacute.glif new file mode 100644 index 00000000..a04012ab --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/eacute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+acute + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/eacute.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/eacute.ss01.glif new file mode 100644 index 00000000..dd652f16 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/eacute.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+acute + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/ebreve.glif b/sources/FixelDisplay-Light.ufo/glyphs/ebreve.glif new file mode 100644 index 00000000..27108f45 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/ebreve.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+breve + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/ebreve.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/ebreve.ss01.glif new file mode 100644 index 00000000..10cb73f2 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/ebreve.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+breve + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/ecaron.glif b/sources/FixelDisplay-Light.ufo/glyphs/ecaron.glif new file mode 100644 index 00000000..52b249a4 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/ecaron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+caron + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/ecaron.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/ecaron.ss01.glif new file mode 100644 index 00000000..23328918 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/ecaron.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+caron + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/ecircumflex.glif b/sources/FixelDisplay-Light.ufo/glyphs/ecircumflex.glif new file mode 100644 index 00000000..08752e21 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/ecircumflex.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+circumflex + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/ecircumflex.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/ecircumflex.ss01.glif new file mode 100644 index 00000000..275f00e4 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/ecircumflex.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+circumflex + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/edieresis.glif b/sources/FixelDisplay-Light.ufo/glyphs/edieresis.glif new file mode 100644 index 00000000..2429d809 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/edieresis.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsLeft + e + com.fontlab.metricsRight + e + com.fontlab.recipe + e+dieresis + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/edieresis.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/edieresis.ss01.glif new file mode 100644 index 00000000..45f2822b --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/edieresis.ss01.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsLeft + e + com.fontlab.metricsRight + e + com.fontlab.recipe + e.ss01+dieresis + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/edotaccent.glif b/sources/FixelDisplay-Light.ufo/glyphs/edotaccent.glif new file mode 100644 index 00000000..44a46ace --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/edotaccent.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+dotaccent + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/edotaccent.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/edotaccent.ss01.glif new file mode 100644 index 00000000..7f765a01 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/edotaccent.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+dotaccent + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/ef-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/ef-cy.glif new file mode 100644 index 00000000..95ebd519 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/ef-cy.glif @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/egrave.glif b/sources/FixelDisplay-Light.ufo/glyphs/egrave.glif new file mode 100644 index 00000000..e3e8ced7 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/egrave.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+grave + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/egrave.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/egrave.ss01.glif new file mode 100644 index 00000000..e8e627a0 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/egrave.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+grave + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/eight.glif b/sources/FixelDisplay-Light.ufo/glyphs/eight.glif new file mode 100644 index 00000000..a1be8723 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/eight.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/eight.osf.glif b/sources/FixelDisplay-Light.ufo/glyphs/eight.osf.glif new file mode 100644 index 00000000..ab52c764 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/eight.osf.glif @@ -0,0 +1,15 @@ + + + + + + + + + com.fontlab.metricsLeft + eight + com.fontlab.metricsRight + eight + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/eight.tf.glif b/sources/FixelDisplay-Light.ufo/glyphs/eight.tf.glif new file mode 100644 index 00000000..3ce380e7 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/eight.tf.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/eiotifiedcyr.B_G_R_.glif b/sources/FixelDisplay-Light.ufo/glyphs/eiotifiedcyr.B_G_R_.glif new file mode 100644 index 00000000..e5541254 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/eiotifiedcyr.B_G_R_.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + c + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/eiotifiedcyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/eiotifiedcyr.glif new file mode 100644 index 00000000..a0e9fa76 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/eiotifiedcyr.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + c + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/el-cy.B_G_R_.glif b/sources/FixelDisplay-Light.ufo/glyphs/el-cy.B_G_R_.glif new file mode 100644 index 00000000..075df297 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/el-cy.B_G_R_.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + v + com.fontlab.metricsRight + v + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/el-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/el-cy.glif new file mode 100644 index 00000000..2b581be3 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/el-cy.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/el-cy.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/el-cy.ss01.glif new file mode 100644 index 00000000..80bfc626 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/el-cy.ss01.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/elS_oft-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/elS_oft-cy.glif new file mode 100644 index 00000000..b2505e39 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/elS_oft-cy.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/elhookcyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/elhookcyr.glif new file mode 100644 index 00000000..90c9e2e9 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/elhookcyr.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + н + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/ellipsis.glif b/sources/FixelDisplay-Light.ufo/glyphs/ellipsis.glif new file mode 100644 index 00000000..1692b2fc --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/ellipsis.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/elmiddlehookcyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/elmiddlehookcyr.glif new file mode 100644 index 00000000..5a4d87e1 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/elmiddlehookcyr.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + enmiddlehookcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/elsharptailcyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/elsharptailcyr.glif new file mode 100644 index 00000000..718d4a5c --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/elsharptailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + ensharptailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/eltailcyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/eltailcyr.glif new file mode 100644 index 00000000..30433528 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/eltailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/em-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/em-cy.glif new file mode 100644 index 00000000..39b3a2ce --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/em-cy.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/emS_oft-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/emS_oft-cy.glif new file mode 100644 index 00000000..0d6b82d6 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/emS_oft-cy.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + м + com.fontlab.metricsRight + ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/emacron.glif b/sources/FixelDisplay-Light.ufo/glyphs/emacron.glif new file mode 100644 index 00000000..790abef7 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/emacron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+macron + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/emacron.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/emacron.ss01.glif new file mode 100644 index 00000000..4fc63bc4 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/emacron.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+macron + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/emdash.case.glif b/sources/FixelDisplay-Light.ufo/glyphs/emdash.case.glif new file mode 100644 index 00000000..62c3196d --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/emdash.case.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/emdash.glif b/sources/FixelDisplay-Light.ufo/glyphs/emdash.glif new file mode 100644 index 00000000..51c5fa80 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/emdash.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/emsharptailcyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/emsharptailcyr.glif new file mode 100644 index 00000000..28047601 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/emsharptailcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + м + com.fontlab.metricsRight + ensharptailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/en-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/en-cy.glif new file mode 100644 index 00000000..ecec92ff --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/en-cy.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/enclosingcirclecomb.glif b/sources/FixelDisplay-Light.ufo/glyphs/enclosingcirclecomb.glif new file mode 100644 index 00000000..f9348c9c --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/enclosingcirclecomb.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/endash.case.glif b/sources/FixelDisplay-Light.ufo/glyphs/endash.case.glif new file mode 100644 index 00000000..af095053 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/endash.case.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/endash.glif b/sources/FixelDisplay-Light.ufo/glyphs/endash.glif new file mode 100644 index 00000000..b534e4e6 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/endash.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/eng.glif b/sources/FixelDisplay-Light.ufo/glyphs/eng.glif new file mode 100644 index 00000000..0209143a --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/eng.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + n + com.fontlab.metricsRight + dotlessj + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/engecyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/engecyr.glif new file mode 100644 index 00000000..e6bff108 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/engecyr.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/enhookcyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/enhookcyr.glif new file mode 100644 index 00000000..9291d951 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/enhookcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/enhookleftcyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/enhookleftcyr.glif new file mode 100644 index 00000000..0a5785ea --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/enhookleftcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + j + com.fontlab.metricsRight + н + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/enmiddlehookcyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/enmiddlehookcyr.glif new file mode 100644 index 00000000..a7e6fdd6 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/enmiddlehookcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + softsign-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/ensharptailcyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/ensharptailcyr.glif new file mode 100644 index 00000000..56d3c8fd --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/ensharptailcyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + д + com.fontlab.recipe + entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/entailcyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/entailcyr.glif new file mode 100644 index 00000000..0ac14924 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/entailcyr.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + ц + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/eogonek.glif b/sources/FixelDisplay-Light.ufo/glyphs/eogonek.glif new file mode 100644 index 00000000..5a58e3c9 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/eogonek.glif @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + e+ogonek + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/eogonek.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/eogonek.ss01.glif new file mode 100644 index 00000000..817d9fa7 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/eogonek.ss01.glif @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + e.ss01+ogonek + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/equal.glif b/sources/FixelDisplay-Light.ufo/glyphs/equal.glif new file mode 100644 index 00000000..66a8802d --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/equal.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/er-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/er-cy.glif new file mode 100644 index 00000000..7250300e --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/er-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + p + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/er-cy.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/er-cy.ss01.glif new file mode 100644 index 00000000..48e8ef04 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/er-cy.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + p.ss01 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/ereversed-cy.accented.glif b/sources/FixelDisplay-Light.ufo/glyphs/ereversed-cy.accented.glif new file mode 100644 index 00000000..f5411b90 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/ereversed-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + э+acute + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/ereversed-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/ereversed-cy.glif new file mode 100644 index 00000000..3380ee8a --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/ereversed-cy.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |c + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/ereverseddieresiscyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/ereverseddieresiscyr.glif new file mode 100644 index 00000000..a306b1b1 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/ereverseddieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ereversed-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/ertickcyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/ertickcyr.glif new file mode 100644 index 00000000..c9cd4bf7 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/ertickcyr.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + p + com.fontlab.metricsRight + p + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/es-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/es-cy.glif new file mode 100644 index 00000000..d008baad --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/es-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/estailcyr.B_S_H_.glif b/sources/FixelDisplay-Light.ufo/glyphs/estailcyr.B_S_H_.glif new file mode 100644 index 00000000..73bf7bd3 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/estailcyr.B_S_H_.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + c + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/estailcyr.C_H_U_.glif b/sources/FixelDisplay-Light.ufo/glyphs/estailcyr.C_H_U_.glif new file mode 100644 index 00000000..1465b3ad --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/estailcyr.C_H_U_.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+cedilla + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/estailcyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/estailcyr.glif new file mode 100644 index 00000000..f8c92ac6 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/estailcyr.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + с + com.fontlab.metricsRight + с + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/estimated.glif b/sources/FixelDisplay-Light.ufo/glyphs/estimated.glif new file mode 100644 index 00000000..9a1ee5b3 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/estimated.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/eth.glif b/sources/FixelDisplay-Light.ufo/glyphs/eth.glif new file mode 100644 index 00000000..5053c8da --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/eth.glif @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/eturned.glif b/sources/FixelDisplay-Light.ufo/glyphs/eturned.glif new file mode 100644 index 00000000..8d7f7d00 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/eturned.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + schwacyr + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/euro.glif b/sources/FixelDisplay-Light.ufo/glyphs/euro.glif new file mode 100644 index 00000000..1be0f1c9 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/euro.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + C + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/exclam.glif b/sources/FixelDisplay-Light.ufo/glyphs/exclam.glif new file mode 100644 index 00000000..c32c0fc8 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/exclam.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/exclamdown.case.glif b/sources/FixelDisplay-Light.ufo/glyphs/exclamdown.case.glif new file mode 100644 index 00000000..88bad440 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/exclamdown.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + exclamdown + com.fontlab.metricsRight + exclamdown + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/exclamdown.glif b/sources/FixelDisplay-Light.ufo/glyphs/exclamdown.glif new file mode 100644 index 00000000..6e9100e5 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/exclamdown.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/f.glif b/sources/FixelDisplay-Light.ufo/glyphs/f.glif new file mode 100644 index 00000000..523f7fc9 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/f.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/f.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/f.ss01.glif new file mode 100644 index 00000000..533433c7 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/f.ss01.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/f_f.glif b/sources/FixelDisplay-Light.ufo/glyphs/f_f.glif new file mode 100644 index 00000000..6e61d1a8 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/f_f.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f + com.fontlab.metricsRight + f + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/f_f.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/f_f.ss01.glif new file mode 100644 index 00000000..ea2f3621 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/f_f.ss01.glif @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f.ss01 + com.fontlab.metricsRight + f.ss01 + com.fontlab.recipe + f.ss01_f.ss01 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/f_f_i.glif b/sources/FixelDisplay-Light.ufo/glyphs/f_f_i.glif new file mode 100644 index 00000000..de237c88 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/f_f_i.glif @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f + com.fontlab.metricsRight + i + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/f_f_i.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/f_f_i.ss01.glif new file mode 100644 index 00000000..c776d49d --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/f_f_i.ss01.glif @@ -0,0 +1,88 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f.ss01 + com.fontlab.metricsRight + i + com.fontlab.recipe + f.ss01_f.ss01_i + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/f_f_l.glif b/sources/FixelDisplay-Light.ufo/glyphs/f_f_l.glif new file mode 100644 index 00000000..acc7c743 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/f_f_l.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f + com.fontlab.metricsRight + l + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/f_f_l.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/f_f_l.ss01.glif new file mode 100644 index 00000000..aa92c690 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/f_f_l.ss01.glif @@ -0,0 +1,86 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f.ss01 + com.fontlab.metricsRight + l.ss01 + com.fontlab.recipe + f.ss01_f.ss01_l.ss01 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/fi.glif b/sources/FixelDisplay-Light.ufo/glyphs/fi.glif new file mode 100644 index 00000000..e27ee377 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/fi.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f + com.fontlab.metricsRight + i + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/fi.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/fi.ss01.glif new file mode 100644 index 00000000..4b9283f1 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/fi.ss01.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f.ss01 + com.fontlab.metricsRight + i + com.fontlab.recipe + f.ss01_i + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/fitacyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/fitacyr.glif new file mode 100644 index 00000000..cf6cf748 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/fitacyr.glif @@ -0,0 +1,76 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + obarcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/five.glif b/sources/FixelDisplay-Light.ufo/glyphs/five.glif new file mode 100644 index 00000000..e9fbc942 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/five.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/five.osf.glif b/sources/FixelDisplay-Light.ufo/glyphs/five.osf.glif new file mode 100644 index 00000000..df543ab9 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/five.osf.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + five + com.fontlab.metricsRight + five + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/five.tf.glif b/sources/FixelDisplay-Light.ufo/glyphs/five.tf.glif new file mode 100644 index 00000000..d5c87443 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/five.tf.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/fl.glif b/sources/FixelDisplay-Light.ufo/glyphs/fl.glif new file mode 100644 index 00000000..422e5470 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/fl.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f + com.fontlab.metricsRight + l + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/fl.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/fl.ss01.glif new file mode 100644 index 00000000..482f6535 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/fl.ss01.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f.ss01 + com.fontlab.metricsRight + l.ss01 + com.fontlab.recipe + f.ss01_l.ss01 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/floretteblack.glif b/sources/FixelDisplay-Light.ufo/glyphs/floretteblack.glif new file mode 100644 index 00000000..36dd2679 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/floretteblack.glif @@ -0,0 +1,522 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/floretteoutlinedpetalledblackeight.glif b/sources/FixelDisplay-Light.ufo/glyphs/floretteoutlinedpetalledblackeight.glif new file mode 100644 index 00000000..0a76cdb1 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/floretteoutlinedpetalledblackeight.glif @@ -0,0 +1,693 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/florettewhite.glif b/sources/FixelDisplay-Light.ufo/glyphs/florettewhite.glif new file mode 100644 index 00000000..c51e1c17 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/florettewhite.glif @@ -0,0 +1,417 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/florin.glif b/sources/FixelDisplay-Light.ufo/glyphs/florin.glif new file mode 100644 index 00000000..8587d265 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/florin.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/flower.glif b/sources/FixelDisplay-Light.ufo/glyphs/flower.glif new file mode 100644 index 00000000..6f2ebc4f --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/flower.glif @@ -0,0 +1,278 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/four.glif b/sources/FixelDisplay-Light.ufo/glyphs/four.glif new file mode 100644 index 00000000..e7e97d2d --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/four.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/four.osf.glif b/sources/FixelDisplay-Light.ufo/glyphs/four.osf.glif new file mode 100644 index 00000000..7941aa6b --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/four.osf.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + four + com.fontlab.metricsRight + four + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/four.tf.glif b/sources/FixelDisplay-Light.ufo/glyphs/four.tf.glif new file mode 100644 index 00000000..4b0df936 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/four.tf.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/fraction.glif b/sources/FixelDisplay-Light.ufo/glyphs/fraction.glif new file mode 100644 index 00000000..cd323d5c --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/fraction.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/g.glif b/sources/FixelDisplay-Light.ufo/glyphs/g.glif new file mode 100644 index 00000000..3db505a0 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/g.glif @@ -0,0 +1,94 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/g.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/g.ss01.glif new file mode 100644 index 00000000..5be1759d --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/g.ss01.glif @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/gacute.glif b/sources/FixelDisplay-Light.ufo/glyphs/gacute.glif new file mode 100644 index 00000000..8ed4f370 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/gacute.glif @@ -0,0 +1,109 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + g+acute + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/gacute.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/gacute.ss01.glif new file mode 100644 index 00000000..c576ce74 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/gacute.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + g.ss01+acute + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/gbreve.glif b/sources/FixelDisplay-Light.ufo/glyphs/gbreve.glif new file mode 100644 index 00000000..6a8e6b55 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/gbreve.glif @@ -0,0 +1,119 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + g+breve + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/gbreve.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/gbreve.ss01.glif new file mode 100644 index 00000000..92bf236c --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/gbreve.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + g.ss01+breve + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/gcircumflex.glif b/sources/FixelDisplay-Light.ufo/glyphs/gcircumflex.glif new file mode 100644 index 00000000..57adcc17 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/gcircumflex.glif @@ -0,0 +1,113 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + g+circumflex + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/gcircumflex.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/gcircumflex.ss01.glif new file mode 100644 index 00000000..f66681ef --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/gcircumflex.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + g.ss01+circumflex + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/gcommaaccent.glif b/sources/FixelDisplay-Light.ufo/glyphs/gcommaaccent.glif new file mode 100644 index 00000000..1e66f50b --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/gcommaaccent.glif @@ -0,0 +1,121 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + g+commaaccentcomb.salt + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/gcommaaccent.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/gcommaaccent.ss01.glif new file mode 100644 index 00000000..1a6273d6 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/gcommaaccent.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + g.ss01+commaaccentcomb.salt + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/gdotaccent.glif b/sources/FixelDisplay-Light.ufo/glyphs/gdotaccent.glif new file mode 100644 index 00000000..55bd81e1 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/gdotaccent.glif @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + g+dotaccent + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/gdotaccent.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/gdotaccent.ss01.glif new file mode 100644 index 00000000..e108404c --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/gdotaccent.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + g.ss01+dotaccent + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/ge-cy.B_G_R_.glif b/sources/FixelDisplay-Light.ufo/glyphs/ge-cy.B_G_R_.glif new file mode 100644 index 00000000..d56ca220 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/ge-cy.B_G_R_.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |s+5 + com.fontlab.metricsRight + |s+5 + com.fontlab.recipe + dzeReversed-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/ge-cy.S_R_B_.glif b/sources/FixelDisplay-Light.ufo/glyphs/ge-cy.S_R_B_.glif new file mode 100644 index 00000000..062faee3 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/ge-cy.S_R_B_.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + iota-cy+macron + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/ge-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/ge-cy.glif new file mode 100644 index 00000000..85a2db23 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/ge-cy.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + т + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/gehookcyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/gehookcyr.glif new file mode 100644 index 00000000..1455921f --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/gehookcyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + г + com.fontlab.metricsRight + enmiddlehookcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/gehookstrokecyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/gehookstrokecyr.glif new file mode 100644 index 00000000..874f84e5 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/gehookstrokecyr.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + gestrokecyr + com.fontlab.metricsRight + gestrokecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/germandbls.glif b/sources/FixelDisplay-Light.ufo/glyphs/germandbls.glif new file mode 100644 index 00000000..3cd79b3f --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/germandbls.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + h-5 + com.fontlab.metricsRight + з + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/germandbls.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/germandbls.ss01.glif new file mode 100644 index 00000000..c888191a --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/germandbls.ss01.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f.ss01 + com.fontlab.metricsRight + з + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/gestrokecyr.B_S_H_.glif b/sources/FixelDisplay-Light.ufo/glyphs/gestrokecyr.B_S_H_.glif new file mode 100644 index 00000000..e3b715b6 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/gestrokecyr.B_S_H_.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + г + com.fontlab.metricsRight + gestrokecyr + com.fontlab.recipe + gestrokecyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/gestrokecyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/gestrokecyr.glif new file mode 100644 index 00000000..68656bec --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/gestrokecyr.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + г + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/getailcyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/getailcyr.glif new file mode 100644 index 00000000..bb32077d --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/getailcyr.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + г + com.fontlab.metricsRight + г + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/gheupturn-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/gheupturn-cy.glif new file mode 100644 index 00000000..52a34ac6 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/gheupturn-cy.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + г + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/gjecyr.S_R_B_.glif b/sources/FixelDisplay-Light.ufo/glyphs/gjecyr.S_R_B_.glif new file mode 100644 index 00000000..7baf4099 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/gjecyr.S_R_B_.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + iota-cy+macronacute.SRB + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/gjecyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/gjecyr.glif new file mode 100644 index 00000000..3efcd06f --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/gjecyr.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/grave.case.glif b/sources/FixelDisplay-Light.ufo/glyphs/grave.case.glif new file mode 100644 index 00000000..91873cac --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/grave.case.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/grave.glif b/sources/FixelDisplay-Light.ufo/glyphs/grave.glif new file mode 100644 index 00000000..d45d3db2 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/grave.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/greater.glif b/sources/FixelDisplay-Light.ufo/glyphs/greater.glif new file mode 100644 index 00000000..4d398b5b --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/greater.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |less + com.fontlab.metricsRight + |less + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/greaterequal.glif b/sources/FixelDisplay-Light.ufo/glyphs/greaterequal.glif new file mode 100644 index 00000000..61110a1d --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/greaterequal.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/guillemetleft.case.glif b/sources/FixelDisplay-Light.ufo/glyphs/guillemetleft.case.glif new file mode 100644 index 00000000..aa14b2ca --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/guillemetleft.case.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + guilsinglleft + com.fontlab.metricsRight + guilsinglleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/guillemetleft.glif b/sources/FixelDisplay-Light.ufo/glyphs/guillemetleft.glif new file mode 100644 index 00000000..fc083a8e --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/guillemetleft.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + guilsinglleft + com.fontlab.metricsRight + guilsinglleft + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/guillemetright.case.glif b/sources/FixelDisplay-Light.ufo/glyphs/guillemetright.case.glif new file mode 100644 index 00000000..fe76d8a9 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/guillemetright.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |guillemetleft.case + com.fontlab.metricsRight + |guillemetleft.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/guillemetright.glif b/sources/FixelDisplay-Light.ufo/glyphs/guillemetright.glif new file mode 100644 index 00000000..f92a04ee --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/guillemetright.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |guilsinglleft + com.fontlab.metricsRight + |guilsinglleft + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/guilsinglleft.case.glif b/sources/FixelDisplay-Light.ufo/glyphs/guilsinglleft.case.glif new file mode 100644 index 00000000..ba635f05 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/guilsinglleft.case.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/guilsinglleft.glif b/sources/FixelDisplay-Light.ufo/glyphs/guilsinglleft.glif new file mode 100644 index 00000000..91eb88b6 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/guilsinglleft.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/guilsinglright.case.glif b/sources/FixelDisplay-Light.ufo/glyphs/guilsinglright.case.glif new file mode 100644 index 00000000..24a520af --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/guilsinglright.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |guilsinglleft + com.fontlab.metricsRight + |guilsinglleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/guilsinglright.glif b/sources/FixelDisplay-Light.ufo/glyphs/guilsinglright.glif new file mode 100644 index 00000000..e6dd2291 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/guilsinglright.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + |guilsinglleft + com.fontlab.metricsRight + |guilsinglleft + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/h.glif b/sources/FixelDisplay-Light.ufo/glyphs/h.glif new file mode 100644 index 00000000..66ab0eba --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/h.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + com.fontlab.metricsRight + n + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/ha-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/ha-cy.glif new file mode 100644 index 00000000..f1df9ca5 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/ha-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + x + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/haabkhcyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/haabkhcyr.glif new file mode 100644 index 00000000..6f31e6e0 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/haabkhcyr.glif @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + |o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/hahookcyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/hahookcyr.glif new file mode 100644 index 00000000..db0fd544 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/hahookcyr.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + x + com.fontlab.metricsRight + x + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/hardsign-cy.B_G_R_.glif b/sources/FixelDisplay-Light.ufo/glyphs/hardsign-cy.B_G_R_.glif new file mode 100644 index 00000000..3e888d3d --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/hardsign-cy.B_G_R_.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/hardsign-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/hardsign-cy.glif new file mode 100644 index 00000000..fa0d0c6c --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/hardsign-cy.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/hardsign-cy.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/hardsign-cy.ss01.glif new file mode 100644 index 00000000..43e4281f --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/hardsign-cy.ss01.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/hastrokecyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/hastrokecyr.glif new file mode 100644 index 00000000..37921ee4 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/hastrokecyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + x + com.fontlab.metricsRight + x + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/hbar.glif b/sources/FixelDisplay-Light.ufo/glyphs/hbar.glif new file mode 100644 index 00000000..80960478 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/hbar.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + h + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/hcircumflex.glif b/sources/FixelDisplay-Light.ufo/glyphs/hcircumflex.glif new file mode 100644 index 00000000..b5727ba4 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/hcircumflex.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + h+circumflex.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/heart.glif b/sources/FixelDisplay-Light.ufo/glyphs/heart.glif new file mode 100644 index 00000000..935c720f --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/heart.glif @@ -0,0 +1,320 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/heartwhite.glif b/sources/FixelDisplay-Light.ufo/glyphs/heartwhite.glif new file mode 100644 index 00000000..bbddb1a1 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/heartwhite.glif @@ -0,0 +1,189 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =37 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/hryvnia.glif b/sources/FixelDisplay-Light.ufo/glyphs/hryvnia.glif new file mode 100644 index 00000000..86d5aad3 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/hryvnia.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/hundredmillionscomb-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/hundredmillionscomb-cy.glif new file mode 100644 index 00000000..f8530c0c --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/hundredmillionscomb-cy.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/hundredthousandscombcyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/hundredthousandscombcyr.glif new file mode 100644 index 00000000..ce9d0e89 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/hundredthousandscombcyr.glif @@ -0,0 +1,141 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/hungarumlaut.case.glif b/sources/FixelDisplay-Light.ufo/glyphs/hungarumlaut.case.glif new file mode 100644 index 00000000..8c17da4b --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/hungarumlaut.case.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/hungarumlaut.glif b/sources/FixelDisplay-Light.ufo/glyphs/hungarumlaut.glif new file mode 100644 index 00000000..e204ee2b --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/hungarumlaut.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/hwe-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/hwe-cy.glif new file mode 100644 index 00000000..6f85c84b --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/hwe-cy.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + h + com.fontlab.metricsRight + h + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/hyphen.case.glif b/sources/FixelDisplay-Light.ufo/glyphs/hyphen.case.glif new file mode 100644 index 00000000..a68043b0 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/hyphen.case.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.metricsLeft + hyphen + com.fontlab.metricsRight + hyphen + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/hyphen.glif b/sources/FixelDisplay-Light.ufo/glyphs/hyphen.glif new file mode 100644 index 00000000..0ddd3c0f --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/hyphen.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/i-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/i-cy.glif new file mode 100644 index 00000000..c738db5d --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/i-cy.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + i + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/i.glif b/sources/FixelDisplay-Light.ufo/glyphs/i.glif new file mode 100644 index 00000000..3e8b6178 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/i.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + dotlessi+dotaccent + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/ia-cy.accented.glif b/sources/FixelDisplay-Light.ufo/glyphs/ia-cy.accented.glif new file mode 100644 index 00000000..4250f77b --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/ia-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + я+acute + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/ia-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/ia-cy.glif new file mode 100644 index 00000000..71bb9edd --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/ia-cy.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/ia-cy.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/ia-cy.ss01.glif new file mode 100644 index 00000000..aa618ebe --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/ia-cy.ss01.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/iacute.glif b/sources/FixelDisplay-Light.ufo/glyphs/iacute.glif new file mode 100644 index 00000000..402fc393 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/iacute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + dotlessi+acute + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/ibreve.glif b/sources/FixelDisplay-Light.ufo/glyphs/ibreve.glif new file mode 100644 index 00000000..e79efea4 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/ibreve.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + dotlessi+breve + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/icircumflex.glif b/sources/FixelDisplay-Light.ufo/glyphs/icircumflex.glif new file mode 100644 index 00000000..7009fc98 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/icircumflex.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + dotlessi+circumflex + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/idieresis.glif b/sources/FixelDisplay-Light.ufo/glyphs/idieresis.glif new file mode 100644 index 00000000..e9b7f013 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/idieresis.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + idotless+dieresis.alt + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/idieresiscyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/idieresiscyr.glif new file mode 100644 index 00000000..6969685e --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/idieresiscyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ii-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/idotless.glif b/sources/FixelDisplay-Light.ufo/glyphs/idotless.glif new file mode 100644 index 00000000..851f918a --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/idotless.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/ie-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/ie-cy.glif new file mode 100644 index 00000000..5a643c41 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/ie-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/ie-cy.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/ie-cy.ss01.glif new file mode 100644 index 00000000..2509e59d --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/ie-cy.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/iebrevecyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/iebrevecyr.glif new file mode 100644 index 00000000..3a86873d --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/iebrevecyr.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+breve + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/iegravecyr.S_R_B_.glif b/sources/FixelDisplay-Light.ufo/glyphs/iegravecyr.S_R_B_.glif new file mode 100644 index 00000000..f01a5ec0 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/iegravecyr.S_R_B_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+grave + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/iegravecyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/iegravecyr.glif new file mode 100644 index 00000000..627f184a --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/iegravecyr.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+grave + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/igrave.glif b/sources/FixelDisplay-Light.ufo/glyphs/igrave.glif new file mode 100644 index 00000000..d9d22d8b --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/igrave.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + dotlessi+grave + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/igravecyr.S_R_B_.glif b/sources/FixelDisplay-Light.ufo/glyphs/igravecyr.S_R_B_.glif new file mode 100644 index 00000000..f3d704b9 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/igravecyr.S_R_B_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+grave + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/igravecyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/igravecyr.glif new file mode 100644 index 00000000..12079c30 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/igravecyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ii-cy+grave + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/ii-cy.B_G_R_.glif b/sources/FixelDisplay-Light.ufo/glyphs/ii-cy.B_G_R_.glif new file mode 100644 index 00000000..1bba65fa --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/ii-cy.B_G_R_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/ii-cy.accented.glif b/sources/FixelDisplay-Light.ufo/glyphs/ii-cy.accented.glif new file mode 100644 index 00000000..5bef4956 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/ii-cy.accented.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + и+acute + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/ii-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/ii-cy.glif new file mode 100644 index 00000000..6fe4177b --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/ii-cy.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/iishort-cy.B_G_R_.glif b/sources/FixelDisplay-Light.ufo/glyphs/iishort-cy.B_G_R_.glif new file mode 100644 index 00000000..13646465 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/iishort-cy.B_G_R_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/iishort-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/iishort-cy.glif new file mode 100644 index 00000000..86fc2239 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/iishort-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + icyr+breve + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/ij.glif b/sources/FixelDisplay-Light.ufo/glyphs/ij.glif new file mode 100644 index 00000000..3b46f6f3 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/ij.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + i + com.fontlab.metricsRight + j + com.fontlab.recipe + i_j + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/imacron.glif b/sources/FixelDisplay-Light.ufo/glyphs/imacron.glif new file mode 100644 index 00000000..15b8e56d --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/imacron.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =5 + com.fontlab.metricsRight + =5 + com.fontlab.recipe + idotless+macron + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/imacroncyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/imacroncyr.glif new file mode 100644 index 00000000..d4ab4ace --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/imacroncyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ii-cy+macron + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/increment.glif b/sources/FixelDisplay-Light.ufo/glyphs/increment.glif new file mode 100644 index 00000000..b080a450 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/increment.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/infinity.glif b/sources/FixelDisplay-Light.ufo/glyphs/infinity.glif new file mode 100644 index 00000000..ab7f91d9 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/infinity.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/integral.glif b/sources/FixelDisplay-Light.ufo/glyphs/integral.glif new file mode 100644 index 00000000..24694d4a --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/integral.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/io-cy.accented.glif b/sources/FixelDisplay-Light.ufo/glyphs/io-cy.accented.glif new file mode 100644 index 00000000..d2f5edc0 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/io-cy.accented.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsLeft + e + com.fontlab.metricsRight + e + com.fontlab.recipe + e+dieresisacute + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/io-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/io-cy.glif new file mode 100644 index 00000000..fe32fe0a --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/io-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + edieresis + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/io-cy.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/io-cy.ss01.glif new file mode 100644 index 00000000..d75862a3 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/io-cy.ss01.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + edieresis.ss01 + com.schriftgestaltung.Glyphs.ComponentInfo + + + alignment + -1 + index + 0 + name + edieresis.ss01 + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/iogonek.glif b/sources/FixelDisplay-Light.ufo/glyphs/iogonek.glif new file mode 100644 index 00000000..4e8da97c --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/iogonek.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + i+ogonek + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/iota-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/iota-cy.glif new file mode 100644 index 00000000..efc06624 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/iota-cy.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l.ss01 + com.fontlab.metricsRight + l.ss01 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/iotifieda-cy.B_G_R_.glif b/sources/FixelDisplay-Light.ufo/glyphs/iotifieda-cy.B_G_R_.glif new file mode 100644 index 00000000..f7aa827b --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/iotifieda-cy.B_G_R_.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + el-cy.BGR + com.fontlab.recipe + iotifieda-cy + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/iotifieda-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/iotifieda-cy.glif new file mode 100644 index 00000000..d1b4ac11 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/iotifieda-cy.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + yusClosedlittle-cy + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/iotifieda-cy.hist.glif b/sources/FixelDisplay-Light.ufo/glyphs/iotifieda-cy.hist.glif new file mode 100644 index 00000000..a96d4c0e --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/iotifieda-cy.hist.glif @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + reversedzecyr + com.fontlab.metricsRight + a + public.markColor + 0.6,0.997,1,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/ishortsharptailcyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/ishortsharptailcyr.glif new file mode 100644 index 00000000..69f4ffa3 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/ishortsharptailcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + й + com.fontlab.metricsRight + ensharptailcyr + com.fontlab.recipe + й + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/itilde.glif b/sources/FixelDisplay-Light.ufo/glyphs/itilde.glif new file mode 100644 index 00000000..c46c1214 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/itilde.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + dotlessi+tilde + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/iu-cy.B_G_R_.glif b/sources/FixelDisplay-Light.ufo/glyphs/iu-cy.B_G_R_.glif new file mode 100644 index 00000000..ed45ecd5 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/iu-cy.B_G_R_.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + o + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/iu-cy.accented.glif b/sources/FixelDisplay-Light.ufo/glyphs/iu-cy.accented.glif new file mode 100644 index 00000000..fce68caa --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/iu-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ю+acute + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/iu-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/iu-cy.glif new file mode 100644 index 00000000..2dcf1ba3 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/iu-cy.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/izhitsacyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/izhitsacyr.glif new file mode 100644 index 00000000..7d8d924e --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/izhitsacyr.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + v + com.fontlab.metricsRight + + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/izhitsagravedblcyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/izhitsagravedblcyr.glif new file mode 100644 index 00000000..cc054879 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/izhitsagravedblcyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + com.fontlab.metricsLeft + izhitsacyr + com.fontlab.metricsRight + izhitsacyr + com.fontlab.recipe + izhitsacyr+hungarumlaut + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/j.glif b/sources/FixelDisplay-Light.ufo/glyphs/j.glif new file mode 100644 index 00000000..f76cca4e --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/j.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + i + com.fontlab.recipe + dotlessj+dotaccent + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/jcircumflex.glif b/sources/FixelDisplay-Light.ufo/glyphs/jcircumflex.glif new file mode 100644 index 00000000..f7ce97fb --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/jcircumflex.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + dotlessj+circumflex + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/jdotless.glif b/sources/FixelDisplay-Light.ufo/glyphs/jdotless.glif new file mode 100644 index 00000000..412c739a --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/jdotless.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + l + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/je-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/je-cy.glif new file mode 100644 index 00000000..dbcc2100 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/je-cy.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + j + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/k.glif b/sources/FixelDisplay-Light.ufo/glyphs/k.glif new file mode 100644 index 00000000..4cb08111 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/k.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/ka-cy.B_G_R_.glif b/sources/FixelDisplay-Light.ufo/glyphs/ka-cy.B_G_R_.glif new file mode 100644 index 00000000..948592f4 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/ka-cy.B_G_R_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + k + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/ka-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/ka-cy.glif new file mode 100644 index 00000000..e53d18b3 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/ka-cy.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + k + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/kaaleutcyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/kaaleutcyr.glif new file mode 100644 index 00000000..ecf4845a --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/kaaleutcyr.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + k + com.fontlab.metricsRight + k + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/kabashkcyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/kabashkcyr.glif new file mode 100644 index 00000000..20c7adb0 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/kabashkcyr.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hardsign-cy + com.fontlab.metricsRight + k + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/kahookcyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/kahookcyr.glif new file mode 100644 index 00000000..92866726 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/kahookcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + n + com.fontlab.metricsRight + k+10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/kastrokecyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/kastrokecyr.glif new file mode 100644 index 00000000..8ab31d43 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/kastrokecyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hbar + com.fontlab.metricsRight + k + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/katailcyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/katailcyr.glif new file mode 100644 index 00000000..76c78178 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/katailcyr.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + k + com.fontlab.metricsRight + к-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/kaverticalstrokecyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/kaverticalstrokecyr.glif new file mode 100644 index 00000000..14b2fcab --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/kaverticalstrokecyr.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + k + com.fontlab.metricsRight + k + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/kcommaaccent.glif b/sources/FixelDisplay-Light.ufo/glyphs/kcommaaccent.glif new file mode 100644 index 00000000..17a5982c --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/kcommaaccent.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsLeft + k + com.fontlab.metricsRight + k + com.fontlab.recipe + k+commaaccentcomb + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/kgreenlandic.glif b/sources/FixelDisplay-Light.ufo/glyphs/kgreenlandic.glif new file mode 100644 index 00000000..2c9cf4ab --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/kgreenlandic.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + kacyr + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/kjecyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/kjecyr.glif new file mode 100644 index 00000000..1806f133 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/kjecyr.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/knightblack.glif b/sources/FixelDisplay-Light.ufo/glyphs/knightblack.glif new file mode 100644 index 00000000..7bf5dc13 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/knightblack.glif @@ -0,0 +1,313 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =30 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/knightwhite.glif b/sources/FixelDisplay-Light.ufo/glyphs/knightwhite.glif new file mode 100644 index 00000000..fe305485 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/knightwhite.glif @@ -0,0 +1,320 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/koppacyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/koppacyr.glif new file mode 100644 index 00000000..e63533a9 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/koppacyr.glif @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + c-20 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/ksicyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/ksicyr.glif new file mode 100644 index 00000000..b2e66325 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/ksicyr.glif @@ -0,0 +1,102 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + з-10 + com.fontlab.metricsRight + з + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/l.glif b/sources/FixelDisplay-Light.ufo/glyphs/l.glif new file mode 100644 index 00000000..0ddafada --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/l.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/l.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/l.ss01.glif new file mode 100644 index 00000000..0cf16763 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/l.ss01.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/lacute.glif b/sources/FixelDisplay-Light.ufo/glyphs/lacute.glif new file mode 100644 index 00000000..9a2b6f32 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/lacute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l+acute.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/lacute.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/lacute.ss01.glif new file mode 100644 index 00000000..b79c441d --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/lacute.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l.ss01+acute.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/layerinfo.plist b/sources/FixelDisplay-Light.ufo/glyphs/layerinfo.plist new file mode 100644 index 00000000..8c198655 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/layerinfo.plist @@ -0,0 +1,21 @@ + + + + + lib + + com.fontlab.layer.name + Body + com.fontlab.layer.opacity + 1 + com.fontlab.layer.visible + + com.fontlab.layer.locked + + com.fontlab.layer.service + + com.fontlab.layer.wireframe + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/lcaron.glif b/sources/FixelDisplay-Light.ufo/glyphs/lcaron.glif new file mode 100644 index 00000000..af2448df --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/lcaron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l+caron.salt + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/lcaron.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/lcaron.ss01.glif new file mode 100644 index 00000000..c89f5712 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/lcaron.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l.ss01+caron.salt + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/lcommaaccent.glif b/sources/FixelDisplay-Light.ufo/glyphs/lcommaaccent.glif new file mode 100644 index 00000000..6c639d32 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/lcommaaccent.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l+commaaccentcomb + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/lcommaaccent.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/lcommaaccent.ss01.glif new file mode 100644 index 00000000..a16c5053 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/lcommaaccent.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l.ss01+commaaccentcomb + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/ldot.glif b/sources/FixelDisplay-Light.ufo/glyphs/ldot.glif new file mode 100644 index 00000000..c7caa269 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/ldot.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/ldot.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/ldot.ss01.glif new file mode 100644 index 00000000..0f41d3eb --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/ldot.ss01.glif @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + l.ss01_periodcentered + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/leo.glif b/sources/FixelDisplay-Light.ufo/glyphs/leo.glif new file mode 100644 index 00000000..9ebd0426 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/leo.glif @@ -0,0 +1,494 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/less.glif b/sources/FixelDisplay-Light.ufo/glyphs/less.glif new file mode 100644 index 00000000..8f5da6a2 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/less.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/lessequal.glif b/sources/FixelDisplay-Light.ufo/glyphs/lessequal.glif new file mode 100644 index 00000000..0236f35b --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/lessequal.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/lhacyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/lhacyr.glif new file mode 100644 index 00000000..f5a267ad --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/lhacyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + х + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/ljecyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/ljecyr.glif new file mode 100644 index 00000000..faa14471 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/ljecyr.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + ь + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/ljecyr.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/ljecyr.ss01.glif new file mode 100644 index 00000000..e75a954b --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/ljecyr.ss01.glif @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + ь + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/ljekomicyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/ljekomicyr.glif new file mode 100644 index 00000000..6a4e5c84 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/ljekomicyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + njekomicyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/longs.glif b/sources/FixelDisplay-Light.ufo/glyphs/longs.glif new file mode 100644 index 00000000..7a48a0b7 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/longs.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + n + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/lslash.glif b/sources/FixelDisplay-Light.ufo/glyphs/lslash.glif new file mode 100644 index 00000000..f87671c4 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/lslash.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Lslash+12 + com.fontlab.metricsRight + |Lslash+12 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/lslash.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/lslash.ss01.glif new file mode 100644 index 00000000..5bd84c8a --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/lslash.ss01.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Lslash-10 + com.fontlab.metricsRight + |Lslash + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/m.glif b/sources/FixelDisplay-Light.ufo/glyphs/m.glif new file mode 100644 index 00000000..835a7fb8 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/m.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + n + com.fontlab.metricsRight + n + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/macron-fwd.alt.glif b/sources/FixelDisplay-Light.ufo/glyphs/macron-fwd.alt.glif new file mode 100644 index 00000000..e8a2eedd --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/macron-fwd.alt.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/macron-fwd.glif b/sources/FixelDisplay-Light.ufo/glyphs/macron-fwd.glif new file mode 100644 index 00000000..9559e322 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/macron-fwd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/macron.case.glif b/sources/FixelDisplay-Light.ufo/glyphs/macron.case.glif new file mode 100644 index 00000000..12a24803 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/macron.case.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/macron.glif b/sources/FixelDisplay-Light.ufo/glyphs/macron.glif new file mode 100644 index 00000000..b4705706 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/macron.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/macronacute.S_R_B_.glif b/sources/FixelDisplay-Light.ufo/glyphs/macronacute.S_R_B_.glif new file mode 100644 index 00000000..e6b55fd5 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/macronacute.S_R_B_.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + macron+acute + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/millionscombcyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/millionscombcyr.glif new file mode 100644 index 00000000..b404fcab --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/millionscombcyr.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/minus.glif b/sources/FixelDisplay-Light.ufo/glyphs/minus.glif new file mode 100644 index 00000000..68432886 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/minus.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/minute.glif b/sources/FixelDisplay-Light.ufo/glyphs/minute.glif new file mode 100644 index 00000000..aae46b35 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/minute.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/mu.glif b/sources/FixelDisplay-Light.ufo/glyphs/mu.glif new file mode 100644 index 00000000..38f6e39e --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/mu.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + p + com.fontlab.metricsRight + u + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/multiply.glif b/sources/FixelDisplay-Light.ufo/glyphs/multiply.glif new file mode 100644 index 00000000..d2899ea5 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/multiply.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/n.glif b/sources/FixelDisplay-Light.ufo/glyphs/n.glif new file mode 100644 index 00000000..1b181719 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/n.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/nacute.glif b/sources/FixelDisplay-Light.ufo/glyphs/nacute.glif new file mode 100644 index 00000000..609c803f --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/nacute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + n+acute + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/napostrophe.glif b/sources/FixelDisplay-Light.ufo/glyphs/napostrophe.glif new file mode 100644 index 00000000..292a2cb9 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/napostrophe.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + com.fontlab.metricsRight + n + com.schriftgestaltung.Glyphs.ComponentInfo + + + alignment + -1 + index + 0 + name + n + + + alignment + -1 + index + 1 + name + quoteright + + + com.schriftgestaltung.Glyphs.rightMetricsKey + n + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/ncaron.glif b/sources/FixelDisplay-Light.ufo/glyphs/ncaron.glif new file mode 100644 index 00000000..73bfe4e5 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/ncaron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + n+caron + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/ncommaaccent.glif b/sources/FixelDisplay-Light.ufo/glyphs/ncommaaccent.glif new file mode 100644 index 00000000..493b2de6 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/ncommaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + n+commaaccentcomb + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/neptune.glif b/sources/FixelDisplay-Light.ufo/glyphs/neptune.glif new file mode 100644 index 00000000..eca0909d --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/neptune.glif @@ -0,0 +1,125 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ш + com.fontlab.metricsRight + Ш + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/nine.glif b/sources/FixelDisplay-Light.ufo/glyphs/nine.glif new file mode 100644 index 00000000..39a2dd36 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/nine.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + |six + com.fontlab.metricsRight + |six + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/nine.osf.glif b/sources/FixelDisplay-Light.ufo/glyphs/nine.osf.glif new file mode 100644 index 00000000..1c45d5d6 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/nine.osf.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |six + com.fontlab.metricsRight + |six + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/nine.tf.glif b/sources/FixelDisplay-Light.ufo/glyphs/nine.tf.glif new file mode 100644 index 00000000..9f6872ec --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/nine.tf.glif @@ -0,0 +1,7 @@ + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/njecyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/njecyr.glif new file mode 100644 index 00000000..7d2e2a2f --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/njecyr.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + ь + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/njecyr.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/njecyr.ss01.glif new file mode 100644 index 00000000..43ee40af --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/njecyr.ss01.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + ь + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/njekomicyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/njekomicyr.glif new file mode 100644 index 00000000..b1b85e5e --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/njekomicyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + |u + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/notequal.glif b/sources/FixelDisplay-Light.ufo/glyphs/notequal.glif new file mode 100644 index 00000000..f4657805 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/notequal.glif @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/ntilde.glif b/sources/FixelDisplay-Light.ufo/glyphs/ntilde.glif new file mode 100644 index 00000000..cedaa0be --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/ntilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + n+tilde + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/numbersign.glif b/sources/FixelDisplay-Light.ufo/glyphs/numbersign.glif new file mode 100644 index 00000000..af3242ce --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/numbersign.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/numero.glif b/sources/FixelDisplay-Light.ufo/glyphs/numero.glif new file mode 100644 index 00000000..8d541976 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/numero.glif @@ -0,0 +1,90 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + N + com.fontlab.recipe + N+ordmasculine + com.schriftgestaltung.Glyphs.ComponentInfo + + + alignment + -1 + index + 0 + name + N + + + alignment + -1 + index + 1 + name + ordmasculine + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/numero.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/numero.ss01.glif new file mode 100644 index 00000000..e990a7ec --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/numero.ss01.glif @@ -0,0 +1,95 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + N.ss01 + com.fontlab.metricsRight + ordmasculine + com.fontlab.recipe + N.ss01+ordmasculine + com.schriftgestaltung.Glyphs.ComponentInfo + + + alignment + -1 + index + 0 + name + ordmasculine + + + alignment + -1 + index + 1 + name + N.ss01 + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/o-cy.accented.glif b/sources/FixelDisplay-Light.ufo/glyphs/o-cy.accented.glif new file mode 100644 index 00000000..fb07cc97 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/o-cy.accented.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+acute + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/o-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/o-cy.glif new file mode 100644 index 00000000..31ec6d0a --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/o-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/o.glif b/sources/FixelDisplay-Light.ufo/glyphs/o.glif new file mode 100644 index 00000000..e7245058 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/o.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/oB_inocular-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/oB_inocular-cy.glif new file mode 100644 index 00000000..f97493a0 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/oB_inocular-cy.glif @@ -0,0 +1,81 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/oD_oubleM_onocular-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/oD_oubleM_onocular-cy.glif new file mode 100644 index 00000000..36d33c8d --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/oD_oubleM_onocular-cy.glif @@ -0,0 +1,121 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + com.fontlab.recipe + doubleo-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/oM_onocular-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/oM_onocular-cy.glif new file mode 100644 index 00000000..180d9974 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/oM_onocular-cy.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/oacute.glif b/sources/FixelDisplay-Light.ufo/glyphs/oacute.glif new file mode 100644 index 00000000..5c1b4771 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/oacute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+acute + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/obarcyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/obarcyr.glif new file mode 100644 index 00000000..1cf466a6 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/obarcyr.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/obardieresiscyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/obardieresiscyr.glif new file mode 100644 index 00000000..f80a34bc --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/obardieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + obarcyr+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/obreve.glif b/sources/FixelDisplay-Light.ufo/glyphs/obreve.glif new file mode 100644 index 00000000..102a2e13 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/obreve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+breve + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/ocircumflex.glif b/sources/FixelDisplay-Light.ufo/glyphs/ocircumflex.glif new file mode 100644 index 00000000..6a9215e1 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/ocircumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+circumflex + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/odieresis.glif b/sources/FixelDisplay-Light.ufo/glyphs/odieresis.glif new file mode 100644 index 00000000..0d69c14c --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/odieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+dieresis + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/odieresiscyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/odieresiscyr.glif new file mode 100644 index 00000000..10b28808 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/odieresiscyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/oe.glif b/sources/FixelDisplay-Light.ufo/glyphs/oe.glif new file mode 100644 index 00000000..3752325c --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/oe.glif @@ -0,0 +1,86 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + e + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/oe.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/oe.ss01.glif new file mode 100644 index 00000000..3411bbf2 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/oe.ss01.glif @@ -0,0 +1,95 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + e.ss01 + public.markColor + 0.6,0.997,1,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/ogonek.glif b/sources/FixelDisplay-Light.ufo/glyphs/ogonek.glif new file mode 100644 index 00000000..ed766cbe --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/ogonek.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/ograve.glif b/sources/FixelDisplay-Light.ufo/glyphs/ograve.glif new file mode 100644 index 00000000..7b5102e4 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/ograve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+grave + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/ohungarumlaut.glif b/sources/FixelDisplay-Light.ufo/glyphs/ohungarumlaut.glif new file mode 100644 index 00000000..fb2ea2ed --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/ohungarumlaut.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+hungarumlaut + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/omacron.glif b/sources/FixelDisplay-Light.ufo/glyphs/omacron.glif new file mode 100644 index 00000000..9db21604 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/omacron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+macron + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/omegaB_road-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/omegaB_road-cy.glif new file mode 100644 index 00000000..741b6caa --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/omegaB_road-cy.glif @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o+5 + com.fontlab.metricsRight + o+5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/omegacyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/omegacyr.glif new file mode 100644 index 00000000..5c0a221a --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/omegacyr.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + w + com.fontlab.metricsRight + w + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/omegaroundcyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/omegaroundcyr.glif new file mode 100644 index 00000000..2ea293f0 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/omegaroundcyr.glif @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/omegatitlocyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/omegatitlocyr.glif new file mode 100644 index 00000000..1a605cbc --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/omegatitlocyr.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o+5 + com.fontlab.metricsRight + o+5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/omultiocular-cy.alt.glif b/sources/FixelDisplay-Light.ufo/glyphs/omultiocular-cy.alt.glif new file mode 100644 index 00000000..1d790125 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/omultiocular-cy.alt.glif @@ -0,0 +1,366 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + oMonocular-cy + com.fontlab.metricsRight + oMonocular-cy + public.markColor + 0.6,0.997,1,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/omultiocular-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/omultiocular-cy.glif new file mode 100644 index 00000000..3f4bd2c0 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/omultiocular-cy.glif @@ -0,0 +1,517 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + oMonocular-cy + com.fontlab.metricsRight + oMonocular-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/one.glif b/sources/FixelDisplay-Light.ufo/glyphs/one.glif new file mode 100644 index 00000000..86406f0f --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/one.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =40 + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/one.osf.glif b/sources/FixelDisplay-Light.ufo/glyphs/one.osf.glif new file mode 100644 index 00000000..516335a2 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/one.osf.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + one + com.fontlab.metricsRight + one + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/one.tf.glif b/sources/FixelDisplay-Light.ufo/glyphs/one.tf.glif new file mode 100644 index 00000000..3654a7e5 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/one.tf.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/onehalf.glif b/sources/FixelDisplay-Light.ufo/glyphs/onehalf.glif new file mode 100644 index 00000000..453ed0f0 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/onehalf.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/onequarter.glif b/sources/FixelDisplay-Light.ufo/glyphs/onequarter.glif new file mode 100644 index 00000000..09c71b1f --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/onequarter.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/onesuperior.glif b/sources/FixelDisplay-Light.ufo/glyphs/onesuperior.glif new file mode 100644 index 00000000..7f727e35 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/onesuperior.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/ordfeminine.glif b/sources/FixelDisplay-Light.ufo/glyphs/ordfeminine.glif new file mode 100644 index 00000000..0745d528 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/ordfeminine.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/ordmasculine.glif b/sources/FixelDisplay-Light.ufo/glyphs/ordmasculine.glif new file mode 100644 index 00000000..03428178 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/ordmasculine.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/oslash.glif b/sources/FixelDisplay-Light.ufo/glyphs/oslash.glif new file mode 100644 index 00000000..9e305873 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/oslash.glif @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/oslashacute.glif b/sources/FixelDisplay-Light.ufo/glyphs/oslashacute.glif new file mode 100644 index 00000000..efbdfcbb --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/oslashacute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + oslash+acute + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/otcyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/otcyr.glif new file mode 100644 index 00000000..3819edec --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/otcyr.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsRight + w + com.fontlab.recipe + omegacyr+uni2DEE + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/otilde.glif b/sources/FixelDisplay-Light.ufo/glyphs/otilde.glif new file mode 100644 index 00000000..1a5f8329 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/otilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+tilde + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/p.glif b/sources/FixelDisplay-Light.ufo/glyphs/p.glif new file mode 100644 index 00000000..72ce1fb5 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/p.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/p.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/p.ss01.glif new file mode 100644 index 00000000..5608b2f0 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/p.ss01.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/palatcombcyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/palatcombcyr.glif new file mode 100644 index 00000000..16792132 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/palatcombcyr.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/palochkacyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/palochkacyr.glif new file mode 100644 index 00000000..71dec18e --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/palochkacyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/paragraph.glif b/sources/FixelDisplay-Light.ufo/glyphs/paragraph.glif new file mode 100644 index 00000000..3b64d1ad --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/paragraph.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |P + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/parenleft.case.glif b/sources/FixelDisplay-Light.ufo/glyphs/parenleft.case.glif new file mode 100644 index 00000000..2edff401 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/parenleft.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |parenright.case + com.fontlab.metricsRight + |parenright.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/parenleft.glif b/sources/FixelDisplay-Light.ufo/glyphs/parenleft.glif new file mode 100644 index 00000000..5c7fc0a1 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/parenleft.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/parenright.case.glif b/sources/FixelDisplay-Light.ufo/glyphs/parenright.case.glif new file mode 100644 index 00000000..9b2fe59b --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/parenright.case.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + parenright + com.fontlab.metricsRight + parenright + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/parenright.glif b/sources/FixelDisplay-Light.ufo/glyphs/parenright.glif new file mode 100644 index 00000000..1b6bf433 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/parenright.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/partialdiff.glif b/sources/FixelDisplay-Light.ufo/glyphs/partialdiff.glif new file mode 100644 index 00000000..c176d255 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/partialdiff.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/pe-cy.B_G_R_.glif b/sources/FixelDisplay-Light.ufo/glyphs/pe-cy.B_G_R_.glif new file mode 100644 index 00000000..22853755 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/pe-cy.B_G_R_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + n + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/pe-cy.S_R_B_.glif b/sources/FixelDisplay-Light.ufo/glyphs/pe-cy.S_R_B_.glif new file mode 100644 index 00000000..4c1511b8 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/pe-cy.S_R_B_.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+macron-fwd.alt + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/pe-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/pe-cy.glif new file mode 100644 index 00000000..68249af4 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/pe-cy.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/pehookcyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/pehookcyr.glif new file mode 100644 index 00000000..856e5c41 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/pehookcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + п + com.fontlab.metricsRight + enmiddlehookcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/percent.glif b/sources/FixelDisplay-Light.ufo/glyphs/percent.glif new file mode 100644 index 00000000..98dd99b2 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/percent.glif @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/period.glif b/sources/FixelDisplay-Light.ufo/glyphs/period.glif new file mode 100644 index 00000000..a732c9b0 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/period.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/periodcentered.glif b/sources/FixelDisplay-Light.ufo/glyphs/periodcentered.glif new file mode 100644 index 00000000..9ff5f31a --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/periodcentered.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/perthousand.glif b/sources/FixelDisplay-Light.ufo/glyphs/perthousand.glif new file mode 100644 index 00000000..12f876f5 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/perthousand.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/petailcyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/petailcyr.glif new file mode 100644 index 00000000..78e7daef --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/petailcyr.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + п + com.fontlab.metricsRight + entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/pi.glif b/sources/FixelDisplay-Light.ufo/glyphs/pi.glif new file mode 100644 index 00000000..abf899a3 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/pi.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f + com.fontlab.metricsRight + t + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/plus.glif b/sources/FixelDisplay-Light.ufo/glyphs/plus.glif new file mode 100644 index 00000000..265f752b --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/plus.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/plusminus.glif b/sources/FixelDisplay-Light.ufo/glyphs/plusminus.glif new file mode 100644 index 00000000..1e594ab2 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/plusminus.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/pokrytiecombcyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/pokrytiecombcyr.glif new file mode 100644 index 00000000..95b9bdf5 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/pokrytiecombcyr.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/product.glif b/sources/FixelDisplay-Light.ufo/glyphs/product.glif new file mode 100644 index 00000000..9e616b4b --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/product.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/proportional.glif b/sources/FixelDisplay-Light.ufo/glyphs/proportional.glif new file mode 100644 index 00000000..eee63322 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/proportional.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/psicyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/psicyr.glif new file mode 100644 index 00000000..acf595bb --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/psicyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + u + com.fontlab.metricsRight + |u + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/q.glif b/sources/FixelDisplay-Light.ufo/glyphs/q.glif new file mode 100644 index 00000000..0e6fa49b --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/q.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/q.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/q.ss01.glif new file mode 100644 index 00000000..5654d034 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/q.ss01.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/qacyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/qacyr.glif new file mode 100644 index 00000000..38f72edf --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/qacyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + q + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/question.glif b/sources/FixelDisplay-Light.ufo/glyphs/question.glif new file mode 100644 index 00000000..a02b8bac --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/question.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/questiondown.case.glif b/sources/FixelDisplay-Light.ufo/glyphs/questiondown.case.glif new file mode 100644 index 00000000..169e5048 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/questiondown.case.glif @@ -0,0 +1,19 @@ + + + + + + + + + com.fontlab.metricsLeft + |question + com.fontlab.metricsRight + |question + com.fontlab.recipe + questiondown + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/questiondown.glif b/sources/FixelDisplay-Light.ufo/glyphs/questiondown.glif new file mode 100644 index 00000000..68d93566 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/questiondown.glif @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |question + com.fontlab.metricsRight + |question + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/quotedbl.glif b/sources/FixelDisplay-Light.ufo/glyphs/quotedbl.glif new file mode 100644 index 00000000..0d175ab3 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/quotedbl.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/quotedblbase.glif b/sources/FixelDisplay-Light.ufo/glyphs/quotedblbase.glif new file mode 100644 index 00000000..dc7cc02f --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/quotedblbase.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + comma + com.fontlab.metricsRight + comma + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/quotedblleft.glif b/sources/FixelDisplay-Light.ufo/glyphs/quotedblleft.glif new file mode 100644 index 00000000..0d59e995 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/quotedblleft.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + |comma + com.fontlab.metricsRight + |comma + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/quotedblright.glif b/sources/FixelDisplay-Light.ufo/glyphs/quotedblright.glif new file mode 100644 index 00000000..b7f3546b --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/quotedblright.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.metricsLeft + comma+20 + com.fontlab.metricsRight + comma-20 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/quoteleft.glif b/sources/FixelDisplay-Light.ufo/glyphs/quoteleft.glif new file mode 100644 index 00000000..75ec8845 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/quoteleft.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + quotedblleft + com.fontlab.metricsRight + quotedblleft + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/quoteright.glif b/sources/FixelDisplay-Light.ufo/glyphs/quoteright.glif new file mode 100644 index 00000000..52883303 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/quoteright.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + com.fontlab.metricsLeft + quotedblright + com.fontlab.metricsRight + quotedblright + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/quotesinglbase.glif b/sources/FixelDisplay-Light.ufo/glyphs/quotesinglbase.glif new file mode 100644 index 00000000..038ecc22 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/quotesinglbase.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + com.fontlab.recipe + comma + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/quotesingle.glif b/sources/FixelDisplay-Light.ufo/glyphs/quotesingle.glif new file mode 100644 index 00000000..d3bd1605 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/quotesingle.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/r.glif b/sources/FixelDisplay-Light.ufo/glyphs/r.glif new file mode 100644 index 00000000..43878fd1 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/r.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/racute.glif b/sources/FixelDisplay-Light.ufo/glyphs/racute.glif new file mode 100644 index 00000000..89f91e9c --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/racute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + r+acute + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/radical.glif b/sources/FixelDisplay-Light.ufo/glyphs/radical.glif new file mode 100644 index 00000000..5004376b --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/radical.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + V + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/rcaron.glif b/sources/FixelDisplay-Light.ufo/glyphs/rcaron.glif new file mode 100644 index 00000000..ccaeae46 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/rcaron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + r+caron + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/rcommaaccent.glif b/sources/FixelDisplay-Light.ufo/glyphs/rcommaaccent.glif new file mode 100644 index 00000000..0d13938e --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/rcommaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + r+commaaccentcomb + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/registered.glif b/sources/FixelDisplay-Light.ufo/glyphs/registered.glif new file mode 100644 index 00000000..cf0174b2 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/registered.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/reversedzecyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/reversedzecyr.glif new file mode 100644 index 00000000..f6fe7932 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/reversedzecyr.glif @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + + com.fontlab.metricsRight + + com.fontlab.recipe + з + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/rhacyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/rhacyr.glif new file mode 100644 index 00000000..3ed6d901 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/rhacyr.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + p + com.fontlab.metricsRight + x + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/ring.case.glif b/sources/FixelDisplay-Light.ufo/glyphs/ring.case.glif new file mode 100644 index 00000000..d1f7310a --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/ring.case.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/ring.glif b/sources/FixelDisplay-Light.ufo/glyphs/ring.glif new file mode 100644 index 00000000..e02d3b21 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/ring.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/rookblack.glif b/sources/FixelDisplay-Light.ufo/glyphs/rookblack.glif new file mode 100644 index 00000000..0e1a69f0 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/rookblack.glif @@ -0,0 +1,270 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =30 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/ruble.glif b/sources/FixelDisplay-Light.ufo/glyphs/ruble.glif new file mode 100644 index 00000000..6bb88529 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/ruble.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + P + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/s.glif b/sources/FixelDisplay-Light.ufo/glyphs/s.glif new file mode 100644 index 00000000..48a7bdf4 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/s.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/sacute.glif b/sources/FixelDisplay-Light.ufo/glyphs/sacute.glif new file mode 100644 index 00000000..4be0c8d6 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/sacute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + s+acute + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/scaron.glif b/sources/FixelDisplay-Light.ufo/glyphs/scaron.glif new file mode 100644 index 00000000..bc5d0c71 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/scaron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + s+caron + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/scedilla.glif b/sources/FixelDisplay-Light.ufo/glyphs/scedilla.glif new file mode 100644 index 00000000..34e0d6f3 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/scedilla.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + s+cedilla + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/schwacyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/schwacyr.glif new file mode 100644 index 00000000..afb0bc77 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/schwacyr.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |e + com.fontlab.metricsRight + o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/schwadieresiscyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/schwadieresiscyr.glif new file mode 100644 index 00000000..ff6218b0 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/schwadieresiscyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + schwacyr+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/scircumflex.glif b/sources/FixelDisplay-Light.ufo/glyphs/scircumflex.glif new file mode 100644 index 00000000..a5986798 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/scircumflex.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + s+circumflex + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/scommaaccent.glif b/sources/FixelDisplay-Light.ufo/glyphs/scommaaccent.glif new file mode 100644 index 00000000..2be36665 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/scommaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + s+commaaccentcomb + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/second.glif b/sources/FixelDisplay-Light.ufo/glyphs/second.glif new file mode 100644 index 00000000..f961368b --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/second.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/section.glif b/sources/FixelDisplay-Light.ufo/glyphs/section.glif new file mode 100644 index 00000000..aec08959 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/section.glif @@ -0,0 +1,87 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + S + com.fontlab.metricsRight + S + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/semicolon.case.glif b/sources/FixelDisplay-Light.ufo/glyphs/semicolon.case.glif new file mode 100644 index 00000000..7121a3da --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/semicolon.case.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.metricsLeft + semicolon + com.fontlab.metricsRight + semicolon + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/semicolon.glif b/sources/FixelDisplay-Light.ufo/glyphs/semicolon.glif new file mode 100644 index 00000000..8b8d0aa4 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/semicolon.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/semisoftcyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/semisoftcyr.glif new file mode 100644 index 00000000..e19c5868 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/semisoftcyr.glif @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + t + com.fontlab.metricsRight + ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/seven.glif b/sources/FixelDisplay-Light.ufo/glyphs/seven.glif new file mode 100644 index 00000000..c5601f75 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/seven.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/seven.osf.glif b/sources/FixelDisplay-Light.ufo/glyphs/seven.osf.glif new file mode 100644 index 00000000..33612fb5 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/seven.osf.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + seven + com.fontlab.metricsRight + seven + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/seven.tf.glif b/sources/FixelDisplay-Light.ufo/glyphs/seven.tf.glif new file mode 100644 index 00000000..4164bbe3 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/seven.tf.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/sha-cy.B_G_R_.glif b/sources/FixelDisplay-Light.ufo/glyphs/sha-cy.B_G_R_.glif new file mode 100644 index 00000000..490108cf --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/sha-cy.B_G_R_.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + u + com.fontlab.metricsRight + l + com.fontlab.recipe + m + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/sha-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/sha-cy.glif new file mode 100644 index 00000000..7a1a0ac2 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/sha-cy.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/shcha-cy.B_G_R_.glif b/sources/FixelDisplay-Light.ufo/glyphs/shcha-cy.B_G_R_.glif new file mode 100644 index 00000000..605585c6 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/shcha-cy.B_G_R_.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + u + com.fontlab.metricsRight + щ + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/shcha-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/shcha-cy.glif new file mode 100644 index 00000000..e16ac065 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/shcha-cy.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + д + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/shhacyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/shhacyr.glif new file mode 100644 index 00000000..a24826f2 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/shhacyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsRight + n + com.fontlab.recipe + h + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/shhatailcyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/shhatailcyr.glif new file mode 100644 index 00000000..bb8f184e --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/shhatailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + h + com.fontlab.metricsRight + entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/shwe-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/shwe-cy.glif new file mode 100644 index 00000000..c3ab36f7 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/shwe-cy.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + щ + com.fontlab.metricsRight + щ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/six.glif b/sources/FixelDisplay-Light.ufo/glyphs/six.glif new file mode 100644 index 00000000..31594618 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/six.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/six.osf.glif b/sources/FixelDisplay-Light.ufo/glyphs/six.osf.glif new file mode 100644 index 00000000..1c2b7358 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/six.osf.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + six + com.fontlab.metricsRight + six + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/six.tf.glif b/sources/FixelDisplay-Light.ufo/glyphs/six.tf.glif new file mode 100644 index 00000000..7e5603da --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/six.tf.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/sjekomicyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/sjekomicyr.glif new file mode 100644 index 00000000..f8916e8e --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/sjekomicyr.glif @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + e + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/slash.case.glif b/sources/FixelDisplay-Light.ufo/glyphs/slash.case.glif new file mode 100644 index 00000000..36c2d932 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/slash.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + slash + com.fontlab.metricsRight + slash + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/slash.glif b/sources/FixelDisplay-Light.ufo/glyphs/slash.glif new file mode 100644 index 00000000..0ec3f2ec --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/slash.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/softsign-cy.B_G_R_.glif b/sources/FixelDisplay-Light.ufo/glyphs/softsign-cy.B_G_R_.glif new file mode 100644 index 00000000..a61e43ca --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/softsign-cy.B_G_R_.glif @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + u + com.fontlab.metricsRight + ь-5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/softsign-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/softsign-cy.glif new file mode 100644 index 00000000..659beaee --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/softsign-cy.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/softsign-cy.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/softsign-cy.ss01.glif new file mode 100644 index 00000000..df1e4578 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/softsign-cy.ss01.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/space.glif b/sources/FixelDisplay-Light.ufo/glyphs/space.glif new file mode 100644 index 00000000..1be1e85a --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/space.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/spadewhite.glif b/sources/FixelDisplay-Light.ufo/glyphs/spadewhite.glif new file mode 100644 index 00000000..ca276718 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/spadewhite.glif @@ -0,0 +1,453 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/sterling.glif b/sources/FixelDisplay-Light.ufo/glyphs/sterling.glif new file mode 100644 index 00000000..c3920c9e --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/sterling.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/summation.glif b/sources/FixelDisplay-Light.ufo/glyphs/summation.glif new file mode 100644 index 00000000..12a380eb --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/summation.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/t.glif b/sources/FixelDisplay-Light.ufo/glyphs/t.glif new file mode 100644 index 00000000..adf17829 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/t.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/t.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/t.ss01.glif new file mode 100644 index 00000000..0b1c2c68 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/t.ss01.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/tbar.glif b/sources/FixelDisplay-Light.ufo/glyphs/tbar.glif new file mode 100644 index 00000000..f29c4c50 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/tbar.glif @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/tbar.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/tbar.ss01.glif new file mode 100644 index 00000000..05f9ab0b --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/tbar.ss01.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/tcaron.glif b/sources/FixelDisplay-Light.ufo/glyphs/tcaron.glif new file mode 100644 index 00000000..42c37536 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/tcaron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.metricsLeft + t + com.fontlab.metricsRight + t + com.fontlab.recipe + t+caron.salt + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/tcaron.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/tcaron.ss01.glif new file mode 100644 index 00000000..ea42a812 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/tcaron.ss01.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + com.fontlab.recipe + t.ss01+caron.salt + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/tcedilla.glif b/sources/FixelDisplay-Light.ufo/glyphs/tcedilla.glif new file mode 100644 index 00000000..3d910501 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/tcedilla.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + t+cedilla + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/tcedilla.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/tcedilla.ss01.glif new file mode 100644 index 00000000..ff2ed028 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/tcedilla.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + t.ss01+cedilla + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/tche-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/tche-cy.glif new file mode 100644 index 00000000..fcb6ca0d --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/tche-cy.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + tetsecyr-20 + com.fontlab.metricsRight + ч + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/tcommaaccent.glif b/sources/FixelDisplay-Light.ufo/glyphs/tcommaaccent.glif new file mode 100644 index 00000000..d1b2171a --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/tcommaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + t+commaaccentcomb + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/tcommaaccent.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/tcommaaccent.ss01.glif new file mode 100644 index 00000000..5a7d7822 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/tcommaaccent.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + t.ss01+commaaccentcomb + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/te-cy.B_G_R_.glif b/sources/FixelDisplay-Light.ufo/glyphs/te-cy.B_G_R_.glif new file mode 100644 index 00000000..d7b7c389 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/te-cy.B_G_R_.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + m + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/te-cy.S_R_B_.glif b/sources/FixelDisplay-Light.ufo/glyphs/te-cy.S_R_B_.glif new file mode 100644 index 00000000..2e3953d4 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/te-cy.S_R_B_.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ш.BGR+macron-fwd + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/te-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/te-cy.glif new file mode 100644 index 00000000..0825f10c --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/te-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/te-cy.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/te-cy.ss01.glif new file mode 100644 index 00000000..ed972e69 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/te-cy.ss01.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/tenge.glif b/sources/FixelDisplay-Light.ufo/glyphs/tenge.glif new file mode 100644 index 00000000..3b452c58 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/tenge.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + T + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/tenmillionscomb-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/tenmillionscomb-cy.glif new file mode 100644 index 00000000..5abe08fd --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/tenmillionscomb-cy.glif @@ -0,0 +1,109 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/tetailcyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/tetailcyr.glif new file mode 100644 index 00000000..697eccdf --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/tetailcyr.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + т + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/tetsecyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/tetsecyr.glif new file mode 100644 index 00000000..69ee138b --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/tetsecyr.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + т + com.fontlab.metricsRight + ц + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/tewithmiddlehook-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/tewithmiddlehook-cy.glif new file mode 100644 index 00000000..c384c4cd --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/tewithmiddlehook-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + т + com.fontlab.metricsRight + gehookcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/thorn.glif b/sources/FixelDisplay-Light.ufo/glyphs/thorn.glif new file mode 100644 index 00000000..1fbf47a7 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/thorn.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + b + com.fontlab.metricsRight + b + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/thousandmillionscomb-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/thousandmillionscomb-cy.glif new file mode 100644 index 00000000..a9396945 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/thousandmillionscomb-cy.glif @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/thousandscyr.dnom.glif b/sources/FixelDisplay-Light.ufo/glyphs/thousandscyr.dnom.glif new file mode 100644 index 00000000..1bfb4ee6 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/thousandscyr.dnom.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + | + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/thousandscyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/thousandscyr.glif new file mode 100644 index 00000000..a37b2a88 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/thousandscyr.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + | + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/three.glif b/sources/FixelDisplay-Light.ufo/glyphs/three.glif new file mode 100644 index 00000000..4a5ae3b3 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/three.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/three.osf.glif b/sources/FixelDisplay-Light.ufo/glyphs/three.osf.glif new file mode 100644 index 00000000..12a4bd62 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/three.osf.glif @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + three + com.fontlab.metricsRight + three + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/three.tf.glif b/sources/FixelDisplay-Light.ufo/glyphs/three.tf.glif new file mode 100644 index 00000000..f4d1a1e4 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/three.tf.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/threequarters.glif b/sources/FixelDisplay-Light.ufo/glyphs/threequarters.glif new file mode 100644 index 00000000..f26ae339 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/threequarters.glif @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/threesuperior.glif b/sources/FixelDisplay-Light.ufo/glyphs/threesuperior.glif new file mode 100644 index 00000000..e64fef7a --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/threesuperior.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/tilde.case.glif b/sources/FixelDisplay-Light.ufo/glyphs/tilde.case.glif new file mode 100644 index 00000000..5d36bbe2 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/tilde.case.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/tilde.glif b/sources/FixelDisplay-Light.ufo/glyphs/tilde.glif new file mode 100644 index 00000000..c4d32143 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/tilde.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/titlocombcyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/titlocombcyr.glif new file mode 100644 index 00000000..3c8bfc3a --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/titlocombcyr.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/tjekomicyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/tjekomicyr.glif new file mode 100644 index 00000000..7fe8830e --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/tjekomicyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + т + com.fontlab.metricsRight + njekomicyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/trademark.glif b/sources/FixelDisplay-Light.ufo/glyphs/trademark.glif new file mode 100644 index 00000000..77f2360b --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/trademark.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/tse-cy.B_G_R_.glif b/sources/FixelDisplay-Light.ufo/glyphs/tse-cy.B_G_R_.glif new file mode 100644 index 00000000..3d2e2e93 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/tse-cy.B_G_R_.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + u + com.fontlab.metricsRight + ц + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/tse-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/tse-cy.glif new file mode 100644 index 00000000..e53e1b99 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/tse-cy.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + д + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/tseR_eversed-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/tseR_eversed-cy.glif new file mode 100644 index 00000000..6c02c67c --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/tseR_eversed-cy.glif @@ -0,0 +1,20 @@ + + + + + + + + + + com.fontlab.metricsLeft + + com.fontlab.metricsRight + н + com.fontlab.recipe + ц + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/tshecyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/tshecyr.glif new file mode 100644 index 00000000..5368cfc2 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/tshecyr.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + hbar + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/tsse-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/tsse-cy.glif new file mode 100644 index 00000000..4c2d0b0b --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/tsse-cy.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + т + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/tswe-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/tswe-cy.glif new file mode 100644 index 00000000..31ffcccc --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/tswe-cy.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ш + com.fontlab.metricsRight + shwe-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/twe-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/twe-cy.glif new file mode 100644 index 00000000..faecebd6 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/twe-cy.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + т.ss01 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/two.glif b/sources/FixelDisplay-Light.ufo/glyphs/two.glif new file mode 100644 index 00000000..f92402e5 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/two.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/two.osf.glif b/sources/FixelDisplay-Light.ufo/glyphs/two.osf.glif new file mode 100644 index 00000000..5d5a01c5 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/two.osf.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + two + com.fontlab.metricsRight + two + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/two.tf.glif b/sources/FixelDisplay-Light.ufo/glyphs/two.tf.glif new file mode 100644 index 00000000..cb5cc2f2 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/two.tf.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/twosuperior.glif b/sources/FixelDisplay-Light.ufo/glyphs/twosuperior.glif new file mode 100644 index 00000000..0fb28202 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/twosuperior.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/u-cy.accented.glif b/sources/FixelDisplay-Light.ufo/glyphs/u-cy.accented.glif new file mode 100644 index 00000000..f8eba92e --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/u-cy.accented.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + y+acute + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/u-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/u-cy.glif new file mode 100644 index 00000000..415f0068 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/u-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + y + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/u.glif b/sources/FixelDisplay-Light.ufo/glyphs/u.glif new file mode 100644 index 00000000..2b764edd --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/u.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |n + com.fontlab.metricsRight + l + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/uacute.glif b/sources/FixelDisplay-Light.ufo/glyphs/uacute.glif new file mode 100644 index 00000000..e9a34f74 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/uacute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+acute + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/uacutedblcyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/uacutedblcyr.glif new file mode 100644 index 00000000..00d61c2e --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/uacutedblcyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u-cy+hungarumlaut + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/ubreve.glif b/sources/FixelDisplay-Light.ufo/glyphs/ubreve.glif new file mode 100644 index 00000000..ca7d88c1 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/ubreve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+breve + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/ucircumflex.glif b/sources/FixelDisplay-Light.ufo/glyphs/ucircumflex.glif new file mode 100644 index 00000000..4e0eb473 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/ucircumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+circumflex + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/udieresis.glif b/sources/FixelDisplay-Light.ufo/glyphs/udieresis.glif new file mode 100644 index 00000000..b68b4fc6 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/udieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+dieresis + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/udieresiscyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/udieresiscyr.glif new file mode 100644 index 00000000..fc74f211 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/udieresiscyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/ugrave.glif b/sources/FixelDisplay-Light.ufo/glyphs/ugrave.glif new file mode 100644 index 00000000..3ba3de04 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/ugrave.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+grave + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/uhungarumlaut.glif b/sources/FixelDisplay-Light.ufo/glyphs/uhungarumlaut.glif new file mode 100644 index 00000000..a53c4c61 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/uhungarumlaut.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+hungarumlaut + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/ukM_onograph-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/ukM_onograph-cy.glif new file mode 100644 index 00000000..70ebd5ae --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/ukM_onograph-cy.glif @@ -0,0 +1,78 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + y-30 + com.fontlab.metricsRight + y-20 + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/ukcyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/ukcyr.glif new file mode 100644 index 00000000..7ab4acb7 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/ukcyr.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + y + com.fontlab.recipe + uni1C82_у + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/umacron.glif b/sources/FixelDisplay-Light.ufo/glyphs/umacron.glif new file mode 100644 index 00000000..de3c5238 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/umacron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+macron + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/umacroncyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/umacroncyr.glif new file mode 100644 index 00000000..10f5aa71 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/umacroncyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u-cy+macron + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/underscore.glif b/sources/FixelDisplay-Light.ufo/glyphs/underscore.glif new file mode 100644 index 00000000..9668e542 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/underscore.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/uni1C_80.glif b/sources/FixelDisplay-Light.ufo/glyphs/uni1C_80.glif new file mode 100644 index 00000000..7c4822e3 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/uni1C_80.glif @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + б + com.fontlab.metricsRight + o-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/uni1C_81.glif b/sources/FixelDisplay-Light.ufo/glyphs/uni1C_81.glif new file mode 100644 index 00000000..17b25925 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/uni1C_81.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + д-10 + com.fontlab.metricsRight + | + com.fontlab.recipe + д + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/uni1C_82.glif b/sources/FixelDisplay-Light.ufo/glyphs/uni1C_82.glif new file mode 100644 index 00000000..513c4ad8 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/uni1C_82.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/uni1C_83.glif b/sources/FixelDisplay-Light.ufo/glyphs/uni1C_83.glif new file mode 100644 index 00000000..d06669ae --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/uni1C_83.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + c + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/uni1C_84.glif b/sources/FixelDisplay-Light.ufo/glyphs/uni1C_84.glif new file mode 100644 index 00000000..453f213b --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/uni1C_84.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/uni1C_85.glif b/sources/FixelDisplay-Light.ufo/glyphs/uni1C_85.glif new file mode 100644 index 00000000..71322f40 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/uni1C_85.glif @@ -0,0 +1,20 @@ + + + + + + + + + + com.fontlab.metricsLeft + ш + com.fontlab.metricsRight + l() + com.fontlab.recipe + ш + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/uni1C_86.glif b/sources/FixelDisplay-Light.ufo/glyphs/uni1C_86.glif new file mode 100644 index 00000000..fe8e973f --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/uni1C_86.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + uni1C84 + com.fontlab.metricsRight + ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/uni1C_87.glif b/sources/FixelDisplay-Light.ufo/glyphs/uni1C_87.glif new file mode 100644 index 00000000..fab628ad --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/uni1C_87.glif @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + uni1C84-40 + com.fontlab.metricsRight + ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/uni1C_88.glif b/sources/FixelDisplay-Light.ufo/glyphs/uni1C_88.glif new file mode 100644 index 00000000..cb2d67b0 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/uni1C_88.glif @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/uni1E_B_C_.glif b/sources/FixelDisplay-Light.ufo/glyphs/uni1E_B_C_.glif new file mode 100644 index 00000000..09f224a5 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/uni1E_B_C_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+tilde.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/uni1E_B_D_.glif b/sources/FixelDisplay-Light.ufo/glyphs/uni1E_B_D_.glif new file mode 100644 index 00000000..5d20d4e6 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/uni1E_B_D_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+tilde + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/uni2010.glif b/sources/FixelDisplay-Light.ufo/glyphs/uni2010.glif new file mode 100644 index 00000000..10fc5ace --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/uni2010.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + hyphen + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/uni2D_E_E_.case.glif b/sources/FixelDisplay-Light.ufo/glyphs/uni2D_E_E_.case.glif new file mode 100644 index 00000000..5f1e8b79 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/uni2D_E_E_.case.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/uni2D_E_E_.glif b/sources/FixelDisplay-Light.ufo/glyphs/uni2D_E_E_.glif new file mode 100644 index 00000000..44cb70a4 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/uni2D_E_E_.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/uniE_000.alt.glif b/sources/FixelDisplay-Light.ufo/glyphs/uniE_000.alt.glif new file mode 100644 index 00000000..a1b68799 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/uniE_000.alt.glif @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + ї_ї + public.markColor + 0.6,0.997,1,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/uniE_000.glif b/sources/FixelDisplay-Light.ufo/glyphs/uniE_000.glif new file mode 100644 index 00000000..fbe78810 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/uniE_000.glif @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + ї_ї + public.markColor + 0.6,0.997,1,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/uniE_01A_.glif b/sources/FixelDisplay-Light.ufo/glyphs/uniE_01A_.glif new file mode 100644 index 00000000..3bada91e --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/uniE_01A_.glif @@ -0,0 +1,115 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/uniF_43A_.glif b/sources/FixelDisplay-Light.ufo/glyphs/uniF_43A_.glif new file mode 100644 index 00000000..758085e5 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/uniF_43A_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/uniF_43B_.glif b/sources/FixelDisplay-Light.ufo/glyphs/uniF_43B_.glif new file mode 100644 index 00000000..c9ac137f --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/uniF_43B_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ustraightcyr+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/uniF_45D_.glif b/sources/FixelDisplay-Light.ufo/glyphs/uniF_45D_.glif new file mode 100644 index 00000000..9bbce858 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/uniF_45D_.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Є+acute.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/uniF_45E_.glif b/sources/FixelDisplay-Light.ufo/glyphs/uniF_45E_.glif new file mode 100644 index 00000000..c8e3792f --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/uniF_45E_.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Iacute + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/uniF_45F_.glif b/sources/FixelDisplay-Light.ufo/glyphs/uniF_45F_.glif new file mode 100644 index 00000000..75edd1bc --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/uniF_45F_.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + com.fontlab.recipe + I+dieresiscase.alt+acute.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/uniF_475.glif b/sources/FixelDisplay-Light.ufo/glyphs/uniF_475.glif new file mode 100644 index 00000000..55b4aa07 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/uniF_475.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + є+acute + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/uniF_476.glif b/sources/FixelDisplay-Light.ufo/glyphs/uniF_476.glif new file mode 100644 index 00000000..1ec2a106 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/uniF_476.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + iacute + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/uniF_477.glif b/sources/FixelDisplay-Light.ufo/glyphs/uniF_477.glif new file mode 100644 index 00000000..a73d1309 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/uniF_477.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + dotlessi+dieresisacute + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/uniF_478.glif b/sources/FixelDisplay-Light.ufo/glyphs/uniF_478.glif new file mode 100644 index 00000000..84bba7fc --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/uniF_478.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Yat+acute.case + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/uniF_479.glif b/sources/FixelDisplay-Light.ufo/glyphs/uniF_479.glif new file mode 100644 index 00000000..2cf46cc5 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/uniF_479.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + yat+acute + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/uniF_498.glif b/sources/FixelDisplay-Light.ufo/glyphs/uniF_498.glif new file mode 100644 index 00000000..968ccf42 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/uniF_498.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ю+dieresis.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/uniF_499.glif b/sources/FixelDisplay-Light.ufo/glyphs/uniF_499.glif new file mode 100644 index 00000000..c6e8d207 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/uniF_499.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ю+dieresis + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/uniF_49A_.glif b/sources/FixelDisplay-Light.ufo/glyphs/uniF_49A_.glif new file mode 100644 index 00000000..093a351c --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/uniF_49A_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Obarcyr+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/uniF_49B_.glif b/sources/FixelDisplay-Light.ufo/glyphs/uniF_49B_.glif new file mode 100644 index 00000000..335b8787 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/uniF_49B_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + obarcyr+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/uniF_49C_.glif b/sources/FixelDisplay-Light.ufo/glyphs/uniF_49C_.glif new file mode 100644 index 00000000..e0615c69 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/uniF_49C_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Schwacyr+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/uniF_49D_.glif b/sources/FixelDisplay-Light.ufo/glyphs/uniF_49D_.glif new file mode 100644 index 00000000..4c6ac7ec --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/uniF_49D_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + schwacyr+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/uniF_49E_.glif b/sources/FixelDisplay-Light.ufo/glyphs/uniF_49E_.glif new file mode 100644 index 00000000..6209b8aa --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/uniF_49E_.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Yatcyr + com.fontlab.metricsRight + Tshecyr + com.fontlab.recipe + Shhacyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/uniF_49F_.glif b/sources/FixelDisplay-Light.ufo/glyphs/uniF_49F_.glif new file mode 100644 index 00000000..a2552ec4 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/uniF_49F_.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + hbar + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/uniF_4C_6.glif b/sources/FixelDisplay-Light.ufo/glyphs/uniF_4C_6.glif new file mode 100644 index 00000000..a12ec27a --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/uniF_4C_6.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ч + com.fontlab.metricsRight + Ч + com.fontlab.recipe + Ч + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/uniF_4C_7.glif b/sources/FixelDisplay-Light.ufo/glyphs/uniF_4C_7.glif new file mode 100644 index 00000000..520d45a6 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/uniF_4C_7.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ч + com.fontlab.metricsRight + ч + com.fontlab.recipe + ч+enhookcyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/uniF_4C_C_.glif b/sources/FixelDisplay-Light.ufo/glyphs/uniF_4C_C_.glif new file mode 100644 index 00000000..17c8344a --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/uniF_4C_C_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + У+acute.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/uniF_4C_D_.glif b/sources/FixelDisplay-Light.ufo/glyphs/uniF_4C_D_.glif new file mode 100644 index 00000000..d5747052 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/uniF_4C_D_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + y+acute + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/uniF_4D_2.glif b/sources/FixelDisplay-Light.ufo/glyphs/uniF_4D_2.glif new file mode 100644 index 00000000..71050451 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/uniF_4D_2.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+grave.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/uniF_4D_3.glif b/sources/FixelDisplay-Light.ufo/glyphs/uniF_4D_3.glif new file mode 100644 index 00000000..622c7217 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/uniF_4D_3.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+grave + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/uniF_4D_4.glif b/sources/FixelDisplay-Light.ufo/glyphs/uniF_4D_4.glif new file mode 100644 index 00000000..40cf1831 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/uniF_4D_4.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + P+caron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/uniF_4D_5.glif b/sources/FixelDisplay-Light.ufo/glyphs/uniF_4D_5.glif new file mode 100644 index 00000000..ce20dcc9 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/uniF_4D_5.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + p+caron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/uniF_4D_6.glif b/sources/FixelDisplay-Light.ufo/glyphs/uniF_4D_6.glif new file mode 100644 index 00000000..1401d3ac --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/uniF_4D_6.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Э+dotaccent.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/uniF_4D_7.glif b/sources/FixelDisplay-Light.ufo/glyphs/uniF_4D_7.glif new file mode 100644 index 00000000..a613771e --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/uniF_4D_7.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + э+dotaccent + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/uniF_4D_8.glif b/sources/FixelDisplay-Light.ufo/glyphs/uniF_4D_8.glif new file mode 100644 index 00000000..44eecbdc --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/uniF_4D_8.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Я+dieresis.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/uniF_4D_9.glif b/sources/FixelDisplay-Light.ufo/glyphs/uniF_4D_9.glif new file mode 100644 index 00000000..07d97ec9 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/uniF_4D_9.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + я+dieresis + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/uniF_50E_.glif b/sources/FixelDisplay-Light.ufo/glyphs/uniF_50E_.glif new file mode 100644 index 00000000..952956a3 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/uniF_50E_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/uniF_50F_.glif b/sources/FixelDisplay-Light.ufo/glyphs/uniF_50F_.glif new file mode 100644 index 00000000..494a25f9 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/uniF_50F_.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/uniF_510.glif b/sources/FixelDisplay-Light.ufo/glyphs/uniF_510.glif new file mode 100644 index 00000000..7686b99e --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/uniF_510.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/uniF_511.glif b/sources/FixelDisplay-Light.ufo/glyphs/uniF_511.glif new file mode 100644 index 00000000..a9728bf3 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/uniF_511.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/uniF_512.glif b/sources/FixelDisplay-Light.ufo/glyphs/uniF_512.glif new file mode 100644 index 00000000..8bf1e6ca --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/uniF_512.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + com.fontlab.metricsLeft + E + com.fontlab.metricsRight + E + com.fontlab.recipe + E+dieresis.case+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/uniF_513.glif b/sources/FixelDisplay-Light.ufo/glyphs/uniF_513.glif new file mode 100644 index 00000000..e4da456d --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/uniF_513.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.recipe + e+dieresis+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/uniF_514.glif b/sources/FixelDisplay-Light.ufo/glyphs/uniF_514.glif new file mode 100644 index 00000000..c6a1a501 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/uniF_514.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + com.fontlab.metricsLeft + E + com.fontlab.metricsRight + E + com.fontlab.recipe + E+dieresis.case+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/uniF_515.glif b/sources/FixelDisplay-Light.ufo/glyphs/uniF_515.glif new file mode 100644 index 00000000..f5efe308 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/uniF_515.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.recipe + e+dieresis+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/uniF_516.glif b/sources/FixelDisplay-Light.ufo/glyphs/uniF_516.glif new file mode 100644 index 00000000..f8463c83 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/uniF_516.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + З+caron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/uniF_517.glif b/sources/FixelDisplay-Light.ufo/glyphs/uniF_517.glif new file mode 100644 index 00000000..7fa2be7b --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/uniF_517.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + з+caron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/uniF_518.glif b/sources/FixelDisplay-Light.ufo/glyphs/uniF_518.glif new file mode 100644 index 00000000..4cf0fcba --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/uniF_518.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/uniF_519.glif b/sources/FixelDisplay-Light.ufo/glyphs/uniF_519.glif new file mode 100644 index 00000000..a52db5bc --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/uniF_519.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/uniF_51A_.glif b/sources/FixelDisplay-Light.ufo/glyphs/uniF_51A_.glif new file mode 100644 index 00000000..502a2f18 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/uniF_51A_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/uniF_51B_.glif b/sources/FixelDisplay-Light.ufo/glyphs/uniF_51B_.glif new file mode 100644 index 00000000..858de22a --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/uniF_51B_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/uniF_51C_.glif b/sources/FixelDisplay-Light.ufo/glyphs/uniF_51C_.glif new file mode 100644 index 00000000..73606239 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/uniF_51C_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Obarcyr+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/uniF_51D_.glif b/sources/FixelDisplay-Light.ufo/glyphs/uniF_51D_.glif new file mode 100644 index 00000000..3499e8fb --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/uniF_51D_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + obarcyr+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/uniF_51E_.glif b/sources/FixelDisplay-Light.ufo/glyphs/uniF_51E_.glif new file mode 100644 index 00000000..5a365830 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/uniF_51E_.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + com.fontlab.recipe + Obarcyr+dieresis.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/uniF_51F_.glif b/sources/FixelDisplay-Light.ufo/glyphs/uniF_51F_.glif new file mode 100644 index 00000000..87ace3cd --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/uniF_51F_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.recipe + obarcyr+dieresis+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/uniF_521.glif b/sources/FixelDisplay-Light.ufo/glyphs/uniF_521.glif new file mode 100644 index 00000000..e427cc26 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/uniF_521.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ы+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/uniF_522.glif b/sources/FixelDisplay-Light.ufo/glyphs/uniF_522.glif new file mode 100644 index 00000000..95ec00b1 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/uniF_522.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Э+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/uniF_523.glif b/sources/FixelDisplay-Light.ufo/glyphs/uniF_523.glif new file mode 100644 index 00000000..029c4ec8 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/uniF_523.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + э+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/uniF_524.glif b/sources/FixelDisplay-Light.ufo/glyphs/uniF_524.glif new file mode 100644 index 00000000..839c307e --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/uniF_524.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Э+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/uniF_525.glif b/sources/FixelDisplay-Light.ufo/glyphs/uniF_525.glif new file mode 100644 index 00000000..63971d2e --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/uniF_525.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + э+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/uniF_526.glif b/sources/FixelDisplay-Light.ufo/glyphs/uniF_526.glif new file mode 100644 index 00000000..94ff5675 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/uniF_526.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Є+dieresis.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/uniF_527.glif b/sources/FixelDisplay-Light.ufo/glyphs/uniF_527.glif new file mode 100644 index 00000000..b5a29a4b --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/uniF_527.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + є+dieresis + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/uniF_528.glif b/sources/FixelDisplay-Light.ufo/glyphs/uniF_528.glif new file mode 100644 index 00000000..2d35f28d --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/uniF_528.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Я+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/uniF_529.glif b/sources/FixelDisplay-Light.ufo/glyphs/uniF_529.glif new file mode 100644 index 00000000..0f12cb24 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/uniF_529.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + я+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/uniF_52A_.glif b/sources/FixelDisplay-Light.ufo/glyphs/uniF_52A_.glif new file mode 100644 index 00000000..f47226e0 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/uniF_52A_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Я+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/uniF_52B_.glif b/sources/FixelDisplay-Light.ufo/glyphs/uniF_52B_.glif new file mode 100644 index 00000000..08feac48 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/uniF_52B_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + я+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/uniF_52C_.glif b/sources/FixelDisplay-Light.ufo/glyphs/uniF_52C_.glif new file mode 100644 index 00000000..9b95bde2 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/uniF_52C_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ю+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/uniF_52D_.glif b/sources/FixelDisplay-Light.ufo/glyphs/uniF_52D_.glif new file mode 100644 index 00000000..2352db16 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/uniF_52D_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ю+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/uniF_52E_.glif b/sources/FixelDisplay-Light.ufo/glyphs/uniF_52E_.glif new file mode 100644 index 00000000..6770fa07 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/uniF_52E_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ю+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/uniF_52F_.glif b/sources/FixelDisplay-Light.ufo/glyphs/uniF_52F_.glif new file mode 100644 index 00000000..1fd2df75 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/uniF_52F_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ю+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/uniF_532.glif b/sources/FixelDisplay-Light.ufo/glyphs/uniF_532.glif new file mode 100644 index 00000000..68036152 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/uniF_532.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Й + com.fontlab.metricsRight + Й + com.fontlab.recipe + Й + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/uniF_533.glif b/sources/FixelDisplay-Light.ufo/glyphs/uniF_533.glif new file mode 100644 index 00000000..7d481aef --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/uniF_533.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + l() + com.fontlab.recipe + й+enhookcyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/uniF_536.glif b/sources/FixelDisplay-Light.ufo/glyphs/uniF_536.glif new file mode 100644 index 00000000..5a5b74c5 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/uniF_536.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ы+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/uniF_537.glif b/sources/FixelDisplay-Light.ufo/glyphs/uniF_537.glif new file mode 100644 index 00000000..725356ba --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/uniF_537.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ы+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/uniF_538.glif b/sources/FixelDisplay-Light.ufo/glyphs/uniF_538.glif new file mode 100644 index 00000000..0ba2cfa1 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/uniF_538.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Reversedzecyr+dieresis.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/uniF_539.glif b/sources/FixelDisplay-Light.ufo/glyphs/uniF_539.glif new file mode 100644 index 00000000..0cd1db59 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/uniF_539.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + reversedzecyr+dieresis + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/uniF_830.glif b/sources/FixelDisplay-Light.ufo/glyphs/uniF_830.glif new file mode 100644 index 00000000..b0786719 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/uniF_830.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+circumflex.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/uniF_831.glif b/sources/FixelDisplay-Light.ufo/glyphs/uniF_831.glif new file mode 100644 index 00000000..5684c4b4 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/uniF_831.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+circumflex + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/uniF_833.glif b/sources/FixelDisplay-Light.ufo/glyphs/uniF_833.glif new file mode 100644 index 00000000..5e5076b2 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/uniF_833.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+circumflex.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/uniF_834.glif b/sources/FixelDisplay-Light.ufo/glyphs/uniF_834.glif new file mode 100644 index 00000000..714f956e --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/uniF_834.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+circumflex + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/uniF_839.glif b/sources/FixelDisplay-Light.ufo/glyphs/uniF_839.glif new file mode 100644 index 00000000..0c6cc6d1 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/uniF_839.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+circumflex.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/uniF_83A_.glif b/sources/FixelDisplay-Light.ufo/glyphs/uniF_83A_.glif new file mode 100644 index 00000000..356343dc --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/uniF_83A_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+circumflex + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/uniF_86F_.glif b/sources/FixelDisplay-Light.ufo/glyphs/uniF_86F_.glif new file mode 100644 index 00000000..228d999d --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/uniF_86F_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + K+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/uniF_870.glif b/sources/FixelDisplay-Light.ufo/glyphs/uniF_870.glif new file mode 100644 index 00000000..eef95e99 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/uniF_870.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + к+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/uniF_872.glif b/sources/FixelDisplay-Light.ufo/glyphs/uniF_872.glif new file mode 100644 index 00000000..4cc0a3a3 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/uniF_872.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Л+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/uniF_873.glif b/sources/FixelDisplay-Light.ufo/glyphs/uniF_873.glif new file mode 100644 index 00000000..0d79821b --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/uniF_873.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + л+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/uniF_875.glif b/sources/FixelDisplay-Light.ufo/glyphs/uniF_875.glif new file mode 100644 index 00000000..e9a32c5e --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/uniF_875.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/uniF_876.glif b/sources/FixelDisplay-Light.ufo/glyphs/uniF_876.glif new file mode 100644 index 00000000..018efd4f --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/uniF_876.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/uniF_878.glif b/sources/FixelDisplay-Light.ufo/glyphs/uniF_878.glif new file mode 100644 index 00000000..37af0c44 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/uniF_878.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + X+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/uniF_879.glif b/sources/FixelDisplay-Light.ufo/glyphs/uniF_879.glif new file mode 100644 index 00000000..1febff4e --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/uniF_879.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + x+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/uniF_87B_.glif b/sources/FixelDisplay-Light.ufo/glyphs/uniF_87B_.glif new file mode 100644 index 00000000..7c7f39c3 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/uniF_87B_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ц+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/uniF_87C_.glif b/sources/FixelDisplay-Light.ufo/glyphs/uniF_87C_.glif new file mode 100644 index 00000000..fceb8546 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/uniF_87C_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ц+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/uniF_87E_.glif b/sources/FixelDisplay-Light.ufo/glyphs/uniF_87E_.glif new file mode 100644 index 00000000..427effe9 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/uniF_87E_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ч+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/uniF_87F_.glif b/sources/FixelDisplay-Light.ufo/glyphs/uniF_87F_.glif new file mode 100644 index 00000000..75390178 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/uniF_87F_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ч+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/uogonek.glif b/sources/FixelDisplay-Light.ufo/glyphs/uogonek.glif new file mode 100644 index 00000000..a2b4d1c8 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/uogonek.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+ogonek + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/uring.glif b/sources/FixelDisplay-Light.ufo/glyphs/uring.glif new file mode 100644 index 00000000..6cfba096 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/uring.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+ring + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/ushort-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/ushort-cy.glif new file mode 100644 index 00000000..3779947f --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/ushort-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + uni0443+breve + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/ustraightcyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/ustraightcyr.glif new file mode 100644 index 00000000..aa29236a --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/ustraightcyr.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + v + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/ustraightstrokecyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/ustraightstrokecyr.glif new file mode 100644 index 00000000..ad82221c --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/ustraightstrokecyr.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/utilde.glif b/sources/FixelDisplay-Light.ufo/glyphs/utilde.glif new file mode 100644 index 00000000..4a0415ae --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/utilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+tilde + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/v.glif b/sources/FixelDisplay-Light.ufo/glyphs/v.glif new file mode 100644 index 00000000..7ac416e2 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/v.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/ve-cy.B_G_R_.glif b/sources/FixelDisplay-Light.ufo/glyphs/ve-cy.B_G_R_.glif new file mode 100644 index 00000000..445217b4 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/ve-cy.B_G_R_.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + b-5 + com.fontlab.metricsRight + b + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/ve-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/ve-cy.glif new file mode 100644 index 00000000..547ec9ca --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/ve-cy.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/ve-cy.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/ve-cy.ss01.glif new file mode 100644 index 00000000..d443478a --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/ve-cy.ss01.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/virgo.glif b/sources/FixelDisplay-Light.ufo/glyphs/virgo.glif new file mode 100644 index 00000000..ee28c192 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/virgo.glif @@ -0,0 +1,224 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =55 + com.fontlab.metricsRight + =35 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/vzmetcomb-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/vzmetcomb-cy.glif new file mode 100644 index 00000000..dd61182c --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/vzmetcomb-cy.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/w.glif b/sources/FixelDisplay-Light.ufo/glyphs/w.glif new file mode 100644 index 00000000..de1c5ce6 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/w.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/wacute.glif b/sources/FixelDisplay-Light.ufo/glyphs/wacute.glif new file mode 100644 index 00000000..e43aa011 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/wacute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + w+acute + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/wcircumflex.glif b/sources/FixelDisplay-Light.ufo/glyphs/wcircumflex.glif new file mode 100644 index 00000000..42295677 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/wcircumflex.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + w+circumflex + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/wdieresis.glif b/sources/FixelDisplay-Light.ufo/glyphs/wdieresis.glif new file mode 100644 index 00000000..e7bdede7 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/wdieresis.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + w+dieresis + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/wecyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/wecyr.glif new file mode 100644 index 00000000..eb07f5f4 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/wecyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + w + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/wgrave.glif b/sources/FixelDisplay-Light.ufo/glyphs/wgrave.glif new file mode 100644 index 00000000..47c04130 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/wgrave.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + w+grave + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/x.glif b/sources/FixelDisplay-Light.ufo/glyphs/x.glif new file mode 100644 index 00000000..69409036 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/x.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/xatailcyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/xatailcyr.glif new file mode 100644 index 00000000..9ac70daa --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/xatailcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + x + com.fontlab.metricsRight + zhetailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/y.glif b/sources/FixelDisplay-Light.ufo/glyphs/y.glif new file mode 100644 index 00000000..96d9e014 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/y.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/yacute.glif b/sources/FixelDisplay-Light.ufo/glyphs/yacute.glif new file mode 100644 index 00000000..30369ea3 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/yacute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + y+acute + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/yaecyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/yaecyr.glif new file mode 100644 index 00000000..ce88e861 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/yaecyr.glif @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + я + com.fontlab.metricsRight + e + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/yatI_otified-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/yatI_otified-cy.glif new file mode 100644 index 00000000..ecbdcee0 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/yatI_otified-cy.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + com.fontlab.metricsRight + yatcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/yatcyr.B_G_R_.glif b/sources/FixelDisplay-Light.ufo/glyphs/yatcyr.B_G_R_.glif new file mode 100644 index 00000000..d7967046 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/yatcyr.B_G_R_.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hardsign-cy + com.fontlab.metricsRight + ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/yatcyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/yatcyr.glif new file mode 100644 index 00000000..665a780a --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/yatcyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hardsign-cy + com.fontlab.metricsRight + ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/ycircumflex.glif b/sources/FixelDisplay-Light.ufo/glyphs/ycircumflex.glif new file mode 100644 index 00000000..ee9264a7 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/ycircumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + y+circumflex + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/ydieresis.glif b/sources/FixelDisplay-Light.ufo/glyphs/ydieresis.glif new file mode 100644 index 00000000..ae13f649 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/ydieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + y+dieresis + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/yen.glif b/sources/FixelDisplay-Light.ufo/glyphs/yen.glif new file mode 100644 index 00000000..5dafdb2e --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/yen.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/yen.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/yen.ss01.glif new file mode 100644 index 00000000..0e731678 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/yen.ss01.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/yerN_eutral-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/yerN_eutral-cy.glif new file mode 100644 index 00000000..9a1e69a1 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/yerN_eutral-cy.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hardsign-cy + com.fontlab.metricsRight + ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/yeru-cy.accented.glif b/sources/FixelDisplay-Light.ufo/glyphs/yeru-cy.accented.glif new file mode 100644 index 00000000..bd65f652 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/yeru-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ы+acute + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/yeru-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/yeru-cy.glif new file mode 100644 index 00000000..53b76342 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/yeru-cy.glif @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/yeru-cy.ss01.glif b/sources/FixelDisplay-Light.ufo/glyphs/yeru-cy.ss01.glif new file mode 100644 index 00000000..552743f9 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/yeru-cy.ss01.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/yeruB_ackyer-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/yeruB_ackyer-cy.glif new file mode 100644 index 00000000..a57fb638 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/yeruB_ackyer-cy.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hardsign-cy + com.fontlab.metricsRight + dotlessi + com.fontlab.recipe + hardsign-cy_dotlessi + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/yi-cy.alt.glif b/sources/FixelDisplay-Light.ufo/glyphs/yi-cy.alt.glif new file mode 100644 index 00000000..00b90131 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/yi-cy.alt.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.recipe + idieresis + public.markColor + 0.6,0.997,1,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/yi-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/yi-cy.glif new file mode 100644 index 00000000..6d7c1879 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/yi-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + idieresis + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/ylongdieresiscyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/ylongdieresiscyr.glif new file mode 100644 index 00000000..a8f442db --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/ylongdieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + yeru-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/yn-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/yn-cy.glif new file mode 100644 index 00000000..3b886e1f --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/yn-cy.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |izhitsacyr + com.fontlab.metricsRight + |izhitsacyr + com.fontlab.recipe + izhitsa + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/yuR_eversed-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/yuR_eversed-cy.glif new file mode 100644 index 00000000..06deb0b9 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/yuR_eversed-cy.glif @@ -0,0 +1,20 @@ + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l + com.fontlab.recipe + ю + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/yusB_lended-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/yusB_lended-cy.glif new file mode 100644 index 00000000..c0e59701 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/yusB_lended-cy.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + yusbigcyr + com.fontlab.metricsRight + yusbigcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/yusC_losedlittle-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/yusC_losedlittle-cy.glif new file mode 100644 index 00000000..172b20de --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/yusC_losedlittle-cy.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + yuslittlecyr + com.fontlab.metricsRight + yuslittlecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/yusbigcyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/yusbigcyr.glif new file mode 100644 index 00000000..782c9753 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/yusbigcyr.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/yusbigiotifiedcyr.B_G_R_.glif b/sources/FixelDisplay-Light.ufo/glyphs/yusbigiotifiedcyr.B_G_R_.glif new file mode 100644 index 00000000..89d6fd79 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/yusbigiotifiedcyr.B_G_R_.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + com.fontlab.metricsRight + ж + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/yusbigiotifiedcyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/yusbigiotifiedcyr.glif new file mode 100644 index 00000000..a26eb096 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/yusbigiotifiedcyr.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + ж + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/yusiotifiedC_losedL_ittle-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/yusiotifiedC_losedL_ittle-cy.glif new file mode 100644 index 00000000..ff4d4391 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/yusiotifiedC_losedL_ittle-cy.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + yusClosedlittle-cy + com.fontlab.recipe + yusClosedlittle-cy+н + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/yuslittlecyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/yuslittlecyr.glif new file mode 100644 index 00000000..fdfc2e06 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/yuslittlecyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + v-5 + com.fontlab.metricsRight + v-5 + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/yuslittleiotifiedcyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/yuslittleiotifiedcyr.glif new file mode 100644 index 00000000..c27e0df3 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/yuslittleiotifiedcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + v-10 + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/z.glif b/sources/FixelDisplay-Light.ufo/glyphs/z.glif new file mode 100644 index 00000000..319531ba --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/z.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/zacute.glif b/sources/FixelDisplay-Light.ufo/glyphs/zacute.glif new file mode 100644 index 00000000..c7332a4e --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/zacute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + z+acute + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/zcaron.glif b/sources/FixelDisplay-Light.ufo/glyphs/zcaron.glif new file mode 100644 index 00000000..731cb5c9 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/zcaron.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + z+caron + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/zdotaccent.glif b/sources/FixelDisplay-Light.ufo/glyphs/zdotaccent.glif new file mode 100644 index 00000000..554c86a8 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/zdotaccent.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + z+dotaccent + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/ze-cy.B_G_R_.glif b/sources/FixelDisplay-Light.ufo/glyphs/ze-cy.B_G_R_.glif new file mode 100644 index 00000000..36f078d6 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/ze-cy.B_G_R_.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |c-12 + com.fontlab.metricsRight + в-5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/ze-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/ze-cy.glif new file mode 100644 index 00000000..63b9b864 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/ze-cy.glif @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |c-5 + com.fontlab.metricsRight + в + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/zedieresiscyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/zedieresiscyr.glif new file mode 100644 index 00000000..d3e9fd63 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/zedieresiscyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ze-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/zemlya-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/zemlya-cy.glif new file mode 100644 index 00000000..ccdc8745 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/zemlya-cy.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + z-10 + com.fontlab.metricsRight + z + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/zero.glif b/sources/FixelDisplay-Light.ufo/glyphs/zero.glif new file mode 100644 index 00000000..d88006a4 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/zero.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/zero.osf.glif b/sources/FixelDisplay-Light.ufo/glyphs/zero.osf.glif new file mode 100644 index 00000000..b12e6479 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/zero.osf.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + zero + com.fontlab.metricsRight + zero + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/zero.tf.glif b/sources/FixelDisplay-Light.ufo/glyphs/zero.tf.glif new file mode 100644 index 00000000..685c14a9 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/zero.tf.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/zetailcyr.B_S_H_.glif b/sources/FixelDisplay-Light.ufo/glyphs/zetailcyr.B_S_H_.glif new file mode 100644 index 00000000..98be9909 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/zetailcyr.B_S_H_.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + з + com.fontlab.metricsRight + з + com.fontlab.recipe + з + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/zetailcyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/zetailcyr.glif new file mode 100644 index 00000000..c397edbb --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/zetailcyr.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + з + com.fontlab.metricsRight + з + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/zhe-cy.B_G_R_.glif b/sources/FixelDisplay-Light.ufo/glyphs/zhe-cy.B_G_R_.glif new file mode 100644 index 00000000..c3c54837 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/zhe-cy.B_G_R_.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |k + com.fontlab.metricsRight + k + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/zhe-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/zhe-cy.glif new file mode 100644 index 00000000..aef54ac3 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/zhe-cy.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |k + com.fontlab.metricsRight + k + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/zhebrevecyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/zhebrevecyr.glif new file mode 100644 index 00000000..b55274f2 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/zhebrevecyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + zhe-cy+breve + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/zhedieresiscyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/zhedieresiscyr.glif new file mode 100644 index 00000000..98e9ca60 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/zhedieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + zhe-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/zhetailcyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/zhetailcyr.glif new file mode 100644 index 00000000..68acce48 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/zhetailcyr.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ж + com.fontlab.metricsRight + katailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/zhwe-cy.glif b/sources/FixelDisplay-Light.ufo/glyphs/zhwe-cy.glif new file mode 100644 index 00000000..e1aa9f62 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/zhwe-cy.glif @@ -0,0 +1,87 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + з + com.fontlab.metricsRight + ж + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/glyphs/zjekomicyr.glif b/sources/FixelDisplay-Light.ufo/glyphs/zjekomicyr.glif new file mode 100644 index 00000000..3fcc0a90 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/glyphs/zjekomicyr.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + з-20 + com.fontlab.metricsRight + njekomicyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Light.ufo/groups.plist b/sources/FixelDisplay-Light.ufo/groups.plist new file mode 100644 index 00000000..0215e532 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/groups.plist @@ -0,0 +1,2992 @@ + + + + + accent + + grave + acute.case + grave.case + acute + + case + + arrowdown.case + arrowdown.ss01.case + arrowleft.case + arrowleft.ss01.case + arrowright.case + arrowright.ss01.case + arrowup.case + arrowup.ss01.case + backslash.case + bar.case + braceleft.case + braceright.case + bracketleft.case + bracketright.case + brokenbar.case + bullet.case + colon.case + emdash.case + endash.case + exclamdown.case + guillemetleft.case + guillemetright.case + guilsinglleft.case + guilsinglright.case + hyphen.case + parenleft.case + parenright.case + questiondown.case + semicolon.case + at.case + bracketangleleft.case + bracketangleright.case + slash.case + + case_def + + arrowdown + arrowdown.ss01 + arrowleft + arrowleft.ss01 + arrowright + arrowright.ss01 + arrowup + arrowup.ss01 + backslash + bar + braceleft + braceright + bracketleft + bracketright + brokenbar + bullet + colon + emdash + endash + exclamdown + guillemetleft + guillemetright + guilsinglleft + guilsinglright + hyphen + parenleft + parenright + questiondown + semicolon + at + bracketangleleft + bracketangleright + slash + + cpsp + + 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 + Agrave + Aacute + Acircumflex + Atilde + Adieresis + Aring + AE + Ccedilla + Egrave + Eacute + Ecircumflex + Edieresis + Igrave + Iacute + Icircumflex + Idieresis + Eth + Ntilde + Ograve + Oacute + Ocircumflex + Otilde + Odieresis + Oslash + Ugrave + Uacute + Ucircumflex + Udieresis + Yacute + Thorn + Amacron + Abreve + Aogonek + Cacute + Ccircumflex + Cdotaccent + Ccaron + Dcaron + Dcroat + Emacron + Ebreve + Edotaccent + Eogonek + Ecaron + Gcircumflex + Gbreve + Gdotaccent + Gcommaaccent + Hcircumflex + Hbar + Itilde + Imacron + Ibreve + Iogonek + Idotaccent + IJ + Jcircumflex + Kcommaaccent + Lacute + Lcommaaccent + Lcaron + Ldot + Lslash + Nacute + Ncommaaccent + Ncaron + Eng + Omacron + Obreve + Ohungarumlaut + OE + Racute + Rcommaaccent + Rcaron + Sacute + Scircumflex + Scedilla + Scaron + Tcedilla + Tcaron + Tbar + Utilde + Umacron + Ubreve + Uring + Uhungarumlaut + Uogonek + Wcircumflex + Ycircumflex + Ydieresis + Zacute + Zdotaccent + Zcaron + Schwa + Acaron + Gacute + AEacute + Oslashacute + Scommaaccent + Tcommaaccent + Delta + Omega + Iegravecyr + uniF43A + A-cy.accented + E-cy.accented + Ii-cy.accented + O-cy.accented + U-cy.accented + Yeru-cy.accented + Ereversed-cy.accented + Iu-cy.accented + Ia-cy.accented + Io-cy.accented + uniF498 + uniF49A + uniF49C + uniF49E + uniF4C6 + uniF4CC + uniF4D2 + uniF4D4 + uniF4D6 + uniF4D8 + uniF50E + uniF510 + uniF512 + uniF514 + uniF516 + uniF518 + uniF51A + uniF51C + uniF51E + Yeru-cymacron + uniF522 + uniF524 + uniF526 + uniF528 + uniF52A + uniF52C + uniF52E + uniF532 + uniF536 + uniF538 + uniF830 + uniF833 + uniF839 + uniF86F + uniF872 + uniF875 + uniF878 + uniF87B + uniF87E + Io-cy + Djecyr + Gjecyr + E-cy + Dze-cy + I-cy + Yi-cy + Jecyr + Ljecyr + Njecyr + Tshecyr + Kjecyr + Igravecyr + Ushort-cy + Dzhecyr + A-cy + Be-cy + Ve-cy + Ge-cy + De-cy + Ie-cy + Zhe-cy + Ze-cy + Ii-cy + Iishort-cy + Ka-cy + El-cy + Em-cy + En-cy + O-cy + Pe-cy + Er-cy + Es-cy + Te-cy + U-cy + Ef-cy + Ha-cy + Tse-cy + Che-cy + Sha-cy + Shcha-cy + Hardsign-cy + Yeru-cy + Softsign-cy + Ereversed-cy + Iu-cy + Ia-cy + Omegacyr + Yatcyr + Eiotifiedcyr + Yuslittlecyr + Yuslittleiotifiedcyr + Yusbigcyr + Yusbigiotifiedcyr + Ksicyr + Psicyr + Fitacyr + Izhitsacyr + Izhitsagravedblcyr + Ukcyr + Omegaroundcyr + Omegatitlocyr + Otcyr + Koppacyr + Ishortsharptailcyr + Semisoftcyr + Ertickcyr + Gheupturn-cy + Gestrokecyr + Gehookcyr + Zhetailcyr + Zetailcyr + Katailcyr + Kaverticalstrokecyr + Kastrokecyr + Kabashkcyr + Entailcyr + Engecyr + Pehookcyr + Haabkhcyr + Estailcyr + Tetailcyr + Ustraightcyr + Ustraightstrokecyr + Xatailcyr + Tetsecyr + Chetailcyr + Chevertcyr + Shhacyr + Cheabkhcyr + Cheabkhtailcyr + Palochkacyr + Zhebrevecyr + Kahookcyr + Elsharptailcyr + Enhookcyr + Ensharptailcyr + Chekhakascyr + Emsharptailcyr + Abrevecyr + Adieresiscyr + Aiecyr + Iebrevecyr + Schwacyr + Schwadieresiscyr + Zhedieresiscyr + Zedieresiscyr + Dzeabkhcyr + Imacroncyr + Idieresiscyr + Odieresiscyr + Obarcyr + Obardieresiscyr + Ereverseddieresiscyr + Umacroncyr + Udieresiscyr + Uacutedblcyr + Chedieresiscyr + Getailcyr + Ylongdieresiscyr + Gehookstrokecyr + Hahookcyr + Hastrokecyr + Dekomicyr + Djekomicyr + Zjekomicyr + Dzjekomicyr + Ljekomicyr + Njekomicyr + Sjekomicyr + Tjekomicyr + Reversedzecyr + Elhookcyr + Lhacyr + Rhacyr + Yaecyr + Qacyr + Wecyr + Kaaleutcyr + Elmiddlehookcyr + Enmiddlehookcyr + Petailcyr + Shhatailcyr + Enhookleftcyr + Dzzhecyr + Dchecyr + Eltailcyr + Wgrave + Wacute + Wdieresis + Germandbls + uni1EBC + Zemlya-cy + Dzelo-cy + DzeReversed-cy + Iota-cy + Djerv-cy + UkMonograph-cy + OmegaBroad-cy + YerNeutral-cy + YeruBackYer-cy + YatIotified-cy + YuReversed-cy + IotifiedA-cy + YusClosedlittle-cy + YusBlended-cy + YusiotifiedClosedLittle-cy + Yn-cy + TseReversed-cy + DeSoft-cy + ElSoft-cy + EmSoft-cy + OMonocular-cy + OBinocular-cy + ODoubleMonocular-cy + Dwe-cy + Dzwe-cy + Zhwe-cy + Cche-cy + Dzze-cy + TeWithMiddleHook-cy + Twe-cy + Tswe-cy + Tsse-cy + Tche-cy + Hwe-cy + Shwe-cy + DoubleO-cy + CrossedO-cy + A-cy.ss01 + A.ss01 + AE.ss01 + Aacute.ss01 + Abreve.ss01 + Acircumflex.ss01 + Adieresis.ss01 + Agrave.ss01 + Amacron.ss01 + Aogonek.ss01 + Aring.ss01 + Atilde.ss01 + Em-cy.ss01 + Eng.ss01 + G.ss01 + Gacute.ss01 + Gbreve.ss01 + Gcircumflex.ss01 + Gcommaaccent.ss01 + Gdotaccent.ss01 + Ha-cy.ss01 + Ia-cy.ss01 + J.ss01 + Jcircumflex.ss01 + K.ss01 + Ka-cy.ss01 + Kcommaaccent.ss01 + M.ss01 + N.ss01 + Nacute.ss01 + Ncaron.ss01 + Ncommaaccent.ss01 + Ntilde.ss01 + Q.ss01 + U-cy.ss01 + Ushort-cy.ss01 + V.ss01 + W.ss01 + Wacute.ss01 + Wcircumflex.ss01 + Wdieresis.ss01 + Wgrave.ss01 + X.ss01 + Y.ss01 + Yacute.ss01 + Ycircumflex.ss01 + Ydieresis.ss01 + Z.ss01 + Zacute.ss01 + Zcaron.ss01 + Zdotaccent.ss01 + Zetailcyr.BSH + Gestrokecyr.BSH + Estailcyr.BSH + Estailcyr.CHU + Zhe-cy.ss01 + + locl.SRB + + be-cy.SRB + iegravecyr.SRB + igravecyr.SRB + + loclSRB_def + + be-cy + iegravecyr + igravecyr + + locl_BGR + + De-cy.BGR + Ef-cy.BGR + El-cy.BGR + de-cy.BGR + eiotifiedcyr.BGR + el-cy.BGR + ge-cy.BGR + hardsign-cy.BGR + ii-cy.BGR + iishort-cy.BGR + iotifieda-cy.BGR + iu-cy.BGR + ka-cy.BGR + pe-cy.BGR + sha-cy.BGR + shcha-cy.BGR + softsign-cy.BGR + te-cy.BGR + tse-cy.BGR + ve-cy.BGR + yatcyr.BGR + yusbigiotifiedcyr.BGR + ze-cy.BGR + zhe-cy.BGR + + locl_def + + De-cy + Ef-cy + El-cy + de-cy + eiotifiedcyr + el-cy + ge-cy + hardsign-cy + ii-cy + iishort-cy + iotifieda-cy + iu-cy + ka-cy + pe-cy + sha-cy + shcha-cy + softsign-cy + te-cy + tse-cy + ve-cy + yatcyr + yusbigiotifiedcyr + ze-cy + zhe-cy + + pics + + neptune + leo + virgo + bishopwhite + knightwhite + rookblack + bishopblack + knightblack + heartwhite + diamondwhite-misc + spadewhite + heart + clubwhite + crossedswords + flower + floretteblack + florettewhite + floretteoutlinedpetalledblackeight + + pics_def + + A + B + C + D + E + F + G + H + I + J + K + L + M + N + O + P + Q + R + + public.kern1.A.ss012 + + A-cy.ss01 + A.ss01 + Aacute.ss01 + Abreve.ss01 + Acircumflex.ss01 + Adieresis.ss01 + Agrave.ss01 + Amacron.ss01 + Aogonek.ss01 + Aring.ss01 + Atilde.ss01 + + public.kern1.A2 + + A + A-cy + A-cy.accented + Aacute + Abreve + Abrevecyr + Acaron + Acircumflex + Adieresis + Adieresiscyr + Agrave + Amacron + Aogonek + Aring + Atilde + De-cy.BGR + Delta + El-cy.BGR + IotifiedA-cy + Yn-cy + YusClosedlittle-cy + YusiotifiedClosedLittle-cy + Yuslittlecyr + Yuslittleiotifiedcyr + uniF50E + uniF830 + + public.kern1.AE + + AE + AE.ss01 + AEacute + Aiecyr + + public.kern1.C1 + + C + Cacute + Ccaron + Ccedilla + Ccircumflex + Cdotaccent + E-cy + Eiotifiedcyr + Es-cy + Estailcyr + Estailcyr.BSH + Estailcyr.CHU + Reversedzecyr + uniF45D + uniF526 + uniF538 + uniF875 + + public.kern1.Decyr + + Chetailcyr + De-cy + Dwe-cy + Dzze-cy + Elsharptailcyr + Eltailcyr + Emsharptailcyr + Ensharptailcyr + Entailcyr + Ishortsharptailcyr + Petailcyr + Shcha-cy + Shwe-cy + Tetsecyr + Tse-cy + Tswe-cy + uniF87B + + public.kern1.E1 + + E + E-cy.accented + Eacute + Ebreve + Ecaron + Ecircumflex + Edieresis + Edotaccent + Egrave + Emacron + Eogonek + Ie-cy + Iebrevecyr + Io-cy + Io-cy.accented + Yaecyr + uni1EBC + uniF510 + uniF512 + uniF514 + uniF833 + + public.kern1.G.ss01 + + G.ss01 + Gacute.ss01 + Gbreve.ss01 + Gcircumflex.ss01 + Gcommaaccent.ss01 + Gdotaccent.ss01 + + public.kern1.G1 + + G + Gacute + Gbreve + Gcircumflex + Gcommaaccent + Gdotaccent + + public.kern1.Ge-cy + + DeSoft-cy + ElSoft-cy + EmSoft-cy + Engecyr + Ge-cy + Gehookstrokecyr + Gestrokecyr + Gestrokecyr.BSH + Getailcyr + Gheupturn-cy + Gjecyr + TseReversed-cy + YeruBackYer-cy + uniF872 + + public.kern1.H + + Eng + Eng.ss01 + H + Hbar + Hcircumflex + I + Iacute + Ibreve + Icircumflex + Idieresis + Idotaccent + Igrave + Imacron + Iogonek + Itilde + J.ss01 + Jcircumflex.ss01 + M + M.ss01 + N + N.ss01 + Nacute + Nacute.ss01 + Ncaron + Ncaron.ss01 + Ncommaaccent + Ncommaaccent.ss01 + Ntilde + Ntilde.ss01 + + public.kern1.Hardcyr + + Hardsign-cy + Ljecyr + Njecyr + Semisoftcyr + Shhacyr + Softsign-cy + YatIotified-cy + Yatcyr + YerNeutral-cy + uniF478 + + public.kern1.J1 + + J + Jcircumflex + Jecyr + + public.kern1.K + + K + K.ss01 + Ka-cy + Ka-cy.ss01 + Kaaleutcyr + Kabashkcyr + Kastrokecyr + Kcommaaccent + Kcommaaccent.ss01 + Kjecyr + uniF86F + + public.kern1.L + + L + Lacute + Lcaron + Lcommaaccent + Lslash + + public.kern1.O + + Cheabkhcyr + Cheabkhtailcyr + CrossedO-cy + D + Dcaron + Dcroat + DoubleO-cy + Ef-cy + Ef-cy.BGR + Ereversed-cy + Ereversed-cy.accented + Ereverseddieresiscyr + Eth + Fitacyr + Iu-cy + Iu-cy.accented + O + O-cy + O-cy.accented + OBinocular-cy + ODoubleMonocular-cy + OMonocular-cy + Oacute + Obarcyr + Obardieresiscyr + Obreve + Ocircumflex + Odieresis + Odieresiscyr + Ograve + Ohungarumlaut + Omacron + Omega + Omegaroundcyr + Oslash + Oslashacute + Otilde + Q + Qacyr + Schwa + Schwacyr + Schwadieresiscyr + Sjekomicyr + uniF498 + uniF49A + uniF49C + uniF4D2 + uniF4D6 + uniF518 + uniF51A + uniF51C + uniF51E + uniF522 + uniF524 + uniF52C + uniF52E + uniF839 + + public.kern1.Oslash.alt + + Ha-cy + Ha-cy.ss01 + Hahookcyr + Lhacyr + Rhacyr + X + X.ss01 + uniF878 + + public.kern1.P + + Er-cy + Ertickcyr + P + uniF4D4 + + public.kern1.R + + R + Racute + Rcaron + Rcommaaccent + + public.kern1.S1 + + Dzwe-cy + S + Sacute + Scaron + Scedilla + Scircumflex + Scommaaccent + + public.kern1.T1 + + Koppacyr + T + Tcaron + Tcedilla + Tcommaaccent + Te-cy + Tetailcyr + Tsse-cy + Twe-cy + + public.kern1.U1 + + OmegaBroad-cy + Omegacyr + Omegatitlocyr + Otcyr + Psicyr + U + Uacute + Ubreve + Ucircumflex + Udieresis + Ugrave + Uhungarumlaut + Umacron + Uogonek + Uring + Utilde + + public.kern1.Ucyr1 + + U-cy + U-cy.accented + U-cy.ss01 + Uacutedblcyr + Udieresiscyr + Umacroncyr + Ushort-cy + Ushort-cy.ss01 + uniF4CC + + public.kern1.V + + Izhitsacyr + Izhitsagravedblcyr + V + V.ss01 + + public.kern1.W.ss011 + + W.ss01 + Wacute.ss01 + Wcircumflex.ss01 + Wdieresis.ss01 + Wgrave.ss01 + + public.kern1.W1 + + W + Wacute + Wcircumflex + Wdieresis + Wecyr + Wgrave + + public.kern1.Y.ss011 + + Y.ss01 + Yacute.ss01 + Ycircumflex.ss01 + Ydieresis.ss01 + + public.kern1.Y1 + + Ustraightcyr + Ustraightstrokecyr + Y + Yacute + Ycircumflex + Ydieresis + uniF43A + + public.kern1.Yacyr + + Cche-cy + Che-cy + Chedieresiscyr + Chekhakascyr + Chevertcyr + Dekomicyr + Elhookcyr + Em-cy + En-cy + Enhookcyr + Enhookleftcyr + I-cy + Ia-cy + Ia-cy.accented + Ia-cy.ss01 + Idieresiscyr + Ii-cy + Ii-cy.accented + Iishort-cy + Imacroncyr + Palochkacyr + Pe-cy + Sha-cy + Tche-cy + Yeru-cy + Yeru-cy.accented + Yeru-cymacron + Yi-cy + Ylongdieresiscyr + YuReversed-cy + palochkacyr + uniF45E + uniF45F + uniF4C6 + uniF4D8 + uniF528 + uniF52A + uniF532 + uniF536 + uniF87E + + public.kern1.Z1 + + Dzelo-cy + Z + Z.ss01 + Zacute + Zacute.ss01 + Zcaron + Zcaron.ss01 + Zdotaccent + Zdotaccent.ss01 + Zemlya-cy + + public.kern1.Ze-cy + + Dzeabkhcyr + Ksicyr + Ze-cy + Zedieresiscyr + Zetailcyr + Zetailcyr.BSH + uniF516 + + public.kern1.Zhe-cy + + Dzzhecyr + Katailcyr + Kaverticalstrokecyr + Xatailcyr + YusBlended-cy + Yusbigcyr + Yusbigiotifiedcyr + Zhe-cy + Zhebrevecyr + Zhedieresiscyr + Zhetailcyr + Zhwe-cy + + public.kern1.a1 + + a + aacute + abreve + acaron + acircumflex + adieresis + agrave + amacron + aogonek + aring + atilde + + public.kern1.c1 + + c + cacute + ccaron + ccedilla + ccircumflex + cdotaccent + e-cy + e-cy.hist + eiotifiedcyr + eiotifiedcyr.BGR + es-cy + estailcyr + estailcyr.BSH + estailcyr.CHU + koppacyr + reversedzecyr + sjekomicyr + uni1C83 + uniF475 + uniF527 + uniF539 + uniF876 + + public.kern1.comma1 + + comma + quotedblbase + quotesinglbase + + public.kern1.copyright1 + + copyright + registered + + public.kern1.dcaron + + dcaron + dcaron.ss01 + lcaron + + public.kern1.decyr1 + + chetailcyr + dchecyr + de-cy + de-cy.ss01 + dwe-cy + dzze-cy + elsharptailcyr + eltailcyr + emsharptailcyr + ensharptailcyr + entailcyr + ishortsharptailcyr + petailcyr + shcha-cy + shcha-cy.BGR + shhatailcyr + shwe-cy + tetsecyr + tse-cy + tse-cy.BGR + tswe-cy + uniF87C + + public.kern1.e.ss011 + + e.ss01 + eacute.ss01 + ebreve.ss01 + ecaron.ss01 + ecircumflex.ss01 + edieresis.ss01 + edotaccent.ss01 + egrave.ss01 + emacron.ss01 + eogonek.ss01 + oe.ss01 + + public.kern1.e1 + + ae + aeacute + aiecyr + cheabkhcyr + cheabkhtailcyr + e + e-cy.accented + eacute + ebreve + ecaron + ecircumflex + edieresis + edotaccent + egrave + emacron + eogonek + ie-cy + iebrevecyr + iegravecyr + iegravecyr.SRB + io-cy + io-cy.accented + uni1EBD + uniF511 + uniF513 + uniF515 + uniF834 + yaecyr + + public.kern1.el-cy.BGR + + el-cy.BGR + iotifieda-cy + iotifieda-cy.BGR + uni1C81 + yn-cy + yusClosedlittle-cy + yusiotifiedClosedLittle-cy + yuslittlecyr + yuslittleiotifiedcyr + + public.kern1.emdash1 + + emdash + endash + hyphen + + public.kern1.f1 + + f + f_f + + public.kern1.fi + + f_f_i + fi + + public.kern1.five1 + + five + five.tf + + public.kern1.four1 + + four + four.tf + + public.kern1.g.ss011 + + g.ss01 + gacute.ss01 + gbreve.ss01 + gcircumflex.ss01 + gcommaaccent.ss01 + gdotaccent.ss01 + + public.kern1.g1 + + g + gacute + gbreve + gcircumflex + gcommaaccent + gdotaccent + + public.kern1.gecyr + + deSoft-cy + elSoft-cy + emSoft-cy + engecyr + ge-cy + gehookstrokecyr + gestrokecyr + gestrokecyr.BSH + getailcyr + gheupturn-cy + gjecyr + + public.kern1.guillemotright1 + + guillemetright + guilsinglright + + public.kern1.hardcyr + + Tjekomicyr + djekomicyr + elmiddlehookcyr + enmiddlehookcyr + gehookcyr + hardsign-cy + hardsign-cy.BGR + hardsign-cy.ss01 + ljecyr + ljecyr.ss01 + ljekomicyr + njecyr + njecyr.ss01 + njekomicyr + pehookcyr + semisoftcyr + softsign-cy + softsign-cy.BGR + softsign-cy.ss01 + tewithmiddlehook-cy + tjekomicyr + uni1C86 + uni1C87 + uniF479 + yatIotified-cy + yatcyr + yatcyr.BGR + yerNeutral-cy + zjekomicyr + + public.kern1.i1 + + Djekomicyr + Ljekomicyr + Njekomicyr + Zjekomicyr + i + i-cy + iacute + icircumflex + igrave + imacron + iogonek + itilde + uniF476 + yi-cy.alt + + public.kern1.icyr1 + + cche-cy + che-cy + chedieresiscyr + chekhakascyr + chevertcyr + de-cy.BGR + el-cy + elhookcyr + em-cy + en-cy + enhookcyr + enhookleftcyr + ia-cy + ia-cy.accented + idieresiscyr + igravecyr + ii-cy + ii-cy.accented + iishort-cy + imacroncyr + mu + pe-cy + psicyr + q + qacyr + sha-cy + sha-cy.BGR + tche-cy + tseReversed-cy + ubreve + uni1C85 + uniF4C7 + uniF4D9 + uniF521 + uniF529 + uniF52B + uniF533 + uniF537 + uniF873 + uniF87F + utilde + yeru-cy + yeru-cy.accented + yeru-cy.ss01 + yeruBackyer-cy + ylongdieresiscyr + yuReversed-cy + + public.kern1.j1 + + ij + j + jcircumflex + jdotless + + public.kern1.k + + k + ka-cy + ka-cy.BGR + kaaleutcyr + kabashkcyr + kastrokecyr + kcommaaccent + kgreenlandic + kjecyr + uniF870 + + public.kern1.l + + f_f_l + fl + l + lacute + lcommaaccent + + public.kern1.l.ss011 + + Iota-cy + iota-cy + l.ss01 + lacute.ss01 + lcommaaccent.ss01 + + public.kern1.n + + Djecyr + Elmiddlehookcyr + Enmiddlehookcyr + Gehookcyr + Hwe-cy + Kahookcyr + Pehookcyr + Shhatailcyr + TeWithMiddleHook-cy + Tshecyr + a-cy.accented + a-cy.ss01 + a.ss01 + aacute.ss01 + abreve.ss01 + abrevecyr + acircumflex.ss01 + adieresis.ss01 + adieresiscyr + agrave.ss01 + aogonek.ss01 + aring.ss01 + atilde.ss01 + djecyr + el-cy.ss01 + h + hbar + hcircumflex + hwe-cy + ia-cy.ss01 + iotifieda-cy.hist + m + n + nacute + napostrophe + ncaron + ncommaaccent + ntilde + pe-cy.BGR + q.ss01 + shhacyr + te-cy.BGR + tshecyr + uniF49E + uniF49F + uniF50F + uniF831 + + public.kern1.numero + + numero + numero.ss01 + + public.kern1.o1 + + b + b.ss01 + be-cy.SRB + crossedo-cy + ef-cy + er-cy + er-cy.ss01 + ereversed-cy + ereversed-cy.accented + ereverseddieresiscyr + ertickcyr + eturned + fitacyr + iu-cy + iu-cy.BGR + iu-cy.accented + o + o-cy + o-cy.accented + oBinocular-cy + oDoubleMonocular-cy + oMonocular-cy + oacute + obarcyr + obardieresiscyr + obreve + ocircumflex + odieresis + odieresiscyr + ograve + ohungarumlaut + omacron + omegaBroad-cy + omegaroundcyr + omegatitlocyr + oslashacute + otilde + p + p.ss01 + schwacyr + schwadieresiscyr + thorn + uni1C82 + uniF499 + uniF49D + uniF4D3 + uniF4D5 + uniF4D7 + uniF519 + uniF51B + uniF51D + uniF51F + uniF523 + uniF525 + uniF52D + uniF52F + uniF83A + + public.kern1.period1 + + ellipsis + period + + public.kern1.quotedbl1 + + quotedbl + quotesingle + + public.kern1.quoteleft1 + + quotedblleft + quoteleft + + public.kern1.quoteright1 + + apostrophemod + minute + quotedblright + quoteright + second + + public.kern1.s1 + + dzwe-cy + s + sacute + scaron + scedilla + scircumflex + scommaaccent + + public.kern1.t.ss011 + + t.ss01 + tcedilla.ss01 + tcommaaccent.ss01 + + public.kern1.t1 + + t + tcaron + tcedilla + tcommaaccent + + public.kern1.te-cy + + te-cy + tetailcyr + tsse-cy + twe-cy + + public.kern1.u1 + + igravecyr.SRB + ii-cy.BGR + iishort-cy.BGR + pe-cy.SRB + te-cy.SRB + u + uacute + ucircumflex + udieresis + ugrave + uhungarumlaut + umacron + uogonek + uring + + public.kern1.uni0435.ss011 + + ie-cy.ss01 + io-cy.ss01 + + public.kern1.v + + izhitsacyr + izhitsagravedblcyr + v + + public.kern1.w1 + + omegacyr + otcyr + w + wacute + wcircumflex + wdieresis + wecyr + wgrave + + public.kern1.x + + ha-cy + hahookcyr + lhacyr + rhacyr + uniF879 + x + + public.kern1.y1 + + Ukcyr + u-cy + u-cy.accented + uacutedblcyr + udieresiscyr + ukcyr + umacroncyr + uniF43B + uniF4CD + ushort-cy + ustraightcyr + ustraightstrokecyr + y + yacute + ycircumflex + ydieresis + + public.kern1.z1 + + dzelo-cy + z + zacute + zcaron + zdotaccent + zemlya-cy + + public.kern1.ze-cy + + dzeabkhcyr + ksicyr + uniF517 + ze-cy + ze-cy.BGR + zedieresiscyr + zetailcyr + zetailcyr.BSH + + public.kern1.zhe-cy + + dzzhecyr + katailcyr + kaverticalstrokecyr + xatailcyr + yusBlended-cy + yusbigcyr + yusbigiotifiedcyr + yusbigiotifiedcyr.BGR + zhe-cy + zhe-cy.BGR + zhebrevecyr + zhedieresiscyr + zhetailcyr + zhwe-cy + + public.kern2.A.ss01 + + A.ss01 + AE.ss01 + Aacute.ss01 + Acircumflex.ss01 + Adieresis.ss01 + Agrave.ss01 + Amacron.ss01 + Aogonek.ss01 + Atilde.ss01 + + public.kern2.A.ss012 + + A-cy.ss01 + Abreve.ss01 + Aring.ss01 + + public.kern2.A2 + + A + A-cy + A-cy.accented + AE + AEacute + Aacute + Abreve + Abrevecyr + Acaron + Acircumflex + Adieresis + Adieresiscyr + Agrave + Aiecyr + Amacron + Aogonek + Aring + Atilde + De-cy.BGR + Delta + El-cy.BGR + Yn-cy + YusClosedlittle-cy + Yuslittlecyr + uniF50E + uniF830 + + public.kern2.B + + B + D + Dcaron + E + Eacute + Ecaron + Ecircumflex + Edieresis + Edotaccent + Egrave + Emacron + Eogonek + F + H + Hbar + Hcircumflex + I + Iacute + Ibreve + Icircumflex + Idieresis + Idotaccent + Igrave + Imacron + Iogonek + Itilde + K + K.ss01 + Kcommaaccent + Kcommaaccent.ss01 + L + Lacute + Lcaron + Lcommaaccent + Ldot + M + N + N.ss01 + Nacute + Nacute.ss01 + Ncaron + Ncaron.ss01 + Ncommaaccent + Ncommaaccent.ss01 + Ntilde + Ntilde.ss01 + P + R + Racute + Rcaron + Rcommaaccent + Thorn + uni1EBC + + public.kern2.Che-cy + + Cche-cy + Che-cy + Chedieresiscyr + Chekhakascyr + Chetailcyr + Chevertcyr + uniF4C6 + uniF87E + + public.kern2.De-cy + + Dchecyr + De-cy + DeSoft-cy + Dwe-cy + Dzze-cy + Dzzhecyr + TseReversed-cy + + public.kern2.El-cy + + El-cy + ElSoft-cy + Elhookcyr + Elmiddlehookcyr + Elsharptailcyr + Eltailcyr + Lhacyr + Ljekomicyr + uniF872 + + public.kern2.Eth + + Dcroat + Eth + Gestrokecyr + + public.kern2.G + + C + Cacute + Ccaron + Ccedilla + Ccircumflex + Cdotaccent + CrossedO-cy + DoubleO-cy + E-cy + Ef-cy.BGR + Es-cy + Estailcyr + Estailcyr.BSH + Estailcyr.CHU + Fitacyr + G + G.ss01 + Gacute + Gacute.ss01 + Gbreve + Gbreve.ss01 + Gcircumflex + Gcircumflex.ss01 + Gcommaaccent + Gcommaaccent.ss01 + Gdotaccent + Gdotaccent.ss01 + Haabkhcyr + Koppacyr + O + O-cy + O-cy.accented + OBinocular-cy + ODoubleMonocular-cy + OE + OMonocular-cy + Oacute + Obarcyr + Obardieresiscyr + Obreve + Ocircumflex + Odieresis + Odieresiscyr + Ograve + Ohungarumlaut + Omacron + Omegaroundcyr + Oslash + Otilde + Q + Q.ss01 + Qacyr + Schwacyr + Schwadieresiscyr + Sjekomicyr + Ukcyr + YuReversed-cy + uniF45D + uniF49A + uniF49C + uniF4D2 + uniF518 + uniF51A + uniF51C + uniF51E + uniF526 + uniF839 + uniF875 + + public.kern2.Gecyr + + Be-cy + E-cy.accented + Eiotifiedcyr + Em-cy + EmSoft-cy + Emsharptailcyr + En-cy + Engecyr + Enhookcyr + Enhookleftcyr + Enmiddlehookcyr + Ensharptailcyr + Entailcyr + Er-cy + Ertickcyr + Gehookcyr + Gestrokecyr.BSH + Getailcyr + Gheupturn-cy + Gjecyr + Hwe-cy + I-cy + Iebrevecyr + Ii-cy + Ii-cy.accented + Io-cy.accented + IotifiedA-cy + Iu-cy.accented + Ka-cy + Kaaleutcyr + Kahookcyr + Katailcyr + Kaverticalstrokecyr + Kjecyr + Njekomicyr + Palochkacyr + Pe-cy + Pehookcyr + Petailcyr + Rhacyr + Shhacyr + Shhatailcyr + Shwe-cy + Tswe-cy + Ve-cy + Yeru-cy.accented + Yeru-cymacron + Yi-cy + Ylongdieresiscyr + Yusbigiotifiedcyr + YusiotifiedClosedLittle-cy + Yuslittleiotifiedcyr + palochkacyr + uniF45E + uniF45F + uniF498 + uniF4D4 + uniF510 + uniF512 + uniF514 + uniF52C + uniF52E + uniF532 + uniF536 + uniF833 + uniF86F + uniF87B + + public.kern2.Ia-cy + + Ia-cy + Ia-cy.accented + Yaecyr + uniF4D8 + uniF528 + uniF52A + + public.kern2.Iishort-cy + + Idieresiscyr + Iishort-cy + Imacroncyr + Ishortsharptailcyr + + public.kern2.J + + J + Jcircumflex + Jecyr + + public.kern2.Oslash.alt + + Ha-cy.ss01 + Hahookcyr + X + X.ss01 + Xatailcyr + uniF878 + + public.kern2.S + + Dzwe-cy + S + Sacute + Scaron + Scedilla + Scircumflex + Scommaaccent + + public.kern2.T + + Djecyr + T + Tcaron + Tcedilla + Tche-cy + Tcommaaccent + Te-cy + TeWithMiddleHook-cy + Tetailcyr + Tetsecyr + Tjekomicyr + Tshecyr + Tsse-cy + Twe-cy + + public.kern2.U + + Iota-cy + OmegaBroad-cy + Omegacyr + Omegatitlocyr + Otcyr + Psicyr + U + Uacute + Ubreve + Ucircumflex + Udieresis + Ugrave + Uhungarumlaut + Umacron + Uogonek + Uring + Utilde + + public.kern2.Ucyr.ss01 + + U-cy.accented + U-cy.ss01 + Uacutedblcyr + Udieresiscyr + Umacroncyr + Ushort-cy.ss01 + uniF4CC + + public.kern2.V + + Izhitsacyr + Izhitsagravedblcyr + V + V.ss01 + + public.kern2.W + + W + W.ss01 + Wacute + Wacute.ss01 + Wcircumflex + Wcircumflex.ss01 + Wdieresis + Wdieresis.ss01 + Wecyr + Wgrave + Wgrave.ss01 + + public.kern2.Y + + Ustraightcyr + Ustraightstrokecyr + Y + Y.ss01 + Yacute + Yacute.ss01 + Ycircumflex + Ycircumflex.ss01 + Ydieresis + Ydieresis.ss01 + uniF43A + + public.kern2.Z + + Dzelo-cy + Z + Z.ss01 + Zacute + Zacute.ss01 + Zcaron + Zcaron.ss01 + Zdotaccent + Zdotaccent.ss01 + Zemlya-cy + + public.kern2.Ze-cy1 + + Dzeabkhcyr + Ksicyr + Ze-cy + Zedieresiscyr + Zetailcyr + Zetailcyr.BSH + Zhwe-cy + uniF516 + + public.kern2.Zhe-cy1 + + YusBlended-cy + Yusbigcyr + Zhe-cy + Zhebrevecyr + Zhedieresiscyr + Zhetailcyr + + public.kern2.a + + a + a-cy + a-cy.accented + aacute + abreve + abrevecyr + acaron + acircumflex + adieresis + adieresiscyr + ae + aeacute + agrave + aiecyr + amacron + aogonek + aring + atilde + uniF50F + uniF831 + + public.kern2.acute.case + + acute.case + hungarumlaut.case + + public.kern2.che-cy + + cche-cy + che-cy + chedieresiscyr + chekhakascyr + chetailcyr + chevertcyr + uniF4C7 + uniF87F + + public.kern2.comma + + comma + quotedblbase + quotesinglbase + + public.kern2.copyright + + copyright + registered + + public.kern2.decyr.ss01 + + de-cy.ss01 + deSoft-cy + dwe-cy + dzze-cy + dzzhecyr + tseReversed-cy + + public.kern2.el-cy + + el-cy + el-cy.ss01 + elSoft-cy + elhookcyr + elmiddlehookcyr + elsharptailcyr + eltailcyr + lhacyr + ljecyr.ss01 + ljekomicyr + uniF873 + + public.kern2.el-cy.BGR1 + + el-cy.BGR + uni1C81 + yn-cy + yusClosedlittle-cy + yuslittlecyr + + public.kern2.emdash + + emdash + endash + hyphen + + public.kern2.f + + f + f_f + f_f_i + f_f_l + fi + fl + gestrokecyr + + public.kern2.f_f.ss01 + + f_f.ss01 + f_f_i.ss01 + f_f_l.ss01 + + public.kern2.fi.ss01 + + fi.ss01 + fl.ss01 + + public.kern2.five + + five + five.tf + + public.kern2.four + + four + four.tf + + public.kern2.g + + g + gacute + gbreve + gcircumflex + gcommaaccent + gdotaccent + + public.kern2.g.ss01 + + g.ss01 + gacute.ss01 + gbreve.ss01 + gcircumflex.ss01 + gcommaaccent.ss01 + gdotaccent.ss01 + + public.kern2.guillemotleft + + guillemetleft + guilsinglleft + + public.kern2.guillemotright + + guillemetright + guilsinglright + + public.kern2.h + + eiotifiedcyr.BGR + h + hcircumflex + hwe-cy + iotifieda-cy.BGR + iu-cy.BGR + k + ka-cy.BGR + kcommaaccent + l + lacute + lcaron + lcommaaccent + ldot + shhacyr + shhatailcyr + ve-cy.BGR + yatcyr.BGR + yusbigiotifiedcyr.BGR + + public.kern2.i1 + + i + i-cy + iacute + icircumflex + igrave + imacron + iogonek + itilde + uniF476 + yi-cy.alt + + public.kern2.ia-cy + + ia-cy + ia-cy.accented + ia-cy.ss01 + uniF4D9 + uniF529 + uniF52B + yaecyr + + public.kern2.j + + enhookleftcyr + j + jcircumflex + jdotless + + public.kern2.l.ss01 + + l.ss01 + lacute.ss01 + lcaron.ss01 + lcommaaccent.ss01 + ldot.ss01 + + public.kern2.m + + eiotifiedcyr + em-cy + emSoft-cy + emsharptailcyr + en-cy + eng + engecyr + enhookcyr + enmiddlehookcyr + ensharptailcyr + entailcyr + er-cy + er-cy.ss01 + ertickcyr + ge-cy + gehookcyr + gehookstrokecyr + gestrokecyr.BSH + getailcyr + gheupturn-cy + gjecyr + idieresiscyr + idotless + igravecyr + ii-cy + ii-cy.accented + iishort-cy + imacroncyr + iotifieda-cy + ishortsharptailcyr + iu-cy + iu-cy.accented + ka-cy + kaaleutcyr + kahookcyr + katailcyr + kaverticalstrokecyr + kgreenlandic + kjecyr + m + mu + n + nacute + ncaron + ncommaaccent + njecyr.ss01 + njekomicyr + ntilde + p + p.ss01 + pe-cy + pe-cy.BGR + pehookcyr + petailcyr + psicyr + r + racute + rcaron + rcommaaccent + rhacyr + sha-cy + shcha-cy + shwe-cy + softsign-cy + softsign-cy.BGR + softsign-cy.ss01 + te-cy.BGR + tse-cy + tswe-cy + uni1C85 + uniF499 + uniF4D5 + uniF521 + uniF52D + uniF52F + uniF533 + uniF537 + uniF870 + uniF87C + ve-cy + ve-cy.ss01 + yatIotified-cy + yeru-cy + yeru-cy.accented + yeru-cy.ss01 + ylongdieresiscyr + yusbigiotifiedcyr + yusiotifiedClosedLittle-cy + yuslittleiotifiedcyr + + public.kern2.o + + Dekomicyr + Djekomicyr + a-cy.ss01 + a.ss01 + aacute.ss01 + abreve.ss01 + acircumflex.ss01 + adieresis.ss01 + agrave.ss01 + amacron.ss01 + aogonek.ss01 + aring.ss01 + atilde.ss01 + c + cacute + ccaron + ccedilla + ccircumflex + cdotaccent + cent + crossedo-cy + d + d.ss01 + dcaron + dcaron.ss01 + dcroat + dcroat.ss01 + de-cy.BGR + dekomicyr + djekomicyr + e + e-cy + e-cy.accented + e-cy.hist + e.ss01 + eacute + eacute.ss01 + ebreve + ebreve.ss01 + ecaron + ecaron.ss01 + ecircumflex + ecircumflex.ss01 + edieresis + edieresis.ss01 + edotaccent + edotaccent.ss01 + ef-cy + egrave + egrave.ss01 + emacron + emacron.ss01 + eogonek + eogonek.ss01 + es-cy + estailcyr + estailcyr.BSH + estailcyr.CHU + eth + eturned + fitacyr + haabkhcyr + ie-cy + ie-cy.ss01 + iebrevecyr + iegravecyr + iegravecyr.SRB + io-cy + io-cy.accented + io-cy.ss01 + koppacyr + o + o-cy + o-cy.accented + oBinocular-cy + oDoubleMonocular-cy + oMonocular-cy + oacute + obarcyr + obardieresiscyr + obreve + ocircumflex + odieresis + odieresiscyr + oe.ss01 + ograve + ohungarumlaut + omacron + omegaBroad-cy + omegaroundcyr + omegatitlocyr + oslashacute + otilde + q + q.ss01 + qacyr + schwacyr + schwadieresiscyr + sjekomicyr + ukcyr + uni1C82 + uni1C83 + uni1EBD + uniF475 + uniF49D + uniF4D3 + uniF511 + uniF513 + uniF515 + uniF519 + uniF51B + uniF51D + uniF51F + uniF527 + uniF834 + uniF83A + uniF876 + yuReversed-cy + + public.kern2.percent + + percent + perthousand + + public.kern2.period + + ellipsis + period + + public.kern2.quotedbl + + quotedbl + quotesingle + + public.kern2.quoteleft + + quotedblleft + quoteleft + + public.kern2.quoteright + + apostrophemod + minute + quotedblright + quoteright + second + + public.kern2.s + + dzwe-cy + s + sacute + scaron + scedilla + scircumflex + scommaaccent + + public.kern2.t + + t + t.ss01 + tbar.ss01 + tcaron + tcaron.ss01 + tcedilla + tcedilla.ss01 + tcommaaccent + tcommaaccent.ss01 + + public.kern2.tecyr + + tche-cy + te-cy.ss01 + tetailcyr + tetsecyr + tewithmiddlehook-cy + tjekomicyr + tsse-cy + twe-cy + + public.kern2.u + + igravecyr.SRB + ii-cy.BGR + iishort-cy.BGR + iota-cy + pe-cy.SRB + sha-cy.BGR + shcha-cy.BGR + te-cy.SRB + tse-cy.BGR + u + uacute + ubreve + ucircumflex + udieresis + ugrave + uhungarumlaut + umacron + uogonek + uring + utilde + + public.kern2.v1 + + izhitsacyr + izhitsagravedblcyr + v + + public.kern2.w + + omegacyr + otcyr + w + wacute + wcircumflex + wdieresis + wecyr + wgrave + + public.kern2.x + + ha-cy + hahookcyr + uniF879 + x + + public.kern2.y + + u-cy + u-cy.accented + uacutedblcyr + udieresiscyr + umacroncyr + uniF43B + uniF4CD + ustraightcyr + ustraightstrokecyr + y + yacute + ycircumflex + ydieresis + + public.kern2.z + + dzelo-cy + z + zacute + zcaron + zdotaccent + zemlya-cy + + public.kern2.ze-cy1 + + dzeabkhcyr + ksicyr + uniF517 + ze-cy + ze-cy.BGR + zedieresiscyr + zetailcyr + zetailcyr.BSH + zhwe-cy + + public.kern2.zero + + uni1C80 + zero + zero.tf + + public.kern2.zhe-cy1 + + xatailcyr + yusBlended-cy + yusbigcyr + zhe-cy + zhe-cy.BGR + zhebrevecyr + zhedieresiscyr + zhetailcyr + + ss01 + + A-cy.ss01 + A.ss01 + AE.ss01 + Aacute.ss01 + Abreve.ss01 + Acircumflex.ss01 + Adieresis.ss01 + Agrave.ss01 + Amacron.ss01 + Aogonek.ss01 + Aring.ss01 + Atilde.ss01 + Em-cy.ss01 + Eng.ss01 + G.ss01 + Gacute.ss01 + Gbreve.ss01 + Gcircumflex.ss01 + Gcommaaccent.ss01 + Gdotaccent.ss01 + Ha-cy.ss01 + Ia-cy.ss01 + J.ss01 + Jcircumflex.ss01 + K.ss01 + Ka-cy.ss01 + Kcommaaccent.ss01 + M.ss01 + N.ss01 + Nacute.ss01 + Ncaron.ss01 + Ncommaaccent.ss01 + Ntilde.ss01 + Q.ss01 + U-cy.ss01 + Ushort-cy.ss01 + V.ss01 + W.ss01 + Wacute.ss01 + Wcircumflex.ss01 + Wdieresis.ss01 + Wgrave.ss01 + X.ss01 + Y.ss01 + Yacute.ss01 + Ycircumflex.ss01 + Ydieresis.ss01 + Z.ss01 + Zacute.ss01 + Zcaron.ss01 + Zdotaccent.ss01 + Zhe-cy.ss01 + a-cy.ss01 + a.ss01 + aacute.ss01 + abreve.ss01 + acircumflex.ss01 + adieresis.ss01 + ae.ss01 + agrave.ss01 + amacron.ss01 + aogonek.ss01 + aring.ss01 + arrowdown.ss01 + arrowdown.ss01.case + arrowleft.ss01 + arrowleft.ss01.case + arrowright.ss01 + arrowright.ss01.case + arrowup.ss01 + arrowup.ss01.case + atilde.ss01 + b.ss01 + d.ss01 + dcaron.ss01 + dcroat.ss01 + de-cy.ss01 + e.ss01 + eacute.ss01 + ebreve.ss01 + ecaron.ss01 + ecircumflex.ss01 + edieresis.ss01 + edotaccent.ss01 + egrave.ss01 + el-cy.ss01 + emacron.ss01 + eogonek.ss01 + er-cy.ss01 + f.ss01 + f_f.ss01 + f_f_i.ss01 + f_f_l.ss01 + fi.ss01 + fl.ss01 + g.ss01 + gacute.ss01 + gbreve.ss01 + gcircumflex.ss01 + gcommaaccent.ss01 + gdotaccent.ss01 + germandbls.ss01 + hardsign-cy.ss01 + ia-cy.ss01 + ie-cy.ss01 + io-cy.ss01 + l.ss01 + lacute.ss01 + lcaron.ss01 + lcommaaccent.ss01 + ldot.ss01 + ljecyr.ss01 + lslash.ss01 + njecyr.ss01 + numero.ss01 + oe.ss01 + p.ss01 + q.ss01 + softsign-cy.ss01 + t.ss01 + tbar.ss01 + tcaron.ss01 + tcedilla.ss01 + tcommaaccent.ss01 + te-cy.ss01 + ve-cy.ss01 + yen.ss01 + yeru-cy.ss01 + + ss01_def + + A-cy + A + AE + Aacute + Abreve + Acircumflex + Adieresis + Agrave + Amacron + Aogonek + Aring + Atilde + Em-cy + Eng + G + Gacute + Gbreve + Gcircumflex + Gcommaaccent + Gdotaccent + Ha-cy + Ia-cy + J + Jcircumflex + K + Ka-cy + Kcommaaccent + M + N + Nacute + Ncaron + Ncommaaccent + Ntilde + Q + U-cy + Ushort-cy + V + W + Wacute + Wcircumflex + Wdieresis + Wgrave + X + Y + Yacute + Ycircumflex + Ydieresis + Z + Zacute + Zcaron + Zdotaccent + Zhe-cy + a-cy + a + aacute + abreve + acircumflex + adieresis + ae + agrave + amacron + aogonek + aring + arrowdown + arrowdown.case + arrowleft + arrowleft.case + arrowright + arrowright.case + arrowup + arrowup.case + atilde + b + d + dcaron + dcroat + de-cy + e + eacute + ebreve + ecaron + ecircumflex + edieresis + edotaccent + egrave + el-cy + emacron + eogonek + er-cy + f + f_f + f_f_i + f_f_l + fi + fl + g + gacute + gbreve + gcircumflex + gcommaaccent + gdotaccent + germandbls + hardsign-cy + ia-cy + ie-cy + io-cy + l + lacute + lcaron + lcommaaccent + ldot + ljecyr + lslash + njecyr + numero + oe + p + q + softsign-cy + t + tbar + tcaron + tcedilla + tcommaaccent + te-cy + ve-cy + yen + yeru-cy + + + diff --git a/sources/FixelDisplay-Light.ufo/kerning.plist b/sources/FixelDisplay-Light.ufo/kerning.plist new file mode 100644 index 00000000..12289582 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/kerning.plist @@ -0,0 +1,2351 @@ + + + + + Zhe-cy + + public.kern2.G + -20 + + space + + public.kern2.Y + -70 + + uni1C82 + + public.kern2.y + -77 + + public.kern1.A.ss012 + + public.kern2.B + -7 + public.kern2.G + -23 + public.kern2.S + -7 + public.kern2.T + -43 + public.kern2.U + -20 + public.kern2.Ucyr.ss01 + -37 + public.kern2.V + -30 + public.kern2.W + -20 + public.kern2.Y + -55 + public.kern2.Z + -3 + public.kern2.a + -17 + public.kern2.decyr.ss01 + -3 + public.kern2.emdash + -7 + public.kern2.j + -7 + public.kern2.o + -23 + public.kern2.quotedbl + -43 + public.kern2.quoteright + -50 + public.kern2.s + -7 + public.kern2.t + -7 + public.kern2.tecyr + -30 + public.kern2.u + -20 + public.kern2.w + -30 + public.kern2.y + -23 + public.kern2.z + -3 + + public.kern1.A2 + + public.kern2.G + -22 + public.kern2.J + 7 + public.kern2.T + -40 + public.kern2.U + -10 + public.kern2.Ucyr.ss01 + -23 + public.kern2.V + -25 + public.kern2.W + -25 + public.kern2.Y + -50 + public.kern2.a + -10 + public.kern2.comma + 3 + public.kern2.decyr.ss01 + 3 + public.kern2.emdash + -10 + public.kern2.g + 3 + public.kern2.j + -14 + public.kern2.o + -13 + public.kern2.period + 33 + public.kern2.quotedbl + -50 + public.kern2.quoteright + -50 + public.kern2.t + -7 + public.kern2.tecyr + -30 + public.kern2.u + -3 + public.kern2.w + -20 + public.kern2.y + -37 + public.kern2.z + 7 + + public.kern1.C1 + + public.kern2.A.ss01 + 10 + public.kern2.G + -7 + public.kern2.Oslash.alt + 3 + public.kern2.S + 7 + public.kern2.T + 3 + public.kern2.Ucyr.ss01 + -1 + public.kern2.V + 10 + public.kern2.W + -3 + public.kern2.Y + -17 + public.kern2.Z + -3 + public.kern2.comma + -7 + public.kern2.emdash + -13 + public.kern2.f + -1 + public.kern2.g + -4 + public.kern2.j + -11 + public.kern2.o + -10 + public.kern2.period + -13 + public.kern2.quoteright + 3 + public.kern2.tecyr + -1 + public.kern2.u + -3 + public.kern2.x + -7 + public.kern2.y + -3 + + public.kern1.Decyr + + public.kern2.A.ss012 + 7 + public.kern2.G + -10 + public.kern2.T + -7 + public.kern2.Ucyr.ss01 + -27 + public.kern2.a + -7 + public.kern2.comma + 27 + public.kern2.decyr.ss01 + 5 + public.kern2.emdash + -10 + public.kern2.o + -10 + public.kern2.period + 13 + public.kern2.quoteright + -13 + public.kern2.tecyr + -20 + public.kern2.y + -7 + + public.kern1.E1 + + public.kern2.A.ss012 + 7 + public.kern2.G + -3 + public.kern2.J + 7 + public.kern2.o + -10 + public.kern2.period + 13 + public.kern2.w + -7 + public.kern2.y + -10 + + public.kern1.G.ss01 + + public.kern2.A.ss01 + 10 + public.kern2.B + 3 + public.kern2.Oslash.alt + 3 + public.kern2.T + -13 + public.kern2.V + -20 + public.kern2.W + -10 + public.kern2.Y + -20 + public.kern2.h + 3 + public.kern2.l.ss01 + 3 + public.kern2.m + 3 + public.kern2.o + 3 + public.kern2.quotedbl + -40 + public.kern2.quoteright + -20 + public.kern2.t + -3 + public.kern2.w + -15 + public.kern2.y + -17 + + public.kern1.G1 + + public.kern2.G + 7 + public.kern2.T + -10 + public.kern2.V + -23 + public.kern2.W + -10 + public.kern2.Y + -20 + public.kern2.comma + 10 + public.kern2.emdash + 13 + public.kern2.period + 7 + public.kern2.quotedbl + -7 + public.kern2.y + -3 + + public.kern1.Ge-cy + + public.kern2.A.ss012 + -40 + public.kern2.A2 + -33 + public.kern2.G + -20 + public.kern2.Gecyr + 7 + public.kern2.T + 47 + public.kern2.Ucyr.ss01 + 20 + public.kern2.a + -67 + public.kern2.comma + -64 + public.kern2.decyr.ss01 + -30 + public.kern2.emdash + -60 + public.kern2.guillemotright + -10 + public.kern2.i1 + 33 + public.kern2.m + -63 + public.kern2.o + -80 + public.kern2.period + -97 + public.kern2.quoteright + 7 + public.kern2.tecyr + -27 + public.kern2.x + -57 + public.kern2.y + -50 + + public.kern1.H + + public.kern2.Gecyr + 1 + public.kern2.W + 3 + public.kern2.comma + -13 + public.kern2.j + -20 + public.kern2.quoteright + -20 + + public.kern1.Hardcyr + + public.kern2.A.ss012 + 5 + public.kern2.Oslash.alt + -13 + public.kern2.T + -110 + public.kern2.Ucyr.ss01 + -70 + public.kern2.comma + -17 + public.kern2.period + -7 + public.kern2.quotedbl + -120 + public.kern2.quoteright + -53 + public.kern2.tecyr + -40 + public.kern2.x + -23 + public.kern2.y + -30 + + public.kern1.J1 + + public.kern2.A.ss012 + 3 + public.kern2.A2 + -10 + public.kern2.S + -13 + public.kern2.T + -1 + public.kern2.Z + -7 + public.kern2.comma + -20 + public.kern2.period + -30 + + public.kern1.K + + public.kern2.A.ss01 + 13 + public.kern2.G + -40 + public.kern2.J + 7 + public.kern2.U + -9 + public.kern2.a + -13 + public.kern2.emdash + -60 + public.kern2.f + -3 + public.kern2.g + -13 + public.kern2.j + -10 + public.kern2.o + -40 + public.kern2.period + 7 + public.kern2.quoteright + -27 + public.kern2.s + -7 + public.kern2.t + -30 + public.kern2.tecyr + -40 + public.kern2.u + -30 + public.kern2.w + -30 + public.kern2.y + -40 + + public.kern1.L + + public.kern2.A.ss01 + 7 + public.kern2.A2 + 7 + public.kern2.G + -40 + public.kern2.S + -7 + public.kern2.T + -90 + public.kern2.U + -40 + public.kern2.V + -103 + public.kern2.W + -67 + public.kern2.Y + -100 + public.kern2.Z + -7 + public.kern2.a + -17 + public.kern2.emdash + -80 + public.kern2.guillemotleft + -37 + public.kern2.j + -10 + public.kern2.o + -40 + public.kern2.quotedbl + -87 + public.kern2.quoteright + -70 + public.kern2.t + -20 + public.kern2.u + -13 + public.kern2.w + -60 + public.kern2.y + -90 + public.kern2.z + 7 + + public.kern1.O + + Zhe-cy + -20 + public.kern2.A.ss01 + -3 + public.kern2.A.ss012 + -2 + public.kern2.A2 + -23 + public.kern2.J + -40 + public.kern2.Oslash.alt + -27 + public.kern2.T + -37 + public.kern2.Ucyr.ss01 + -30 + public.kern2.V + -33 + public.kern2.W + -17 + public.kern2.Y + -43 + public.kern2.Z + -40 + public.kern2.a + -10 + public.kern2.comma + -43 + public.kern2.decyr.ss01 + -17 + public.kern2.emdash + 13 + public.kern2.j + -13 + public.kern2.period + -43 + public.kern2.quotedbl + -17 + public.kern2.quoteright + -7 + public.kern2.x + -10 + public.kern2.y + -3 + public.kern2.z + -12 + + public.kern1.Oslash.alt + + public.kern2.A.ss01 + 13 + public.kern2.G + -27 + public.kern2.J + 8 + public.kern2.S + -10 + public.kern2.W + -3 + public.kern2.a + -10 + public.kern2.comma + 10 + public.kern2.emdash + -27 + public.kern2.f + -3 + public.kern2.g + -3 + public.kern2.g.ss01 + -7 + public.kern2.j + -13 + public.kern2.o + -30 + public.kern2.period + 7 + public.kern2.quoteright + -37 + public.kern2.s + -13 + public.kern2.t + -10 + public.kern2.tecyr + -20 + public.kern2.u + -17 + public.kern2.w + -20 + public.kern2.y + -23 + + public.kern1.P + + public.kern2.A.ss01 + -43 + public.kern2.A.ss012 + -43 + public.kern2.A2 + -61 + public.kern2.B + -13 + public.kern2.J + -77 + public.kern2.Oslash.alt + -30 + public.kern2.T + -23 + public.kern2.Ucyr.ss01 + -20 + public.kern2.V + -7 + public.kern2.W + -7 + public.kern2.Y + -7 + public.kern2.Z + -40 + public.kern2.a + -20 + public.kern2.comma + -110 + public.kern2.decyr.ss01 + -33 + public.kern2.emdash + -11 + public.kern2.g + -13 + public.kern2.g.ss01 + -23 + public.kern2.j + -33 + public.kern2.o + -30 + public.kern2.period + -143 + public.kern2.quotedbl + -13 + public.kern2.s + -20 + public.kern2.tecyr + 6 + public.kern2.x + -7 + public.kern2.z + -7 + + public.kern1.R + + public.kern2.A.ss01 + 7 + public.kern2.G + -20 + public.kern2.J + 7 + public.kern2.T + -27 + public.kern2.U + -17 + public.kern2.V + -17 + public.kern2.W + -13 + public.kern2.Y + -23 + public.kern2.a + -10 + public.kern2.emdash + -13 + public.kern2.j + -17 + public.kern2.o + -20 + public.kern2.quotedbl + -20 + public.kern2.quoteright + -7 + public.kern2.s + -7 + public.kern2.t + -7 + public.kern2.u + -20 + public.kern2.w + -7 + public.kern2.y + -10 + + public.kern1.S1 + + public.kern2.A.ss01 + 10 + public.kern2.J + 11 + public.kern2.Oslash.alt + -7 + public.kern2.T + -10 + public.kern2.V + -10 + public.kern2.W + -13 + public.kern2.Y + -30 + public.kern2.Z + -10 + public.kern2.comma + -3 + public.kern2.emdash + 10 + public.kern2.g + -13 + public.kern2.j + -17 + public.kern2.quotedbl + -20 + public.kern2.quoteright + -30 + public.kern2.t + -7 + public.kern2.w + -10 + public.kern2.x + -3 + public.kern2.y + -10 + + public.kern1.T1 + + public.kern2.A.ss01 + -27 + public.kern2.A.ss012 + -38 + public.kern2.A2 + -40 + public.kern2.G + -37 + public.kern2.J + -73 + public.kern2.S + -13 + public.kern2.T + 27 + public.kern2.V + 17 + public.kern2.W + 13 + public.kern2.Y + 10 + public.kern2.a + -63 + public.kern2.comma + -53 + public.kern2.decyr.ss01 + -87 + public.kern2.emdash + -70 + public.kern2.f + -7 + public.kern2.g + -70 + public.kern2.g.ss01 + -17 + public.kern2.guillemotleft + -63 + public.kern2.guillemotright + -67 + public.kern2.i1 + 14 + public.kern2.j + -20 + public.kern2.m + -67 + public.kern2.o + -87 + public.kern2.period + -77 + public.kern2.quotedbl + 13 + public.kern2.quoteright + -13 + public.kern2.s + -63 + public.kern2.t + -3 + public.kern2.tecyr + -60 + public.kern2.u + -58 + public.kern2.w + -63 + public.kern2.x + -67 + public.kern2.y + -63 + public.kern2.z + -60 + + public.kern1.U1 + + public.kern2.A.ss01 + -10 + public.kern2.A.ss012 + -3 + public.kern2.A2 + -10 + public.kern2.J + -17 + public.kern2.Y + -3 + public.kern2.Z + -27 + public.kern2.a + -3 + public.kern2.comma + -30 + public.kern2.j + -27 + public.kern2.period + -30 + public.kern2.quoteright + -33 + public.kern2.z + -10 + + public.kern1.Ucyr1 + + public.kern2.A.ss012 + -20 + public.kern2.A2 + -23 + public.kern2.G + -27 + public.kern2.T + 7 + public.kern2.a + -50 + public.kern2.comma + -70 + public.kern2.decyr.ss01 + -57 + public.kern2.emdash + -50 + public.kern2.guillemotright + -60 + public.kern2.i1 + 13 + public.kern2.m + -57 + public.kern2.o + -70 + public.kern2.period + -90 + public.kern2.tecyr + -20 + public.kern2.x + -23 + public.kern2.y + -30 + + public.kern1.V + + public.kern2.A.ss01 + -37 + public.kern2.A.ss012 + -20 + public.kern2.A2 + -25 + public.kern2.G + -33 + public.kern2.J + -73 + public.kern2.Oslash.alt + -7 + public.kern2.S + -23 + public.kern2.T + 13 + public.kern2.Z + -30 + public.kern2.a + -50 + public.kern2.comma + -73 + public.kern2.emdash + -40 + public.kern2.f + -7 + public.kern2.g + -43 + public.kern2.g.ss01 + -43 + public.kern2.guillemotleft + -47 + public.kern2.guillemotright + -30 + public.kern2.i1 + -1 + public.kern2.j + -23 + public.kern2.m + -50 + public.kern2.o + -57 + public.kern2.period + -90 + public.kern2.quotedbl + 7 + public.kern2.quoteright + -10 + public.kern2.s + -40 + public.kern2.t + -10 + public.kern2.u + -50 + public.kern2.w + -10 + public.kern2.x + -23 + public.kern2.y + -20 + public.kern2.z + -20 + + public.kern1.W.ss011 + + public.kern2.A.ss01 + -17 + public.kern2.A.ss012 + -20 + public.kern2.A2 + -37 + public.kern2.J + -47 + public.kern2.S + -3 + public.kern2.T + 13 + public.kern2.V + 7 + public.kern2.Z + -16 + public.kern2.a + -33 + public.kern2.comma + -80 + public.kern2.emdash + -27 + public.kern2.g + -33 + public.kern2.g.ss01 + -21 + public.kern2.guillemotright + -28 + public.kern2.i1 + -3 + public.kern2.j + -7 + public.kern2.m + -23 + public.kern2.o + -47 + public.kern2.period + -93 + public.kern2.quotedbl + 13 + public.kern2.quoteright + 7 + public.kern2.s + -24 + public.kern2.u + -27 + public.kern2.w + -18 + public.kern2.x + -7 + public.kern2.y + -15 + public.kern2.z + -20 + + public.kern1.W1 + + public.kern2.A.ss01 + -43 + public.kern2.A.ss012 + -10 + public.kern2.A2 + -25 + public.kern2.G + -13 + public.kern2.J + -63 + public.kern2.S + -10 + public.kern2.T + 13 + public.kern2.Z + -10 + public.kern2.a + -43 + public.kern2.comma + -47 + public.kern2.emdash + -20 + public.kern2.g + -33 + public.kern2.guillemotleft + -37 + public.kern2.guillemotright + -37 + public.kern2.i1 + 3 + public.kern2.j + -23 + public.kern2.m + -30 + public.kern2.o + -47 + public.kern2.period + -43 + public.kern2.quoteright + -20 + public.kern2.s + -20 + public.kern2.u + -23 + public.kern2.w + -7 + public.kern2.x + -17 + public.kern2.y + -13 + public.kern2.z + -20 + + public.kern1.Y.ss011 + + public.kern2.A.ss01 + -30 + public.kern2.A.ss012 + -50 + public.kern2.B + -3 + public.kern2.G + -30 + public.kern2.S + -19 + public.kern2.Z + -23 + public.kern2.a + -47 + public.kern2.comma + -90 + public.kern2.emdash + -47 + public.kern2.g.ss01 + -20 + public.kern2.i1 + 7 + public.kern2.j + -10 + public.kern2.m + -67 + public.kern2.o + -117 + public.kern2.period + -83 + public.kern2.quotedbl + 3 + public.kern2.quoteright + -10 + public.kern2.s + -64 + public.kern2.t + -7 + public.kern2.u + -57 + public.kern2.w + -37 + public.kern2.x + -13 + public.kern2.y + -10 + public.kern2.z + -13 + + public.kern1.Y1 + + public.kern2.A.ss012 + -30 + public.kern2.A2 + -50 + public.kern2.G + -43 + public.kern2.J + -83 + public.kern2.S + -30 + public.kern2.T + 7 + public.kern2.a + -70 + public.kern2.comma + -80 + public.kern2.emdash + -67 + public.kern2.f + -23 + public.kern2.g + -63 + public.kern2.guillemotleft + -77 + public.kern2.guillemotright + -60 + public.kern2.i1 + -20 + public.kern2.j + -30 + public.kern2.m + -77 + public.kern2.o + -107 + public.kern2.period + -100 + public.kern2.quotedbl + 7 + public.kern2.quoteright + -20 + public.kern2.s + -67 + public.kern2.t + -10 + public.kern2.u + -70 + public.kern2.w + -30 + public.kern2.x + -40 + public.kern2.y + -40 + public.kern2.z + -50 + + public.kern1.Z1 + + public.kern2.A.ss01 + 17 + public.kern2.A.ss012 + 13 + public.kern2.G + -30 + public.kern2.T + 7 + public.kern2.W + -3 + public.kern2.a + -17 + public.kern2.comma + 30 + public.kern2.emdash + -30 + public.kern2.f + -3 + public.kern2.g.ss01 + -3 + public.kern2.i1 + 7 + public.kern2.j + -10 + public.kern2.o + -30 + public.kern2.period + 13 + public.kern2.quoteright + -40 + public.kern2.s + -10 + public.kern2.t + -13 + public.kern2.u + -20 + public.kern2.w + -20 + public.kern2.y + -13 + + public.kern1.a1 + + public.kern2.A.ss012 + 5 + public.kern2.G + -3 + public.kern2.S + -13 + public.kern2.T + -67 + public.kern2.U + -3 + public.kern2.Ucyr.ss01 + -3 + public.kern2.V + -60 + public.kern2.W + -40 + public.kern2.Y + -77 + public.kern2.comma + -7 + public.kern2.f + 3 + public.kern2.j + -17 + public.kern2.quotedbl + -40 + public.kern2.quoteright + -53 + public.kern2.t + -3 + public.kern2.tecyr + -2 + public.kern2.u + -7 + public.kern2.w + -12 + public.kern2.y + -22 + + public.kern1.c1 + + public.kern2.A2 + 13 + public.kern2.G + 7 + public.kern2.T + -57 + public.kern2.Ucyr.ss01 + -50 + public.kern2.V + -33 + public.kern2.W + -23 + public.kern2.Y + -57 + public.kern2.Z + -7 + public.kern2.a + -3 + public.kern2.comma + -10 + public.kern2.emdash + -3 + public.kern2.g + 7 + public.kern2.j + -7 + public.kern2.o + -3 + public.kern2.period + -13 + public.kern2.quotedbl + -33 + public.kern2.quoteright + -20 + public.kern2.x + -7 + public.kern2.y + -7 + + public.kern1.comma1 + + public.kern2.A.ss01 + 3 + public.kern2.B + -3 + public.kern2.G + -60 + public.kern2.J + 13 + public.kern2.Oslash.alt + 3 + public.kern2.S + -7 + public.kern2.T + -67 + public.kern2.U + -30 + public.kern2.V + -83 + public.kern2.W + -43 + public.kern2.Y + -103 + public.kern2.Z + -3 + public.kern2.a + -20 + public.kern2.five + -23 + public.kern2.four + -7 + public.kern2.g.ss01 + -7 + public.kern2.h + -13 + public.kern2.i1 + -13 + public.kern2.m + -13 + public.kern2.o + -37 + public.kern2.t + -20 + public.kern2.u + -27 + public.kern2.w + -40 + public.kern2.x + -13 + public.kern2.y + -67 + public.kern2.z + -7 + public.kern2.zero + -30 + + public.kern1.dcaron + + public.kern2.B + 27 + public.kern2.Oslash.alt + 53 + public.kern2.S + 23 + public.kern2.T + 87 + public.kern2.U + 20 + public.kern2.V + 73 + public.kern2.W + 70 + public.kern2.Y + 67 + public.kern2.Z + 37 + public.kern2.a + -3 + public.kern2.f + 30 + public.kern2.fi.ss01 + 30 + public.kern2.h + 37 + public.kern2.i1 + 37 + public.kern2.j + 20 + public.kern2.l.ss01 + 7 + public.kern2.s + 3 + public.kern2.t + 37 + public.kern2.w + 27 + public.kern2.x + 13 + public.kern2.y + 23 + public.kern2.z + 33 + + public.kern1.decyr1 + + public.kern2.A2 + 7 + public.kern2.G + -3 + public.kern2.T + -87 + public.kern2.Ucyr.ss01 + -40 + public.kern2.a + -7 + public.kern2.comma + 13 + public.kern2.decyr.ss01 + 3 + public.kern2.emdash + -5 + public.kern2.o + -20 + public.kern2.period + 7 + public.kern2.quoteright + -13 + public.kern2.tecyr + -20 + public.kern2.y + -3 + + public.kern1.e.ss011 + + public.kern2.Oslash.alt + -10 + public.kern2.T + -30 + public.kern2.V + -47 + public.kern2.W + -10 + public.kern2.Y + -27 + public.kern2.Z + -10 + public.kern2.comma + -20 + public.kern2.emdash + -7 + public.kern2.quotedbl + -40 + + public.kern1.e1 + + public.kern2.A.ss012 + 5 + public.kern2.A2 + -7 + public.kern2.J + -3 + public.kern2.Oslash.alt + -20 + public.kern2.T + -80 + public.kern2.Ucyr.ss01 + -67 + public.kern2.V + -60 + public.kern2.W + -50 + public.kern2.Y + -97 + public.kern2.Z + -7 + public.kern2.comma + -7 + public.kern2.j + -17 + public.kern2.period + -20 + public.kern2.quotedbl + -37 + public.kern2.quoteright + -37 + public.kern2.t + -7 + public.kern2.w + -10 + public.kern2.x + -20 + public.kern2.y + -20 + public.kern2.z + -7 + + public.kern1.emdash1 + + public.kern2.A.ss01 + 7 + public.kern2.A2 + -10 + public.kern2.G + 17 + public.kern2.J + -50 + public.kern2.Oslash.alt + -20 + public.kern2.S + -40 + public.kern2.T + -70 + public.kern2.Ucyr.ss01 + -50 + public.kern2.V + -40 + public.kern2.W + -20 + public.kern2.Y + -67 + public.kern2.Z + -13 + public.kern2.a + -10 + public.kern2.decyr.ss01 + -30 + public.kern2.five + -13 + public.kern2.four + 13 + public.kern2.g.ss01 + 7 + public.kern2.j + -23 + public.kern2.s + -3 + public.kern2.tecyr + -40 + public.kern2.w + -3 + public.kern2.x + -27 + public.kern2.y + -17 + public.kern2.z + -30 + + public.kern1.f1 + + public.kern2.A.ss012 + -17 + public.kern2.A2 + -13 + public.kern2.J + -57 + public.kern2.S + 7 + public.kern2.T + 7 + public.kern2.V + 10 + public.kern2.Y + 7 + public.kern2.a + -13 + public.kern2.comma + -47 + public.kern2.emdash + -27 + public.kern2.f + 7 + public.kern2.g + -13 + public.kern2.i1 + 7 + public.kern2.j + -3 + public.kern2.o + -37 + public.kern2.period + -77 + public.kern2.quotedbl + 13 + public.kern2.quoteright + 13 + public.kern2.s + -20 + public.kern2.t + 3 + public.kern2.y + 13 + + public.kern1.five1 + + public.kern2.comma + -30 + public.kern2.period + -27 + + public.kern1.four1 + + public.kern2.comma + -10 + public.kern2.emdash + -23 + public.kern2.five + 3 + public.kern2.four + 7 + public.kern2.period + -17 + public.kern2.quotedbl + -20 + + public.kern1.g.ss011 + + public.kern2.Oslash.alt + -7 + public.kern2.S + -3 + public.kern2.T + -20 + public.kern2.V + -23 + public.kern2.W + -7 + public.kern2.Y + -20 + public.kern2.Z + -10 + public.kern2.comma + 10 + public.kern2.emdash + -3 + public.kern2.o + -3 + public.kern2.quotedbl + -3 + public.kern2.quoteright + 7 + + public.kern1.g1 + + public.kern2.A2 + 3 + public.kern2.T + -80 + public.kern2.V + -20 + public.kern2.W + -17 + public.kern2.Y + -27 + public.kern2.a + -3 + public.kern2.comma + 10 + public.kern2.f + 7 + public.kern2.j + 10 + public.kern2.quotedbl + -17 + public.kern2.y + 7 + + public.kern1.gecyr + + public.kern2.A.ss012 + -7 + public.kern2.A2 + -17 + public.kern2.Oslash.alt + -7 + public.kern2.T + -40 + public.kern2.Ucyr.ss01 + -20 + public.kern2.a + -7 + public.kern2.comma + -47 + public.kern2.decyr.ss01 + -33 + public.kern2.emdash + -53 + public.kern2.o + -23 + public.kern2.period + -80 + public.kern2.quoteright + 20 + public.kern2.x + 7 + public.kern2.y + 13 + + public.kern1.guillemotright1 + + public.kern2.J + -47 + public.kern2.T + -63 + public.kern2.V + -47 + public.kern2.W + -37 + public.kern2.Y + -77 + + public.kern1.hardcyr + + public.kern2.A.ss012 + 3 + public.kern2.G + -7 + public.kern2.Oslash.alt + -13 + public.kern2.T + -80 + public.kern2.Ucyr.ss01 + -60 + public.kern2.period + -7 + public.kern2.quotedbl + -110 + public.kern2.quoteright + -40 + public.kern2.tecyr + -90 + public.kern2.x + -17 + public.kern2.y + -50 + + public.kern1.i1 + + public.kern2.T + 13 + public.kern2.V + 13 + public.kern2.W + 10 + public.kern2.Y + 13 + public.kern2.comma + -7 + public.kern2.i1 + 14 + public.kern2.j + -33 + public.kern2.quoteright + -13 + + public.kern1.icyr1 + + public.kern2.A.ss012 + 3 + public.kern2.T + -67 + public.kern2.Ucyr.ss01 + -60 + public.kern2.V + -50 + public.kern2.W + -23 + public.kern2.Y + -77 + public.kern2.j + 1 + public.kern2.quoteright + -13 + + public.kern1.j1 + + public.kern2.quoteright + -13 + + public.kern1.k + + public.kern2.A.ss01 + 3 + public.kern2.A.ss012 + 7 + public.kern2.A2 + 7 + public.kern2.G + -7 + public.kern2.J + 7 + public.kern2.T + -60 + public.kern2.Ucyr.ss01 + -23 + public.kern2.V + -13 + public.kern2.W + -23 + public.kern2.Y + -13 + public.kern2.a + -10 + public.kern2.emdash + -43 + public.kern2.o + -23 + public.kern2.quoteright + -3 + public.kern2.x + 7 + + public.kern1.l + + public.kern2.j + -3 + public.kern2.quoteright + -20 + + public.kern1.l.ss011 + + public.kern2.A.ss01 + 13 + public.kern2.B + 3 + public.kern2.G + 3 + public.kern2.Oslash.alt + 10 + public.kern2.S + 7 + public.kern2.V + -33 + public.kern2.W + -33 + public.kern2.Y + -7 + public.kern2.Z + 3 + public.kern2.comma + 17 + public.kern2.emdash + -3 + public.kern2.f + -27 + public.kern2.j + -20 + public.kern2.period + 13 + public.kern2.quoteright + -7 + public.kern2.t + -5 + public.kern2.w + -30 + public.kern2.y + -27 + + public.kern1.n + + public.kern2.T + -70 + public.kern2.Ucyr.ss01 + -70 + public.kern2.V + -60 + public.kern2.W + -43 + public.kern2.Y + -97 + public.kern2.j + -20 + public.kern2.quotedbl + -33 + public.kern2.quoteright + -23 + public.kern2.w + -3 + public.kern2.y + -20 + + public.kern1.o1 + + public.kern2.A.ss01 + -3 + public.kern2.A.ss012 + -5 + public.kern2.A2 + -13 + public.kern2.J + -20 + public.kern2.Oslash.alt + -30 + public.kern2.S + -10 + public.kern2.T + -87 + public.kern2.Ucyr.ss01 + -87 + public.kern2.V + -57 + public.kern2.W + -47 + public.kern2.Y + -100 + public.kern2.Z + -30 + public.kern2.a + -7 + public.kern2.comma + -40 + public.kern2.g + -3 + public.kern2.j + -20 + public.kern2.period + -47 + public.kern2.quotedbl + -43 + public.kern2.quoteright + -40 + public.kern2.s + -13 + public.kern2.tecyr + -33 + public.kern2.w + -15 + public.kern2.x + -27 + public.kern2.y + -27 + public.kern2.z + -17 + + public.kern1.period1 + + public.kern2.A.ss01 + 20 + public.kern2.A.ss012 + 33 + public.kern2.A2 + 33 + public.kern2.G + -43 + public.kern2.J + 13 + public.kern2.Oslash.alt + 7 + public.kern2.S + -10 + public.kern2.T + -77 + public.kern2.U + -30 + public.kern2.Ucyr.ss01 + -20 + public.kern2.V + -90 + public.kern2.W + -43 + public.kern2.Y + -100 + public.kern2.Z + 10 + public.kern2.a + -10 + public.kern2.five + -20 + public.kern2.four + -10 + public.kern2.g.ss01 + 7 + public.kern2.j + -27 + public.kern2.o + -47 + public.kern2.t + -27 + public.kern2.tecyr + -60 + public.kern2.u + -27 + public.kern2.w + -30 + public.kern2.y + -75 + public.kern2.zero + -23 + + public.kern1.quotedbl1 + + public.kern2.A.ss01 + -67 + public.kern2.A.ss012 + -33 + public.kern2.A2 + -50 + public.kern2.G + -17 + public.kern2.J + -87 + public.kern2.T + 20 + public.kern2.V + 7 + public.kern2.W + 7 + public.kern2.Y + 10 + public.kern2.Z + -7 + public.kern2.a + -33 + public.kern2.decyr.ss01 + -40 + public.kern2.five + -3 + public.kern2.four + -63 + public.kern2.g + -37 + public.kern2.g.ss01 + -37 + public.kern2.j + -20 + public.kern2.o + -43 + public.kern2.period + -5 + public.kern2.s + -27 + public.kern2.u + -7 + public.kern2.x + -10 + public.kern2.z + -7 + public.kern2.zero + -13 + + public.kern1.quoteleft1 + + public.kern2.A.ss01 + -67 + public.kern2.A2 + -63 + public.kern2.G + -20 + public.kern2.J + -43 + public.kern2.Oslash.alt + 10 + public.kern2.T + 37 + public.kern2.V + 20 + public.kern2.W + 10 + public.kern2.Y + 20 + public.kern2.Z + -7 + public.kern2.a + -33 + public.kern2.f + 13 + public.kern2.g + -47 + public.kern2.g.ss01 + -23 + public.kern2.i1 + 7 + public.kern2.j + -13 + public.kern2.m + -13 + public.kern2.o + -53 + public.kern2.s + -30 + public.kern2.t + 7 + public.kern2.u + -13 + public.kern2.w + -23 + public.kern2.x + -27 + public.kern2.y + -10 + public.kern2.z + -20 + + public.kern1.quoteright1 + + public.kern2.A.ss01 + -73 + public.kern2.A2 + -40 + public.kern2.G + -27 + public.kern2.J + -33 + public.kern2.Oslash.alt + -3 + public.kern2.S + -20 + public.kern2.T + 13 + public.kern2.U + -13 + public.kern2.W + 10 + public.kern2.Y + 7 + public.kern2.Z + -20 + public.kern2.a + -67 + public.kern2.g + -77 + public.kern2.g.ss01 + -80 + public.kern2.h + -20 + public.kern2.i1 + -13 + public.kern2.j + -7 + public.kern2.m + -30 + public.kern2.o + -87 + public.kern2.s + -63 + public.kern2.u + -30 + public.kern2.w + -33 + public.kern2.x + -43 + public.kern2.y + -30 + public.kern2.z + -53 + + public.kern1.s1 + + public.kern2.A.ss01 + 7 + public.kern2.A2 + 7 + public.kern2.G + -3 + public.kern2.Oslash.alt + -7 + public.kern2.S + -3 + public.kern2.T + -63 + public.kern2.V + -40 + public.kern2.W + -27 + public.kern2.Y + -80 + public.kern2.Z + -17 + public.kern2.comma + -7 + public.kern2.emdash + -10 + public.kern2.f + 7 + public.kern2.j + -3 + public.kern2.o + -7 + public.kern2.period + -20 + public.kern2.quotedbl + -30 + public.kern2.quoteright + -13 + public.kern2.x + -7 + + public.kern1.t.ss011 + + public.kern2.A.ss01 + 7 + public.kern2.T + -13 + public.kern2.V + -13 + public.kern2.W + -10 + public.kern2.Y + -17 + public.kern2.comma + 3 + public.kern2.o + -10 + + public.kern1.t1 + + public.kern2.G + -7 + public.kern2.J + 13 + public.kern2.T + -27 + public.kern2.V + -20 + public.kern2.W + -13 + public.kern2.Y + -27 + public.kern2.emdash + -40 + public.kern2.f + 7 + public.kern2.o + -13 + public.kern2.t + 7 + public.kern2.y + 3 + public.kern2.z + 13 + + public.kern1.u1 + + public.kern2.T + -67 + public.kern2.V + -50 + public.kern2.W + -30 + public.kern2.Y + -77 + public.kern2.j + -13 + public.kern2.quotedbl + -7 + public.kern2.quoteright + -20 + + public.kern1.uni0435.ss011 + + public.kern2.A.ss012 + 7 + public.kern2.T + -70 + public.kern2.Ucyr.ss01 + -57 + public.kern2.V + -50 + public.kern2.W + -27 + public.kern2.Y + -60 + public.kern2.w + -3 + public.kern2.x + -10 + public.kern2.y + -10 + + public.kern1.w1 + + public.kern2.A.ss01 + -3 + public.kern2.A.ss012 + -5 + public.kern2.A2 + -20 + public.kern2.J + -50 + public.kern2.Oslash.alt + -20 + public.kern2.S + -17 + public.kern2.T + -60 + public.kern2.V + -10 + public.kern2.W + -10 + public.kern2.Y + -30 + public.kern2.Z + -33 + public.kern2.a + -15 + public.kern2.comma + -30 + public.kern2.emdash + -3 + public.kern2.g + -3 + public.kern2.j + -10 + public.kern2.o + -15 + public.kern2.period + -30 + public.kern2.z + -3 + + public.kern1.x + + public.kern2.A.ss012 + 7 + public.kern2.G + -10 + public.kern2.S + -10 + public.kern2.T + -67 + public.kern2.Ucyr.ss01 + -20 + public.kern2.V + -23 + public.kern2.W + -17 + public.kern2.Y + -40 + public.kern2.a + -7 + public.kern2.emdash + -27 + public.kern2.g + -3 + public.kern2.o + -27 + public.kern2.quotedbl + -10 + public.kern2.s + -7 + + public.kern1.y1 + + public.kern2.A.ss01 + -7 + public.kern2.A.ss012 + -9 + public.kern2.A2 + -20 + public.kern2.G + -3 + public.kern2.J + -60 + public.kern2.Oslash.alt + -30 + public.kern2.S + -3 + public.kern2.T + -63 + public.kern2.Ucyr.ss01 + -4 + public.kern2.V + -20 + public.kern2.W + -13 + public.kern2.Y + -43 + public.kern2.Z + -20 + public.kern2.a + -13 + public.kern2.comma + -53 + public.kern2.decyr.ss01 + -30 + public.kern2.emdash + -10 + public.kern2.f + 13 + public.kern2.g + -13 + public.kern2.j + -10 + public.kern2.o + -20 + public.kern2.period + -80 + public.kern2.quoteright + 17 + public.kern2.t + 7 + public.kern2.z + -3 + + public.kern1.z1 + + public.kern2.A2 + 7 + public.kern2.S + -13 + public.kern2.T + -53 + public.kern2.V + -20 + public.kern2.W + -20 + public.kern2.Y + -50 + public.kern2.comma + 7 + public.kern2.f + 13 + public.kern2.j + -3 + public.kern2.o + -17 + public.kern2.quotedbl + -13 + public.kern2.quoteright + -3 + public.kern2.s + -3 + + + diff --git a/sources/FixelDisplay-Light.ufo/layercontents.plist b/sources/FixelDisplay-Light.ufo/layercontents.plist new file mode 100644 index 00000000..7a35a5cf --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/layercontents.plist @@ -0,0 +1,10 @@ + + + + + + public.default + glyphs + + + diff --git a/sources/FixelDisplay-Light.ufo/lib.plist b/sources/FixelDisplay-Light.ufo/lib.plist new file mode 100644 index 00000000..c0069150 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/lib.plist @@ -0,0 +1,1671 @@ + + + + + com.fontlab.v2.tth + + stems + + 69 + + width + 69 + horizontal + + round + + 35 + 3 + 47 + 4 + 60 + 5 + 0 + 7 + 22 + 8 + + + 74 + + width + 74 + horizontal + + round + + 19 + 2 + 35 + 3 + 47 + 4 + 60 + 5 + 72 + 6 + 0 + 7 + 20 + 8 + + + 76 + + width + 76 + horizontal + + round + + 19 + 2 + 35 + 3 + 72 + 6 + 0 + 7 + 20 + 8 + + + 80 + + width + 80 + horizontal + + round + + 29 + 3 + 47 + 4 + 60 + 5 + 72 + 6 + 0 + 7 + 20 + 8 + + + 99 + + width + 99 + horizontal + + round + + 19 + 2 + 29 + 3 + 37 + 4 + 48 + 5 + 58 + 6 + 0 + 7 + 16 + 8 + + + 74 + + width + 74 + horizontal + + round + + 19 + 2 + 35 + 3 + 47 + 4 + 60 + 5 + 72 + 6 + 0 + 7 + 20 + 8 + + + 80 + + width + 80 + horizontal + + round + + 29 + 3 + 47 + 4 + 60 + 5 + 72 + 6 + 0 + 7 + 20 + 8 + + + 93 + + width + 93 + horizontal + + round + + 19 + 2 + 29 + 3 + 37 + 4 + 48 + 5 + 58 + 6 + 0 + 7 + 16 + 8 + + + + + com.schriftgestaltung.disablesAutomaticAlignment + + com.schriftgestaltung.fontMasterID + master01 + com.schriftgestaltung.glyphOrder + + com.schriftgestaltung.master.name + regular + com.schriftgestaltung.useNiceNames + + com.schriftgestaltung.weightValue + 400 + public.postscriptNames + + A-cy + uni0410 + A-cy.ss01 + uni0410.ss01 + Be-cy + uni0411 + Che-cy + uni0427 + De-cy + uni0414 + Dze-cy + uni0405 + E-cy + uni0404 + Ef-cy + uni0424 + El-cy + uni041B + Em-cy + uni041C + Em-cy.ss01 + uni041C.ss01 + En-cy + uni041D + Er-cy + uni0420 + Ereversed-cy + uni042D + Es-cy + uni0421 + Gacute + uni01F4 + Gacute.ss01 + uni01F4.ss01 + Gcommaaccent + uni0122 + Gcommaaccent.ss01 + uni0122.ss01 + Ge-cy + uni0413 + Germandbls + uni1E9E + Gheupturn-cy + uni0490 + Ha-cy + uni0425 + Ha-cy.ss01 + uni0425.ss01 + Hardsign-cy + uni042A + I-cy + uni0406 + Ia-cy + uni042F + Ia-cy.ss01 + uni042F.ss01 + Ie-cy + uni0415 + Ii-cy + uni0418 + Iishort-cy + uni0419 + Io-cy + uni0401 + Iu-cy + uni042E + Ka-cy + uni041A + Ka-cy.ss01 + uni041A.ss01 + Kcommaaccent + uni0136 + Kcommaaccent.ss01 + uni0136.ss01 + Lcommaaccent + uni013B + Ncommaaccent + uni0145 + Ncommaaccent.ss01 + uni0145.ss01 + O-cy + uni041E + Pe-cy + uni041F + Rcommaaccent + uni0156 + Scommaaccent + uni0218 + Sha-cy + uni0428 + Shcha-cy + uni0429 + Softsign-cy + uni042C + Tcedilla + uni0162 + Tcommaaccent + uni021A + Te-cy + uni0422 + Tse-cy + uni0426 + U-cy + uni0423 + U-cy.ss01 + uni0423.ss01 + Ushort-cy + uni040E + Ushort-cy.ss01 + uni040E.ss01 + Ve-cy + uni0412 + Yeru-cy + uni042B + Yi-cy + uni0407 + Ze-cy + uni0417 + Zhe-cy + uni0416 + Zhe-cy.ss01 + uni0416.ss01 + _perc-circule + _perccircule + a-cy + uni0430 + a-cy.ss01 + uni0430.ss01 + be-cy + uni0431 + che-cy + uni0447 + commaaccentcomb + uni0326 + commaaccentcomb.salt + uni0326.salt + de-cy + uni0434 + de-cy.ss01 + uni0434.ss01 + dze-cy + uni0455 + e-cy + uni0454 + ef-cy + uni0444 + el-cy + uni043B + el-cy.ss01 + uni043B.ss01 + em-cy + uni043C + en-cy + uni043D + er-cy + uni0440 + er-cy.ss01 + uni0440.ss01 + ereversed-cy + uni044D + es-cy + uni0441 + euro + Euro + gacute + uni01F5 + gacute.ss01 + uni01F5.ss01 + gcommaaccent + uni0123 + gcommaaccent.ss01 + uni0123.ss01 + ge-cy + uni0433 + gheupturn-cy + uni0491 + guillemetleft + guillemotleft + guillemetright + guillemotright + ha-cy + uni0445 + hardsign-cy + uni044A + hardsign-cy.ss01 + uni044A.ss01 + hryvnia + uni20B4 + i-cy + uni0456 + ia-cy + uni044F + ia-cy.ss01 + uni044F.ss01 + idotless + dotlessi + ie-cy + uni0435 + ie-cy.ss01 + uni0435.ss01 + ii-cy + uni0438 + iishort-cy + uni0439 + io-cy + uni0451 + io-cy.ss01 + uni0451.ss01 + iu-cy + uni044E + jdotless + uni0237 + je-cy + uni0458 + ka-cy + uni043A + kcommaaccent + uni0137 + lcommaaccent + uni013C + lcommaaccent.ss01 + uni013C.ss01 + ncommaaccent + uni0146 + numero + uni2116 + numero.ss01 + uni2116.ss01 + o-cy + uni043E + onesuperior + uni00B9 + pe-cy + uni043F + rcommaaccent + uni0157 + scommaaccent + uni0219 + sha-cy + uni0448 + shcha-cy + uni0449 + softsign-cy + uni044C + softsign-cy.ss01 + uni044C.ss01 + tcedilla + uni0163 + tcedilla.ss01 + uni0163.ss01 + tcommaaccent + uni021B + tcommaaccent.ss01 + uni021B.ss01 + te-cy + uni0442 + te-cy.ss01 + uni0442.ss01 + threesuperior + uni00B3 + tse-cy + uni0446 + twosuperior + uni00B2 + u-cy + uni0443 + ushort-cy + uni045E + ve-cy + uni0432 + ve-cy.ss01 + uni0432.ss01 + yeru-cy + uni044B + yeru-cy.ss01 + uni044B.ss01 + yi-cy + uni0457 + ze-cy + uni0437 + zhe-cy + uni0436 + + public.skipExportGlyphs + + Oslash.bold + oslash.bold + _perc-circule + + public.glyphOrder + + .notdef + NULL + CR + space + A + Aacute + Abreve + Acircumflex + Adieresis + Agrave + Amacron + Aogonek + Aring + Atilde + AE + B + C + Cacute + Ccaron + Ccedilla + Ccircumflex + Cdotaccent + D + Eth + Dcaron + Dcroat + E + Eacute + Ebreve + Ecaron + Ecircumflex + Edieresis + Edotaccent + Egrave + Emacron + Eogonek + F + G + Gacute + Gbreve + Gcircumflex + Gcommaaccent + Gdotaccent + H + Hbar + Hcircumflex + I + IJ + Iacute + Ibreve + Icircumflex + Idieresis + Idotaccent + Igrave + Imacron + Iogonek + Itilde + J + Jcircumflex + K + Kcommaaccent + L + Lacute + Lcaron + Lcommaaccent + Ldot + Lslash + M + N + Nacute + Ncaron + Ncommaaccent + Eng + Ntilde + O + Oacute + Obreve + Ocircumflex + Odieresis + Ograve + Ohungarumlaut + Omacron + Oslash + Otilde + OE + P + Thorn + Q + R + Racute + Rcaron + Rcommaaccent + S + Sacute + Scaron + Scedilla + Scircumflex + Scommaaccent + Germandbls + T + Tbar + Tcaron + Tcedilla + Tcommaaccent + U + Uacute + Ubreve + Ucircumflex + Udieresis + Ugrave + Uhungarumlaut + Umacron + Uogonek + Uring + Utilde + V + W + Wacute + Wcircumflex + Wdieresis + Wgrave + X + Y + Yacute + Ycircumflex + Ydieresis + Z + Zacute + Zcaron + Zdotaccent + A.ss01 + Aacute.ss01 + Abreve.ss01 + Acircumflex.ss01 + Adieresis.ss01 + Agrave.ss01 + Amacron.ss01 + Aogonek.ss01 + Aring.ss01 + Atilde.ss01 + AE.ss01 + G.ss01 + Gacute.ss01 + Gbreve.ss01 + Gcircumflex.ss01 + Gcommaaccent.ss01 + Gdotaccent.ss01 + J.ss01 + Jcircumflex.ss01 + K.ss01 + Kcommaaccent.ss01 + M.ss01 + N.ss01 + Nacute.ss01 + Ncaron.ss01 + Ncommaaccent.ss01 + Eng.ss01 + Ntilde.ss01 + Q.ss01 + V.ss01 + W.ss01 + Wacute.ss01 + Wcircumflex.ss01 + Wdieresis.ss01 + Wgrave.ss01 + X.ss01 + Y.ss01 + Yacute.ss01 + Ycircumflex.ss01 + Ydieresis.ss01 + Z.ss01 + Zacute.ss01 + Zcaron.ss01 + Zdotaccent.ss01 + a + aacute + abreve + acircumflex + adieresis + agrave + amacron + aogonek + aring + atilde + ae + b + c + cacute + ccaron + ccedilla + ccircumflex + cdotaccent + d + eth + dcaron + dcroat + e + eacute + ebreve + ecaron + ecircumflex + edieresis + edotaccent + egrave + emacron + eogonek + f + g + gacute + gbreve + gcircumflex + gcommaaccent + gdotaccent + h + hbar + hcircumflex + i + idotless + iacute + ibreve + icircumflex + idieresis + igrave + ij + imacron + iogonek + itilde + j + jdotless + jcircumflex + k + kcommaaccent + kgreenlandic + l + lacute + lcaron + lcommaaccent + ldot + lslash + m + n + nacute + napostrophe + ncaron + ncommaaccent + eng + ntilde + o + oacute + obreve + ocircumflex + odieresis + ograve + ohungarumlaut + omacron + oslash + otilde + oe + p + thorn + q + r + racute + rcaron + rcommaaccent + s + sacute + scaron + scedilla + scircumflex + scommaaccent + germandbls + t + tbar + tcaron + tcedilla + tcommaaccent + u + uacute + ubreve + ucircumflex + udieresis + ugrave + uhungarumlaut + umacron + uogonek + uring + utilde + v + w + wacute + wcircumflex + wdieresis + wgrave + x + y + yacute + ycircumflex + ydieresis + z + zacute + zcaron + zdotaccent + a.ss01 + aacute.ss01 + abreve.ss01 + acircumflex.ss01 + adieresis.ss01 + agrave.ss01 + amacron.ss01 + aogonek.ss01 + aring.ss01 + atilde.ss01 + ae.ss01 + b.ss01 + d.ss01 + dcaron.ss01 + dcroat.ss01 + e.ss01 + eacute.ss01 + ebreve.ss01 + ecaron.ss01 + ecircumflex.ss01 + edieresis.ss01 + edotaccent.ss01 + egrave.ss01 + emacron.ss01 + eogonek.ss01 + f.ss01 + g.ss01 + gacute.ss01 + gbreve.ss01 + gcircumflex.ss01 + gcommaaccent.ss01 + gdotaccent.ss01 + l.ss01 + lacute.ss01 + lcaron.ss01 + lcommaaccent.ss01 + ldot.ss01 + lslash.ss01 + oe.ss01 + p.ss01 + q.ss01 + germandbls.ss01 + t.ss01 + tbar.ss01 + tcaron.ss01 + tcedilla.ss01 + tcommaaccent.ss01 + f_f + f_f_i + f_f_l + fi + fl + f_f.ss01 + f_f_i.ss01 + f_f_l.ss01 + fi.ss01 + fl.ss01 + ordfeminine + ordmasculine + A-cy + Be-cy + Ve-cy + Ge-cy + Gheupturn-cy + De-cy + Ie-cy + Io-cy + Zhe-cy + Ze-cy + Ii-cy + Iishort-cy + Ka-cy + El-cy + Em-cy + En-cy + O-cy + Pe-cy + Er-cy + Es-cy + Te-cy + U-cy + Ushort-cy + Ef-cy + Ha-cy + Che-cy + Tse-cy + Sha-cy + Shcha-cy + Softsign-cy + Hardsign-cy + Yeru-cy + Dze-cy + E-cy + Ereversed-cy + I-cy + Yi-cy + Iu-cy + Ia-cy + A-cy.ss01 + Zhe-cy.ss01 + Ka-cy.ss01 + Em-cy.ss01 + U-cy.ss01 + Ushort-cy.ss01 + Ha-cy.ss01 + Ia-cy.ss01 + a-cy + be-cy + ve-cy + ge-cy + gheupturn-cy + de-cy + ie-cy + io-cy + zhe-cy + ze-cy + ii-cy + iishort-cy + ka-cy + el-cy + em-cy + en-cy + o-cy + pe-cy + er-cy + es-cy + te-cy + u-cy + ushort-cy + ef-cy + ha-cy + che-cy + tse-cy + sha-cy + shcha-cy + softsign-cy + hardsign-cy + yeru-cy + dze-cy + e-cy + ereversed-cy + i-cy + yi-cy + je-cy + iu-cy + ia-cy + a-cy.ss01 + ve-cy.ss01 + de-cy.ss01 + ie-cy.ss01 + io-cy.ss01 + el-cy.ss01 + er-cy.ss01 + te-cy.ss01 + softsign-cy.ss01 + hardsign-cy.ss01 + yeru-cy.ss01 + ia-cy.ss01 + zero + one + two + three + four + five + six + seven + eight + nine + zero.osf + one.osf + two.osf + three.osf + four.osf + five.osf + six.osf + seven.osf + nine.osf + zero.tf + one.tf + two.tf + three.tf + four.tf + five.tf + six.tf + seven.tf + eight.tf + nine.tf + onesuperior + twosuperior + threesuperior + period + comma + colon + semicolon + ellipsis + exclam + exclamdown + question + questiondown + periodcentered + bullet + asterisk + numbersign + slash + backslash + parenleft + parenright + braceleft + braceright + bracketleft + bracketright + hyphen + endash + emdash + underscore + quotesinglbase + quotedblbase + quotedblleft + quotedblright + quoteleft + quoteright + guillemetleft + guillemetright + guilsinglleft + guilsinglright + quotedbl + quotesingle + cent + currency + dollar + euro + hryvnia + sterling + yen + yen.ss01 + plus + minus + multiply + divide + equal + greater + less + asciitilde + asciicircum + percent + perthousand + at + ampersand + paragraph + section + copyright + registered + trademark + degree + bar + brokenbar + dagger + daggerdbl + numero + estimated + numero.ss01 + commaaccentcomb + dieresis + dotaccent + grave + acute + hungarumlaut + circumflex + caron + breve + ring + tilde + macron + cedilla + ogonek + dieresis.case + dotaccent.case + grave.case + acute.case + hungarumlaut.case + circumflex.case + caron.case + breve.case + ring.case + tilde.case + macron.case + commaaccentcomb.salt + caron.salt + uniE01A + _perc-circule + eight.osf + ruble + Ljecyr + Njecyr + Jecyr + dzhecyr + Dzhecyr + ljecyr + njecyr + Tshecyr + Djecyr + tshecyr + djecyr + tenge + ljecyr.ss01 + njecyr.ss01 + dramsignarmn + gjecyr + kjecyr + neptune + florin + plusminus + fraction + onequarter + onehalf + threequarters + mu + lessequal + greaterequal + minute + second + Schwacyr + schwacyr + Gestrokecyr + gestrokecyr + Obarcyr + obarcyr + Entailcyr + entailcyr + Katailcyr + katailcyr + Ustraightstrokecyr + ustraightstrokecyr + Shhacyr + shhacyr + ustraightcyr + Ustraightcyr + partialdiff + increment + integral + summation + radical + infinity + Omega + pi + longs + Delta + product + notequal + proportional + approxequal + Schwa + eturned + Oslashacute + oslashacute + AEacute + aeacute + uni2010 + Aiecyr + aiecyr + uni1EBC + uni1EBD + Acaron + acaron + Gjecyr + Kjecyr + uniE000 + uniE000.alt + arrowleft + arrowup + arrowright + arrowdown + arrowdown.ss01 + arrowleft.ss01 + arrowright.ss01 + arrowup.ss01 + yi-cy.alt + Omegacyr + omegacyr + Yatcyr + yatcyr + Eiotifiedcyr + eiotifiedcyr + Ksicyr + ksicyr + Shwe-cy + Fitacyr + fitacyr + Koppacyr + Iegravecyr + Igravecyr + iegravecyr + igravecyr + Zhebrevecyr + zhebrevecyr + Abrevecyr + abrevecyr + Adieresiscyr + adieresiscyr + Iebrevecyr + iebrevecyr + Schwadieresiscyr + schwadieresiscyr + Zhedieresiscyr + zhedieresiscyr + Zedieresiscyr + zedieresiscyr + Imacroncyr + imacroncyr + Idieresiscyr + idieresiscyr + Odieresiscyr + odieresiscyr + Umacroncyr + umacroncyr + Udieresiscyr + udieresiscyr + Uacutedblcyr + uacutedblcyr + Dekomicyr + dekomicyr + Wecyr + wecyr + Qacyr + qacyr + Ylongdieresiscyr + ylongdieresiscyr + Chedieresiscyr + chedieresiscyr + Obardieresiscyr + obardieresiscyr + Ereverseddieresiscyr + ereverseddieresiscyr + Zhetailcyr + zhetailcyr + Tetailcyr + tetailcyr + Xatailcyr + xatailcyr + Chetailcyr + chetailcyr + Chekhakascyr + chekhakascyr + Getailcyr + getailcyr + Petailcyr + petailcyr + Eltailcyr + eltailcyr + Shhatailcyr + shhatailcyr + Palochkacyr + palochkacyr + Dzzhecyr + Yaecyr + yaecyr + Tetsecyr + tetsecyr + Engecyr + engecyr + kabashkcyr + Kabashkcyr + semisoftcyr + Semisoftcyr + Reversedzecyr + reversedzecyr + Elmiddlehookcyr + Enmiddlehookcyr + Enhookcyr + Kahookcyr + Pehookcyr + Gehookcyr + parenleft.case + parenright.case + hyphen.case + bracketleft.case + bracketright.case + braceleft.case + braceright.case + exclamdown.case + guillemetleft.case + guillemetright.case + endash.case + emdash.case + bullet.case + guilsinglleft.case + guilsinglright.case + arrowleft.case + arrowup.case + arrowright.case + arrowdown.case + arrowdown.ss01.case + arrowleft.ss01.case + arrowright.ss01.case + arrowup.ss01.case + Enhookleftcyr + enhookleftcyr + enhookcyr + gehookcyr + pehookcyr + kahookcyr + enmiddlehookcyr + elmiddlehookcyr + kastrokecyr + Kastrokecyr + Chevertcyr + chevertcyr + Kaverticalstrokecyr + kaverticalstrokecyr + Elhookcyr + elhookcyr + zetailcyr + Zetailcyr + Estailcyr + estailcyr + Haabkhcyr + koppacyr + ukcyr + Ukcyr + omegaroundcyr + Izhitsagravedblcyr + izhitsagravedblcyr + izhitsacyr + Izhitsacyr + Yusbigcyr + yusbigcyr + Psicyr + psicyr + Omegaroundcyr + Yuslittlecyr + yuslittlecyr + yuslittleiotifiedcyr + Yuslittleiotifiedcyr + Yusbigiotifiedcyr + yusbigiotifiedcyr + Omegatitlocyr + omegatitlocyr + Otcyr + otcyr + uni2DEE + uni2DEE.case + ertickcyr + Ertickcyr + Lhacyr + lhacyr + ensharptailcyr + Ensharptailcyr + emsharptailcyr + elsharptailcyr + ishortsharptailcyr + Ishortsharptailcyr + Emsharptailcyr + Elsharptailcyr + njekomicyr + Njekomicyr + ljekomicyr + tjekomicyr + djekomicyr + zjekomicyr + colon.case + questiondown.case + slash.case + semicolon.case + backslash.case + bar.case + brokenbar.case + dzjekomicyr + Cheabkhcyr + cheabkhcyr + cheabkhtailcyr + sjekomicyr + Sjekomicyr + Ljekomicyr + Tjekomicyr + Djekomicyr + kaaleutcyr + dzzhecyr + haabkhcyr + Dchecyr + dchecyr + dzeabkhcyr + Dzeabkhcyr + palatcombcyr + Cheabkhtailcyr + Dzjekomicyr + Zjekomicyr + rhacyr + Rhacyr + Kaaleutcyr + thousandscyr + titlocombcyr + pokrytiecombcyr + hundredthousandscombcyr + millionscombcyr + Gehookstrokecyr + gehookstrokecyr + Hahookcyr + hahookcyr + Hastrokecyr + uni1C80 + uni1C81 + uni1C82 + uni1C83 + uni1C84 + uni1C85 + uni1C86 + uni1C87 + Zemlya-cy + zemlya-cy + Dzelo-cy + dzelo-cy + DzeReversed-cy + dzeReversed-cy + Iota-cy + iota-cy + Djerv-cy + djerv-cy + UkMonograph-cy + ukMonograph-cy + OmegaBroad-cy + omegaBroad-cy + YerNeutral-cy + yerNeutral-cy + YeruBackYer-cy + yeruBackyer-cy + YatIotified-cy + yatIotified-cy + YuReversed-cy + yuReversed-cy + IotifiedA-cy + iotifieda-cy + YusClosedlittle-cy + yusClosedlittle-cy + YusBlended-cy + yusBlended-cy + YusiotifiedClosedLittle-cy + yusiotifiedClosedLittle-cy + Yn-cy + yn-cy + TseReversed-cy + tseReversed-cy + DeSoft-cy + deSoft-cy + ElSoft-cy + elSoft-cy + EmSoft-cy + emSoft-cy + OMonocular-cy + oMonocular-cy + OBinocular-cy + oBinocular-cy + ODoubleMonocular-cy + oDoubleMonocular-cy + omultiocular-cy + vzmetcomb-cy + tenmillionscomb-cy + hundredmillionscomb-cy + thousandmillionscomb-cy + Dwe-cy + dwe-cy + Dzwe-cy + dzwe-cy + Zhwe-cy + zhwe-cy + Cche-cy + cche-cy + Dzze-cy + dzze-cy + TeWithMiddleHook-cy + tewithmiddlehook-cy + Twe-cy + twe-cy + Tswe-cy + tswe-cy + Tsse-cy + tsse-cy + Tche-cy + tche-cy + Hwe-cy + hwe-cy + shwe-cy + DoubleO-cy + doubleo-cy + CrossedO-cy + crossedo-cy + hastrokecyr + uniF43A + A-cy.accented + E-cy.accented + Ii-cy.accented + O-cy.accented + U-cy.accented + Yeru-cy.accented + Ereversed-cy.accented + Iu-cy.accented + Ia-cy.accented + Io-cy.accented + uniF498 + uniF49A + uniF49C + uniF49E + uniF4C6 + uniF4CC + uniF4D2 + uniF4D4 + uniF4D6 + uniF4D8 + Zetailcyr.BSH + Estailcyr.CHU + uniF50E + uniF510 + uniF512 + uniF514 + uniF516 + uniF518 + uniF51A + uniF51C + uniF51E + Yeru-cymacron + uniF522 + uniF524 + uniF526 + uniF528 + uniF52A + uniF52C + uniF52E + uniF532 + uniF536 + uniF538 + Gestrokecyr.BSH + Estailcyr.BSH + uniF830 + uniF833 + uniF839 + uniF86F + uniF872 + uniF875 + uniF878 + uniF87B + uniF87E + apostrophemod + colontriangularmod + uni1C88 + uniF87F + uniF87C + uniF879 + uniF876 + uniF873 + uniF870 + uniF83A + uniF834 + uniF831 + zetailcyr.BSH + estailcyr.CHU + uniF50F + uniF511 + uniF513 + uniF515 + uniF517 + uniF519 + uniF51B + uniF51D + uniF51F + uniF521 + uniF523 + uniF525 + uniF527 + uniF529 + uniF52B + uniF52D + uniF52F + uniF533 + uniF537 + uniF539 + gestrokecyr.BSH + estailcyr.BSH + uniF499 + uniF49B + uniF49D + uniF49F + uniF4C7 + uniF4CD + uniF4D3 + uniF4D5 + uniF4D7 + uniF4D9 + a-cy.accented + e-cy.accented + ii-cy.accented + o-cy.accented + u-cy.accented + yeru-cy.accented + ereversed-cy.accented + iu-cy.accented + ia-cy.accented + io-cy.accented + uniF43B + at.case + dieresis.alt + dieresiscase.alt + e-cy.hist + omultiocular-cy.alt + iotifieda-cy.hist + be-cy.SRB + ve-cy.BGR + ge-cy.BGR + de-cy.BGR + zhe-cy.BGR + ze-cy.BGR + ii-cy.BGR + iishort-cy.BGR + ka-cy.BGR + el-cy.BGR + pe-cy.BGR + te-cy.BGR + tse-cy.BGR + sha-cy.BGR + shcha-cy.BGR + hardsign-cy.BGR + softsign-cy.BGR + iu-cy.BGR + yatcyr.BGR + eiotifiedcyr.BGR + yusbigiotifiedcyr.BGR + iotifieda-cy.BGR + De-cy.BGR + El-cy.BGR + Ef-cy.BGR + dieresisacute + uniF45D + uniF45E + uniF45F + uniF475 + uniF476 + uniF477 + uniF478 + uniF479 + Elsmallcyr + enclosingcirclecomb + ge-cy.SRB + pe-cy.SRB + te-cy.SRB + gjecyr.SRB + macron-fwd + macron-fwd.alt + macronacute.SRB + iegravecyr.SRB + igravecyr.SRB + flower + knightwhite + knightblack + floretteblack + florettewhite + floretteoutlinedpetalledblackeight + rookblack + bishopblack + leo + heartwhite + diamondwhite-misc + spadewhite + clubwhite + bishopwhite + heart + crossedswords + virgo + thousandscyr.dnom + bracketangleleft + bracketangleright + bracketangleleft.case + bracketangleright.case + + + diff --git a/sources/FixelDisplay-Light.ufo/metainfo.plist b/sources/FixelDisplay-Light.ufo/metainfo.plist new file mode 100644 index 00000000..10582b84 --- /dev/null +++ b/sources/FixelDisplay-Light.ufo/metainfo.plist @@ -0,0 +1,10 @@ + + + + + creator + com.fontlab.ufoLib + formatVersion + 3 + + diff --git a/sources/FixelDisplay-Medium.ufo/features.fea b/sources/FixelDisplay-Medium.ufo/features.fea new file mode 100644 index 00000000..302ade93 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/features.fea @@ -0,0 +1,573 @@ +#> classes +#/> otclasses +@ss01_def = [A-cy A AE Aacute Abreve Acircumflex Adieresis Agrave Amacron Aogonek Aring Atilde Em-cy Eng G Gacute Gbreve Gcircumflex Gcommaaccent Gdotaccent Ha-cy Ia-cy J Jcircumflex K Ka-cy Kcommaaccent M N Nacute Ncaron Ncommaaccent Ntilde Q U-cy Ushort-cy V W Wacute Wcircumflex Wdieresis Wgrave X Y Yacute Ycircumflex Ydieresis Z Zacute Zcaron Zdotaccent Zhe-cy a-cy a aacute abreve acircumflex adieresis ae agrave amacron aogonek aring arrowdown arrowdown.case arrowleft arrowleft.case arrowright arrowright.case arrowup arrowup.case atilde b d dcaron dcroat de-cy e eacute ebreve ecaron ecircumflex edieresis edotaccent egrave el-cy emacron eogonek er-cy f f_f f_f_i f_f_l fi fl g gacute gbreve gcircumflex gcommaaccent gdotaccent germandbls hardsign-cy ia-cy ie-cy io-cy l lacute lcaron lcommaaccent ldot ljecyr lslash njecyr numero oe p q softsign-cy t tbar tcaron tcedilla tcommaaccent te-cy ve-cy yen yeru-cy]; +@ss01 = [A-cy.ss01 A.ss01 AE.ss01 Aacute.ss01 Abreve.ss01 Acircumflex.ss01 Adieresis.ss01 Agrave.ss01 Amacron.ss01 Aogonek.ss01 Aring.ss01 Atilde.ss01 Em-cy.ss01 Eng.ss01 G.ss01 Gacute.ss01 Gbreve.ss01 Gcircumflex.ss01 Gcommaaccent.ss01 Gdotaccent.ss01 Ha-cy.ss01 Ia-cy.ss01 J.ss01 Jcircumflex.ss01 K.ss01 Ka-cy.ss01 Kcommaaccent.ss01 M.ss01 N.ss01 Nacute.ss01 Ncaron.ss01 Ncommaaccent.ss01 Ntilde.ss01 Q.ss01 U-cy.ss01 Ushort-cy.ss01 V.ss01 W.ss01 Wacute.ss01 Wcircumflex.ss01 Wdieresis.ss01 Wgrave.ss01 X.ss01 Y.ss01 Yacute.ss01 Ycircumflex.ss01 Ydieresis.ss01 Z.ss01 Zacute.ss01 Zcaron.ss01 Zdotaccent.ss01 Zhe-cy.ss01 a-cy.ss01 a.ss01 aacute.ss01 abreve.ss01 acircumflex.ss01 adieresis.ss01 ae.ss01 agrave.ss01 amacron.ss01 aogonek.ss01 aring.ss01 arrowdown.ss01 arrowdown.ss01.case arrowleft.ss01 arrowleft.ss01.case arrowright.ss01 arrowright.ss01.case arrowup.ss01 arrowup.ss01.case atilde.ss01 b.ss01 d.ss01 dcaron.ss01 dcroat.ss01 de-cy.ss01 e.ss01 eacute.ss01 ebreve.ss01 ecaron.ss01 ecircumflex.ss01 edieresis.ss01 edotaccent.ss01 egrave.ss01 el-cy.ss01 emacron.ss01 eogonek.ss01 er-cy.ss01 f.ss01 f_f.ss01 f_f_i.ss01 f_f_l.ss01 fi.ss01 fl.ss01 g.ss01 gacute.ss01 gbreve.ss01 gcircumflex.ss01 gcommaaccent.ss01 gdotaccent.ss01 germandbls.ss01 hardsign-cy.ss01 ia-cy.ss01 ie-cy.ss01 io-cy.ss01 l.ss01 lacute.ss01 lcaron.ss01 lcommaaccent.ss01 ldot.ss01 ljecyr.ss01 lslash.ss01 njecyr.ss01 numero.ss01 oe.ss01 p.ss01 q.ss01 softsign-cy.ss01 t.ss01 tbar.ss01 tcaron.ss01 tcedilla.ss01 tcommaaccent.ss01 te-cy.ss01 ve-cy.ss01 yen.ss01 yeru-cy.ss01]; +@case = [arrowdown.case arrowdown.ss01.case arrowleft.case arrowleft.ss01.case arrowright.case arrowright.ss01.case arrowup.case arrowup.ss01.case backslash.case bar.case braceleft.case braceright.case bracketleft.case bracketright.case brokenbar.case bullet.case colon.case emdash.case endash.case exclamdown.case guillemetleft.case guillemetright.case guilsinglleft.case guilsinglright.case hyphen.case parenleft.case parenright.case questiondown.case semicolon.case at.case bracketangleleft.case bracketangleright.case slash.case]; +@case_def = [arrowdown arrowdown.ss01 arrowleft arrowleft.ss01 arrowright arrowright.ss01 arrowup arrowup.ss01 backslash bar braceleft braceright bracketleft bracketright brokenbar bullet colon emdash endash exclamdown guillemetleft guillemetright guilsinglleft guilsinglright hyphen parenleft parenright questiondown semicolon at bracketangleleft bracketangleright slash]; +@cpsp = [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 Agrave Aacute Acircumflex Atilde Adieresis Aring AE Ccedilla Egrave Eacute Ecircumflex Edieresis Igrave Iacute Icircumflex Idieresis Eth Ntilde Ograve Oacute Ocircumflex Otilde Odieresis Oslash Ugrave Uacute Ucircumflex Udieresis Yacute Thorn Amacron Abreve Aogonek Cacute Ccircumflex Cdotaccent Ccaron Dcaron Dcroat Emacron Ebreve Edotaccent Eogonek Ecaron Gcircumflex Gbreve Gdotaccent Gcommaaccent Hcircumflex Hbar Itilde Imacron Ibreve Iogonek Idotaccent IJ Jcircumflex Kcommaaccent Lacute Lcommaaccent Lcaron Ldot Lslash Nacute Ncommaaccent Ncaron Eng Omacron Obreve Ohungarumlaut OE Racute Rcommaaccent Rcaron Sacute Scircumflex Scedilla Scaron Tcedilla Tcaron Tbar Utilde Umacron Ubreve Uring Uhungarumlaut Uogonek Wcircumflex Ycircumflex Ydieresis Zacute Zdotaccent Zcaron Schwa Acaron Gacute AEacute Oslashacute Scommaaccent Tcommaaccent Delta Omega Iegravecyr uniF43A A-cy.accented E-cy.accented Ii-cy.accented O-cy.accented U-cy.accented Yeru-cy.accented Ereversed-cy.accented Iu-cy.accented Ia-cy.accented Io-cy.accented uniF498 uniF49A uniF49C uniF49E uniF4C6 uniF4CC uniF4D2 uniF4D4 uniF4D6 uniF4D8 uniF50E uniF510 uniF512 uniF514 uniF516 uniF518 uniF51A uniF51C uniF51E Yeru-cymacron uniF522 uniF524 uniF526 uniF528 uniF52A uniF52C uniF52E uniF532 uniF536 uniF538 uniF830 uniF833 uniF839 uniF86F uniF872 uniF875 uniF878 uniF87B uniF87E Io-cy Djecyr Gjecyr E-cy Dze-cy I-cy Yi-cy Jecyr Ljecyr Njecyr Tshecyr Kjecyr Igravecyr Ushort-cy Dzhecyr A-cy Be-cy Ve-cy Ge-cy De-cy Ie-cy Zhe-cy Ze-cy Ii-cy Iishort-cy Ka-cy El-cy Em-cy En-cy O-cy Pe-cy Er-cy Es-cy Te-cy U-cy Ef-cy Ha-cy Tse-cy Che-cy Sha-cy Shcha-cy Hardsign-cy Yeru-cy Softsign-cy Ereversed-cy Iu-cy Ia-cy Omegacyr Yatcyr Eiotifiedcyr Yuslittlecyr Yuslittleiotifiedcyr Yusbigcyr Yusbigiotifiedcyr Ksicyr Psicyr Fitacyr Izhitsacyr Izhitsagravedblcyr Ukcyr Omegaroundcyr Omegatitlocyr Otcyr Koppacyr Ishortsharptailcyr Semisoftcyr Ertickcyr Gheupturn-cy Gestrokecyr Gehookcyr Zhetailcyr Zetailcyr Katailcyr Kaverticalstrokecyr Kastrokecyr Kabashkcyr Entailcyr Engecyr Pehookcyr Haabkhcyr Estailcyr Tetailcyr Ustraightcyr Ustraightstrokecyr Xatailcyr Tetsecyr Chetailcyr Chevertcyr Shhacyr Cheabkhcyr Cheabkhtailcyr Palochkacyr Zhebrevecyr Kahookcyr Elsharptailcyr Enhookcyr Ensharptailcyr Chekhakascyr Emsharptailcyr Abrevecyr Adieresiscyr Aiecyr Iebrevecyr Schwacyr Schwadieresiscyr Zhedieresiscyr Zedieresiscyr Dzeabkhcyr Imacroncyr Idieresiscyr Odieresiscyr Obarcyr Obardieresiscyr Ereverseddieresiscyr Umacroncyr Udieresiscyr Uacutedblcyr Chedieresiscyr Getailcyr Ylongdieresiscyr Gehookstrokecyr Hahookcyr Hastrokecyr Dekomicyr Djekomicyr Zjekomicyr Dzjekomicyr Ljekomicyr Njekomicyr Sjekomicyr Tjekomicyr Reversedzecyr Elhookcyr Lhacyr Rhacyr Yaecyr Qacyr Wecyr Kaaleutcyr Elmiddlehookcyr Enmiddlehookcyr Petailcyr Shhatailcyr Enhookleftcyr Dzzhecyr Dchecyr Eltailcyr Wgrave Wacute Wdieresis Germandbls uni1EBC Zemlya-cy Dzelo-cy DzeReversed-cy Iota-cy Djerv-cy UkMonograph-cy OmegaBroad-cy YerNeutral-cy YeruBackYer-cy YatIotified-cy YuReversed-cy IotifiedA-cy YusClosedlittle-cy YusBlended-cy YusiotifiedClosedLittle-cy Yn-cy TseReversed-cy DeSoft-cy ElSoft-cy EmSoft-cy OMonocular-cy OBinocular-cy ODoubleMonocular-cy Dwe-cy Dzwe-cy Zhwe-cy Cche-cy Dzze-cy TeWithMiddleHook-cy Twe-cy Tswe-cy Tsse-cy Tche-cy Hwe-cy Shwe-cy DoubleO-cy CrossedO-cy A-cy.ss01 A.ss01 AE.ss01 Aacute.ss01 Abreve.ss01 Acircumflex.ss01 Adieresis.ss01 Agrave.ss01 Amacron.ss01 Aogonek.ss01 Aring.ss01 Atilde.ss01 Em-cy.ss01 Eng.ss01 G.ss01 Gacute.ss01 Gbreve.ss01 Gcircumflex.ss01 Gcommaaccent.ss01 Gdotaccent.ss01 Ha-cy.ss01 Ia-cy.ss01 J.ss01 Jcircumflex.ss01 K.ss01 Ka-cy.ss01 Kcommaaccent.ss01 M.ss01 N.ss01 Nacute.ss01 Ncaron.ss01 Ncommaaccent.ss01 Ntilde.ss01 Q.ss01 U-cy.ss01 Ushort-cy.ss01 V.ss01 W.ss01 Wacute.ss01 Wcircumflex.ss01 Wdieresis.ss01 Wgrave.ss01 X.ss01 Y.ss01 Yacute.ss01 Ycircumflex.ss01 Ydieresis.ss01 Z.ss01 Zacute.ss01 Zcaron.ss01 Zdotaccent.ss01 Zetailcyr.BSH Gestrokecyr.BSH Estailcyr.BSH Estailcyr.CHU Zhe-cy.ss01]; +@locl_BGR = [De-cy.BGR Ef-cy.BGR El-cy.BGR de-cy.BGR eiotifiedcyr.BGR el-cy.BGR ge-cy.BGR hardsign-cy.BGR ii-cy.BGR iishort-cy.BGR iotifieda-cy.BGR iu-cy.BGR ka-cy.BGR pe-cy.BGR sha-cy.BGR shcha-cy.BGR softsign-cy.BGR te-cy.BGR tse-cy.BGR ve-cy.BGR yatcyr.BGR yusbigiotifiedcyr.BGR ze-cy.BGR zhe-cy.BGR]; +@locl_def = [De-cy Ef-cy El-cy de-cy eiotifiedcyr el-cy ge-cy hardsign-cy ii-cy iishort-cy iotifieda-cy iu-cy ka-cy pe-cy sha-cy shcha-cy softsign-cy te-cy tse-cy ve-cy yatcyr yusbigiotifiedcyr ze-cy zhe-cy]; +@locl.SRB = [be-cy.SRB iegravecyr.SRB igravecyr.SRB]; +@loclSRB_def = [be-cy iegravecyr igravecyr]; +@accent = [grave acute.case grave.case acute]; +@pics = [neptune leo virgo bishopwhite knightwhite rookblack bishopblack knightblack heartwhite diamondwhite-misc spadewhite heart clubwhite crossedswords flower floretteblack florettewhite floretteoutlinedpetalledblackeight]; +@pics_def = [A B C D E F G H I J K L M N O P Q R]; +#/< otclasses + +#/> tags +@tag.omultiocular-cy.alt = [omultiocular-cy]; +@tag.yi-cy_yi-cy.alt = [uniE000]; +#/< tags +#< classes + +# automatic +@Uppercase = [ A Aacute Abreve Acircumflex Adieresis Agrave Amacron Aogonek Aring Atilde AE B C Cacute Ccaron Ccedilla Ccircumflex Cdotaccent D Eth Dcaron Dcroat E Eacute Ebreve Ecaron Ecircumflex Edieresis Edotaccent Egrave Emacron Eogonek F G Gacute Gbreve Gcircumflex Gcommaaccent Gdotaccent H Hbar Hcircumflex I IJ Iacute Ibreve Icircumflex Idieresis Idotaccent Igrave Imacron Iogonek Itilde J Jcircumflex K Kcommaaccent L Lacute Lcaron Lcommaaccent Ldot Lslash M N Nacute Ncaron Ncommaaccent Eng Ntilde O Oacute Obreve Ocircumflex Odieresis Ograve Ohungarumlaut Omacron Oslash Otilde OE P Thorn Q R Racute Rcaron Rcommaaccent S Sacute Scaron Scedilla Scircumflex Scommaaccent Germandbls T Tbar Tcaron Tcedilla Tcommaaccent U Uacute Ubreve Ucircumflex Udieresis Ugrave Uhungarumlaut Umacron Uogonek Uring Utilde V W Wacute Wcircumflex Wdieresis Wgrave X Y Yacute Ycircumflex Ydieresis Z Zacute Zcaron Zdotaccent A.ss01 Aacute.ss01 Abreve.ss01 Acircumflex.ss01 Adieresis.ss01 Agrave.ss01 Amacron.ss01 Aogonek.ss01 Aring.ss01 Atilde.ss01 AE.ss01 G.ss01 Gacute.ss01 Gbreve.ss01 Gcircumflex.ss01 Gcommaaccent.ss01 Gdotaccent.ss01 J.ss01 Jcircumflex.ss01 K.ss01 Kcommaaccent.ss01 M.ss01 N.ss01 Nacute.ss01 Ncaron.ss01 Ncommaaccent.ss01 Eng.ss01 Ntilde.ss01 Q.ss01 V.ss01 W.ss01 Wacute.ss01 Wcircumflex.ss01 Wdieresis.ss01 Wgrave.ss01 X.ss01 Y.ss01 Yacute.ss01 Ycircumflex.ss01 Ydieresis.ss01 Z.ss01 Zacute.ss01 Zcaron.ss01 Zdotaccent.ss01 A-cy Be-cy Ve-cy Ge-cy Gheupturn-cy De-cy Ie-cy Io-cy Zhe-cy Ze-cy Ii-cy Iishort-cy Ka-cy El-cy Em-cy En-cy O-cy Pe-cy Er-cy Es-cy Te-cy U-cy Ushort-cy Ef-cy Ha-cy Che-cy Tse-cy Sha-cy Shcha-cy Softsign-cy Hardsign-cy Yeru-cy Dze-cy E-cy Ereversed-cy I-cy Yi-cy Iu-cy Ia-cy A-cy.ss01 Zhe-cy.ss01 Ka-cy.ss01 Em-cy.ss01 U-cy.ss01 Ushort-cy.ss01 Ha-cy.ss01 Ia-cy.ss01 ]; + +# Prefix: Languagesystems +# automatic +languagesystem DFLT dflt; + +languagesystem latn dflt; +languagesystem latn ROM; +languagesystem latn MOL; +languagesystem latn CAT; +languagesystem cyrl dflt; +languagesystem cyrl BGR; +languagesystem cyrl BSH; +languagesystem cyrl CHU; +languagesystem cyrl SRB; +languagesystem cyrl MKD; + +lookup liga_accent { + sub @accent by [grave grave grave grave]; +} liga_accent; +feature aalt { +# Access All Alternates + +#> feature + feature locl; + feature sups; + feature case; + feature lnum; + feature pnum; + feature tnum; + feature onum; + feature salt; + feature ss01; + feature hist; +#< feature +} aalt; +feature ccmp { +# automatic +lookup ccmp_Other_1 { + @Markscomb = [dieresis dotaccent grave acute hungarumlaut circumflex caron breve ring tilde macron]; + @MarkscombCase = [dieresis.case dotaccent.case grave.case acute.case hungarumlaut.case circumflex.case caron.case breve.case ring.case tilde.case macron.case]; + sub @Markscomb @Markscomb' by @MarkscombCase; + sub @cpsp @Markscomb' by @MarkscombCase; +} ccmp_Other_1; + +lookup ccmp_Other_2 { + sub @Markscomb' @MarkscombCase by @MarkscombCase; + sub @MarkscombCase @Markscomb' by @MarkscombCase; +} ccmp_Other_2; +} ccmp; + +feature locl { +# automatic + +script latn; + language ROM; + language MOL; + sub Scedilla by Scommaaccent; + sub scedilla by scommaaccent; + sub Tcedilla by Tcommaaccent; + sub tcedilla by tcommaaccent; + +script latn; + language CAT; + sub l' periodcentered' l by ldot; + sub L' periodcentered' L by Ldot; + +script cyrl; # Cyrillic + language SRB ; # Serbian + + lookup locl_SRB_MCD { + # GSUB lookup 20, type 11 (Single) + sub @loclSRB_def by @locl.SRB; + } locl_SRB_MCD; + + language MKD ; # Serbian + lookup locl_SRB_MCD; + + language BSH ; # Bashkir + sub [Gestrokecyr gestrokecyr Zetailcyr zetailcyr] by [Gestrokecyr.BSH gestrokecyr.BSH Zetailcyr.BSH zetailcyr.BSH]; + sub [Estailcyr estailcyr] by [Estailcyr.BSH estailcyr.BSH]; + + language CHU ; # Chuvash + sub [Estailcyr estailcyr] by [Estailcyr.CHU estailcyr.CHU]; + + language BGR ; # Bulgarian + sub @locl_def by @locl_BGR; + +} locl; + +feature sups { +# Superscript + +#> feature + sub one by onesuperior; + sub three by threesuperior; + sub two by twosuperior; +#< feature +} sups; +feature ordn { +# Ordinals + +#> feature + sub [zero one two three four five six seven eight nine] [A a]' by ordfeminine; + sub [zero one two three four five six seven eight nine] [O o]' by ordmasculine; + sub N o period by numero; +#< feature +} ordn; +feature case { +# Case Sensitive Forms + +#> feature + + sub @case_def by @case; + +#< feature +} case; +feature liga { +# Standard Ligatures + +#> feature +sub f f i by f_f_i; +sub f f l by f_f_l; +sub f f by f_f; +sub f i by fi; +sub f l by fl; +sub yi-cy yi-cy by uniE000; +sub hyphen greater by arrowright; +sub less hyphen by arrowleft; +sub backslash bar slash by arrowdown; +sub slash bar backslash by arrowup; + + lookup accent_2 { + sub E-cy @accent' lookup liga_accent; + sub I-cy @accent' lookup liga_accent; + sub Yi-cy @accent' lookup liga_accent; + sub A-cy @accent' lookup liga_accent; + sub Ie-cy @accent' lookup liga_accent; + sub Ii-cy @accent' lookup liga_accent; + sub O-cy @accent' lookup liga_accent; + sub U-cy @accent' lookup liga_accent; + sub Yeru-cy @accent' lookup liga_accent; + sub Ereversed-cy @accent' lookup liga_accent; + sub Iu-cy @accent' lookup liga_accent; + sub Ia-cy @accent' lookup liga_accent; + sub Io-cy @accent' lookup liga_accent; + sub Yatcyr @accent' lookup liga_accent; + + sub e-cy @accent' lookup liga_accent; + sub i-cy @accent' lookup liga_accent; + sub yi-cy @accent' lookup liga_accent; + sub a-cy @accent' lookup liga_accent; + sub ie-cy @accent' lookup liga_accent; + sub ii-cy @accent' lookup liga_accent; + sub o-cy @accent' lookup liga_accent; + sub u-cy @accent' lookup liga_accent; + sub yeru-cy @accent' lookup liga_accent; + sub ereversed-cy @accent' lookup liga_accent; + sub iu-cy @accent' lookup liga_accent; + sub ia-cy @accent' lookup liga_accent; + sub io-cy @accent' lookup liga_accent; + sub yatcyr @accent' lookup liga_accent; + } accent_2; + + lookup accent_3 { + sub E-cy grave by uniF45D; + sub I-cy grave by uniF45E; + sub Yi-cy grave by uniF45F; + sub A-cy grave by A-cy.accented; + sub Ie-cy grave by E-cy.accented; + sub Ii-cy grave by Ii-cy.accented; + sub O-cy grave by O-cy.accented; + sub U-cy grave by U-cy.accented; + sub Yeru-cy grave by Yeru-cy.accented; + sub Ereversed-cy grave by Ereversed-cy.accented; + sub Iu-cy grave by Iu-cy.accented; + sub Ia-cy grave by Ia-cy.accented; + sub Io-cy grave by Io-cy.accented; + sub Yatcyr grave by uniF478; + + sub e-cy grave by uniF475; + sub i-cy grave by uniF476; + sub yi-cy grave by uniF477; + sub a-cy grave by a-cy.accented; + sub ie-cy grave by e-cy.accented; + sub ii-cy grave by ii-cy.accented; + sub o-cy grave by o-cy.accented; + sub u-cy grave by u-cy.accented; + sub yeru-cy grave by yeru-cy.accented; + sub ereversed-cy grave by ereversed-cy.accented; + sub iu-cy grave by iu-cy.accented; + sub ia-cy grave by ia-cy.accented; + sub io-cy grave by io-cy.accented; + sub yatcyr grave by uniF479; + } accent_3; + +#< feature +} liga; +feature dlig { +# Discretionary Ligatures + +#> feature + +sub M a c P a w l o g o by uniE01A; +sub M P a w l o g o by uniE01A; +sub M P l o g o by uniE01A; +sub M A C P A W L O G O by uniE01A; +sub m a c p a w l o g o by uniE01A; +sub t r i d e n t by neptune; +sub t r y z u b by neptune; +sub u k r a i n e s i g n by neptune; +sub T R I D E N T by neptune; +sub T R Y Z U B by neptune; +sub U k r a i n e S i g n by neptune; +sub T r y z u b by neptune; +sub T r i d e n t by neptune; +sub Te-cy Er-cy Ii-cy Ze-cy U-cy Be-cy by neptune; + +#< feature +} dlig; +feature lnum { +# Lining Figures + +#> feature + sub eight.osf by eight.tf; + sub eight by eight.tf; + sub five.osf by five.tf; + sub five by five.tf; + sub four.osf by four.tf; + sub four by four.tf; + sub nine.osf by nine.tf; + sub nine by nine.tf; + sub one.osf by one.tf; + sub one by one.tf; + sub seven.osf by seven.tf; + sub seven by seven.tf; + sub six.osf by six.tf; + sub six by six.tf; + sub three.osf by three.tf; + sub three by three.tf; + sub two.osf by two.tf; + sub two by two.tf; + sub zero.osf by zero.tf; + sub zero by zero.tf; +#< feature +} lnum; +feature pnum { +# Proportional Figures + +#> feature + sub eight.tf by eight.osf; + sub eight by eight.osf; + sub five.tf by five.osf; + sub five by five.osf; + sub four.tf by four.osf; + sub four by four.osf; + sub nine.tf by nine.osf; + sub nine by nine.osf; + sub one.tf by one.osf; + sub one by one.osf; + sub seven.tf by seven.osf; + sub seven by seven.osf; + sub six.tf by six.osf; + sub six by six.osf; + sub three.tf by three.osf; + sub three by three.osf; + sub two.tf by two.osf; + sub two by two.osf; + sub zero.tf by zero.osf; + sub zero by zero.osf; +#< feature +} pnum; +feature tnum { +# Tabular Figures + +#> feature + sub eight by eight.tf; + sub eight.osf by eight.tf; + sub five by five.tf; + sub five.osf by five.tf; + sub four by four.tf; + sub four.osf by four.tf; + sub nine by nine.tf; + sub nine.osf by nine.tf; + sub one by one.tf; + sub one.osf by one.tf; + sub seven by seven.tf; + sub seven.osf by seven.tf; + sub six by six.tf; + sub six.osf by six.tf; + sub three by three.tf; + sub three.osf by three.tf; + sub two by two.tf; + sub two.osf by two.tf; + sub zero by zero.tf; + sub zero.osf by zero.tf; +#< feature +} tnum; +feature onum { +# Oldstyle Figures + +#> feature + sub eight by eight.osf; + sub eight.tf by eight.osf; + sub five by five.osf; + sub five.tf by five.osf; + sub four by four.osf; + sub four.tf by four.osf; + sub nine by nine.osf; + sub nine.tf by nine.osf; + sub one by one.osf; + sub one.tf by one.osf; + sub seven by seven.osf; + sub seven.tf by seven.osf; + sub six by six.osf; + sub six.tf by six.osf; + sub three by three.osf; + sub three.tf by three.osf; + sub two by two.osf; + sub two.tf by two.osf; + sub zero by zero.osf; + sub zero.tf by zero.osf; +#< feature +} onum; +feature salt { +# Stylistic Alternates + +#> feature + sub A from [A.ss01]; + sub A-cy from [A-cy.ss01]; + sub AE from [AE.ss01]; + sub Aacute from [Aacute.ss01]; + sub Abreve from [Abreve.ss01]; + sub Acircumflex from [Acircumflex.ss01]; + sub Adieresis from [Adieresis.ss01]; + sub Agrave from [Agrave.ss01]; + sub Amacron from [Amacron.ss01]; + sub Aogonek from [Aogonek.ss01]; + sub Aring from [Aring.ss01]; + sub Atilde from [Atilde.ss01]; + sub Em-cy from [Em-cy.ss01]; + sub Eng from [Eng.ss01]; + sub G from [G.ss01]; + sub Gacute from [Gacute.ss01]; + sub Gbreve from [Gbreve.ss01]; + sub Gcircumflex from [Gcircumflex.ss01]; + sub Gcommaaccent from [Gcommaaccent.ss01]; + sub Gdotaccent from [Gdotaccent.ss01]; + sub Ha-cy from [Ha-cy.ss01]; + sub Ia-cy from [Ia-cy.ss01]; + sub J from [J.ss01]; + sub Jcircumflex from [Jcircumflex.ss01]; + sub K from [K.ss01]; + sub Ka-cy from [Ka-cy.ss01]; + sub Kcommaaccent from [Kcommaaccent.ss01]; + sub M from [M.ss01]; + sub N from [N.ss01]; + sub Nacute from [Nacute.ss01]; + sub Ncaron from [Ncaron.ss01]; + sub Ncommaaccent from [Ncommaaccent.ss01]; + sub Ntilde from [Ntilde.ss01]; + sub Q from [Q.ss01]; + sub U-cy from [U-cy.ss01]; + sub Ushort-cy from [Ushort-cy.ss01]; + sub V from [V.ss01]; + sub W from [W.ss01]; + sub Wacute from [Wacute.ss01]; + sub Wcircumflex from [Wcircumflex.ss01]; + sub Wdieresis from [Wdieresis.ss01]; + sub Wgrave from [Wgrave.ss01]; + sub X from [X.ss01]; + sub Y from [Y.ss01]; + sub Yacute from [Yacute.ss01]; + sub Ycircumflex from [Ycircumflex.ss01]; + sub Ydieresis from [Ydieresis.ss01]; + sub Z from [Z.ss01]; + sub Zacute from [Zacute.ss01]; + sub Zcaron from [Zcaron.ss01]; + sub Zdotaccent from [Zdotaccent.ss01]; + sub Zhe-cy from [Zhe-cy.ss01]; + sub a from [a.ss01]; + sub a-cy from [a-cy.ss01]; + sub aacute from [aacute.ss01]; + sub abreve from [abreve.ss01]; + sub acircumflex from [acircumflex.ss01]; + sub adieresis from [adieresis.ss01]; + sub ae from [ae.ss01]; + sub agrave from [agrave.ss01]; + sub amacron from [amacron.ss01]; + sub aogonek from [aogonek.ss01]; + sub aring from [aring.ss01]; + sub arrowdown from [arrowdown.ss01]; + sub arrowleft from [arrowleft.ss01]; + sub arrowright from [arrowright.ss01]; + sub arrowup from [arrowup.ss01]; + sub atilde from [atilde.ss01]; + sub b from [b.ss01]; + sub caron from [caron.salt]; + sub commaaccentcomb from [commaaccentcomb.salt]; + sub d from [d.ss01]; + sub dcaron from [dcaron.ss01]; + sub dcroat from [dcroat.ss01]; + sub de-cy from [de-cy.ss01]; + sub e from [e.ss01]; + sub eacute from [eacute.ss01]; + sub ebreve from [ebreve.ss01]; + sub ecaron from [ecaron.ss01]; + sub ecircumflex from [ecircumflex.ss01]; + sub edieresis from [edieresis.ss01]; + sub edotaccent from [edotaccent.ss01]; + sub egrave from [egrave.ss01]; + sub el-cy from [el-cy.ss01]; + sub emacron from [emacron.ss01]; + sub eogonek from [eogonek.ss01]; + sub er-cy from [er-cy.ss01]; + sub f from [f.ss01]; + sub f_f from [f_f.ss01]; + sub f_f_i from [f_f_i.ss01]; + sub f_f_l from [f_f_l.ss01]; + sub fi from [fi.ss01]; + sub fl from [fl.ss01]; + sub g from [g.ss01]; + sub gacute from [gacute.ss01]; + sub gbreve from [gbreve.ss01]; + sub gcircumflex from [gcircumflex.ss01]; + sub gcommaaccent from [gcommaaccent.ss01]; + sub gdotaccent from [gdotaccent.ss01]; + sub germandbls from [germandbls.ss01]; + sub hardsign-cy from [hardsign-cy.ss01]; + sub ia-cy from [ia-cy.ss01]; + sub ie-cy from [ie-cy.ss01]; + sub io-cy from [io-cy.ss01]; + sub l from [l.ss01]; + sub lacute from [lacute.ss01]; + sub lcaron from [lcaron.ss01]; + sub lcommaaccent from [lcommaaccent.ss01]; + sub ldot from [ldot.ss01]; + sub ljecyr from [ljecyr.ss01]; + sub lslash from [lslash.ss01]; + sub njecyr from [njecyr.ss01]; + sub numero from [numero.ss01]; + sub oe from [oe.ss01]; + sub p from [p.ss01]; + sub q from [q.ss01]; + sub softsign-cy from [softsign-cy.ss01]; + sub t from [t.ss01]; + sub tbar from [tbar.ss01]; + sub tcaron from [tcaron.ss01]; + sub tcedilla from [tcedilla.ss01]; + sub tcommaaccent from [tcommaaccent.ss01]; + sub te-cy from [te-cy.ss01]; + sub uniE000 from [uniE000.alt]; + sub ve-cy from [ve-cy.ss01]; + sub yen from [yen.ss01]; + sub yeru-cy from [yeru-cy.ss01]; +#< feature +} salt; +feature ss03 { +# Stylistic Set 01–20 + +#> feature + featureNames { + name "Bulgarian forms"; + name 1 "Bulgarian forms"; + }; + + sub @locl_def by @locl_BGR; + +#< feature +} ss03; +feature ss04 { +# Stylistic Set 01–20 + +#> feature + featureNames { + name "Serbian/Macedonian forms"; + name 1 "Serbian/Macedonian forms"; + }; + + sub @loclSRB_def by @locl.SRB; + +#< feature +} ss04; +feature ss01 { +# Stylistic Set 01–20 + +#> feature + + featureNames { + name "Humanistic forms"; + name 1 "Humanistic forms"; + }; + + sub @ss01_def by @ss01; + +#< feature +} ss01; +feature ss05 { +# Stylistic Set 01–20 + +#> feature + + featureNames { + name "Ukrainian pictograms"; + name 1 "Ukrainian pictograms"; + }; + + sub @pics_def by @pics; + +#< feature +} ss05; +feature hist { +# Historical Forms + +#> feature + sub e-cy by e-cy.hist; + sub s by longs; +#< feature +} hist; +feature frac { +# Fractions + +#> feature +lookup frac_precomposed { + + sub one slash four by onequarter; + sub one slash two by onehalf; + sub three slash four by threequarters; + sub one fraction four by onequarter; + sub one fraction two by onehalf; + sub three fraction four by threequarters; +} frac_precomposed; +#< feature +} frac; +feature cpsp { +# Capital Spacing + +#> feature + + pos @cpsp <5 0 10 0>; + +#< feature +} cpsp; +feature dnom { +# Denominator + +#> feature + sub thousandscyr by thousandscyr.dnom; +#< feature +} dnom; diff --git a/sources/FixelDisplay-Medium.ufo/fontinfo.plist b/sources/FixelDisplay-Medium.ufo/fontinfo.plist new file mode 100644 index 00000000..caf2b1d8 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/fontinfo.plist @@ -0,0 +1,207 @@ + + + + + ascender + 720 + capHeight + 700 + descender + -200 + familyName + Fixel Display + guidelines + + + angle + 0 + name + m + x + 0 + y + -99.2 + + + angle + 0 + name + m + x + 0 + y + 189 + + + italicAngle + 0 + openTypeGaspRangeRecords + + + rangeGaspBehavior + + 0 + 1 + 2 + 3 + + rangeMaxPPEM + 65535 + + + openTypeHeadCreated + 2023/09/05 09:25:40 + openTypeHeadFlags + + + openTypeHheaAscender + 720 + openTypeHheaCaretOffset + -0 + openTypeHheaDescender + -190 + openTypeHheaLineGap + 100 + openTypeNameDesigner + AlfaBravo + openTypeNameDesignerURL + https://alfabravo.design/ + openTypeNameManufacturer + Kyrylo Tkachov, Marchela Mozhyna, Serhii Makarenko, Maria Weinstein, Zakhar Kryvoshyya + + openTypeNameManufacturerURL + https://macpaw.com/ + openTypeNamePreferredFamilyName + Fixel Display + openTypeNamePreferredSubfamilyName + Medium + openTypeNameVersion + Version 1.200 + openTypeOS2CodePageRanges + + 0 + 1 + 2 + 4 + 7 + 29 + + openTypeOS2Panose + + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + + openTypeOS2Selection + + + openTypeOS2StrikeoutPosition + 300 + openTypeOS2StrikeoutSize + 50 + openTypeOS2SubscriptXOffset + -0 + openTypeOS2SubscriptXSize + 650 + openTypeOS2SubscriptYOffset + 75 + openTypeOS2SubscriptYSize + 600 + openTypeOS2SuperscriptXOffset + -0 + openTypeOS2SuperscriptXSize + 650 + openTypeOS2SuperscriptYOffset + 350 + openTypeOS2SuperscriptYSize + 600 + openTypeOS2Type + + 2 + + openTypeOS2TypoAscender + 720 + openTypeOS2TypoDescender + -200 + openTypeOS2TypoLineGap + 290 + openTypeOS2UnicodeRanges + + 0 + 1 + 2 + 9 + 31 + 33 + 60 + + openTypeOS2WeightClass + 500 + openTypeOS2WidthClass + 5 + openTypeOS2WinAscent + 750 + openTypeOS2WinDescent + 250 + postscriptBlueFuzz + 1 + postscriptBlueScale + 0.039625 + postscriptBlueShift + 7 + postscriptBlueValues + + -20 + 0 + + postscriptFontName + FixelDisplay-Medium + postscriptForceBold + + postscriptFullName + Fixel Display Medium + postscriptIsFixedPitch + + postscriptStemSnapH + + 69 + 74 + 76 + 80 + 99 + + postscriptStemSnapV + + 74 + 80 + 93 + + postscriptUnderlinePosition + -100 + postscriptUnderlineThickness + 50 + postscriptWeightName + Medium + styleMapFamilyName + Fixel Display Medium + styleMapStyleName + regular + styleName + Medium + unitsPerEm + 1000 + versionMajor + 1 + versionMinor + 200 + xHeight + 520 + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/A_-cy.accented.glif b/sources/FixelDisplay-Medium.ufo/glyphs/A_-cy.accented.glif new file mode 100644 index 00000000..daa5ce49 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/A_-cy.accented.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+acute.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/A_-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/A_-cy.glif new file mode 100644 index 00000000..e727df1a --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/A_-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/A_-cy.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/A_-cy.ss01.glif new file mode 100644 index 00000000..2eb5d09b --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/A_-cy.ss01.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + com.fontlab.recipe + A + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/A_.glif b/sources/FixelDisplay-Medium.ufo/glyphs/A_.glif new file mode 100644 index 00000000..a5b7aaf7 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/A_.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/A_.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/A_.ss01.glif new file mode 100644 index 00000000..33df972f --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/A_.ss01.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/A_E_.glif b/sources/FixelDisplay-Medium.ufo/glyphs/A_E_.glif new file mode 100644 index 00000000..a5b915bd --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/A_E_.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + A + com.fontlab.metricsRight + E + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/A_E_.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/A_E_.ss01.glif new file mode 100644 index 00000000..39ec5ae8 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/A_E_.ss01.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + A.ss01 + com.fontlab.metricsRight + E + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/A_E_acute.glif b/sources/FixelDisplay-Medium.ufo/glyphs/A_E_acute.glif new file mode 100644 index 00000000..59bbf513 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/A_E_acute.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + AE+acute.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/A_acute.glif b/sources/FixelDisplay-Medium.ufo/glyphs/A_acute.glif new file mode 100644 index 00000000..cfbcee9a --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/A_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+acute.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/A_acute.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/A_acute.ss01.glif new file mode 100644 index 00000000..e50ae236 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/A_acute.ss01.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + A.ss01+acute.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/A_breve.glif b/sources/FixelDisplay-Medium.ufo/glyphs/A_breve.glif new file mode 100644 index 00000000..f697172d --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/A_breve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+breve.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/A_breve.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/A_breve.ss01.glif new file mode 100644 index 00000000..623d2728 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/A_breve.ss01.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + A.ss01+breve.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/A_brevecyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/A_brevecyr.glif new file mode 100644 index 00000000..7c1bf4b0 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/A_brevecyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+breve.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/A_caron.glif b/sources/FixelDisplay-Medium.ufo/glyphs/A_caron.glif new file mode 100644 index 00000000..aa81db9d --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/A_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+caron.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/A_circumflex.glif b/sources/FixelDisplay-Medium.ufo/glyphs/A_circumflex.glif new file mode 100644 index 00000000..b3c73429 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/A_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+circumflex.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/A_circumflex.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/A_circumflex.ss01.glif new file mode 100644 index 00000000..d8cdff88 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/A_circumflex.ss01.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + A.ss01+circumflex.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/A_dieresis.glif b/sources/FixelDisplay-Medium.ufo/glyphs/A_dieresis.glif new file mode 100644 index 00000000..b840fa1e --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/A_dieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+dieresis.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/A_dieresis.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/A_dieresis.ss01.glif new file mode 100644 index 00000000..c4a8ec77 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/A_dieresis.ss01.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + A.ss01+dieresis.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/A_dieresiscyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/A_dieresiscyr.glif new file mode 100644 index 00000000..79b93ce6 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/A_dieresiscyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/A_grave.glif b/sources/FixelDisplay-Medium.ufo/glyphs/A_grave.glif new file mode 100644 index 00000000..8946ffb0 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/A_grave.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+grave.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/A_grave.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/A_grave.ss01.glif new file mode 100644 index 00000000..e2a2cb2d --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/A_grave.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A.ss01+grave.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/A_iecyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/A_iecyr.glif new file mode 100644 index 00000000..23e0e6a7 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/A_iecyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + AE + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/A_macron.glif b/sources/FixelDisplay-Medium.ufo/glyphs/A_macron.glif new file mode 100644 index 00000000..f259e514 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/A_macron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+macron.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/A_macron.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/A_macron.ss01.glif new file mode 100644 index 00000000..066d5f98 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/A_macron.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A.ss01+macron.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/A_ogonek.glif b/sources/FixelDisplay-Medium.ufo/glyphs/A_ogonek.glif new file mode 100644 index 00000000..2f2f1fa1 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/A_ogonek.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+ogonek + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/A_ogonek.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/A_ogonek.ss01.glif new file mode 100644 index 00000000..655cf36b --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/A_ogonek.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A.ss01+ogonek + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/A_ring.glif b/sources/FixelDisplay-Medium.ufo/glyphs/A_ring.glif new file mode 100644 index 00000000..820c4d5e --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/A_ring.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+ring.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/A_ring.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/A_ring.ss01.glif new file mode 100644 index 00000000..c238e36e --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/A_ring.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A.ss01+ring.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/A_tilde.glif b/sources/FixelDisplay-Medium.ufo/glyphs/A_tilde.glif new file mode 100644 index 00000000..9b3dae4e --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/A_tilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+tilde.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/A_tilde.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/A_tilde.ss01.glif new file mode 100644 index 00000000..8bfadaa0 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/A_tilde.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A.ss01+tilde.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/B_.glif b/sources/FixelDisplay-Medium.ufo/glyphs/B_.glif new file mode 100644 index 00000000..0fd376f4 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/B_.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/B_e-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/B_e-cy.glif new file mode 100644 index 00000000..30db9ac1 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/B_e-cy.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + B-10 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/C_.glif b/sources/FixelDisplay-Medium.ufo/glyphs/C_.glif new file mode 100644 index 00000000..503fa298 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/C_.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/C_R_.glif b/sources/FixelDisplay-Medium.ufo/glyphs/C_R_.glif new file mode 100644 index 00000000..a38a285e --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/C_R_.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/C_acute.glif b/sources/FixelDisplay-Medium.ufo/glyphs/C_acute.glif new file mode 100644 index 00000000..766bafd2 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/C_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+acute.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/C_caron.glif b/sources/FixelDisplay-Medium.ufo/glyphs/C_caron.glif new file mode 100644 index 00000000..02059bf4 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/C_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+caron.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/C_cedilla.glif b/sources/FixelDisplay-Medium.ufo/glyphs/C_cedilla.glif new file mode 100644 index 00000000..034ec932 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/C_cedilla.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+cedilla + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/C_che-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/C_che-cy.glif new file mode 100644 index 00000000..dc6443ed --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/C_che-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ч + com.fontlab.metricsRight + Ч + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/C_circumflex.glif b/sources/FixelDisplay-Medium.ufo/glyphs/C_circumflex.glif new file mode 100644 index 00000000..42727edb --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/C_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+circumflex.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/C_dotaccent.glif b/sources/FixelDisplay-Medium.ufo/glyphs/C_dotaccent.glif new file mode 100644 index 00000000..4fcd1d2b --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/C_dotaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+dotaccent.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/C_he-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/C_he-cy.glif new file mode 100644 index 00000000..fba6fae4 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/C_he-cy.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/C_heabkhcyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/C_heabkhcyr.glif new file mode 100644 index 00000000..fe501392 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/C_heabkhcyr.glif @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + |Schwa + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/C_heabkhtailcyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/C_heabkhtailcyr.glif new file mode 100644 index 00000000..72b080fd --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/C_heabkhtailcyr.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Cheabkhcyr + com.fontlab.metricsRight + Cheabkhcyr + com.fontlab.recipe + Cheabkhcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/C_hedieresiscyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/C_hedieresiscyr.glif new file mode 100644 index 00000000..f4663fbb --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/C_hedieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Che-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/C_hekhakascyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/C_hekhakascyr.glif new file mode 100644 index 00000000..1fc488ce --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/C_hekhakascyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ч + com.fontlab.metricsRight + H + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/C_hetailcyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/C_hetailcyr.glif new file mode 100644 index 00000000..1db9b713 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/C_hetailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ч + com.fontlab.metricsRight + Entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/C_hevertcyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/C_hevertcyr.glif new file mode 100644 index 00000000..13d30099 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/C_hevertcyr.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ч + com.fontlab.metricsRight + Н + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/C_rossedO_-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/C_rossedO_-cy.glif new file mode 100644 index 00000000..841b83e6 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/C_rossedO_-cy.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + com.fontlab.recipe + O + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/D_.glif b/sources/FixelDisplay-Medium.ufo/glyphs/D_.glif new file mode 100644 index 00000000..251b3f46 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/D_.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/D_caron.glif b/sources/FixelDisplay-Medium.ufo/glyphs/D_caron.glif new file mode 100644 index 00000000..ec6f6f77 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/D_caron.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + D+caron.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/D_checyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/D_checyr.glif new file mode 100644 index 00000000..23d02885 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/D_checyr.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Д+10 + com.fontlab.metricsRight + Д + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/D_croat.glif b/sources/FixelDisplay-Medium.ufo/glyphs/D_croat.glif new file mode 100644 index 00000000..bbb19e25 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/D_croat.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + D + com.fontlab.recipe + Eth + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/D_e-cy.B_G_R_.glif b/sources/FixelDisplay-Medium.ufo/glyphs/D_e-cy.B_G_R_.glif new file mode 100644 index 00000000..4d0eec69 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/D_e-cy.B_G_R_.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + l() + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/D_e-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/D_e-cy.glif new file mode 100644 index 00000000..b463f1e7 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/D_e-cy.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/D_eS_oft-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/D_eS_oft-cy.glif new file mode 100644 index 00000000..9dda5acc --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/D_eS_oft-cy.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Д + com.fontlab.metricsRight + Ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/D_ekomicyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/D_ekomicyr.glif new file mode 100644 index 00000000..575745d3 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/D_ekomicyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.metricsLeft + |P + com.fontlab.metricsRight + H + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/D_elta.glif b/sources/FixelDisplay-Medium.ufo/glyphs/D_elta.glif new file mode 100644 index 00000000..eef81d31 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/D_elta.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + A + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/D_jecyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/D_jecyr.glif new file mode 100644 index 00000000..27752fce --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/D_jecyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/D_jekomicyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/D_jekomicyr.glif new file mode 100644 index 00000000..84ee7cd0 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/D_jekomicyr.glif @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Dekomicyr + com.fontlab.metricsRight + Njekomicyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/D_jerv-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/D_jerv-cy.glif new file mode 100644 index 00000000..18904c2e --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/D_jerv-cy.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + r() + com.fontlab.metricsRight + O + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/D_oubleO_-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/D_oubleO_-cy.glif new file mode 100644 index 00000000..3eebc968 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/D_oubleO_-cy.glif @@ -0,0 +1,91 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + com.fontlab.recipe + O_O + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/D_we-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/D_we-cy.glif new file mode 100644 index 00000000..6b55939e --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/D_we-cy.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Д + com.fontlab.metricsRight + Д + com.fontlab.recipe + Д + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/D_ze-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/D_ze-cy.glif new file mode 100644 index 00000000..ffb2c0d0 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/D_ze-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + S + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/D_zeR_eversed-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/D_zeR_eversed-cy.glif new file mode 100644 index 00000000..2cda96bc --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/D_zeR_eversed-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + S + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/D_zeabkhcyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/D_zeabkhcyr.glif new file mode 100644 index 00000000..d16f1928 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/D_zeabkhcyr.glif @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + З-10 + com.fontlab.metricsRight + З-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/D_zelo-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/D_zelo-cy.glif new file mode 100644 index 00000000..ab749525 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/D_zelo-cy.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/D_zhecyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/D_zhecyr.glif new file mode 100644 index 00000000..4e409a15 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/D_zhecyr.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/D_zjekomicyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/D_zjekomicyr.glif new file mode 100644 index 00000000..b9aed6e1 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/D_zjekomicyr.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + З-10 + com.fontlab.metricsRight + Ц-5 + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/D_zwe-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/D_zwe-cy.glif new file mode 100644 index 00000000..3d7442b5 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/D_zwe-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + S + com.fontlab.metricsRight + S + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/D_zze-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/D_zze-cy.glif new file mode 100644 index 00000000..b62eba3b --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/D_zze-cy.glif @@ -0,0 +1,84 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Д + com.fontlab.metricsRight + Д-20 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/D_zzhecyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/D_zzhecyr.glif new file mode 100644 index 00000000..2ca9986d --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/D_zzhecyr.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Д + com.fontlab.metricsRight + Ж + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/E_-cy.accented.glif b/sources/FixelDisplay-Medium.ufo/glyphs/E_-cy.accented.glif new file mode 100644 index 00000000..e5fc5857 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/E_-cy.accented.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+acute.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/E_-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/E_-cy.glif new file mode 100644 index 00000000..ecf31f5b --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/E_-cy.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + C + com.fontlab.metricsRight + C + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/E_.glif b/sources/FixelDisplay-Medium.ufo/glyphs/E_.glif new file mode 100644 index 00000000..ae3843a5 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/E_.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + com.fontlab.metricsRight + F+10 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/E_acute.glif b/sources/FixelDisplay-Medium.ufo/glyphs/E_acute.glif new file mode 100644 index 00000000..81e30453 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/E_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+acute.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/E_breve.glif b/sources/FixelDisplay-Medium.ufo/glyphs/E_breve.glif new file mode 100644 index 00000000..e60e65a2 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/E_breve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+breve.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/E_caron.glif b/sources/FixelDisplay-Medium.ufo/glyphs/E_caron.glif new file mode 100644 index 00000000..544ce905 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/E_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+caron.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/E_circumflex.glif b/sources/FixelDisplay-Medium.ufo/glyphs/E_circumflex.glif new file mode 100644 index 00000000..37ac98b5 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/E_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+circumflex.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/E_dieresis.glif b/sources/FixelDisplay-Medium.ufo/glyphs/E_dieresis.glif new file mode 100644 index 00000000..3d6345b6 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/E_dieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+dieresiscase.alt + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/E_dotaccent.glif b/sources/FixelDisplay-Medium.ufo/glyphs/E_dotaccent.glif new file mode 100644 index 00000000..eae0e46b --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/E_dotaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+dotaccent.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/E_f-cy.B_G_R_.glif b/sources/FixelDisplay-Medium.ufo/glyphs/E_f-cy.B_G_R_.glif new file mode 100644 index 00000000..d327057f --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/E_f-cy.B_G_R_.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/E_f-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/E_f-cy.glif new file mode 100644 index 00000000..77800607 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/E_f-cy.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/E_grave.glif b/sources/FixelDisplay-Medium.ufo/glyphs/E_grave.glif new file mode 100644 index 00000000..d9fcb6d9 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/E_grave.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+grave.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/E_iotifiedcyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/E_iotifiedcyr.glif new file mode 100644 index 00000000..0eaa2531 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/E_iotifiedcyr.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + C + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/E_l-cy.B_G_R_.glif b/sources/FixelDisplay-Medium.ufo/glyphs/E_l-cy.B_G_R_.glif new file mode 100644 index 00000000..af4d7abd --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/E_l-cy.B_G_R_.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + A + com.fontlab.metricsRight + l() + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/E_l-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/E_l-cy.glif new file mode 100644 index 00000000..9fe6d8c9 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/E_l-cy.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/E_lS_oft-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/E_lS_oft-cy.glif new file mode 100644 index 00000000..565faf98 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/E_lS_oft-cy.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/E_lhookcyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/E_lhookcyr.glif new file mode 100644 index 00000000..57721090 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/E_lhookcyr.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Л + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/E_lmiddlehookcyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/E_lmiddlehookcyr.glif new file mode 100644 index 00000000..1cba829d --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/E_lmiddlehookcyr.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Shhacyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/E_lsharptailcyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/E_lsharptailcyr.glif new file mode 100644 index 00000000..066b34bc --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/E_lsharptailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Ensharptailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/E_lsmallcyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/E_lsmallcyr.glif new file mode 100644 index 00000000..07f9f077 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/E_lsmallcyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + el-cy.BGR + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/E_ltailcyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/E_ltailcyr.glif new file mode 100644 index 00000000..ee4df1a5 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/E_ltailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/E_m-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/E_m-cy.glif new file mode 100644 index 00000000..a018cf41 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/E_m-cy.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + M + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/E_m-cy.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/E_m-cy.ss01.glif new file mode 100644 index 00000000..23520eb2 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/E_m-cy.ss01.glif @@ -0,0 +1,13 @@ + + + + + + + + + com.fontlab.recipe + M + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/E_mS_oft-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/E_mS_oft-cy.glif new file mode 100644 index 00000000..23a11e9c --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/E_mS_oft-cy.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + M + com.fontlab.metricsRight + Ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/E_macron.glif b/sources/FixelDisplay-Medium.ufo/glyphs/E_macron.glif new file mode 100644 index 00000000..d58ac162 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/E_macron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+macron.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/E_msharptailcyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/E_msharptailcyr.glif new file mode 100644 index 00000000..e885cbb1 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/E_msharptailcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Н + com.fontlab.metricsRight + Ensharptailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/E_n-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/E_n-cy.glif new file mode 100644 index 00000000..e41cbec7 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/E_n-cy.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + H + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/E_ng.glif b/sources/FixelDisplay-Medium.ufo/glyphs/E_ng.glif new file mode 100644 index 00000000..44976987 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/E_ng.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + N + com.fontlab.metricsRight + l() + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/E_ng.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/E_ng.ss01.glif new file mode 100644 index 00000000..b2a6943b --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/E_ng.ss01.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + N.ss01 + com.fontlab.metricsRight + J.ss01 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/E_ngecyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/E_ngecyr.glif new file mode 100644 index 00000000..952c29f7 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/E_ngecyr.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/E_nhookcyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/E_nhookcyr.glif new file mode 100644 index 00000000..56f59a5c --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/E_nhookcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/E_nhookleftcyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/E_nhookleftcyr.glif new file mode 100644 index 00000000..2f3ba3dc --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/E_nhookleftcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + r()-159 + com.fontlab.metricsRight + H + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/E_nmiddlehookcyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/E_nmiddlehookcyr.glif new file mode 100644 index 00000000..0185ecbc --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/E_nmiddlehookcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Shhacyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/E_nsharptailcyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/E_nsharptailcyr.glif new file mode 100644 index 00000000..5e242178 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/E_nsharptailcyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Н + com.fontlab.metricsRight + Д + com.fontlab.recipe + Entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/E_ntailcyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/E_ntailcyr.glif new file mode 100644 index 00000000..942e1fa7 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/E_ntailcyr.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Ц + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/E_ogonek.glif b/sources/FixelDisplay-Medium.ufo/glyphs/E_ogonek.glif new file mode 100644 index 00000000..682de522 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/E_ogonek.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+ogonek + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/E_r-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/E_r-cy.glif new file mode 100644 index 00000000..77d1cdd6 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/E_r-cy.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + P + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/E_reversed-cy.accented.glif b/sources/FixelDisplay-Medium.ufo/glyphs/E_reversed-cy.accented.glif new file mode 100644 index 00000000..88cce508 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/E_reversed-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Э+acute.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/E_reversed-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/E_reversed-cy.glif new file mode 100644 index 00000000..2f372e19 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/E_reversed-cy.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |C + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/E_reverseddieresiscyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/E_reverseddieresiscyr.glif new file mode 100644 index 00000000..d76774a5 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/E_reverseddieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ereversed-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/E_rtickcyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/E_rtickcyr.glif new file mode 100644 index 00000000..2de6f5c3 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/E_rtickcyr.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + P + com.fontlab.metricsRight + P + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/E_s-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/E_s-cy.glif new file mode 100644 index 00000000..6bd6c82d --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/E_s-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/E_stailcyr.B_S_H_.glif b/sources/FixelDisplay-Medium.ufo/glyphs/E_stailcyr.B_S_H_.glif new file mode 100644 index 00000000..715dfbb9 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/E_stailcyr.B_S_H_.glif @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + C + com.fontlab.metricsRight + C + com.fontlab.recipe + C + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/E_stailcyr.C_H_U_.glif b/sources/FixelDisplay-Medium.ufo/glyphs/E_stailcyr.C_H_U_.glif new file mode 100644 index 00000000..ed37579b --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/E_stailcyr.C_H_U_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+cedilla.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/E_stailcyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/E_stailcyr.glif new file mode 100644 index 00000000..0b3e5659 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/E_stailcyr.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + С + com.fontlab.metricsRight + С + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/E_th.glif b/sources/FixelDisplay-Medium.ufo/glyphs/E_th.glif new file mode 100644 index 00000000..607969e3 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/E_th.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + D + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/F_.glif b/sources/FixelDisplay-Medium.ufo/glyphs/F_.glif new file mode 100644 index 00000000..4e6cfa23 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/F_.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/F_itacyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/F_itacyr.glif new file mode 100644 index 00000000..19b33c9a --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/F_itacyr.glif @@ -0,0 +1,78 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + com.fontlab.recipe + Obarcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/G_.glif b/sources/FixelDisplay-Medium.ufo/glyphs/G_.glif new file mode 100644 index 00000000..20a2d9b1 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/G_.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O+18 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/G_.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/G_.ss01.glif new file mode 100644 index 00000000..bcdd9171 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/G_.ss01.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O+10 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/G_acute.glif b/sources/FixelDisplay-Medium.ufo/glyphs/G_acute.glif new file mode 100644 index 00000000..a740f196 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/G_acute.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + G+acute.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/G_acute.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/G_acute.ss01.glif new file mode 100644 index 00000000..0ecfa5b1 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/G_acute.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G.ss01+acute.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/G_breve.glif b/sources/FixelDisplay-Medium.ufo/glyphs/G_breve.glif new file mode 100644 index 00000000..3de7082b --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/G_breve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G+breve.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/G_breve.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/G_breve.ss01.glif new file mode 100644 index 00000000..18727ada --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/G_breve.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G.ss01+breve.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/G_circumflex.glif b/sources/FixelDisplay-Medium.ufo/glyphs/G_circumflex.glif new file mode 100644 index 00000000..a713a955 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/G_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G+circumflex.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/G_circumflex.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/G_circumflex.ss01.glif new file mode 100644 index 00000000..9950328c --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/G_circumflex.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G.ss01+circumflex.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/G_commaaccent.glif b/sources/FixelDisplay-Medium.ufo/glyphs/G_commaaccent.glif new file mode 100644 index 00000000..c0451fd9 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/G_commaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G+commaaccentcomb + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/G_commaaccent.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/G_commaaccent.ss01.glif new file mode 100644 index 00000000..807cee30 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/G_commaaccent.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G.ss01+commaaccentcomb + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/G_dotaccent.glif b/sources/FixelDisplay-Medium.ufo/glyphs/G_dotaccent.glif new file mode 100644 index 00000000..949dbf0a --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/G_dotaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G+dotaccent.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/G_dotaccent.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/G_dotaccent.ss01.glif new file mode 100644 index 00000000..d86f49c3 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/G_dotaccent.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G.ss01+dotaccent.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/G_e-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/G_e-cy.glif new file mode 100644 index 00000000..cc897eb2 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/G_e-cy.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + T + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/G_ehookcyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/G_ehookcyr.glif new file mode 100644 index 00000000..7377390a --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/G_ehookcyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Г + com.fontlab.metricsRight + Tshecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/G_ehookstrokecyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/G_ehookstrokecyr.glif new file mode 100644 index 00000000..b42bf346 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/G_ehookstrokecyr.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Gestrokecyr + com.fontlab.metricsRight + Gestrokecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/G_ermandbls.glif b/sources/FixelDisplay-Medium.ufo/glyphs/G_ermandbls.glif new file mode 100644 index 00000000..d270fdd2 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/G_ermandbls.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + U + com.fontlab.metricsRight + B-5 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/G_estrokecyr.B_S_H_.glif b/sources/FixelDisplay-Medium.ufo/glyphs/G_estrokecyr.B_S_H_.glif new file mode 100644 index 00000000..094e2097 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/G_estrokecyr.B_S_H_.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + F + com.fontlab.metricsRight + Gestrokecyr + com.fontlab.recipe + Gestrokecyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/G_estrokecyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/G_estrokecyr.glif new file mode 100644 index 00000000..aaa78914 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/G_estrokecyr.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + Г + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/G_etailcyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/G_etailcyr.glif new file mode 100644 index 00000000..0b2f979a --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/G_etailcyr.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Г + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/G_heupturn-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/G_heupturn-cy.glif new file mode 100644 index 00000000..a9dbb434 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/G_heupturn-cy.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Г + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/G_jecyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/G_jecyr.glif new file mode 100644 index 00000000..0b271e3e --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/G_jecyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ge-cy+acute.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/H_.glif b/sources/FixelDisplay-Medium.ufo/glyphs/H_.glif new file mode 100644 index 00000000..77b69812 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/H_.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + com.fontlab.metricsRight + I + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/H_a-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/H_a-cy.glif new file mode 100644 index 00000000..59f44c52 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/H_a-cy.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + X + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/H_a-cy.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/H_a-cy.ss01.glif new file mode 100644 index 00000000..6832031a --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/H_a-cy.ss01.glif @@ -0,0 +1,14 @@ + + + + + + + + + + com.fontlab.recipe + X + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/H_aabkhcyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/H_aabkhcyr.glif new file mode 100644 index 00000000..d8fec1a7 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/H_aabkhcyr.glif @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/H_ahookcyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/H_ahookcyr.glif new file mode 100644 index 00000000..a996033a --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/H_ahookcyr.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + X + com.fontlab.metricsRight + X + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/H_ardsign-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/H_ardsign-cy.glif new file mode 100644 index 00000000..6dcd2b06 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/H_ardsign-cy.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + Ь + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/H_astrokecyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/H_astrokecyr.glif new file mode 100644 index 00000000..8bd19456 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/H_astrokecyr.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + X + com.fontlab.metricsRight + X + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/H_bar.glif b/sources/FixelDisplay-Medium.ufo/glyphs/H_bar.glif new file mode 100644 index 00000000..1c31226d --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/H_bar.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + r() + com.fontlab.metricsRight + H + com.schriftgestaltung.Glyphs.rightMetricsKey + H + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/H_circumflex.glif b/sources/FixelDisplay-Medium.ufo/glyphs/H_circumflex.glif new file mode 100644 index 00000000..fad6b96b --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/H_circumflex.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + H+circumflex.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/H_we-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/H_we-cy.glif new file mode 100644 index 00000000..e25e836c --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/H_we-cy.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Iota-cy + com.fontlab.metricsRight + Tshecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/I_-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/I_-cy.glif new file mode 100644 index 00000000..34dfc290 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/I_-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/I_.glif b/sources/FixelDisplay-Medium.ufo/glyphs/I_.glif new file mode 100644 index 00000000..f3425abb --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/I_.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/I_J_.glif b/sources/FixelDisplay-Medium.ufo/glyphs/I_J_.glif new file mode 100644 index 00000000..7fba69dc --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/I_J_.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + I_J + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/I_a-cy.accented.glif b/sources/FixelDisplay-Medium.ufo/glyphs/I_a-cy.accented.glif new file mode 100644 index 00000000..fc6e610d --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/I_a-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Я+acute.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/I_a-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/I_a-cy.glif new file mode 100644 index 00000000..7e3eeb9f --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/I_a-cy.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |R+10 + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/I_a-cy.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/I_a-cy.ss01.glif new file mode 100644 index 00000000..d7e5eb2a --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/I_a-cy.ss01.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/I_acute.glif b/sources/FixelDisplay-Medium.ufo/glyphs/I_acute.glif new file mode 100644 index 00000000..2f340e1b --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/I_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+acute.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/I_breve.glif b/sources/FixelDisplay-Medium.ufo/glyphs/I_breve.glif new file mode 100644 index 00000000..349f5365 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/I_breve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+breve.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/I_circumflex.glif b/sources/FixelDisplay-Medium.ufo/glyphs/I_circumflex.glif new file mode 100644 index 00000000..24015009 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/I_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+circumflex.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/I_dieresis.glif b/sources/FixelDisplay-Medium.ufo/glyphs/I_dieresis.glif new file mode 100644 index 00000000..d68b84c6 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/I_dieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+dieresiscase.alt + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/I_dieresiscyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/I_dieresiscyr.glif new file mode 100644 index 00000000..e3ec0453 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/I_dieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ii-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/I_dotaccent.glif b/sources/FixelDisplay-Medium.ufo/glyphs/I_dotaccent.glif new file mode 100644 index 00000000..4da7ec48 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/I_dotaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+dotaccent.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/I_e-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/I_e-cy.glif new file mode 100644 index 00000000..92df5cf2 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/I_e-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/I_ebrevecyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/I_ebrevecyr.glif new file mode 100644 index 00000000..05a752c6 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/I_ebrevecyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+breve.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/I_egravecyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/I_egravecyr.glif new file mode 100644 index 00000000..d446b8af --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/I_egravecyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+grave.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/I_grave.glif b/sources/FixelDisplay-Medium.ufo/glyphs/I_grave.glif new file mode 100644 index 00000000..ec94518a --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/I_grave.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+grave.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/I_gravecyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/I_gravecyr.glif new file mode 100644 index 00000000..49eed6c9 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/I_gravecyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ii-cy+grave.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/I_i-cy.accented.glif b/sources/FixelDisplay-Medium.ufo/glyphs/I_i-cy.accented.glif new file mode 100644 index 00000000..570bb4bd --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/I_i-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + И+acute.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/I_i-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/I_i-cy.glif new file mode 100644 index 00000000..cfd13ab8 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/I_i-cy.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/I_ishort-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/I_ishort-cy.glif new file mode 100644 index 00000000..55a2d0ff --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/I_ishort-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + uni0418+breve.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/I_macron.glif b/sources/FixelDisplay-Medium.ufo/glyphs/I_macron.glif new file mode 100644 index 00000000..60d3ffde --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/I_macron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+macron.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/I_macroncyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/I_macroncyr.glif new file mode 100644 index 00000000..32aac291 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/I_macroncyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ii-cy+macron.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/I_o-cy.accented.glif b/sources/FixelDisplay-Medium.ufo/glyphs/I_o-cy.accented.glif new file mode 100644 index 00000000..5284e02d --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/I_o-cy.accented.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + com.fontlab.recipe + E+dieresis.case+acute.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/I_o-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/I_o-cy.glif new file mode 100644 index 00000000..29020d4c --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/I_o-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Edieresis + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/I_ogonek.glif b/sources/FixelDisplay-Medium.ufo/glyphs/I_ogonek.glif new file mode 100644 index 00000000..eaeed316 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/I_ogonek.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+ogonek + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/I_ota-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/I_ota-cy.glif new file mode 100644 index 00000000..50b13f08 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/I_ota-cy.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |J + com.fontlab.metricsRight + |J + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/I_otifiedA_-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/I_otifiedA_-cy.glif new file mode 100644 index 00000000..df53aa67 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/I_otifiedA_-cy.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + com.fontlab.metricsRight + A + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/I_shortsharptailcyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/I_shortsharptailcyr.glif new file mode 100644 index 00000000..be27caa6 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/I_shortsharptailcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Й + com.fontlab.metricsRight + Ensharptailcyr + com.fontlab.recipe + Й + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/I_tilde.glif b/sources/FixelDisplay-Medium.ufo/glyphs/I_tilde.glif new file mode 100644 index 00000000..f1ae89cd --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/I_tilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+tilde.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/I_u-cy.accented.glif b/sources/FixelDisplay-Medium.ufo/glyphs/I_u-cy.accented.glif new file mode 100644 index 00000000..d5ae8a0b --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/I_u-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ю+acute.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/I_u-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/I_u-cy.glif new file mode 100644 index 00000000..9f050732 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/I_u-cy.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/I_zhitsacyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/I_zhitsacyr.glif new file mode 100644 index 00000000..466a3b51 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/I_zhitsacyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + V + com.fontlab.metricsRight + + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/I_zhitsagravedblcyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/I_zhitsagravedblcyr.glif new file mode 100644 index 00000000..5c7fc64d --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/I_zhitsagravedblcyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + com.fontlab.metricsLeft + Izhitsacyr + com.fontlab.metricsRight + Izhitsacyr + com.fontlab.recipe + Izhitsacyr+hungarumlaut.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/J_.glif b/sources/FixelDisplay-Medium.ufo/glyphs/J_.glif new file mode 100644 index 00000000..7d017905 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/J_.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + U + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/J_.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/J_.ss01.glif new file mode 100644 index 00000000..2c0adee5 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/J_.ss01.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + U + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/J_circumflex.glif b/sources/FixelDisplay-Medium.ufo/glyphs/J_circumflex.glif new file mode 100644 index 00000000..d78f2bc0 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/J_circumflex.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + J+circumflex.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/J_circumflex.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/J_circumflex.ss01.glif new file mode 100644 index 00000000..5ba6b405 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/J_circumflex.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + J.ss01+circumflex.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/J_ecyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/J_ecyr.glif new file mode 100644 index 00000000..3b9c84c1 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/J_ecyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsLeft + J + com.fontlab.metricsRight + J + com.fontlab.recipe + J + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/K_.glif b/sources/FixelDisplay-Medium.ufo/glyphs/K_.glif new file mode 100644 index 00000000..3f284080 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/K_.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/K_.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/K_.ss01.glif new file mode 100644 index 00000000..15648790 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/K_.ss01.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/K_a-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/K_a-cy.glif new file mode 100644 index 00000000..1235294b --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/K_a-cy.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.recipe + K + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/K_a-cy.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/K_a-cy.ss01.glif new file mode 100644 index 00000000..6132c210 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/K_a-cy.ss01.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.recipe + K + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/K_aaleutcyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/K_aaleutcyr.glif new file mode 100644 index 00000000..ce36c1ef --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/K_aaleutcyr.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + K + com.fontlab.metricsRight + K + com.fontlab.recipe + K + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/K_abashkcyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/K_abashkcyr.glif new file mode 100644 index 00000000..c7318d9a --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/K_abashkcyr.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Hardsign-cy + com.fontlab.metricsRight + K + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/K_ahookcyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/K_ahookcyr.glif new file mode 100644 index 00000000..28289c32 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/K_ahookcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + K + com.fontlab.metricsRight + Djecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/K_astrokecyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/K_astrokecyr.glif new file mode 100644 index 00000000..529fa8db --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/K_astrokecyr.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Yatcyr + com.fontlab.metricsRight + K + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/K_atailcyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/K_atailcyr.glif new file mode 100644 index 00000000..e9e78e84 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/K_atailcyr.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + К-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/K_averticalstrokecyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/K_averticalstrokecyr.glif new file mode 100644 index 00000000..7975b4c9 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/K_averticalstrokecyr.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + K + com.fontlab.metricsRight + Ж + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/K_commaaccent.glif b/sources/FixelDisplay-Medium.ufo/glyphs/K_commaaccent.glif new file mode 100644 index 00000000..c0de0ec3 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/K_commaaccent.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + K+commaaccentcomb + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/K_commaaccent.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/K_commaaccent.ss01.glif new file mode 100644 index 00000000..9d017e88 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/K_commaaccent.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + K.ss01+commaaccentcomb + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/K_jecyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/K_jecyr.glif new file mode 100644 index 00000000..ce649360 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/K_jecyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ka-cy+acute.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/K_oppacyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/K_oppacyr.glif new file mode 100644 index 00000000..93ba0d5c --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/K_oppacyr.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + C-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/K_sicyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/K_sicyr.glif new file mode 100644 index 00000000..fa94e99f --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/K_sicyr.glif @@ -0,0 +1,98 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + З-10 + com.fontlab.metricsRight + З + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/L_.glif b/sources/FixelDisplay-Medium.ufo/glyphs/L_.glif new file mode 100644 index 00000000..37a3e0ab --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/L_.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/L_acute.glif b/sources/FixelDisplay-Medium.ufo/glyphs/L_acute.glif new file mode 100644 index 00000000..dc4d2991 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/L_acute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + L+acute.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/L_caron.glif b/sources/FixelDisplay-Medium.ufo/glyphs/L_caron.glif new file mode 100644 index 00000000..3aa8c7ff --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/L_caron.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + com.fontlab.recipe + L+caron.salt + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/L_commaaccent.glif b/sources/FixelDisplay-Medium.ufo/glyphs/L_commaaccent.glif new file mode 100644 index 00000000..ddafd12e --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/L_commaaccent.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + L+commaaccentcomb + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/L_dot.glif b/sources/FixelDisplay-Medium.ufo/glyphs/L_dot.glif new file mode 100644 index 00000000..5bc6ef29 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/L_dot.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + com.fontlab.metricsRight + L + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/L_hacyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/L_hacyr.glif new file mode 100644 index 00000000..7c466c4d --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/L_hacyr.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + X + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/L_jecyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/L_jecyr.glif new file mode 100644 index 00000000..733bec62 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/L_jecyr.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Ь + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/L_jekomicyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/L_jekomicyr.glif new file mode 100644 index 00000000..c773f773 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/L_jekomicyr.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Njekomicyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/L_slash.glif b/sources/FixelDisplay-Medium.ufo/glyphs/L_slash.glif new file mode 100644 index 00000000..3df4aa8a --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/L_slash.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + L-80 + com.fontlab.metricsRight + L + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/M_.glif b/sources/FixelDisplay-Medium.ufo/glyphs/M_.glif new file mode 100644 index 00000000..537cbde1 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/M_.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/M_.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/M_.ss01.glif new file mode 100644 index 00000000..61c44156 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/M_.ss01.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H-25 + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/N_.glif b/sources/FixelDisplay-Medium.ufo/glyphs/N_.glif new file mode 100644 index 00000000..b43310a8 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/N_.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/N_.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/N_.ss01.glif new file mode 100644 index 00000000..4791ef95 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/N_.ss01.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H-10 + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/N_U_L_L_.glif b/sources/FixelDisplay-Medium.ufo/glyphs/N_U_L_L_.glif new file mode 100644 index 00000000..1ad177ae --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/N_U_L_L_.glif @@ -0,0 +1,4 @@ + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/N_acute.glif b/sources/FixelDisplay-Medium.ufo/glyphs/N_acute.glif new file mode 100644 index 00000000..009704d5 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/N_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N+acute.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/N_acute.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/N_acute.ss01.glif new file mode 100644 index 00000000..725ee376 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/N_acute.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N.ss01+acute.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/N_caron.glif b/sources/FixelDisplay-Medium.ufo/glyphs/N_caron.glif new file mode 100644 index 00000000..35d002d4 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/N_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N+caron.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/N_caron.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/N_caron.ss01.glif new file mode 100644 index 00000000..1dbb2880 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/N_caron.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N.ss01+caron.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/N_commaaccent.glif b/sources/FixelDisplay-Medium.ufo/glyphs/N_commaaccent.glif new file mode 100644 index 00000000..9b32c810 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/N_commaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N+commaaccentcomb + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/N_commaaccent.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/N_commaaccent.ss01.glif new file mode 100644 index 00000000..1c6ffd80 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/N_commaaccent.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N.ss01+commaaccentcomb + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/N_jecyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/N_jecyr.glif new file mode 100644 index 00000000..5a60ad4d --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/N_jecyr.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Н + com.fontlab.metricsRight + Ь + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/N_jekomicyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/N_jekomicyr.glif new file mode 100644 index 00000000..eeb2eaa4 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/N_jekomicyr.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + |u + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/N_tilde.glif b/sources/FixelDisplay-Medium.ufo/glyphs/N_tilde.glif new file mode 100644 index 00000000..35ac293f --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/N_tilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N+tilde.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/N_tilde.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/N_tilde.ss01.glif new file mode 100644 index 00000000..2ec3ea4f --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/N_tilde.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N.ss01+tilde.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/O_-cy.accented.glif b/sources/FixelDisplay-Medium.ufo/glyphs/O_-cy.accented.glif new file mode 100644 index 00000000..e29471a8 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/O_-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+acute.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/O_-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/O_-cy.glif new file mode 100644 index 00000000..73189345 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/O_-cy.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/O_.glif b/sources/FixelDisplay-Medium.ufo/glyphs/O_.glif new file mode 100644 index 00000000..5974d387 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/O_.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/O_B_inocular-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/O_B_inocular-cy.glif new file mode 100644 index 00000000..d9d68418 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/O_B_inocular-cy.glif @@ -0,0 +1,81 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/O_D_oubleM_onocular-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/O_D_oubleM_onocular-cy.glif new file mode 100644 index 00000000..0dc043aa --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/O_D_oubleM_onocular-cy.glif @@ -0,0 +1,119 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + com.fontlab.recipe + DoubleO-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/O_E_.glif b/sources/FixelDisplay-Medium.ufo/glyphs/O_E_.glif new file mode 100644 index 00000000..c4098d21 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/O_E_.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + E + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/O_M_onocular-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/O_M_onocular-cy.glif new file mode 100644 index 00000000..9fa6c65a --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/O_M_onocular-cy.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/O_acute.glif b/sources/FixelDisplay-Medium.ufo/glyphs/O_acute.glif new file mode 100644 index 00000000..40c22e4e --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/O_acute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+acute.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/O_barcyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/O_barcyr.glif new file mode 100644 index 00000000..ccc44ec8 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/O_barcyr.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + r() + com.fontlab.metricsRight + O + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/O_bardieresiscyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/O_bardieresiscyr.glif new file mode 100644 index 00000000..c25dd960 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/O_bardieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Obarcyr+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/O_breve.glif b/sources/FixelDisplay-Medium.ufo/glyphs/O_breve.glif new file mode 100644 index 00000000..962595e1 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/O_breve.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+breve.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/O_circumflex.glif b/sources/FixelDisplay-Medium.ufo/glyphs/O_circumflex.glif new file mode 100644 index 00000000..d97df022 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/O_circumflex.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+circumflex.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/O_dieresis.glif b/sources/FixelDisplay-Medium.ufo/glyphs/O_dieresis.glif new file mode 100644 index 00000000..bd72a475 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/O_dieresis.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+dieresis.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/O_dieresiscyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/O_dieresiscyr.glif new file mode 100644 index 00000000..48bb0f3d --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/O_dieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/O_grave.glif b/sources/FixelDisplay-Medium.ufo/glyphs/O_grave.glif new file mode 100644 index 00000000..bb44be3c --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/O_grave.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+grave.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/O_hungarumlaut.glif b/sources/FixelDisplay-Medium.ufo/glyphs/O_hungarumlaut.glif new file mode 100644 index 00000000..0307e582 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/O_hungarumlaut.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+hungarumlaut.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/O_macron.glif b/sources/FixelDisplay-Medium.ufo/glyphs/O_macron.glif new file mode 100644 index 00000000..1b130188 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/O_macron.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+macron.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/O_mega.glif b/sources/FixelDisplay-Medium.ufo/glyphs/O_mega.glif new file mode 100644 index 00000000..382a4ae2 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/O_mega.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O+10 + com.fontlab.metricsRight + O+10 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/O_megaB_road-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/O_megaB_road-cy.glif new file mode 100644 index 00000000..06628717 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/O_megaB_road-cy.glif @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O+10 + com.fontlab.metricsRight + O+10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/O_megacyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/O_megacyr.glif new file mode 100644 index 00000000..46f69254 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/O_megacyr.glif @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O+10 + com.fontlab.metricsRight + O+10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/O_megaroundcyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/O_megaroundcyr.glif new file mode 100644 index 00000000..45f4f3e6 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/O_megaroundcyr.glif @@ -0,0 +1,81 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/O_megatitlocyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/O_megatitlocyr.glif new file mode 100644 index 00000000..87c56b3c --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/O_megatitlocyr.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O+10 + com.fontlab.metricsRight + O+10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/O_slash.glif b/sources/FixelDisplay-Medium.ufo/glyphs/O_slash.glif new file mode 100644 index 00000000..890097c9 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/O_slash.glif @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/O_slashacute.glif b/sources/FixelDisplay-Medium.ufo/glyphs/O_slashacute.glif new file mode 100644 index 00000000..c72e047b --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/O_slashacute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Oslash+acute.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/O_tcyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/O_tcyr.glif new file mode 100644 index 00000000..ba662d86 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/O_tcyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Omegacyr+uni2DEE.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/O_tilde.glif b/sources/FixelDisplay-Medium.ufo/glyphs/O_tilde.glif new file mode 100644 index 00000000..d91d9fb9 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/O_tilde.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+tilde.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/P_.glif b/sources/FixelDisplay-Medium.ufo/glyphs/P_.glif new file mode 100644 index 00000000..344bde73 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/P_.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/P_alochkacyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/P_alochkacyr.glif new file mode 100644 index 00000000..abf8ee12 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/P_alochkacyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/P_e-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/P_e-cy.glif new file mode 100644 index 00000000..36f11a53 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/P_e-cy.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/P_ehookcyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/P_ehookcyr.glif new file mode 100644 index 00000000..8b88f080 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/P_ehookcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + П + com.fontlab.metricsRight + Shhacyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/P_etailcyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/P_etailcyr.glif new file mode 100644 index 00000000..56c77378 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/P_etailcyr.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/P_sicyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/P_sicyr.glif new file mode 100644 index 00000000..dcfcbe34 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/P_sicyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + U-20 + com.fontlab.metricsRight + U-20 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/Q_.glif b/sources/FixelDisplay-Medium.ufo/glyphs/Q_.glif new file mode 100644 index 00000000..4899a284 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/Q_.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/Q_.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/Q_.ss01.glif new file mode 100644 index 00000000..6058cc78 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/Q_.ss01.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/Q_acyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/Q_acyr.glif new file mode 100644 index 00000000..8cc50693 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/Q_acyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Q + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/R_.glif b/sources/FixelDisplay-Medium.ufo/glyphs/R_.glif new file mode 100644 index 00000000..319ec761 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/R_.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/R_acute.glif b/sources/FixelDisplay-Medium.ufo/glyphs/R_acute.glif new file mode 100644 index 00000000..69f408ca --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/R_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + R+acute.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/R_caron.glif b/sources/FixelDisplay-Medium.ufo/glyphs/R_caron.glif new file mode 100644 index 00000000..67447990 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/R_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + R+caron.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/R_commaaccent.glif b/sources/FixelDisplay-Medium.ufo/glyphs/R_commaaccent.glif new file mode 100644 index 00000000..9ad07433 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/R_commaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + R+commaaccentcomb + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/R_eversedzecyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/R_eversedzecyr.glif new file mode 100644 index 00000000..3df53a91 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/R_eversedzecyr.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + + com.fontlab.metricsRight + + com.fontlab.recipe + З + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/R_hacyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/R_hacyr.glif new file mode 100644 index 00000000..ed93816b --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/R_hacyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + P + com.fontlab.metricsRight + X + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/S_.glif b/sources/FixelDisplay-Medium.ufo/glyphs/S_.glif new file mode 100644 index 00000000..1d57e4a7 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/S_.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/S_acute.glif b/sources/FixelDisplay-Medium.ufo/glyphs/S_acute.glif new file mode 100644 index 00000000..e1c71799 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/S_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + S+acute.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/S_caron.glif b/sources/FixelDisplay-Medium.ufo/glyphs/S_caron.glif new file mode 100644 index 00000000..66113f7e --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/S_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + S+caron.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/S_cedilla.glif b/sources/FixelDisplay-Medium.ufo/glyphs/S_cedilla.glif new file mode 100644 index 00000000..597930b5 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/S_cedilla.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + S+cedilla + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/S_chwa.glif b/sources/FixelDisplay-Medium.ufo/glyphs/S_chwa.glif new file mode 100644 index 00000000..dec670c2 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/S_chwa.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Schwacyr + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/S_chwacyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/S_chwacyr.glif new file mode 100644 index 00000000..ea65894e --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/S_chwacyr.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O-10 + com.fontlab.metricsRight + O + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/S_chwadieresiscyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/S_chwadieresiscyr.glif new file mode 100644 index 00000000..71b97030 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/S_chwadieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Schwacyr+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/S_circumflex.glif b/sources/FixelDisplay-Medium.ufo/glyphs/S_circumflex.glif new file mode 100644 index 00000000..de5dce79 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/S_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + S+circumflex.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/S_commaaccent.glif b/sources/FixelDisplay-Medium.ufo/glyphs/S_commaaccent.glif new file mode 100644 index 00000000..48cba4ca --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/S_commaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + S+commaaccentcomb + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/S_emisoftcyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/S_emisoftcyr.glif new file mode 100644 index 00000000..45a87c49 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/S_emisoftcyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Yat + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/S_ha-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/S_ha-cy.glif new file mode 100644 index 00000000..00699ebe --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/S_ha-cy.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/S_hcha-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/S_hcha-cy.glif new file mode 100644 index 00000000..9a8a80f5 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/S_hcha-cy.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Д + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/S_hhacyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/S_hhacyr.glif new file mode 100644 index 00000000..dea3d49b --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/S_hhacyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.metricsLeft + Н + com.fontlab.metricsRight + Tshecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/S_hhatailcyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/S_hhatailcyr.glif new file mode 100644 index 00000000..1b89bd44 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/S_hhatailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/S_hwe-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/S_hwe-cy.glif new file mode 100644 index 00000000..3cbf6a79 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/S_hwe-cy.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Щ + com.fontlab.metricsRight + Щ-20 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/S_jekomicyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/S_jekomicyr.glif new file mode 100644 index 00000000..0a5239f5 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/S_jekomicyr.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + |Schwa + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/S_oftsign-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/S_oftsign-cy.glif new file mode 100644 index 00000000..85af46d6 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/S_oftsign-cy.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + P + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/T_.glif b/sources/FixelDisplay-Medium.ufo/glyphs/T_.glif new file mode 100644 index 00000000..68a35b15 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/T_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/T_bar.glif b/sources/FixelDisplay-Medium.ufo/glyphs/T_bar.glif new file mode 100644 index 00000000..c41cbabd --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/T_bar.glif @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/T_caron.glif b/sources/FixelDisplay-Medium.ufo/glyphs/T_caron.glif new file mode 100644 index 00000000..4c9293d1 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/T_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + T+caron.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/T_cedilla.glif b/sources/FixelDisplay-Medium.ufo/glyphs/T_cedilla.glif new file mode 100644 index 00000000..b2462903 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/T_cedilla.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + T+cedilla + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/T_che-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/T_che-cy.glif new file mode 100644 index 00000000..7ad6f281 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/T_che-cy.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Tetsecyr-20 + com.fontlab.metricsRight + Ч + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/T_commaaccent.glif b/sources/FixelDisplay-Medium.ufo/glyphs/T_commaaccent.glif new file mode 100644 index 00000000..382c8f32 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/T_commaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + T+commaaccentcomb + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/T_e-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/T_e-cy.glif new file mode 100644 index 00000000..040e08fe --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/T_e-cy.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + com.fontlab.recipe + T + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/T_eW_ithM_iddleH_ook-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/T_eW_ithM_iddleH_ook-cy.glif new file mode 100644 index 00000000..39482ea2 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/T_eW_ithM_iddleH_ook-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Djecyr + com.fontlab.metricsRight + Gehookcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/T_etailcyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/T_etailcyr.glif new file mode 100644 index 00000000..7d6c65df --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/T_etailcyr.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/T_etsecyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/T_etsecyr.glif new file mode 100644 index 00000000..b2cd511c --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/T_etsecyr.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Tshecyr + com.fontlab.metricsRight + Ц + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/T_horn.glif b/sources/FixelDisplay-Medium.ufo/glyphs/T_horn.glif new file mode 100644 index 00000000..c4a9173d --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/T_horn.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + P + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/T_jekomicyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/T_jekomicyr.glif new file mode 100644 index 00000000..0f5e2e67 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/T_jekomicyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + Njekomicyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/T_se-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/T_se-cy.glif new file mode 100644 index 00000000..6e16b6ce --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/T_se-cy.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Д + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/T_seR_eversed-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/T_seR_eversed-cy.glif new file mode 100644 index 00000000..ce704474 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/T_seR_eversed-cy.glif @@ -0,0 +1,20 @@ + + + + + + + + + + com.fontlab.metricsLeft + + com.fontlab.metricsRight + H + com.fontlab.recipe + Ц + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/T_shecyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/T_shecyr.glif new file mode 100644 index 00000000..b07ecd51 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/T_shecyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + n + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/T_sse-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/T_sse-cy.glif new file mode 100644 index 00000000..98e0fa67 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/T_sse-cy.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + T + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/T_swe-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/T_swe-cy.glif new file mode 100644 index 00000000..fb9ad910 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/T_swe-cy.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Shwe-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/T_we-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/T_we-cy.glif new file mode 100644 index 00000000..33b26e6e --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/T_we-cy.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + T + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/U_-cy.accented.glif b/sources/FixelDisplay-Medium.ufo/glyphs/U_-cy.accented.glif new file mode 100644 index 00000000..4d219464 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/U_-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + У+acute.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/U_-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/U_-cy.glif new file mode 100644 index 00000000..e7f88d02 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/U_-cy.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Y+10 + com.fontlab.metricsRight + Y+5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/U_-cy.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/U_-cy.ss01.glif new file mode 100644 index 00000000..f6cf1f5c --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/U_-cy.ss01.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/U_.glif b/sources/FixelDisplay-Medium.ufo/glyphs/U_.glif new file mode 100644 index 00000000..aaf22317 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/U_.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H-10 + com.fontlab.metricsRight + H-10 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/U_acute.glif b/sources/FixelDisplay-Medium.ufo/glyphs/U_acute.glif new file mode 100644 index 00000000..a9122b2a --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/U_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+acute.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/U_acutedblcyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/U_acutedblcyr.glif new file mode 100644 index 00000000..5f1407c9 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/U_acutedblcyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U-cy+hungarumlaut.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/U_breve.glif b/sources/FixelDisplay-Medium.ufo/glyphs/U_breve.glif new file mode 100644 index 00000000..b79892ad --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/U_breve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+breve.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/U_circumflex.glif b/sources/FixelDisplay-Medium.ufo/glyphs/U_circumflex.glif new file mode 100644 index 00000000..6036cd59 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/U_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+circumflex.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/U_dieresis.glif b/sources/FixelDisplay-Medium.ufo/glyphs/U_dieresis.glif new file mode 100644 index 00000000..711d1be8 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/U_dieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+dieresis.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/U_dieresiscyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/U_dieresiscyr.glif new file mode 100644 index 00000000..98a46799 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/U_dieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/U_grave.glif b/sources/FixelDisplay-Medium.ufo/glyphs/U_grave.glif new file mode 100644 index 00000000..c449ac21 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/U_grave.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+grave.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/U_hungarumlaut.glif b/sources/FixelDisplay-Medium.ufo/glyphs/U_hungarumlaut.glif new file mode 100644 index 00000000..15dde036 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/U_hungarumlaut.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+hungarumlaut.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/U_kM_onograph-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/U_kM_onograph-cy.glif new file mode 100644 index 00000000..2a7afd25 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/U_kM_onograph-cy.glif @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/U_kcyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/U_kcyr.glif new file mode 100644 index 00000000..d86665f8 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/U_kcyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + y + com.fontlab.recipe + О_у + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/U_macron.glif b/sources/FixelDisplay-Medium.ufo/glyphs/U_macron.glif new file mode 100644 index 00000000..00bca55c --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/U_macron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+macron.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/U_macroncyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/U_macroncyr.glif new file mode 100644 index 00000000..0a5b0812 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/U_macroncyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U-cy+macron.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/U_ogonek.glif b/sources/FixelDisplay-Medium.ufo/glyphs/U_ogonek.glif new file mode 100644 index 00000000..a1af3852 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/U_ogonek.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + U+ogonek + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/U_ring.glif b/sources/FixelDisplay-Medium.ufo/glyphs/U_ring.glif new file mode 100644 index 00000000..be4bf3c4 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/U_ring.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+ring.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/U_short-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/U_short-cy.glif new file mode 100644 index 00000000..8568851e --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/U_short-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ucyr+breve.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/U_short-cy.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/U_short-cy.ss01.glif new file mode 100644 index 00000000..e8f579e6 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/U_short-cy.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ucyr.ss01+breve.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/U_straightcyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/U_straightcyr.glif new file mode 100644 index 00000000..a046af94 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/U_straightcyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsRight + Y + com.fontlab.recipe + Y + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/U_straightstrokecyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/U_straightstrokecyr.glif new file mode 100644 index 00000000..e1370bb7 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/U_straightstrokecyr.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/U_tilde.glif b/sources/FixelDisplay-Medium.ufo/glyphs/U_tilde.glif new file mode 100644 index 00000000..5a4bab2c --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/U_tilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+tilde.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/V_.glif b/sources/FixelDisplay-Medium.ufo/glyphs/V_.glif new file mode 100644 index 00000000..60d0b714 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/V_.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/V_.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/V_.ss01.glif new file mode 100644 index 00000000..969e2f08 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/V_.ss01.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/V_e-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/V_e-cy.glif new file mode 100644 index 00000000..c3285b79 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/V_e-cy.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + B + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/W_.glif b/sources/FixelDisplay-Medium.ufo/glyphs/W_.glif new file mode 100644 index 00000000..34f56a50 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/W_.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/W_.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/W_.ss01.glif new file mode 100644 index 00000000..01b8acb8 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/W_.ss01.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |A + com.fontlab.metricsRight + |A + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/W_acute.glif b/sources/FixelDisplay-Medium.ufo/glyphs/W_acute.glif new file mode 100644 index 00000000..3ea2d18e --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/W_acute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W+acute.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/W_acute.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/W_acute.ss01.glif new file mode 100644 index 00000000..63b31d1f --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/W_acute.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W.ss01+acute.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/W_circumflex.glif b/sources/FixelDisplay-Medium.ufo/glyphs/W_circumflex.glif new file mode 100644 index 00000000..e6e59fe1 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/W_circumflex.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W+circumflex.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/W_circumflex.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/W_circumflex.ss01.glif new file mode 100644 index 00000000..ee0b9199 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/W_circumflex.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W.ss01+circumflex.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/W_dieresis.glif b/sources/FixelDisplay-Medium.ufo/glyphs/W_dieresis.glif new file mode 100644 index 00000000..37742e47 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/W_dieresis.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + W+dieresis.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/W_dieresis.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/W_dieresis.ss01.glif new file mode 100644 index 00000000..bf47a552 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/W_dieresis.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W.ss01+dieresis.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/W_ecyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/W_ecyr.glif new file mode 100644 index 00000000..acd1f197 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/W_ecyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/W_grave.glif b/sources/FixelDisplay-Medium.ufo/glyphs/W_grave.glif new file mode 100644 index 00000000..93f59513 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/W_grave.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W+grave.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/W_grave.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/W_grave.ss01.glif new file mode 100644 index 00000000..f23dd35c --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/W_grave.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W.ss01+grave.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/X_.glif b/sources/FixelDisplay-Medium.ufo/glyphs/X_.glif new file mode 100644 index 00000000..a490a289 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/X_.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/X_.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/X_.ss01.glif new file mode 100644 index 00000000..2992b60f --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/X_.ss01.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/X_atailcyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/X_atailcyr.glif new file mode 100644 index 00000000..37c7dacc --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/X_atailcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + X + com.fontlab.metricsRight + Katailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/Y_.glif b/sources/FixelDisplay-Medium.ufo/glyphs/Y_.glif new file mode 100644 index 00000000..19c61e11 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/Y_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/Y_.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/Y_.ss01.glif new file mode 100644 index 00000000..c8ded082 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/Y_.ss01.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/Y_acute.glif b/sources/FixelDisplay-Medium.ufo/glyphs/Y_acute.glif new file mode 100644 index 00000000..11ffdfa7 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/Y_acute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y+acute.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/Y_acute.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/Y_acute.ss01.glif new file mode 100644 index 00000000..e7f5c885 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/Y_acute.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y.ss01+acute.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/Y_aecyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/Y_aecyr.glif new file mode 100644 index 00000000..5e81acca --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/Y_aecyr.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Я + com.fontlab.metricsRight + E + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/Y_atI_otified-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/Y_atI_otified-cy.glif new file mode 100644 index 00000000..548bd640 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/Y_atI_otified-cy.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + com.fontlab.metricsRight + Yatcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/Y_atcyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/Y_atcyr.glif new file mode 100644 index 00000000..ac54a901 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/Y_atcyr.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Т + com.fontlab.metricsRight + Ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/Y_circumflex.glif b/sources/FixelDisplay-Medium.ufo/glyphs/Y_circumflex.glif new file mode 100644 index 00000000..46371dd6 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/Y_circumflex.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y+circumflex.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/Y_circumflex.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/Y_circumflex.ss01.glif new file mode 100644 index 00000000..c1e49588 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/Y_circumflex.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y.ss01+circumflex.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/Y_dieresis.glif b/sources/FixelDisplay-Medium.ufo/glyphs/Y_dieresis.glif new file mode 100644 index 00000000..f9ef2bd5 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/Y_dieresis.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y+dieresis.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/Y_dieresis.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/Y_dieresis.ss01.glif new file mode 100644 index 00000000..044149d0 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/Y_dieresis.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y.ss01+dieresis.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/Y_erN_eutral-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/Y_erN_eutral-cy.glif new file mode 100644 index 00000000..50369eff --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/Y_erN_eutral-cy.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Hardsign-cy + com.fontlab.metricsRight + Ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/Y_eru-cy.accented.glif b/sources/FixelDisplay-Medium.ufo/glyphs/Y_eru-cy.accented.glif new file mode 100644 index 00000000..d522b075 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/Y_eru-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ы+acute.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/Y_eru-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/Y_eru-cy.glif new file mode 100644 index 00000000..b48547f7 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/Y_eru-cy.glif @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/Y_eru-cymacron.glif b/sources/FixelDisplay-Medium.ufo/glyphs/Y_eru-cymacron.glif new file mode 100644 index 00000000..013cb4b5 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/Y_eru-cymacron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ы+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/Y_eruB_ackY_er-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/Y_eruB_ackY_er-cy.glif new file mode 100644 index 00000000..3b4b926e --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/Y_eruB_ackY_er-cy.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Hardsign + com.fontlab.metricsRight + I + com.fontlab.recipe + Hardsign-cy_I + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/Y_i-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/Y_i-cy.glif new file mode 100644 index 00000000..cc7b9dfd --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/Y_i-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Idieresis + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/Y_longdieresiscyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/Y_longdieresiscyr.glif new file mode 100644 index 00000000..3e7d413b --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/Y_longdieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Yeru-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/Y_n-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/Y_n-cy.glif new file mode 100644 index 00000000..08baeadb --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/Y_n-cy.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |Izhitsa + com.fontlab.metricsRight + |Izhitsa + com.fontlab.recipe + Izhitsa + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/Y_uR_eversed-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/Y_uR_eversed-cy.glif new file mode 100644 index 00000000..a38bdd13 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/Y_uR_eversed-cy.glif @@ -0,0 +1,20 @@ + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + H + com.fontlab.recipe + Ю + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/Y_usB_lended-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/Y_usB_lended-cy.glif new file mode 100644 index 00000000..613c2e52 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/Y_usB_lended-cy.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Yusbigcyr + com.fontlab.metricsRight + Yusbigcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/Y_usC_losedlittle-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/Y_usC_losedlittle-cy.glif new file mode 100644 index 00000000..fc5bfa90 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/Y_usC_losedlittle-cy.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + A + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/Y_usbigcyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/Y_usbigcyr.glif new file mode 100644 index 00000000..7c1111bf --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/Y_usbigcyr.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ж + com.fontlab.metricsRight + Ж + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/Y_usbigiotifiedcyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/Y_usbigiotifiedcyr.glif new file mode 100644 index 00000000..1f10a54e --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/Y_usbigiotifiedcyr.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + Ж + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/Y_usiotifiedC_losedL_ittle-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/Y_usiotifiedC_losedL_ittle-cy.glif new file mode 100644 index 00000000..65f8a837 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/Y_usiotifiedC_losedL_ittle-cy.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + A + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/Y_uslittlecyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/Y_uslittlecyr.glif new file mode 100644 index 00000000..2b2ebceb --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/Y_uslittlecyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + А-5 + com.fontlab.metricsRight + А-5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/Y_uslittleiotifiedcyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/Y_uslittleiotifiedcyr.glif new file mode 100644 index 00000000..44eac377 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/Y_uslittleiotifiedcyr.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + А-5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/Z_.glif b/sources/FixelDisplay-Medium.ufo/glyphs/Z_.glif new file mode 100644 index 00000000..364f84b7 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/Z_.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/Z_.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/Z_.ss01.glif new file mode 100644 index 00000000..2c66582d --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/Z_.ss01.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/Z_acute.glif b/sources/FixelDisplay-Medium.ufo/glyphs/Z_acute.glif new file mode 100644 index 00000000..d70cb445 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/Z_acute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Z+acute.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/Z_acute.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/Z_acute.ss01.glif new file mode 100644 index 00000000..711b9307 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/Z_acute.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Z.ss01+acute.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/Z_caron.glif b/sources/FixelDisplay-Medium.ufo/glyphs/Z_caron.glif new file mode 100644 index 00000000..aac427aa --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/Z_caron.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Z+caron.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/Z_caron.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/Z_caron.ss01.glif new file mode 100644 index 00000000..b173610b --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/Z_caron.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Z.ss01+caron.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/Z_dotaccent.glif b/sources/FixelDisplay-Medium.ufo/glyphs/Z_dotaccent.glif new file mode 100644 index 00000000..9206a5d1 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/Z_dotaccent.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Z+dotaccent.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/Z_dotaccent.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/Z_dotaccent.ss01.glif new file mode 100644 index 00000000..7e605ec8 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/Z_dotaccent.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Z.ss01+dotaccent.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/Z_e-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/Z_e-cy.glif new file mode 100644 index 00000000..23cd55f0 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/Z_e-cy.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |C + com.fontlab.metricsRight + B + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/Z_edieresiscyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/Z_edieresiscyr.glif new file mode 100644 index 00000000..0267b55f --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/Z_edieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ze-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/Z_emlya-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/Z_emlya-cy.glif new file mode 100644 index 00000000..fdcc07da --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/Z_emlya-cy.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Z-10 + com.fontlab.metricsRight + Z + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/Z_etailcyr.B_S_H_.glif b/sources/FixelDisplay-Medium.ufo/glyphs/Z_etailcyr.B_S_H_.glif new file mode 100644 index 00000000..4f4754d5 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/Z_etailcyr.B_S_H_.glif @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + З + com.fontlab.metricsRight + З + com.fontlab.recipe + Zetailcyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/Z_etailcyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/Z_etailcyr.glif new file mode 100644 index 00000000..9b973532 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/Z_etailcyr.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + З + com.fontlab.metricsRight + З + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/Z_he-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/Z_he-cy.glif new file mode 100644 index 00000000..5b9e184a --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/Z_he-cy.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |K + com.fontlab.metricsRight + K + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/Z_he-cy.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/Z_he-cy.ss01.glif new file mode 100644 index 00000000..405cc156 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/Z_he-cy.ss01.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |K + com.fontlab.metricsRight + K + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/Z_hebrevecyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/Z_hebrevecyr.glif new file mode 100644 index 00000000..55e22293 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/Z_hebrevecyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Zhe-cy+breve.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/Z_hedieresiscyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/Z_hedieresiscyr.glif new file mode 100644 index 00000000..8bff4b88 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/Z_hedieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Zhe-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/Z_hetailcyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/Z_hetailcyr.glif new file mode 100644 index 00000000..68810583 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/Z_hetailcyr.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ж + com.fontlab.metricsRight + Katailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/Z_hwe-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/Z_hwe-cy.glif new file mode 100644 index 00000000..b7d2068c --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/Z_hwe-cy.glif @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + З + com.fontlab.metricsRight + Ж + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/Z_jekomicyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/Z_jekomicyr.glif new file mode 100644 index 00000000..d7b76f51 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/Z_jekomicyr.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Dzjekomicyr + com.fontlab.metricsRight + Njekomicyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/_notdef.glif b/sources/FixelDisplay-Medium.ufo/glyphs/_notdef.glif new file mode 100644 index 00000000..c780c166 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/_notdef.glif @@ -0,0 +1,178 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + =55 + com.schriftgestaltung.Glyphs.rightMetricsKey + =55 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/_perc-circule.glif b/sources/FixelDisplay-Medium.ufo/glyphs/_perc-circule.glif new file mode 100644 index 00000000..ff9e6501 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/_perc-circule.glif @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.schriftgestaltung.Glyphs.Export + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/a-cy.accented.glif b/sources/FixelDisplay-Medium.ufo/glyphs/a-cy.accented.glif new file mode 100644 index 00000000..2e628137 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/a-cy.accented.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+acute + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/a-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/a-cy.glif new file mode 100644 index 00000000..6b43d2d1 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/a-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/a-cy.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/a-cy.ss01.glif new file mode 100644 index 00000000..8fa7a217 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/a-cy.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/a.glif b/sources/FixelDisplay-Medium.ufo/glyphs/a.glif new file mode 100644 index 00000000..918edc96 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/a.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + n-10 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/a.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/a.ss01.glif new file mode 100644 index 00000000..eb1b806f --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/a.ss01.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/aacute.glif b/sources/FixelDisplay-Medium.ufo/glyphs/aacute.glif new file mode 100644 index 00000000..9f61dcd7 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/aacute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+acute + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/aacute.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/aacute.ss01.glif new file mode 100644 index 00000000..6df046a2 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/aacute.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+acute + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/abreve.glif b/sources/FixelDisplay-Medium.ufo/glyphs/abreve.glif new file mode 100644 index 00000000..33664592 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/abreve.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+breve + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/abreve.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/abreve.ss01.glif new file mode 100644 index 00000000..831dc051 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/abreve.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+breve + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/abrevecyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/abrevecyr.glif new file mode 100644 index 00000000..8a06d208 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/abrevecyr.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+breve + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/acaron.glif b/sources/FixelDisplay-Medium.ufo/glyphs/acaron.glif new file mode 100644 index 00000000..3aa959ea --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/acaron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+caron + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/acircumflex.glif b/sources/FixelDisplay-Medium.ufo/glyphs/acircumflex.glif new file mode 100644 index 00000000..0f376e2d --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/acircumflex.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+circumflex + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/acircumflex.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/acircumflex.ss01.glif new file mode 100644 index 00000000..d0c29496 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/acircumflex.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+circumflex + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/acute.case.glif b/sources/FixelDisplay-Medium.ufo/glyphs/acute.case.glif new file mode 100644 index 00000000..5f8bdcca --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/acute.case.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/acute.glif b/sources/FixelDisplay-Medium.ufo/glyphs/acute.glif new file mode 100644 index 00000000..097ab289 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/acute.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/adieresis.glif b/sources/FixelDisplay-Medium.ufo/glyphs/adieresis.glif new file mode 100644 index 00000000..689d52ba --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/adieresis.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+dieresis + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/adieresis.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/adieresis.ss01.glif new file mode 100644 index 00000000..95409733 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/adieresis.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+dieresis + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/adieresiscyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/adieresiscyr.glif new file mode 100644 index 00000000..8ffaf157 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/adieresiscyr.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/ae.glif b/sources/FixelDisplay-Medium.ufo/glyphs/ae.glif new file mode 100644 index 00000000..bd7b78b4 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/ae.glif @@ -0,0 +1,101 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + a + com.fontlab.metricsRight + e + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/ae.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/ae.ss01.glif new file mode 100644 index 00000000..1346eb1d --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/ae.ss01.glif @@ -0,0 +1,96 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + a + com.fontlab.metricsRight + e.ss01 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/aeacute.glif b/sources/FixelDisplay-Medium.ufo/glyphs/aeacute.glif new file mode 100644 index 00000000..a5db89fa --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/aeacute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ae+acute + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/agrave.glif b/sources/FixelDisplay-Medium.ufo/glyphs/agrave.glif new file mode 100644 index 00000000..66ffea2f --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/agrave.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+grave + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/agrave.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/agrave.ss01.glif new file mode 100644 index 00000000..61ad04ea --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/agrave.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+grave + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/aiecyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/aiecyr.glif new file mode 100644 index 00000000..be695ee4 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/aiecyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ae + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/amacron.glif b/sources/FixelDisplay-Medium.ufo/glyphs/amacron.glif new file mode 100644 index 00000000..d7595021 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/amacron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+macron + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/amacron.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/amacron.ss01.glif new file mode 100644 index 00000000..c5b0bdd8 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/amacron.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+macron + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/ampersand.glif b/sources/FixelDisplay-Medium.ufo/glyphs/ampersand.glif new file mode 100644 index 00000000..5c7a6a3d --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/ampersand.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/aogonek.glif b/sources/FixelDisplay-Medium.ufo/glyphs/aogonek.glif new file mode 100644 index 00000000..e3a80bbb --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/aogonek.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+ogonek + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/aogonek.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/aogonek.ss01.glif new file mode 100644 index 00000000..10a39173 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/aogonek.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+ogonek + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/apostrophemod.glif b/sources/FixelDisplay-Medium.ufo/glyphs/apostrophemod.glif new file mode 100644 index 00000000..fa3803ec --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/apostrophemod.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + apostrophe + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/approxequal.glif b/sources/FixelDisplay-Medium.ufo/glyphs/approxequal.glif new file mode 100644 index 00000000..e1b0f062 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/approxequal.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/aring.glif b/sources/FixelDisplay-Medium.ufo/glyphs/aring.glif new file mode 100644 index 00000000..799d7753 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/aring.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+ring + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/aring.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/aring.ss01.glif new file mode 100644 index 00000000..3b7b3651 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/aring.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+ring + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/arrowdown.case.glif b/sources/FixelDisplay-Medium.ufo/glyphs/arrowdown.case.glif new file mode 100644 index 00000000..c1591be4 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/arrowdown.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + arrowup + com.fontlab.metricsRight + arrowup + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/arrowdown.glif b/sources/FixelDisplay-Medium.ufo/glyphs/arrowdown.glif new file mode 100644 index 00000000..e47aaa5a --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/arrowdown.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + arrowup + com.fontlab.metricsRight + arrowup + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/arrowdown.ss01.case.glif b/sources/FixelDisplay-Medium.ufo/glyphs/arrowdown.ss01.case.glif new file mode 100644 index 00000000..8e892807 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/arrowdown.ss01.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + arrowup + com.fontlab.metricsRight + arrowup + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/arrowdown.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/arrowdown.ss01.glif new file mode 100644 index 00000000..c77ef8b6 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/arrowdown.ss01.glif @@ -0,0 +1,15 @@ + + + + + + + + + com.fontlab.metricsLeft + arrowup + com.fontlab.metricsRight + arrowup + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/arrowleft.case.glif b/sources/FixelDisplay-Medium.ufo/glyphs/arrowleft.case.glif new file mode 100644 index 00000000..1bd4f3bc --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/arrowleft.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + arrowleft + com.fontlab.metricsRight + arrowleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/arrowleft.glif b/sources/FixelDisplay-Medium.ufo/glyphs/arrowleft.glif new file mode 100644 index 00000000..f5f8072d --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/arrowleft.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/arrowleft.ss01.case.glif b/sources/FixelDisplay-Medium.ufo/glyphs/arrowleft.ss01.case.glif new file mode 100644 index 00000000..92e27763 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/arrowleft.ss01.case.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + arrowleft + com.fontlab.metricsRight + arrowleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/arrowleft.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/arrowleft.ss01.glif new file mode 100644 index 00000000..724f694e --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/arrowleft.ss01.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + arrowleft + com.fontlab.metricsRight + arrowleft + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/arrowright.case.glif b/sources/FixelDisplay-Medium.ufo/glyphs/arrowright.case.glif new file mode 100644 index 00000000..d2c53e8f --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/arrowright.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |arrowleft + com.fontlab.metricsRight + |arrowleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/arrowright.glif b/sources/FixelDisplay-Medium.ufo/glyphs/arrowright.glif new file mode 100644 index 00000000..981c9657 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/arrowright.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + |arrowleft + com.fontlab.metricsRight + |arrowleft + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/arrowright.ss01.case.glif b/sources/FixelDisplay-Medium.ufo/glyphs/arrowright.ss01.case.glif new file mode 100644 index 00000000..bf5b7f30 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/arrowright.ss01.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |arrowleft + com.fontlab.metricsRight + |arrowleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/arrowright.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/arrowright.ss01.glif new file mode 100644 index 00000000..4c66b46b --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/arrowright.ss01.glif @@ -0,0 +1,15 @@ + + + + + + + + + com.fontlab.metricsLeft + |arrowleft + com.fontlab.metricsRight + |arrowleft + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/arrowup.case.glif b/sources/FixelDisplay-Medium.ufo/glyphs/arrowup.case.glif new file mode 100644 index 00000000..8d4ec60e --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/arrowup.case.glif @@ -0,0 +1,15 @@ + + + + + + + + + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/arrowup.glif b/sources/FixelDisplay-Medium.ufo/glyphs/arrowup.glif new file mode 100644 index 00000000..552c1b0c --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/arrowup.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + l() + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/arrowup.ss01.case.glif b/sources/FixelDisplay-Medium.ufo/glyphs/arrowup.ss01.case.glif new file mode 100644 index 00000000..a268dbf8 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/arrowup.ss01.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + arrowup + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/arrowup.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/arrowup.ss01.glif new file mode 100644 index 00000000..04a53ec9 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/arrowup.ss01.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + arrowup + com.fontlab.metricsRight + l() + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/asciicircum.glif b/sources/FixelDisplay-Medium.ufo/glyphs/asciicircum.glif new file mode 100644 index 00000000..75fa0bff --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/asciicircum.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/asciitilde.glif b/sources/FixelDisplay-Medium.ufo/glyphs/asciitilde.glif new file mode 100644 index 00000000..ffbc1979 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/asciitilde.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/asterisk.glif b/sources/FixelDisplay-Medium.ufo/glyphs/asterisk.glif new file mode 100644 index 00000000..45e45304 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/asterisk.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/at.case.glif b/sources/FixelDisplay-Medium.ufo/glyphs/at.case.glif new file mode 100644 index 00000000..376ea7fc --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/at.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/at.glif b/sources/FixelDisplay-Medium.ufo/glyphs/at.glif new file mode 100644 index 00000000..e9a892bd --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/at.glif @@ -0,0 +1,92 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/atilde.glif b/sources/FixelDisplay-Medium.ufo/glyphs/atilde.glif new file mode 100644 index 00000000..a772f1e2 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/atilde.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+tilde + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/atilde.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/atilde.ss01.glif new file mode 100644 index 00000000..da4ffb44 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/atilde.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+tilde + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/b.glif b/sources/FixelDisplay-Medium.ufo/glyphs/b.glif new file mode 100644 index 00000000..a471ce7d --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/b.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/b.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/b.ss01.glif new file mode 100644 index 00000000..5bc536c9 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/b.ss01.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/backslash.case.glif b/sources/FixelDisplay-Medium.ufo/glyphs/backslash.case.glif new file mode 100644 index 00000000..7d913e10 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/backslash.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + backslash + com.fontlab.metricsRight + backslash + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/backslash.glif b/sources/FixelDisplay-Medium.ufo/glyphs/backslash.glif new file mode 100644 index 00000000..192afc40 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/backslash.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/bar.case.glif b/sources/FixelDisplay-Medium.ufo/glyphs/bar.case.glif new file mode 100644 index 00000000..dfcaf5fa --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/bar.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + H-10 + com.fontlab.metricsRight + H-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/bar.glif b/sources/FixelDisplay-Medium.ufo/glyphs/bar.glif new file mode 100644 index 00000000..66dc40d4 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/bar.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H-10 + com.fontlab.metricsRight + H-10 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/be-cy.S_R_B_.glif b/sources/FixelDisplay-Medium.ufo/glyphs/be-cy.S_R_B_.glif new file mode 100644 index 00000000..e3e6b3c5 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/be-cy.S_R_B_.glif @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/be-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/be-cy.glif new file mode 100644 index 00000000..f99390fb --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/be-cy.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/bishopblack.glif b/sources/FixelDisplay-Medium.ufo/glyphs/bishopblack.glif new file mode 100644 index 00000000..21a9ee39 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/bishopblack.glif @@ -0,0 +1,241 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =10 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/bishopwhite.glif b/sources/FixelDisplay-Medium.ufo/glyphs/bishopwhite.glif new file mode 100644 index 00000000..76b842a8 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/bishopwhite.glif @@ -0,0 +1,331 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/braceleft.case.glif b/sources/FixelDisplay-Medium.ufo/glyphs/braceleft.case.glif new file mode 100644 index 00000000..95cd34cd --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/braceleft.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |braceright.case + com.fontlab.metricsRight + |braceright.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/braceleft.glif b/sources/FixelDisplay-Medium.ufo/glyphs/braceleft.glif new file mode 100644 index 00000000..40242e34 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/braceleft.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/braceright.case.glif b/sources/FixelDisplay-Medium.ufo/glyphs/braceright.case.glif new file mode 100644 index 00000000..3b7f5f00 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/braceright.case.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/braceright.glif b/sources/FixelDisplay-Medium.ufo/glyphs/braceright.glif new file mode 100644 index 00000000..32cb30fb --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/braceright.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/bracketangleleft.case.glif b/sources/FixelDisplay-Medium.ufo/glyphs/bracketangleleft.case.glif new file mode 100644 index 00000000..a07434c2 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/bracketangleleft.case.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + parenleft.case + com.fontlab.metricsRight + parenleft.case + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/bracketangleleft.glif b/sources/FixelDisplay-Medium.ufo/glyphs/bracketangleleft.glif new file mode 100644 index 00000000..302aa828 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/bracketangleleft.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + parenleft + com.fontlab.metricsRight + parenleft + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/bracketangleright.case.glif b/sources/FixelDisplay-Medium.ufo/glyphs/bracketangleright.case.glif new file mode 100644 index 00000000..f1ce8fca --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/bracketangleright.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |bracketangleleft.case + com.fontlab.metricsRight + |bracketangleleft.case + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/bracketangleright.glif b/sources/FixelDisplay-Medium.ufo/glyphs/bracketangleright.glif new file mode 100644 index 00000000..be356e5f --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/bracketangleright.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.metricsLeft + |bracketangleleft + com.fontlab.metricsRight + |bracketangleleft + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/bracketleft.case.glif b/sources/FixelDisplay-Medium.ufo/glyphs/bracketleft.case.glif new file mode 100644 index 00000000..231344d8 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/bracketleft.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |bracketright.case + com.fontlab.metricsRight + |bracketright.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/bracketleft.glif b/sources/FixelDisplay-Medium.ufo/glyphs/bracketleft.glif new file mode 100644 index 00000000..083f9a30 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/bracketleft.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/bracketright.case.glif b/sources/FixelDisplay-Medium.ufo/glyphs/bracketright.case.glif new file mode 100644 index 00000000..6d783fc8 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/bracketright.case.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |bracketleft + com.fontlab.metricsRight + |bracketleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/bracketright.glif b/sources/FixelDisplay-Medium.ufo/glyphs/bracketright.glif new file mode 100644 index 00000000..c973c284 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/bracketright.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |bracketleft + com.fontlab.metricsRight + |bracketleft + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/breve.case.glif b/sources/FixelDisplay-Medium.ufo/glyphs/breve.case.glif new file mode 100644 index 00000000..302b7faa --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/breve.case.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/breve.glif b/sources/FixelDisplay-Medium.ufo/glyphs/breve.glif new file mode 100644 index 00000000..0bdd6c1d --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/breve.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/brokenbar.case.glif b/sources/FixelDisplay-Medium.ufo/glyphs/brokenbar.case.glif new file mode 100644 index 00000000..0f79732e --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/brokenbar.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + bar + com.fontlab.metricsRight + bar + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/brokenbar.glif b/sources/FixelDisplay-Medium.ufo/glyphs/brokenbar.glif new file mode 100644 index 00000000..7626a8c3 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/brokenbar.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + bar + com.fontlab.metricsRight + bar + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/bullet.case.glif b/sources/FixelDisplay-Medium.ufo/glyphs/bullet.case.glif new file mode 100644 index 00000000..616dd7e4 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/bullet.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + period + com.fontlab.metricsRight + period + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/bullet.glif b/sources/FixelDisplay-Medium.ufo/glyphs/bullet.glif new file mode 100644 index 00000000..c1f572fc --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/bullet.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + period + com.fontlab.metricsRight + period + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/c.glif b/sources/FixelDisplay-Medium.ufo/glyphs/c.glif new file mode 100644 index 00000000..4769f7de --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/c.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/cacute.glif b/sources/FixelDisplay-Medium.ufo/glyphs/cacute.glif new file mode 100644 index 00000000..7022951e --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/cacute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+acute + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/caron.case.glif b/sources/FixelDisplay-Medium.ufo/glyphs/caron.case.glif new file mode 100644 index 00000000..7523c738 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/caron.case.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/caron.glif b/sources/FixelDisplay-Medium.ufo/glyphs/caron.glif new file mode 100644 index 00000000..27ebe880 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/caron.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/caron.salt.glif b/sources/FixelDisplay-Medium.ufo/glyphs/caron.salt.glif new file mode 100644 index 00000000..385e8923 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/caron.salt.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/ccaron.glif b/sources/FixelDisplay-Medium.ufo/glyphs/ccaron.glif new file mode 100644 index 00000000..c78e0ba6 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/ccaron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+caron + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/ccedilla.glif b/sources/FixelDisplay-Medium.ufo/glyphs/ccedilla.glif new file mode 100644 index 00000000..d0547fbf --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/ccedilla.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+cedilla + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/cche-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/cche-cy.glif new file mode 100644 index 00000000..853d4fb6 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/cche-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ч + com.fontlab.metricsRight + ч + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/ccircumflex.glif b/sources/FixelDisplay-Medium.ufo/glyphs/ccircumflex.glif new file mode 100644 index 00000000..afddb892 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/ccircumflex.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+circumflex + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/cdotaccent.glif b/sources/FixelDisplay-Medium.ufo/glyphs/cdotaccent.glif new file mode 100644 index 00000000..c84a07c7 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/cdotaccent.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+dotaccent + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/cedilla.glif b/sources/FixelDisplay-Medium.ufo/glyphs/cedilla.glif new file mode 100644 index 00000000..1510a0cc --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/cedilla.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/cent.glif b/sources/FixelDisplay-Medium.ufo/glyphs/cent.glif new file mode 100644 index 00000000..e45ebdbb --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/cent.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + c + com.fontlab.metricsRight + c + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/che-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/che-cy.glif new file mode 100644 index 00000000..7ef3cf9b --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/che-cy.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + u-10 + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/cheabkhcyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/cheabkhcyr.glif new file mode 100644 index 00000000..6d543144 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/cheabkhcyr.glif @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + e + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/cheabkhtailcyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/cheabkhtailcyr.glif new file mode 100644 index 00000000..2c9f8a25 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/cheabkhtailcyr.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + cheabkhcyr + com.fontlab.metricsRight + cheabkhcyr + com.fontlab.recipe + cheabkhcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/chedieresiscyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/chedieresiscyr.glif new file mode 100644 index 00000000..6aee5fc1 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/chedieresiscyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + che-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/chekhakascyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/chekhakascyr.glif new file mode 100644 index 00000000..baf00f58 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/chekhakascyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ч + com.fontlab.metricsRight + н + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/chetailcyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/chetailcyr.glif new file mode 100644 index 00000000..9419bae9 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/chetailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ч + com.fontlab.metricsRight + entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/chevertcyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/chevertcyr.glif new file mode 100644 index 00000000..6aa7ff92 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/chevertcyr.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ч + com.fontlab.metricsRight + н + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/circumflex.case.glif b/sources/FixelDisplay-Medium.ufo/glyphs/circumflex.case.glif new file mode 100644 index 00000000..f3eb80e8 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/circumflex.case.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/circumflex.glif b/sources/FixelDisplay-Medium.ufo/glyphs/circumflex.glif new file mode 100644 index 00000000..c8841ed5 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/circumflex.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/clubwhite.glif b/sources/FixelDisplay-Medium.ufo/glyphs/clubwhite.glif new file mode 100644 index 00000000..3b3348ac --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/clubwhite.glif @@ -0,0 +1,155 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/colon.case.glif b/sources/FixelDisplay-Medium.ufo/glyphs/colon.case.glif new file mode 100644 index 00000000..6932568a --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/colon.case.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/colon.glif b/sources/FixelDisplay-Medium.ufo/glyphs/colon.glif new file mode 100644 index 00000000..93c09821 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/colon.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/colontriangularmod.glif b/sources/FixelDisplay-Medium.ufo/glyphs/colontriangularmod.glif new file mode 100644 index 00000000..4f894d2e --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/colontriangularmod.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + colon + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/comma.glif b/sources/FixelDisplay-Medium.ufo/glyphs/comma.glif new file mode 100644 index 00000000..1be0fd27 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/comma.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/commaaccentcomb.glif b/sources/FixelDisplay-Medium.ufo/glyphs/commaaccentcomb.glif new file mode 100644 index 00000000..e421dc3b --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/commaaccentcomb.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/commaaccentcomb.salt.glif b/sources/FixelDisplay-Medium.ufo/glyphs/commaaccentcomb.salt.glif new file mode 100644 index 00000000..c732012c --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/commaaccentcomb.salt.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/contents.plist b/sources/FixelDisplay-Medium.ufo/glyphs/contents.plist new file mode 100644 index 00000000..2830b2de --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/contents.plist @@ -0,0 +1,2352 @@ + + + + + .notdef + _notdef.glif + A + A_.glif + A-cy + A_-cy.glif + A-cy.accented + A_-cy.accented.glif + A-cy.ss01 + A_-cy.ss01.glif + A.ss01 + A_.ss01.glif + AE + A_E_.glif + AE.ss01 + A_E_.ss01.glif + AEacute + A_E_acute.glif + Aacute + A_acute.glif + Aacute.ss01 + A_acute.ss01.glif + Abreve + A_breve.glif + Abreve.ss01 + A_breve.ss01.glif + Abrevecyr + A_brevecyr.glif + Acaron + A_caron.glif + Acircumflex + A_circumflex.glif + Acircumflex.ss01 + A_circumflex.ss01.glif + Adieresis + A_dieresis.glif + Adieresis.ss01 + A_dieresis.ss01.glif + Adieresiscyr + A_dieresiscyr.glif + Agrave + A_grave.glif + Agrave.ss01 + A_grave.ss01.glif + Aiecyr + A_iecyr.glif + Amacron + A_macron.glif + Amacron.ss01 + A_macron.ss01.glif + Aogonek + A_ogonek.glif + Aogonek.ss01 + A_ogonek.ss01.glif + Aring + A_ring.glif + Aring.ss01 + A_ring.ss01.glif + Atilde + A_tilde.glif + Atilde.ss01 + A_tilde.ss01.glif + B + B_.glif + Be-cy + B_e-cy.glif + C + C_.glif + CR + C_R_.glif + Cacute + C_acute.glif + Ccaron + C_caron.glif + Ccedilla + C_cedilla.glif + Cche-cy + C_che-cy.glif + Ccircumflex + C_circumflex.glif + Cdotaccent + C_dotaccent.glif + Che-cy + C_he-cy.glif + Cheabkhcyr + C_heabkhcyr.glif + Cheabkhtailcyr + C_heabkhtailcyr.glif + Chedieresiscyr + C_hedieresiscyr.glif + Chekhakascyr + C_hekhakascyr.glif + Chetailcyr + C_hetailcyr.glif + Chevertcyr + C_hevertcyr.glif + CrossedO-cy + C_rossedO_-cy.glif + D + D_.glif + Dcaron + D_caron.glif + Dchecyr + D_checyr.glif + Dcroat + D_croat.glif + De-cy + D_e-cy.glif + De-cy.BGR + D_e-cy.B_G_R_.glif + DeSoft-cy + D_eS_oft-cy.glif + Dekomicyr + D_ekomicyr.glif + Delta + D_elta.glif + Djecyr + D_jecyr.glif + Djekomicyr + D_jekomicyr.glif + Djerv-cy + D_jerv-cy.glif + DoubleO-cy + D_oubleO_-cy.glif + Dwe-cy + D_we-cy.glif + Dze-cy + D_ze-cy.glif + DzeReversed-cy + D_zeR_eversed-cy.glif + Dzeabkhcyr + D_zeabkhcyr.glif + Dzelo-cy + D_zelo-cy.glif + Dzhecyr + D_zhecyr.glif + Dzjekomicyr + D_zjekomicyr.glif + Dzwe-cy + D_zwe-cy.glif + Dzze-cy + D_zze-cy.glif + Dzzhecyr + D_zzhecyr.glif + E + E_.glif + E-cy + E_-cy.glif + E-cy.accented + E_-cy.accented.glif + Eacute + E_acute.glif + Ebreve + E_breve.glif + Ecaron + E_caron.glif + Ecircumflex + E_circumflex.glif + Edieresis + E_dieresis.glif + Edotaccent + E_dotaccent.glif + Ef-cy + E_f-cy.glif + Ef-cy.BGR + E_f-cy.B_G_R_.glif + Egrave + E_grave.glif + Eiotifiedcyr + E_iotifiedcyr.glif + El-cy + E_l-cy.glif + El-cy.BGR + E_l-cy.B_G_R_.glif + ElSoft-cy + E_lS_oft-cy.glif + Elhookcyr + E_lhookcyr.glif + Elmiddlehookcyr + E_lmiddlehookcyr.glif + Elsharptailcyr + E_lsharptailcyr.glif + Elsmallcyr + E_lsmallcyr.glif + Eltailcyr + E_ltailcyr.glif + Em-cy + E_m-cy.glif + Em-cy.ss01 + E_m-cy.ss01.glif + EmSoft-cy + E_mS_oft-cy.glif + Emacron + E_macron.glif + Emsharptailcyr + E_msharptailcyr.glif + En-cy + E_n-cy.glif + Eng + E_ng.glif + Eng.ss01 + E_ng.ss01.glif + Engecyr + E_ngecyr.glif + Enhookcyr + E_nhookcyr.glif + Enhookleftcyr + E_nhookleftcyr.glif + Enmiddlehookcyr + E_nmiddlehookcyr.glif + Ensharptailcyr + E_nsharptailcyr.glif + Entailcyr + E_ntailcyr.glif + Eogonek + E_ogonek.glif + Er-cy + E_r-cy.glif + Ereversed-cy + E_reversed-cy.glif + Ereversed-cy.accented + E_reversed-cy.accented.glif + Ereverseddieresiscyr + E_reverseddieresiscyr.glif + Ertickcyr + E_rtickcyr.glif + Es-cy + E_s-cy.glif + Estailcyr + E_stailcyr.glif + Estailcyr.BSH + E_stailcyr.B_S_H_.glif + Estailcyr.CHU + E_stailcyr.C_H_U_.glif + Eth + E_th.glif + F + F_.glif + Fitacyr + F_itacyr.glif + G + G_.glif + G.ss01 + G_.ss01.glif + Gacute + G_acute.glif + Gacute.ss01 + G_acute.ss01.glif + Gbreve + G_breve.glif + Gbreve.ss01 + G_breve.ss01.glif + Gcircumflex + G_circumflex.glif + Gcircumflex.ss01 + G_circumflex.ss01.glif + Gcommaaccent + G_commaaccent.glif + Gcommaaccent.ss01 + G_commaaccent.ss01.glif + Gdotaccent + G_dotaccent.glif + Gdotaccent.ss01 + G_dotaccent.ss01.glif + Ge-cy + G_e-cy.glif + Gehookcyr + G_ehookcyr.glif + Gehookstrokecyr + G_ehookstrokecyr.glif + Germandbls + G_ermandbls.glif + Gestrokecyr + G_estrokecyr.glif + Gestrokecyr.BSH + G_estrokecyr.B_S_H_.glif + Getailcyr + G_etailcyr.glif + Gheupturn-cy + G_heupturn-cy.glif + Gjecyr + G_jecyr.glif + H + H_.glif + Ha-cy + H_a-cy.glif + Ha-cy.ss01 + H_a-cy.ss01.glif + Haabkhcyr + H_aabkhcyr.glif + Hahookcyr + H_ahookcyr.glif + Hardsign-cy + H_ardsign-cy.glif + Hastrokecyr + H_astrokecyr.glif + Hbar + H_bar.glif + Hcircumflex + H_circumflex.glif + Hwe-cy + H_we-cy.glif + I + I_.glif + I-cy + I_-cy.glif + IJ + I_J_.glif + Ia-cy + I_a-cy.glif + Ia-cy.accented + I_a-cy.accented.glif + Ia-cy.ss01 + I_a-cy.ss01.glif + Iacute + I_acute.glif + Ibreve + I_breve.glif + Icircumflex + I_circumflex.glif + Idieresis + I_dieresis.glif + Idieresiscyr + I_dieresiscyr.glif + Idotaccent + I_dotaccent.glif + Ie-cy + I_e-cy.glif + Iebrevecyr + I_ebrevecyr.glif + Iegravecyr + I_egravecyr.glif + Igrave + I_grave.glif + Igravecyr + I_gravecyr.glif + Ii-cy + I_i-cy.glif + Ii-cy.accented + I_i-cy.accented.glif + Iishort-cy + I_ishort-cy.glif + Imacron + I_macron.glif + Imacroncyr + I_macroncyr.glif + Io-cy + I_o-cy.glif + Io-cy.accented + I_o-cy.accented.glif + Iogonek + I_ogonek.glif + Iota-cy + I_ota-cy.glif + IotifiedA-cy + I_otifiedA_-cy.glif + Ishortsharptailcyr + I_shortsharptailcyr.glif + Itilde + I_tilde.glif + Iu-cy + I_u-cy.glif + Iu-cy.accented + I_u-cy.accented.glif + Izhitsacyr + I_zhitsacyr.glif + Izhitsagravedblcyr + I_zhitsagravedblcyr.glif + J + J_.glif + J.ss01 + J_.ss01.glif + Jcircumflex + J_circumflex.glif + Jcircumflex.ss01 + J_circumflex.ss01.glif + Jecyr + J_ecyr.glif + K + K_.glif + K.ss01 + K_.ss01.glif + Ka-cy + K_a-cy.glif + Ka-cy.ss01 + K_a-cy.ss01.glif + Kaaleutcyr + K_aaleutcyr.glif + Kabashkcyr + K_abashkcyr.glif + Kahookcyr + K_ahookcyr.glif + Kastrokecyr + K_astrokecyr.glif + Katailcyr + K_atailcyr.glif + Kaverticalstrokecyr + K_averticalstrokecyr.glif + Kcommaaccent + K_commaaccent.glif + Kcommaaccent.ss01 + K_commaaccent.ss01.glif + Kjecyr + K_jecyr.glif + Koppacyr + K_oppacyr.glif + Ksicyr + K_sicyr.glif + L + L_.glif + Lacute + L_acute.glif + Lcaron + L_caron.glif + Lcommaaccent + L_commaaccent.glif + Ldot + L_dot.glif + Lhacyr + L_hacyr.glif + Ljecyr + L_jecyr.glif + Ljekomicyr + L_jekomicyr.glif + Lslash + L_slash.glif + M + M_.glif + M.ss01 + M_.ss01.glif + N + N_.glif + N.ss01 + N_.ss01.glif + NULL + N_U_L_L_.glif + Nacute + N_acute.glif + Nacute.ss01 + N_acute.ss01.glif + Ncaron + N_caron.glif + Ncaron.ss01 + N_caron.ss01.glif + Ncommaaccent + N_commaaccent.glif + Ncommaaccent.ss01 + N_commaaccent.ss01.glif + Njecyr + N_jecyr.glif + Njekomicyr + N_jekomicyr.glif + Ntilde + N_tilde.glif + Ntilde.ss01 + N_tilde.ss01.glif + O + O_.glif + O-cy + O_-cy.glif + O-cy.accented + O_-cy.accented.glif + OBinocular-cy + O_B_inocular-cy.glif + ODoubleMonocular-cy + O_D_oubleM_onocular-cy.glif + OE + O_E_.glif + OMonocular-cy + O_M_onocular-cy.glif + Oacute + O_acute.glif + Obarcyr + O_barcyr.glif + Obardieresiscyr + O_bardieresiscyr.glif + Obreve + O_breve.glif + Ocircumflex + O_circumflex.glif + Odieresis + O_dieresis.glif + Odieresiscyr + O_dieresiscyr.glif + Ograve + O_grave.glif + Ohungarumlaut + O_hungarumlaut.glif + Omacron + O_macron.glif + Omega + O_mega.glif + OmegaBroad-cy + O_megaB_road-cy.glif + Omegacyr + O_megacyr.glif + Omegaroundcyr + O_megaroundcyr.glif + Omegatitlocyr + O_megatitlocyr.glif + Oslash + O_slash.glif + Oslashacute + O_slashacute.glif + Otcyr + O_tcyr.glif + Otilde + O_tilde.glif + P + P_.glif + Palochkacyr + P_alochkacyr.glif + Pe-cy + P_e-cy.glif + Pehookcyr + P_ehookcyr.glif + Petailcyr + P_etailcyr.glif + Psicyr + P_sicyr.glif + Q + Q_.glif + Q.ss01 + Q_.ss01.glif + Qacyr + Q_acyr.glif + R + R_.glif + Racute + R_acute.glif + Rcaron + R_caron.glif + Rcommaaccent + R_commaaccent.glif + Reversedzecyr + R_eversedzecyr.glif + Rhacyr + R_hacyr.glif + S + S_.glif + Sacute + S_acute.glif + Scaron + S_caron.glif + Scedilla + S_cedilla.glif + Schwa + S_chwa.glif + Schwacyr + S_chwacyr.glif + Schwadieresiscyr + S_chwadieresiscyr.glif + Scircumflex + S_circumflex.glif + Scommaaccent + S_commaaccent.glif + Semisoftcyr + S_emisoftcyr.glif + Sha-cy + S_ha-cy.glif + Shcha-cy + S_hcha-cy.glif + Shhacyr + S_hhacyr.glif + Shhatailcyr + S_hhatailcyr.glif + Shwe-cy + S_hwe-cy.glif + Sjekomicyr + S_jekomicyr.glif + Softsign-cy + S_oftsign-cy.glif + T + T_.glif + Tbar + T_bar.glif + Tcaron + T_caron.glif + Tcedilla + T_cedilla.glif + Tche-cy + T_che-cy.glif + Tcommaaccent + T_commaaccent.glif + Te-cy + T_e-cy.glif + TeWithMiddleHook-cy + T_eW_ithM_iddleH_ook-cy.glif + Tetailcyr + T_etailcyr.glif + Tetsecyr + T_etsecyr.glif + Thorn + T_horn.glif + Tjekomicyr + T_jekomicyr.glif + Tse-cy + T_se-cy.glif + TseReversed-cy + T_seR_eversed-cy.glif + Tshecyr + T_shecyr.glif + Tsse-cy + T_sse-cy.glif + Tswe-cy + T_swe-cy.glif + Twe-cy + T_we-cy.glif + U + U_.glif + U-cy + U_-cy.glif + U-cy.accented + U_-cy.accented.glif + U-cy.ss01 + U_-cy.ss01.glif + Uacute + U_acute.glif + Uacutedblcyr + U_acutedblcyr.glif + Ubreve + U_breve.glif + Ucircumflex + U_circumflex.glif + Udieresis + U_dieresis.glif + Udieresiscyr + U_dieresiscyr.glif + Ugrave + U_grave.glif + Uhungarumlaut + U_hungarumlaut.glif + UkMonograph-cy + U_kM_onograph-cy.glif + Ukcyr + U_kcyr.glif + Umacron + U_macron.glif + Umacroncyr + U_macroncyr.glif + Uogonek + U_ogonek.glif + Uring + U_ring.glif + Ushort-cy + U_short-cy.glif + Ushort-cy.ss01 + U_short-cy.ss01.glif + Ustraightcyr + U_straightcyr.glif + Ustraightstrokecyr + U_straightstrokecyr.glif + Utilde + U_tilde.glif + V + V_.glif + V.ss01 + V_.ss01.glif + Ve-cy + V_e-cy.glif + W + W_.glif + W.ss01 + W_.ss01.glif + Wacute + W_acute.glif + Wacute.ss01 + W_acute.ss01.glif + Wcircumflex + W_circumflex.glif + Wcircumflex.ss01 + W_circumflex.ss01.glif + Wdieresis + W_dieresis.glif + Wdieresis.ss01 + W_dieresis.ss01.glif + Wecyr + W_ecyr.glif + Wgrave + W_grave.glif + Wgrave.ss01 + W_grave.ss01.glif + X + X_.glif + X.ss01 + X_.ss01.glif + Xatailcyr + X_atailcyr.glif + Y + Y_.glif + Y.ss01 + Y_.ss01.glif + Yacute + Y_acute.glif + Yacute.ss01 + Y_acute.ss01.glif + Yaecyr + Y_aecyr.glif + YatIotified-cy + Y_atI_otified-cy.glif + Yatcyr + Y_atcyr.glif + Ycircumflex + Y_circumflex.glif + Ycircumflex.ss01 + Y_circumflex.ss01.glif + Ydieresis + Y_dieresis.glif + Ydieresis.ss01 + Y_dieresis.ss01.glif + YerNeutral-cy + Y_erN_eutral-cy.glif + Yeru-cy + Y_eru-cy.glif + Yeru-cy.accented + Y_eru-cy.accented.glif + Yeru-cymacron + Y_eru-cymacron.glif + YeruBackYer-cy + Y_eruB_ackY_er-cy.glif + Yi-cy + Y_i-cy.glif + Ylongdieresiscyr + Y_longdieresiscyr.glif + Yn-cy + Y_n-cy.glif + YuReversed-cy + Y_uR_eversed-cy.glif + YusBlended-cy + Y_usB_lended-cy.glif + YusClosedlittle-cy + Y_usC_losedlittle-cy.glif + Yusbigcyr + Y_usbigcyr.glif + Yusbigiotifiedcyr + Y_usbigiotifiedcyr.glif + YusiotifiedClosedLittle-cy + Y_usiotifiedC_losedL_ittle-cy.glif + Yuslittlecyr + Y_uslittlecyr.glif + Yuslittleiotifiedcyr + Y_uslittleiotifiedcyr.glif + Z + Z_.glif + Z.ss01 + Z_.ss01.glif + Zacute + Z_acute.glif + Zacute.ss01 + Z_acute.ss01.glif + Zcaron + Z_caron.glif + Zcaron.ss01 + Z_caron.ss01.glif + Zdotaccent + Z_dotaccent.glif + Zdotaccent.ss01 + Z_dotaccent.ss01.glif + Ze-cy + Z_e-cy.glif + Zedieresiscyr + Z_edieresiscyr.glif + Zemlya-cy + Z_emlya-cy.glif + Zetailcyr + Z_etailcyr.glif + Zetailcyr.BSH + Z_etailcyr.B_S_H_.glif + Zhe-cy + Z_he-cy.glif + Zhe-cy.ss01 + Z_he-cy.ss01.glif + Zhebrevecyr + Z_hebrevecyr.glif + Zhedieresiscyr + Z_hedieresiscyr.glif + Zhetailcyr + Z_hetailcyr.glif + Zhwe-cy + Z_hwe-cy.glif + Zjekomicyr + Z_jekomicyr.glif + _perc-circule + _perc-circule.glif + a + a.glif + a-cy + a-cy.glif + a-cy.accented + a-cy.accented.glif + a-cy.ss01 + a-cy.ss01.glif + a.ss01 + a.ss01.glif + aacute + aacute.glif + aacute.ss01 + aacute.ss01.glif + abreve + abreve.glif + abreve.ss01 + abreve.ss01.glif + abrevecyr + abrevecyr.glif + acaron + acaron.glif + acircumflex + acircumflex.glif + acircumflex.ss01 + acircumflex.ss01.glif + acute + acute.glif + acute.case + acute.case.glif + adieresis + adieresis.glif + adieresis.ss01 + adieresis.ss01.glif + adieresiscyr + adieresiscyr.glif + ae + ae.glif + ae.ss01 + ae.ss01.glif + aeacute + aeacute.glif + agrave + agrave.glif + agrave.ss01 + agrave.ss01.glif + aiecyr + aiecyr.glif + amacron + amacron.glif + amacron.ss01 + amacron.ss01.glif + ampersand + ampersand.glif + aogonek + aogonek.glif + aogonek.ss01 + aogonek.ss01.glif + apostrophemod + apostrophemod.glif + approxequal + approxequal.glif + aring + aring.glif + aring.ss01 + aring.ss01.glif + arrowdown + arrowdown.glif + arrowdown.case + arrowdown.case.glif + arrowdown.ss01 + arrowdown.ss01.glif + arrowdown.ss01.case + arrowdown.ss01.case.glif + arrowleft + arrowleft.glif + arrowleft.case + arrowleft.case.glif + arrowleft.ss01 + arrowleft.ss01.glif + arrowleft.ss01.case + arrowleft.ss01.case.glif + arrowright + arrowright.glif + arrowright.case + arrowright.case.glif + arrowright.ss01 + arrowright.ss01.glif + arrowright.ss01.case + arrowright.ss01.case.glif + arrowup + arrowup.glif + arrowup.case + arrowup.case.glif + arrowup.ss01 + arrowup.ss01.glif + arrowup.ss01.case + arrowup.ss01.case.glif + asciicircum + asciicircum.glif + asciitilde + asciitilde.glif + asterisk + asterisk.glif + at + at.glif + at.case + at.case.glif + atilde + atilde.glif + atilde.ss01 + atilde.ss01.glif + b + b.glif + b.ss01 + b.ss01.glif + backslash + backslash.glif + backslash.case + backslash.case.glif + bar + bar.glif + bar.case + bar.case.glif + be-cy + be-cy.glif + be-cy.SRB + be-cy.S_R_B_.glif + bishopblack + bishopblack.glif + bishopwhite + bishopwhite.glif + braceleft + braceleft.glif + braceleft.case + braceleft.case.glif + braceright + braceright.glif + braceright.case + braceright.case.glif + bracketangleleft + bracketangleleft.glif + bracketangleleft.case + bracketangleleft.case.glif + bracketangleright + bracketangleright.glif + bracketangleright.case + bracketangleright.case.glif + bracketleft + bracketleft.glif + bracketleft.case + bracketleft.case.glif + bracketright + bracketright.glif + bracketright.case + bracketright.case.glif + breve + breve.glif + breve.case + breve.case.glif + brokenbar + brokenbar.glif + brokenbar.case + brokenbar.case.glif + bullet + bullet.glif + bullet.case + bullet.case.glif + c + c.glif + cacute + cacute.glif + caron + caron.glif + caron.case + caron.case.glif + caron.salt + caron.salt.glif + ccaron + ccaron.glif + ccedilla + ccedilla.glif + cche-cy + cche-cy.glif + ccircumflex + ccircumflex.glif + cdotaccent + cdotaccent.glif + cedilla + cedilla.glif + cent + cent.glif + che-cy + che-cy.glif + cheabkhcyr + cheabkhcyr.glif + cheabkhtailcyr + cheabkhtailcyr.glif + chedieresiscyr + chedieresiscyr.glif + chekhakascyr + chekhakascyr.glif + chetailcyr + chetailcyr.glif + chevertcyr + chevertcyr.glif + circumflex + circumflex.glif + circumflex.case + circumflex.case.glif + clubwhite + clubwhite.glif + colon + colon.glif + colon.case + colon.case.glif + colontriangularmod + colontriangularmod.glif + comma + comma.glif + commaaccentcomb + commaaccentcomb.glif + commaaccentcomb.salt + commaaccentcomb.salt.glif + copyright + copyright.glif + crossedo-cy + crossedo-cy.glif + crossedswords + crossedswords.glif + currency + currency.glif + d + d.glif + d.ss01 + d.ss01.glif + dagger + dagger.glif + daggerdbl + daggerdbl.glif + dcaron + dcaron.glif + dcaron.ss01 + dcaron.ss01.glif + dchecyr + dchecyr.glif + dcroat + dcroat.glif + dcroat.ss01 + dcroat.ss01.glif + de-cy + de-cy.glif + de-cy.BGR + de-cy.B_G_R_.glif + de-cy.ss01 + de-cy.ss01.glif + deSoft-cy + deS_oft-cy.glif + degree + degree.glif + dekomicyr + dekomicyr.glif + diamondwhite-misc + diamondwhite-misc.glif + dieresis + dieresis.glif + dieresis.alt + dieresis.alt.glif + dieresis.case + dieresis.case.glif + dieresisacute + dieresisacute.glif + dieresiscase.alt + dieresiscase.alt.glif + divide + divide.glif + djecyr + djecyr.glif + djekomicyr + djekomicyr.glif + djerv-cy + djerv-cy.glif + dollar + dollar.glif + dotaccent + dotaccent.glif + dotaccent.case + dotaccent.case.glif + doubleo-cy + doubleo-cy.glif + dramsignarmn + dramsignarmn.glif + dwe-cy + dwe-cy.glif + dze-cy + dze-cy.glif + dzeReversed-cy + dzeR_eversed-cy.glif + dzeabkhcyr + dzeabkhcyr.glif + dzelo-cy + dzelo-cy.glif + dzhecyr + dzhecyr.glif + dzjekomicyr + dzjekomicyr.glif + dzwe-cy + dzwe-cy.glif + dzze-cy + dzze-cy.glif + dzzhecyr + dzzhecyr.glif + e + e.glif + e-cy + e-cy.glif + e-cy.accented + e-cy.accented.glif + e-cy.hist + e-cy.hist.glif + e.ss01 + e.ss01.glif + eacute + eacute.glif + eacute.ss01 + eacute.ss01.glif + ebreve + ebreve.glif + ebreve.ss01 + ebreve.ss01.glif + ecaron + ecaron.glif + ecaron.ss01 + ecaron.ss01.glif + ecircumflex + ecircumflex.glif + ecircumflex.ss01 + ecircumflex.ss01.glif + edieresis + edieresis.glif + edieresis.ss01 + edieresis.ss01.glif + edotaccent + edotaccent.glif + edotaccent.ss01 + edotaccent.ss01.glif + ef-cy + ef-cy.glif + egrave + egrave.glif + egrave.ss01 + egrave.ss01.glif + eight + eight.glif + eight.osf + eight.osf.glif + eight.tf + eight.tf.glif + eiotifiedcyr + eiotifiedcyr.glif + eiotifiedcyr.BGR + eiotifiedcyr.B_G_R_.glif + el-cy + el-cy.glif + el-cy.BGR + el-cy.B_G_R_.glif + el-cy.ss01 + el-cy.ss01.glif + elSoft-cy + elS_oft-cy.glif + elhookcyr + elhookcyr.glif + ellipsis + ellipsis.glif + elmiddlehookcyr + elmiddlehookcyr.glif + elsharptailcyr + elsharptailcyr.glif + eltailcyr + eltailcyr.glif + em-cy + em-cy.glif + emSoft-cy + emS_oft-cy.glif + emacron + emacron.glif + emacron.ss01 + emacron.ss01.glif + emdash + emdash.glif + emdash.case + emdash.case.glif + emsharptailcyr + emsharptailcyr.glif + en-cy + en-cy.glif + enclosingcirclecomb + enclosingcirclecomb.glif + endash + endash.glif + endash.case + endash.case.glif + eng + eng.glif + engecyr + engecyr.glif + enhookcyr + enhookcyr.glif + enhookleftcyr + enhookleftcyr.glif + enmiddlehookcyr + enmiddlehookcyr.glif + ensharptailcyr + ensharptailcyr.glif + entailcyr + entailcyr.glif + eogonek + eogonek.glif + eogonek.ss01 + eogonek.ss01.glif + equal + equal.glif + er-cy + er-cy.glif + er-cy.ss01 + er-cy.ss01.glif + ereversed-cy + ereversed-cy.glif + ereversed-cy.accented + ereversed-cy.accented.glif + ereverseddieresiscyr + ereverseddieresiscyr.glif + ertickcyr + ertickcyr.glif + es-cy + es-cy.glif + estailcyr + estailcyr.glif + estailcyr.BSH + estailcyr.B_S_H_.glif + estailcyr.CHU + estailcyr.C_H_U_.glif + estimated + estimated.glif + eth + eth.glif + eturned + eturned.glif + euro + euro.glif + exclam + exclam.glif + exclamdown + exclamdown.glif + exclamdown.case + exclamdown.case.glif + f + f.glif + f.ss01 + f.ss01.glif + f_f + f_f.glif + f_f.ss01 + f_f.ss01.glif + f_f_i + f_f_i.glif + f_f_i.ss01 + f_f_i.ss01.glif + f_f_l + f_f_l.glif + f_f_l.ss01 + f_f_l.ss01.glif + fi + fi.glif + fi.ss01 + fi.ss01.glif + fitacyr + fitacyr.glif + five + five.glif + five.osf + five.osf.glif + five.tf + five.tf.glif + fl + fl.glif + fl.ss01 + fl.ss01.glif + floretteblack + floretteblack.glif + floretteoutlinedpetalledblackeight + floretteoutlinedpetalledblackeight.glif + florettewhite + florettewhite.glif + florin + florin.glif + flower + flower.glif + four + four.glif + four.osf + four.osf.glif + four.tf + four.tf.glif + fraction + fraction.glif + g + g.glif + g.ss01 + g.ss01.glif + gacute + gacute.glif + gacute.ss01 + gacute.ss01.glif + gbreve + gbreve.glif + gbreve.ss01 + gbreve.ss01.glif + gcircumflex + gcircumflex.glif + gcircumflex.ss01 + gcircumflex.ss01.glif + gcommaaccent + gcommaaccent.glif + gcommaaccent.ss01 + gcommaaccent.ss01.glif + gdotaccent + gdotaccent.glif + gdotaccent.ss01 + gdotaccent.ss01.glif + ge-cy + ge-cy.glif + ge-cy.BGR + ge-cy.B_G_R_.glif + ge-cy.SRB + ge-cy.S_R_B_.glif + gehookcyr + gehookcyr.glif + gehookstrokecyr + gehookstrokecyr.glif + germandbls + germandbls.glif + germandbls.ss01 + germandbls.ss01.glif + gestrokecyr + gestrokecyr.glif + gestrokecyr.BSH + gestrokecyr.B_S_H_.glif + getailcyr + getailcyr.glif + gheupturn-cy + gheupturn-cy.glif + gjecyr + gjecyr.glif + gjecyr.SRB + gjecyr.S_R_B_.glif + grave + grave.glif + grave.case + grave.case.glif + greater + greater.glif + greaterequal + greaterequal.glif + guillemetleft + guillemetleft.glif + guillemetleft.case + guillemetleft.case.glif + guillemetright + guillemetright.glif + guillemetright.case + guillemetright.case.glif + guilsinglleft + guilsinglleft.glif + guilsinglleft.case + guilsinglleft.case.glif + guilsinglright + guilsinglright.glif + guilsinglright.case + guilsinglright.case.glif + h + h.glif + ha-cy + ha-cy.glif + haabkhcyr + haabkhcyr.glif + hahookcyr + hahookcyr.glif + hardsign-cy + hardsign-cy.glif + hardsign-cy.BGR + hardsign-cy.B_G_R_.glif + hardsign-cy.ss01 + hardsign-cy.ss01.glif + hastrokecyr + hastrokecyr.glif + hbar + hbar.glif + hcircumflex + hcircumflex.glif + heart + heart.glif + heartwhite + heartwhite.glif + hryvnia + hryvnia.glif + hundredmillionscomb-cy + hundredmillionscomb-cy.glif + hundredthousandscombcyr + hundredthousandscombcyr.glif + hungarumlaut + hungarumlaut.glif + hungarumlaut.case + hungarumlaut.case.glif + hwe-cy + hwe-cy.glif + hyphen + hyphen.glif + hyphen.case + hyphen.case.glif + i + i.glif + i-cy + i-cy.glif + ia-cy + ia-cy.glif + ia-cy.accented + ia-cy.accented.glif + ia-cy.ss01 + ia-cy.ss01.glif + iacute + iacute.glif + ibreve + ibreve.glif + icircumflex + icircumflex.glif + idieresis + idieresis.glif + idieresiscyr + idieresiscyr.glif + idotless + idotless.glif + ie-cy + ie-cy.glif + ie-cy.ss01 + ie-cy.ss01.glif + iebrevecyr + iebrevecyr.glif + iegravecyr + iegravecyr.glif + iegravecyr.SRB + iegravecyr.S_R_B_.glif + igrave + igrave.glif + igravecyr + igravecyr.glif + igravecyr.SRB + igravecyr.S_R_B_.glif + ii-cy + ii-cy.glif + ii-cy.BGR + ii-cy.B_G_R_.glif + ii-cy.accented + ii-cy.accented.glif + iishort-cy + iishort-cy.glif + iishort-cy.BGR + iishort-cy.B_G_R_.glif + ij + ij.glif + imacron + imacron.glif + imacroncyr + imacroncyr.glif + increment + increment.glif + infinity + infinity.glif + integral + integral.glif + io-cy + io-cy.glif + io-cy.accented + io-cy.accented.glif + io-cy.ss01 + io-cy.ss01.glif + iogonek + iogonek.glif + iota-cy + iota-cy.glif + iotifieda-cy + iotifieda-cy.glif + iotifieda-cy.BGR + iotifieda-cy.B_G_R_.glif + iotifieda-cy.hist + iotifieda-cy.hist.glif + ishortsharptailcyr + ishortsharptailcyr.glif + itilde + itilde.glif + iu-cy + iu-cy.glif + iu-cy.BGR + iu-cy.B_G_R_.glif + iu-cy.accented + iu-cy.accented.glif + izhitsacyr + izhitsacyr.glif + izhitsagravedblcyr + izhitsagravedblcyr.glif + j + j.glif + jcircumflex + jcircumflex.glif + jdotless + jdotless.glif + je-cy + je-cy.glif + k + k.glif + ka-cy + ka-cy.glif + ka-cy.BGR + ka-cy.B_G_R_.glif + kaaleutcyr + kaaleutcyr.glif + kabashkcyr + kabashkcyr.glif + kahookcyr + kahookcyr.glif + kastrokecyr + kastrokecyr.glif + katailcyr + katailcyr.glif + kaverticalstrokecyr + kaverticalstrokecyr.glif + kcommaaccent + kcommaaccent.glif + kgreenlandic + kgreenlandic.glif + kjecyr + kjecyr.glif + knightblack + knightblack.glif + knightwhite + knightwhite.glif + koppacyr + koppacyr.glif + ksicyr + ksicyr.glif + l + l.glif + l.ss01 + l.ss01.glif + lacute + lacute.glif + lacute.ss01 + lacute.ss01.glif + lcaron + lcaron.glif + lcaron.ss01 + lcaron.ss01.glif + lcommaaccent + lcommaaccent.glif + lcommaaccent.ss01 + lcommaaccent.ss01.glif + ldot + ldot.glif + ldot.ss01 + ldot.ss01.glif + leo + leo.glif + less + less.glif + lessequal + lessequal.glif + lhacyr + lhacyr.glif + ljecyr + ljecyr.glif + ljecyr.ss01 + ljecyr.ss01.glif + ljekomicyr + ljekomicyr.glif + longs + longs.glif + lslash + lslash.glif + lslash.ss01 + lslash.ss01.glif + m + m.glif + macron + macron.glif + macron-fwd + macron-fwd.glif + macron-fwd.alt + macron-fwd.alt.glif + macron.case + macron.case.glif + macronacute.SRB + macronacute.S_R_B_.glif + millionscombcyr + millionscombcyr.glif + minus + minus.glif + minute + minute.glif + mu + mu.glif + multiply + multiply.glif + n + n.glif + nacute + nacute.glif + napostrophe + napostrophe.glif + ncaron + ncaron.glif + ncommaaccent + ncommaaccent.glif + neptune + neptune.glif + nine + nine.glif + nine.osf + nine.osf.glif + nine.tf + nine.tf.glif + njecyr + njecyr.glif + njecyr.ss01 + njecyr.ss01.glif + njekomicyr + njekomicyr.glif + notequal + notequal.glif + ntilde + ntilde.glif + numbersign + numbersign.glif + numero + numero.glif + numero.ss01 + numero.ss01.glif + o + o.glif + o-cy + o-cy.glif + o-cy.accented + o-cy.accented.glif + oBinocular-cy + oB_inocular-cy.glif + oDoubleMonocular-cy + oD_oubleM_onocular-cy.glif + oMonocular-cy + oM_onocular-cy.glif + oacute + oacute.glif + obarcyr + obarcyr.glif + obardieresiscyr + obardieresiscyr.glif + obreve + obreve.glif + ocircumflex + ocircumflex.glif + odieresis + odieresis.glif + odieresiscyr + odieresiscyr.glif + oe + oe.glif + oe.ss01 + oe.ss01.glif + ogonek + ogonek.glif + ograve + ograve.glif + ohungarumlaut + ohungarumlaut.glif + omacron + omacron.glif + omegaBroad-cy + omegaB_road-cy.glif + omegacyr + omegacyr.glif + omegaroundcyr + omegaroundcyr.glif + omegatitlocyr + omegatitlocyr.glif + omultiocular-cy + omultiocular-cy.glif + omultiocular-cy.alt + omultiocular-cy.alt.glif + one + one.glif + one.osf + one.osf.glif + one.tf + one.tf.glif + onehalf + onehalf.glif + onequarter + onequarter.glif + onesuperior + onesuperior.glif + ordfeminine + ordfeminine.glif + ordmasculine + ordmasculine.glif + oslash + oslash.glif + oslashacute + oslashacute.glif + otcyr + otcyr.glif + otilde + otilde.glif + p + p.glif + p.ss01 + p.ss01.glif + palatcombcyr + palatcombcyr.glif + palochkacyr + palochkacyr.glif + paragraph + paragraph.glif + parenleft + parenleft.glif + parenleft.case + parenleft.case.glif + parenright + parenright.glif + parenright.case + parenright.case.glif + partialdiff + partialdiff.glif + pe-cy + pe-cy.glif + pe-cy.BGR + pe-cy.B_G_R_.glif + pe-cy.SRB + pe-cy.S_R_B_.glif + pehookcyr + pehookcyr.glif + percent + percent.glif + period + period.glif + periodcentered + periodcentered.glif + perthousand + perthousand.glif + petailcyr + petailcyr.glif + pi + pi.glif + plus + plus.glif + plusminus + plusminus.glif + pokrytiecombcyr + pokrytiecombcyr.glif + product + product.glif + proportional + proportional.glif + psicyr + psicyr.glif + q + q.glif + q.ss01 + q.ss01.glif + qacyr + qacyr.glif + question + question.glif + questiondown + questiondown.glif + questiondown.case + questiondown.case.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 + radical + radical.glif + rcaron + rcaron.glif + rcommaaccent + rcommaaccent.glif + registered + registered.glif + reversedzecyr + reversedzecyr.glif + rhacyr + rhacyr.glif + ring + ring.glif + ring.case + ring.case.glif + rookblack + rookblack.glif + ruble + ruble.glif + s + s.glif + sacute + sacute.glif + scaron + scaron.glif + scedilla + scedilla.glif + schwacyr + schwacyr.glif + schwadieresiscyr + schwadieresiscyr.glif + scircumflex + scircumflex.glif + scommaaccent + scommaaccent.glif + second + second.glif + section + section.glif + semicolon + semicolon.glif + semicolon.case + semicolon.case.glif + semisoftcyr + semisoftcyr.glif + seven + seven.glif + seven.osf + seven.osf.glif + seven.tf + seven.tf.glif + sha-cy + sha-cy.glif + sha-cy.BGR + sha-cy.B_G_R_.glif + shcha-cy + shcha-cy.glif + shcha-cy.BGR + shcha-cy.B_G_R_.glif + shhacyr + shhacyr.glif + shhatailcyr + shhatailcyr.glif + shwe-cy + shwe-cy.glif + six + six.glif + six.osf + six.osf.glif + six.tf + six.tf.glif + sjekomicyr + sjekomicyr.glif + slash + slash.glif + slash.case + slash.case.glif + softsign-cy + softsign-cy.glif + softsign-cy.BGR + softsign-cy.B_G_R_.glif + softsign-cy.ss01 + softsign-cy.ss01.glif + space + space.glif + spadewhite + spadewhite.glif + sterling + sterling.glif + summation + summation.glif + t + t.glif + t.ss01 + t.ss01.glif + tbar + tbar.glif + tbar.ss01 + tbar.ss01.glif + tcaron + tcaron.glif + tcaron.ss01 + tcaron.ss01.glif + tcedilla + tcedilla.glif + tcedilla.ss01 + tcedilla.ss01.glif + tche-cy + tche-cy.glif + tcommaaccent + tcommaaccent.glif + tcommaaccent.ss01 + tcommaaccent.ss01.glif + te-cy + te-cy.glif + te-cy.BGR + te-cy.B_G_R_.glif + te-cy.SRB + te-cy.S_R_B_.glif + te-cy.ss01 + te-cy.ss01.glif + tenge + tenge.glif + tenmillionscomb-cy + tenmillionscomb-cy.glif + tetailcyr + tetailcyr.glif + tetsecyr + tetsecyr.glif + tewithmiddlehook-cy + tewithmiddlehook-cy.glif + thorn + thorn.glif + thousandmillionscomb-cy + thousandmillionscomb-cy.glif + thousandscyr + thousandscyr.glif + thousandscyr.dnom + thousandscyr.dnom.glif + three + three.glif + three.osf + three.osf.glif + three.tf + three.tf.glif + threequarters + threequarters.glif + threesuperior + threesuperior.glif + tilde + tilde.glif + tilde.case + tilde.case.glif + titlocombcyr + titlocombcyr.glif + tjekomicyr + tjekomicyr.glif + trademark + trademark.glif + tse-cy + tse-cy.glif + tse-cy.BGR + tse-cy.B_G_R_.glif + tseReversed-cy + tseR_eversed-cy.glif + tshecyr + tshecyr.glif + tsse-cy + tsse-cy.glif + tswe-cy + tswe-cy.glif + twe-cy + twe-cy.glif + two + two.glif + two.osf + two.osf.glif + two.tf + two.tf.glif + twosuperior + twosuperior.glif + u + u.glif + u-cy + u-cy.glif + u-cy.accented + u-cy.accented.glif + uacute + uacute.glif + uacutedblcyr + uacutedblcyr.glif + ubreve + ubreve.glif + ucircumflex + ucircumflex.glif + udieresis + udieresis.glif + udieresiscyr + udieresiscyr.glif + ugrave + ugrave.glif + uhungarumlaut + uhungarumlaut.glif + ukMonograph-cy + ukM_onograph-cy.glif + ukcyr + ukcyr.glif + umacron + umacron.glif + umacroncyr + umacroncyr.glif + underscore + underscore.glif + uni1C80 + uni1C_80.glif + uni1C81 + uni1C_81.glif + uni1C82 + uni1C_82.glif + uni1C83 + uni1C_83.glif + uni1C84 + uni1C_84.glif + uni1C85 + uni1C_85.glif + uni1C86 + uni1C_86.glif + uni1C87 + uni1C_87.glif + uni1C88 + uni1C_88.glif + uni1EBC + uni1E_B_C_.glif + uni1EBD + uni1E_B_D_.glif + uni2010 + uni2010.glif + uni2DEE + uni2D_E_E_.glif + uni2DEE.case + uni2D_E_E_.case.glif + uniE000 + uniE_000.glif + uniE000.alt + uniE_000.alt.glif + uniE01A + uniE_01A_.glif + uniF43A + uniF_43A_.glif + uniF43B + uniF_43B_.glif + uniF45D + uniF_45D_.glif + uniF45E + uniF_45E_.glif + uniF45F + uniF_45F_.glif + uniF475 + uniF_475.glif + uniF476 + uniF_476.glif + uniF477 + uniF_477.glif + uniF478 + uniF_478.glif + uniF479 + uniF_479.glif + uniF498 + uniF_498.glif + uniF499 + uniF_499.glif + uniF49A + uniF_49A_.glif + uniF49B + uniF_49B_.glif + uniF49C + uniF_49C_.glif + uniF49D + uniF_49D_.glif + uniF49E + uniF_49E_.glif + uniF49F + uniF_49F_.glif + uniF4C6 + uniF_4C_6.glif + uniF4C7 + uniF_4C_7.glif + uniF4CC + uniF_4C_C_.glif + uniF4CD + uniF_4C_D_.glif + uniF4D2 + uniF_4D_2.glif + uniF4D3 + uniF_4D_3.glif + uniF4D4 + uniF_4D_4.glif + uniF4D5 + uniF_4D_5.glif + uniF4D6 + uniF_4D_6.glif + uniF4D7 + uniF_4D_7.glif + uniF4D8 + uniF_4D_8.glif + uniF4D9 + uniF_4D_9.glif + uniF50E + uniF_50E_.glif + uniF50F + uniF_50F_.glif + uniF510 + uniF_510.glif + uniF511 + uniF_511.glif + uniF512 + uniF_512.glif + uniF513 + uniF_513.glif + uniF514 + uniF_514.glif + uniF515 + uniF_515.glif + uniF516 + uniF_516.glif + uniF517 + uniF_517.glif + uniF518 + uniF_518.glif + uniF519 + uniF_519.glif + uniF51A + uniF_51A_.glif + uniF51B + uniF_51B_.glif + uniF51C + uniF_51C_.glif + uniF51D + uniF_51D_.glif + uniF51E + uniF_51E_.glif + uniF51F + uniF_51F_.glif + uniF521 + uniF_521.glif + uniF522 + uniF_522.glif + uniF523 + uniF_523.glif + uniF524 + uniF_524.glif + uniF525 + uniF_525.glif + uniF526 + uniF_526.glif + uniF527 + uniF_527.glif + uniF528 + uniF_528.glif + uniF529 + uniF_529.glif + uniF52A + uniF_52A_.glif + uniF52B + uniF_52B_.glif + uniF52C + uniF_52C_.glif + uniF52D + uniF_52D_.glif + uniF52E + uniF_52E_.glif + uniF52F + uniF_52F_.glif + uniF532 + uniF_532.glif + uniF533 + uniF_533.glif + uniF536 + uniF_536.glif + uniF537 + uniF_537.glif + uniF538 + uniF_538.glif + uniF539 + uniF_539.glif + uniF830 + uniF_830.glif + uniF831 + uniF_831.glif + uniF833 + uniF_833.glif + uniF834 + uniF_834.glif + uniF839 + uniF_839.glif + uniF83A + uniF_83A_.glif + uniF86F + uniF_86F_.glif + uniF870 + uniF_870.glif + uniF872 + uniF_872.glif + uniF873 + uniF_873.glif + uniF875 + uniF_875.glif + uniF876 + uniF_876.glif + uniF878 + uniF_878.glif + uniF879 + uniF_879.glif + uniF87B + uniF_87B_.glif + uniF87C + uniF_87C_.glif + uniF87E + uniF_87E_.glif + uniF87F + uniF_87F_.glif + uogonek + uogonek.glif + uring + uring.glif + ushort-cy + ushort-cy.glif + ustraightcyr + ustraightcyr.glif + ustraightstrokecyr + ustraightstrokecyr.glif + utilde + utilde.glif + v + v.glif + ve-cy + ve-cy.glif + ve-cy.BGR + ve-cy.B_G_R_.glif + ve-cy.ss01 + ve-cy.ss01.glif + virgo + virgo.glif + vzmetcomb-cy + vzmetcomb-cy.glif + w + w.glif + wacute + wacute.glif + wcircumflex + wcircumflex.glif + wdieresis + wdieresis.glif + wecyr + wecyr.glif + wgrave + wgrave.glif + x + x.glif + xatailcyr + xatailcyr.glif + y + y.glif + yacute + yacute.glif + yaecyr + yaecyr.glif + yatIotified-cy + yatI_otified-cy.glif + yatcyr + yatcyr.glif + yatcyr.BGR + yatcyr.B_G_R_.glif + ycircumflex + ycircumflex.glif + ydieresis + ydieresis.glif + yen + yen.glif + yen.ss01 + yen.ss01.glif + yerNeutral-cy + yerN_eutral-cy.glif + yeru-cy + yeru-cy.glif + yeru-cy.accented + yeru-cy.accented.glif + yeru-cy.ss01 + yeru-cy.ss01.glif + yeruBackyer-cy + yeruB_ackyer-cy.glif + yi-cy + yi-cy.glif + yi-cy.alt + yi-cy.alt.glif + ylongdieresiscyr + ylongdieresiscyr.glif + yn-cy + yn-cy.glif + yuReversed-cy + yuR_eversed-cy.glif + yusBlended-cy + yusB_lended-cy.glif + yusClosedlittle-cy + yusC_losedlittle-cy.glif + yusbigcyr + yusbigcyr.glif + yusbigiotifiedcyr + yusbigiotifiedcyr.glif + yusbigiotifiedcyr.BGR + yusbigiotifiedcyr.B_G_R_.glif + yusiotifiedClosedLittle-cy + yusiotifiedC_losedL_ittle-cy.glif + yuslittlecyr + yuslittlecyr.glif + yuslittleiotifiedcyr + yuslittleiotifiedcyr.glif + z + z.glif + zacute + zacute.glif + zcaron + zcaron.glif + zdotaccent + zdotaccent.glif + ze-cy + ze-cy.glif + ze-cy.BGR + ze-cy.B_G_R_.glif + zedieresiscyr + zedieresiscyr.glif + zemlya-cy + zemlya-cy.glif + zero + zero.glif + zero.osf + zero.osf.glif + zero.tf + zero.tf.glif + zetailcyr + zetailcyr.glif + zetailcyr.BSH + zetailcyr.B_S_H_.glif + zhe-cy + zhe-cy.glif + zhe-cy.BGR + zhe-cy.B_G_R_.glif + zhebrevecyr + zhebrevecyr.glif + zhedieresiscyr + zhedieresiscyr.glif + zhetailcyr + zhetailcyr.glif + zhwe-cy + zhwe-cy.glif + zjekomicyr + zjekomicyr.glif + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/copyright.glif b/sources/FixelDisplay-Medium.ufo/glyphs/copyright.glif new file mode 100644 index 00000000..ba99a12e --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/copyright.glif @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/crossedo-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/crossedo-cy.glif new file mode 100644 index 00000000..743ac299 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/crossedo-cy.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + com.fontlab.recipe + o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/crossedswords.glif b/sources/FixelDisplay-Medium.ufo/glyphs/crossedswords.glif new file mode 100644 index 00000000..dd02c7bb --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/crossedswords.glif @@ -0,0 +1,103 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/currency.glif b/sources/FixelDisplay-Medium.ufo/glyphs/currency.glif new file mode 100644 index 00000000..acc8d9b7 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/currency.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/d.glif b/sources/FixelDisplay-Medium.ufo/glyphs/d.glif new file mode 100644 index 00000000..417020c3 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/d.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/d.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/d.ss01.glif new file mode 100644 index 00000000..00836f71 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/d.ss01.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/dagger.glif b/sources/FixelDisplay-Medium.ufo/glyphs/dagger.glif new file mode 100644 index 00000000..b8f8d545 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/dagger.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/daggerdbl.glif b/sources/FixelDisplay-Medium.ufo/glyphs/daggerdbl.glif new file mode 100644 index 00000000..4984dc03 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/daggerdbl.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/dcaron.glif b/sources/FixelDisplay-Medium.ufo/glyphs/dcaron.glif new file mode 100644 index 00000000..3ab11bb0 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/dcaron.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + d+caron.salt + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/dcaron.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/dcaron.ss01.glif new file mode 100644 index 00000000..5dc0981d --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/dcaron.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + d.ss01+caron.salt + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/dchecyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/dchecyr.glif new file mode 100644 index 00000000..4e1bb005 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/dchecyr.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + д+10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/dcroat.glif b/sources/FixelDisplay-Medium.ufo/glyphs/dcroat.glif new file mode 100644 index 00000000..8b1adae1 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/dcroat.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + d + com.fontlab.metricsRight + |hbar + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/dcroat.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/dcroat.ss01.glif new file mode 100644 index 00000000..cb58db03 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/dcroat.ss01.glif @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + d.ss01 + com.fontlab.metricsRight + |hbar + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/de-cy.B_G_R_.glif b/sources/FixelDisplay-Medium.ufo/glyphs/de-cy.B_G_R_.glif new file mode 100644 index 00000000..170ec63c --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/de-cy.B_G_R_.glif @@ -0,0 +1,77 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + q + com.fontlab.metricsRight + q + com.fontlab.recipe + uni1C81 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/de-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/de-cy.glif new file mode 100644 index 00000000..415892e9 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/de-cy.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/de-cy.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/de-cy.ss01.glif new file mode 100644 index 00000000..b243187d --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/de-cy.ss01.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/deS_oft-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/deS_oft-cy.glif new file mode 100644 index 00000000..ee3d6cca --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/deS_oft-cy.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + д + com.fontlab.metricsRight + ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/degree.glif b/sources/FixelDisplay-Medium.ufo/glyphs/degree.glif new file mode 100644 index 00000000..71dd0f2f --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/degree.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/dekomicyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/dekomicyr.glif new file mode 100644 index 00000000..7a5ddc40 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/dekomicyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + d + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/diamondwhite-misc.glif b/sources/FixelDisplay-Medium.ufo/glyphs/diamondwhite-misc.glif new file mode 100644 index 00000000..1c963767 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/diamondwhite-misc.glif @@ -0,0 +1,145 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =38 + com.fontlab.metricsRight + =38 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/dieresis.alt.glif b/sources/FixelDisplay-Medium.ufo/glyphs/dieresis.alt.glif new file mode 100644 index 00000000..4c6c23ef --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/dieresis.alt.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 1,0.6,0.994,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/dieresis.case.glif b/sources/FixelDisplay-Medium.ufo/glyphs/dieresis.case.glif new file mode 100644 index 00000000..fb00af60 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/dieresis.case.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/dieresis.glif b/sources/FixelDisplay-Medium.ufo/glyphs/dieresis.glif new file mode 100644 index 00000000..a8aa284d --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/dieresis.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/dieresisacute.glif b/sources/FixelDisplay-Medium.ufo/glyphs/dieresisacute.glif new file mode 100644 index 00000000..461eade9 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/dieresisacute.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/dieresiscase.alt.glif b/sources/FixelDisplay-Medium.ufo/glyphs/dieresiscase.alt.glif new file mode 100644 index 00000000..55600e15 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/dieresiscase.alt.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 1,0.6,0.994,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/divide.glif b/sources/FixelDisplay-Medium.ufo/glyphs/divide.glif new file mode 100644 index 00000000..71da7b98 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/divide.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/djecyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/djecyr.glif new file mode 100644 index 00000000..d15f386b --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/djecyr.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hbar + com.fontlab.metricsRight + h + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/djekomicyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/djekomicyr.glif new file mode 100644 index 00000000..5f06b871 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/djekomicyr.glif @@ -0,0 +1,73 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + d + com.fontlab.metricsRight + njekomicyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/djerv-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/djerv-cy.glif new file mode 100644 index 00000000..edf64bb7 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/djerv-cy.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + r() + com.fontlab.metricsRight + п-30 + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/dollar.glif b/sources/FixelDisplay-Medium.ufo/glyphs/dollar.glif new file mode 100644 index 00000000..619091e9 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/dollar.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + S + com.fontlab.metricsRight + S + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/dotaccent.case.glif b/sources/FixelDisplay-Medium.ufo/glyphs/dotaccent.case.glif new file mode 100644 index 00000000..2884b7d7 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/dotaccent.case.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/dotaccent.glif b/sources/FixelDisplay-Medium.ufo/glyphs/dotaccent.glif new file mode 100644 index 00000000..8c9c9f14 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/dotaccent.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/doubleo-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/doubleo-cy.glif new file mode 100644 index 00000000..1ad2e159 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/doubleo-cy.glif @@ -0,0 +1,91 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + com.fontlab.recipe + o_o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/dramsignarmn.glif b/sources/FixelDisplay-Medium.ufo/glyphs/dramsignarmn.glif new file mode 100644 index 00000000..e76ac834 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/dramsignarmn.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/dwe-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/dwe-cy.glif new file mode 100644 index 00000000..5ec8c4e7 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/dwe-cy.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + д + com.fontlab.metricsRight + д + com.fontlab.recipe + д + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/dze-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/dze-cy.glif new file mode 100644 index 00000000..e12160b3 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/dze-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + s + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/dzeR_eversed-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/dzeR_eversed-cy.glif new file mode 100644 index 00000000..cb54df20 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/dzeR_eversed-cy.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |s + com.fontlab.metricsRight + |s + com.fontlab.recipe + s + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/dzeabkhcyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/dzeabkhcyr.glif new file mode 100644 index 00000000..7f41dfb6 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/dzeabkhcyr.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + z-30 + com.fontlab.metricsRight + з-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/dzelo-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/dzelo-cy.glif new file mode 100644 index 00000000..0fd58af5 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/dzelo-cy.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/dzhecyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/dzhecyr.glif new file mode 100644 index 00000000..8adaaa25 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/dzhecyr.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/dzjekomicyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/dzjekomicyr.glif new file mode 100644 index 00000000..7d92f27a --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/dzjekomicyr.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + zjekomicyr + com.fontlab.metricsRight + ц-5 + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/dzwe-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/dzwe-cy.glif new file mode 100644 index 00000000..487e26cf --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/dzwe-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + s + com.fontlab.metricsRight + s + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/dzze-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/dzze-cy.glif new file mode 100644 index 00000000..c2618de0 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/dzze-cy.glif @@ -0,0 +1,84 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + д + com.fontlab.metricsRight + д-30 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/dzzhecyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/dzzhecyr.glif new file mode 100644 index 00000000..94658397 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/dzzhecyr.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + д+5 + com.fontlab.metricsRight + ж+5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/e-cy.accented.glif b/sources/FixelDisplay-Medium.ufo/glyphs/e-cy.accented.glif new file mode 100644 index 00000000..603c4fc6 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/e-cy.accented.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+acute + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/e-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/e-cy.glif new file mode 100644 index 00000000..4fcb8892 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/e-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + c + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/e-cy.hist.glif b/sources/FixelDisplay-Medium.ufo/glyphs/e-cy.hist.glif new file mode 100644 index 00000000..72fcc523 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/e-cy.hist.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + c + com.fontlab.recipe + uni1C83 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/e.glif b/sources/FixelDisplay-Medium.ufo/glyphs/e.glif new file mode 100644 index 00000000..13f0915c --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/e.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/e.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/e.ss01.glif new file mode 100644 index 00000000..f9670e66 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/e.ss01.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + O-5 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/eacute.glif b/sources/FixelDisplay-Medium.ufo/glyphs/eacute.glif new file mode 100644 index 00000000..d3c12848 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/eacute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+acute + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/eacute.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/eacute.ss01.glif new file mode 100644 index 00000000..fa087237 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/eacute.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+acute + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/ebreve.glif b/sources/FixelDisplay-Medium.ufo/glyphs/ebreve.glif new file mode 100644 index 00000000..35ba38bc --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/ebreve.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+breve + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/ebreve.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/ebreve.ss01.glif new file mode 100644 index 00000000..d226060a --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/ebreve.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+breve + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/ecaron.glif b/sources/FixelDisplay-Medium.ufo/glyphs/ecaron.glif new file mode 100644 index 00000000..8ca761b1 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/ecaron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+caron + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/ecaron.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/ecaron.ss01.glif new file mode 100644 index 00000000..a38dcd6c --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/ecaron.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+caron + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/ecircumflex.glif b/sources/FixelDisplay-Medium.ufo/glyphs/ecircumflex.glif new file mode 100644 index 00000000..a82b9a37 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/ecircumflex.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+circumflex + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/ecircumflex.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/ecircumflex.ss01.glif new file mode 100644 index 00000000..fb10044b --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/ecircumflex.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+circumflex + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/edieresis.glif b/sources/FixelDisplay-Medium.ufo/glyphs/edieresis.glif new file mode 100644 index 00000000..d3979f89 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/edieresis.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsLeft + e + com.fontlab.metricsRight + e + com.fontlab.recipe + e+dieresis + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/edieresis.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/edieresis.ss01.glif new file mode 100644 index 00000000..30839b27 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/edieresis.ss01.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsLeft + e + com.fontlab.metricsRight + e + com.fontlab.recipe + e.ss01+dieresis + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/edotaccent.glif b/sources/FixelDisplay-Medium.ufo/glyphs/edotaccent.glif new file mode 100644 index 00000000..d26e3f70 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/edotaccent.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+dotaccent + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/edotaccent.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/edotaccent.ss01.glif new file mode 100644 index 00000000..4c99b828 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/edotaccent.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+dotaccent + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/ef-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/ef-cy.glif new file mode 100644 index 00000000..5d20f885 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/ef-cy.glif @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/egrave.glif b/sources/FixelDisplay-Medium.ufo/glyphs/egrave.glif new file mode 100644 index 00000000..7762661a --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/egrave.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+grave + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/egrave.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/egrave.ss01.glif new file mode 100644 index 00000000..35d12548 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/egrave.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+grave + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/eight.glif b/sources/FixelDisplay-Medium.ufo/glyphs/eight.glif new file mode 100644 index 00000000..bf74e779 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/eight.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/eight.osf.glif b/sources/FixelDisplay-Medium.ufo/glyphs/eight.osf.glif new file mode 100644 index 00000000..89d40e0b --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/eight.osf.glif @@ -0,0 +1,15 @@ + + + + + + + + + com.fontlab.metricsLeft + eight + com.fontlab.metricsRight + eight + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/eight.tf.glif b/sources/FixelDisplay-Medium.ufo/glyphs/eight.tf.glif new file mode 100644 index 00000000..43621995 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/eight.tf.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/eiotifiedcyr.B_G_R_.glif b/sources/FixelDisplay-Medium.ufo/glyphs/eiotifiedcyr.B_G_R_.glif new file mode 100644 index 00000000..319b482e --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/eiotifiedcyr.B_G_R_.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + c + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/eiotifiedcyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/eiotifiedcyr.glif new file mode 100644 index 00000000..e1b16e3d --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/eiotifiedcyr.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + c + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/el-cy.B_G_R_.glif b/sources/FixelDisplay-Medium.ufo/glyphs/el-cy.B_G_R_.glif new file mode 100644 index 00000000..cf0bd7a8 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/el-cy.B_G_R_.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + v + com.fontlab.metricsRight + v + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/el-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/el-cy.glif new file mode 100644 index 00000000..d79ddd83 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/el-cy.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/el-cy.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/el-cy.ss01.glif new file mode 100644 index 00000000..8fd0bd6f --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/el-cy.ss01.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/elS_oft-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/elS_oft-cy.glif new file mode 100644 index 00000000..47950059 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/elS_oft-cy.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/elhookcyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/elhookcyr.glif new file mode 100644 index 00000000..7ea46493 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/elhookcyr.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + н + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/ellipsis.glif b/sources/FixelDisplay-Medium.ufo/glyphs/ellipsis.glif new file mode 100644 index 00000000..3d552055 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/ellipsis.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/elmiddlehookcyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/elmiddlehookcyr.glif new file mode 100644 index 00000000..ec2966cf --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/elmiddlehookcyr.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + enmiddlehookcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/elsharptailcyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/elsharptailcyr.glif new file mode 100644 index 00000000..243a4c2a --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/elsharptailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + ensharptailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/eltailcyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/eltailcyr.glif new file mode 100644 index 00000000..c3781a78 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/eltailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/em-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/em-cy.glif new file mode 100644 index 00000000..fa7ff736 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/em-cy.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/emS_oft-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/emS_oft-cy.glif new file mode 100644 index 00000000..858675d8 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/emS_oft-cy.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + м + com.fontlab.metricsRight + ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/emacron.glif b/sources/FixelDisplay-Medium.ufo/glyphs/emacron.glif new file mode 100644 index 00000000..bfdb4058 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/emacron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+macron + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/emacron.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/emacron.ss01.glif new file mode 100644 index 00000000..0165e56b --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/emacron.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+macron + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/emdash.case.glif b/sources/FixelDisplay-Medium.ufo/glyphs/emdash.case.glif new file mode 100644 index 00000000..6df913fe --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/emdash.case.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/emdash.glif b/sources/FixelDisplay-Medium.ufo/glyphs/emdash.glif new file mode 100644 index 00000000..3d7a7924 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/emdash.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/emsharptailcyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/emsharptailcyr.glif new file mode 100644 index 00000000..5cbd22a4 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/emsharptailcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + м + com.fontlab.metricsRight + ensharptailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/en-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/en-cy.glif new file mode 100644 index 00000000..7ecead76 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/en-cy.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/enclosingcirclecomb.glif b/sources/FixelDisplay-Medium.ufo/glyphs/enclosingcirclecomb.glif new file mode 100644 index 00000000..b716c87c --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/enclosingcirclecomb.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/endash.case.glif b/sources/FixelDisplay-Medium.ufo/glyphs/endash.case.glif new file mode 100644 index 00000000..3160b28a --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/endash.case.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/endash.glif b/sources/FixelDisplay-Medium.ufo/glyphs/endash.glif new file mode 100644 index 00000000..e1246ae1 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/endash.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/eng.glif b/sources/FixelDisplay-Medium.ufo/glyphs/eng.glif new file mode 100644 index 00000000..b39d8a6e --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/eng.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + n + com.fontlab.metricsRight + dotlessj + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/engecyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/engecyr.glif new file mode 100644 index 00000000..440c93f3 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/engecyr.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/enhookcyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/enhookcyr.glif new file mode 100644 index 00000000..7f644e8d --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/enhookcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/enhookleftcyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/enhookleftcyr.glif new file mode 100644 index 00000000..bf380a2c --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/enhookleftcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + j + com.fontlab.metricsRight + н + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/enmiddlehookcyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/enmiddlehookcyr.glif new file mode 100644 index 00000000..8db14f7c --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/enmiddlehookcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + softsign-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/ensharptailcyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/ensharptailcyr.glif new file mode 100644 index 00000000..212890cb --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/ensharptailcyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + д + com.fontlab.recipe + entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/entailcyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/entailcyr.glif new file mode 100644 index 00000000..77995f1f --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/entailcyr.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + ц + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/eogonek.glif b/sources/FixelDisplay-Medium.ufo/glyphs/eogonek.glif new file mode 100644 index 00000000..8e4c1d25 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/eogonek.glif @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + e+ogonek + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/eogonek.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/eogonek.ss01.glif new file mode 100644 index 00000000..39e92543 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/eogonek.ss01.glif @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + e.ss01+ogonek + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/equal.glif b/sources/FixelDisplay-Medium.ufo/glyphs/equal.glif new file mode 100644 index 00000000..17aebcc6 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/equal.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/er-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/er-cy.glif new file mode 100644 index 00000000..efba9c28 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/er-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + p + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/er-cy.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/er-cy.ss01.glif new file mode 100644 index 00000000..9a9b846f --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/er-cy.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + p.ss01 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/ereversed-cy.accented.glif b/sources/FixelDisplay-Medium.ufo/glyphs/ereversed-cy.accented.glif new file mode 100644 index 00000000..ae590b7e --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/ereversed-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + э+acute + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/ereversed-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/ereversed-cy.glif new file mode 100644 index 00000000..e4b8359e --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/ereversed-cy.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |c + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/ereverseddieresiscyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/ereverseddieresiscyr.glif new file mode 100644 index 00000000..467c7d15 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/ereverseddieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ereversed-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/ertickcyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/ertickcyr.glif new file mode 100644 index 00000000..e06a6bd3 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/ertickcyr.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + p + com.fontlab.metricsRight + p + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/es-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/es-cy.glif new file mode 100644 index 00000000..dcefb73b --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/es-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/estailcyr.B_S_H_.glif b/sources/FixelDisplay-Medium.ufo/glyphs/estailcyr.B_S_H_.glif new file mode 100644 index 00000000..f60ea9f7 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/estailcyr.B_S_H_.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + c + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/estailcyr.C_H_U_.glif b/sources/FixelDisplay-Medium.ufo/glyphs/estailcyr.C_H_U_.glif new file mode 100644 index 00000000..5754cf87 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/estailcyr.C_H_U_.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+cedilla + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/estailcyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/estailcyr.glif new file mode 100644 index 00000000..f9b15e70 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/estailcyr.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + с + com.fontlab.metricsRight + с + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/estimated.glif b/sources/FixelDisplay-Medium.ufo/glyphs/estimated.glif new file mode 100644 index 00000000..f5dd6e9f --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/estimated.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/eth.glif b/sources/FixelDisplay-Medium.ufo/glyphs/eth.glif new file mode 100644 index 00000000..f7797516 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/eth.glif @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/eturned.glif b/sources/FixelDisplay-Medium.ufo/glyphs/eturned.glif new file mode 100644 index 00000000..8c6d5057 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/eturned.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + schwacyr + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/euro.glif b/sources/FixelDisplay-Medium.ufo/glyphs/euro.glif new file mode 100644 index 00000000..3858fde5 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/euro.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + C + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/exclam.glif b/sources/FixelDisplay-Medium.ufo/glyphs/exclam.glif new file mode 100644 index 00000000..a019d8b2 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/exclam.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/exclamdown.case.glif b/sources/FixelDisplay-Medium.ufo/glyphs/exclamdown.case.glif new file mode 100644 index 00000000..719e7beb --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/exclamdown.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + exclamdown + com.fontlab.metricsRight + exclamdown + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/exclamdown.glif b/sources/FixelDisplay-Medium.ufo/glyphs/exclamdown.glif new file mode 100644 index 00000000..4c4d291e --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/exclamdown.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/f.glif b/sources/FixelDisplay-Medium.ufo/glyphs/f.glif new file mode 100644 index 00000000..16a76c41 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/f.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/f.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/f.ss01.glif new file mode 100644 index 00000000..4ca04581 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/f.ss01.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/f_f.glif b/sources/FixelDisplay-Medium.ufo/glyphs/f_f.glif new file mode 100644 index 00000000..9a2a9d34 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/f_f.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f + com.fontlab.metricsRight + f + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/f_f.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/f_f.ss01.glif new file mode 100644 index 00000000..f6997a37 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/f_f.ss01.glif @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f.ss01 + com.fontlab.metricsRight + f.ss01 + com.fontlab.recipe + f.ss01_f.ss01 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/f_f_i.glif b/sources/FixelDisplay-Medium.ufo/glyphs/f_f_i.glif new file mode 100644 index 00000000..1ea94a73 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/f_f_i.glif @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f + com.fontlab.metricsRight + i + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/f_f_i.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/f_f_i.ss01.glif new file mode 100644 index 00000000..1abad77a --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/f_f_i.ss01.glif @@ -0,0 +1,88 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f.ss01 + com.fontlab.metricsRight + i + com.fontlab.recipe + f.ss01_f.ss01_i + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/f_f_l.glif b/sources/FixelDisplay-Medium.ufo/glyphs/f_f_l.glif new file mode 100644 index 00000000..f401f24f --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/f_f_l.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f + com.fontlab.metricsRight + l + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/f_f_l.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/f_f_l.ss01.glif new file mode 100644 index 00000000..36dd724a --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/f_f_l.ss01.glif @@ -0,0 +1,86 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f.ss01 + com.fontlab.metricsRight + l.ss01 + com.fontlab.recipe + f.ss01_f.ss01_l.ss01 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/fi.glif b/sources/FixelDisplay-Medium.ufo/glyphs/fi.glif new file mode 100644 index 00000000..0c29cbf1 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/fi.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f + com.fontlab.metricsRight + i + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/fi.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/fi.ss01.glif new file mode 100644 index 00000000..fa7ff935 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/fi.ss01.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f.ss01 + com.fontlab.metricsRight + i + com.fontlab.recipe + f.ss01_i + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/fitacyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/fitacyr.glif new file mode 100644 index 00000000..52ecfff4 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/fitacyr.glif @@ -0,0 +1,76 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + obarcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/five.glif b/sources/FixelDisplay-Medium.ufo/glyphs/five.glif new file mode 100644 index 00000000..115e337d --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/five.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/five.osf.glif b/sources/FixelDisplay-Medium.ufo/glyphs/five.osf.glif new file mode 100644 index 00000000..5b2e8843 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/five.osf.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + five + com.fontlab.metricsRight + five + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/five.tf.glif b/sources/FixelDisplay-Medium.ufo/glyphs/five.tf.glif new file mode 100644 index 00000000..5f604753 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/five.tf.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/fl.glif b/sources/FixelDisplay-Medium.ufo/glyphs/fl.glif new file mode 100644 index 00000000..ea9c1a60 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/fl.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f + com.fontlab.metricsRight + l + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/fl.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/fl.ss01.glif new file mode 100644 index 00000000..ca9a9617 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/fl.ss01.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f.ss01 + com.fontlab.metricsRight + l.ss01 + com.fontlab.recipe + f.ss01_l.ss01 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/floretteblack.glif b/sources/FixelDisplay-Medium.ufo/glyphs/floretteblack.glif new file mode 100644 index 00000000..92dd6bb4 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/floretteblack.glif @@ -0,0 +1,522 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/floretteoutlinedpetalledblackeight.glif b/sources/FixelDisplay-Medium.ufo/glyphs/floretteoutlinedpetalledblackeight.glif new file mode 100644 index 00000000..3602e4f2 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/floretteoutlinedpetalledblackeight.glif @@ -0,0 +1,693 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/florettewhite.glif b/sources/FixelDisplay-Medium.ufo/glyphs/florettewhite.glif new file mode 100644 index 00000000..615cccae --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/florettewhite.glif @@ -0,0 +1,417 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/florin.glif b/sources/FixelDisplay-Medium.ufo/glyphs/florin.glif new file mode 100644 index 00000000..09df3155 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/florin.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/flower.glif b/sources/FixelDisplay-Medium.ufo/glyphs/flower.glif new file mode 100644 index 00000000..aeff2fd0 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/flower.glif @@ -0,0 +1,278 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/four.glif b/sources/FixelDisplay-Medium.ufo/glyphs/four.glif new file mode 100644 index 00000000..87f8dcd8 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/four.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/four.osf.glif b/sources/FixelDisplay-Medium.ufo/glyphs/four.osf.glif new file mode 100644 index 00000000..3d1ea2c9 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/four.osf.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + four + com.fontlab.metricsRight + four + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/four.tf.glif b/sources/FixelDisplay-Medium.ufo/glyphs/four.tf.glif new file mode 100644 index 00000000..1899a04c --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/four.tf.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/fraction.glif b/sources/FixelDisplay-Medium.ufo/glyphs/fraction.glif new file mode 100644 index 00000000..c493f751 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/fraction.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/g.glif b/sources/FixelDisplay-Medium.ufo/glyphs/g.glif new file mode 100644 index 00000000..61c275aa --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/g.glif @@ -0,0 +1,94 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/g.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/g.ss01.glif new file mode 100644 index 00000000..5a47c4f2 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/g.ss01.glif @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/gacute.glif b/sources/FixelDisplay-Medium.ufo/glyphs/gacute.glif new file mode 100644 index 00000000..28e66548 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/gacute.glif @@ -0,0 +1,109 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + g+acute + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/gacute.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/gacute.ss01.glif new file mode 100644 index 00000000..f6d5b2e7 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/gacute.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + g.ss01+acute + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/gbreve.glif b/sources/FixelDisplay-Medium.ufo/glyphs/gbreve.glif new file mode 100644 index 00000000..91840b54 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/gbreve.glif @@ -0,0 +1,119 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + g+breve + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/gbreve.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/gbreve.ss01.glif new file mode 100644 index 00000000..f3e141e3 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/gbreve.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + g.ss01+breve + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/gcircumflex.glif b/sources/FixelDisplay-Medium.ufo/glyphs/gcircumflex.glif new file mode 100644 index 00000000..3dc1630f --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/gcircumflex.glif @@ -0,0 +1,113 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + g+circumflex + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/gcircumflex.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/gcircumflex.ss01.glif new file mode 100644 index 00000000..085f15be --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/gcircumflex.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + g.ss01+circumflex + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/gcommaaccent.glif b/sources/FixelDisplay-Medium.ufo/glyphs/gcommaaccent.glif new file mode 100644 index 00000000..2407051e --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/gcommaaccent.glif @@ -0,0 +1,121 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + g+commaaccentcomb.salt + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/gcommaaccent.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/gcommaaccent.ss01.glif new file mode 100644 index 00000000..4882e543 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/gcommaaccent.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + g.ss01+commaaccentcomb.salt + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/gdotaccent.glif b/sources/FixelDisplay-Medium.ufo/glyphs/gdotaccent.glif new file mode 100644 index 00000000..56f38ed6 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/gdotaccent.glif @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + g+dotaccent + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/gdotaccent.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/gdotaccent.ss01.glif new file mode 100644 index 00000000..108e430c --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/gdotaccent.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + g.ss01+dotaccent + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/ge-cy.B_G_R_.glif b/sources/FixelDisplay-Medium.ufo/glyphs/ge-cy.B_G_R_.glif new file mode 100644 index 00000000..2da24b4e --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/ge-cy.B_G_R_.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |s+5 + com.fontlab.metricsRight + |s+5 + com.fontlab.recipe + dzeReversed-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/ge-cy.S_R_B_.glif b/sources/FixelDisplay-Medium.ufo/glyphs/ge-cy.S_R_B_.glif new file mode 100644 index 00000000..5b8ad35f --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/ge-cy.S_R_B_.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + iota-cy+macron + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/ge-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/ge-cy.glif new file mode 100644 index 00000000..0566cedb --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/ge-cy.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + т + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/gehookcyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/gehookcyr.glif new file mode 100644 index 00000000..dc0475b3 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/gehookcyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + г + com.fontlab.metricsRight + enmiddlehookcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/gehookstrokecyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/gehookstrokecyr.glif new file mode 100644 index 00000000..b0807011 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/gehookstrokecyr.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + gestrokecyr + com.fontlab.metricsRight + gestrokecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/germandbls.glif b/sources/FixelDisplay-Medium.ufo/glyphs/germandbls.glif new file mode 100644 index 00000000..77493ce2 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/germandbls.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + h-5 + com.fontlab.metricsRight + з + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/germandbls.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/germandbls.ss01.glif new file mode 100644 index 00000000..c5dfbc16 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/germandbls.ss01.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f.ss01 + com.fontlab.metricsRight + з + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/gestrokecyr.B_S_H_.glif b/sources/FixelDisplay-Medium.ufo/glyphs/gestrokecyr.B_S_H_.glif new file mode 100644 index 00000000..6849bf0d --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/gestrokecyr.B_S_H_.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + г + com.fontlab.metricsRight + gestrokecyr + com.fontlab.recipe + gestrokecyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/gestrokecyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/gestrokecyr.glif new file mode 100644 index 00000000..b020088c --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/gestrokecyr.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + г + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/getailcyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/getailcyr.glif new file mode 100644 index 00000000..182d1eb4 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/getailcyr.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + г + com.fontlab.metricsRight + г + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/gheupturn-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/gheupturn-cy.glif new file mode 100644 index 00000000..e80ec4b7 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/gheupturn-cy.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + г + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/gjecyr.S_R_B_.glif b/sources/FixelDisplay-Medium.ufo/glyphs/gjecyr.S_R_B_.glif new file mode 100644 index 00000000..2f2ba8fa --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/gjecyr.S_R_B_.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + iota-cy+macronacute.SRB + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/gjecyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/gjecyr.glif new file mode 100644 index 00000000..505f7386 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/gjecyr.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/grave.case.glif b/sources/FixelDisplay-Medium.ufo/glyphs/grave.case.glif new file mode 100644 index 00000000..3db75027 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/grave.case.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/grave.glif b/sources/FixelDisplay-Medium.ufo/glyphs/grave.glif new file mode 100644 index 00000000..876714d3 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/grave.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/greater.glif b/sources/FixelDisplay-Medium.ufo/glyphs/greater.glif new file mode 100644 index 00000000..52a79fe7 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/greater.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |less + com.fontlab.metricsRight + |less + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/greaterequal.glif b/sources/FixelDisplay-Medium.ufo/glyphs/greaterequal.glif new file mode 100644 index 00000000..696c06e0 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/greaterequal.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/guillemetleft.case.glif b/sources/FixelDisplay-Medium.ufo/glyphs/guillemetleft.case.glif new file mode 100644 index 00000000..99c3a373 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/guillemetleft.case.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + guilsinglleft + com.fontlab.metricsRight + guilsinglleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/guillemetleft.glif b/sources/FixelDisplay-Medium.ufo/glyphs/guillemetleft.glif new file mode 100644 index 00000000..50ecaa0e --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/guillemetleft.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + guilsinglleft + com.fontlab.metricsRight + guilsinglleft + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/guillemetright.case.glif b/sources/FixelDisplay-Medium.ufo/glyphs/guillemetright.case.glif new file mode 100644 index 00000000..600a4fa1 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/guillemetright.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |guillemetleft.case + com.fontlab.metricsRight + |guillemetleft.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/guillemetright.glif b/sources/FixelDisplay-Medium.ufo/glyphs/guillemetright.glif new file mode 100644 index 00000000..5c7d50db --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/guillemetright.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |guilsinglleft + com.fontlab.metricsRight + |guilsinglleft + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/guilsinglleft.case.glif b/sources/FixelDisplay-Medium.ufo/glyphs/guilsinglleft.case.glif new file mode 100644 index 00000000..663598bd --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/guilsinglleft.case.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/guilsinglleft.glif b/sources/FixelDisplay-Medium.ufo/glyphs/guilsinglleft.glif new file mode 100644 index 00000000..f210082d --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/guilsinglleft.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/guilsinglright.case.glif b/sources/FixelDisplay-Medium.ufo/glyphs/guilsinglright.case.glif new file mode 100644 index 00000000..512d1fce --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/guilsinglright.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |guilsinglleft + com.fontlab.metricsRight + |guilsinglleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/guilsinglright.glif b/sources/FixelDisplay-Medium.ufo/glyphs/guilsinglright.glif new file mode 100644 index 00000000..0d57567f --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/guilsinglright.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + |guilsinglleft + com.fontlab.metricsRight + |guilsinglleft + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/h.glif b/sources/FixelDisplay-Medium.ufo/glyphs/h.glif new file mode 100644 index 00000000..45d13cb7 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/h.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + com.fontlab.metricsRight + n + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/ha-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/ha-cy.glif new file mode 100644 index 00000000..07eee6bc --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/ha-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + x + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/haabkhcyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/haabkhcyr.glif new file mode 100644 index 00000000..745f13f9 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/haabkhcyr.glif @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + |o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/hahookcyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/hahookcyr.glif new file mode 100644 index 00000000..3b7f6c05 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/hahookcyr.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + x + com.fontlab.metricsRight + x + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/hardsign-cy.B_G_R_.glif b/sources/FixelDisplay-Medium.ufo/glyphs/hardsign-cy.B_G_R_.glif new file mode 100644 index 00000000..99036a65 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/hardsign-cy.B_G_R_.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/hardsign-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/hardsign-cy.glif new file mode 100644 index 00000000..81c8842d --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/hardsign-cy.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/hardsign-cy.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/hardsign-cy.ss01.glif new file mode 100644 index 00000000..b8a9fa6d --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/hardsign-cy.ss01.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/hastrokecyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/hastrokecyr.glif new file mode 100644 index 00000000..f9f9f1f8 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/hastrokecyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + x + com.fontlab.metricsRight + x + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/hbar.glif b/sources/FixelDisplay-Medium.ufo/glyphs/hbar.glif new file mode 100644 index 00000000..55433aff --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/hbar.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + h + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/hcircumflex.glif b/sources/FixelDisplay-Medium.ufo/glyphs/hcircumflex.glif new file mode 100644 index 00000000..02a6a56c --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/hcircumflex.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + h+circumflex.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/heart.glif b/sources/FixelDisplay-Medium.ufo/glyphs/heart.glif new file mode 100644 index 00000000..33683d2b --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/heart.glif @@ -0,0 +1,320 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/heartwhite.glif b/sources/FixelDisplay-Medium.ufo/glyphs/heartwhite.glif new file mode 100644 index 00000000..a9085c0c --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/heartwhite.glif @@ -0,0 +1,189 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =34 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/hryvnia.glif b/sources/FixelDisplay-Medium.ufo/glyphs/hryvnia.glif new file mode 100644 index 00000000..224fadab --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/hryvnia.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/hundredmillionscomb-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/hundredmillionscomb-cy.glif new file mode 100644 index 00000000..8ca0ba06 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/hundredmillionscomb-cy.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/hundredthousandscombcyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/hundredthousandscombcyr.glif new file mode 100644 index 00000000..48594b6f --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/hundredthousandscombcyr.glif @@ -0,0 +1,141 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/hungarumlaut.case.glif b/sources/FixelDisplay-Medium.ufo/glyphs/hungarumlaut.case.glif new file mode 100644 index 00000000..74358a2a --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/hungarumlaut.case.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/hungarumlaut.glif b/sources/FixelDisplay-Medium.ufo/glyphs/hungarumlaut.glif new file mode 100644 index 00000000..622aa087 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/hungarumlaut.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/hwe-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/hwe-cy.glif new file mode 100644 index 00000000..88030cc4 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/hwe-cy.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + h + com.fontlab.metricsRight + h + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/hyphen.case.glif b/sources/FixelDisplay-Medium.ufo/glyphs/hyphen.case.glif new file mode 100644 index 00000000..e3344fcb --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/hyphen.case.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.metricsLeft + hyphen + com.fontlab.metricsRight + hyphen + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/hyphen.glif b/sources/FixelDisplay-Medium.ufo/glyphs/hyphen.glif new file mode 100644 index 00000000..43334f05 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/hyphen.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/i-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/i-cy.glif new file mode 100644 index 00000000..4f9e1ef2 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/i-cy.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + i + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/i.glif b/sources/FixelDisplay-Medium.ufo/glyphs/i.glif new file mode 100644 index 00000000..591ed01f --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/i.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + dotlessi+dotaccent + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/ia-cy.accented.glif b/sources/FixelDisplay-Medium.ufo/glyphs/ia-cy.accented.glif new file mode 100644 index 00000000..b9909a0b --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/ia-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + я+acute + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/ia-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/ia-cy.glif new file mode 100644 index 00000000..925c7f5b --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/ia-cy.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/ia-cy.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/ia-cy.ss01.glif new file mode 100644 index 00000000..a8bcfb89 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/ia-cy.ss01.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/iacute.glif b/sources/FixelDisplay-Medium.ufo/glyphs/iacute.glif new file mode 100644 index 00000000..cbc4c8d3 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/iacute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + dotlessi+acute + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/ibreve.glif b/sources/FixelDisplay-Medium.ufo/glyphs/ibreve.glif new file mode 100644 index 00000000..605979a8 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/ibreve.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + dotlessi+breve + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/icircumflex.glif b/sources/FixelDisplay-Medium.ufo/glyphs/icircumflex.glif new file mode 100644 index 00000000..c6d95eaa --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/icircumflex.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + dotlessi+circumflex + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/idieresis.glif b/sources/FixelDisplay-Medium.ufo/glyphs/idieresis.glif new file mode 100644 index 00000000..2c747d4f --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/idieresis.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + idotless+dieresis.alt + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/idieresiscyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/idieresiscyr.glif new file mode 100644 index 00000000..4ba4e381 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/idieresiscyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ii-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/idotless.glif b/sources/FixelDisplay-Medium.ufo/glyphs/idotless.glif new file mode 100644 index 00000000..394c4c96 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/idotless.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/ie-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/ie-cy.glif new file mode 100644 index 00000000..ec574240 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/ie-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/ie-cy.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/ie-cy.ss01.glif new file mode 100644 index 00000000..e2c35425 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/ie-cy.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/iebrevecyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/iebrevecyr.glif new file mode 100644 index 00000000..67e2c344 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/iebrevecyr.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+breve + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/iegravecyr.S_R_B_.glif b/sources/FixelDisplay-Medium.ufo/glyphs/iegravecyr.S_R_B_.glif new file mode 100644 index 00000000..8925fbe6 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/iegravecyr.S_R_B_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+grave + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/iegravecyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/iegravecyr.glif new file mode 100644 index 00000000..8ba35a13 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/iegravecyr.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+grave + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/igrave.glif b/sources/FixelDisplay-Medium.ufo/glyphs/igrave.glif new file mode 100644 index 00000000..a62b3652 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/igrave.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + dotlessi+grave + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/igravecyr.S_R_B_.glif b/sources/FixelDisplay-Medium.ufo/glyphs/igravecyr.S_R_B_.glif new file mode 100644 index 00000000..e90e3875 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/igravecyr.S_R_B_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+grave + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/igravecyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/igravecyr.glif new file mode 100644 index 00000000..3e861c59 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/igravecyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ii-cy+grave + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/ii-cy.B_G_R_.glif b/sources/FixelDisplay-Medium.ufo/glyphs/ii-cy.B_G_R_.glif new file mode 100644 index 00000000..760a02e8 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/ii-cy.B_G_R_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/ii-cy.accented.glif b/sources/FixelDisplay-Medium.ufo/glyphs/ii-cy.accented.glif new file mode 100644 index 00000000..a29eb180 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/ii-cy.accented.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + и+acute + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/ii-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/ii-cy.glif new file mode 100644 index 00000000..e01709dc --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/ii-cy.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/iishort-cy.B_G_R_.glif b/sources/FixelDisplay-Medium.ufo/glyphs/iishort-cy.B_G_R_.glif new file mode 100644 index 00000000..f5d25697 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/iishort-cy.B_G_R_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/iishort-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/iishort-cy.glif new file mode 100644 index 00000000..dee2b567 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/iishort-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + icyr+breve + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/ij.glif b/sources/FixelDisplay-Medium.ufo/glyphs/ij.glif new file mode 100644 index 00000000..9de5ec47 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/ij.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + i + com.fontlab.metricsRight + j + com.fontlab.recipe + i_j + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/imacron.glif b/sources/FixelDisplay-Medium.ufo/glyphs/imacron.glif new file mode 100644 index 00000000..fcac712c --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/imacron.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =5 + com.fontlab.metricsRight + =5 + com.fontlab.recipe + idotless+macron + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/imacroncyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/imacroncyr.glif new file mode 100644 index 00000000..c3532da1 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/imacroncyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ii-cy+macron + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/increment.glif b/sources/FixelDisplay-Medium.ufo/glyphs/increment.glif new file mode 100644 index 00000000..124cbc28 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/increment.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/infinity.glif b/sources/FixelDisplay-Medium.ufo/glyphs/infinity.glif new file mode 100644 index 00000000..cfd5a14a --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/infinity.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/integral.glif b/sources/FixelDisplay-Medium.ufo/glyphs/integral.glif new file mode 100644 index 00000000..539f127f --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/integral.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/io-cy.accented.glif b/sources/FixelDisplay-Medium.ufo/glyphs/io-cy.accented.glif new file mode 100644 index 00000000..f042a8bf --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/io-cy.accented.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsLeft + e + com.fontlab.metricsRight + e + com.fontlab.recipe + e+dieresisacute + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/io-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/io-cy.glif new file mode 100644 index 00000000..aff7cb13 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/io-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + edieresis + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/io-cy.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/io-cy.ss01.glif new file mode 100644 index 00000000..48ee7eac --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/io-cy.ss01.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + edieresis.ss01 + com.schriftgestaltung.Glyphs.ComponentInfo + + + alignment + -1 + index + 0 + name + edieresis.ss01 + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/iogonek.glif b/sources/FixelDisplay-Medium.ufo/glyphs/iogonek.glif new file mode 100644 index 00000000..cede07ee --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/iogonek.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + i+ogonek + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/iota-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/iota-cy.glif new file mode 100644 index 00000000..7e7f4ec6 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/iota-cy.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l.ss01 + com.fontlab.metricsRight + l.ss01 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/iotifieda-cy.B_G_R_.glif b/sources/FixelDisplay-Medium.ufo/glyphs/iotifieda-cy.B_G_R_.glif new file mode 100644 index 00000000..8ea9aa1f --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/iotifieda-cy.B_G_R_.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + el-cy.BGR + com.fontlab.recipe + iotifieda-cy + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/iotifieda-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/iotifieda-cy.glif new file mode 100644 index 00000000..29bef831 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/iotifieda-cy.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + yusClosedlittle-cy + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/iotifieda-cy.hist.glif b/sources/FixelDisplay-Medium.ufo/glyphs/iotifieda-cy.hist.glif new file mode 100644 index 00000000..1b5ab2d8 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/iotifieda-cy.hist.glif @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + reversedzecyr + com.fontlab.metricsRight + a + public.markColor + 0.6,0.997,1,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/ishortsharptailcyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/ishortsharptailcyr.glif new file mode 100644 index 00000000..a8320045 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/ishortsharptailcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + й + com.fontlab.metricsRight + ensharptailcyr + com.fontlab.recipe + й + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/itilde.glif b/sources/FixelDisplay-Medium.ufo/glyphs/itilde.glif new file mode 100644 index 00000000..59ddb779 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/itilde.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + dotlessi+tilde + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/iu-cy.B_G_R_.glif b/sources/FixelDisplay-Medium.ufo/glyphs/iu-cy.B_G_R_.glif new file mode 100644 index 00000000..4bccb48d --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/iu-cy.B_G_R_.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + o + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/iu-cy.accented.glif b/sources/FixelDisplay-Medium.ufo/glyphs/iu-cy.accented.glif new file mode 100644 index 00000000..223e3813 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/iu-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ю+acute + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/iu-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/iu-cy.glif new file mode 100644 index 00000000..f3804462 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/iu-cy.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/izhitsacyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/izhitsacyr.glif new file mode 100644 index 00000000..6780fcf9 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/izhitsacyr.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + v + com.fontlab.metricsRight + + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/izhitsagravedblcyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/izhitsagravedblcyr.glif new file mode 100644 index 00000000..3b30f668 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/izhitsagravedblcyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + com.fontlab.metricsLeft + izhitsacyr + com.fontlab.metricsRight + izhitsacyr + com.fontlab.recipe + izhitsacyr+hungarumlaut + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/j.glif b/sources/FixelDisplay-Medium.ufo/glyphs/j.glif new file mode 100644 index 00000000..1a57a8df --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/j.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + i + com.fontlab.recipe + dotlessj+dotaccent + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/jcircumflex.glif b/sources/FixelDisplay-Medium.ufo/glyphs/jcircumflex.glif new file mode 100644 index 00000000..77976098 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/jcircumflex.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + dotlessj+circumflex + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/jdotless.glif b/sources/FixelDisplay-Medium.ufo/glyphs/jdotless.glif new file mode 100644 index 00000000..a80ae25b --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/jdotless.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + l + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/je-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/je-cy.glif new file mode 100644 index 00000000..ff5a8d34 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/je-cy.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + j + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/k.glif b/sources/FixelDisplay-Medium.ufo/glyphs/k.glif new file mode 100644 index 00000000..4a2696dd --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/k.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/ka-cy.B_G_R_.glif b/sources/FixelDisplay-Medium.ufo/glyphs/ka-cy.B_G_R_.glif new file mode 100644 index 00000000..d849cb6c --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/ka-cy.B_G_R_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + k + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/ka-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/ka-cy.glif new file mode 100644 index 00000000..314ba14a --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/ka-cy.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + k + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/kaaleutcyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/kaaleutcyr.glif new file mode 100644 index 00000000..a2f0195b --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/kaaleutcyr.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + k + com.fontlab.metricsRight + k + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/kabashkcyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/kabashkcyr.glif new file mode 100644 index 00000000..0a589e1a --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/kabashkcyr.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hardsign-cy + com.fontlab.metricsRight + k + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/kahookcyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/kahookcyr.glif new file mode 100644 index 00000000..398a3050 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/kahookcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + n + com.fontlab.metricsRight + k+10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/kastrokecyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/kastrokecyr.glif new file mode 100644 index 00000000..61097f5d --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/kastrokecyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hbar + com.fontlab.metricsRight + k + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/katailcyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/katailcyr.glif new file mode 100644 index 00000000..fe8d9dd1 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/katailcyr.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + k + com.fontlab.metricsRight + к-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/kaverticalstrokecyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/kaverticalstrokecyr.glif new file mode 100644 index 00000000..9c08554c --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/kaverticalstrokecyr.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + k + com.fontlab.metricsRight + k + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/kcommaaccent.glif b/sources/FixelDisplay-Medium.ufo/glyphs/kcommaaccent.glif new file mode 100644 index 00000000..395b4785 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/kcommaaccent.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsLeft + k + com.fontlab.metricsRight + k + com.fontlab.recipe + k+commaaccentcomb + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/kgreenlandic.glif b/sources/FixelDisplay-Medium.ufo/glyphs/kgreenlandic.glif new file mode 100644 index 00000000..a782946f --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/kgreenlandic.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + kacyr + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/kjecyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/kjecyr.glif new file mode 100644 index 00000000..9930161a --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/kjecyr.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/knightblack.glif b/sources/FixelDisplay-Medium.ufo/glyphs/knightblack.glif new file mode 100644 index 00000000..cddc4a85 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/knightblack.glif @@ -0,0 +1,313 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =30 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/knightwhite.glif b/sources/FixelDisplay-Medium.ufo/glyphs/knightwhite.glif new file mode 100644 index 00000000..7cd48120 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/knightwhite.glif @@ -0,0 +1,320 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/koppacyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/koppacyr.glif new file mode 100644 index 00000000..e433a5b1 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/koppacyr.glif @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + c-20 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/ksicyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/ksicyr.glif new file mode 100644 index 00000000..ec2c261b --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/ksicyr.glif @@ -0,0 +1,102 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + з-10 + com.fontlab.metricsRight + з + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/l.glif b/sources/FixelDisplay-Medium.ufo/glyphs/l.glif new file mode 100644 index 00000000..ab7a85cc --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/l.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/l.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/l.ss01.glif new file mode 100644 index 00000000..6ebdd64b --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/l.ss01.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/lacute.glif b/sources/FixelDisplay-Medium.ufo/glyphs/lacute.glif new file mode 100644 index 00000000..90a5d6ff --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/lacute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l+acute.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/lacute.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/lacute.ss01.glif new file mode 100644 index 00000000..a9ff3761 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/lacute.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l.ss01+acute.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/layerinfo.plist b/sources/FixelDisplay-Medium.ufo/glyphs/layerinfo.plist new file mode 100644 index 00000000..8c198655 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/layerinfo.plist @@ -0,0 +1,21 @@ + + + + + lib + + com.fontlab.layer.name + Body + com.fontlab.layer.opacity + 1 + com.fontlab.layer.visible + + com.fontlab.layer.locked + + com.fontlab.layer.service + + com.fontlab.layer.wireframe + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/lcaron.glif b/sources/FixelDisplay-Medium.ufo/glyphs/lcaron.glif new file mode 100644 index 00000000..c99cfd1a --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/lcaron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l+caron.salt + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/lcaron.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/lcaron.ss01.glif new file mode 100644 index 00000000..a2487b01 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/lcaron.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l.ss01+caron.salt + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/lcommaaccent.glif b/sources/FixelDisplay-Medium.ufo/glyphs/lcommaaccent.glif new file mode 100644 index 00000000..2314490a --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/lcommaaccent.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l+commaaccentcomb + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/lcommaaccent.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/lcommaaccent.ss01.glif new file mode 100644 index 00000000..c3e5e4a7 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/lcommaaccent.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l.ss01+commaaccentcomb + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/ldot.glif b/sources/FixelDisplay-Medium.ufo/glyphs/ldot.glif new file mode 100644 index 00000000..6197563b --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/ldot.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/ldot.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/ldot.ss01.glif new file mode 100644 index 00000000..ae736c51 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/ldot.ss01.glif @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + l.ss01_periodcentered + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/leo.glif b/sources/FixelDisplay-Medium.ufo/glyphs/leo.glif new file mode 100644 index 00000000..e94326bb --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/leo.glif @@ -0,0 +1,494 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/less.glif b/sources/FixelDisplay-Medium.ufo/glyphs/less.glif new file mode 100644 index 00000000..3099db9b --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/less.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/lessequal.glif b/sources/FixelDisplay-Medium.ufo/glyphs/lessequal.glif new file mode 100644 index 00000000..474ffe7a --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/lessequal.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/lhacyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/lhacyr.glif new file mode 100644 index 00000000..4a73ba4a --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/lhacyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + х + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/ljecyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/ljecyr.glif new file mode 100644 index 00000000..258e0f53 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/ljecyr.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + ь + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/ljecyr.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/ljecyr.ss01.glif new file mode 100644 index 00000000..a50da587 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/ljecyr.ss01.glif @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + ь + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/ljekomicyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/ljekomicyr.glif new file mode 100644 index 00000000..913950ef --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/ljekomicyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + njekomicyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/longs.glif b/sources/FixelDisplay-Medium.ufo/glyphs/longs.glif new file mode 100644 index 00000000..4249e430 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/longs.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + n + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/lslash.glif b/sources/FixelDisplay-Medium.ufo/glyphs/lslash.glif new file mode 100644 index 00000000..df1bdfc8 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/lslash.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Lslash+12 + com.fontlab.metricsRight + |Lslash+12 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/lslash.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/lslash.ss01.glif new file mode 100644 index 00000000..4cdf7c78 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/lslash.ss01.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Lslash-10 + com.fontlab.metricsRight + |Lslash + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/m.glif b/sources/FixelDisplay-Medium.ufo/glyphs/m.glif new file mode 100644 index 00000000..66943d11 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/m.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + n + com.fontlab.metricsRight + n + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/macron-fwd.alt.glif b/sources/FixelDisplay-Medium.ufo/glyphs/macron-fwd.alt.glif new file mode 100644 index 00000000..6d931d50 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/macron-fwd.alt.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/macron-fwd.glif b/sources/FixelDisplay-Medium.ufo/glyphs/macron-fwd.glif new file mode 100644 index 00000000..e1a79af9 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/macron-fwd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/macron.case.glif b/sources/FixelDisplay-Medium.ufo/glyphs/macron.case.glif new file mode 100644 index 00000000..2af6c5c0 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/macron.case.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/macron.glif b/sources/FixelDisplay-Medium.ufo/glyphs/macron.glif new file mode 100644 index 00000000..dd7bbcd4 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/macron.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/macronacute.S_R_B_.glif b/sources/FixelDisplay-Medium.ufo/glyphs/macronacute.S_R_B_.glif new file mode 100644 index 00000000..ee3d3202 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/macronacute.S_R_B_.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + macron+acute + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/millionscombcyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/millionscombcyr.glif new file mode 100644 index 00000000..05c76550 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/millionscombcyr.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/minus.glif b/sources/FixelDisplay-Medium.ufo/glyphs/minus.glif new file mode 100644 index 00000000..715dc48f --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/minus.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/minute.glif b/sources/FixelDisplay-Medium.ufo/glyphs/minute.glif new file mode 100644 index 00000000..b8facde2 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/minute.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/mu.glif b/sources/FixelDisplay-Medium.ufo/glyphs/mu.glif new file mode 100644 index 00000000..0908c7f5 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/mu.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + p + com.fontlab.metricsRight + u + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/multiply.glif b/sources/FixelDisplay-Medium.ufo/glyphs/multiply.glif new file mode 100644 index 00000000..80462267 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/multiply.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/n.glif b/sources/FixelDisplay-Medium.ufo/glyphs/n.glif new file mode 100644 index 00000000..2cde43bb --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/n.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/nacute.glif b/sources/FixelDisplay-Medium.ufo/glyphs/nacute.glif new file mode 100644 index 00000000..e6b9b82d --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/nacute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + n+acute + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/napostrophe.glif b/sources/FixelDisplay-Medium.ufo/glyphs/napostrophe.glif new file mode 100644 index 00000000..4a3f5ca2 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/napostrophe.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + com.fontlab.metricsRight + n + com.schriftgestaltung.Glyphs.ComponentInfo + + + alignment + -1 + index + 0 + name + n + + + alignment + -1 + index + 1 + name + quoteright + + + com.schriftgestaltung.Glyphs.rightMetricsKey + n + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/ncaron.glif b/sources/FixelDisplay-Medium.ufo/glyphs/ncaron.glif new file mode 100644 index 00000000..bea6168e --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/ncaron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + n+caron + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/ncommaaccent.glif b/sources/FixelDisplay-Medium.ufo/glyphs/ncommaaccent.glif new file mode 100644 index 00000000..23d5dd8e --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/ncommaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + n+commaaccentcomb + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/neptune.glif b/sources/FixelDisplay-Medium.ufo/glyphs/neptune.glif new file mode 100644 index 00000000..ad90f47c --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/neptune.glif @@ -0,0 +1,125 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ш + com.fontlab.metricsRight + Ш + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/nine.glif b/sources/FixelDisplay-Medium.ufo/glyphs/nine.glif new file mode 100644 index 00000000..d6842164 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/nine.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + |six + com.fontlab.metricsRight + |six + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/nine.osf.glif b/sources/FixelDisplay-Medium.ufo/glyphs/nine.osf.glif new file mode 100644 index 00000000..2f7d0328 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/nine.osf.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |six + com.fontlab.metricsRight + |six + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/nine.tf.glif b/sources/FixelDisplay-Medium.ufo/glyphs/nine.tf.glif new file mode 100644 index 00000000..b96c7178 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/nine.tf.glif @@ -0,0 +1,7 @@ + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/njecyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/njecyr.glif new file mode 100644 index 00000000..20bcdd0d --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/njecyr.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + ь + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/njecyr.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/njecyr.ss01.glif new file mode 100644 index 00000000..8da999fa --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/njecyr.ss01.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + ь + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/njekomicyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/njekomicyr.glif new file mode 100644 index 00000000..21158241 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/njekomicyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + |u + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/notequal.glif b/sources/FixelDisplay-Medium.ufo/glyphs/notequal.glif new file mode 100644 index 00000000..8022b8a8 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/notequal.glif @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/ntilde.glif b/sources/FixelDisplay-Medium.ufo/glyphs/ntilde.glif new file mode 100644 index 00000000..570a61ee --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/ntilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + n+tilde + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/numbersign.glif b/sources/FixelDisplay-Medium.ufo/glyphs/numbersign.glif new file mode 100644 index 00000000..119dd4c4 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/numbersign.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/numero.glif b/sources/FixelDisplay-Medium.ufo/glyphs/numero.glif new file mode 100644 index 00000000..ad8cefe1 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/numero.glif @@ -0,0 +1,90 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + N + com.fontlab.recipe + N+ordmasculine + com.schriftgestaltung.Glyphs.ComponentInfo + + + alignment + -1 + index + 0 + name + N + + + alignment + -1 + index + 1 + name + ordmasculine + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/numero.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/numero.ss01.glif new file mode 100644 index 00000000..3bf192ba --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/numero.ss01.glif @@ -0,0 +1,95 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + N.ss01 + com.fontlab.metricsRight + ordmasculine + com.fontlab.recipe + N.ss01+ordmasculine + com.schriftgestaltung.Glyphs.ComponentInfo + + + alignment + -1 + index + 0 + name + ordmasculine + + + alignment + -1 + index + 1 + name + N.ss01 + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/o-cy.accented.glif b/sources/FixelDisplay-Medium.ufo/glyphs/o-cy.accented.glif new file mode 100644 index 00000000..120533a3 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/o-cy.accented.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+acute + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/o-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/o-cy.glif new file mode 100644 index 00000000..ab0804a8 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/o-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/o.glif b/sources/FixelDisplay-Medium.ufo/glyphs/o.glif new file mode 100644 index 00000000..97fb4a7a --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/o.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/oB_inocular-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/oB_inocular-cy.glif new file mode 100644 index 00000000..587f84e0 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/oB_inocular-cy.glif @@ -0,0 +1,81 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/oD_oubleM_onocular-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/oD_oubleM_onocular-cy.glif new file mode 100644 index 00000000..b4e74b79 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/oD_oubleM_onocular-cy.glif @@ -0,0 +1,121 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + com.fontlab.recipe + doubleo-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/oM_onocular-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/oM_onocular-cy.glif new file mode 100644 index 00000000..9e4f0408 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/oM_onocular-cy.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/oacute.glif b/sources/FixelDisplay-Medium.ufo/glyphs/oacute.glif new file mode 100644 index 00000000..6fb11f64 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/oacute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+acute + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/obarcyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/obarcyr.glif new file mode 100644 index 00000000..282dad29 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/obarcyr.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/obardieresiscyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/obardieresiscyr.glif new file mode 100644 index 00000000..7509691f --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/obardieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + obarcyr+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/obreve.glif b/sources/FixelDisplay-Medium.ufo/glyphs/obreve.glif new file mode 100644 index 00000000..ef08286b --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/obreve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+breve + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/ocircumflex.glif b/sources/FixelDisplay-Medium.ufo/glyphs/ocircumflex.glif new file mode 100644 index 00000000..5b750df1 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/ocircumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+circumflex + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/odieresis.glif b/sources/FixelDisplay-Medium.ufo/glyphs/odieresis.glif new file mode 100644 index 00000000..ee0aae52 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/odieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+dieresis + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/odieresiscyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/odieresiscyr.glif new file mode 100644 index 00000000..449ff537 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/odieresiscyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/oe.glif b/sources/FixelDisplay-Medium.ufo/glyphs/oe.glif new file mode 100644 index 00000000..0a3653ac --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/oe.glif @@ -0,0 +1,86 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + e + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/oe.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/oe.ss01.glif new file mode 100644 index 00000000..3eeea8d8 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/oe.ss01.glif @@ -0,0 +1,95 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + e.ss01 + public.markColor + 0.6,0.997,1,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/ogonek.glif b/sources/FixelDisplay-Medium.ufo/glyphs/ogonek.glif new file mode 100644 index 00000000..43a16b34 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/ogonek.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/ograve.glif b/sources/FixelDisplay-Medium.ufo/glyphs/ograve.glif new file mode 100644 index 00000000..af87f258 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/ograve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+grave + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/ohungarumlaut.glif b/sources/FixelDisplay-Medium.ufo/glyphs/ohungarumlaut.glif new file mode 100644 index 00000000..70a54d39 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/ohungarumlaut.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+hungarumlaut + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/omacron.glif b/sources/FixelDisplay-Medium.ufo/glyphs/omacron.glif new file mode 100644 index 00000000..4d35f27d --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/omacron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+macron + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/omegaB_road-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/omegaB_road-cy.glif new file mode 100644 index 00000000..fed78f04 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/omegaB_road-cy.glif @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o+5 + com.fontlab.metricsRight + o+5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/omegacyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/omegacyr.glif new file mode 100644 index 00000000..ced6d7f8 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/omegacyr.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + w + com.fontlab.metricsRight + w + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/omegaroundcyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/omegaroundcyr.glif new file mode 100644 index 00000000..fe529724 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/omegaroundcyr.glif @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/omegatitlocyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/omegatitlocyr.glif new file mode 100644 index 00000000..1a26ef51 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/omegatitlocyr.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o+5 + com.fontlab.metricsRight + o+5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/omultiocular-cy.alt.glif b/sources/FixelDisplay-Medium.ufo/glyphs/omultiocular-cy.alt.glif new file mode 100644 index 00000000..19de1995 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/omultiocular-cy.alt.glif @@ -0,0 +1,366 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + oMonocular-cy + com.fontlab.metricsRight + oMonocular-cy + public.markColor + 0.6,0.997,1,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/omultiocular-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/omultiocular-cy.glif new file mode 100644 index 00000000..dc4aa5b0 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/omultiocular-cy.glif @@ -0,0 +1,517 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + oMonocular-cy + com.fontlab.metricsRight + oMonocular-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/one.glif b/sources/FixelDisplay-Medium.ufo/glyphs/one.glif new file mode 100644 index 00000000..bccb0340 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/one.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =40 + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/one.osf.glif b/sources/FixelDisplay-Medium.ufo/glyphs/one.osf.glif new file mode 100644 index 00000000..34659d6d --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/one.osf.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + one + com.fontlab.metricsRight + one + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/one.tf.glif b/sources/FixelDisplay-Medium.ufo/glyphs/one.tf.glif new file mode 100644 index 00000000..09d24af6 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/one.tf.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/onehalf.glif b/sources/FixelDisplay-Medium.ufo/glyphs/onehalf.glif new file mode 100644 index 00000000..8edc5c49 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/onehalf.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/onequarter.glif b/sources/FixelDisplay-Medium.ufo/glyphs/onequarter.glif new file mode 100644 index 00000000..93486e6a --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/onequarter.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/onesuperior.glif b/sources/FixelDisplay-Medium.ufo/glyphs/onesuperior.glif new file mode 100644 index 00000000..b4b864f6 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/onesuperior.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/ordfeminine.glif b/sources/FixelDisplay-Medium.ufo/glyphs/ordfeminine.glif new file mode 100644 index 00000000..6fd1f695 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/ordfeminine.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/ordmasculine.glif b/sources/FixelDisplay-Medium.ufo/glyphs/ordmasculine.glif new file mode 100644 index 00000000..46530cd8 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/ordmasculine.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/oslash.glif b/sources/FixelDisplay-Medium.ufo/glyphs/oslash.glif new file mode 100644 index 00000000..c85f190a --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/oslash.glif @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/oslashacute.glif b/sources/FixelDisplay-Medium.ufo/glyphs/oslashacute.glif new file mode 100644 index 00000000..d1d8b48a --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/oslashacute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + oslash+acute + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/otcyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/otcyr.glif new file mode 100644 index 00000000..d78b2799 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/otcyr.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsRight + w + com.fontlab.recipe + omegacyr+uni2DEE + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/otilde.glif b/sources/FixelDisplay-Medium.ufo/glyphs/otilde.glif new file mode 100644 index 00000000..0f759173 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/otilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+tilde + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/p.glif b/sources/FixelDisplay-Medium.ufo/glyphs/p.glif new file mode 100644 index 00000000..1f76b229 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/p.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/p.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/p.ss01.glif new file mode 100644 index 00000000..e4f1daef --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/p.ss01.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/palatcombcyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/palatcombcyr.glif new file mode 100644 index 00000000..54e84225 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/palatcombcyr.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/palochkacyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/palochkacyr.glif new file mode 100644 index 00000000..95bc2b0f --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/palochkacyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/paragraph.glif b/sources/FixelDisplay-Medium.ufo/glyphs/paragraph.glif new file mode 100644 index 00000000..6af58480 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/paragraph.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |P + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/parenleft.case.glif b/sources/FixelDisplay-Medium.ufo/glyphs/parenleft.case.glif new file mode 100644 index 00000000..f64c5371 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/parenleft.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |parenright.case + com.fontlab.metricsRight + |parenright.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/parenleft.glif b/sources/FixelDisplay-Medium.ufo/glyphs/parenleft.glif new file mode 100644 index 00000000..a5f8b037 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/parenleft.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/parenright.case.glif b/sources/FixelDisplay-Medium.ufo/glyphs/parenright.case.glif new file mode 100644 index 00000000..1ecee109 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/parenright.case.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + parenright + com.fontlab.metricsRight + parenright + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/parenright.glif b/sources/FixelDisplay-Medium.ufo/glyphs/parenright.glif new file mode 100644 index 00000000..35c02fac --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/parenright.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/partialdiff.glif b/sources/FixelDisplay-Medium.ufo/glyphs/partialdiff.glif new file mode 100644 index 00000000..a6a8f818 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/partialdiff.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/pe-cy.B_G_R_.glif b/sources/FixelDisplay-Medium.ufo/glyphs/pe-cy.B_G_R_.glif new file mode 100644 index 00000000..2f280587 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/pe-cy.B_G_R_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + n + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/pe-cy.S_R_B_.glif b/sources/FixelDisplay-Medium.ufo/glyphs/pe-cy.S_R_B_.glif new file mode 100644 index 00000000..59e14c1d --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/pe-cy.S_R_B_.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+macron-fwd.alt + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/pe-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/pe-cy.glif new file mode 100644 index 00000000..ba224bf9 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/pe-cy.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/pehookcyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/pehookcyr.glif new file mode 100644 index 00000000..6573764f --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/pehookcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + п + com.fontlab.metricsRight + enmiddlehookcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/percent.glif b/sources/FixelDisplay-Medium.ufo/glyphs/percent.glif new file mode 100644 index 00000000..570f4590 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/percent.glif @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/period.glif b/sources/FixelDisplay-Medium.ufo/glyphs/period.glif new file mode 100644 index 00000000..41eecf13 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/period.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/periodcentered.glif b/sources/FixelDisplay-Medium.ufo/glyphs/periodcentered.glif new file mode 100644 index 00000000..7161b2e0 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/periodcentered.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/perthousand.glif b/sources/FixelDisplay-Medium.ufo/glyphs/perthousand.glif new file mode 100644 index 00000000..565bfde4 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/perthousand.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/petailcyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/petailcyr.glif new file mode 100644 index 00000000..32015670 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/petailcyr.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + п + com.fontlab.metricsRight + entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/pi.glif b/sources/FixelDisplay-Medium.ufo/glyphs/pi.glif new file mode 100644 index 00000000..99aadee4 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/pi.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f + com.fontlab.metricsRight + t + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/plus.glif b/sources/FixelDisplay-Medium.ufo/glyphs/plus.glif new file mode 100644 index 00000000..df5e3ce9 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/plus.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/plusminus.glif b/sources/FixelDisplay-Medium.ufo/glyphs/plusminus.glif new file mode 100644 index 00000000..23ef2acd --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/plusminus.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/pokrytiecombcyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/pokrytiecombcyr.glif new file mode 100644 index 00000000..1d8cacf0 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/pokrytiecombcyr.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/product.glif b/sources/FixelDisplay-Medium.ufo/glyphs/product.glif new file mode 100644 index 00000000..295b62dc --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/product.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/proportional.glif b/sources/FixelDisplay-Medium.ufo/glyphs/proportional.glif new file mode 100644 index 00000000..23cbd435 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/proportional.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/psicyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/psicyr.glif new file mode 100644 index 00000000..fea80989 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/psicyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + u + com.fontlab.metricsRight + |u + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/q.glif b/sources/FixelDisplay-Medium.ufo/glyphs/q.glif new file mode 100644 index 00000000..b60e0446 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/q.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/q.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/q.ss01.glif new file mode 100644 index 00000000..d73b73f4 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/q.ss01.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/qacyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/qacyr.glif new file mode 100644 index 00000000..be5e9db9 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/qacyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + q + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/question.glif b/sources/FixelDisplay-Medium.ufo/glyphs/question.glif new file mode 100644 index 00000000..95dda8f3 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/question.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/questiondown.case.glif b/sources/FixelDisplay-Medium.ufo/glyphs/questiondown.case.glif new file mode 100644 index 00000000..60d1d724 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/questiondown.case.glif @@ -0,0 +1,19 @@ + + + + + + + + + com.fontlab.metricsLeft + |question + com.fontlab.metricsRight + |question + com.fontlab.recipe + questiondown + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/questiondown.glif b/sources/FixelDisplay-Medium.ufo/glyphs/questiondown.glif new file mode 100644 index 00000000..f6ba94e0 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/questiondown.glif @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |question + com.fontlab.metricsRight + |question + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/quotedbl.glif b/sources/FixelDisplay-Medium.ufo/glyphs/quotedbl.glif new file mode 100644 index 00000000..7a249316 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/quotedbl.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/quotedblbase.glif b/sources/FixelDisplay-Medium.ufo/glyphs/quotedblbase.glif new file mode 100644 index 00000000..9d6663c6 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/quotedblbase.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + comma + com.fontlab.metricsRight + comma + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/quotedblleft.glif b/sources/FixelDisplay-Medium.ufo/glyphs/quotedblleft.glif new file mode 100644 index 00000000..5adbd2da --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/quotedblleft.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + |comma + com.fontlab.metricsRight + |comma + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/quotedblright.glif b/sources/FixelDisplay-Medium.ufo/glyphs/quotedblright.glif new file mode 100644 index 00000000..484a9e65 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/quotedblright.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.metricsLeft + comma+20 + com.fontlab.metricsRight + comma-20 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/quoteleft.glif b/sources/FixelDisplay-Medium.ufo/glyphs/quoteleft.glif new file mode 100644 index 00000000..6965eff2 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/quoteleft.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + quotedblleft + com.fontlab.metricsRight + quotedblleft + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/quoteright.glif b/sources/FixelDisplay-Medium.ufo/glyphs/quoteright.glif new file mode 100644 index 00000000..ff401958 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/quoteright.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + com.fontlab.metricsLeft + quotedblright + com.fontlab.metricsRight + quotedblright + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/quotesinglbase.glif b/sources/FixelDisplay-Medium.ufo/glyphs/quotesinglbase.glif new file mode 100644 index 00000000..23afff06 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/quotesinglbase.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + com.fontlab.recipe + comma + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/quotesingle.glif b/sources/FixelDisplay-Medium.ufo/glyphs/quotesingle.glif new file mode 100644 index 00000000..6cc82086 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/quotesingle.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/r.glif b/sources/FixelDisplay-Medium.ufo/glyphs/r.glif new file mode 100644 index 00000000..3747551e --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/r.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/racute.glif b/sources/FixelDisplay-Medium.ufo/glyphs/racute.glif new file mode 100644 index 00000000..14831474 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/racute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + r+acute + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/radical.glif b/sources/FixelDisplay-Medium.ufo/glyphs/radical.glif new file mode 100644 index 00000000..145fabca --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/radical.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + V + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/rcaron.glif b/sources/FixelDisplay-Medium.ufo/glyphs/rcaron.glif new file mode 100644 index 00000000..c0014fec --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/rcaron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + r+caron + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/rcommaaccent.glif b/sources/FixelDisplay-Medium.ufo/glyphs/rcommaaccent.glif new file mode 100644 index 00000000..5e30f237 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/rcommaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + r+commaaccentcomb + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/registered.glif b/sources/FixelDisplay-Medium.ufo/glyphs/registered.glif new file mode 100644 index 00000000..c991ec9b --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/registered.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/reversedzecyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/reversedzecyr.glif new file mode 100644 index 00000000..249c830b --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/reversedzecyr.glif @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + + com.fontlab.metricsRight + + com.fontlab.recipe + з + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/rhacyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/rhacyr.glif new file mode 100644 index 00000000..b643364b --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/rhacyr.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + p + com.fontlab.metricsRight + x + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/ring.case.glif b/sources/FixelDisplay-Medium.ufo/glyphs/ring.case.glif new file mode 100644 index 00000000..0869d6be --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/ring.case.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/ring.glif b/sources/FixelDisplay-Medium.ufo/glyphs/ring.glif new file mode 100644 index 00000000..92854128 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/ring.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/rookblack.glif b/sources/FixelDisplay-Medium.ufo/glyphs/rookblack.glif new file mode 100644 index 00000000..3f8dd8fe --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/rookblack.glif @@ -0,0 +1,270 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =30 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/ruble.glif b/sources/FixelDisplay-Medium.ufo/glyphs/ruble.glif new file mode 100644 index 00000000..22e6affb --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/ruble.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + P + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/s.glif b/sources/FixelDisplay-Medium.ufo/glyphs/s.glif new file mode 100644 index 00000000..13e8df18 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/s.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/sacute.glif b/sources/FixelDisplay-Medium.ufo/glyphs/sacute.glif new file mode 100644 index 00000000..dff57e8a --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/sacute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + s+acute + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/scaron.glif b/sources/FixelDisplay-Medium.ufo/glyphs/scaron.glif new file mode 100644 index 00000000..682b51b2 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/scaron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + s+caron + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/scedilla.glif b/sources/FixelDisplay-Medium.ufo/glyphs/scedilla.glif new file mode 100644 index 00000000..ace7f9ef --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/scedilla.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + s+cedilla + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/schwacyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/schwacyr.glif new file mode 100644 index 00000000..5f8f6a5d --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/schwacyr.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |e + com.fontlab.metricsRight + o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/schwadieresiscyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/schwadieresiscyr.glif new file mode 100644 index 00000000..f0256f6c --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/schwadieresiscyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + schwacyr+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/scircumflex.glif b/sources/FixelDisplay-Medium.ufo/glyphs/scircumflex.glif new file mode 100644 index 00000000..e410832b --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/scircumflex.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + s+circumflex + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/scommaaccent.glif b/sources/FixelDisplay-Medium.ufo/glyphs/scommaaccent.glif new file mode 100644 index 00000000..fe1eff39 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/scommaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + s+commaaccentcomb + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/second.glif b/sources/FixelDisplay-Medium.ufo/glyphs/second.glif new file mode 100644 index 00000000..1b0c3c91 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/second.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/section.glif b/sources/FixelDisplay-Medium.ufo/glyphs/section.glif new file mode 100644 index 00000000..004857a6 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/section.glif @@ -0,0 +1,87 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + S + com.fontlab.metricsRight + S + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/semicolon.case.glif b/sources/FixelDisplay-Medium.ufo/glyphs/semicolon.case.glif new file mode 100644 index 00000000..d3377b93 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/semicolon.case.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.metricsLeft + semicolon + com.fontlab.metricsRight + semicolon + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/semicolon.glif b/sources/FixelDisplay-Medium.ufo/glyphs/semicolon.glif new file mode 100644 index 00000000..c9d3e9d1 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/semicolon.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/semisoftcyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/semisoftcyr.glif new file mode 100644 index 00000000..86613234 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/semisoftcyr.glif @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + t + com.fontlab.metricsRight + ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/seven.glif b/sources/FixelDisplay-Medium.ufo/glyphs/seven.glif new file mode 100644 index 00000000..d331f455 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/seven.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/seven.osf.glif b/sources/FixelDisplay-Medium.ufo/glyphs/seven.osf.glif new file mode 100644 index 00000000..c4cb810a --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/seven.osf.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + seven + com.fontlab.metricsRight + seven + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/seven.tf.glif b/sources/FixelDisplay-Medium.ufo/glyphs/seven.tf.glif new file mode 100644 index 00000000..4cc06321 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/seven.tf.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/sha-cy.B_G_R_.glif b/sources/FixelDisplay-Medium.ufo/glyphs/sha-cy.B_G_R_.glif new file mode 100644 index 00000000..3ffccd68 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/sha-cy.B_G_R_.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + u + com.fontlab.metricsRight + l + com.fontlab.recipe + m + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/sha-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/sha-cy.glif new file mode 100644 index 00000000..ac97543a --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/sha-cy.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/shcha-cy.B_G_R_.glif b/sources/FixelDisplay-Medium.ufo/glyphs/shcha-cy.B_G_R_.glif new file mode 100644 index 00000000..4ea3610a --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/shcha-cy.B_G_R_.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + u + com.fontlab.metricsRight + щ + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/shcha-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/shcha-cy.glif new file mode 100644 index 00000000..1f8c7807 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/shcha-cy.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + д + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/shhacyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/shhacyr.glif new file mode 100644 index 00000000..ba60e319 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/shhacyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsRight + n + com.fontlab.recipe + h + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/shhatailcyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/shhatailcyr.glif new file mode 100644 index 00000000..4a29c2c1 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/shhatailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + h + com.fontlab.metricsRight + entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/shwe-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/shwe-cy.glif new file mode 100644 index 00000000..c403b8c1 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/shwe-cy.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + щ + com.fontlab.metricsRight + щ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/six.glif b/sources/FixelDisplay-Medium.ufo/glyphs/six.glif new file mode 100644 index 00000000..b6032523 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/six.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/six.osf.glif b/sources/FixelDisplay-Medium.ufo/glyphs/six.osf.glif new file mode 100644 index 00000000..a1648546 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/six.osf.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + six + com.fontlab.metricsRight + six + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/six.tf.glif b/sources/FixelDisplay-Medium.ufo/glyphs/six.tf.glif new file mode 100644 index 00000000..9705ed7b --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/six.tf.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/sjekomicyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/sjekomicyr.glif new file mode 100644 index 00000000..538beedf --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/sjekomicyr.glif @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + e + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/slash.case.glif b/sources/FixelDisplay-Medium.ufo/glyphs/slash.case.glif new file mode 100644 index 00000000..ddcd5893 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/slash.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + slash + com.fontlab.metricsRight + slash + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/slash.glif b/sources/FixelDisplay-Medium.ufo/glyphs/slash.glif new file mode 100644 index 00000000..d3a1e3ad --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/slash.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/softsign-cy.B_G_R_.glif b/sources/FixelDisplay-Medium.ufo/glyphs/softsign-cy.B_G_R_.glif new file mode 100644 index 00000000..f800fb63 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/softsign-cy.B_G_R_.glif @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + u + com.fontlab.metricsRight + ь-5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/softsign-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/softsign-cy.glif new file mode 100644 index 00000000..4ec2932b --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/softsign-cy.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/softsign-cy.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/softsign-cy.ss01.glif new file mode 100644 index 00000000..a48c2857 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/softsign-cy.ss01.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/space.glif b/sources/FixelDisplay-Medium.ufo/glyphs/space.glif new file mode 100644 index 00000000..0a8f9a9d --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/space.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/spadewhite.glif b/sources/FixelDisplay-Medium.ufo/glyphs/spadewhite.glif new file mode 100644 index 00000000..a9024849 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/spadewhite.glif @@ -0,0 +1,453 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/sterling.glif b/sources/FixelDisplay-Medium.ufo/glyphs/sterling.glif new file mode 100644 index 00000000..d99517c1 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/sterling.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/summation.glif b/sources/FixelDisplay-Medium.ufo/glyphs/summation.glif new file mode 100644 index 00000000..8c11acbe --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/summation.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/t.glif b/sources/FixelDisplay-Medium.ufo/glyphs/t.glif new file mode 100644 index 00000000..997199ba --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/t.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/t.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/t.ss01.glif new file mode 100644 index 00000000..fb3a446a --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/t.ss01.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/tbar.glif b/sources/FixelDisplay-Medium.ufo/glyphs/tbar.glif new file mode 100644 index 00000000..b81f2936 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/tbar.glif @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/tbar.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/tbar.ss01.glif new file mode 100644 index 00000000..09b47820 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/tbar.ss01.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/tcaron.glif b/sources/FixelDisplay-Medium.ufo/glyphs/tcaron.glif new file mode 100644 index 00000000..af7fee9d --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/tcaron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.metricsLeft + t + com.fontlab.metricsRight + t + com.fontlab.recipe + t+caron.salt + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/tcaron.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/tcaron.ss01.glif new file mode 100644 index 00000000..cbbc70d3 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/tcaron.ss01.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + com.fontlab.recipe + t.ss01+caron.salt + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/tcedilla.glif b/sources/FixelDisplay-Medium.ufo/glyphs/tcedilla.glif new file mode 100644 index 00000000..e8712887 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/tcedilla.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + t+cedilla + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/tcedilla.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/tcedilla.ss01.glif new file mode 100644 index 00000000..0647e460 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/tcedilla.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + t.ss01+cedilla + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/tche-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/tche-cy.glif new file mode 100644 index 00000000..990acce6 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/tche-cy.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + tetsecyr-20 + com.fontlab.metricsRight + ч + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/tcommaaccent.glif b/sources/FixelDisplay-Medium.ufo/glyphs/tcommaaccent.glif new file mode 100644 index 00000000..511671fb --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/tcommaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + t+commaaccentcomb + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/tcommaaccent.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/tcommaaccent.ss01.glif new file mode 100644 index 00000000..83d154b9 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/tcommaaccent.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + t.ss01+commaaccentcomb + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/te-cy.B_G_R_.glif b/sources/FixelDisplay-Medium.ufo/glyphs/te-cy.B_G_R_.glif new file mode 100644 index 00000000..9596e48f --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/te-cy.B_G_R_.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + m + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/te-cy.S_R_B_.glif b/sources/FixelDisplay-Medium.ufo/glyphs/te-cy.S_R_B_.glif new file mode 100644 index 00000000..b7f5c4d9 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/te-cy.S_R_B_.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ш.BGR+macron-fwd + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/te-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/te-cy.glif new file mode 100644 index 00000000..743e4b5a --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/te-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/te-cy.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/te-cy.ss01.glif new file mode 100644 index 00000000..87cb298c --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/te-cy.ss01.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/tenge.glif b/sources/FixelDisplay-Medium.ufo/glyphs/tenge.glif new file mode 100644 index 00000000..06579065 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/tenge.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + T + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/tenmillionscomb-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/tenmillionscomb-cy.glif new file mode 100644 index 00000000..14712fc6 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/tenmillionscomb-cy.glif @@ -0,0 +1,109 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/tetailcyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/tetailcyr.glif new file mode 100644 index 00000000..7cb8a11e --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/tetailcyr.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + т + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/tetsecyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/tetsecyr.glif new file mode 100644 index 00000000..959b6ccf --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/tetsecyr.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + т + com.fontlab.metricsRight + ц + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/tewithmiddlehook-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/tewithmiddlehook-cy.glif new file mode 100644 index 00000000..e63e5dbd --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/tewithmiddlehook-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + т + com.fontlab.metricsRight + gehookcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/thorn.glif b/sources/FixelDisplay-Medium.ufo/glyphs/thorn.glif new file mode 100644 index 00000000..49bf5880 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/thorn.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + b + com.fontlab.metricsRight + b + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/thousandmillionscomb-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/thousandmillionscomb-cy.glif new file mode 100644 index 00000000..291ed6f2 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/thousandmillionscomb-cy.glif @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/thousandscyr.dnom.glif b/sources/FixelDisplay-Medium.ufo/glyphs/thousandscyr.dnom.glif new file mode 100644 index 00000000..843dcd94 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/thousandscyr.dnom.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + | + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/thousandscyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/thousandscyr.glif new file mode 100644 index 00000000..2344efb2 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/thousandscyr.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + | + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/three.glif b/sources/FixelDisplay-Medium.ufo/glyphs/three.glif new file mode 100644 index 00000000..8222151a --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/three.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/three.osf.glif b/sources/FixelDisplay-Medium.ufo/glyphs/three.osf.glif new file mode 100644 index 00000000..87287540 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/three.osf.glif @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + three + com.fontlab.metricsRight + three + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/three.tf.glif b/sources/FixelDisplay-Medium.ufo/glyphs/three.tf.glif new file mode 100644 index 00000000..eacb5969 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/three.tf.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/threequarters.glif b/sources/FixelDisplay-Medium.ufo/glyphs/threequarters.glif new file mode 100644 index 00000000..506c0e95 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/threequarters.glif @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/threesuperior.glif b/sources/FixelDisplay-Medium.ufo/glyphs/threesuperior.glif new file mode 100644 index 00000000..c0bc8d87 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/threesuperior.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/tilde.case.glif b/sources/FixelDisplay-Medium.ufo/glyphs/tilde.case.glif new file mode 100644 index 00000000..1fe01003 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/tilde.case.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/tilde.glif b/sources/FixelDisplay-Medium.ufo/glyphs/tilde.glif new file mode 100644 index 00000000..48deed4d --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/tilde.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/titlocombcyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/titlocombcyr.glif new file mode 100644 index 00000000..d096b7e8 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/titlocombcyr.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/tjekomicyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/tjekomicyr.glif new file mode 100644 index 00000000..54f51a63 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/tjekomicyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + т + com.fontlab.metricsRight + njekomicyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/trademark.glif b/sources/FixelDisplay-Medium.ufo/glyphs/trademark.glif new file mode 100644 index 00000000..de2f744e --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/trademark.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/tse-cy.B_G_R_.glif b/sources/FixelDisplay-Medium.ufo/glyphs/tse-cy.B_G_R_.glif new file mode 100644 index 00000000..a205b594 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/tse-cy.B_G_R_.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + u + com.fontlab.metricsRight + ц + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/tse-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/tse-cy.glif new file mode 100644 index 00000000..75cf16b7 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/tse-cy.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + д + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/tseR_eversed-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/tseR_eversed-cy.glif new file mode 100644 index 00000000..ad5ec4fa --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/tseR_eversed-cy.glif @@ -0,0 +1,20 @@ + + + + + + + + + + com.fontlab.metricsLeft + + com.fontlab.metricsRight + н + com.fontlab.recipe + ц + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/tshecyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/tshecyr.glif new file mode 100644 index 00000000..341289fe --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/tshecyr.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + hbar + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/tsse-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/tsse-cy.glif new file mode 100644 index 00000000..058e4649 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/tsse-cy.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + т + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/tswe-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/tswe-cy.glif new file mode 100644 index 00000000..936ef221 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/tswe-cy.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ш + com.fontlab.metricsRight + shwe-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/twe-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/twe-cy.glif new file mode 100644 index 00000000..94d98d1f --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/twe-cy.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + т.ss01 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/two.glif b/sources/FixelDisplay-Medium.ufo/glyphs/two.glif new file mode 100644 index 00000000..bf2f58ec --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/two.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/two.osf.glif b/sources/FixelDisplay-Medium.ufo/glyphs/two.osf.glif new file mode 100644 index 00000000..b532ea30 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/two.osf.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + two + com.fontlab.metricsRight + two + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/two.tf.glif b/sources/FixelDisplay-Medium.ufo/glyphs/two.tf.glif new file mode 100644 index 00000000..92c484dd --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/two.tf.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/twosuperior.glif b/sources/FixelDisplay-Medium.ufo/glyphs/twosuperior.glif new file mode 100644 index 00000000..f3150db4 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/twosuperior.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/u-cy.accented.glif b/sources/FixelDisplay-Medium.ufo/glyphs/u-cy.accented.glif new file mode 100644 index 00000000..90f75066 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/u-cy.accented.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + y+acute + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/u-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/u-cy.glif new file mode 100644 index 00000000..cf6b8ee6 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/u-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + y + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/u.glif b/sources/FixelDisplay-Medium.ufo/glyphs/u.glif new file mode 100644 index 00000000..fee47277 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/u.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |n + com.fontlab.metricsRight + l + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/uacute.glif b/sources/FixelDisplay-Medium.ufo/glyphs/uacute.glif new file mode 100644 index 00000000..00c93eea --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/uacute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+acute + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/uacutedblcyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/uacutedblcyr.glif new file mode 100644 index 00000000..82a8b3a5 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/uacutedblcyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u-cy+hungarumlaut + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/ubreve.glif b/sources/FixelDisplay-Medium.ufo/glyphs/ubreve.glif new file mode 100644 index 00000000..235978fc --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/ubreve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+breve + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/ucircumflex.glif b/sources/FixelDisplay-Medium.ufo/glyphs/ucircumflex.glif new file mode 100644 index 00000000..491a2858 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/ucircumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+circumflex + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/udieresis.glif b/sources/FixelDisplay-Medium.ufo/glyphs/udieresis.glif new file mode 100644 index 00000000..217f3e54 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/udieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+dieresis + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/udieresiscyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/udieresiscyr.glif new file mode 100644 index 00000000..161920c9 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/udieresiscyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/ugrave.glif b/sources/FixelDisplay-Medium.ufo/glyphs/ugrave.glif new file mode 100644 index 00000000..ea8cf047 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/ugrave.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+grave + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/uhungarumlaut.glif b/sources/FixelDisplay-Medium.ufo/glyphs/uhungarumlaut.glif new file mode 100644 index 00000000..e729e145 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/uhungarumlaut.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+hungarumlaut + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/ukM_onograph-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/ukM_onograph-cy.glif new file mode 100644 index 00000000..006a22cf --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/ukM_onograph-cy.glif @@ -0,0 +1,78 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + y-30 + com.fontlab.metricsRight + y-20 + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/ukcyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/ukcyr.glif new file mode 100644 index 00000000..d3ef5cc9 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/ukcyr.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + y + com.fontlab.recipe + uni1C82_у + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/umacron.glif b/sources/FixelDisplay-Medium.ufo/glyphs/umacron.glif new file mode 100644 index 00000000..37bd9637 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/umacron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+macron + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/umacroncyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/umacroncyr.glif new file mode 100644 index 00000000..b1c3f967 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/umacroncyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u-cy+macron + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/underscore.glif b/sources/FixelDisplay-Medium.ufo/glyphs/underscore.glif new file mode 100644 index 00000000..2f7684dc --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/underscore.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/uni1C_80.glif b/sources/FixelDisplay-Medium.ufo/glyphs/uni1C_80.glif new file mode 100644 index 00000000..5440518a --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/uni1C_80.glif @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + б + com.fontlab.metricsRight + o-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/uni1C_81.glif b/sources/FixelDisplay-Medium.ufo/glyphs/uni1C_81.glif new file mode 100644 index 00000000..cd0b68e9 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/uni1C_81.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + д-10 + com.fontlab.metricsRight + | + com.fontlab.recipe + д + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/uni1C_82.glif b/sources/FixelDisplay-Medium.ufo/glyphs/uni1C_82.glif new file mode 100644 index 00000000..836647a6 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/uni1C_82.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/uni1C_83.glif b/sources/FixelDisplay-Medium.ufo/glyphs/uni1C_83.glif new file mode 100644 index 00000000..e3432067 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/uni1C_83.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + c + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/uni1C_84.glif b/sources/FixelDisplay-Medium.ufo/glyphs/uni1C_84.glif new file mode 100644 index 00000000..cefd3b00 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/uni1C_84.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/uni1C_85.glif b/sources/FixelDisplay-Medium.ufo/glyphs/uni1C_85.glif new file mode 100644 index 00000000..99b8a832 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/uni1C_85.glif @@ -0,0 +1,20 @@ + + + + + + + + + + com.fontlab.metricsLeft + ш + com.fontlab.metricsRight + l() + com.fontlab.recipe + ш + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/uni1C_86.glif b/sources/FixelDisplay-Medium.ufo/glyphs/uni1C_86.glif new file mode 100644 index 00000000..1aa472e1 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/uni1C_86.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + uni1C84 + com.fontlab.metricsRight + ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/uni1C_87.glif b/sources/FixelDisplay-Medium.ufo/glyphs/uni1C_87.glif new file mode 100644 index 00000000..49050056 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/uni1C_87.glif @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + uni1C84-40 + com.fontlab.metricsRight + ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/uni1C_88.glif b/sources/FixelDisplay-Medium.ufo/glyphs/uni1C_88.glif new file mode 100644 index 00000000..f87f1f62 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/uni1C_88.glif @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/uni1E_B_C_.glif b/sources/FixelDisplay-Medium.ufo/glyphs/uni1E_B_C_.glif new file mode 100644 index 00000000..6524d988 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/uni1E_B_C_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+tilde.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/uni1E_B_D_.glif b/sources/FixelDisplay-Medium.ufo/glyphs/uni1E_B_D_.glif new file mode 100644 index 00000000..0714557c --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/uni1E_B_D_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+tilde + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/uni2010.glif b/sources/FixelDisplay-Medium.ufo/glyphs/uni2010.glif new file mode 100644 index 00000000..ccecddaa --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/uni2010.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + hyphen + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/uni2D_E_E_.case.glif b/sources/FixelDisplay-Medium.ufo/glyphs/uni2D_E_E_.case.glif new file mode 100644 index 00000000..23ee8b59 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/uni2D_E_E_.case.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/uni2D_E_E_.glif b/sources/FixelDisplay-Medium.ufo/glyphs/uni2D_E_E_.glif new file mode 100644 index 00000000..d0222f00 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/uni2D_E_E_.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/uniE_000.alt.glif b/sources/FixelDisplay-Medium.ufo/glyphs/uniE_000.alt.glif new file mode 100644 index 00000000..cb4f9075 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/uniE_000.alt.glif @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + ї_ї + public.markColor + 0.6,0.997,1,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/uniE_000.glif b/sources/FixelDisplay-Medium.ufo/glyphs/uniE_000.glif new file mode 100644 index 00000000..3a801d77 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/uniE_000.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + ї_ї + public.markColor + 0.6,0.997,1,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/uniE_01A_.glif b/sources/FixelDisplay-Medium.ufo/glyphs/uniE_01A_.glif new file mode 100644 index 00000000..404237a4 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/uniE_01A_.glif @@ -0,0 +1,115 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/uniF_43A_.glif b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_43A_.glif new file mode 100644 index 00000000..cfd23ade --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_43A_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/uniF_43B_.glif b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_43B_.glif new file mode 100644 index 00000000..af40915b --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_43B_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ustraightcyr+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/uniF_45D_.glif b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_45D_.glif new file mode 100644 index 00000000..d169a8f3 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_45D_.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Є+acute.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/uniF_45E_.glif b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_45E_.glif new file mode 100644 index 00000000..706c3c1d --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_45E_.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Iacute + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/uniF_45F_.glif b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_45F_.glif new file mode 100644 index 00000000..37073f1f --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_45F_.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + com.fontlab.recipe + I+dieresiscase.alt+acute.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/uniF_475.glif b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_475.glif new file mode 100644 index 00000000..518592d0 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_475.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + є+acute + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/uniF_476.glif b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_476.glif new file mode 100644 index 00000000..7ce9d703 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_476.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + iacute + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/uniF_477.glif b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_477.glif new file mode 100644 index 00000000..cdd20d5e --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_477.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + dotlessi+dieresisacute + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/uniF_478.glif b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_478.glif new file mode 100644 index 00000000..b01f3e5d --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_478.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Yat+acute.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/uniF_479.glif b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_479.glif new file mode 100644 index 00000000..3d5c2784 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_479.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + yat+acute + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/uniF_498.glif b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_498.glif new file mode 100644 index 00000000..17ae5804 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_498.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ю+dieresis.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/uniF_499.glif b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_499.glif new file mode 100644 index 00000000..0972ac1a --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_499.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ю+dieresis + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/uniF_49A_.glif b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_49A_.glif new file mode 100644 index 00000000..0d00d0f9 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_49A_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Obarcyr+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/uniF_49B_.glif b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_49B_.glif new file mode 100644 index 00000000..7bdd8401 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_49B_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + obarcyr+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/uniF_49C_.glif b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_49C_.glif new file mode 100644 index 00000000..03f2d8e6 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_49C_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Schwacyr+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/uniF_49D_.glif b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_49D_.glif new file mode 100644 index 00000000..d3f3e7fd --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_49D_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + schwacyr+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/uniF_49E_.glif b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_49E_.glif new file mode 100644 index 00000000..8f8e62bc --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_49E_.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Yatcyr + com.fontlab.metricsRight + Tshecyr + com.fontlab.recipe + Shhacyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/uniF_49F_.glif b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_49F_.glif new file mode 100644 index 00000000..e3d8ebb0 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_49F_.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + hbar + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/uniF_4C_6.glif b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_4C_6.glif new file mode 100644 index 00000000..0c929a20 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_4C_6.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ч + com.fontlab.metricsRight + Ч + com.fontlab.recipe + Ч + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/uniF_4C_7.glif b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_4C_7.glif new file mode 100644 index 00000000..82cd14bd --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_4C_7.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ч + com.fontlab.metricsRight + ч + com.fontlab.recipe + ч+enhookcyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/uniF_4C_C_.glif b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_4C_C_.glif new file mode 100644 index 00000000..b059476c --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_4C_C_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + У+acute.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/uniF_4C_D_.glif b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_4C_D_.glif new file mode 100644 index 00000000..d25dc1ac --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_4C_D_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + y+acute + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/uniF_4D_2.glif b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_4D_2.glif new file mode 100644 index 00000000..4059343d --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_4D_2.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+grave.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/uniF_4D_3.glif b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_4D_3.glif new file mode 100644 index 00000000..b26580c8 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_4D_3.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+grave + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/uniF_4D_4.glif b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_4D_4.glif new file mode 100644 index 00000000..4af623c8 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_4D_4.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + P+caron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/uniF_4D_5.glif b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_4D_5.glif new file mode 100644 index 00000000..5a435b8b --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_4D_5.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + p+caron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/uniF_4D_6.glif b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_4D_6.glif new file mode 100644 index 00000000..ae33d51b --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_4D_6.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Э+dotaccent.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/uniF_4D_7.glif b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_4D_7.glif new file mode 100644 index 00000000..210cf66b --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_4D_7.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + э+dotaccent + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/uniF_4D_8.glif b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_4D_8.glif new file mode 100644 index 00000000..2c8716cb --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_4D_8.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Я+dieresis.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/uniF_4D_9.glif b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_4D_9.glif new file mode 100644 index 00000000..8e944995 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_4D_9.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + я+dieresis + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/uniF_50E_.glif b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_50E_.glif new file mode 100644 index 00000000..67156bb8 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_50E_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/uniF_50F_.glif b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_50F_.glif new file mode 100644 index 00000000..5ea12191 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_50F_.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/uniF_510.glif b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_510.glif new file mode 100644 index 00000000..1e9acdda --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_510.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/uniF_511.glif b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_511.glif new file mode 100644 index 00000000..cbb2b277 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_511.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/uniF_512.glif b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_512.glif new file mode 100644 index 00000000..fd826fa9 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_512.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + com.fontlab.metricsLeft + E + com.fontlab.metricsRight + E + com.fontlab.recipe + E+dieresis.case+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/uniF_513.glif b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_513.glif new file mode 100644 index 00000000..e31fd2f7 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_513.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.recipe + e+dieresis+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/uniF_514.glif b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_514.glif new file mode 100644 index 00000000..40f284b3 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_514.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + com.fontlab.metricsLeft + E + com.fontlab.metricsRight + E + com.fontlab.recipe + E+dieresis.case+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/uniF_515.glif b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_515.glif new file mode 100644 index 00000000..d6429912 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_515.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.recipe + e+dieresis+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/uniF_516.glif b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_516.glif new file mode 100644 index 00000000..6bee5ef8 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_516.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + З+caron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/uniF_517.glif b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_517.glif new file mode 100644 index 00000000..0fe0ddf1 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_517.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + з+caron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/uniF_518.glif b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_518.glif new file mode 100644 index 00000000..32680c38 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_518.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/uniF_519.glif b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_519.glif new file mode 100644 index 00000000..4bf0d0f1 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_519.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/uniF_51A_.glif b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_51A_.glif new file mode 100644 index 00000000..7ddd8fdc --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_51A_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/uniF_51B_.glif b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_51B_.glif new file mode 100644 index 00000000..e89c8b09 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_51B_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/uniF_51C_.glif b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_51C_.glif new file mode 100644 index 00000000..1ea02b06 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_51C_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Obarcyr+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/uniF_51D_.glif b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_51D_.glif new file mode 100644 index 00000000..aede95bb --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_51D_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + obarcyr+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/uniF_51E_.glif b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_51E_.glif new file mode 100644 index 00000000..66141fea --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_51E_.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + com.fontlab.recipe + Obarcyr+dieresis.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/uniF_51F_.glif b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_51F_.glif new file mode 100644 index 00000000..cfab1e33 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_51F_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.recipe + obarcyr+dieresis+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/uniF_521.glif b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_521.glif new file mode 100644 index 00000000..e8f4fd7e --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_521.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ы+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/uniF_522.glif b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_522.glif new file mode 100644 index 00000000..a1fe20b5 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_522.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Э+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/uniF_523.glif b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_523.glif new file mode 100644 index 00000000..d7e3add4 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_523.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + э+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/uniF_524.glif b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_524.glif new file mode 100644 index 00000000..c21d1c25 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_524.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Э+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/uniF_525.glif b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_525.glif new file mode 100644 index 00000000..9080129b --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_525.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + э+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/uniF_526.glif b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_526.glif new file mode 100644 index 00000000..3e4f689b --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_526.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Є+dieresis.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/uniF_527.glif b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_527.glif new file mode 100644 index 00000000..1dbe62f3 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_527.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + є+dieresis + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/uniF_528.glif b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_528.glif new file mode 100644 index 00000000..87bdc23c --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_528.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Я+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/uniF_529.glif b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_529.glif new file mode 100644 index 00000000..12351707 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_529.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + я+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/uniF_52A_.glif b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_52A_.glif new file mode 100644 index 00000000..482f17bd --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_52A_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Я+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/uniF_52B_.glif b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_52B_.glif new file mode 100644 index 00000000..916bdc10 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_52B_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + я+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/uniF_52C_.glif b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_52C_.glif new file mode 100644 index 00000000..1e1f90fc --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_52C_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ю+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/uniF_52D_.glif b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_52D_.glif new file mode 100644 index 00000000..96335641 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_52D_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ю+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/uniF_52E_.glif b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_52E_.glif new file mode 100644 index 00000000..ca3e2a50 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_52E_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ю+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/uniF_52F_.glif b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_52F_.glif new file mode 100644 index 00000000..572fbb94 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_52F_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ю+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/uniF_532.glif b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_532.glif new file mode 100644 index 00000000..45b76fb5 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_532.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Й + com.fontlab.metricsRight + Й + com.fontlab.recipe + Й + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/uniF_533.glif b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_533.glif new file mode 100644 index 00000000..cd5c917e --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_533.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + l() + com.fontlab.recipe + й+enhookcyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/uniF_536.glif b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_536.glif new file mode 100644 index 00000000..be1deb0a --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_536.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ы+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/uniF_537.glif b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_537.glif new file mode 100644 index 00000000..47aadedc --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_537.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ы+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/uniF_538.glif b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_538.glif new file mode 100644 index 00000000..6ed27bfb --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_538.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Reversedzecyr+dieresis.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/uniF_539.glif b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_539.glif new file mode 100644 index 00000000..f1edc87f --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_539.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + reversedzecyr+dieresis + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/uniF_830.glif b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_830.glif new file mode 100644 index 00000000..7adf7eea --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_830.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+circumflex.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/uniF_831.glif b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_831.glif new file mode 100644 index 00000000..1fb480d5 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_831.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+circumflex + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/uniF_833.glif b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_833.glif new file mode 100644 index 00000000..f54839be --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_833.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+circumflex.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/uniF_834.glif b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_834.glif new file mode 100644 index 00000000..443b272f --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_834.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+circumflex + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/uniF_839.glif b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_839.glif new file mode 100644 index 00000000..541ae9ac --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_839.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+circumflex.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/uniF_83A_.glif b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_83A_.glif new file mode 100644 index 00000000..703d976e --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_83A_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+circumflex + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/uniF_86F_.glif b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_86F_.glif new file mode 100644 index 00000000..090d287d --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_86F_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + K+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/uniF_870.glif b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_870.glif new file mode 100644 index 00000000..1b6c09d8 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_870.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + к+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/uniF_872.glif b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_872.glif new file mode 100644 index 00000000..e5bedad9 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_872.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Л+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/uniF_873.glif b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_873.glif new file mode 100644 index 00000000..5a589b50 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_873.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + л+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/uniF_875.glif b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_875.glif new file mode 100644 index 00000000..5c4c5a7b --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_875.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/uniF_876.glif b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_876.glif new file mode 100644 index 00000000..8390d679 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_876.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/uniF_878.glif b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_878.glif new file mode 100644 index 00000000..eb7ac51b --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_878.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + X+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/uniF_879.glif b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_879.glif new file mode 100644 index 00000000..ed306106 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_879.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + x+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/uniF_87B_.glif b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_87B_.glif new file mode 100644 index 00000000..7625519d --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_87B_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ц+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/uniF_87C_.glif b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_87C_.glif new file mode 100644 index 00000000..71e157b5 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_87C_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ц+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/uniF_87E_.glif b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_87E_.glif new file mode 100644 index 00000000..9fd5dc88 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_87E_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ч+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/uniF_87F_.glif b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_87F_.glif new file mode 100644 index 00000000..85877d10 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/uniF_87F_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ч+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/uogonek.glif b/sources/FixelDisplay-Medium.ufo/glyphs/uogonek.glif new file mode 100644 index 00000000..b4d093f0 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/uogonek.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+ogonek + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/uring.glif b/sources/FixelDisplay-Medium.ufo/glyphs/uring.glif new file mode 100644 index 00000000..27e399d5 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/uring.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+ring + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/ushort-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/ushort-cy.glif new file mode 100644 index 00000000..76c43c98 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/ushort-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + uni0443+breve + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/ustraightcyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/ustraightcyr.glif new file mode 100644 index 00000000..62dfd024 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/ustraightcyr.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + v + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/ustraightstrokecyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/ustraightstrokecyr.glif new file mode 100644 index 00000000..6528adff --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/ustraightstrokecyr.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/utilde.glif b/sources/FixelDisplay-Medium.ufo/glyphs/utilde.glif new file mode 100644 index 00000000..8305df0b --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/utilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+tilde + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/v.glif b/sources/FixelDisplay-Medium.ufo/glyphs/v.glif new file mode 100644 index 00000000..ea73661a --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/v.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/ve-cy.B_G_R_.glif b/sources/FixelDisplay-Medium.ufo/glyphs/ve-cy.B_G_R_.glif new file mode 100644 index 00000000..dcabd3d3 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/ve-cy.B_G_R_.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + b-5 + com.fontlab.metricsRight + b + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/ve-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/ve-cy.glif new file mode 100644 index 00000000..f3633b84 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/ve-cy.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/ve-cy.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/ve-cy.ss01.glif new file mode 100644 index 00000000..ba0edff3 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/ve-cy.ss01.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/virgo.glif b/sources/FixelDisplay-Medium.ufo/glyphs/virgo.glif new file mode 100644 index 00000000..258a3b5c --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/virgo.glif @@ -0,0 +1,224 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =55 + com.fontlab.metricsRight + =35 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/vzmetcomb-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/vzmetcomb-cy.glif new file mode 100644 index 00000000..24ab0de3 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/vzmetcomb-cy.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/w.glif b/sources/FixelDisplay-Medium.ufo/glyphs/w.glif new file mode 100644 index 00000000..94afb17c --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/w.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/wacute.glif b/sources/FixelDisplay-Medium.ufo/glyphs/wacute.glif new file mode 100644 index 00000000..bf0f429c --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/wacute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + w+acute + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/wcircumflex.glif b/sources/FixelDisplay-Medium.ufo/glyphs/wcircumflex.glif new file mode 100644 index 00000000..38597646 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/wcircumflex.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + w+circumflex + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/wdieresis.glif b/sources/FixelDisplay-Medium.ufo/glyphs/wdieresis.glif new file mode 100644 index 00000000..3c462ff2 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/wdieresis.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + w+dieresis + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/wecyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/wecyr.glif new file mode 100644 index 00000000..d000ae9a --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/wecyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + w + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/wgrave.glif b/sources/FixelDisplay-Medium.ufo/glyphs/wgrave.glif new file mode 100644 index 00000000..74207c75 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/wgrave.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + w+grave + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/x.glif b/sources/FixelDisplay-Medium.ufo/glyphs/x.glif new file mode 100644 index 00000000..aec8e4a3 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/x.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/xatailcyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/xatailcyr.glif new file mode 100644 index 00000000..303c963c --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/xatailcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + x + com.fontlab.metricsRight + zhetailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/y.glif b/sources/FixelDisplay-Medium.ufo/glyphs/y.glif new file mode 100644 index 00000000..eaf93751 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/y.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/yacute.glif b/sources/FixelDisplay-Medium.ufo/glyphs/yacute.glif new file mode 100644 index 00000000..c00839bc --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/yacute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + y+acute + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/yaecyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/yaecyr.glif new file mode 100644 index 00000000..3328e904 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/yaecyr.glif @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + я + com.fontlab.metricsRight + e + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/yatI_otified-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/yatI_otified-cy.glif new file mode 100644 index 00000000..a04220e5 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/yatI_otified-cy.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + com.fontlab.metricsRight + yatcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/yatcyr.B_G_R_.glif b/sources/FixelDisplay-Medium.ufo/glyphs/yatcyr.B_G_R_.glif new file mode 100644 index 00000000..5d14547b --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/yatcyr.B_G_R_.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hardsign-cy + com.fontlab.metricsRight + ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/yatcyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/yatcyr.glif new file mode 100644 index 00000000..4654dc66 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/yatcyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hardsign-cy + com.fontlab.metricsRight + ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/ycircumflex.glif b/sources/FixelDisplay-Medium.ufo/glyphs/ycircumflex.glif new file mode 100644 index 00000000..cdaa3b3f --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/ycircumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + y+circumflex + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/ydieresis.glif b/sources/FixelDisplay-Medium.ufo/glyphs/ydieresis.glif new file mode 100644 index 00000000..4125a63f --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/ydieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + y+dieresis + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/yen.glif b/sources/FixelDisplay-Medium.ufo/glyphs/yen.glif new file mode 100644 index 00000000..e098df7a --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/yen.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/yen.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/yen.ss01.glif new file mode 100644 index 00000000..ee752daa --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/yen.ss01.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/yerN_eutral-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/yerN_eutral-cy.glif new file mode 100644 index 00000000..4e38c8c3 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/yerN_eutral-cy.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hardsign-cy + com.fontlab.metricsRight + ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/yeru-cy.accented.glif b/sources/FixelDisplay-Medium.ufo/glyphs/yeru-cy.accented.glif new file mode 100644 index 00000000..75fc2968 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/yeru-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ы+acute + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/yeru-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/yeru-cy.glif new file mode 100644 index 00000000..7a5bf036 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/yeru-cy.glif @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/yeru-cy.ss01.glif b/sources/FixelDisplay-Medium.ufo/glyphs/yeru-cy.ss01.glif new file mode 100644 index 00000000..dfc26a19 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/yeru-cy.ss01.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/yeruB_ackyer-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/yeruB_ackyer-cy.glif new file mode 100644 index 00000000..846d3548 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/yeruB_ackyer-cy.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hardsign-cy + com.fontlab.metricsRight + dotlessi + com.fontlab.recipe + hardsign-cy_dotlessi + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/yi-cy.alt.glif b/sources/FixelDisplay-Medium.ufo/glyphs/yi-cy.alt.glif new file mode 100644 index 00000000..25fe0e7d --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/yi-cy.alt.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.recipe + idieresis + public.markColor + 0.6,0.997,1,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/yi-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/yi-cy.glif new file mode 100644 index 00000000..fa772c37 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/yi-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + idieresis + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/ylongdieresiscyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/ylongdieresiscyr.glif new file mode 100644 index 00000000..3e3ced75 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/ylongdieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + yeru-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/yn-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/yn-cy.glif new file mode 100644 index 00000000..309266a2 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/yn-cy.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |izhitsacyr + com.fontlab.metricsRight + |izhitsacyr + com.fontlab.recipe + izhitsa + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/yuR_eversed-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/yuR_eversed-cy.glif new file mode 100644 index 00000000..9c0ea9d6 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/yuR_eversed-cy.glif @@ -0,0 +1,20 @@ + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l + com.fontlab.recipe + ю + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/yusB_lended-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/yusB_lended-cy.glif new file mode 100644 index 00000000..69a5c658 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/yusB_lended-cy.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + yusbigcyr + com.fontlab.metricsRight + yusbigcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/yusC_losedlittle-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/yusC_losedlittle-cy.glif new file mode 100644 index 00000000..5303a7cf --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/yusC_losedlittle-cy.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + yuslittlecyr + com.fontlab.metricsRight + yuslittlecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/yusbigcyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/yusbigcyr.glif new file mode 100644 index 00000000..a5ed611e --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/yusbigcyr.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/yusbigiotifiedcyr.B_G_R_.glif b/sources/FixelDisplay-Medium.ufo/glyphs/yusbigiotifiedcyr.B_G_R_.glif new file mode 100644 index 00000000..d3448999 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/yusbigiotifiedcyr.B_G_R_.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + com.fontlab.metricsRight + ж + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/yusbigiotifiedcyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/yusbigiotifiedcyr.glif new file mode 100644 index 00000000..278aa96f --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/yusbigiotifiedcyr.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + ж + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/yusiotifiedC_losedL_ittle-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/yusiotifiedC_losedL_ittle-cy.glif new file mode 100644 index 00000000..0cc68349 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/yusiotifiedC_losedL_ittle-cy.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + yusClosedlittle-cy + com.fontlab.recipe + yusClosedlittle-cy+н + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/yuslittlecyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/yuslittlecyr.glif new file mode 100644 index 00000000..bf957a25 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/yuslittlecyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + v-5 + com.fontlab.metricsRight + v-5 + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/yuslittleiotifiedcyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/yuslittleiotifiedcyr.glif new file mode 100644 index 00000000..7820fcbb --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/yuslittleiotifiedcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + v-10 + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/z.glif b/sources/FixelDisplay-Medium.ufo/glyphs/z.glif new file mode 100644 index 00000000..5c2ee733 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/z.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/zacute.glif b/sources/FixelDisplay-Medium.ufo/glyphs/zacute.glif new file mode 100644 index 00000000..69569738 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/zacute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + z+acute + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/zcaron.glif b/sources/FixelDisplay-Medium.ufo/glyphs/zcaron.glif new file mode 100644 index 00000000..fb4732e3 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/zcaron.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + z+caron + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/zdotaccent.glif b/sources/FixelDisplay-Medium.ufo/glyphs/zdotaccent.glif new file mode 100644 index 00000000..9b77c1eb --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/zdotaccent.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + z+dotaccent + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/ze-cy.B_G_R_.glif b/sources/FixelDisplay-Medium.ufo/glyphs/ze-cy.B_G_R_.glif new file mode 100644 index 00000000..71a2886b --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/ze-cy.B_G_R_.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |c-12 + com.fontlab.metricsRight + в-5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/ze-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/ze-cy.glif new file mode 100644 index 00000000..28f7a1d6 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/ze-cy.glif @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |c-5 + com.fontlab.metricsRight + в + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/zedieresiscyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/zedieresiscyr.glif new file mode 100644 index 00000000..9a512876 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/zedieresiscyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ze-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/zemlya-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/zemlya-cy.glif new file mode 100644 index 00000000..3c16bfe9 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/zemlya-cy.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + z-10 + com.fontlab.metricsRight + z + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/zero.glif b/sources/FixelDisplay-Medium.ufo/glyphs/zero.glif new file mode 100644 index 00000000..0a3537e1 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/zero.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/zero.osf.glif b/sources/FixelDisplay-Medium.ufo/glyphs/zero.osf.glif new file mode 100644 index 00000000..87386497 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/zero.osf.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + zero + com.fontlab.metricsRight + zero + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/zero.tf.glif b/sources/FixelDisplay-Medium.ufo/glyphs/zero.tf.glif new file mode 100644 index 00000000..37426c44 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/zero.tf.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/zetailcyr.B_S_H_.glif b/sources/FixelDisplay-Medium.ufo/glyphs/zetailcyr.B_S_H_.glif new file mode 100644 index 00000000..0e9a7a88 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/zetailcyr.B_S_H_.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + з + com.fontlab.metricsRight + з + com.fontlab.recipe + з + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/zetailcyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/zetailcyr.glif new file mode 100644 index 00000000..142b1f3a --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/zetailcyr.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + з + com.fontlab.metricsRight + з + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/zhe-cy.B_G_R_.glif b/sources/FixelDisplay-Medium.ufo/glyphs/zhe-cy.B_G_R_.glif new file mode 100644 index 00000000..adca4413 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/zhe-cy.B_G_R_.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |k + com.fontlab.metricsRight + k + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/zhe-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/zhe-cy.glif new file mode 100644 index 00000000..2d0e430a --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/zhe-cy.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |k + com.fontlab.metricsRight + k + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/zhebrevecyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/zhebrevecyr.glif new file mode 100644 index 00000000..27cdb820 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/zhebrevecyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + zhe-cy+breve + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/zhedieresiscyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/zhedieresiscyr.glif new file mode 100644 index 00000000..5854c6a9 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/zhedieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + zhe-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/zhetailcyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/zhetailcyr.glif new file mode 100644 index 00000000..19ac6272 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/zhetailcyr.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ж + com.fontlab.metricsRight + katailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/zhwe-cy.glif b/sources/FixelDisplay-Medium.ufo/glyphs/zhwe-cy.glif new file mode 100644 index 00000000..ff362c13 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/zhwe-cy.glif @@ -0,0 +1,87 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + з + com.fontlab.metricsRight + ж + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/glyphs/zjekomicyr.glif b/sources/FixelDisplay-Medium.ufo/glyphs/zjekomicyr.glif new file mode 100644 index 00000000..6a39b7b3 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/glyphs/zjekomicyr.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + з-20 + com.fontlab.metricsRight + njekomicyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Medium.ufo/groups.plist b/sources/FixelDisplay-Medium.ufo/groups.plist new file mode 100644 index 00000000..0215e532 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/groups.plist @@ -0,0 +1,2992 @@ + + + + + accent + + grave + acute.case + grave.case + acute + + case + + arrowdown.case + arrowdown.ss01.case + arrowleft.case + arrowleft.ss01.case + arrowright.case + arrowright.ss01.case + arrowup.case + arrowup.ss01.case + backslash.case + bar.case + braceleft.case + braceright.case + bracketleft.case + bracketright.case + brokenbar.case + bullet.case + colon.case + emdash.case + endash.case + exclamdown.case + guillemetleft.case + guillemetright.case + guilsinglleft.case + guilsinglright.case + hyphen.case + parenleft.case + parenright.case + questiondown.case + semicolon.case + at.case + bracketangleleft.case + bracketangleright.case + slash.case + + case_def + + arrowdown + arrowdown.ss01 + arrowleft + arrowleft.ss01 + arrowright + arrowright.ss01 + arrowup + arrowup.ss01 + backslash + bar + braceleft + braceright + bracketleft + bracketright + brokenbar + bullet + colon + emdash + endash + exclamdown + guillemetleft + guillemetright + guilsinglleft + guilsinglright + hyphen + parenleft + parenright + questiondown + semicolon + at + bracketangleleft + bracketangleright + slash + + cpsp + + 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 + Agrave + Aacute + Acircumflex + Atilde + Adieresis + Aring + AE + Ccedilla + Egrave + Eacute + Ecircumflex + Edieresis + Igrave + Iacute + Icircumflex + Idieresis + Eth + Ntilde + Ograve + Oacute + Ocircumflex + Otilde + Odieresis + Oslash + Ugrave + Uacute + Ucircumflex + Udieresis + Yacute + Thorn + Amacron + Abreve + Aogonek + Cacute + Ccircumflex + Cdotaccent + Ccaron + Dcaron + Dcroat + Emacron + Ebreve + Edotaccent + Eogonek + Ecaron + Gcircumflex + Gbreve + Gdotaccent + Gcommaaccent + Hcircumflex + Hbar + Itilde + Imacron + Ibreve + Iogonek + Idotaccent + IJ + Jcircumflex + Kcommaaccent + Lacute + Lcommaaccent + Lcaron + Ldot + Lslash + Nacute + Ncommaaccent + Ncaron + Eng + Omacron + Obreve + Ohungarumlaut + OE + Racute + Rcommaaccent + Rcaron + Sacute + Scircumflex + Scedilla + Scaron + Tcedilla + Tcaron + Tbar + Utilde + Umacron + Ubreve + Uring + Uhungarumlaut + Uogonek + Wcircumflex + Ycircumflex + Ydieresis + Zacute + Zdotaccent + Zcaron + Schwa + Acaron + Gacute + AEacute + Oslashacute + Scommaaccent + Tcommaaccent + Delta + Omega + Iegravecyr + uniF43A + A-cy.accented + E-cy.accented + Ii-cy.accented + O-cy.accented + U-cy.accented + Yeru-cy.accented + Ereversed-cy.accented + Iu-cy.accented + Ia-cy.accented + Io-cy.accented + uniF498 + uniF49A + uniF49C + uniF49E + uniF4C6 + uniF4CC + uniF4D2 + uniF4D4 + uniF4D6 + uniF4D8 + uniF50E + uniF510 + uniF512 + uniF514 + uniF516 + uniF518 + uniF51A + uniF51C + uniF51E + Yeru-cymacron + uniF522 + uniF524 + uniF526 + uniF528 + uniF52A + uniF52C + uniF52E + uniF532 + uniF536 + uniF538 + uniF830 + uniF833 + uniF839 + uniF86F + uniF872 + uniF875 + uniF878 + uniF87B + uniF87E + Io-cy + Djecyr + Gjecyr + E-cy + Dze-cy + I-cy + Yi-cy + Jecyr + Ljecyr + Njecyr + Tshecyr + Kjecyr + Igravecyr + Ushort-cy + Dzhecyr + A-cy + Be-cy + Ve-cy + Ge-cy + De-cy + Ie-cy + Zhe-cy + Ze-cy + Ii-cy + Iishort-cy + Ka-cy + El-cy + Em-cy + En-cy + O-cy + Pe-cy + Er-cy + Es-cy + Te-cy + U-cy + Ef-cy + Ha-cy + Tse-cy + Che-cy + Sha-cy + Shcha-cy + Hardsign-cy + Yeru-cy + Softsign-cy + Ereversed-cy + Iu-cy + Ia-cy + Omegacyr + Yatcyr + Eiotifiedcyr + Yuslittlecyr + Yuslittleiotifiedcyr + Yusbigcyr + Yusbigiotifiedcyr + Ksicyr + Psicyr + Fitacyr + Izhitsacyr + Izhitsagravedblcyr + Ukcyr + Omegaroundcyr + Omegatitlocyr + Otcyr + Koppacyr + Ishortsharptailcyr + Semisoftcyr + Ertickcyr + Gheupturn-cy + Gestrokecyr + Gehookcyr + Zhetailcyr + Zetailcyr + Katailcyr + Kaverticalstrokecyr + Kastrokecyr + Kabashkcyr + Entailcyr + Engecyr + Pehookcyr + Haabkhcyr + Estailcyr + Tetailcyr + Ustraightcyr + Ustraightstrokecyr + Xatailcyr + Tetsecyr + Chetailcyr + Chevertcyr + Shhacyr + Cheabkhcyr + Cheabkhtailcyr + Palochkacyr + Zhebrevecyr + Kahookcyr + Elsharptailcyr + Enhookcyr + Ensharptailcyr + Chekhakascyr + Emsharptailcyr + Abrevecyr + Adieresiscyr + Aiecyr + Iebrevecyr + Schwacyr + Schwadieresiscyr + Zhedieresiscyr + Zedieresiscyr + Dzeabkhcyr + Imacroncyr + Idieresiscyr + Odieresiscyr + Obarcyr + Obardieresiscyr + Ereverseddieresiscyr + Umacroncyr + Udieresiscyr + Uacutedblcyr + Chedieresiscyr + Getailcyr + Ylongdieresiscyr + Gehookstrokecyr + Hahookcyr + Hastrokecyr + Dekomicyr + Djekomicyr + Zjekomicyr + Dzjekomicyr + Ljekomicyr + Njekomicyr + Sjekomicyr + Tjekomicyr + Reversedzecyr + Elhookcyr + Lhacyr + Rhacyr + Yaecyr + Qacyr + Wecyr + Kaaleutcyr + Elmiddlehookcyr + Enmiddlehookcyr + Petailcyr + Shhatailcyr + Enhookleftcyr + Dzzhecyr + Dchecyr + Eltailcyr + Wgrave + Wacute + Wdieresis + Germandbls + uni1EBC + Zemlya-cy + Dzelo-cy + DzeReversed-cy + Iota-cy + Djerv-cy + UkMonograph-cy + OmegaBroad-cy + YerNeutral-cy + YeruBackYer-cy + YatIotified-cy + YuReversed-cy + IotifiedA-cy + YusClosedlittle-cy + YusBlended-cy + YusiotifiedClosedLittle-cy + Yn-cy + TseReversed-cy + DeSoft-cy + ElSoft-cy + EmSoft-cy + OMonocular-cy + OBinocular-cy + ODoubleMonocular-cy + Dwe-cy + Dzwe-cy + Zhwe-cy + Cche-cy + Dzze-cy + TeWithMiddleHook-cy + Twe-cy + Tswe-cy + Tsse-cy + Tche-cy + Hwe-cy + Shwe-cy + DoubleO-cy + CrossedO-cy + A-cy.ss01 + A.ss01 + AE.ss01 + Aacute.ss01 + Abreve.ss01 + Acircumflex.ss01 + Adieresis.ss01 + Agrave.ss01 + Amacron.ss01 + Aogonek.ss01 + Aring.ss01 + Atilde.ss01 + Em-cy.ss01 + Eng.ss01 + G.ss01 + Gacute.ss01 + Gbreve.ss01 + Gcircumflex.ss01 + Gcommaaccent.ss01 + Gdotaccent.ss01 + Ha-cy.ss01 + Ia-cy.ss01 + J.ss01 + Jcircumflex.ss01 + K.ss01 + Ka-cy.ss01 + Kcommaaccent.ss01 + M.ss01 + N.ss01 + Nacute.ss01 + Ncaron.ss01 + Ncommaaccent.ss01 + Ntilde.ss01 + Q.ss01 + U-cy.ss01 + Ushort-cy.ss01 + V.ss01 + W.ss01 + Wacute.ss01 + Wcircumflex.ss01 + Wdieresis.ss01 + Wgrave.ss01 + X.ss01 + Y.ss01 + Yacute.ss01 + Ycircumflex.ss01 + Ydieresis.ss01 + Z.ss01 + Zacute.ss01 + Zcaron.ss01 + Zdotaccent.ss01 + Zetailcyr.BSH + Gestrokecyr.BSH + Estailcyr.BSH + Estailcyr.CHU + Zhe-cy.ss01 + + locl.SRB + + be-cy.SRB + iegravecyr.SRB + igravecyr.SRB + + loclSRB_def + + be-cy + iegravecyr + igravecyr + + locl_BGR + + De-cy.BGR + Ef-cy.BGR + El-cy.BGR + de-cy.BGR + eiotifiedcyr.BGR + el-cy.BGR + ge-cy.BGR + hardsign-cy.BGR + ii-cy.BGR + iishort-cy.BGR + iotifieda-cy.BGR + iu-cy.BGR + ka-cy.BGR + pe-cy.BGR + sha-cy.BGR + shcha-cy.BGR + softsign-cy.BGR + te-cy.BGR + tse-cy.BGR + ve-cy.BGR + yatcyr.BGR + yusbigiotifiedcyr.BGR + ze-cy.BGR + zhe-cy.BGR + + locl_def + + De-cy + Ef-cy + El-cy + de-cy + eiotifiedcyr + el-cy + ge-cy + hardsign-cy + ii-cy + iishort-cy + iotifieda-cy + iu-cy + ka-cy + pe-cy + sha-cy + shcha-cy + softsign-cy + te-cy + tse-cy + ve-cy + yatcyr + yusbigiotifiedcyr + ze-cy + zhe-cy + + pics + + neptune + leo + virgo + bishopwhite + knightwhite + rookblack + bishopblack + knightblack + heartwhite + diamondwhite-misc + spadewhite + heart + clubwhite + crossedswords + flower + floretteblack + florettewhite + floretteoutlinedpetalledblackeight + + pics_def + + A + B + C + D + E + F + G + H + I + J + K + L + M + N + O + P + Q + R + + public.kern1.A.ss012 + + A-cy.ss01 + A.ss01 + Aacute.ss01 + Abreve.ss01 + Acircumflex.ss01 + Adieresis.ss01 + Agrave.ss01 + Amacron.ss01 + Aogonek.ss01 + Aring.ss01 + Atilde.ss01 + + public.kern1.A2 + + A + A-cy + A-cy.accented + Aacute + Abreve + Abrevecyr + Acaron + Acircumflex + Adieresis + Adieresiscyr + Agrave + Amacron + Aogonek + Aring + Atilde + De-cy.BGR + Delta + El-cy.BGR + IotifiedA-cy + Yn-cy + YusClosedlittle-cy + YusiotifiedClosedLittle-cy + Yuslittlecyr + Yuslittleiotifiedcyr + uniF50E + uniF830 + + public.kern1.AE + + AE + AE.ss01 + AEacute + Aiecyr + + public.kern1.C1 + + C + Cacute + Ccaron + Ccedilla + Ccircumflex + Cdotaccent + E-cy + Eiotifiedcyr + Es-cy + Estailcyr + Estailcyr.BSH + Estailcyr.CHU + Reversedzecyr + uniF45D + uniF526 + uniF538 + uniF875 + + public.kern1.Decyr + + Chetailcyr + De-cy + Dwe-cy + Dzze-cy + Elsharptailcyr + Eltailcyr + Emsharptailcyr + Ensharptailcyr + Entailcyr + Ishortsharptailcyr + Petailcyr + Shcha-cy + Shwe-cy + Tetsecyr + Tse-cy + Tswe-cy + uniF87B + + public.kern1.E1 + + E + E-cy.accented + Eacute + Ebreve + Ecaron + Ecircumflex + Edieresis + Edotaccent + Egrave + Emacron + Eogonek + Ie-cy + Iebrevecyr + Io-cy + Io-cy.accented + Yaecyr + uni1EBC + uniF510 + uniF512 + uniF514 + uniF833 + + public.kern1.G.ss01 + + G.ss01 + Gacute.ss01 + Gbreve.ss01 + Gcircumflex.ss01 + Gcommaaccent.ss01 + Gdotaccent.ss01 + + public.kern1.G1 + + G + Gacute + Gbreve + Gcircumflex + Gcommaaccent + Gdotaccent + + public.kern1.Ge-cy + + DeSoft-cy + ElSoft-cy + EmSoft-cy + Engecyr + Ge-cy + Gehookstrokecyr + Gestrokecyr + Gestrokecyr.BSH + Getailcyr + Gheupturn-cy + Gjecyr + TseReversed-cy + YeruBackYer-cy + uniF872 + + public.kern1.H + + Eng + Eng.ss01 + H + Hbar + Hcircumflex + I + Iacute + Ibreve + Icircumflex + Idieresis + Idotaccent + Igrave + Imacron + Iogonek + Itilde + J.ss01 + Jcircumflex.ss01 + M + M.ss01 + N + N.ss01 + Nacute + Nacute.ss01 + Ncaron + Ncaron.ss01 + Ncommaaccent + Ncommaaccent.ss01 + Ntilde + Ntilde.ss01 + + public.kern1.Hardcyr + + Hardsign-cy + Ljecyr + Njecyr + Semisoftcyr + Shhacyr + Softsign-cy + YatIotified-cy + Yatcyr + YerNeutral-cy + uniF478 + + public.kern1.J1 + + J + Jcircumflex + Jecyr + + public.kern1.K + + K + K.ss01 + Ka-cy + Ka-cy.ss01 + Kaaleutcyr + Kabashkcyr + Kastrokecyr + Kcommaaccent + Kcommaaccent.ss01 + Kjecyr + uniF86F + + public.kern1.L + + L + Lacute + Lcaron + Lcommaaccent + Lslash + + public.kern1.O + + Cheabkhcyr + Cheabkhtailcyr + CrossedO-cy + D + Dcaron + Dcroat + DoubleO-cy + Ef-cy + Ef-cy.BGR + Ereversed-cy + Ereversed-cy.accented + Ereverseddieresiscyr + Eth + Fitacyr + Iu-cy + Iu-cy.accented + O + O-cy + O-cy.accented + OBinocular-cy + ODoubleMonocular-cy + OMonocular-cy + Oacute + Obarcyr + Obardieresiscyr + Obreve + Ocircumflex + Odieresis + Odieresiscyr + Ograve + Ohungarumlaut + Omacron + Omega + Omegaroundcyr + Oslash + Oslashacute + Otilde + Q + Qacyr + Schwa + Schwacyr + Schwadieresiscyr + Sjekomicyr + uniF498 + uniF49A + uniF49C + uniF4D2 + uniF4D6 + uniF518 + uniF51A + uniF51C + uniF51E + uniF522 + uniF524 + uniF52C + uniF52E + uniF839 + + public.kern1.Oslash.alt + + Ha-cy + Ha-cy.ss01 + Hahookcyr + Lhacyr + Rhacyr + X + X.ss01 + uniF878 + + public.kern1.P + + Er-cy + Ertickcyr + P + uniF4D4 + + public.kern1.R + + R + Racute + Rcaron + Rcommaaccent + + public.kern1.S1 + + Dzwe-cy + S + Sacute + Scaron + Scedilla + Scircumflex + Scommaaccent + + public.kern1.T1 + + Koppacyr + T + Tcaron + Tcedilla + Tcommaaccent + Te-cy + Tetailcyr + Tsse-cy + Twe-cy + + public.kern1.U1 + + OmegaBroad-cy + Omegacyr + Omegatitlocyr + Otcyr + Psicyr + U + Uacute + Ubreve + Ucircumflex + Udieresis + Ugrave + Uhungarumlaut + Umacron + Uogonek + Uring + Utilde + + public.kern1.Ucyr1 + + U-cy + U-cy.accented + U-cy.ss01 + Uacutedblcyr + Udieresiscyr + Umacroncyr + Ushort-cy + Ushort-cy.ss01 + uniF4CC + + public.kern1.V + + Izhitsacyr + Izhitsagravedblcyr + V + V.ss01 + + public.kern1.W.ss011 + + W.ss01 + Wacute.ss01 + Wcircumflex.ss01 + Wdieresis.ss01 + Wgrave.ss01 + + public.kern1.W1 + + W + Wacute + Wcircumflex + Wdieresis + Wecyr + Wgrave + + public.kern1.Y.ss011 + + Y.ss01 + Yacute.ss01 + Ycircumflex.ss01 + Ydieresis.ss01 + + public.kern1.Y1 + + Ustraightcyr + Ustraightstrokecyr + Y + Yacute + Ycircumflex + Ydieresis + uniF43A + + public.kern1.Yacyr + + Cche-cy + Che-cy + Chedieresiscyr + Chekhakascyr + Chevertcyr + Dekomicyr + Elhookcyr + Em-cy + En-cy + Enhookcyr + Enhookleftcyr + I-cy + Ia-cy + Ia-cy.accented + Ia-cy.ss01 + Idieresiscyr + Ii-cy + Ii-cy.accented + Iishort-cy + Imacroncyr + Palochkacyr + Pe-cy + Sha-cy + Tche-cy + Yeru-cy + Yeru-cy.accented + Yeru-cymacron + Yi-cy + Ylongdieresiscyr + YuReversed-cy + palochkacyr + uniF45E + uniF45F + uniF4C6 + uniF4D8 + uniF528 + uniF52A + uniF532 + uniF536 + uniF87E + + public.kern1.Z1 + + Dzelo-cy + Z + Z.ss01 + Zacute + Zacute.ss01 + Zcaron + Zcaron.ss01 + Zdotaccent + Zdotaccent.ss01 + Zemlya-cy + + public.kern1.Ze-cy + + Dzeabkhcyr + Ksicyr + Ze-cy + Zedieresiscyr + Zetailcyr + Zetailcyr.BSH + uniF516 + + public.kern1.Zhe-cy + + Dzzhecyr + Katailcyr + Kaverticalstrokecyr + Xatailcyr + YusBlended-cy + Yusbigcyr + Yusbigiotifiedcyr + Zhe-cy + Zhebrevecyr + Zhedieresiscyr + Zhetailcyr + Zhwe-cy + + public.kern1.a1 + + a + aacute + abreve + acaron + acircumflex + adieresis + agrave + amacron + aogonek + aring + atilde + + public.kern1.c1 + + c + cacute + ccaron + ccedilla + ccircumflex + cdotaccent + e-cy + e-cy.hist + eiotifiedcyr + eiotifiedcyr.BGR + es-cy + estailcyr + estailcyr.BSH + estailcyr.CHU + koppacyr + reversedzecyr + sjekomicyr + uni1C83 + uniF475 + uniF527 + uniF539 + uniF876 + + public.kern1.comma1 + + comma + quotedblbase + quotesinglbase + + public.kern1.copyright1 + + copyright + registered + + public.kern1.dcaron + + dcaron + dcaron.ss01 + lcaron + + public.kern1.decyr1 + + chetailcyr + dchecyr + de-cy + de-cy.ss01 + dwe-cy + dzze-cy + elsharptailcyr + eltailcyr + emsharptailcyr + ensharptailcyr + entailcyr + ishortsharptailcyr + petailcyr + shcha-cy + shcha-cy.BGR + shhatailcyr + shwe-cy + tetsecyr + tse-cy + tse-cy.BGR + tswe-cy + uniF87C + + public.kern1.e.ss011 + + e.ss01 + eacute.ss01 + ebreve.ss01 + ecaron.ss01 + ecircumflex.ss01 + edieresis.ss01 + edotaccent.ss01 + egrave.ss01 + emacron.ss01 + eogonek.ss01 + oe.ss01 + + public.kern1.e1 + + ae + aeacute + aiecyr + cheabkhcyr + cheabkhtailcyr + e + e-cy.accented + eacute + ebreve + ecaron + ecircumflex + edieresis + edotaccent + egrave + emacron + eogonek + ie-cy + iebrevecyr + iegravecyr + iegravecyr.SRB + io-cy + io-cy.accented + uni1EBD + uniF511 + uniF513 + uniF515 + uniF834 + yaecyr + + public.kern1.el-cy.BGR + + el-cy.BGR + iotifieda-cy + iotifieda-cy.BGR + uni1C81 + yn-cy + yusClosedlittle-cy + yusiotifiedClosedLittle-cy + yuslittlecyr + yuslittleiotifiedcyr + + public.kern1.emdash1 + + emdash + endash + hyphen + + public.kern1.f1 + + f + f_f + + public.kern1.fi + + f_f_i + fi + + public.kern1.five1 + + five + five.tf + + public.kern1.four1 + + four + four.tf + + public.kern1.g.ss011 + + g.ss01 + gacute.ss01 + gbreve.ss01 + gcircumflex.ss01 + gcommaaccent.ss01 + gdotaccent.ss01 + + public.kern1.g1 + + g + gacute + gbreve + gcircumflex + gcommaaccent + gdotaccent + + public.kern1.gecyr + + deSoft-cy + elSoft-cy + emSoft-cy + engecyr + ge-cy + gehookstrokecyr + gestrokecyr + gestrokecyr.BSH + getailcyr + gheupturn-cy + gjecyr + + public.kern1.guillemotright1 + + guillemetright + guilsinglright + + public.kern1.hardcyr + + Tjekomicyr + djekomicyr + elmiddlehookcyr + enmiddlehookcyr + gehookcyr + hardsign-cy + hardsign-cy.BGR + hardsign-cy.ss01 + ljecyr + ljecyr.ss01 + ljekomicyr + njecyr + njecyr.ss01 + njekomicyr + pehookcyr + semisoftcyr + softsign-cy + softsign-cy.BGR + softsign-cy.ss01 + tewithmiddlehook-cy + tjekomicyr + uni1C86 + uni1C87 + uniF479 + yatIotified-cy + yatcyr + yatcyr.BGR + yerNeutral-cy + zjekomicyr + + public.kern1.i1 + + Djekomicyr + Ljekomicyr + Njekomicyr + Zjekomicyr + i + i-cy + iacute + icircumflex + igrave + imacron + iogonek + itilde + uniF476 + yi-cy.alt + + public.kern1.icyr1 + + cche-cy + che-cy + chedieresiscyr + chekhakascyr + chevertcyr + de-cy.BGR + el-cy + elhookcyr + em-cy + en-cy + enhookcyr + enhookleftcyr + ia-cy + ia-cy.accented + idieresiscyr + igravecyr + ii-cy + ii-cy.accented + iishort-cy + imacroncyr + mu + pe-cy + psicyr + q + qacyr + sha-cy + sha-cy.BGR + tche-cy + tseReversed-cy + ubreve + uni1C85 + uniF4C7 + uniF4D9 + uniF521 + uniF529 + uniF52B + uniF533 + uniF537 + uniF873 + uniF87F + utilde + yeru-cy + yeru-cy.accented + yeru-cy.ss01 + yeruBackyer-cy + ylongdieresiscyr + yuReversed-cy + + public.kern1.j1 + + ij + j + jcircumflex + jdotless + + public.kern1.k + + k + ka-cy + ka-cy.BGR + kaaleutcyr + kabashkcyr + kastrokecyr + kcommaaccent + kgreenlandic + kjecyr + uniF870 + + public.kern1.l + + f_f_l + fl + l + lacute + lcommaaccent + + public.kern1.l.ss011 + + Iota-cy + iota-cy + l.ss01 + lacute.ss01 + lcommaaccent.ss01 + + public.kern1.n + + Djecyr + Elmiddlehookcyr + Enmiddlehookcyr + Gehookcyr + Hwe-cy + Kahookcyr + Pehookcyr + Shhatailcyr + TeWithMiddleHook-cy + Tshecyr + a-cy.accented + a-cy.ss01 + a.ss01 + aacute.ss01 + abreve.ss01 + abrevecyr + acircumflex.ss01 + adieresis.ss01 + adieresiscyr + agrave.ss01 + aogonek.ss01 + aring.ss01 + atilde.ss01 + djecyr + el-cy.ss01 + h + hbar + hcircumflex + hwe-cy + ia-cy.ss01 + iotifieda-cy.hist + m + n + nacute + napostrophe + ncaron + ncommaaccent + ntilde + pe-cy.BGR + q.ss01 + shhacyr + te-cy.BGR + tshecyr + uniF49E + uniF49F + uniF50F + uniF831 + + public.kern1.numero + + numero + numero.ss01 + + public.kern1.o1 + + b + b.ss01 + be-cy.SRB + crossedo-cy + ef-cy + er-cy + er-cy.ss01 + ereversed-cy + ereversed-cy.accented + ereverseddieresiscyr + ertickcyr + eturned + fitacyr + iu-cy + iu-cy.BGR + iu-cy.accented + o + o-cy + o-cy.accented + oBinocular-cy + oDoubleMonocular-cy + oMonocular-cy + oacute + obarcyr + obardieresiscyr + obreve + ocircumflex + odieresis + odieresiscyr + ograve + ohungarumlaut + omacron + omegaBroad-cy + omegaroundcyr + omegatitlocyr + oslashacute + otilde + p + p.ss01 + schwacyr + schwadieresiscyr + thorn + uni1C82 + uniF499 + uniF49D + uniF4D3 + uniF4D5 + uniF4D7 + uniF519 + uniF51B + uniF51D + uniF51F + uniF523 + uniF525 + uniF52D + uniF52F + uniF83A + + public.kern1.period1 + + ellipsis + period + + public.kern1.quotedbl1 + + quotedbl + quotesingle + + public.kern1.quoteleft1 + + quotedblleft + quoteleft + + public.kern1.quoteright1 + + apostrophemod + minute + quotedblright + quoteright + second + + public.kern1.s1 + + dzwe-cy + s + sacute + scaron + scedilla + scircumflex + scommaaccent + + public.kern1.t.ss011 + + t.ss01 + tcedilla.ss01 + tcommaaccent.ss01 + + public.kern1.t1 + + t + tcaron + tcedilla + tcommaaccent + + public.kern1.te-cy + + te-cy + tetailcyr + tsse-cy + twe-cy + + public.kern1.u1 + + igravecyr.SRB + ii-cy.BGR + iishort-cy.BGR + pe-cy.SRB + te-cy.SRB + u + uacute + ucircumflex + udieresis + ugrave + uhungarumlaut + umacron + uogonek + uring + + public.kern1.uni0435.ss011 + + ie-cy.ss01 + io-cy.ss01 + + public.kern1.v + + izhitsacyr + izhitsagravedblcyr + v + + public.kern1.w1 + + omegacyr + otcyr + w + wacute + wcircumflex + wdieresis + wecyr + wgrave + + public.kern1.x + + ha-cy + hahookcyr + lhacyr + rhacyr + uniF879 + x + + public.kern1.y1 + + Ukcyr + u-cy + u-cy.accented + uacutedblcyr + udieresiscyr + ukcyr + umacroncyr + uniF43B + uniF4CD + ushort-cy + ustraightcyr + ustraightstrokecyr + y + yacute + ycircumflex + ydieresis + + public.kern1.z1 + + dzelo-cy + z + zacute + zcaron + zdotaccent + zemlya-cy + + public.kern1.ze-cy + + dzeabkhcyr + ksicyr + uniF517 + ze-cy + ze-cy.BGR + zedieresiscyr + zetailcyr + zetailcyr.BSH + + public.kern1.zhe-cy + + dzzhecyr + katailcyr + kaverticalstrokecyr + xatailcyr + yusBlended-cy + yusbigcyr + yusbigiotifiedcyr + yusbigiotifiedcyr.BGR + zhe-cy + zhe-cy.BGR + zhebrevecyr + zhedieresiscyr + zhetailcyr + zhwe-cy + + public.kern2.A.ss01 + + A.ss01 + AE.ss01 + Aacute.ss01 + Acircumflex.ss01 + Adieresis.ss01 + Agrave.ss01 + Amacron.ss01 + Aogonek.ss01 + Atilde.ss01 + + public.kern2.A.ss012 + + A-cy.ss01 + Abreve.ss01 + Aring.ss01 + + public.kern2.A2 + + A + A-cy + A-cy.accented + AE + AEacute + Aacute + Abreve + Abrevecyr + Acaron + Acircumflex + Adieresis + Adieresiscyr + Agrave + Aiecyr + Amacron + Aogonek + Aring + Atilde + De-cy.BGR + Delta + El-cy.BGR + Yn-cy + YusClosedlittle-cy + Yuslittlecyr + uniF50E + uniF830 + + public.kern2.B + + B + D + Dcaron + E + Eacute + Ecaron + Ecircumflex + Edieresis + Edotaccent + Egrave + Emacron + Eogonek + F + H + Hbar + Hcircumflex + I + Iacute + Ibreve + Icircumflex + Idieresis + Idotaccent + Igrave + Imacron + Iogonek + Itilde + K + K.ss01 + Kcommaaccent + Kcommaaccent.ss01 + L + Lacute + Lcaron + Lcommaaccent + Ldot + M + N + N.ss01 + Nacute + Nacute.ss01 + Ncaron + Ncaron.ss01 + Ncommaaccent + Ncommaaccent.ss01 + Ntilde + Ntilde.ss01 + P + R + Racute + Rcaron + Rcommaaccent + Thorn + uni1EBC + + public.kern2.Che-cy + + Cche-cy + Che-cy + Chedieresiscyr + Chekhakascyr + Chetailcyr + Chevertcyr + uniF4C6 + uniF87E + + public.kern2.De-cy + + Dchecyr + De-cy + DeSoft-cy + Dwe-cy + Dzze-cy + Dzzhecyr + TseReversed-cy + + public.kern2.El-cy + + El-cy + ElSoft-cy + Elhookcyr + Elmiddlehookcyr + Elsharptailcyr + Eltailcyr + Lhacyr + Ljekomicyr + uniF872 + + public.kern2.Eth + + Dcroat + Eth + Gestrokecyr + + public.kern2.G + + C + Cacute + Ccaron + Ccedilla + Ccircumflex + Cdotaccent + CrossedO-cy + DoubleO-cy + E-cy + Ef-cy.BGR + Es-cy + Estailcyr + Estailcyr.BSH + Estailcyr.CHU + Fitacyr + G + G.ss01 + Gacute + Gacute.ss01 + Gbreve + Gbreve.ss01 + Gcircumflex + Gcircumflex.ss01 + Gcommaaccent + Gcommaaccent.ss01 + Gdotaccent + Gdotaccent.ss01 + Haabkhcyr + Koppacyr + O + O-cy + O-cy.accented + OBinocular-cy + ODoubleMonocular-cy + OE + OMonocular-cy + Oacute + Obarcyr + Obardieresiscyr + Obreve + Ocircumflex + Odieresis + Odieresiscyr + Ograve + Ohungarumlaut + Omacron + Omegaroundcyr + Oslash + Otilde + Q + Q.ss01 + Qacyr + Schwacyr + Schwadieresiscyr + Sjekomicyr + Ukcyr + YuReversed-cy + uniF45D + uniF49A + uniF49C + uniF4D2 + uniF518 + uniF51A + uniF51C + uniF51E + uniF526 + uniF839 + uniF875 + + public.kern2.Gecyr + + Be-cy + E-cy.accented + Eiotifiedcyr + Em-cy + EmSoft-cy + Emsharptailcyr + En-cy + Engecyr + Enhookcyr + Enhookleftcyr + Enmiddlehookcyr + Ensharptailcyr + Entailcyr + Er-cy + Ertickcyr + Gehookcyr + Gestrokecyr.BSH + Getailcyr + Gheupturn-cy + Gjecyr + Hwe-cy + I-cy + Iebrevecyr + Ii-cy + Ii-cy.accented + Io-cy.accented + IotifiedA-cy + Iu-cy.accented + Ka-cy + Kaaleutcyr + Kahookcyr + Katailcyr + Kaverticalstrokecyr + Kjecyr + Njekomicyr + Palochkacyr + Pe-cy + Pehookcyr + Petailcyr + Rhacyr + Shhacyr + Shhatailcyr + Shwe-cy + Tswe-cy + Ve-cy + Yeru-cy.accented + Yeru-cymacron + Yi-cy + Ylongdieresiscyr + Yusbigiotifiedcyr + YusiotifiedClosedLittle-cy + Yuslittleiotifiedcyr + palochkacyr + uniF45E + uniF45F + uniF498 + uniF4D4 + uniF510 + uniF512 + uniF514 + uniF52C + uniF52E + uniF532 + uniF536 + uniF833 + uniF86F + uniF87B + + public.kern2.Ia-cy + + Ia-cy + Ia-cy.accented + Yaecyr + uniF4D8 + uniF528 + uniF52A + + public.kern2.Iishort-cy + + Idieresiscyr + Iishort-cy + Imacroncyr + Ishortsharptailcyr + + public.kern2.J + + J + Jcircumflex + Jecyr + + public.kern2.Oslash.alt + + Ha-cy.ss01 + Hahookcyr + X + X.ss01 + Xatailcyr + uniF878 + + public.kern2.S + + Dzwe-cy + S + Sacute + Scaron + Scedilla + Scircumflex + Scommaaccent + + public.kern2.T + + Djecyr + T + Tcaron + Tcedilla + Tche-cy + Tcommaaccent + Te-cy + TeWithMiddleHook-cy + Tetailcyr + Tetsecyr + Tjekomicyr + Tshecyr + Tsse-cy + Twe-cy + + public.kern2.U + + Iota-cy + OmegaBroad-cy + Omegacyr + Omegatitlocyr + Otcyr + Psicyr + U + Uacute + Ubreve + Ucircumflex + Udieresis + Ugrave + Uhungarumlaut + Umacron + Uogonek + Uring + Utilde + + public.kern2.Ucyr.ss01 + + U-cy.accented + U-cy.ss01 + Uacutedblcyr + Udieresiscyr + Umacroncyr + Ushort-cy.ss01 + uniF4CC + + public.kern2.V + + Izhitsacyr + Izhitsagravedblcyr + V + V.ss01 + + public.kern2.W + + W + W.ss01 + Wacute + Wacute.ss01 + Wcircumflex + Wcircumflex.ss01 + Wdieresis + Wdieresis.ss01 + Wecyr + Wgrave + Wgrave.ss01 + + public.kern2.Y + + Ustraightcyr + Ustraightstrokecyr + Y + Y.ss01 + Yacute + Yacute.ss01 + Ycircumflex + Ycircumflex.ss01 + Ydieresis + Ydieresis.ss01 + uniF43A + + public.kern2.Z + + Dzelo-cy + Z + Z.ss01 + Zacute + Zacute.ss01 + Zcaron + Zcaron.ss01 + Zdotaccent + Zdotaccent.ss01 + Zemlya-cy + + public.kern2.Ze-cy1 + + Dzeabkhcyr + Ksicyr + Ze-cy + Zedieresiscyr + Zetailcyr + Zetailcyr.BSH + Zhwe-cy + uniF516 + + public.kern2.Zhe-cy1 + + YusBlended-cy + Yusbigcyr + Zhe-cy + Zhebrevecyr + Zhedieresiscyr + Zhetailcyr + + public.kern2.a + + a + a-cy + a-cy.accented + aacute + abreve + abrevecyr + acaron + acircumflex + adieresis + adieresiscyr + ae + aeacute + agrave + aiecyr + amacron + aogonek + aring + atilde + uniF50F + uniF831 + + public.kern2.acute.case + + acute.case + hungarumlaut.case + + public.kern2.che-cy + + cche-cy + che-cy + chedieresiscyr + chekhakascyr + chetailcyr + chevertcyr + uniF4C7 + uniF87F + + public.kern2.comma + + comma + quotedblbase + quotesinglbase + + public.kern2.copyright + + copyright + registered + + public.kern2.decyr.ss01 + + de-cy.ss01 + deSoft-cy + dwe-cy + dzze-cy + dzzhecyr + tseReversed-cy + + public.kern2.el-cy + + el-cy + el-cy.ss01 + elSoft-cy + elhookcyr + elmiddlehookcyr + elsharptailcyr + eltailcyr + lhacyr + ljecyr.ss01 + ljekomicyr + uniF873 + + public.kern2.el-cy.BGR1 + + el-cy.BGR + uni1C81 + yn-cy + yusClosedlittle-cy + yuslittlecyr + + public.kern2.emdash + + emdash + endash + hyphen + + public.kern2.f + + f + f_f + f_f_i + f_f_l + fi + fl + gestrokecyr + + public.kern2.f_f.ss01 + + f_f.ss01 + f_f_i.ss01 + f_f_l.ss01 + + public.kern2.fi.ss01 + + fi.ss01 + fl.ss01 + + public.kern2.five + + five + five.tf + + public.kern2.four + + four + four.tf + + public.kern2.g + + g + gacute + gbreve + gcircumflex + gcommaaccent + gdotaccent + + public.kern2.g.ss01 + + g.ss01 + gacute.ss01 + gbreve.ss01 + gcircumflex.ss01 + gcommaaccent.ss01 + gdotaccent.ss01 + + public.kern2.guillemotleft + + guillemetleft + guilsinglleft + + public.kern2.guillemotright + + guillemetright + guilsinglright + + public.kern2.h + + eiotifiedcyr.BGR + h + hcircumflex + hwe-cy + iotifieda-cy.BGR + iu-cy.BGR + k + ka-cy.BGR + kcommaaccent + l + lacute + lcaron + lcommaaccent + ldot + shhacyr + shhatailcyr + ve-cy.BGR + yatcyr.BGR + yusbigiotifiedcyr.BGR + + public.kern2.i1 + + i + i-cy + iacute + icircumflex + igrave + imacron + iogonek + itilde + uniF476 + yi-cy.alt + + public.kern2.ia-cy + + ia-cy + ia-cy.accented + ia-cy.ss01 + uniF4D9 + uniF529 + uniF52B + yaecyr + + public.kern2.j + + enhookleftcyr + j + jcircumflex + jdotless + + public.kern2.l.ss01 + + l.ss01 + lacute.ss01 + lcaron.ss01 + lcommaaccent.ss01 + ldot.ss01 + + public.kern2.m + + eiotifiedcyr + em-cy + emSoft-cy + emsharptailcyr + en-cy + eng + engecyr + enhookcyr + enmiddlehookcyr + ensharptailcyr + entailcyr + er-cy + er-cy.ss01 + ertickcyr + ge-cy + gehookcyr + gehookstrokecyr + gestrokecyr.BSH + getailcyr + gheupturn-cy + gjecyr + idieresiscyr + idotless + igravecyr + ii-cy + ii-cy.accented + iishort-cy + imacroncyr + iotifieda-cy + ishortsharptailcyr + iu-cy + iu-cy.accented + ka-cy + kaaleutcyr + kahookcyr + katailcyr + kaverticalstrokecyr + kgreenlandic + kjecyr + m + mu + n + nacute + ncaron + ncommaaccent + njecyr.ss01 + njekomicyr + ntilde + p + p.ss01 + pe-cy + pe-cy.BGR + pehookcyr + petailcyr + psicyr + r + racute + rcaron + rcommaaccent + rhacyr + sha-cy + shcha-cy + shwe-cy + softsign-cy + softsign-cy.BGR + softsign-cy.ss01 + te-cy.BGR + tse-cy + tswe-cy + uni1C85 + uniF499 + uniF4D5 + uniF521 + uniF52D + uniF52F + uniF533 + uniF537 + uniF870 + uniF87C + ve-cy + ve-cy.ss01 + yatIotified-cy + yeru-cy + yeru-cy.accented + yeru-cy.ss01 + ylongdieresiscyr + yusbigiotifiedcyr + yusiotifiedClosedLittle-cy + yuslittleiotifiedcyr + + public.kern2.o + + Dekomicyr + Djekomicyr + a-cy.ss01 + a.ss01 + aacute.ss01 + abreve.ss01 + acircumflex.ss01 + adieresis.ss01 + agrave.ss01 + amacron.ss01 + aogonek.ss01 + aring.ss01 + atilde.ss01 + c + cacute + ccaron + ccedilla + ccircumflex + cdotaccent + cent + crossedo-cy + d + d.ss01 + dcaron + dcaron.ss01 + dcroat + dcroat.ss01 + de-cy.BGR + dekomicyr + djekomicyr + e + e-cy + e-cy.accented + e-cy.hist + e.ss01 + eacute + eacute.ss01 + ebreve + ebreve.ss01 + ecaron + ecaron.ss01 + ecircumflex + ecircumflex.ss01 + edieresis + edieresis.ss01 + edotaccent + edotaccent.ss01 + ef-cy + egrave + egrave.ss01 + emacron + emacron.ss01 + eogonek + eogonek.ss01 + es-cy + estailcyr + estailcyr.BSH + estailcyr.CHU + eth + eturned + fitacyr + haabkhcyr + ie-cy + ie-cy.ss01 + iebrevecyr + iegravecyr + iegravecyr.SRB + io-cy + io-cy.accented + io-cy.ss01 + koppacyr + o + o-cy + o-cy.accented + oBinocular-cy + oDoubleMonocular-cy + oMonocular-cy + oacute + obarcyr + obardieresiscyr + obreve + ocircumflex + odieresis + odieresiscyr + oe.ss01 + ograve + ohungarumlaut + omacron + omegaBroad-cy + omegaroundcyr + omegatitlocyr + oslashacute + otilde + q + q.ss01 + qacyr + schwacyr + schwadieresiscyr + sjekomicyr + ukcyr + uni1C82 + uni1C83 + uni1EBD + uniF475 + uniF49D + uniF4D3 + uniF511 + uniF513 + uniF515 + uniF519 + uniF51B + uniF51D + uniF51F + uniF527 + uniF834 + uniF83A + uniF876 + yuReversed-cy + + public.kern2.percent + + percent + perthousand + + public.kern2.period + + ellipsis + period + + public.kern2.quotedbl + + quotedbl + quotesingle + + public.kern2.quoteleft + + quotedblleft + quoteleft + + public.kern2.quoteright + + apostrophemod + minute + quotedblright + quoteright + second + + public.kern2.s + + dzwe-cy + s + sacute + scaron + scedilla + scircumflex + scommaaccent + + public.kern2.t + + t + t.ss01 + tbar.ss01 + tcaron + tcaron.ss01 + tcedilla + tcedilla.ss01 + tcommaaccent + tcommaaccent.ss01 + + public.kern2.tecyr + + tche-cy + te-cy.ss01 + tetailcyr + tetsecyr + tewithmiddlehook-cy + tjekomicyr + tsse-cy + twe-cy + + public.kern2.u + + igravecyr.SRB + ii-cy.BGR + iishort-cy.BGR + iota-cy + pe-cy.SRB + sha-cy.BGR + shcha-cy.BGR + te-cy.SRB + tse-cy.BGR + u + uacute + ubreve + ucircumflex + udieresis + ugrave + uhungarumlaut + umacron + uogonek + uring + utilde + + public.kern2.v1 + + izhitsacyr + izhitsagravedblcyr + v + + public.kern2.w + + omegacyr + otcyr + w + wacute + wcircumflex + wdieresis + wecyr + wgrave + + public.kern2.x + + ha-cy + hahookcyr + uniF879 + x + + public.kern2.y + + u-cy + u-cy.accented + uacutedblcyr + udieresiscyr + umacroncyr + uniF43B + uniF4CD + ustraightcyr + ustraightstrokecyr + y + yacute + ycircumflex + ydieresis + + public.kern2.z + + dzelo-cy + z + zacute + zcaron + zdotaccent + zemlya-cy + + public.kern2.ze-cy1 + + dzeabkhcyr + ksicyr + uniF517 + ze-cy + ze-cy.BGR + zedieresiscyr + zetailcyr + zetailcyr.BSH + zhwe-cy + + public.kern2.zero + + uni1C80 + zero + zero.tf + + public.kern2.zhe-cy1 + + xatailcyr + yusBlended-cy + yusbigcyr + zhe-cy + zhe-cy.BGR + zhebrevecyr + zhedieresiscyr + zhetailcyr + + ss01 + + A-cy.ss01 + A.ss01 + AE.ss01 + Aacute.ss01 + Abreve.ss01 + Acircumflex.ss01 + Adieresis.ss01 + Agrave.ss01 + Amacron.ss01 + Aogonek.ss01 + Aring.ss01 + Atilde.ss01 + Em-cy.ss01 + Eng.ss01 + G.ss01 + Gacute.ss01 + Gbreve.ss01 + Gcircumflex.ss01 + Gcommaaccent.ss01 + Gdotaccent.ss01 + Ha-cy.ss01 + Ia-cy.ss01 + J.ss01 + Jcircumflex.ss01 + K.ss01 + Ka-cy.ss01 + Kcommaaccent.ss01 + M.ss01 + N.ss01 + Nacute.ss01 + Ncaron.ss01 + Ncommaaccent.ss01 + Ntilde.ss01 + Q.ss01 + U-cy.ss01 + Ushort-cy.ss01 + V.ss01 + W.ss01 + Wacute.ss01 + Wcircumflex.ss01 + Wdieresis.ss01 + Wgrave.ss01 + X.ss01 + Y.ss01 + Yacute.ss01 + Ycircumflex.ss01 + Ydieresis.ss01 + Z.ss01 + Zacute.ss01 + Zcaron.ss01 + Zdotaccent.ss01 + Zhe-cy.ss01 + a-cy.ss01 + a.ss01 + aacute.ss01 + abreve.ss01 + acircumflex.ss01 + adieresis.ss01 + ae.ss01 + agrave.ss01 + amacron.ss01 + aogonek.ss01 + aring.ss01 + arrowdown.ss01 + arrowdown.ss01.case + arrowleft.ss01 + arrowleft.ss01.case + arrowright.ss01 + arrowright.ss01.case + arrowup.ss01 + arrowup.ss01.case + atilde.ss01 + b.ss01 + d.ss01 + dcaron.ss01 + dcroat.ss01 + de-cy.ss01 + e.ss01 + eacute.ss01 + ebreve.ss01 + ecaron.ss01 + ecircumflex.ss01 + edieresis.ss01 + edotaccent.ss01 + egrave.ss01 + el-cy.ss01 + emacron.ss01 + eogonek.ss01 + er-cy.ss01 + f.ss01 + f_f.ss01 + f_f_i.ss01 + f_f_l.ss01 + fi.ss01 + fl.ss01 + g.ss01 + gacute.ss01 + gbreve.ss01 + gcircumflex.ss01 + gcommaaccent.ss01 + gdotaccent.ss01 + germandbls.ss01 + hardsign-cy.ss01 + ia-cy.ss01 + ie-cy.ss01 + io-cy.ss01 + l.ss01 + lacute.ss01 + lcaron.ss01 + lcommaaccent.ss01 + ldot.ss01 + ljecyr.ss01 + lslash.ss01 + njecyr.ss01 + numero.ss01 + oe.ss01 + p.ss01 + q.ss01 + softsign-cy.ss01 + t.ss01 + tbar.ss01 + tcaron.ss01 + tcedilla.ss01 + tcommaaccent.ss01 + te-cy.ss01 + ve-cy.ss01 + yen.ss01 + yeru-cy.ss01 + + ss01_def + + A-cy + A + AE + Aacute + Abreve + Acircumflex + Adieresis + Agrave + Amacron + Aogonek + Aring + Atilde + Em-cy + Eng + G + Gacute + Gbreve + Gcircumflex + Gcommaaccent + Gdotaccent + Ha-cy + Ia-cy + J + Jcircumflex + K + Ka-cy + Kcommaaccent + M + N + Nacute + Ncaron + Ncommaaccent + Ntilde + Q + U-cy + Ushort-cy + V + W + Wacute + Wcircumflex + Wdieresis + Wgrave + X + Y + Yacute + Ycircumflex + Ydieresis + Z + Zacute + Zcaron + Zdotaccent + Zhe-cy + a-cy + a + aacute + abreve + acircumflex + adieresis + ae + agrave + amacron + aogonek + aring + arrowdown + arrowdown.case + arrowleft + arrowleft.case + arrowright + arrowright.case + arrowup + arrowup.case + atilde + b + d + dcaron + dcroat + de-cy + e + eacute + ebreve + ecaron + ecircumflex + edieresis + edotaccent + egrave + el-cy + emacron + eogonek + er-cy + f + f_f + f_f_i + f_f_l + fi + fl + g + gacute + gbreve + gcircumflex + gcommaaccent + gdotaccent + germandbls + hardsign-cy + ia-cy + ie-cy + io-cy + l + lacute + lcaron + lcommaaccent + ldot + ljecyr + lslash + njecyr + numero + oe + p + q + softsign-cy + t + tbar + tcaron + tcedilla + tcommaaccent + te-cy + ve-cy + yen + yeru-cy + + + diff --git a/sources/FixelDisplay-Medium.ufo/kerning.plist b/sources/FixelDisplay-Medium.ufo/kerning.plist new file mode 100644 index 00000000..685b9862 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/kerning.plist @@ -0,0 +1,2697 @@ + + + + + Zhe-cy + + public.kern2.G + -24 + + space + + public.kern2.Y + -80 + + uni1C82 + + public.kern2.y + -66 + + public.kern1.A.ss012 + + public.kern2.A.ss01 + 4 + public.kern2.A.ss012 + 2 + public.kern2.B + -8 + public.kern2.G + -22 + public.kern2.T + -46 + public.kern2.U + -20 + public.kern2.Ucyr.ss01 + -44 + public.kern2.V + -36 + public.kern2.W + -26 + public.kern2.Y + -64 + public.kern2.a + -12 + public.kern2.comma + 2 + public.kern2.decyr.ss01 + 2 + public.kern2.emdash + -12 + public.kern2.l.ss01 + -4 + public.kern2.m + -2 + public.kern2.o + -20 + public.kern2.quotedbl + -46 + public.kern2.quoteright + -44 + public.kern2.t + -8 + public.kern2.tecyr + -34 + public.kern2.u + -18 + public.kern2.w + -28 + public.kern2.x + 5 + public.kern2.y + -18 + + public.kern1.A2 + + public.kern2.A2 + 8 + public.kern2.G + -22 + public.kern2.J + 14 + public.kern2.Oslash.alt + 4 + public.kern2.S + 3 + public.kern2.T + -46 + public.kern2.U + -12 + public.kern2.Ucyr.ss01 + -26 + public.kern2.V + -31 + public.kern2.W + -27 + public.kern2.Y + -60 + public.kern2.Z + 6 + public.kern2.a + -4 + public.kern2.comma + 4 + public.kern2.decyr.ss01 + 7 + public.kern2.emdash + -8 + public.kern2.g + 8 + public.kern2.j + -14 + public.kern2.o + -10 + public.kern2.period + 32 + public.kern2.quotedbl + -50 + public.kern2.quoteright + -50 + public.kern2.t + -12 + public.kern2.tecyr + -30 + public.kern2.u + -6 + public.kern2.w + -20 + public.kern2.x + 2 + public.kern2.y + -38 + public.kern2.z + 10 + + public.kern1.C1 + + public.kern2.A.ss01 + 10 + public.kern2.A2 + -2 + public.kern2.B + -2 + public.kern2.G + -12 + public.kern2.J + 4 + public.kern2.S + 10 + public.kern2.T + 8 + public.kern2.U + -2 + public.kern2.Ucyr.ss01 + -4 + public.kern2.V + 8 + public.kern2.Y + -20 + public.kern2.Z + 2 + public.kern2.comma + -8 + public.kern2.emdash + -20 + public.kern2.f + -4 + public.kern2.g + -9 + public.kern2.g.ss01 + -4 + public.kern2.j + 3 + public.kern2.o + -12 + public.kern2.period + -16 + public.kern2.quoteright + -4 + public.kern2.s + -2 + public.kern2.t + -2 + public.kern2.tecyr + -4 + public.kern2.u + -5 + public.kern2.w + -4 + public.kern2.x + -8 + public.kern2.y + -4 + + public.kern1.Decyr + + public.kern2.A.ss012 + 12 + public.kern2.A2 + 2 + public.kern2.G + -10 + public.kern2.T + -7 + public.kern2.Ucyr.ss01 + -30 + public.kern2.a + -8 + public.kern2.comma + 42 + public.kern2.decyr.ss01 + 10 + public.kern2.emdash + -12 + public.kern2.o + -10 + public.kern2.period + 22 + public.kern2.quoteright + -22 + public.kern2.tecyr + -22 + public.kern2.y + -4 + + public.kern1.E1 + + public.kern2.A.ss012 + 8 + public.kern2.G + -6 + public.kern2.J + 10 + public.kern2.a + -2 + public.kern2.f + -4 + public.kern2.g.ss01 + -2 + public.kern2.i1 + 2 + public.kern2.o + -10 + public.kern2.period + 16 + public.kern2.quoteright + -2 + public.kern2.t + -2 + public.kern2.w + -8 + public.kern2.y + -12 + + public.kern1.G.ss01 + + public.kern2.A.ss01 + 10 + public.kern2.G + -6 + public.kern2.T + -12 + public.kern2.U + -6 + public.kern2.V + -26 + public.kern2.W + -16 + public.kern2.Y + -26 + public.kern2.Z + -2 + public.kern2.l.ss01 + -2 + public.kern2.o + -2 + public.kern2.quotedbl + -50 + public.kern2.quoteright + -24 + public.kern2.t + -5 + public.kern2.w + -24 + public.kern2.y + -22 + public.kern2.z + 2 + + public.kern1.G1 + + public.kern2.G + 8 + public.kern2.J + 4 + public.kern2.T + -10 + public.kern2.V + -22 + public.kern2.W + -12 + public.kern2.Y + -26 + public.kern2.comma + 8 + public.kern2.emdash + 16 + public.kern2.period + 10 + public.kern2.quotedbl + -4 + public.kern2.quoteright + -2 + public.kern2.w + -2 + public.kern2.y + -4 + public.kern2.z + 2 + + public.kern1.Ge-cy + + public.kern2.A.ss012 + -38 + public.kern2.A2 + -38 + public.kern2.G + -12 + public.kern2.Gecyr + 12 + public.kern2.T + 50 + public.kern2.Ucyr.ss01 + 24 + public.kern2.a + -68 + public.kern2.comma + -67 + public.kern2.decyr.ss01 + -8 + public.kern2.emdash + -64 + public.kern2.guillemotright + -6 + public.kern2.i1 + 42 + public.kern2.m + -54 + public.kern2.o + -72 + public.kern2.period + -96 + public.kern2.quoteright + 8 + public.kern2.x + -40 + public.kern2.y + -40 + + public.kern1.H + + public.kern2.Gecyr + 1 + public.kern2.comma + -16 + public.kern2.i1 + 4 + public.kern2.j + 1 + public.kern2.quoteright + -16 + public.kern2.s + -2 + public.kern2.y + -2 + + public.kern1.Hardcyr + + public.kern2.A.ss012 + 10 + public.kern2.Oslash.alt + -16 + public.kern2.T + -106 + public.kern2.Ucyr.ss01 + -68 + public.kern2.comma + -16 + public.kern2.emdash + 4 + public.kern2.period + -8 + public.kern2.quotedbl + -120 + public.kern2.quoteright + -64 + public.kern2.tecyr + -28 + public.kern2.x + -22 + public.kern2.y + -30 + + public.kern1.J1 + + public.kern2.A.ss012 + 5 + public.kern2.A2 + -10 + public.kern2.J + 2 + public.kern2.S + -15 + public.kern2.T + -2 + public.kern2.W + 2 + public.kern2.Z + -8 + public.kern2.comma + -30 + public.kern2.i1 + 2 + public.kern2.j + 2 + public.kern2.period + -24 + public.kern2.s + -2 + public.kern2.y + -2 + + public.kern1.K + + public.kern2.A.ss01 + 18 + public.kern2.A2 + 4 + public.kern2.G + -44 + public.kern2.J + 11 + public.kern2.S + -2 + public.kern2.U + -2 + public.kern2.a + -10 + public.kern2.comma + 2 + public.kern2.emdash + -58 + public.kern2.f + -10 + public.kern2.g + -16 + public.kern2.i1 + 8 + public.kern2.j + -8 + public.kern2.l.ss01 + -2 + public.kern2.o + -40 + public.kern2.period + 8 + public.kern2.quoteright + -32 + public.kern2.t + -32 + public.kern2.tecyr + -48 + public.kern2.u + -30 + public.kern2.w + -34 + public.kern2.y + -40 + + public.kern1.L + + public.kern2.A.ss01 + 12 + public.kern2.A2 + 13 + public.kern2.G + -38 + public.kern2.J + 4 + public.kern2.T + -92 + public.kern2.U + -36 + public.kern2.V + -100 + public.kern2.W + -58 + public.kern2.Y + -100 + public.kern2.Z + 2 + public.kern2.a + -10 + public.kern2.emdash + -68 + public.kern2.f + -4 + public.kern2.guillemotleft + -36 + public.kern2.guillemotright + 2 + public.kern2.j + -6 + public.kern2.o + -34 + public.kern2.period + 4 + public.kern2.quotedbl + -90 + public.kern2.quoteright + -74 + public.kern2.t + -22 + public.kern2.u + -10 + public.kern2.w + -58 + public.kern2.x + -2 + public.kern2.y + -88 + public.kern2.z + 10 + + public.kern1.O + + Zhe-cy + -24 + public.kern2.A.ss01 + -4 + public.kern2.A.ss012 + 1 + public.kern2.A2 + -22 + public.kern2.J + -36 + public.kern2.Oslash.alt + -34 + public.kern2.S + -4 + public.kern2.T + -38 + public.kern2.Ucyr.ss01 + -32 + public.kern2.V + -36 + public.kern2.W + -12 + public.kern2.Y + -46 + public.kern2.Z + -39 + public.kern2.a + -10 + public.kern2.comma + -42 + public.kern2.decyr.ss01 + -18 + public.kern2.emdash + 16 + public.kern2.j + -8 + public.kern2.period + -46 + public.kern2.quotedbl + -20 + public.kern2.quoteright + -8 + public.kern2.s + -2 + public.kern2.tecyr + 2 + public.kern2.w + -4 + public.kern2.x + -12 + public.kern2.y + -2 + public.kern2.z + -10 + + public.kern1.Oslash.alt + + public.kern2.A.ss01 + 19 + public.kern2.A.ss012 + 3 + public.kern2.A2 + 2 + public.kern2.G + -34 + public.kern2.J + 16 + public.kern2.S + -10 + public.kern2.Ucyr.ss01 + 3 + public.kern2.W + 3 + public.kern2.a + -10 + public.kern2.comma + 10 + public.kern2.decyr.ss01 + 2 + public.kern2.emdash + -30 + public.kern2.f + -4 + public.kern2.g + -4 + public.kern2.i1 + 8 + public.kern2.j + -8 + public.kern2.o + -30 + public.kern2.period + 8 + public.kern2.quoteright + -44 + public.kern2.s + -4 + public.kern2.t + -12 + public.kern2.tecyr + -26 + public.kern2.u + -10 + public.kern2.w + -20 + public.kern2.x + 2 + public.kern2.y + -22 + + public.kern1.P + + public.kern2.A.ss01 + -40 + public.kern2.A.ss012 + -40 + public.kern2.A2 + -59 + public.kern2.B + -16 + public.kern2.J + -67 + public.kern2.Oslash.alt + -34 + public.kern2.T + -17 + public.kern2.Ucyr.ss01 + -22 + public.kern2.V + -8 + public.kern2.W + -4 + public.kern2.Y + -14 + public.kern2.Z + -36 + public.kern2.a + -20 + public.kern2.comma + -108 + public.kern2.decyr.ss01 + -32 + public.kern2.emdash + -13 + public.kern2.fi.ss01 + 2 + public.kern2.g + -10 + public.kern2.g.ss01 + -18 + public.kern2.j + -26 + public.kern2.o + -28 + public.kern2.period + -134 + public.kern2.quotedbl + -16 + public.kern2.s + -18 + public.kern2.t + 4 + public.kern2.tecyr + 5 + public.kern2.x + -4 + public.kern2.z + -8 + + public.kern1.R + + public.kern2.A.ss01 + 8 + public.kern2.G + -22 + public.kern2.J + 8 + public.kern2.S + -4 + public.kern2.T + -22 + public.kern2.U + -18 + public.kern2.V + -18 + public.kern2.W + -6 + public.kern2.Y + -26 + public.kern2.a + -4 + public.kern2.emdash + -14 + public.kern2.f + -2 + public.kern2.j + -10 + public.kern2.m + -2 + public.kern2.o + -24 + public.kern2.period + 2 + public.kern2.quotedbl + -22 + public.kern2.quoteright + -2 + public.kern2.s + -6 + public.kern2.t + -6 + public.kern2.u + -20 + public.kern2.w + -8 + public.kern2.y + -10 + + public.kern1.S1 + + public.kern2.A.ss01 + 12 + public.kern2.G + -2 + public.kern2.J + 17 + public.kern2.Oslash.alt + -8 + public.kern2.T + -10 + public.kern2.V + -12 + public.kern2.W + -12 + public.kern2.Y + -30 + public.kern2.Z + -8 + public.kern2.emdash + 12 + public.kern2.f + -4 + public.kern2.g + -16 + public.kern2.i1 + 2 + public.kern2.j + -10 + public.kern2.quotedbl + -28 + public.kern2.quoteright + -26 + public.kern2.t + -6 + public.kern2.w + -11 + public.kern2.x + -8 + public.kern2.y + -13 + + public.kern1.T1 + + public.kern2.A.ss01 + -36 + public.kern2.A.ss012 + -40 + public.kern2.A2 + -46 + public.kern2.G + -38 + public.kern2.J + -68 + public.kern2.S + -8 + public.kern2.T + 36 + public.kern2.V + 16 + public.kern2.W + 18 + public.kern2.Y + 8 + public.kern2.a + -60 + public.kern2.comma + -56 + public.kern2.decyr.ss01 + -76 + public.kern2.emdash + -74 + public.kern2.f + -10 + public.kern2.g + -70 + public.kern2.g.ss01 + -14 + public.kern2.guillemotleft + -70 + public.kern2.guillemotright + -68 + public.kern2.i1 + 12 + public.kern2.j + -20 + public.kern2.m + -52 + public.kern2.o + -80 + public.kern2.period + -78 + public.kern2.quotedbl + 22 + public.kern2.quoteright + -14 + public.kern2.s + -59 + public.kern2.tecyr + -52 + public.kern2.u + -48 + public.kern2.w + -52 + public.kern2.x + -50 + public.kern2.y + -50 + public.kern2.z + -44 + + public.kern1.U1 + + public.kern2.A.ss01 + -8 + public.kern2.A.ss012 + -3 + public.kern2.A2 + -12 + public.kern2.J + -18 + public.kern2.Z + -18 + public.kern2.comma + -30 + public.kern2.i1 + 2 + public.kern2.j + -13 + public.kern2.period + -24 + public.kern2.quoteright + -34 + public.kern2.z + -10 + + public.kern1.Ucyr1 + + public.kern2.A.ss012 + -28 + public.kern2.A2 + -30 + public.kern2.G + -32 + public.kern2.T + 10 + public.kern2.a + -50 + public.kern2.comma + -76 + public.kern2.decyr.ss01 + -50 + public.kern2.emdash + -52 + public.kern2.guillemotright + -60 + public.kern2.i1 + 28 + public.kern2.m + -56 + public.kern2.o + -68 + public.kern2.period + -94 + public.kern2.tecyr + -18 + public.kern2.x + -20 + public.kern2.y + -30 + + public.kern1.V + + public.kern2.A.ss01 + -44 + public.kern2.A.ss012 + -28 + public.kern2.A2 + -33 + public.kern2.G + -36 + public.kern2.J + -72 + public.kern2.Oslash.alt + -8 + public.kern2.S + -26 + public.kern2.T + 16 + public.kern2.W + 4 + public.kern2.Z + -26 + public.kern2.a + -50 + public.kern2.comma + -62 + public.kern2.emdash + -44 + public.kern2.f + -4 + public.kern2.g + -38 + public.kern2.g.ss01 + -44 + public.kern2.guillemotleft + -48 + public.kern2.guillemotright + -30 + public.kern2.i1 + 8 + public.kern2.j + -18 + public.kern2.m + -50 + public.kern2.o + -57 + public.kern2.period + -94 + public.kern2.quotedbl + 12 + public.kern2.quoteright + -10 + public.kern2.s + -40 + public.kern2.t + -10 + public.kern2.u + -50 + public.kern2.w + -12 + public.kern2.x + -20 + public.kern2.y + -20 + public.kern2.z + -20 + + public.kern1.W.ss011 + + public.kern2.A.ss01 + -24 + public.kern2.A.ss012 + -16 + public.kern2.A2 + -40 + public.kern2.G + -4 + public.kern2.J + -34 + public.kern2.S + -2 + public.kern2.T + 18 + public.kern2.V + 10 + public.kern2.W + 4 + public.kern2.Y + 4 + public.kern2.Z + -9 + public.kern2.a + -26 + public.kern2.comma + -76 + public.kern2.emdash + -22 + public.kern2.g + -16 + public.kern2.g.ss01 + -17 + public.kern2.guillemotright + -12 + public.kern2.i1 + 7 + public.kern2.m + -12 + public.kern2.o + -38 + public.kern2.period + -82 + public.kern2.quotedbl + 12 + public.kern2.s + -15 + public.kern2.u + -14 + public.kern2.w + -18 + public.kern2.y + -10 + public.kern2.z + -12 + + public.kern1.W1 + + public.kern2.A.ss01 + -40 + public.kern2.A.ss012 + -16 + public.kern2.A2 + -27 + public.kern2.G + -12 + public.kern2.J + -58 + public.kern2.S + -6 + public.kern2.T + 16 + public.kern2.V + 2 + public.kern2.Y + 2 + public.kern2.Z + -10 + public.kern2.a + -42 + public.kern2.comma + -40 + public.kern2.emdash + -20 + public.kern2.g + -28 + public.kern2.guillemotleft + -36 + public.kern2.guillemotright + -34 + public.kern2.i1 + 6 + public.kern2.j + -16 + public.kern2.m + -28 + public.kern2.o + -44 + public.kern2.period + -46 + public.kern2.quotedbl + 4 + public.kern2.quoteright + -18 + public.kern2.s + -20 + public.kern2.u + -22 + public.kern2.w + -6 + public.kern2.x + -8 + public.kern2.y + -10 + public.kern2.z + -22 + + public.kern1.Y.ss011 + + public.kern2.A.ss01 + -42 + public.kern2.A.ss012 + -68 + public.kern2.G + -36 + public.kern2.S + -20 + public.kern2.W + 3 + public.kern2.Y + 6 + public.kern2.Z + -28 + public.kern2.a + -50 + public.kern2.comma + -106 + public.kern2.emdash + -64 + public.kern2.g.ss01 + -22 + public.kern2.i1 + 20 + public.kern2.m + -70 + public.kern2.o + -120 + public.kern2.period + -102 + public.kern2.quoteright + -20 + public.kern2.s + -61 + public.kern2.t + -6 + public.kern2.u + -60 + public.kern2.w + -40 + public.kern2.x + -8 + public.kern2.y + -6 + public.kern2.z + -8 + + public.kern1.Y1 + + public.kern2.A.ss012 + -46 + public.kern2.A2 + -60 + public.kern2.B + -2 + public.kern2.G + -46 + public.kern2.J + -78 + public.kern2.S + -32 + public.kern2.T + 10 + public.kern2.V + 5 + public.kern2.W + 2 + public.kern2.Y + 6 + public.kern2.a + -72 + public.kern2.comma + -84 + public.kern2.emdash + -72 + public.kern2.f + -30 + public.kern2.g + -64 + public.kern2.guillemotleft + -84 + public.kern2.guillemotright + -62 + public.kern2.i1 + -4 + public.kern2.j + -24 + public.kern2.m + -80 + public.kern2.o + -110 + public.kern2.period + -112 + public.kern2.quotedbl + 14 + public.kern2.quoteright + -24 + public.kern2.s + -74 + public.kern2.t + -12 + public.kern2.u + -70 + public.kern2.w + -36 + public.kern2.x + -42 + public.kern2.y + -42 + public.kern2.z + -50 + + public.kern1.Yacyr + + public.kern2.A.ss012 + 2 + public.kern2.i1 + 2 + + public.kern1.Z1 + + public.kern2.A.ss01 + 24 + public.kern2.A.ss012 + 22 + public.kern2.A2 + 2 + public.kern2.B + 2 + public.kern2.G + -31 + public.kern2.J + 6 + public.kern2.Oslash.alt + -2 + public.kern2.S + 4 + public.kern2.T + 8 + public.kern2.V + 2 + public.kern2.Z + 4 + public.kern2.a + -6 + public.kern2.comma + 30 + public.kern2.emdash + -28 + public.kern2.f + -3 + public.kern2.i1 + 16 + public.kern2.j + 4 + public.kern2.o + -26 + public.kern2.period + 14 + public.kern2.quotedbl + 2 + public.kern2.quoteright + -38 + public.kern2.s + -6 + public.kern2.t + -10 + public.kern2.u + -16 + public.kern2.w + -20 + public.kern2.y + -10 + public.kern2.z + 6 + + public.kern1.a1 + + public.kern2.A.ss012 + 10 + public.kern2.G + -4 + public.kern2.J + 2 + public.kern2.S + -16 + public.kern2.T + -70 + public.kern2.U + -2 + public.kern2.Ucyr.ss01 + -3 + public.kern2.V + -61 + public.kern2.W + -40 + public.kern2.Y + -84 + public.kern2.comma + -8 + public.kern2.f + -1 + public.kern2.j + -16 + public.kern2.quotedbl + -37 + public.kern2.quoteright + -52 + public.kern2.t + -6 + public.kern2.tecyr + -2 + public.kern2.u + -10 + public.kern2.w + -18 + public.kern2.y + -20 + public.kern2.z + 3 + + public.kern1.c1 + + public.kern2.A.ss012 + 4 + public.kern2.A2 + 18 + public.kern2.G + 8 + public.kern2.J + 4 + public.kern2.Oslash.alt + -2 + public.kern2.T + -50 + public.kern2.Ucyr.ss01 + -46 + public.kern2.V + -32 + public.kern2.W + -20 + public.kern2.Y + -50 + public.kern2.Z + 2 + public.kern2.a + 2 + public.kern2.comma + -8 + public.kern2.emdash + -6 + public.kern2.g + 8 + public.kern2.o + -2 + public.kern2.period + -14 + public.kern2.quotedbl + -26 + public.kern2.quoteright + -16 + public.kern2.t + 2 + + public.kern1.comma1 + + public.kern2.A.ss01 + 2 + public.kern2.A2 + 2 + public.kern2.G + -60 + public.kern2.J + 22 + public.kern2.T + -72 + public.kern2.U + -24 + public.kern2.V + -78 + public.kern2.W + -32 + public.kern2.Y + -102 + public.kern2.Z + 6 + public.kern2.a + -16 + public.kern2.f + -4 + public.kern2.five + -16 + public.kern2.g.ss01 + -6 + public.kern2.h + -16 + public.kern2.i1 + -16 + public.kern2.j + 2 + public.kern2.m + -16 + public.kern2.o + -32 + public.kern2.t + -30 + public.kern2.u + -24 + public.kern2.w + -26 + public.kern2.x + -16 + public.kern2.y + -64 + public.kern2.z + -6 + public.kern2.zero + -24 + + public.kern1.dcaron + + public.kern2.B + 46 + public.kern2.G + 6 + public.kern2.J + 2 + public.kern2.Oslash.alt + 76 + public.kern2.S + 36 + public.kern2.T + 108 + public.kern2.U + 48 + public.kern2.V + 92 + public.kern2.W + 94 + public.kern2.Y + 90 + public.kern2.Z + 58 + public.kern2.a + 6 + public.kern2.f + 24 + public.kern2.fi.ss01 + 44 + public.kern2.g + 4 + public.kern2.g.ss01 + 4 + public.kern2.h + 56 + public.kern2.i1 + 56 + public.kern2.j + 46 + public.kern2.l.ss01 + 32 + public.kern2.m + 7 + public.kern2.o + 4 + public.kern2.s + 10 + public.kern2.t + 48 + public.kern2.u + 6 + public.kern2.w + 30 + public.kern2.x + 22 + public.kern2.y + 22 + public.kern2.z + 52 + + public.kern1.decyr1 + + public.kern2.A.ss012 + 6 + public.kern2.A2 + 12 + public.kern2.G + -4 + public.kern2.Oslash.alt + 2 + public.kern2.T + -74 + public.kern2.Ucyr.ss01 + -36 + public.kern2.comma + 22 + public.kern2.decyr.ss01 + 7 + public.kern2.emdash + -10 + public.kern2.o + -18 + public.kern2.period + 12 + public.kern2.quoteright + -22 + public.kern2.tecyr + -22 + public.kern2.x + 2 + public.kern2.y + -2 + + public.kern1.e.ss011 + + public.kern2.Oslash.alt + -10 + public.kern2.T + -16 + public.kern2.V + -50 + public.kern2.W + -6 + public.kern2.Y + -20 + public.kern2.comma + -24 + public.kern2.emdash + -8 + public.kern2.o + -2 + public.kern2.quotedbl + -36 + public.kern2.w + -4 + public.kern2.y + -4 + + public.kern1.e1 + + public.kern2.A.ss012 + 10 + public.kern2.A2 + -4 + public.kern2.G + 2 + public.kern2.Oslash.alt + -20 + public.kern2.T + -76 + public.kern2.Ucyr.ss01 + -66 + public.kern2.V + -60 + public.kern2.W + -46 + public.kern2.Y + -106 + public.kern2.Z + -10 + public.kern2.comma + -2 + public.kern2.j + -18 + public.kern2.period + -18 + public.kern2.quotedbl + -28 + public.kern2.quoteright + -32 + public.kern2.w + -12 + public.kern2.x + -20 + public.kern2.y + -22 + public.kern2.z + -8 + + public.kern1.emdash1 + + public.kern2.A.ss01 + 10 + public.kern2.A.ss012 + 2 + public.kern2.A2 + -8 + public.kern2.G + 16 + public.kern2.J + -40 + public.kern2.Oslash.alt + -22 + public.kern2.S + -26 + public.kern2.T + -74 + public.kern2.Ucyr.ss01 + -50 + public.kern2.V + -44 + public.kern2.W + -20 + public.kern2.Y + -72 + public.kern2.Z + -10 + public.kern2.decyr.ss01 + -26 + public.kern2.f + -6 + public.kern2.five + -20 + public.kern2.four + 16 + public.kern2.g.ss01 + 8 + public.kern2.j + -16 + public.kern2.tecyr + -40 + public.kern2.x + -24 + public.kern2.y + -18 + public.kern2.z + -24 + + public.kern1.f1 + + public.kern2.A.ss012 + -10 + public.kern2.A2 + -22 + public.kern2.J + -56 + public.kern2.S + 10 + public.kern2.T + 12 + public.kern2.V + 8 + public.kern2.Y + 10 + public.kern2.a + -7 + public.kern2.comma + -42 + public.kern2.emdash + -22 + public.kern2.f + 8 + public.kern2.g + -8 + public.kern2.h + 2 + public.kern2.i1 + 5 + public.kern2.o + -26 + public.kern2.period + -66 + public.kern2.quotedbl + 24 + public.kern2.quoteright + 22 + public.kern2.s + -16 + public.kern2.t + 11 + public.kern2.w + 2 + public.kern2.x + 2 + public.kern2.y + 18 + + public.kern1.five1 + + public.kern2.comma + -30 + public.kern2.five + -6 + public.kern2.i1 + 4 + public.kern2.period + -14 + + public.kern1.four1 + + public.kern2.emdash + -16 + public.kern2.five + 10 + public.kern2.four + 14 + public.kern2.period + 4 + public.kern2.quotedbl + -20 + + public.kern1.g.ss011 + + public.kern2.A.ss01 + 4 + public.kern2.V + -16 + public.kern2.W + 4 + public.kern2.Y + -6 + public.kern2.comma + 14 + public.kern2.g.ss01 + 4 + public.kern2.h + 2 + public.kern2.i1 + 2 + public.kern2.j + 12 + public.kern2.l.ss01 + 4 + public.kern2.m + 4 + public.kern2.o + 2 + public.kern2.quotedbl + 6 + public.kern2.quoteright + 16 + public.kern2.s + 2 + public.kern2.t + 8 + public.kern2.u + 2 + public.kern2.w + 2 + public.kern2.x + 6 + public.kern2.y + 4 + public.kern2.z + 4 + + public.kern1.g1 + + public.kern2.A2 + 8 + public.kern2.T + -64 + public.kern2.V + -20 + public.kern2.W + -8 + public.kern2.Y + -30 + public.kern2.a + -2 + public.kern2.comma + 12 + public.kern2.f + 8 + public.kern2.i1 + 2 + public.kern2.j + 24 + public.kern2.m + -2 + public.kern2.o + -1 + public.kern2.quotedbl + -8 + public.kern2.s + -2 + public.kern2.w + -2 + public.kern2.y + 6 + + public.kern1.gecyr + + public.kern2.A2 + -14 + public.kern2.G + 2 + public.kern2.Oslash.alt + -4 + public.kern2.T + -36 + public.kern2.Ucyr.ss01 + -24 + public.kern2.a + -4 + public.kern2.comma + -60 + public.kern2.decyr.ss01 + -30 + public.kern2.emdash + -50 + public.kern2.i1 + 8 + public.kern2.o + -19 + public.kern2.period + -86 + public.kern2.quoteright + 24 + public.kern2.x + 8 + public.kern2.y + 16 + + public.kern1.guillemotright1 + + public.kern2.J + -34 + public.kern2.T + -70 + public.kern2.V + -48 + public.kern2.W + -36 + public.kern2.Y + -84 + + public.kern1.hardcyr + + public.kern2.Oslash.alt + -10 + public.kern2.T + -72 + public.kern2.Ucyr.ss01 + -56 + public.kern2.period + -8 + public.kern2.quotedbl + -101 + public.kern2.quoteright + -54 + public.kern2.tecyr + -86 + public.kern2.x + -20 + public.kern2.y + -52 + + public.kern1.i1 + + public.kern2.B + 2 + public.kern2.G + -2 + public.kern2.Gecyr + 2 + public.kern2.Oslash.alt + 8 + public.kern2.T + 12 + public.kern2.U + 2 + public.kern2.Ucyr.ss01 + 10 + public.kern2.V + 26 + public.kern2.W + 8 + public.kern2.Y + 28 + public.kern2.Z + 6 + public.kern2.h + 5 + public.kern2.i1 + 16 + public.kern2.j + -30 + public.kern2.percent + 6 + public.kern2.quotedbl + 5 + public.kern2.quoteright + -12 + + public.kern1.icyr1 + + tenmillionscomb-cy + 6 + public.kern2.A.ss012 + 2 + public.kern2.J + 2 + public.kern2.T + -52 + public.kern2.Ucyr.ss01 + -56 + public.kern2.V + -40 + public.kern2.W + -20 + public.kern2.Y + -80 + public.kern2.j + 8 + public.kern2.quoteright + -16 + + public.kern1.j1 + + public.kern2.T + -4 + public.kern2.i1 + 2 + public.kern2.j + 4 + public.kern2.quoteright + -16 + public.kern2.z + 2 + + public.kern1.k + + public.kern2.A.ss01 + 4 + public.kern2.A.ss012 + 12 + public.kern2.A2 + 12 + public.kern2.G + -12 + public.kern2.J + 12 + public.kern2.T + -48 + public.kern2.Ucyr.ss01 + -20 + public.kern2.V + -6 + public.kern2.W + -20 + public.kern2.Y + -26 + public.kern2.a + -10 + public.kern2.emdash + -42 + public.kern2.o + -26 + public.kern2.quoteright + -4 + public.kern2.s + -2 + public.kern2.t + 2 + public.kern2.x + 12 + public.kern2.z + 2 + + public.kern1.l + + public.kern2.i1 + 2 + public.kern2.j + 5 + public.kern2.quoteright + -16 + public.kern2.s + 1 + + public.kern1.l.ss011 + + public.kern2.A.ss01 + 4 + public.kern2.G + -2 + public.kern2.T + -14 + public.kern2.U + -2 + public.kern2.V + -42 + public.kern2.W + -40 + public.kern2.Y + -10 + public.kern2.comma + 16 + public.kern2.f + -40 + public.kern2.fi.ss01 + -4 + public.kern2.g.ss01 + 2 + public.kern2.j + -16 + public.kern2.o + -2 + public.kern2.period + 16 + public.kern2.quoteright + -16 + public.kern2.t + -12 + public.kern2.w + -34 + public.kern2.y + -36 + + public.kern1.n + + public.kern2.A.ss01 + 2 + public.kern2.A.ss012 + 2 + public.kern2.G + -2 + public.kern2.J + 4 + public.kern2.T + -64 + public.kern2.Ucyr.ss01 + -66 + public.kern2.V + -60 + public.kern2.W + -40 + public.kern2.Y + -100 + public.kern2.g + 1 + public.kern2.guillemotright + 2 + public.kern2.j + -16 + public.kern2.quotedbl + -29 + public.kern2.quoteright + -18 + public.kern2.w + -8 + public.kern2.y + -21 + + public.kern1.numero + + public.kern2.i1 + 8 + + public.kern1.o1 + + public.kern2.A.ss01 + 2 + public.kern2.A2 + -10 + public.kern2.J + -16 + public.kern2.Oslash.alt + -30 + public.kern2.S + -12 + public.kern2.T + -80 + public.kern2.Ucyr.ss01 + -80 + public.kern2.V + -57 + public.kern2.W + -44 + public.kern2.Y + -102 + public.kern2.Z + -26 + public.kern2.a + -4 + public.kern2.comma + -46 + public.kern2.emdash + 2 + public.kern2.j + -18 + public.kern2.period + -42 + public.kern2.quotedbl + -36 + public.kern2.quoteright + -34 + public.kern2.s + -10 + public.kern2.t + -1 + public.kern2.tecyr + -28 + public.kern2.w + -16 + public.kern2.x + -25 + public.kern2.y + -30 + public.kern2.z + -18 + + public.kern1.period1 + + public.kern2.A.ss01 + 16 + public.kern2.A.ss012 + 28 + public.kern2.A2 + 32 + public.kern2.G + -46 + public.kern2.J + 26 + public.kern2.Oslash.alt + 10 + public.kern2.S + 2 + public.kern2.T + -78 + public.kern2.U + -24 + public.kern2.Ucyr.ss01 + -20 + public.kern2.V + -94 + public.kern2.W + -46 + public.kern2.Y + -112 + public.kern2.Z + 12 + public.kern2.f + -6 + public.kern2.five + -8 + public.kern2.four + 2 + public.kern2.g.ss01 + 10 + public.kern2.j + -14 + public.kern2.o + -42 + public.kern2.quotedbl + -8 + public.kern2.t + -30 + public.kern2.tecyr + -62 + public.kern2.u + -26 + public.kern2.w + -32 + public.kern2.y + -75 + public.kern2.z + 2 + public.kern2.zero + -12 + + public.kern1.quotedbl1 + + public.kern2.A.ss01 + -66 + public.kern2.A.ss012 + -34 + public.kern2.A2 + -50 + public.kern2.G + -20 + public.kern2.J + -74 + public.kern2.T + 30 + public.kern2.V + 12 + public.kern2.W + 4 + public.kern2.Y + 14 + public.kern2.Z + -8 + public.kern2.a + -30 + public.kern2.decyr.ss01 + -40 + public.kern2.four + -62 + public.kern2.g + -27 + public.kern2.g.ss01 + -36 + public.kern2.i1 + 5 + public.kern2.j + -16 + public.kern2.o + -36 + public.kern2.period + -14 + public.kern2.s + -19 + public.kern2.t + 4 + public.kern2.u + -8 + public.kern2.w + 2 + public.kern2.x + -8 + public.kern2.y + 2 + public.kern2.z + -8 + public.kern2.zero + -18 + + public.kern1.quoteleft1 + + public.kern2.A.ss01 + -62 + public.kern2.A2 + -56 + public.kern2.B + 2 + public.kern2.G + -20 + public.kern2.J + -36 + public.kern2.Oslash.alt + 14 + public.kern2.T + 38 + public.kern2.V + 22 + public.kern2.W + 6 + public.kern2.Y + 24 + public.kern2.Z + -6 + public.kern2.a + -30 + public.kern2.f + 8 + public.kern2.g + -48 + public.kern2.g.ss01 + -30 + public.kern2.i1 + 18 + public.kern2.j + -8 + public.kern2.m + -20 + public.kern2.o + -56 + public.kern2.s + -28 + public.kern2.u + -20 + public.kern2.w + -24 + public.kern2.x + -28 + public.kern2.y + -10 + public.kern2.z + -28 + + public.kern1.quoteright1 + + public.kern2.A.ss01 + -74 + public.kern2.A2 + -60 + public.kern2.G + -30 + public.kern2.J + -48 + public.kern2.Oslash.alt + -6 + public.kern2.S + -26 + public.kern2.T + 20 + public.kern2.U + -16 + public.kern2.V + 6 + public.kern2.W + 6 + public.kern2.Y + 14 + public.kern2.Z + -24 + public.kern2.a + -68 + public.kern2.f + -2 + public.kern2.g + -78 + public.kern2.g.ss01 + -72 + public.kern2.h + -26 + public.kern2.i1 + -12 + public.kern2.m + -28 + public.kern2.o + -86 + public.kern2.s + -66 + public.kern2.u + -28 + public.kern2.w + -32 + public.kern2.x + -32 + public.kern2.y + -30 + public.kern2.z + -54 + + public.kern1.s1 + + public.kern2.A.ss01 + 2 + public.kern2.A2 + 8 + public.kern2.G + -2 + public.kern2.J + 2 + public.kern2.Oslash.alt + -4 + public.kern2.T + -59 + public.kern2.V + -40 + public.kern2.W + -22 + public.kern2.Y + -74 + public.kern2.Z + -8 + public.kern2.a + 2 + public.kern2.comma + -8 + public.kern2.emdash + -6 + public.kern2.f + -2 + public.kern2.guillemotright + 4 + public.kern2.o + -8 + public.kern2.period + -16 + public.kern2.quotedbl + -30 + public.kern2.quoteright + -18 + public.kern2.s + 1 + public.kern2.t + -2 + public.kern2.w + -5 + public.kern2.x + -10 + public.kern2.y + -6 + + public.kern1.t.ss011 + + public.kern2.A.ss01 + 6 + public.kern2.B + 2 + public.kern2.G + 2 + public.kern2.Y + -8 + public.kern2.Z + 2 + public.kern2.h + 2 + public.kern2.j + 4 + public.kern2.l.ss01 + 2 + public.kern2.period + 4 + public.kern2.s + 2 + public.kern2.t + 4 + public.kern2.z + 4 + + public.kern1.t1 + + public.kern2.G + -8 + public.kern2.J + 22 + public.kern2.T + -12 + public.kern2.V + -20 + public.kern2.W + -8 + public.kern2.Y + -24 + public.kern2.Z + 2 + public.kern2.a + 2 + public.kern2.emdash + -24 + public.kern2.f + 11 + public.kern2.g + 2 + public.kern2.h + 1 + public.kern2.i1 + 2 + public.kern2.j + 2 + public.kern2.o + -8 + public.kern2.period + 2 + public.kern2.quotedbl + 4 + public.kern2.quoteright + 2 + public.kern2.t + 12 + public.kern2.x + 2 + public.kern2.y + 8 + public.kern2.z + 20 + + public.kern1.u1 + + public.kern2.A.ss01 + 2 + public.kern2.T + -56 + public.kern2.V + -50 + public.kern2.W + -28 + public.kern2.Y + -80 + public.kern2.j + -8 + public.kern2.quotedbl + -8 + public.kern2.quoteright + -16 + public.kern2.z + 2 + + public.kern1.uni0435.ss011 + + public.kern2.A.ss012 + 4 + public.kern2.T + -68 + public.kern2.Ucyr.ss01 + -54 + public.kern2.V + -50 + public.kern2.W + -18 + public.kern2.Y + -64 + public.kern2.w + -5 + public.kern2.x + -8 + public.kern2.y + -10 + + public.kern1.w1 + + public.kern2.A.ss01 + -4 + public.kern2.A.ss012 + -4 + public.kern2.A2 + -20 + public.kern2.J + -46 + public.kern2.Oslash.alt + -20 + public.kern2.S + -16 + public.kern2.T + -48 + public.kern2.V + -12 + public.kern2.W + -6 + public.kern2.Y + -36 + public.kern2.Z + -30 + public.kern2.a + -16 + public.kern2.comma + -22 + public.kern2.f + 2 + public.kern2.g + -2 + public.kern2.j + -10 + public.kern2.o + -16 + public.kern2.period + -32 + public.kern2.quotedbl + 2 + public.kern2.quoteright + 2 + public.kern2.s + -5 + public.kern2.w + -2 + + public.kern1.x + + public.kern2.A.ss01 + 4 + public.kern2.A.ss012 + 4 + public.kern2.A2 + 4 + public.kern2.G + -12 + public.kern2.J + 4 + public.kern2.S + -8 + public.kern2.T + -48 + public.kern2.Ucyr.ss01 + -18 + public.kern2.V + -20 + public.kern2.W + -8 + public.kern2.Y + -42 + public.kern2.a + -2 + public.kern2.emdash + -24 + public.kern2.o + -25 + public.kern2.quotedbl + -8 + public.kern2.s + -12 + public.kern2.x + 4 + public.kern2.z + 2 + + public.kern1.y1 + + public.kern2.A.ss01 + -4 + public.kern2.A.ss012 + -7 + public.kern2.A2 + -20 + public.kern2.G + -2 + public.kern2.J + -56 + public.kern2.Oslash.alt + -30 + public.kern2.T + -48 + public.kern2.Ucyr.ss01 + -11 + public.kern2.V + -20 + public.kern2.W + -6 + public.kern2.Y + -42 + public.kern2.Z + -20 + public.kern2.a + -7 + public.kern2.comma + -40 + public.kern2.decyr.ss01 + -22 + public.kern2.emdash + -6 + public.kern2.f + 18 + public.kern2.g + -10 + public.kern2.g.ss01 + -4 + public.kern2.h + -2 + public.kern2.j + -10 + public.kern2.o + -20 + public.kern2.period + -78 + public.kern2.quotedbl + 2 + public.kern2.quoteright + 16 + public.kern2.s + -4 + public.kern2.t + 10 + public.kern2.x + 2 + public.kern2.y + 2 + public.kern2.z + -2 + + public.kern1.z1 + + public.kern2.A.ss012 + 4 + public.kern2.A2 + 12 + public.kern2.J + 6 + public.kern2.S + -16 + public.kern2.T + -42 + public.kern2.V + -20 + public.kern2.W + -22 + public.kern2.Y + -50 + public.kern2.comma + 10 + public.kern2.f + 12 + public.kern2.g + 2 + public.kern2.j + 2 + public.kern2.o + -18 + public.kern2.period + 2 + public.kern2.quotedbl + -16 + public.kern2.quoteright + -8 + public.kern2.t + 2 + public.kern2.x + 2 + public.kern2.z + 2 + + + diff --git a/sources/FixelDisplay-Medium.ufo/layercontents.plist b/sources/FixelDisplay-Medium.ufo/layercontents.plist new file mode 100644 index 00000000..7a35a5cf --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/layercontents.plist @@ -0,0 +1,10 @@ + + + + + + public.default + glyphs + + + diff --git a/sources/FixelDisplay-Medium.ufo/lib.plist b/sources/FixelDisplay-Medium.ufo/lib.plist new file mode 100644 index 00000000..c0069150 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/lib.plist @@ -0,0 +1,1671 @@ + + + + + com.fontlab.v2.tth + + stems + + 69 + + width + 69 + horizontal + + round + + 35 + 3 + 47 + 4 + 60 + 5 + 0 + 7 + 22 + 8 + + + 74 + + width + 74 + horizontal + + round + + 19 + 2 + 35 + 3 + 47 + 4 + 60 + 5 + 72 + 6 + 0 + 7 + 20 + 8 + + + 76 + + width + 76 + horizontal + + round + + 19 + 2 + 35 + 3 + 72 + 6 + 0 + 7 + 20 + 8 + + + 80 + + width + 80 + horizontal + + round + + 29 + 3 + 47 + 4 + 60 + 5 + 72 + 6 + 0 + 7 + 20 + 8 + + + 99 + + width + 99 + horizontal + + round + + 19 + 2 + 29 + 3 + 37 + 4 + 48 + 5 + 58 + 6 + 0 + 7 + 16 + 8 + + + 74 + + width + 74 + horizontal + + round + + 19 + 2 + 35 + 3 + 47 + 4 + 60 + 5 + 72 + 6 + 0 + 7 + 20 + 8 + + + 80 + + width + 80 + horizontal + + round + + 29 + 3 + 47 + 4 + 60 + 5 + 72 + 6 + 0 + 7 + 20 + 8 + + + 93 + + width + 93 + horizontal + + round + + 19 + 2 + 29 + 3 + 37 + 4 + 48 + 5 + 58 + 6 + 0 + 7 + 16 + 8 + + + + + com.schriftgestaltung.disablesAutomaticAlignment + + com.schriftgestaltung.fontMasterID + master01 + com.schriftgestaltung.glyphOrder + + com.schriftgestaltung.master.name + regular + com.schriftgestaltung.useNiceNames + + com.schriftgestaltung.weightValue + 400 + public.postscriptNames + + A-cy + uni0410 + A-cy.ss01 + uni0410.ss01 + Be-cy + uni0411 + Che-cy + uni0427 + De-cy + uni0414 + Dze-cy + uni0405 + E-cy + uni0404 + Ef-cy + uni0424 + El-cy + uni041B + Em-cy + uni041C + Em-cy.ss01 + uni041C.ss01 + En-cy + uni041D + Er-cy + uni0420 + Ereversed-cy + uni042D + Es-cy + uni0421 + Gacute + uni01F4 + Gacute.ss01 + uni01F4.ss01 + Gcommaaccent + uni0122 + Gcommaaccent.ss01 + uni0122.ss01 + Ge-cy + uni0413 + Germandbls + uni1E9E + Gheupturn-cy + uni0490 + Ha-cy + uni0425 + Ha-cy.ss01 + uni0425.ss01 + Hardsign-cy + uni042A + I-cy + uni0406 + Ia-cy + uni042F + Ia-cy.ss01 + uni042F.ss01 + Ie-cy + uni0415 + Ii-cy + uni0418 + Iishort-cy + uni0419 + Io-cy + uni0401 + Iu-cy + uni042E + Ka-cy + uni041A + Ka-cy.ss01 + uni041A.ss01 + Kcommaaccent + uni0136 + Kcommaaccent.ss01 + uni0136.ss01 + Lcommaaccent + uni013B + Ncommaaccent + uni0145 + Ncommaaccent.ss01 + uni0145.ss01 + O-cy + uni041E + Pe-cy + uni041F + Rcommaaccent + uni0156 + Scommaaccent + uni0218 + Sha-cy + uni0428 + Shcha-cy + uni0429 + Softsign-cy + uni042C + Tcedilla + uni0162 + Tcommaaccent + uni021A + Te-cy + uni0422 + Tse-cy + uni0426 + U-cy + uni0423 + U-cy.ss01 + uni0423.ss01 + Ushort-cy + uni040E + Ushort-cy.ss01 + uni040E.ss01 + Ve-cy + uni0412 + Yeru-cy + uni042B + Yi-cy + uni0407 + Ze-cy + uni0417 + Zhe-cy + uni0416 + Zhe-cy.ss01 + uni0416.ss01 + _perc-circule + _perccircule + a-cy + uni0430 + a-cy.ss01 + uni0430.ss01 + be-cy + uni0431 + che-cy + uni0447 + commaaccentcomb + uni0326 + commaaccentcomb.salt + uni0326.salt + de-cy + uni0434 + de-cy.ss01 + uni0434.ss01 + dze-cy + uni0455 + e-cy + uni0454 + ef-cy + uni0444 + el-cy + uni043B + el-cy.ss01 + uni043B.ss01 + em-cy + uni043C + en-cy + uni043D + er-cy + uni0440 + er-cy.ss01 + uni0440.ss01 + ereversed-cy + uni044D + es-cy + uni0441 + euro + Euro + gacute + uni01F5 + gacute.ss01 + uni01F5.ss01 + gcommaaccent + uni0123 + gcommaaccent.ss01 + uni0123.ss01 + ge-cy + uni0433 + gheupturn-cy + uni0491 + guillemetleft + guillemotleft + guillemetright + guillemotright + ha-cy + uni0445 + hardsign-cy + uni044A + hardsign-cy.ss01 + uni044A.ss01 + hryvnia + uni20B4 + i-cy + uni0456 + ia-cy + uni044F + ia-cy.ss01 + uni044F.ss01 + idotless + dotlessi + ie-cy + uni0435 + ie-cy.ss01 + uni0435.ss01 + ii-cy + uni0438 + iishort-cy + uni0439 + io-cy + uni0451 + io-cy.ss01 + uni0451.ss01 + iu-cy + uni044E + jdotless + uni0237 + je-cy + uni0458 + ka-cy + uni043A + kcommaaccent + uni0137 + lcommaaccent + uni013C + lcommaaccent.ss01 + uni013C.ss01 + ncommaaccent + uni0146 + numero + uni2116 + numero.ss01 + uni2116.ss01 + o-cy + uni043E + onesuperior + uni00B9 + pe-cy + uni043F + rcommaaccent + uni0157 + scommaaccent + uni0219 + sha-cy + uni0448 + shcha-cy + uni0449 + softsign-cy + uni044C + softsign-cy.ss01 + uni044C.ss01 + tcedilla + uni0163 + tcedilla.ss01 + uni0163.ss01 + tcommaaccent + uni021B + tcommaaccent.ss01 + uni021B.ss01 + te-cy + uni0442 + te-cy.ss01 + uni0442.ss01 + threesuperior + uni00B3 + tse-cy + uni0446 + twosuperior + uni00B2 + u-cy + uni0443 + ushort-cy + uni045E + ve-cy + uni0432 + ve-cy.ss01 + uni0432.ss01 + yeru-cy + uni044B + yeru-cy.ss01 + uni044B.ss01 + yi-cy + uni0457 + ze-cy + uni0437 + zhe-cy + uni0436 + + public.skipExportGlyphs + + Oslash.bold + oslash.bold + _perc-circule + + public.glyphOrder + + .notdef + NULL + CR + space + A + Aacute + Abreve + Acircumflex + Adieresis + Agrave + Amacron + Aogonek + Aring + Atilde + AE + B + C + Cacute + Ccaron + Ccedilla + Ccircumflex + Cdotaccent + D + Eth + Dcaron + Dcroat + E + Eacute + Ebreve + Ecaron + Ecircumflex + Edieresis + Edotaccent + Egrave + Emacron + Eogonek + F + G + Gacute + Gbreve + Gcircumflex + Gcommaaccent + Gdotaccent + H + Hbar + Hcircumflex + I + IJ + Iacute + Ibreve + Icircumflex + Idieresis + Idotaccent + Igrave + Imacron + Iogonek + Itilde + J + Jcircumflex + K + Kcommaaccent + L + Lacute + Lcaron + Lcommaaccent + Ldot + Lslash + M + N + Nacute + Ncaron + Ncommaaccent + Eng + Ntilde + O + Oacute + Obreve + Ocircumflex + Odieresis + Ograve + Ohungarumlaut + Omacron + Oslash + Otilde + OE + P + Thorn + Q + R + Racute + Rcaron + Rcommaaccent + S + Sacute + Scaron + Scedilla + Scircumflex + Scommaaccent + Germandbls + T + Tbar + Tcaron + Tcedilla + Tcommaaccent + U + Uacute + Ubreve + Ucircumflex + Udieresis + Ugrave + Uhungarumlaut + Umacron + Uogonek + Uring + Utilde + V + W + Wacute + Wcircumflex + Wdieresis + Wgrave + X + Y + Yacute + Ycircumflex + Ydieresis + Z + Zacute + Zcaron + Zdotaccent + A.ss01 + Aacute.ss01 + Abreve.ss01 + Acircumflex.ss01 + Adieresis.ss01 + Agrave.ss01 + Amacron.ss01 + Aogonek.ss01 + Aring.ss01 + Atilde.ss01 + AE.ss01 + G.ss01 + Gacute.ss01 + Gbreve.ss01 + Gcircumflex.ss01 + Gcommaaccent.ss01 + Gdotaccent.ss01 + J.ss01 + Jcircumflex.ss01 + K.ss01 + Kcommaaccent.ss01 + M.ss01 + N.ss01 + Nacute.ss01 + Ncaron.ss01 + Ncommaaccent.ss01 + Eng.ss01 + Ntilde.ss01 + Q.ss01 + V.ss01 + W.ss01 + Wacute.ss01 + Wcircumflex.ss01 + Wdieresis.ss01 + Wgrave.ss01 + X.ss01 + Y.ss01 + Yacute.ss01 + Ycircumflex.ss01 + Ydieresis.ss01 + Z.ss01 + Zacute.ss01 + Zcaron.ss01 + Zdotaccent.ss01 + a + aacute + abreve + acircumflex + adieresis + agrave + amacron + aogonek + aring + atilde + ae + b + c + cacute + ccaron + ccedilla + ccircumflex + cdotaccent + d + eth + dcaron + dcroat + e + eacute + ebreve + ecaron + ecircumflex + edieresis + edotaccent + egrave + emacron + eogonek + f + g + gacute + gbreve + gcircumflex + gcommaaccent + gdotaccent + h + hbar + hcircumflex + i + idotless + iacute + ibreve + icircumflex + idieresis + igrave + ij + imacron + iogonek + itilde + j + jdotless + jcircumflex + k + kcommaaccent + kgreenlandic + l + lacute + lcaron + lcommaaccent + ldot + lslash + m + n + nacute + napostrophe + ncaron + ncommaaccent + eng + ntilde + o + oacute + obreve + ocircumflex + odieresis + ograve + ohungarumlaut + omacron + oslash + otilde + oe + p + thorn + q + r + racute + rcaron + rcommaaccent + s + sacute + scaron + scedilla + scircumflex + scommaaccent + germandbls + t + tbar + tcaron + tcedilla + tcommaaccent + u + uacute + ubreve + ucircumflex + udieresis + ugrave + uhungarumlaut + umacron + uogonek + uring + utilde + v + w + wacute + wcircumflex + wdieresis + wgrave + x + y + yacute + ycircumflex + ydieresis + z + zacute + zcaron + zdotaccent + a.ss01 + aacute.ss01 + abreve.ss01 + acircumflex.ss01 + adieresis.ss01 + agrave.ss01 + amacron.ss01 + aogonek.ss01 + aring.ss01 + atilde.ss01 + ae.ss01 + b.ss01 + d.ss01 + dcaron.ss01 + dcroat.ss01 + e.ss01 + eacute.ss01 + ebreve.ss01 + ecaron.ss01 + ecircumflex.ss01 + edieresis.ss01 + edotaccent.ss01 + egrave.ss01 + emacron.ss01 + eogonek.ss01 + f.ss01 + g.ss01 + gacute.ss01 + gbreve.ss01 + gcircumflex.ss01 + gcommaaccent.ss01 + gdotaccent.ss01 + l.ss01 + lacute.ss01 + lcaron.ss01 + lcommaaccent.ss01 + ldot.ss01 + lslash.ss01 + oe.ss01 + p.ss01 + q.ss01 + germandbls.ss01 + t.ss01 + tbar.ss01 + tcaron.ss01 + tcedilla.ss01 + tcommaaccent.ss01 + f_f + f_f_i + f_f_l + fi + fl + f_f.ss01 + f_f_i.ss01 + f_f_l.ss01 + fi.ss01 + fl.ss01 + ordfeminine + ordmasculine + A-cy + Be-cy + Ve-cy + Ge-cy + Gheupturn-cy + De-cy + Ie-cy + Io-cy + Zhe-cy + Ze-cy + Ii-cy + Iishort-cy + Ka-cy + El-cy + Em-cy + En-cy + O-cy + Pe-cy + Er-cy + Es-cy + Te-cy + U-cy + Ushort-cy + Ef-cy + Ha-cy + Che-cy + Tse-cy + Sha-cy + Shcha-cy + Softsign-cy + Hardsign-cy + Yeru-cy + Dze-cy + E-cy + Ereversed-cy + I-cy + Yi-cy + Iu-cy + Ia-cy + A-cy.ss01 + Zhe-cy.ss01 + Ka-cy.ss01 + Em-cy.ss01 + U-cy.ss01 + Ushort-cy.ss01 + Ha-cy.ss01 + Ia-cy.ss01 + a-cy + be-cy + ve-cy + ge-cy + gheupturn-cy + de-cy + ie-cy + io-cy + zhe-cy + ze-cy + ii-cy + iishort-cy + ka-cy + el-cy + em-cy + en-cy + o-cy + pe-cy + er-cy + es-cy + te-cy + u-cy + ushort-cy + ef-cy + ha-cy + che-cy + tse-cy + sha-cy + shcha-cy + softsign-cy + hardsign-cy + yeru-cy + dze-cy + e-cy + ereversed-cy + i-cy + yi-cy + je-cy + iu-cy + ia-cy + a-cy.ss01 + ve-cy.ss01 + de-cy.ss01 + ie-cy.ss01 + io-cy.ss01 + el-cy.ss01 + er-cy.ss01 + te-cy.ss01 + softsign-cy.ss01 + hardsign-cy.ss01 + yeru-cy.ss01 + ia-cy.ss01 + zero + one + two + three + four + five + six + seven + eight + nine + zero.osf + one.osf + two.osf + three.osf + four.osf + five.osf + six.osf + seven.osf + nine.osf + zero.tf + one.tf + two.tf + three.tf + four.tf + five.tf + six.tf + seven.tf + eight.tf + nine.tf + onesuperior + twosuperior + threesuperior + period + comma + colon + semicolon + ellipsis + exclam + exclamdown + question + questiondown + periodcentered + bullet + asterisk + numbersign + slash + backslash + parenleft + parenright + braceleft + braceright + bracketleft + bracketright + hyphen + endash + emdash + underscore + quotesinglbase + quotedblbase + quotedblleft + quotedblright + quoteleft + quoteright + guillemetleft + guillemetright + guilsinglleft + guilsinglright + quotedbl + quotesingle + cent + currency + dollar + euro + hryvnia + sterling + yen + yen.ss01 + plus + minus + multiply + divide + equal + greater + less + asciitilde + asciicircum + percent + perthousand + at + ampersand + paragraph + section + copyright + registered + trademark + degree + bar + brokenbar + dagger + daggerdbl + numero + estimated + numero.ss01 + commaaccentcomb + dieresis + dotaccent + grave + acute + hungarumlaut + circumflex + caron + breve + ring + tilde + macron + cedilla + ogonek + dieresis.case + dotaccent.case + grave.case + acute.case + hungarumlaut.case + circumflex.case + caron.case + breve.case + ring.case + tilde.case + macron.case + commaaccentcomb.salt + caron.salt + uniE01A + _perc-circule + eight.osf + ruble + Ljecyr + Njecyr + Jecyr + dzhecyr + Dzhecyr + ljecyr + njecyr + Tshecyr + Djecyr + tshecyr + djecyr + tenge + ljecyr.ss01 + njecyr.ss01 + dramsignarmn + gjecyr + kjecyr + neptune + florin + plusminus + fraction + onequarter + onehalf + threequarters + mu + lessequal + greaterequal + minute + second + Schwacyr + schwacyr + Gestrokecyr + gestrokecyr + Obarcyr + obarcyr + Entailcyr + entailcyr + Katailcyr + katailcyr + Ustraightstrokecyr + ustraightstrokecyr + Shhacyr + shhacyr + ustraightcyr + Ustraightcyr + partialdiff + increment + integral + summation + radical + infinity + Omega + pi + longs + Delta + product + notequal + proportional + approxequal + Schwa + eturned + Oslashacute + oslashacute + AEacute + aeacute + uni2010 + Aiecyr + aiecyr + uni1EBC + uni1EBD + Acaron + acaron + Gjecyr + Kjecyr + uniE000 + uniE000.alt + arrowleft + arrowup + arrowright + arrowdown + arrowdown.ss01 + arrowleft.ss01 + arrowright.ss01 + arrowup.ss01 + yi-cy.alt + Omegacyr + omegacyr + Yatcyr + yatcyr + Eiotifiedcyr + eiotifiedcyr + Ksicyr + ksicyr + Shwe-cy + Fitacyr + fitacyr + Koppacyr + Iegravecyr + Igravecyr + iegravecyr + igravecyr + Zhebrevecyr + zhebrevecyr + Abrevecyr + abrevecyr + Adieresiscyr + adieresiscyr + Iebrevecyr + iebrevecyr + Schwadieresiscyr + schwadieresiscyr + Zhedieresiscyr + zhedieresiscyr + Zedieresiscyr + zedieresiscyr + Imacroncyr + imacroncyr + Idieresiscyr + idieresiscyr + Odieresiscyr + odieresiscyr + Umacroncyr + umacroncyr + Udieresiscyr + udieresiscyr + Uacutedblcyr + uacutedblcyr + Dekomicyr + dekomicyr + Wecyr + wecyr + Qacyr + qacyr + Ylongdieresiscyr + ylongdieresiscyr + Chedieresiscyr + chedieresiscyr + Obardieresiscyr + obardieresiscyr + Ereverseddieresiscyr + ereverseddieresiscyr + Zhetailcyr + zhetailcyr + Tetailcyr + tetailcyr + Xatailcyr + xatailcyr + Chetailcyr + chetailcyr + Chekhakascyr + chekhakascyr + Getailcyr + getailcyr + Petailcyr + petailcyr + Eltailcyr + eltailcyr + Shhatailcyr + shhatailcyr + Palochkacyr + palochkacyr + Dzzhecyr + Yaecyr + yaecyr + Tetsecyr + tetsecyr + Engecyr + engecyr + kabashkcyr + Kabashkcyr + semisoftcyr + Semisoftcyr + Reversedzecyr + reversedzecyr + Elmiddlehookcyr + Enmiddlehookcyr + Enhookcyr + Kahookcyr + Pehookcyr + Gehookcyr + parenleft.case + parenright.case + hyphen.case + bracketleft.case + bracketright.case + braceleft.case + braceright.case + exclamdown.case + guillemetleft.case + guillemetright.case + endash.case + emdash.case + bullet.case + guilsinglleft.case + guilsinglright.case + arrowleft.case + arrowup.case + arrowright.case + arrowdown.case + arrowdown.ss01.case + arrowleft.ss01.case + arrowright.ss01.case + arrowup.ss01.case + Enhookleftcyr + enhookleftcyr + enhookcyr + gehookcyr + pehookcyr + kahookcyr + enmiddlehookcyr + elmiddlehookcyr + kastrokecyr + Kastrokecyr + Chevertcyr + chevertcyr + Kaverticalstrokecyr + kaverticalstrokecyr + Elhookcyr + elhookcyr + zetailcyr + Zetailcyr + Estailcyr + estailcyr + Haabkhcyr + koppacyr + ukcyr + Ukcyr + omegaroundcyr + Izhitsagravedblcyr + izhitsagravedblcyr + izhitsacyr + Izhitsacyr + Yusbigcyr + yusbigcyr + Psicyr + psicyr + Omegaroundcyr + Yuslittlecyr + yuslittlecyr + yuslittleiotifiedcyr + Yuslittleiotifiedcyr + Yusbigiotifiedcyr + yusbigiotifiedcyr + Omegatitlocyr + omegatitlocyr + Otcyr + otcyr + uni2DEE + uni2DEE.case + ertickcyr + Ertickcyr + Lhacyr + lhacyr + ensharptailcyr + Ensharptailcyr + emsharptailcyr + elsharptailcyr + ishortsharptailcyr + Ishortsharptailcyr + Emsharptailcyr + Elsharptailcyr + njekomicyr + Njekomicyr + ljekomicyr + tjekomicyr + djekomicyr + zjekomicyr + colon.case + questiondown.case + slash.case + semicolon.case + backslash.case + bar.case + brokenbar.case + dzjekomicyr + Cheabkhcyr + cheabkhcyr + cheabkhtailcyr + sjekomicyr + Sjekomicyr + Ljekomicyr + Tjekomicyr + Djekomicyr + kaaleutcyr + dzzhecyr + haabkhcyr + Dchecyr + dchecyr + dzeabkhcyr + Dzeabkhcyr + palatcombcyr + Cheabkhtailcyr + Dzjekomicyr + Zjekomicyr + rhacyr + Rhacyr + Kaaleutcyr + thousandscyr + titlocombcyr + pokrytiecombcyr + hundredthousandscombcyr + millionscombcyr + Gehookstrokecyr + gehookstrokecyr + Hahookcyr + hahookcyr + Hastrokecyr + uni1C80 + uni1C81 + uni1C82 + uni1C83 + uni1C84 + uni1C85 + uni1C86 + uni1C87 + Zemlya-cy + zemlya-cy + Dzelo-cy + dzelo-cy + DzeReversed-cy + dzeReversed-cy + Iota-cy + iota-cy + Djerv-cy + djerv-cy + UkMonograph-cy + ukMonograph-cy + OmegaBroad-cy + omegaBroad-cy + YerNeutral-cy + yerNeutral-cy + YeruBackYer-cy + yeruBackyer-cy + YatIotified-cy + yatIotified-cy + YuReversed-cy + yuReversed-cy + IotifiedA-cy + iotifieda-cy + YusClosedlittle-cy + yusClosedlittle-cy + YusBlended-cy + yusBlended-cy + YusiotifiedClosedLittle-cy + yusiotifiedClosedLittle-cy + Yn-cy + yn-cy + TseReversed-cy + tseReversed-cy + DeSoft-cy + deSoft-cy + ElSoft-cy + elSoft-cy + EmSoft-cy + emSoft-cy + OMonocular-cy + oMonocular-cy + OBinocular-cy + oBinocular-cy + ODoubleMonocular-cy + oDoubleMonocular-cy + omultiocular-cy + vzmetcomb-cy + tenmillionscomb-cy + hundredmillionscomb-cy + thousandmillionscomb-cy + Dwe-cy + dwe-cy + Dzwe-cy + dzwe-cy + Zhwe-cy + zhwe-cy + Cche-cy + cche-cy + Dzze-cy + dzze-cy + TeWithMiddleHook-cy + tewithmiddlehook-cy + Twe-cy + twe-cy + Tswe-cy + tswe-cy + Tsse-cy + tsse-cy + Tche-cy + tche-cy + Hwe-cy + hwe-cy + shwe-cy + DoubleO-cy + doubleo-cy + CrossedO-cy + crossedo-cy + hastrokecyr + uniF43A + A-cy.accented + E-cy.accented + Ii-cy.accented + O-cy.accented + U-cy.accented + Yeru-cy.accented + Ereversed-cy.accented + Iu-cy.accented + Ia-cy.accented + Io-cy.accented + uniF498 + uniF49A + uniF49C + uniF49E + uniF4C6 + uniF4CC + uniF4D2 + uniF4D4 + uniF4D6 + uniF4D8 + Zetailcyr.BSH + Estailcyr.CHU + uniF50E + uniF510 + uniF512 + uniF514 + uniF516 + uniF518 + uniF51A + uniF51C + uniF51E + Yeru-cymacron + uniF522 + uniF524 + uniF526 + uniF528 + uniF52A + uniF52C + uniF52E + uniF532 + uniF536 + uniF538 + Gestrokecyr.BSH + Estailcyr.BSH + uniF830 + uniF833 + uniF839 + uniF86F + uniF872 + uniF875 + uniF878 + uniF87B + uniF87E + apostrophemod + colontriangularmod + uni1C88 + uniF87F + uniF87C + uniF879 + uniF876 + uniF873 + uniF870 + uniF83A + uniF834 + uniF831 + zetailcyr.BSH + estailcyr.CHU + uniF50F + uniF511 + uniF513 + uniF515 + uniF517 + uniF519 + uniF51B + uniF51D + uniF51F + uniF521 + uniF523 + uniF525 + uniF527 + uniF529 + uniF52B + uniF52D + uniF52F + uniF533 + uniF537 + uniF539 + gestrokecyr.BSH + estailcyr.BSH + uniF499 + uniF49B + uniF49D + uniF49F + uniF4C7 + uniF4CD + uniF4D3 + uniF4D5 + uniF4D7 + uniF4D9 + a-cy.accented + e-cy.accented + ii-cy.accented + o-cy.accented + u-cy.accented + yeru-cy.accented + ereversed-cy.accented + iu-cy.accented + ia-cy.accented + io-cy.accented + uniF43B + at.case + dieresis.alt + dieresiscase.alt + e-cy.hist + omultiocular-cy.alt + iotifieda-cy.hist + be-cy.SRB + ve-cy.BGR + ge-cy.BGR + de-cy.BGR + zhe-cy.BGR + ze-cy.BGR + ii-cy.BGR + iishort-cy.BGR + ka-cy.BGR + el-cy.BGR + pe-cy.BGR + te-cy.BGR + tse-cy.BGR + sha-cy.BGR + shcha-cy.BGR + hardsign-cy.BGR + softsign-cy.BGR + iu-cy.BGR + yatcyr.BGR + eiotifiedcyr.BGR + yusbigiotifiedcyr.BGR + iotifieda-cy.BGR + De-cy.BGR + El-cy.BGR + Ef-cy.BGR + dieresisacute + uniF45D + uniF45E + uniF45F + uniF475 + uniF476 + uniF477 + uniF478 + uniF479 + Elsmallcyr + enclosingcirclecomb + ge-cy.SRB + pe-cy.SRB + te-cy.SRB + gjecyr.SRB + macron-fwd + macron-fwd.alt + macronacute.SRB + iegravecyr.SRB + igravecyr.SRB + flower + knightwhite + knightblack + floretteblack + florettewhite + floretteoutlinedpetalledblackeight + rookblack + bishopblack + leo + heartwhite + diamondwhite-misc + spadewhite + clubwhite + bishopwhite + heart + crossedswords + virgo + thousandscyr.dnom + bracketangleleft + bracketangleright + bracketangleleft.case + bracketangleright.case + + + diff --git a/sources/FixelDisplay-Medium.ufo/metainfo.plist b/sources/FixelDisplay-Medium.ufo/metainfo.plist new file mode 100644 index 00000000..10582b84 --- /dev/null +++ b/sources/FixelDisplay-Medium.ufo/metainfo.plist @@ -0,0 +1,10 @@ + + + + + creator + com.fontlab.ufoLib + formatVersion + 3 + + diff --git a/sources/FixelDisplay-Regular.ufo/features.fea b/sources/FixelDisplay-Regular.ufo/features.fea new file mode 100644 index 00000000..302ade93 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/features.fea @@ -0,0 +1,573 @@ +#> classes +#/> otclasses +@ss01_def = [A-cy A AE Aacute Abreve Acircumflex Adieresis Agrave Amacron Aogonek Aring Atilde Em-cy Eng G Gacute Gbreve Gcircumflex Gcommaaccent Gdotaccent Ha-cy Ia-cy J Jcircumflex K Ka-cy Kcommaaccent M N Nacute Ncaron Ncommaaccent Ntilde Q U-cy Ushort-cy V W Wacute Wcircumflex Wdieresis Wgrave X Y Yacute Ycircumflex Ydieresis Z Zacute Zcaron Zdotaccent Zhe-cy a-cy a aacute abreve acircumflex adieresis ae agrave amacron aogonek aring arrowdown arrowdown.case arrowleft arrowleft.case arrowright arrowright.case arrowup arrowup.case atilde b d dcaron dcroat de-cy e eacute ebreve ecaron ecircumflex edieresis edotaccent egrave el-cy emacron eogonek er-cy f f_f f_f_i f_f_l fi fl g gacute gbreve gcircumflex gcommaaccent gdotaccent germandbls hardsign-cy ia-cy ie-cy io-cy l lacute lcaron lcommaaccent ldot ljecyr lslash njecyr numero oe p q softsign-cy t tbar tcaron tcedilla tcommaaccent te-cy ve-cy yen yeru-cy]; +@ss01 = [A-cy.ss01 A.ss01 AE.ss01 Aacute.ss01 Abreve.ss01 Acircumflex.ss01 Adieresis.ss01 Agrave.ss01 Amacron.ss01 Aogonek.ss01 Aring.ss01 Atilde.ss01 Em-cy.ss01 Eng.ss01 G.ss01 Gacute.ss01 Gbreve.ss01 Gcircumflex.ss01 Gcommaaccent.ss01 Gdotaccent.ss01 Ha-cy.ss01 Ia-cy.ss01 J.ss01 Jcircumflex.ss01 K.ss01 Ka-cy.ss01 Kcommaaccent.ss01 M.ss01 N.ss01 Nacute.ss01 Ncaron.ss01 Ncommaaccent.ss01 Ntilde.ss01 Q.ss01 U-cy.ss01 Ushort-cy.ss01 V.ss01 W.ss01 Wacute.ss01 Wcircumflex.ss01 Wdieresis.ss01 Wgrave.ss01 X.ss01 Y.ss01 Yacute.ss01 Ycircumflex.ss01 Ydieresis.ss01 Z.ss01 Zacute.ss01 Zcaron.ss01 Zdotaccent.ss01 Zhe-cy.ss01 a-cy.ss01 a.ss01 aacute.ss01 abreve.ss01 acircumflex.ss01 adieresis.ss01 ae.ss01 agrave.ss01 amacron.ss01 aogonek.ss01 aring.ss01 arrowdown.ss01 arrowdown.ss01.case arrowleft.ss01 arrowleft.ss01.case arrowright.ss01 arrowright.ss01.case arrowup.ss01 arrowup.ss01.case atilde.ss01 b.ss01 d.ss01 dcaron.ss01 dcroat.ss01 de-cy.ss01 e.ss01 eacute.ss01 ebreve.ss01 ecaron.ss01 ecircumflex.ss01 edieresis.ss01 edotaccent.ss01 egrave.ss01 el-cy.ss01 emacron.ss01 eogonek.ss01 er-cy.ss01 f.ss01 f_f.ss01 f_f_i.ss01 f_f_l.ss01 fi.ss01 fl.ss01 g.ss01 gacute.ss01 gbreve.ss01 gcircumflex.ss01 gcommaaccent.ss01 gdotaccent.ss01 germandbls.ss01 hardsign-cy.ss01 ia-cy.ss01 ie-cy.ss01 io-cy.ss01 l.ss01 lacute.ss01 lcaron.ss01 lcommaaccent.ss01 ldot.ss01 ljecyr.ss01 lslash.ss01 njecyr.ss01 numero.ss01 oe.ss01 p.ss01 q.ss01 softsign-cy.ss01 t.ss01 tbar.ss01 tcaron.ss01 tcedilla.ss01 tcommaaccent.ss01 te-cy.ss01 ve-cy.ss01 yen.ss01 yeru-cy.ss01]; +@case = [arrowdown.case arrowdown.ss01.case arrowleft.case arrowleft.ss01.case arrowright.case arrowright.ss01.case arrowup.case arrowup.ss01.case backslash.case bar.case braceleft.case braceright.case bracketleft.case bracketright.case brokenbar.case bullet.case colon.case emdash.case endash.case exclamdown.case guillemetleft.case guillemetright.case guilsinglleft.case guilsinglright.case hyphen.case parenleft.case parenright.case questiondown.case semicolon.case at.case bracketangleleft.case bracketangleright.case slash.case]; +@case_def = [arrowdown arrowdown.ss01 arrowleft arrowleft.ss01 arrowright arrowright.ss01 arrowup arrowup.ss01 backslash bar braceleft braceright bracketleft bracketright brokenbar bullet colon emdash endash exclamdown guillemetleft guillemetright guilsinglleft guilsinglright hyphen parenleft parenright questiondown semicolon at bracketangleleft bracketangleright slash]; +@cpsp = [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 Agrave Aacute Acircumflex Atilde Adieresis Aring AE Ccedilla Egrave Eacute Ecircumflex Edieresis Igrave Iacute Icircumflex Idieresis Eth Ntilde Ograve Oacute Ocircumflex Otilde Odieresis Oslash Ugrave Uacute Ucircumflex Udieresis Yacute Thorn Amacron Abreve Aogonek Cacute Ccircumflex Cdotaccent Ccaron Dcaron Dcroat Emacron Ebreve Edotaccent Eogonek Ecaron Gcircumflex Gbreve Gdotaccent Gcommaaccent Hcircumflex Hbar Itilde Imacron Ibreve Iogonek Idotaccent IJ Jcircumflex Kcommaaccent Lacute Lcommaaccent Lcaron Ldot Lslash Nacute Ncommaaccent Ncaron Eng Omacron Obreve Ohungarumlaut OE Racute Rcommaaccent Rcaron Sacute Scircumflex Scedilla Scaron Tcedilla Tcaron Tbar Utilde Umacron Ubreve Uring Uhungarumlaut Uogonek Wcircumflex Ycircumflex Ydieresis Zacute Zdotaccent Zcaron Schwa Acaron Gacute AEacute Oslashacute Scommaaccent Tcommaaccent Delta Omega Iegravecyr uniF43A A-cy.accented E-cy.accented Ii-cy.accented O-cy.accented U-cy.accented Yeru-cy.accented Ereversed-cy.accented Iu-cy.accented Ia-cy.accented Io-cy.accented uniF498 uniF49A uniF49C uniF49E uniF4C6 uniF4CC uniF4D2 uniF4D4 uniF4D6 uniF4D8 uniF50E uniF510 uniF512 uniF514 uniF516 uniF518 uniF51A uniF51C uniF51E Yeru-cymacron uniF522 uniF524 uniF526 uniF528 uniF52A uniF52C uniF52E uniF532 uniF536 uniF538 uniF830 uniF833 uniF839 uniF86F uniF872 uniF875 uniF878 uniF87B uniF87E Io-cy Djecyr Gjecyr E-cy Dze-cy I-cy Yi-cy Jecyr Ljecyr Njecyr Tshecyr Kjecyr Igravecyr Ushort-cy Dzhecyr A-cy Be-cy Ve-cy Ge-cy De-cy Ie-cy Zhe-cy Ze-cy Ii-cy Iishort-cy Ka-cy El-cy Em-cy En-cy O-cy Pe-cy Er-cy Es-cy Te-cy U-cy Ef-cy Ha-cy Tse-cy Che-cy Sha-cy Shcha-cy Hardsign-cy Yeru-cy Softsign-cy Ereversed-cy Iu-cy Ia-cy Omegacyr Yatcyr Eiotifiedcyr Yuslittlecyr Yuslittleiotifiedcyr Yusbigcyr Yusbigiotifiedcyr Ksicyr Psicyr Fitacyr Izhitsacyr Izhitsagravedblcyr Ukcyr Omegaroundcyr Omegatitlocyr Otcyr Koppacyr Ishortsharptailcyr Semisoftcyr Ertickcyr Gheupturn-cy Gestrokecyr Gehookcyr Zhetailcyr Zetailcyr Katailcyr Kaverticalstrokecyr Kastrokecyr Kabashkcyr Entailcyr Engecyr Pehookcyr Haabkhcyr Estailcyr Tetailcyr Ustraightcyr Ustraightstrokecyr Xatailcyr Tetsecyr Chetailcyr Chevertcyr Shhacyr Cheabkhcyr Cheabkhtailcyr Palochkacyr Zhebrevecyr Kahookcyr Elsharptailcyr Enhookcyr Ensharptailcyr Chekhakascyr Emsharptailcyr Abrevecyr Adieresiscyr Aiecyr Iebrevecyr Schwacyr Schwadieresiscyr Zhedieresiscyr Zedieresiscyr Dzeabkhcyr Imacroncyr Idieresiscyr Odieresiscyr Obarcyr Obardieresiscyr Ereverseddieresiscyr Umacroncyr Udieresiscyr Uacutedblcyr Chedieresiscyr Getailcyr Ylongdieresiscyr Gehookstrokecyr Hahookcyr Hastrokecyr Dekomicyr Djekomicyr Zjekomicyr Dzjekomicyr Ljekomicyr Njekomicyr Sjekomicyr Tjekomicyr Reversedzecyr Elhookcyr Lhacyr Rhacyr Yaecyr Qacyr Wecyr Kaaleutcyr Elmiddlehookcyr Enmiddlehookcyr Petailcyr Shhatailcyr Enhookleftcyr Dzzhecyr Dchecyr Eltailcyr Wgrave Wacute Wdieresis Germandbls uni1EBC Zemlya-cy Dzelo-cy DzeReversed-cy Iota-cy Djerv-cy UkMonograph-cy OmegaBroad-cy YerNeutral-cy YeruBackYer-cy YatIotified-cy YuReversed-cy IotifiedA-cy YusClosedlittle-cy YusBlended-cy YusiotifiedClosedLittle-cy Yn-cy TseReversed-cy DeSoft-cy ElSoft-cy EmSoft-cy OMonocular-cy OBinocular-cy ODoubleMonocular-cy Dwe-cy Dzwe-cy Zhwe-cy Cche-cy Dzze-cy TeWithMiddleHook-cy Twe-cy Tswe-cy Tsse-cy Tche-cy Hwe-cy Shwe-cy DoubleO-cy CrossedO-cy A-cy.ss01 A.ss01 AE.ss01 Aacute.ss01 Abreve.ss01 Acircumflex.ss01 Adieresis.ss01 Agrave.ss01 Amacron.ss01 Aogonek.ss01 Aring.ss01 Atilde.ss01 Em-cy.ss01 Eng.ss01 G.ss01 Gacute.ss01 Gbreve.ss01 Gcircumflex.ss01 Gcommaaccent.ss01 Gdotaccent.ss01 Ha-cy.ss01 Ia-cy.ss01 J.ss01 Jcircumflex.ss01 K.ss01 Ka-cy.ss01 Kcommaaccent.ss01 M.ss01 N.ss01 Nacute.ss01 Ncaron.ss01 Ncommaaccent.ss01 Ntilde.ss01 Q.ss01 U-cy.ss01 Ushort-cy.ss01 V.ss01 W.ss01 Wacute.ss01 Wcircumflex.ss01 Wdieresis.ss01 Wgrave.ss01 X.ss01 Y.ss01 Yacute.ss01 Ycircumflex.ss01 Ydieresis.ss01 Z.ss01 Zacute.ss01 Zcaron.ss01 Zdotaccent.ss01 Zetailcyr.BSH Gestrokecyr.BSH Estailcyr.BSH Estailcyr.CHU Zhe-cy.ss01]; +@locl_BGR = [De-cy.BGR Ef-cy.BGR El-cy.BGR de-cy.BGR eiotifiedcyr.BGR el-cy.BGR ge-cy.BGR hardsign-cy.BGR ii-cy.BGR iishort-cy.BGR iotifieda-cy.BGR iu-cy.BGR ka-cy.BGR pe-cy.BGR sha-cy.BGR shcha-cy.BGR softsign-cy.BGR te-cy.BGR tse-cy.BGR ve-cy.BGR yatcyr.BGR yusbigiotifiedcyr.BGR ze-cy.BGR zhe-cy.BGR]; +@locl_def = [De-cy Ef-cy El-cy de-cy eiotifiedcyr el-cy ge-cy hardsign-cy ii-cy iishort-cy iotifieda-cy iu-cy ka-cy pe-cy sha-cy shcha-cy softsign-cy te-cy tse-cy ve-cy yatcyr yusbigiotifiedcyr ze-cy zhe-cy]; +@locl.SRB = [be-cy.SRB iegravecyr.SRB igravecyr.SRB]; +@loclSRB_def = [be-cy iegravecyr igravecyr]; +@accent = [grave acute.case grave.case acute]; +@pics = [neptune leo virgo bishopwhite knightwhite rookblack bishopblack knightblack heartwhite diamondwhite-misc spadewhite heart clubwhite crossedswords flower floretteblack florettewhite floretteoutlinedpetalledblackeight]; +@pics_def = [A B C D E F G H I J K L M N O P Q R]; +#/< otclasses + +#/> tags +@tag.omultiocular-cy.alt = [omultiocular-cy]; +@tag.yi-cy_yi-cy.alt = [uniE000]; +#/< tags +#< classes + +# automatic +@Uppercase = [ A Aacute Abreve Acircumflex Adieresis Agrave Amacron Aogonek Aring Atilde AE B C Cacute Ccaron Ccedilla Ccircumflex Cdotaccent D Eth Dcaron Dcroat E Eacute Ebreve Ecaron Ecircumflex Edieresis Edotaccent Egrave Emacron Eogonek F G Gacute Gbreve Gcircumflex Gcommaaccent Gdotaccent H Hbar Hcircumflex I IJ Iacute Ibreve Icircumflex Idieresis Idotaccent Igrave Imacron Iogonek Itilde J Jcircumflex K Kcommaaccent L Lacute Lcaron Lcommaaccent Ldot Lslash M N Nacute Ncaron Ncommaaccent Eng Ntilde O Oacute Obreve Ocircumflex Odieresis Ograve Ohungarumlaut Omacron Oslash Otilde OE P Thorn Q R Racute Rcaron Rcommaaccent S Sacute Scaron Scedilla Scircumflex Scommaaccent Germandbls T Tbar Tcaron Tcedilla Tcommaaccent U Uacute Ubreve Ucircumflex Udieresis Ugrave Uhungarumlaut Umacron Uogonek Uring Utilde V W Wacute Wcircumflex Wdieresis Wgrave X Y Yacute Ycircumflex Ydieresis Z Zacute Zcaron Zdotaccent A.ss01 Aacute.ss01 Abreve.ss01 Acircumflex.ss01 Adieresis.ss01 Agrave.ss01 Amacron.ss01 Aogonek.ss01 Aring.ss01 Atilde.ss01 AE.ss01 G.ss01 Gacute.ss01 Gbreve.ss01 Gcircumflex.ss01 Gcommaaccent.ss01 Gdotaccent.ss01 J.ss01 Jcircumflex.ss01 K.ss01 Kcommaaccent.ss01 M.ss01 N.ss01 Nacute.ss01 Ncaron.ss01 Ncommaaccent.ss01 Eng.ss01 Ntilde.ss01 Q.ss01 V.ss01 W.ss01 Wacute.ss01 Wcircumflex.ss01 Wdieresis.ss01 Wgrave.ss01 X.ss01 Y.ss01 Yacute.ss01 Ycircumflex.ss01 Ydieresis.ss01 Z.ss01 Zacute.ss01 Zcaron.ss01 Zdotaccent.ss01 A-cy Be-cy Ve-cy Ge-cy Gheupturn-cy De-cy Ie-cy Io-cy Zhe-cy Ze-cy Ii-cy Iishort-cy Ka-cy El-cy Em-cy En-cy O-cy Pe-cy Er-cy Es-cy Te-cy U-cy Ushort-cy Ef-cy Ha-cy Che-cy Tse-cy Sha-cy Shcha-cy Softsign-cy Hardsign-cy Yeru-cy Dze-cy E-cy Ereversed-cy I-cy Yi-cy Iu-cy Ia-cy A-cy.ss01 Zhe-cy.ss01 Ka-cy.ss01 Em-cy.ss01 U-cy.ss01 Ushort-cy.ss01 Ha-cy.ss01 Ia-cy.ss01 ]; + +# Prefix: Languagesystems +# automatic +languagesystem DFLT dflt; + +languagesystem latn dflt; +languagesystem latn ROM; +languagesystem latn MOL; +languagesystem latn CAT; +languagesystem cyrl dflt; +languagesystem cyrl BGR; +languagesystem cyrl BSH; +languagesystem cyrl CHU; +languagesystem cyrl SRB; +languagesystem cyrl MKD; + +lookup liga_accent { + sub @accent by [grave grave grave grave]; +} liga_accent; +feature aalt { +# Access All Alternates + +#> feature + feature locl; + feature sups; + feature case; + feature lnum; + feature pnum; + feature tnum; + feature onum; + feature salt; + feature ss01; + feature hist; +#< feature +} aalt; +feature ccmp { +# automatic +lookup ccmp_Other_1 { + @Markscomb = [dieresis dotaccent grave acute hungarumlaut circumflex caron breve ring tilde macron]; + @MarkscombCase = [dieresis.case dotaccent.case grave.case acute.case hungarumlaut.case circumflex.case caron.case breve.case ring.case tilde.case macron.case]; + sub @Markscomb @Markscomb' by @MarkscombCase; + sub @cpsp @Markscomb' by @MarkscombCase; +} ccmp_Other_1; + +lookup ccmp_Other_2 { + sub @Markscomb' @MarkscombCase by @MarkscombCase; + sub @MarkscombCase @Markscomb' by @MarkscombCase; +} ccmp_Other_2; +} ccmp; + +feature locl { +# automatic + +script latn; + language ROM; + language MOL; + sub Scedilla by Scommaaccent; + sub scedilla by scommaaccent; + sub Tcedilla by Tcommaaccent; + sub tcedilla by tcommaaccent; + +script latn; + language CAT; + sub l' periodcentered' l by ldot; + sub L' periodcentered' L by Ldot; + +script cyrl; # Cyrillic + language SRB ; # Serbian + + lookup locl_SRB_MCD { + # GSUB lookup 20, type 11 (Single) + sub @loclSRB_def by @locl.SRB; + } locl_SRB_MCD; + + language MKD ; # Serbian + lookup locl_SRB_MCD; + + language BSH ; # Bashkir + sub [Gestrokecyr gestrokecyr Zetailcyr zetailcyr] by [Gestrokecyr.BSH gestrokecyr.BSH Zetailcyr.BSH zetailcyr.BSH]; + sub [Estailcyr estailcyr] by [Estailcyr.BSH estailcyr.BSH]; + + language CHU ; # Chuvash + sub [Estailcyr estailcyr] by [Estailcyr.CHU estailcyr.CHU]; + + language BGR ; # Bulgarian + sub @locl_def by @locl_BGR; + +} locl; + +feature sups { +# Superscript + +#> feature + sub one by onesuperior; + sub three by threesuperior; + sub two by twosuperior; +#< feature +} sups; +feature ordn { +# Ordinals + +#> feature + sub [zero one two three four five six seven eight nine] [A a]' by ordfeminine; + sub [zero one two three four five six seven eight nine] [O o]' by ordmasculine; + sub N o period by numero; +#< feature +} ordn; +feature case { +# Case Sensitive Forms + +#> feature + + sub @case_def by @case; + +#< feature +} case; +feature liga { +# Standard Ligatures + +#> feature +sub f f i by f_f_i; +sub f f l by f_f_l; +sub f f by f_f; +sub f i by fi; +sub f l by fl; +sub yi-cy yi-cy by uniE000; +sub hyphen greater by arrowright; +sub less hyphen by arrowleft; +sub backslash bar slash by arrowdown; +sub slash bar backslash by arrowup; + + lookup accent_2 { + sub E-cy @accent' lookup liga_accent; + sub I-cy @accent' lookup liga_accent; + sub Yi-cy @accent' lookup liga_accent; + sub A-cy @accent' lookup liga_accent; + sub Ie-cy @accent' lookup liga_accent; + sub Ii-cy @accent' lookup liga_accent; + sub O-cy @accent' lookup liga_accent; + sub U-cy @accent' lookup liga_accent; + sub Yeru-cy @accent' lookup liga_accent; + sub Ereversed-cy @accent' lookup liga_accent; + sub Iu-cy @accent' lookup liga_accent; + sub Ia-cy @accent' lookup liga_accent; + sub Io-cy @accent' lookup liga_accent; + sub Yatcyr @accent' lookup liga_accent; + + sub e-cy @accent' lookup liga_accent; + sub i-cy @accent' lookup liga_accent; + sub yi-cy @accent' lookup liga_accent; + sub a-cy @accent' lookup liga_accent; + sub ie-cy @accent' lookup liga_accent; + sub ii-cy @accent' lookup liga_accent; + sub o-cy @accent' lookup liga_accent; + sub u-cy @accent' lookup liga_accent; + sub yeru-cy @accent' lookup liga_accent; + sub ereversed-cy @accent' lookup liga_accent; + sub iu-cy @accent' lookup liga_accent; + sub ia-cy @accent' lookup liga_accent; + sub io-cy @accent' lookup liga_accent; + sub yatcyr @accent' lookup liga_accent; + } accent_2; + + lookup accent_3 { + sub E-cy grave by uniF45D; + sub I-cy grave by uniF45E; + sub Yi-cy grave by uniF45F; + sub A-cy grave by A-cy.accented; + sub Ie-cy grave by E-cy.accented; + sub Ii-cy grave by Ii-cy.accented; + sub O-cy grave by O-cy.accented; + sub U-cy grave by U-cy.accented; + sub Yeru-cy grave by Yeru-cy.accented; + sub Ereversed-cy grave by Ereversed-cy.accented; + sub Iu-cy grave by Iu-cy.accented; + sub Ia-cy grave by Ia-cy.accented; + sub Io-cy grave by Io-cy.accented; + sub Yatcyr grave by uniF478; + + sub e-cy grave by uniF475; + sub i-cy grave by uniF476; + sub yi-cy grave by uniF477; + sub a-cy grave by a-cy.accented; + sub ie-cy grave by e-cy.accented; + sub ii-cy grave by ii-cy.accented; + sub o-cy grave by o-cy.accented; + sub u-cy grave by u-cy.accented; + sub yeru-cy grave by yeru-cy.accented; + sub ereversed-cy grave by ereversed-cy.accented; + sub iu-cy grave by iu-cy.accented; + sub ia-cy grave by ia-cy.accented; + sub io-cy grave by io-cy.accented; + sub yatcyr grave by uniF479; + } accent_3; + +#< feature +} liga; +feature dlig { +# Discretionary Ligatures + +#> feature + +sub M a c P a w l o g o by uniE01A; +sub M P a w l o g o by uniE01A; +sub M P l o g o by uniE01A; +sub M A C P A W L O G O by uniE01A; +sub m a c p a w l o g o by uniE01A; +sub t r i d e n t by neptune; +sub t r y z u b by neptune; +sub u k r a i n e s i g n by neptune; +sub T R I D E N T by neptune; +sub T R Y Z U B by neptune; +sub U k r a i n e S i g n by neptune; +sub T r y z u b by neptune; +sub T r i d e n t by neptune; +sub Te-cy Er-cy Ii-cy Ze-cy U-cy Be-cy by neptune; + +#< feature +} dlig; +feature lnum { +# Lining Figures + +#> feature + sub eight.osf by eight.tf; + sub eight by eight.tf; + sub five.osf by five.tf; + sub five by five.tf; + sub four.osf by four.tf; + sub four by four.tf; + sub nine.osf by nine.tf; + sub nine by nine.tf; + sub one.osf by one.tf; + sub one by one.tf; + sub seven.osf by seven.tf; + sub seven by seven.tf; + sub six.osf by six.tf; + sub six by six.tf; + sub three.osf by three.tf; + sub three by three.tf; + sub two.osf by two.tf; + sub two by two.tf; + sub zero.osf by zero.tf; + sub zero by zero.tf; +#< feature +} lnum; +feature pnum { +# Proportional Figures + +#> feature + sub eight.tf by eight.osf; + sub eight by eight.osf; + sub five.tf by five.osf; + sub five by five.osf; + sub four.tf by four.osf; + sub four by four.osf; + sub nine.tf by nine.osf; + sub nine by nine.osf; + sub one.tf by one.osf; + sub one by one.osf; + sub seven.tf by seven.osf; + sub seven by seven.osf; + sub six.tf by six.osf; + sub six by six.osf; + sub three.tf by three.osf; + sub three by three.osf; + sub two.tf by two.osf; + sub two by two.osf; + sub zero.tf by zero.osf; + sub zero by zero.osf; +#< feature +} pnum; +feature tnum { +# Tabular Figures + +#> feature + sub eight by eight.tf; + sub eight.osf by eight.tf; + sub five by five.tf; + sub five.osf by five.tf; + sub four by four.tf; + sub four.osf by four.tf; + sub nine by nine.tf; + sub nine.osf by nine.tf; + sub one by one.tf; + sub one.osf by one.tf; + sub seven by seven.tf; + sub seven.osf by seven.tf; + sub six by six.tf; + sub six.osf by six.tf; + sub three by three.tf; + sub three.osf by three.tf; + sub two by two.tf; + sub two.osf by two.tf; + sub zero by zero.tf; + sub zero.osf by zero.tf; +#< feature +} tnum; +feature onum { +# Oldstyle Figures + +#> feature + sub eight by eight.osf; + sub eight.tf by eight.osf; + sub five by five.osf; + sub five.tf by five.osf; + sub four by four.osf; + sub four.tf by four.osf; + sub nine by nine.osf; + sub nine.tf by nine.osf; + sub one by one.osf; + sub one.tf by one.osf; + sub seven by seven.osf; + sub seven.tf by seven.osf; + sub six by six.osf; + sub six.tf by six.osf; + sub three by three.osf; + sub three.tf by three.osf; + sub two by two.osf; + sub two.tf by two.osf; + sub zero by zero.osf; + sub zero.tf by zero.osf; +#< feature +} onum; +feature salt { +# Stylistic Alternates + +#> feature + sub A from [A.ss01]; + sub A-cy from [A-cy.ss01]; + sub AE from [AE.ss01]; + sub Aacute from [Aacute.ss01]; + sub Abreve from [Abreve.ss01]; + sub Acircumflex from [Acircumflex.ss01]; + sub Adieresis from [Adieresis.ss01]; + sub Agrave from [Agrave.ss01]; + sub Amacron from [Amacron.ss01]; + sub Aogonek from [Aogonek.ss01]; + sub Aring from [Aring.ss01]; + sub Atilde from [Atilde.ss01]; + sub Em-cy from [Em-cy.ss01]; + sub Eng from [Eng.ss01]; + sub G from [G.ss01]; + sub Gacute from [Gacute.ss01]; + sub Gbreve from [Gbreve.ss01]; + sub Gcircumflex from [Gcircumflex.ss01]; + sub Gcommaaccent from [Gcommaaccent.ss01]; + sub Gdotaccent from [Gdotaccent.ss01]; + sub Ha-cy from [Ha-cy.ss01]; + sub Ia-cy from [Ia-cy.ss01]; + sub J from [J.ss01]; + sub Jcircumflex from [Jcircumflex.ss01]; + sub K from [K.ss01]; + sub Ka-cy from [Ka-cy.ss01]; + sub Kcommaaccent from [Kcommaaccent.ss01]; + sub M from [M.ss01]; + sub N from [N.ss01]; + sub Nacute from [Nacute.ss01]; + sub Ncaron from [Ncaron.ss01]; + sub Ncommaaccent from [Ncommaaccent.ss01]; + sub Ntilde from [Ntilde.ss01]; + sub Q from [Q.ss01]; + sub U-cy from [U-cy.ss01]; + sub Ushort-cy from [Ushort-cy.ss01]; + sub V from [V.ss01]; + sub W from [W.ss01]; + sub Wacute from [Wacute.ss01]; + sub Wcircumflex from [Wcircumflex.ss01]; + sub Wdieresis from [Wdieresis.ss01]; + sub Wgrave from [Wgrave.ss01]; + sub X from [X.ss01]; + sub Y from [Y.ss01]; + sub Yacute from [Yacute.ss01]; + sub Ycircumflex from [Ycircumflex.ss01]; + sub Ydieresis from [Ydieresis.ss01]; + sub Z from [Z.ss01]; + sub Zacute from [Zacute.ss01]; + sub Zcaron from [Zcaron.ss01]; + sub Zdotaccent from [Zdotaccent.ss01]; + sub Zhe-cy from [Zhe-cy.ss01]; + sub a from [a.ss01]; + sub a-cy from [a-cy.ss01]; + sub aacute from [aacute.ss01]; + sub abreve from [abreve.ss01]; + sub acircumflex from [acircumflex.ss01]; + sub adieresis from [adieresis.ss01]; + sub ae from [ae.ss01]; + sub agrave from [agrave.ss01]; + sub amacron from [amacron.ss01]; + sub aogonek from [aogonek.ss01]; + sub aring from [aring.ss01]; + sub arrowdown from [arrowdown.ss01]; + sub arrowleft from [arrowleft.ss01]; + sub arrowright from [arrowright.ss01]; + sub arrowup from [arrowup.ss01]; + sub atilde from [atilde.ss01]; + sub b from [b.ss01]; + sub caron from [caron.salt]; + sub commaaccentcomb from [commaaccentcomb.salt]; + sub d from [d.ss01]; + sub dcaron from [dcaron.ss01]; + sub dcroat from [dcroat.ss01]; + sub de-cy from [de-cy.ss01]; + sub e from [e.ss01]; + sub eacute from [eacute.ss01]; + sub ebreve from [ebreve.ss01]; + sub ecaron from [ecaron.ss01]; + sub ecircumflex from [ecircumflex.ss01]; + sub edieresis from [edieresis.ss01]; + sub edotaccent from [edotaccent.ss01]; + sub egrave from [egrave.ss01]; + sub el-cy from [el-cy.ss01]; + sub emacron from [emacron.ss01]; + sub eogonek from [eogonek.ss01]; + sub er-cy from [er-cy.ss01]; + sub f from [f.ss01]; + sub f_f from [f_f.ss01]; + sub f_f_i from [f_f_i.ss01]; + sub f_f_l from [f_f_l.ss01]; + sub fi from [fi.ss01]; + sub fl from [fl.ss01]; + sub g from [g.ss01]; + sub gacute from [gacute.ss01]; + sub gbreve from [gbreve.ss01]; + sub gcircumflex from [gcircumflex.ss01]; + sub gcommaaccent from [gcommaaccent.ss01]; + sub gdotaccent from [gdotaccent.ss01]; + sub germandbls from [germandbls.ss01]; + sub hardsign-cy from [hardsign-cy.ss01]; + sub ia-cy from [ia-cy.ss01]; + sub ie-cy from [ie-cy.ss01]; + sub io-cy from [io-cy.ss01]; + sub l from [l.ss01]; + sub lacute from [lacute.ss01]; + sub lcaron from [lcaron.ss01]; + sub lcommaaccent from [lcommaaccent.ss01]; + sub ldot from [ldot.ss01]; + sub ljecyr from [ljecyr.ss01]; + sub lslash from [lslash.ss01]; + sub njecyr from [njecyr.ss01]; + sub numero from [numero.ss01]; + sub oe from [oe.ss01]; + sub p from [p.ss01]; + sub q from [q.ss01]; + sub softsign-cy from [softsign-cy.ss01]; + sub t from [t.ss01]; + sub tbar from [tbar.ss01]; + sub tcaron from [tcaron.ss01]; + sub tcedilla from [tcedilla.ss01]; + sub tcommaaccent from [tcommaaccent.ss01]; + sub te-cy from [te-cy.ss01]; + sub uniE000 from [uniE000.alt]; + sub ve-cy from [ve-cy.ss01]; + sub yen from [yen.ss01]; + sub yeru-cy from [yeru-cy.ss01]; +#< feature +} salt; +feature ss03 { +# Stylistic Set 01–20 + +#> feature + featureNames { + name "Bulgarian forms"; + name 1 "Bulgarian forms"; + }; + + sub @locl_def by @locl_BGR; + +#< feature +} ss03; +feature ss04 { +# Stylistic Set 01–20 + +#> feature + featureNames { + name "Serbian/Macedonian forms"; + name 1 "Serbian/Macedonian forms"; + }; + + sub @loclSRB_def by @locl.SRB; + +#< feature +} ss04; +feature ss01 { +# Stylistic Set 01–20 + +#> feature + + featureNames { + name "Humanistic forms"; + name 1 "Humanistic forms"; + }; + + sub @ss01_def by @ss01; + +#< feature +} ss01; +feature ss05 { +# Stylistic Set 01–20 + +#> feature + + featureNames { + name "Ukrainian pictograms"; + name 1 "Ukrainian pictograms"; + }; + + sub @pics_def by @pics; + +#< feature +} ss05; +feature hist { +# Historical Forms + +#> feature + sub e-cy by e-cy.hist; + sub s by longs; +#< feature +} hist; +feature frac { +# Fractions + +#> feature +lookup frac_precomposed { + + sub one slash four by onequarter; + sub one slash two by onehalf; + sub three slash four by threequarters; + sub one fraction four by onequarter; + sub one fraction two by onehalf; + sub three fraction four by threequarters; +} frac_precomposed; +#< feature +} frac; +feature cpsp { +# Capital Spacing + +#> feature + + pos @cpsp <5 0 10 0>; + +#< feature +} cpsp; +feature dnom { +# Denominator + +#> feature + sub thousandscyr by thousandscyr.dnom; +#< feature +} dnom; diff --git a/sources/FixelDisplay-Regular.ufo/fontinfo.plist b/sources/FixelDisplay-Regular.ufo/fontinfo.plist new file mode 100644 index 00000000..9867abcc --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/fontinfo.plist @@ -0,0 +1,207 @@ + + + + + ascender + 720 + capHeight + 700 + descender + -200 + familyName + Fixel Display + guidelines + + + angle + 0 + name + m + x + 0 + y + 189 + + + angle + 0 + name + m + x + 0 + y + 189 + + + italicAngle + 0 + openTypeGaspRangeRecords + + + rangeGaspBehavior + + 0 + 1 + 2 + 3 + + rangeMaxPPEM + 65535 + + + openTypeHeadCreated + 2023/09/05 09:25:38 + openTypeHeadFlags + + + openTypeHheaAscender + 720 + openTypeHheaCaretOffset + -0 + openTypeHheaDescender + -190 + openTypeHheaLineGap + 100 + openTypeNameDesigner + AlfaBravo + openTypeNameDesignerURL + https://alfabravo.design/ + openTypeNameManufacturer + Kyrylo Tkachov, Marchela Mozhyna, Serhii Makarenko, Maria Weinstein, Zakhar Kryvoshyya + + openTypeNameManufacturerURL + https://macpaw.com/ + openTypeNamePreferredFamilyName + Fixel Display + openTypeNamePreferredSubfamilyName + Regular + openTypeNameVersion + Version 1.200 + openTypeOS2CodePageRanges + + 0 + 1 + 2 + 4 + 7 + 29 + + openTypeOS2Panose + + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + + openTypeOS2Selection + + + openTypeOS2StrikeoutPosition + 300 + openTypeOS2StrikeoutSize + 50 + openTypeOS2SubscriptXOffset + -0 + openTypeOS2SubscriptXSize + 650 + openTypeOS2SubscriptYOffset + 75 + openTypeOS2SubscriptYSize + 600 + openTypeOS2SuperscriptXOffset + -0 + openTypeOS2SuperscriptXSize + 650 + openTypeOS2SuperscriptYOffset + 350 + openTypeOS2SuperscriptYSize + 600 + openTypeOS2Type + + 2 + + openTypeOS2TypoAscender + 720 + openTypeOS2TypoDescender + -200 + openTypeOS2TypoLineGap + 290 + openTypeOS2UnicodeRanges + + 0 + 1 + 2 + 9 + 31 + 33 + 60 + + openTypeOS2WeightClass + 400 + openTypeOS2WidthClass + 5 + openTypeOS2WinAscent + 750 + openTypeOS2WinDescent + 250 + postscriptBlueFuzz + 1 + postscriptBlueScale + 0.039625 + postscriptBlueShift + 7 + postscriptBlueValues + + -20 + 0 + + postscriptFontName + FixelDisplay-Regular + postscriptForceBold + + postscriptFullName + Fixel Display Regular + postscriptIsFixedPitch + + postscriptStemSnapH + + 69 + 74 + 76 + 80 + 99 + + postscriptStemSnapV + + 74 + 80 + 93 + + postscriptUnderlinePosition + -100 + postscriptUnderlineThickness + 50 + postscriptWeightName + Regular + styleMapFamilyName + Fixel Display Regular + styleMapStyleName + regular + styleName + Regular + unitsPerEm + 1000 + versionMajor + 1 + versionMinor + 200 + xHeight + 520 + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/A_-cy.accented.glif b/sources/FixelDisplay-Regular.ufo/glyphs/A_-cy.accented.glif new file mode 100644 index 00000000..a08de5d2 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/A_-cy.accented.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+acute.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/A_-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/A_-cy.glif new file mode 100644 index 00000000..9a913974 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/A_-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/A_-cy.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/A_-cy.ss01.glif new file mode 100644 index 00000000..eff38861 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/A_-cy.ss01.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + com.fontlab.recipe + A + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/A_.glif b/sources/FixelDisplay-Regular.ufo/glyphs/A_.glif new file mode 100644 index 00000000..0aa5aede --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/A_.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/A_.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/A_.ss01.glif new file mode 100644 index 00000000..84f0b169 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/A_.ss01.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/A_E_.glif b/sources/FixelDisplay-Regular.ufo/glyphs/A_E_.glif new file mode 100644 index 00000000..53c210fb --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/A_E_.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + A + com.fontlab.metricsRight + E + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/A_E_.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/A_E_.ss01.glif new file mode 100644 index 00000000..da292221 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/A_E_.ss01.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + A.ss01 + com.fontlab.metricsRight + E + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/A_E_acute.glif b/sources/FixelDisplay-Regular.ufo/glyphs/A_E_acute.glif new file mode 100644 index 00000000..1655714e --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/A_E_acute.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + AE+acute.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/A_acute.glif b/sources/FixelDisplay-Regular.ufo/glyphs/A_acute.glif new file mode 100644 index 00000000..058a49ea --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/A_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+acute.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/A_acute.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/A_acute.ss01.glif new file mode 100644 index 00000000..d8e07d0c --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/A_acute.ss01.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + A.ss01+acute.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/A_breve.glif b/sources/FixelDisplay-Regular.ufo/glyphs/A_breve.glif new file mode 100644 index 00000000..29e66c9a --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/A_breve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+breve.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/A_breve.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/A_breve.ss01.glif new file mode 100644 index 00000000..517d3a00 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/A_breve.ss01.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + A.ss01+breve.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/A_brevecyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/A_brevecyr.glif new file mode 100644 index 00000000..c10a09da --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/A_brevecyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+breve.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/A_caron.glif b/sources/FixelDisplay-Regular.ufo/glyphs/A_caron.glif new file mode 100644 index 00000000..f1df064c --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/A_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+caron.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/A_circumflex.glif b/sources/FixelDisplay-Regular.ufo/glyphs/A_circumflex.glif new file mode 100644 index 00000000..24d5136f --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/A_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+circumflex.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/A_circumflex.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/A_circumflex.ss01.glif new file mode 100644 index 00000000..0782f173 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/A_circumflex.ss01.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + A.ss01+circumflex.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/A_dieresis.glif b/sources/FixelDisplay-Regular.ufo/glyphs/A_dieresis.glif new file mode 100644 index 00000000..08e9296d --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/A_dieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+dieresis.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/A_dieresis.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/A_dieresis.ss01.glif new file mode 100644 index 00000000..6130f0da --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/A_dieresis.ss01.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + A.ss01+dieresis.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/A_dieresiscyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/A_dieresiscyr.glif new file mode 100644 index 00000000..e281a693 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/A_dieresiscyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/A_grave.glif b/sources/FixelDisplay-Regular.ufo/glyphs/A_grave.glif new file mode 100644 index 00000000..d8b5835d --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/A_grave.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+grave.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/A_grave.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/A_grave.ss01.glif new file mode 100644 index 00000000..d0d0bcf6 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/A_grave.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A.ss01+grave.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/A_iecyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/A_iecyr.glif new file mode 100644 index 00000000..98e3b585 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/A_iecyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + AE + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/A_macron.glif b/sources/FixelDisplay-Regular.ufo/glyphs/A_macron.glif new file mode 100644 index 00000000..cb4632b9 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/A_macron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+macron.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/A_macron.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/A_macron.ss01.glif new file mode 100644 index 00000000..5d3a16ec --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/A_macron.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A.ss01+macron.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/A_ogonek.glif b/sources/FixelDisplay-Regular.ufo/glyphs/A_ogonek.glif new file mode 100644 index 00000000..e377ac66 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/A_ogonek.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+ogonek + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/A_ogonek.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/A_ogonek.ss01.glif new file mode 100644 index 00000000..bbda7b3d --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/A_ogonek.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A.ss01+ogonek + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/A_ring.glif b/sources/FixelDisplay-Regular.ufo/glyphs/A_ring.glif new file mode 100644 index 00000000..301a7e10 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/A_ring.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+ring.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/A_ring.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/A_ring.ss01.glif new file mode 100644 index 00000000..2fdf3288 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/A_ring.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A.ss01+ring.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/A_tilde.glif b/sources/FixelDisplay-Regular.ufo/glyphs/A_tilde.glif new file mode 100644 index 00000000..83f1195e --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/A_tilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+tilde.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/A_tilde.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/A_tilde.ss01.glif new file mode 100644 index 00000000..58c2e9a6 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/A_tilde.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A.ss01+tilde.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/B_.glif b/sources/FixelDisplay-Regular.ufo/glyphs/B_.glif new file mode 100644 index 00000000..df0e5560 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/B_.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/B_e-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/B_e-cy.glif new file mode 100644 index 00000000..f9afc515 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/B_e-cy.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + B-10 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/C_.glif b/sources/FixelDisplay-Regular.ufo/glyphs/C_.glif new file mode 100644 index 00000000..b18a7161 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/C_.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/C_R_.glif b/sources/FixelDisplay-Regular.ufo/glyphs/C_R_.glif new file mode 100644 index 00000000..a38a285e --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/C_R_.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/C_acute.glif b/sources/FixelDisplay-Regular.ufo/glyphs/C_acute.glif new file mode 100644 index 00000000..731acee6 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/C_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+acute.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/C_caron.glif b/sources/FixelDisplay-Regular.ufo/glyphs/C_caron.glif new file mode 100644 index 00000000..4981110a --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/C_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+caron.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/C_cedilla.glif b/sources/FixelDisplay-Regular.ufo/glyphs/C_cedilla.glif new file mode 100644 index 00000000..7f181b62 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/C_cedilla.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+cedilla + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/C_che-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/C_che-cy.glif new file mode 100644 index 00000000..d2d32208 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/C_che-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ч + com.fontlab.metricsRight + Ч + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/C_circumflex.glif b/sources/FixelDisplay-Regular.ufo/glyphs/C_circumflex.glif new file mode 100644 index 00000000..730f87da --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/C_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+circumflex.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/C_dotaccent.glif b/sources/FixelDisplay-Regular.ufo/glyphs/C_dotaccent.glif new file mode 100644 index 00000000..2f997711 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/C_dotaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+dotaccent.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/C_he-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/C_he-cy.glif new file mode 100644 index 00000000..31a5fec7 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/C_he-cy.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/C_heabkhcyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/C_heabkhcyr.glif new file mode 100644 index 00000000..46f78bdb --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/C_heabkhcyr.glif @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + |Schwa + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/C_heabkhtailcyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/C_heabkhtailcyr.glif new file mode 100644 index 00000000..55d7c002 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/C_heabkhtailcyr.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Cheabkhcyr + com.fontlab.metricsRight + Cheabkhcyr + com.fontlab.recipe + Cheabkhcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/C_hedieresiscyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/C_hedieresiscyr.glif new file mode 100644 index 00000000..2a29e35f --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/C_hedieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Che-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/C_hekhakascyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/C_hekhakascyr.glif new file mode 100644 index 00000000..9164c9cc --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/C_hekhakascyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ч + com.fontlab.metricsRight + H + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/C_hetailcyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/C_hetailcyr.glif new file mode 100644 index 00000000..75f3685b --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/C_hetailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ч + com.fontlab.metricsRight + Entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/C_hevertcyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/C_hevertcyr.glif new file mode 100644 index 00000000..27c13c5d --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/C_hevertcyr.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ч + com.fontlab.metricsRight + Н + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/C_rossedO_-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/C_rossedO_-cy.glif new file mode 100644 index 00000000..a5b844ad --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/C_rossedO_-cy.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + com.fontlab.recipe + O + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/D_.glif b/sources/FixelDisplay-Regular.ufo/glyphs/D_.glif new file mode 100644 index 00000000..f283349b --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/D_.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/D_caron.glif b/sources/FixelDisplay-Regular.ufo/glyphs/D_caron.glif new file mode 100644 index 00000000..a9b75c3e --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/D_caron.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + D+caron.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/D_checyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/D_checyr.glif new file mode 100644 index 00000000..ef89e046 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/D_checyr.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Д+10 + com.fontlab.metricsRight + Д + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/D_croat.glif b/sources/FixelDisplay-Regular.ufo/glyphs/D_croat.glif new file mode 100644 index 00000000..1fcbd7b0 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/D_croat.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + D + com.fontlab.recipe + Eth + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/D_e-cy.B_G_R_.glif b/sources/FixelDisplay-Regular.ufo/glyphs/D_e-cy.B_G_R_.glif new file mode 100644 index 00000000..b2196729 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/D_e-cy.B_G_R_.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + l() + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/D_e-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/D_e-cy.glif new file mode 100644 index 00000000..52320b18 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/D_e-cy.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/D_eS_oft-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/D_eS_oft-cy.glif new file mode 100644 index 00000000..e070e350 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/D_eS_oft-cy.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Д + com.fontlab.metricsRight + Ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/D_ekomicyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/D_ekomicyr.glif new file mode 100644 index 00000000..9d1a92e8 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/D_ekomicyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.metricsLeft + |P + com.fontlab.metricsRight + H + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/D_elta.glif b/sources/FixelDisplay-Regular.ufo/glyphs/D_elta.glif new file mode 100644 index 00000000..ff5f1f2b --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/D_elta.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + A + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/D_jecyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/D_jecyr.glif new file mode 100644 index 00000000..88a14e9f --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/D_jecyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/D_jekomicyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/D_jekomicyr.glif new file mode 100644 index 00000000..ac057a81 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/D_jekomicyr.glif @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Dekomicyr + com.fontlab.metricsRight + Njekomicyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/D_jerv-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/D_jerv-cy.glif new file mode 100644 index 00000000..5a1fa7ce --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/D_jerv-cy.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + r() + com.fontlab.metricsRight + O + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/D_oubleO_-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/D_oubleO_-cy.glif new file mode 100644 index 00000000..2bf22a08 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/D_oubleO_-cy.glif @@ -0,0 +1,91 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + com.fontlab.recipe + O_O + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/D_we-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/D_we-cy.glif new file mode 100644 index 00000000..0ae06ff4 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/D_we-cy.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Д + com.fontlab.metricsRight + Д + com.fontlab.recipe + Д + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/D_ze-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/D_ze-cy.glif new file mode 100644 index 00000000..8b1da2b0 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/D_ze-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + S + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/D_zeR_eversed-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/D_zeR_eversed-cy.glif new file mode 100644 index 00000000..9d096fe8 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/D_zeR_eversed-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + S + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/D_zeabkhcyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/D_zeabkhcyr.glif new file mode 100644 index 00000000..10317e51 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/D_zeabkhcyr.glif @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + З-10 + com.fontlab.metricsRight + З-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/D_zelo-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/D_zelo-cy.glif new file mode 100644 index 00000000..1f509dde --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/D_zelo-cy.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/D_zhecyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/D_zhecyr.glif new file mode 100644 index 00000000..f6b78018 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/D_zhecyr.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/D_zjekomicyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/D_zjekomicyr.glif new file mode 100644 index 00000000..fb164c8f --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/D_zjekomicyr.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + З-10 + com.fontlab.metricsRight + Ц-5 + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/D_zwe-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/D_zwe-cy.glif new file mode 100644 index 00000000..a0db9739 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/D_zwe-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + S + com.fontlab.metricsRight + S + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/D_zze-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/D_zze-cy.glif new file mode 100644 index 00000000..edc76d48 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/D_zze-cy.glif @@ -0,0 +1,84 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Д + com.fontlab.metricsRight + Д-20 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/D_zzhecyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/D_zzhecyr.glif new file mode 100644 index 00000000..63989d03 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/D_zzhecyr.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Д + com.fontlab.metricsRight + Ж + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/E_-cy.accented.glif b/sources/FixelDisplay-Regular.ufo/glyphs/E_-cy.accented.glif new file mode 100644 index 00000000..ef7703b3 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/E_-cy.accented.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+acute.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/E_-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/E_-cy.glif new file mode 100644 index 00000000..923ff6a9 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/E_-cy.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + C + com.fontlab.metricsRight + C + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/E_.glif b/sources/FixelDisplay-Regular.ufo/glyphs/E_.glif new file mode 100644 index 00000000..1696ac7c --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/E_.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + com.fontlab.metricsRight + F+10 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/E_acute.glif b/sources/FixelDisplay-Regular.ufo/glyphs/E_acute.glif new file mode 100644 index 00000000..52768135 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/E_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+acute.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/E_breve.glif b/sources/FixelDisplay-Regular.ufo/glyphs/E_breve.glif new file mode 100644 index 00000000..354789ed --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/E_breve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+breve.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/E_caron.glif b/sources/FixelDisplay-Regular.ufo/glyphs/E_caron.glif new file mode 100644 index 00000000..c7febc56 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/E_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+caron.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/E_circumflex.glif b/sources/FixelDisplay-Regular.ufo/glyphs/E_circumflex.glif new file mode 100644 index 00000000..f3b1d317 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/E_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+circumflex.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/E_dieresis.glif b/sources/FixelDisplay-Regular.ufo/glyphs/E_dieresis.glif new file mode 100644 index 00000000..319d5963 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/E_dieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+dieresiscase.alt + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/E_dotaccent.glif b/sources/FixelDisplay-Regular.ufo/glyphs/E_dotaccent.glif new file mode 100644 index 00000000..593212e6 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/E_dotaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+dotaccent.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/E_f-cy.B_G_R_.glif b/sources/FixelDisplay-Regular.ufo/glyphs/E_f-cy.B_G_R_.glif new file mode 100644 index 00000000..b78685bf --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/E_f-cy.B_G_R_.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/E_f-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/E_f-cy.glif new file mode 100644 index 00000000..728dadcd --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/E_f-cy.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/E_grave.glif b/sources/FixelDisplay-Regular.ufo/glyphs/E_grave.glif new file mode 100644 index 00000000..f3cd93be --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/E_grave.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+grave.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/E_iotifiedcyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/E_iotifiedcyr.glif new file mode 100644 index 00000000..777735f9 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/E_iotifiedcyr.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + C + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/E_l-cy.B_G_R_.glif b/sources/FixelDisplay-Regular.ufo/glyphs/E_l-cy.B_G_R_.glif new file mode 100644 index 00000000..01c4385d --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/E_l-cy.B_G_R_.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + A + com.fontlab.metricsRight + l() + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/E_l-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/E_l-cy.glif new file mode 100644 index 00000000..184d9156 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/E_l-cy.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/E_lS_oft-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/E_lS_oft-cy.glif new file mode 100644 index 00000000..c4d19907 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/E_lS_oft-cy.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/E_lhookcyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/E_lhookcyr.glif new file mode 100644 index 00000000..2710463b --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/E_lhookcyr.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Л + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/E_lmiddlehookcyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/E_lmiddlehookcyr.glif new file mode 100644 index 00000000..37dac342 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/E_lmiddlehookcyr.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Shhacyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/E_lsharptailcyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/E_lsharptailcyr.glif new file mode 100644 index 00000000..aa72158d --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/E_lsharptailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Ensharptailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/E_lsmallcyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/E_lsmallcyr.glif new file mode 100644 index 00000000..809687e9 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/E_lsmallcyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + el-cy.BGR + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/E_ltailcyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/E_ltailcyr.glif new file mode 100644 index 00000000..e6789f97 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/E_ltailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/E_m-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/E_m-cy.glif new file mode 100644 index 00000000..616c193a --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/E_m-cy.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + M + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/E_m-cy.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/E_m-cy.ss01.glif new file mode 100644 index 00000000..24c162f2 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/E_m-cy.ss01.glif @@ -0,0 +1,13 @@ + + + + + + + + + com.fontlab.recipe + M + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/E_mS_oft-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/E_mS_oft-cy.glif new file mode 100644 index 00000000..9a00b3ee --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/E_mS_oft-cy.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + M + com.fontlab.metricsRight + Ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/E_macron.glif b/sources/FixelDisplay-Regular.ufo/glyphs/E_macron.glif new file mode 100644 index 00000000..07853958 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/E_macron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+macron.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/E_msharptailcyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/E_msharptailcyr.glif new file mode 100644 index 00000000..beaef8cd --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/E_msharptailcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Н + com.fontlab.metricsRight + Ensharptailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/E_n-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/E_n-cy.glif new file mode 100644 index 00000000..8dbd0b4c --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/E_n-cy.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + H + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/E_ng.glif b/sources/FixelDisplay-Regular.ufo/glyphs/E_ng.glif new file mode 100644 index 00000000..193f0c73 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/E_ng.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + N + com.fontlab.metricsRight + l() + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/E_ng.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/E_ng.ss01.glif new file mode 100644 index 00000000..1ad7ff92 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/E_ng.ss01.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + N.ss01 + com.fontlab.metricsRight + J.ss01 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/E_ngecyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/E_ngecyr.glif new file mode 100644 index 00000000..014b33f8 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/E_ngecyr.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/E_nhookcyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/E_nhookcyr.glif new file mode 100644 index 00000000..c11564e6 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/E_nhookcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/E_nhookleftcyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/E_nhookleftcyr.glif new file mode 100644 index 00000000..462c01e4 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/E_nhookleftcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + r()-159 + com.fontlab.metricsRight + H + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/E_nmiddlehookcyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/E_nmiddlehookcyr.glif new file mode 100644 index 00000000..c542e147 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/E_nmiddlehookcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Shhacyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/E_nsharptailcyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/E_nsharptailcyr.glif new file mode 100644 index 00000000..3740d742 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/E_nsharptailcyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Н + com.fontlab.metricsRight + Д + com.fontlab.recipe + Entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/E_ntailcyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/E_ntailcyr.glif new file mode 100644 index 00000000..5082c6eb --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/E_ntailcyr.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Ц + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/E_ogonek.glif b/sources/FixelDisplay-Regular.ufo/glyphs/E_ogonek.glif new file mode 100644 index 00000000..20f7bd1d --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/E_ogonek.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+ogonek + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/E_r-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/E_r-cy.glif new file mode 100644 index 00000000..44be5133 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/E_r-cy.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + P + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/E_reversed-cy.accented.glif b/sources/FixelDisplay-Regular.ufo/glyphs/E_reversed-cy.accented.glif new file mode 100644 index 00000000..68206e51 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/E_reversed-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Э+acute.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/E_reversed-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/E_reversed-cy.glif new file mode 100644 index 00000000..559ce7e7 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/E_reversed-cy.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |C + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/E_reverseddieresiscyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/E_reverseddieresiscyr.glif new file mode 100644 index 00000000..5a210320 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/E_reverseddieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ereversed-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/E_rtickcyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/E_rtickcyr.glif new file mode 100644 index 00000000..a6f7331b --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/E_rtickcyr.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + P + com.fontlab.metricsRight + P + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/E_s-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/E_s-cy.glif new file mode 100644 index 00000000..9fa02bb8 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/E_s-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/E_stailcyr.B_S_H_.glif b/sources/FixelDisplay-Regular.ufo/glyphs/E_stailcyr.B_S_H_.glif new file mode 100644 index 00000000..97c71e6c --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/E_stailcyr.B_S_H_.glif @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + C + com.fontlab.metricsRight + C + com.fontlab.recipe + C + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/E_stailcyr.C_H_U_.glif b/sources/FixelDisplay-Regular.ufo/glyphs/E_stailcyr.C_H_U_.glif new file mode 100644 index 00000000..53c37e93 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/E_stailcyr.C_H_U_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+cedilla.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/E_stailcyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/E_stailcyr.glif new file mode 100644 index 00000000..57034a1a --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/E_stailcyr.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + С + com.fontlab.metricsRight + С + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/E_th.glif b/sources/FixelDisplay-Regular.ufo/glyphs/E_th.glif new file mode 100644 index 00000000..83ad89de --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/E_th.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + D + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/F_.glif b/sources/FixelDisplay-Regular.ufo/glyphs/F_.glif new file mode 100644 index 00000000..cebdb39a --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/F_.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/F_itacyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/F_itacyr.glif new file mode 100644 index 00000000..f2bfa7bc --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/F_itacyr.glif @@ -0,0 +1,78 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + com.fontlab.recipe + Obarcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/G_.glif b/sources/FixelDisplay-Regular.ufo/glyphs/G_.glif new file mode 100644 index 00000000..5d1e397a --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/G_.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O+18 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/G_.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/G_.ss01.glif new file mode 100644 index 00000000..fd0311b4 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/G_.ss01.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O+10 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/G_acute.glif b/sources/FixelDisplay-Regular.ufo/glyphs/G_acute.glif new file mode 100644 index 00000000..e29f3637 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/G_acute.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + G+acute.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/G_acute.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/G_acute.ss01.glif new file mode 100644 index 00000000..994f72e7 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/G_acute.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G.ss01+acute.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/G_breve.glif b/sources/FixelDisplay-Regular.ufo/glyphs/G_breve.glif new file mode 100644 index 00000000..59ee0980 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/G_breve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G+breve.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/G_breve.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/G_breve.ss01.glif new file mode 100644 index 00000000..8b02d4d4 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/G_breve.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G.ss01+breve.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/G_circumflex.glif b/sources/FixelDisplay-Regular.ufo/glyphs/G_circumflex.glif new file mode 100644 index 00000000..81e3f47f --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/G_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G+circumflex.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/G_circumflex.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/G_circumflex.ss01.glif new file mode 100644 index 00000000..b2254d59 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/G_circumflex.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G.ss01+circumflex.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/G_commaaccent.glif b/sources/FixelDisplay-Regular.ufo/glyphs/G_commaaccent.glif new file mode 100644 index 00000000..374c997b --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/G_commaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G+commaaccentcomb + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/G_commaaccent.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/G_commaaccent.ss01.glif new file mode 100644 index 00000000..606bcf3f --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/G_commaaccent.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G.ss01+commaaccentcomb + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/G_dotaccent.glif b/sources/FixelDisplay-Regular.ufo/glyphs/G_dotaccent.glif new file mode 100644 index 00000000..eb0a140f --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/G_dotaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G+dotaccent.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/G_dotaccent.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/G_dotaccent.ss01.glif new file mode 100644 index 00000000..2eb72cf3 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/G_dotaccent.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G.ss01+dotaccent.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/G_e-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/G_e-cy.glif new file mode 100644 index 00000000..77c0f065 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/G_e-cy.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + T + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/G_ehookcyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/G_ehookcyr.glif new file mode 100644 index 00000000..cd6fcfbf --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/G_ehookcyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Г + com.fontlab.metricsRight + Tshecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/G_ehookstrokecyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/G_ehookstrokecyr.glif new file mode 100644 index 00000000..4debb712 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/G_ehookstrokecyr.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Gestrokecyr + com.fontlab.metricsRight + Gestrokecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/G_ermandbls.glif b/sources/FixelDisplay-Regular.ufo/glyphs/G_ermandbls.glif new file mode 100644 index 00000000..c3e8195e --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/G_ermandbls.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + U + com.fontlab.metricsRight + B-5 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/G_estrokecyr.B_S_H_.glif b/sources/FixelDisplay-Regular.ufo/glyphs/G_estrokecyr.B_S_H_.glif new file mode 100644 index 00000000..0e10a76f --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/G_estrokecyr.B_S_H_.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + F + com.fontlab.metricsRight + Gestrokecyr + com.fontlab.recipe + Gestrokecyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/G_estrokecyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/G_estrokecyr.glif new file mode 100644 index 00000000..3cef1d3d --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/G_estrokecyr.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + Г + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/G_etailcyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/G_etailcyr.glif new file mode 100644 index 00000000..53ee95e1 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/G_etailcyr.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Г + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/G_heupturn-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/G_heupturn-cy.glif new file mode 100644 index 00000000..74ab5ff6 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/G_heupturn-cy.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Г + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/G_jecyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/G_jecyr.glif new file mode 100644 index 00000000..12aa4014 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/G_jecyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ge-cy+acute.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/H_.glif b/sources/FixelDisplay-Regular.ufo/glyphs/H_.glif new file mode 100644 index 00000000..12e25085 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/H_.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + com.fontlab.metricsRight + I + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/H_a-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/H_a-cy.glif new file mode 100644 index 00000000..2482c677 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/H_a-cy.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + X + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/H_a-cy.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/H_a-cy.ss01.glif new file mode 100644 index 00000000..362caa5c --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/H_a-cy.ss01.glif @@ -0,0 +1,14 @@ + + + + + + + + + + com.fontlab.recipe + X + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/H_aabkhcyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/H_aabkhcyr.glif new file mode 100644 index 00000000..e2e3c816 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/H_aabkhcyr.glif @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/H_ahookcyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/H_ahookcyr.glif new file mode 100644 index 00000000..38f3c6c3 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/H_ahookcyr.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + X + com.fontlab.metricsRight + X + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/H_ardsign-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/H_ardsign-cy.glif new file mode 100644 index 00000000..119ca154 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/H_ardsign-cy.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + Ь + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/H_astrokecyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/H_astrokecyr.glif new file mode 100644 index 00000000..bcd221f8 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/H_astrokecyr.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + X + com.fontlab.metricsRight + X + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/H_bar.glif b/sources/FixelDisplay-Regular.ufo/glyphs/H_bar.glif new file mode 100644 index 00000000..6e95a735 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/H_bar.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + r() + com.fontlab.metricsRight + H + com.schriftgestaltung.Glyphs.rightMetricsKey + H + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/H_circumflex.glif b/sources/FixelDisplay-Regular.ufo/glyphs/H_circumflex.glif new file mode 100644 index 00000000..10bf5fb0 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/H_circumflex.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + H+circumflex.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/H_we-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/H_we-cy.glif new file mode 100644 index 00000000..b1126398 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/H_we-cy.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Iota-cy + com.fontlab.metricsRight + Tshecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/I_-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/I_-cy.glif new file mode 100644 index 00000000..0974f905 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/I_-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/I_.glif b/sources/FixelDisplay-Regular.ufo/glyphs/I_.glif new file mode 100644 index 00000000..cf451ed6 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/I_.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/I_J_.glif b/sources/FixelDisplay-Regular.ufo/glyphs/I_J_.glif new file mode 100644 index 00000000..852d75f2 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/I_J_.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + I_J + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/I_a-cy.accented.glif b/sources/FixelDisplay-Regular.ufo/glyphs/I_a-cy.accented.glif new file mode 100644 index 00000000..7cd8724d --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/I_a-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Я+acute.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/I_a-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/I_a-cy.glif new file mode 100644 index 00000000..da0a1026 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/I_a-cy.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |R+10 + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/I_a-cy.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/I_a-cy.ss01.glif new file mode 100644 index 00000000..39393a86 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/I_a-cy.ss01.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/I_acute.glif b/sources/FixelDisplay-Regular.ufo/glyphs/I_acute.glif new file mode 100644 index 00000000..50ed915c --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/I_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+acute.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/I_breve.glif b/sources/FixelDisplay-Regular.ufo/glyphs/I_breve.glif new file mode 100644 index 00000000..ecdeec56 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/I_breve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+breve.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/I_circumflex.glif b/sources/FixelDisplay-Regular.ufo/glyphs/I_circumflex.glif new file mode 100644 index 00000000..335d4254 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/I_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+circumflex.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/I_dieresis.glif b/sources/FixelDisplay-Regular.ufo/glyphs/I_dieresis.glif new file mode 100644 index 00000000..2f21441e --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/I_dieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+dieresiscase.alt + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/I_dieresiscyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/I_dieresiscyr.glif new file mode 100644 index 00000000..a920c0a2 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/I_dieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ii-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/I_dotaccent.glif b/sources/FixelDisplay-Regular.ufo/glyphs/I_dotaccent.glif new file mode 100644 index 00000000..6397d92a --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/I_dotaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+dotaccent.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/I_e-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/I_e-cy.glif new file mode 100644 index 00000000..18b1fd22 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/I_e-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/I_ebrevecyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/I_ebrevecyr.glif new file mode 100644 index 00000000..fed033ec --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/I_ebrevecyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+breve.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/I_egravecyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/I_egravecyr.glif new file mode 100644 index 00000000..3456bfc1 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/I_egravecyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+grave.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/I_grave.glif b/sources/FixelDisplay-Regular.ufo/glyphs/I_grave.glif new file mode 100644 index 00000000..8cc4dad6 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/I_grave.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+grave.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/I_gravecyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/I_gravecyr.glif new file mode 100644 index 00000000..dd0e3109 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/I_gravecyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ii-cy+grave.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/I_i-cy.accented.glif b/sources/FixelDisplay-Regular.ufo/glyphs/I_i-cy.accented.glif new file mode 100644 index 00000000..3fa03807 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/I_i-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + И+acute.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/I_i-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/I_i-cy.glif new file mode 100644 index 00000000..16a61fac --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/I_i-cy.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/I_ishort-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/I_ishort-cy.glif new file mode 100644 index 00000000..fd7cd704 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/I_ishort-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + uni0418+breve.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/I_macron.glif b/sources/FixelDisplay-Regular.ufo/glyphs/I_macron.glif new file mode 100644 index 00000000..1aed4fb0 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/I_macron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+macron.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/I_macroncyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/I_macroncyr.glif new file mode 100644 index 00000000..ccfaa56b --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/I_macroncyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ii-cy+macron.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/I_o-cy.accented.glif b/sources/FixelDisplay-Regular.ufo/glyphs/I_o-cy.accented.glif new file mode 100644 index 00000000..1af0cebc --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/I_o-cy.accented.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + com.fontlab.recipe + E+dieresis.case+acute.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/I_o-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/I_o-cy.glif new file mode 100644 index 00000000..9d2bb0eb --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/I_o-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Edieresis + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/I_ogonek.glif b/sources/FixelDisplay-Regular.ufo/glyphs/I_ogonek.glif new file mode 100644 index 00000000..4ea4347a --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/I_ogonek.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+ogonek + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/I_ota-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/I_ota-cy.glif new file mode 100644 index 00000000..eff96ae0 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/I_ota-cy.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |J + com.fontlab.metricsRight + |J + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/I_otifiedA_-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/I_otifiedA_-cy.glif new file mode 100644 index 00000000..fabf624c --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/I_otifiedA_-cy.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + com.fontlab.metricsRight + A + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/I_shortsharptailcyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/I_shortsharptailcyr.glif new file mode 100644 index 00000000..a7c8bb78 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/I_shortsharptailcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Й + com.fontlab.metricsRight + Ensharptailcyr + com.fontlab.recipe + Й + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/I_tilde.glif b/sources/FixelDisplay-Regular.ufo/glyphs/I_tilde.glif new file mode 100644 index 00000000..9aff8842 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/I_tilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+tilde.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/I_u-cy.accented.glif b/sources/FixelDisplay-Regular.ufo/glyphs/I_u-cy.accented.glif new file mode 100644 index 00000000..b74289d3 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/I_u-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ю+acute.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/I_u-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/I_u-cy.glif new file mode 100644 index 00000000..29df1365 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/I_u-cy.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/I_zhitsacyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/I_zhitsacyr.glif new file mode 100644 index 00000000..54d81c63 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/I_zhitsacyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + V + com.fontlab.metricsRight + + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/I_zhitsagravedblcyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/I_zhitsagravedblcyr.glif new file mode 100644 index 00000000..e761fe4a --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/I_zhitsagravedblcyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + com.fontlab.metricsLeft + Izhitsacyr + com.fontlab.metricsRight + Izhitsacyr + com.fontlab.recipe + Izhitsacyr+hungarumlaut.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/J_.glif b/sources/FixelDisplay-Regular.ufo/glyphs/J_.glif new file mode 100644 index 00000000..acf16033 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/J_.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + U + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/J_.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/J_.ss01.glif new file mode 100644 index 00000000..d98bd94b --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/J_.ss01.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + U + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/J_circumflex.glif b/sources/FixelDisplay-Regular.ufo/glyphs/J_circumflex.glif new file mode 100644 index 00000000..d2ee1f15 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/J_circumflex.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + J+circumflex.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/J_circumflex.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/J_circumflex.ss01.glif new file mode 100644 index 00000000..1ba1b8ba --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/J_circumflex.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + J.ss01+circumflex.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/J_ecyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/J_ecyr.glif new file mode 100644 index 00000000..4a80f40e --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/J_ecyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsLeft + J + com.fontlab.metricsRight + J + com.fontlab.recipe + J + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/K_.glif b/sources/FixelDisplay-Regular.ufo/glyphs/K_.glif new file mode 100644 index 00000000..9d7a4499 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/K_.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/K_.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/K_.ss01.glif new file mode 100644 index 00000000..ffb46e4a --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/K_.ss01.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/K_a-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/K_a-cy.glif new file mode 100644 index 00000000..027a5310 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/K_a-cy.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.recipe + K + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/K_a-cy.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/K_a-cy.ss01.glif new file mode 100644 index 00000000..9e538625 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/K_a-cy.ss01.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.recipe + K + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/K_aaleutcyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/K_aaleutcyr.glif new file mode 100644 index 00000000..f089e5b0 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/K_aaleutcyr.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + K + com.fontlab.metricsRight + K + com.fontlab.recipe + K + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/K_abashkcyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/K_abashkcyr.glif new file mode 100644 index 00000000..1cc496d0 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/K_abashkcyr.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Hardsign-cy + com.fontlab.metricsRight + K + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/K_ahookcyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/K_ahookcyr.glif new file mode 100644 index 00000000..651ee0ab --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/K_ahookcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + K + com.fontlab.metricsRight + Djecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/K_astrokecyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/K_astrokecyr.glif new file mode 100644 index 00000000..8d926b0a --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/K_astrokecyr.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Yatcyr + com.fontlab.metricsRight + K + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/K_atailcyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/K_atailcyr.glif new file mode 100644 index 00000000..09bedd5e --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/K_atailcyr.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + К-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/K_averticalstrokecyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/K_averticalstrokecyr.glif new file mode 100644 index 00000000..4f66a0f8 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/K_averticalstrokecyr.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + K + com.fontlab.metricsRight + Ж + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/K_commaaccent.glif b/sources/FixelDisplay-Regular.ufo/glyphs/K_commaaccent.glif new file mode 100644 index 00000000..59af158a --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/K_commaaccent.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + K+commaaccentcomb + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/K_commaaccent.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/K_commaaccent.ss01.glif new file mode 100644 index 00000000..2d157afc --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/K_commaaccent.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + K.ss01+commaaccentcomb + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/K_jecyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/K_jecyr.glif new file mode 100644 index 00000000..e9aed0fd --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/K_jecyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ka-cy+acute.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/K_oppacyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/K_oppacyr.glif new file mode 100644 index 00000000..c58d618a --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/K_oppacyr.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + C-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/K_sicyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/K_sicyr.glif new file mode 100644 index 00000000..74bc3b4e --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/K_sicyr.glif @@ -0,0 +1,98 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + З-10 + com.fontlab.metricsRight + З + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/L_.glif b/sources/FixelDisplay-Regular.ufo/glyphs/L_.glif new file mode 100644 index 00000000..1f088e68 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/L_.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/L_acute.glif b/sources/FixelDisplay-Regular.ufo/glyphs/L_acute.glif new file mode 100644 index 00000000..d2535eec --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/L_acute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + L+acute.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/L_caron.glif b/sources/FixelDisplay-Regular.ufo/glyphs/L_caron.glif new file mode 100644 index 00000000..ebd75beb --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/L_caron.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + com.fontlab.recipe + L+caron.salt + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/L_commaaccent.glif b/sources/FixelDisplay-Regular.ufo/glyphs/L_commaaccent.glif new file mode 100644 index 00000000..30c89101 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/L_commaaccent.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + L+commaaccentcomb + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/L_dot.glif b/sources/FixelDisplay-Regular.ufo/glyphs/L_dot.glif new file mode 100644 index 00000000..911942dc --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/L_dot.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + com.fontlab.metricsRight + L + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/L_hacyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/L_hacyr.glif new file mode 100644 index 00000000..bc6b8b16 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/L_hacyr.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + X + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/L_jecyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/L_jecyr.glif new file mode 100644 index 00000000..c4a64f9b --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/L_jecyr.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Ь + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/L_jekomicyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/L_jekomicyr.glif new file mode 100644 index 00000000..28e3e8c2 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/L_jekomicyr.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Njekomicyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/L_slash.glif b/sources/FixelDisplay-Regular.ufo/glyphs/L_slash.glif new file mode 100644 index 00000000..f2c0445a --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/L_slash.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + L-80 + com.fontlab.metricsRight + L + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/M_.glif b/sources/FixelDisplay-Regular.ufo/glyphs/M_.glif new file mode 100644 index 00000000..0ded07e4 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/M_.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/M_.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/M_.ss01.glif new file mode 100644 index 00000000..feaaceda --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/M_.ss01.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H-25 + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/N_.glif b/sources/FixelDisplay-Regular.ufo/glyphs/N_.glif new file mode 100644 index 00000000..a46fd4cd --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/N_.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/N_.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/N_.ss01.glif new file mode 100644 index 00000000..6398965f --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/N_.ss01.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H-10 + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/N_U_L_L_.glif b/sources/FixelDisplay-Regular.ufo/glyphs/N_U_L_L_.glif new file mode 100644 index 00000000..1ad177ae --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/N_U_L_L_.glif @@ -0,0 +1,4 @@ + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/N_acute.glif b/sources/FixelDisplay-Regular.ufo/glyphs/N_acute.glif new file mode 100644 index 00000000..c9fd6f19 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/N_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N+acute.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/N_acute.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/N_acute.ss01.glif new file mode 100644 index 00000000..b98d5ae6 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/N_acute.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N.ss01+acute.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/N_caron.glif b/sources/FixelDisplay-Regular.ufo/glyphs/N_caron.glif new file mode 100644 index 00000000..b080e4ad --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/N_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N+caron.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/N_caron.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/N_caron.ss01.glif new file mode 100644 index 00000000..7fb2317e --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/N_caron.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N.ss01+caron.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/N_commaaccent.glif b/sources/FixelDisplay-Regular.ufo/glyphs/N_commaaccent.glif new file mode 100644 index 00000000..c8350e62 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/N_commaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N+commaaccentcomb + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/N_commaaccent.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/N_commaaccent.ss01.glif new file mode 100644 index 00000000..08bf7bf8 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/N_commaaccent.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N.ss01+commaaccentcomb + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/N_jecyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/N_jecyr.glif new file mode 100644 index 00000000..663a1398 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/N_jecyr.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Н + com.fontlab.metricsRight + Ь + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/N_jekomicyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/N_jekomicyr.glif new file mode 100644 index 00000000..e1b28077 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/N_jekomicyr.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + |u + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/N_tilde.glif b/sources/FixelDisplay-Regular.ufo/glyphs/N_tilde.glif new file mode 100644 index 00000000..8fe24c3c --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/N_tilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N+tilde.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/N_tilde.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/N_tilde.ss01.glif new file mode 100644 index 00000000..9c1ebb11 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/N_tilde.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N.ss01+tilde.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/O_-cy.accented.glif b/sources/FixelDisplay-Regular.ufo/glyphs/O_-cy.accented.glif new file mode 100644 index 00000000..7b6ff50c --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/O_-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+acute.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/O_-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/O_-cy.glif new file mode 100644 index 00000000..b4bc2111 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/O_-cy.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/O_.glif b/sources/FixelDisplay-Regular.ufo/glyphs/O_.glif new file mode 100644 index 00000000..31d347cb --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/O_.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/O_B_inocular-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/O_B_inocular-cy.glif new file mode 100644 index 00000000..f9881947 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/O_B_inocular-cy.glif @@ -0,0 +1,81 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/O_D_oubleM_onocular-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/O_D_oubleM_onocular-cy.glif new file mode 100644 index 00000000..5e3708bb --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/O_D_oubleM_onocular-cy.glif @@ -0,0 +1,119 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + com.fontlab.recipe + DoubleO-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/O_E_.glif b/sources/FixelDisplay-Regular.ufo/glyphs/O_E_.glif new file mode 100644 index 00000000..c073e342 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/O_E_.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + E + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/O_M_onocular-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/O_M_onocular-cy.glif new file mode 100644 index 00000000..23eac1a3 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/O_M_onocular-cy.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/O_acute.glif b/sources/FixelDisplay-Regular.ufo/glyphs/O_acute.glif new file mode 100644 index 00000000..f1c5625f --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/O_acute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+acute.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/O_barcyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/O_barcyr.glif new file mode 100644 index 00000000..a3615749 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/O_barcyr.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + r() + com.fontlab.metricsRight + O + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/O_bardieresiscyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/O_bardieresiscyr.glif new file mode 100644 index 00000000..465ec828 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/O_bardieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Obarcyr+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/O_breve.glif b/sources/FixelDisplay-Regular.ufo/glyphs/O_breve.glif new file mode 100644 index 00000000..9908a0ce --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/O_breve.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+breve.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/O_circumflex.glif b/sources/FixelDisplay-Regular.ufo/glyphs/O_circumflex.glif new file mode 100644 index 00000000..3c68c6c9 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/O_circumflex.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+circumflex.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/O_dieresis.glif b/sources/FixelDisplay-Regular.ufo/glyphs/O_dieresis.glif new file mode 100644 index 00000000..09ed92eb --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/O_dieresis.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+dieresis.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/O_dieresiscyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/O_dieresiscyr.glif new file mode 100644 index 00000000..8fb6afa5 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/O_dieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/O_grave.glif b/sources/FixelDisplay-Regular.ufo/glyphs/O_grave.glif new file mode 100644 index 00000000..bf843cf1 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/O_grave.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+grave.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/O_hungarumlaut.glif b/sources/FixelDisplay-Regular.ufo/glyphs/O_hungarumlaut.glif new file mode 100644 index 00000000..2fb41d83 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/O_hungarumlaut.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+hungarumlaut.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/O_macron.glif b/sources/FixelDisplay-Regular.ufo/glyphs/O_macron.glif new file mode 100644 index 00000000..ec283f53 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/O_macron.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+macron.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/O_mega.glif b/sources/FixelDisplay-Regular.ufo/glyphs/O_mega.glif new file mode 100644 index 00000000..9b629e43 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/O_mega.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O+10 + com.fontlab.metricsRight + O+10 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/O_megaB_road-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/O_megaB_road-cy.glif new file mode 100644 index 00000000..1d1334d0 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/O_megaB_road-cy.glif @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O+10 + com.fontlab.metricsRight + O+10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/O_megacyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/O_megacyr.glif new file mode 100644 index 00000000..07221951 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/O_megacyr.glif @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O+10 + com.fontlab.metricsRight + O+10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/O_megaroundcyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/O_megaroundcyr.glif new file mode 100644 index 00000000..586f10ec --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/O_megaroundcyr.glif @@ -0,0 +1,81 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/O_megatitlocyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/O_megatitlocyr.glif new file mode 100644 index 00000000..2d93875a --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/O_megatitlocyr.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O+10 + com.fontlab.metricsRight + O+10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/O_slash.glif b/sources/FixelDisplay-Regular.ufo/glyphs/O_slash.glif new file mode 100644 index 00000000..920c6d11 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/O_slash.glif @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/O_slashacute.glif b/sources/FixelDisplay-Regular.ufo/glyphs/O_slashacute.glif new file mode 100644 index 00000000..d897af42 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/O_slashacute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Oslash+acute.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/O_tcyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/O_tcyr.glif new file mode 100644 index 00000000..cbf9de4a --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/O_tcyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Omegacyr+uni2DEE.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/O_tilde.glif b/sources/FixelDisplay-Regular.ufo/glyphs/O_tilde.glif new file mode 100644 index 00000000..04c75395 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/O_tilde.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+tilde.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/P_.glif b/sources/FixelDisplay-Regular.ufo/glyphs/P_.glif new file mode 100644 index 00000000..34dcc624 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/P_.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/P_alochkacyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/P_alochkacyr.glif new file mode 100644 index 00000000..6d6f6285 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/P_alochkacyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/P_e-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/P_e-cy.glif new file mode 100644 index 00000000..48d8edb0 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/P_e-cy.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/P_ehookcyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/P_ehookcyr.glif new file mode 100644 index 00000000..53567895 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/P_ehookcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + П + com.fontlab.metricsRight + Shhacyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/P_etailcyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/P_etailcyr.glif new file mode 100644 index 00000000..ecc3070a --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/P_etailcyr.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/P_sicyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/P_sicyr.glif new file mode 100644 index 00000000..c10429cf --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/P_sicyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + U-20 + com.fontlab.metricsRight + U-20 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/Q_.glif b/sources/FixelDisplay-Regular.ufo/glyphs/Q_.glif new file mode 100644 index 00000000..ecb7a832 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/Q_.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/Q_.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/Q_.ss01.glif new file mode 100644 index 00000000..5916581e --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/Q_.ss01.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/Q_acyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/Q_acyr.glif new file mode 100644 index 00000000..92fcb848 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/Q_acyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Q + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/R_.glif b/sources/FixelDisplay-Regular.ufo/glyphs/R_.glif new file mode 100644 index 00000000..a314f14c --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/R_.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/R_acute.glif b/sources/FixelDisplay-Regular.ufo/glyphs/R_acute.glif new file mode 100644 index 00000000..6dea978e --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/R_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + R+acute.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/R_caron.glif b/sources/FixelDisplay-Regular.ufo/glyphs/R_caron.glif new file mode 100644 index 00000000..c056440c --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/R_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + R+caron.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/R_commaaccent.glif b/sources/FixelDisplay-Regular.ufo/glyphs/R_commaaccent.glif new file mode 100644 index 00000000..6505c0c4 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/R_commaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + R+commaaccentcomb + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/R_eversedzecyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/R_eversedzecyr.glif new file mode 100644 index 00000000..8dd44483 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/R_eversedzecyr.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + + com.fontlab.metricsRight + + com.fontlab.recipe + З + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/R_hacyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/R_hacyr.glif new file mode 100644 index 00000000..487371d5 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/R_hacyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + P + com.fontlab.metricsRight + X + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/S_.glif b/sources/FixelDisplay-Regular.ufo/glyphs/S_.glif new file mode 100644 index 00000000..00bf5e37 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/S_.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/S_acute.glif b/sources/FixelDisplay-Regular.ufo/glyphs/S_acute.glif new file mode 100644 index 00000000..91890836 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/S_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + S+acute.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/S_caron.glif b/sources/FixelDisplay-Regular.ufo/glyphs/S_caron.glif new file mode 100644 index 00000000..28a6cf28 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/S_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + S+caron.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/S_cedilla.glif b/sources/FixelDisplay-Regular.ufo/glyphs/S_cedilla.glif new file mode 100644 index 00000000..40f6e487 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/S_cedilla.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + S+cedilla + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/S_chwa.glif b/sources/FixelDisplay-Regular.ufo/glyphs/S_chwa.glif new file mode 100644 index 00000000..e9019bb3 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/S_chwa.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Schwacyr + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/S_chwacyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/S_chwacyr.glif new file mode 100644 index 00000000..bf417ec4 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/S_chwacyr.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O-10 + com.fontlab.metricsRight + O + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/S_chwadieresiscyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/S_chwadieresiscyr.glif new file mode 100644 index 00000000..b903bde7 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/S_chwadieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Schwacyr+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/S_circumflex.glif b/sources/FixelDisplay-Regular.ufo/glyphs/S_circumflex.glif new file mode 100644 index 00000000..2a9d4621 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/S_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + S+circumflex.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/S_commaaccent.glif b/sources/FixelDisplay-Regular.ufo/glyphs/S_commaaccent.glif new file mode 100644 index 00000000..5cc10a7c --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/S_commaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + S+commaaccentcomb + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/S_emisoftcyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/S_emisoftcyr.glif new file mode 100644 index 00000000..51c79191 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/S_emisoftcyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Yat + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/S_ha-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/S_ha-cy.glif new file mode 100644 index 00000000..3ff85238 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/S_ha-cy.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/S_hcha-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/S_hcha-cy.glif new file mode 100644 index 00000000..5c108c95 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/S_hcha-cy.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Д + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/S_hhacyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/S_hhacyr.glif new file mode 100644 index 00000000..50c85b47 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/S_hhacyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.metricsLeft + Н + com.fontlab.metricsRight + Tshecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/S_hhatailcyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/S_hhatailcyr.glif new file mode 100644 index 00000000..29caaf44 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/S_hhatailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/S_hwe-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/S_hwe-cy.glif new file mode 100644 index 00000000..e7b0df55 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/S_hwe-cy.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Щ + com.fontlab.metricsRight + Щ-20 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/S_jekomicyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/S_jekomicyr.glif new file mode 100644 index 00000000..a7e0e30f --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/S_jekomicyr.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + |Schwa + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/S_oftsign-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/S_oftsign-cy.glif new file mode 100644 index 00000000..6438c4c3 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/S_oftsign-cy.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + P + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/T_.glif b/sources/FixelDisplay-Regular.ufo/glyphs/T_.glif new file mode 100644 index 00000000..99a5c4f7 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/T_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/T_bar.glif b/sources/FixelDisplay-Regular.ufo/glyphs/T_bar.glif new file mode 100644 index 00000000..9c2378c1 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/T_bar.glif @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/T_caron.glif b/sources/FixelDisplay-Regular.ufo/glyphs/T_caron.glif new file mode 100644 index 00000000..3a9de429 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/T_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + T+caron.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/T_cedilla.glif b/sources/FixelDisplay-Regular.ufo/glyphs/T_cedilla.glif new file mode 100644 index 00000000..08aaa2b1 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/T_cedilla.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + T+cedilla + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/T_che-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/T_che-cy.glif new file mode 100644 index 00000000..553fbf87 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/T_che-cy.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Tetsecyr-20 + com.fontlab.metricsRight + Ч + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/T_commaaccent.glif b/sources/FixelDisplay-Regular.ufo/glyphs/T_commaaccent.glif new file mode 100644 index 00000000..2476aced --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/T_commaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + T+commaaccentcomb + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/T_e-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/T_e-cy.glif new file mode 100644 index 00000000..d6ea13f0 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/T_e-cy.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + com.fontlab.recipe + T + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/T_eW_ithM_iddleH_ook-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/T_eW_ithM_iddleH_ook-cy.glif new file mode 100644 index 00000000..ae1585ca --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/T_eW_ithM_iddleH_ook-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Djecyr + com.fontlab.metricsRight + Gehookcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/T_etailcyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/T_etailcyr.glif new file mode 100644 index 00000000..49cb5aa1 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/T_etailcyr.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/T_etsecyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/T_etsecyr.glif new file mode 100644 index 00000000..6d5d8c62 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/T_etsecyr.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Tshecyr + com.fontlab.metricsRight + Ц + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/T_horn.glif b/sources/FixelDisplay-Regular.ufo/glyphs/T_horn.glif new file mode 100644 index 00000000..2e289971 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/T_horn.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + P + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/T_jekomicyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/T_jekomicyr.glif new file mode 100644 index 00000000..393a7c6e --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/T_jekomicyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + Njekomicyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/T_se-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/T_se-cy.glif new file mode 100644 index 00000000..74f1fc9a --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/T_se-cy.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Д + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/T_seR_eversed-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/T_seR_eversed-cy.glif new file mode 100644 index 00000000..677bf40e --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/T_seR_eversed-cy.glif @@ -0,0 +1,20 @@ + + + + + + + + + + com.fontlab.metricsLeft + + com.fontlab.metricsRight + H + com.fontlab.recipe + Ц + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/T_shecyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/T_shecyr.glif new file mode 100644 index 00000000..e4f2c60a --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/T_shecyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + n + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/T_sse-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/T_sse-cy.glif new file mode 100644 index 00000000..0d5929be --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/T_sse-cy.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + T + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/T_swe-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/T_swe-cy.glif new file mode 100644 index 00000000..103839ce --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/T_swe-cy.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Shwe-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/T_we-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/T_we-cy.glif new file mode 100644 index 00000000..05614996 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/T_we-cy.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + T + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/U_-cy.accented.glif b/sources/FixelDisplay-Regular.ufo/glyphs/U_-cy.accented.glif new file mode 100644 index 00000000..717568dd --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/U_-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + У+acute.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/U_-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/U_-cy.glif new file mode 100644 index 00000000..6cb17d99 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/U_-cy.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Y+10 + com.fontlab.metricsRight + Y+5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/U_-cy.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/U_-cy.ss01.glif new file mode 100644 index 00000000..52784aa2 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/U_-cy.ss01.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/U_.glif b/sources/FixelDisplay-Regular.ufo/glyphs/U_.glif new file mode 100644 index 00000000..f60e292f --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/U_.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H-10 + com.fontlab.metricsRight + H-10 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/U_acute.glif b/sources/FixelDisplay-Regular.ufo/glyphs/U_acute.glif new file mode 100644 index 00000000..cf3554f3 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/U_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+acute.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/U_acutedblcyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/U_acutedblcyr.glif new file mode 100644 index 00000000..ff6884d2 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/U_acutedblcyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U-cy+hungarumlaut.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/U_breve.glif b/sources/FixelDisplay-Regular.ufo/glyphs/U_breve.glif new file mode 100644 index 00000000..4ea98965 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/U_breve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+breve.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/U_circumflex.glif b/sources/FixelDisplay-Regular.ufo/glyphs/U_circumflex.glif new file mode 100644 index 00000000..8b1b083b --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/U_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+circumflex.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/U_dieresis.glif b/sources/FixelDisplay-Regular.ufo/glyphs/U_dieresis.glif new file mode 100644 index 00000000..3ebf0b4a --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/U_dieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+dieresis.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/U_dieresiscyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/U_dieresiscyr.glif new file mode 100644 index 00000000..8cc2fcb5 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/U_dieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/U_grave.glif b/sources/FixelDisplay-Regular.ufo/glyphs/U_grave.glif new file mode 100644 index 00000000..28aa6e6b --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/U_grave.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+grave.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/U_hungarumlaut.glif b/sources/FixelDisplay-Regular.ufo/glyphs/U_hungarumlaut.glif new file mode 100644 index 00000000..318421d7 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/U_hungarumlaut.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+hungarumlaut.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/U_kM_onograph-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/U_kM_onograph-cy.glif new file mode 100644 index 00000000..c9fbac17 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/U_kM_onograph-cy.glif @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/U_kcyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/U_kcyr.glif new file mode 100644 index 00000000..ff97d841 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/U_kcyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + y + com.fontlab.recipe + О_у + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/U_macron.glif b/sources/FixelDisplay-Regular.ufo/glyphs/U_macron.glif new file mode 100644 index 00000000..fbd7cb4f --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/U_macron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+macron.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/U_macroncyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/U_macroncyr.glif new file mode 100644 index 00000000..63042625 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/U_macroncyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U-cy+macron.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/U_ogonek.glif b/sources/FixelDisplay-Regular.ufo/glyphs/U_ogonek.glif new file mode 100644 index 00000000..234c7f2c --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/U_ogonek.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + U+ogonek + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/U_ring.glif b/sources/FixelDisplay-Regular.ufo/glyphs/U_ring.glif new file mode 100644 index 00000000..752bcc66 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/U_ring.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+ring.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/U_short-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/U_short-cy.glif new file mode 100644 index 00000000..7089ada0 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/U_short-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ucyr+breve.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/U_short-cy.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/U_short-cy.ss01.glif new file mode 100644 index 00000000..d3c5d31e --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/U_short-cy.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ucyr.ss01+breve.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/U_straightcyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/U_straightcyr.glif new file mode 100644 index 00000000..3f09ae52 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/U_straightcyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsRight + Y + com.fontlab.recipe + Y + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/U_straightstrokecyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/U_straightstrokecyr.glif new file mode 100644 index 00000000..1d65e50f --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/U_straightstrokecyr.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/U_tilde.glif b/sources/FixelDisplay-Regular.ufo/glyphs/U_tilde.glif new file mode 100644 index 00000000..72002911 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/U_tilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+tilde.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/V_.glif b/sources/FixelDisplay-Regular.ufo/glyphs/V_.glif new file mode 100644 index 00000000..d0f14a58 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/V_.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/V_.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/V_.ss01.glif new file mode 100644 index 00000000..6583efac --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/V_.ss01.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/V_e-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/V_e-cy.glif new file mode 100644 index 00000000..eac4372c --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/V_e-cy.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + B + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/W_.glif b/sources/FixelDisplay-Regular.ufo/glyphs/W_.glif new file mode 100644 index 00000000..682b08fd --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/W_.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/W_.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/W_.ss01.glif new file mode 100644 index 00000000..63c64cd2 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/W_.ss01.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |A + com.fontlab.metricsRight + |A + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/W_acute.glif b/sources/FixelDisplay-Regular.ufo/glyphs/W_acute.glif new file mode 100644 index 00000000..8524beb8 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/W_acute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W+acute.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/W_acute.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/W_acute.ss01.glif new file mode 100644 index 00000000..21e45f8d --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/W_acute.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W.ss01+acute.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/W_circumflex.glif b/sources/FixelDisplay-Regular.ufo/glyphs/W_circumflex.glif new file mode 100644 index 00000000..4e4a7b23 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/W_circumflex.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W+circumflex.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/W_circumflex.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/W_circumflex.ss01.glif new file mode 100644 index 00000000..2d8157ce --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/W_circumflex.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W.ss01+circumflex.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/W_dieresis.glif b/sources/FixelDisplay-Regular.ufo/glyphs/W_dieresis.glif new file mode 100644 index 00000000..27139340 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/W_dieresis.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + W+dieresis.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/W_dieresis.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/W_dieresis.ss01.glif new file mode 100644 index 00000000..cac2ff1f --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/W_dieresis.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W.ss01+dieresis.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/W_ecyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/W_ecyr.glif new file mode 100644 index 00000000..9b0db6fe --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/W_ecyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/W_grave.glif b/sources/FixelDisplay-Regular.ufo/glyphs/W_grave.glif new file mode 100644 index 00000000..32b78ed7 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/W_grave.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W+grave.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/W_grave.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/W_grave.ss01.glif new file mode 100644 index 00000000..5abf3f4e --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/W_grave.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W.ss01+grave.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/X_.glif b/sources/FixelDisplay-Regular.ufo/glyphs/X_.glif new file mode 100644 index 00000000..9f044ec5 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/X_.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/X_.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/X_.ss01.glif new file mode 100644 index 00000000..c64a8501 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/X_.ss01.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/X_atailcyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/X_atailcyr.glif new file mode 100644 index 00000000..efd2f525 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/X_atailcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + X + com.fontlab.metricsRight + Katailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/Y_.glif b/sources/FixelDisplay-Regular.ufo/glyphs/Y_.glif new file mode 100644 index 00000000..ed85f5a2 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/Y_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/Y_.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/Y_.ss01.glif new file mode 100644 index 00000000..0f0b6e63 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/Y_.ss01.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/Y_acute.glif b/sources/FixelDisplay-Regular.ufo/glyphs/Y_acute.glif new file mode 100644 index 00000000..1c054b56 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/Y_acute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y+acute.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/Y_acute.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/Y_acute.ss01.glif new file mode 100644 index 00000000..851f8e2f --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/Y_acute.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y.ss01+acute.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/Y_aecyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/Y_aecyr.glif new file mode 100644 index 00000000..f26c053e --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/Y_aecyr.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Я + com.fontlab.metricsRight + E + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/Y_atI_otified-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/Y_atI_otified-cy.glif new file mode 100644 index 00000000..1c4a297e --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/Y_atI_otified-cy.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + com.fontlab.metricsRight + Yatcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/Y_atcyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/Y_atcyr.glif new file mode 100644 index 00000000..36e96be2 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/Y_atcyr.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Т + com.fontlab.metricsRight + Ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/Y_circumflex.glif b/sources/FixelDisplay-Regular.ufo/glyphs/Y_circumflex.glif new file mode 100644 index 00000000..7b79e032 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/Y_circumflex.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y+circumflex.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/Y_circumflex.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/Y_circumflex.ss01.glif new file mode 100644 index 00000000..029521f1 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/Y_circumflex.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y.ss01+circumflex.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/Y_dieresis.glif b/sources/FixelDisplay-Regular.ufo/glyphs/Y_dieresis.glif new file mode 100644 index 00000000..dfb34957 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/Y_dieresis.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y+dieresis.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/Y_dieresis.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/Y_dieresis.ss01.glif new file mode 100644 index 00000000..4009334e --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/Y_dieresis.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y.ss01+dieresis.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/Y_erN_eutral-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/Y_erN_eutral-cy.glif new file mode 100644 index 00000000..cc409f47 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/Y_erN_eutral-cy.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Hardsign-cy + com.fontlab.metricsRight + Ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/Y_eru-cy.accented.glif b/sources/FixelDisplay-Regular.ufo/glyphs/Y_eru-cy.accented.glif new file mode 100644 index 00000000..4c067240 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/Y_eru-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ы+acute.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/Y_eru-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/Y_eru-cy.glif new file mode 100644 index 00000000..fb0b9940 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/Y_eru-cy.glif @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/Y_eru-cymacron.glif b/sources/FixelDisplay-Regular.ufo/glyphs/Y_eru-cymacron.glif new file mode 100644 index 00000000..08aba19e --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/Y_eru-cymacron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ы+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/Y_eruB_ackY_er-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/Y_eruB_ackY_er-cy.glif new file mode 100644 index 00000000..98e9e5ae --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/Y_eruB_ackY_er-cy.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Hardsign + com.fontlab.metricsRight + I + com.fontlab.recipe + Hardsign-cy_I + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/Y_i-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/Y_i-cy.glif new file mode 100644 index 00000000..5766538d --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/Y_i-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Idieresis + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/Y_longdieresiscyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/Y_longdieresiscyr.glif new file mode 100644 index 00000000..ab8f48f5 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/Y_longdieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Yeru-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/Y_n-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/Y_n-cy.glif new file mode 100644 index 00000000..ef08877f --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/Y_n-cy.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |Izhitsa + com.fontlab.metricsRight + |Izhitsa + com.fontlab.recipe + Izhitsa + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/Y_uR_eversed-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/Y_uR_eversed-cy.glif new file mode 100644 index 00000000..ab9957b9 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/Y_uR_eversed-cy.glif @@ -0,0 +1,20 @@ + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + H + com.fontlab.recipe + Ю + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/Y_usB_lended-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/Y_usB_lended-cy.glif new file mode 100644 index 00000000..d0041ae0 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/Y_usB_lended-cy.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Yusbigcyr + com.fontlab.metricsRight + Yusbigcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/Y_usC_losedlittle-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/Y_usC_losedlittle-cy.glif new file mode 100644 index 00000000..ec5812d7 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/Y_usC_losedlittle-cy.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + A + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/Y_usbigcyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/Y_usbigcyr.glif new file mode 100644 index 00000000..3490da0b --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/Y_usbigcyr.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ж + com.fontlab.metricsRight + Ж + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/Y_usbigiotifiedcyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/Y_usbigiotifiedcyr.glif new file mode 100644 index 00000000..2a0b437b --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/Y_usbigiotifiedcyr.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + Ж + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/Y_usiotifiedC_losedL_ittle-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/Y_usiotifiedC_losedL_ittle-cy.glif new file mode 100644 index 00000000..1887d59a --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/Y_usiotifiedC_losedL_ittle-cy.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + A + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/Y_uslittlecyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/Y_uslittlecyr.glif new file mode 100644 index 00000000..39c5d876 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/Y_uslittlecyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + А-5 + com.fontlab.metricsRight + А-5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/Y_uslittleiotifiedcyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/Y_uslittleiotifiedcyr.glif new file mode 100644 index 00000000..e20ad37e --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/Y_uslittleiotifiedcyr.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + А-5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/Z_.glif b/sources/FixelDisplay-Regular.ufo/glyphs/Z_.glif new file mode 100644 index 00000000..49433c83 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/Z_.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/Z_.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/Z_.ss01.glif new file mode 100644 index 00000000..a94d16b7 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/Z_.ss01.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/Z_acute.glif b/sources/FixelDisplay-Regular.ufo/glyphs/Z_acute.glif new file mode 100644 index 00000000..83fe4942 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/Z_acute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Z+acute.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/Z_acute.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/Z_acute.ss01.glif new file mode 100644 index 00000000..7301e3f1 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/Z_acute.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Z.ss01+acute.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/Z_caron.glif b/sources/FixelDisplay-Regular.ufo/glyphs/Z_caron.glif new file mode 100644 index 00000000..7f528587 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/Z_caron.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Z+caron.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/Z_caron.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/Z_caron.ss01.glif new file mode 100644 index 00000000..7392f09b --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/Z_caron.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Z.ss01+caron.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/Z_dotaccent.glif b/sources/FixelDisplay-Regular.ufo/glyphs/Z_dotaccent.glif new file mode 100644 index 00000000..2ed8ae0c --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/Z_dotaccent.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Z+dotaccent.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/Z_dotaccent.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/Z_dotaccent.ss01.glif new file mode 100644 index 00000000..eba4dd8f --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/Z_dotaccent.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Z.ss01+dotaccent.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/Z_e-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/Z_e-cy.glif new file mode 100644 index 00000000..66a2c221 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/Z_e-cy.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |C + com.fontlab.metricsRight + B + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/Z_edieresiscyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/Z_edieresiscyr.glif new file mode 100644 index 00000000..061b9a80 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/Z_edieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ze-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/Z_emlya-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/Z_emlya-cy.glif new file mode 100644 index 00000000..c57a4857 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/Z_emlya-cy.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Z-10 + com.fontlab.metricsRight + Z + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/Z_etailcyr.B_S_H_.glif b/sources/FixelDisplay-Regular.ufo/glyphs/Z_etailcyr.B_S_H_.glif new file mode 100644 index 00000000..87b75252 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/Z_etailcyr.B_S_H_.glif @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + З + com.fontlab.metricsRight + З + com.fontlab.recipe + Zetailcyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/Z_etailcyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/Z_etailcyr.glif new file mode 100644 index 00000000..e7428008 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/Z_etailcyr.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + З + com.fontlab.metricsRight + З + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/Z_he-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/Z_he-cy.glif new file mode 100644 index 00000000..157b27db --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/Z_he-cy.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |K + com.fontlab.metricsRight + K + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/Z_he-cy.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/Z_he-cy.ss01.glif new file mode 100644 index 00000000..2105a6b0 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/Z_he-cy.ss01.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |K + com.fontlab.metricsRight + K + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/Z_hebrevecyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/Z_hebrevecyr.glif new file mode 100644 index 00000000..331068ec --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/Z_hebrevecyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Zhe-cy+breve.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/Z_hedieresiscyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/Z_hedieresiscyr.glif new file mode 100644 index 00000000..f6749a64 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/Z_hedieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Zhe-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/Z_hetailcyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/Z_hetailcyr.glif new file mode 100644 index 00000000..4de8cd0d --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/Z_hetailcyr.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ж + com.fontlab.metricsRight + Katailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/Z_hwe-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/Z_hwe-cy.glif new file mode 100644 index 00000000..a1535f4b --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/Z_hwe-cy.glif @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + З + com.fontlab.metricsRight + Ж + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/Z_jekomicyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/Z_jekomicyr.glif new file mode 100644 index 00000000..881fdbfb --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/Z_jekomicyr.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Dzjekomicyr + com.fontlab.metricsRight + Njekomicyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/_notdef.glif b/sources/FixelDisplay-Regular.ufo/glyphs/_notdef.glif new file mode 100644 index 00000000..7261060b --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/_notdef.glif @@ -0,0 +1,178 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + =55 + com.schriftgestaltung.Glyphs.rightMetricsKey + =55 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/_perc-circule.glif b/sources/FixelDisplay-Regular.ufo/glyphs/_perc-circule.glif new file mode 100644 index 00000000..bd5f5092 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/_perc-circule.glif @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.schriftgestaltung.Glyphs.Export + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/a-cy.accented.glif b/sources/FixelDisplay-Regular.ufo/glyphs/a-cy.accented.glif new file mode 100644 index 00000000..3b94073d --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/a-cy.accented.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+acute + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/a-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/a-cy.glif new file mode 100644 index 00000000..f20dad6f --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/a-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/a-cy.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/a-cy.ss01.glif new file mode 100644 index 00000000..16f24eca --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/a-cy.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/a.glif b/sources/FixelDisplay-Regular.ufo/glyphs/a.glif new file mode 100644 index 00000000..fd3cfa30 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/a.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + n-10 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/a.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/a.ss01.glif new file mode 100644 index 00000000..3c94ecd5 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/a.ss01.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/aacute.glif b/sources/FixelDisplay-Regular.ufo/glyphs/aacute.glif new file mode 100644 index 00000000..960a2d8f --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/aacute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+acute + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/aacute.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/aacute.ss01.glif new file mode 100644 index 00000000..519db56a --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/aacute.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+acute + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/abreve.glif b/sources/FixelDisplay-Regular.ufo/glyphs/abreve.glif new file mode 100644 index 00000000..be8cffef --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/abreve.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+breve + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/abreve.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/abreve.ss01.glif new file mode 100644 index 00000000..9b1674fa --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/abreve.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+breve + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/abrevecyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/abrevecyr.glif new file mode 100644 index 00000000..93544b1b --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/abrevecyr.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+breve + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/acaron.glif b/sources/FixelDisplay-Regular.ufo/glyphs/acaron.glif new file mode 100644 index 00000000..a0d6fa94 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/acaron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+caron + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/acircumflex.glif b/sources/FixelDisplay-Regular.ufo/glyphs/acircumflex.glif new file mode 100644 index 00000000..a0b6180d --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/acircumflex.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+circumflex + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/acircumflex.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/acircumflex.ss01.glif new file mode 100644 index 00000000..07363592 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/acircumflex.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+circumflex + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/acute.case.glif b/sources/FixelDisplay-Regular.ufo/glyphs/acute.case.glif new file mode 100644 index 00000000..76ca2d2b --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/acute.case.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/acute.glif b/sources/FixelDisplay-Regular.ufo/glyphs/acute.glif new file mode 100644 index 00000000..66d76c90 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/acute.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/adieresis.glif b/sources/FixelDisplay-Regular.ufo/glyphs/adieresis.glif new file mode 100644 index 00000000..064c0046 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/adieresis.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+dieresis + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/adieresis.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/adieresis.ss01.glif new file mode 100644 index 00000000..f2d70b2c --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/adieresis.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+dieresis + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/adieresiscyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/adieresiscyr.glif new file mode 100644 index 00000000..66ef950b --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/adieresiscyr.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/ae.glif b/sources/FixelDisplay-Regular.ufo/glyphs/ae.glif new file mode 100644 index 00000000..8a742936 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/ae.glif @@ -0,0 +1,101 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + a + com.fontlab.metricsRight + e + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/ae.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/ae.ss01.glif new file mode 100644 index 00000000..d471327c --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/ae.ss01.glif @@ -0,0 +1,96 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + a + com.fontlab.metricsRight + e.ss01 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/aeacute.glif b/sources/FixelDisplay-Regular.ufo/glyphs/aeacute.glif new file mode 100644 index 00000000..e06ac843 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/aeacute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ae+acute + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/agrave.glif b/sources/FixelDisplay-Regular.ufo/glyphs/agrave.glif new file mode 100644 index 00000000..3e53341c --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/agrave.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+grave + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/agrave.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/agrave.ss01.glif new file mode 100644 index 00000000..6ea1bf8a --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/agrave.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+grave + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/aiecyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/aiecyr.glif new file mode 100644 index 00000000..27757d27 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/aiecyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ae + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/amacron.glif b/sources/FixelDisplay-Regular.ufo/glyphs/amacron.glif new file mode 100644 index 00000000..7cb2d4ea --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/amacron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+macron + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/amacron.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/amacron.ss01.glif new file mode 100644 index 00000000..9d257acc --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/amacron.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+macron + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/ampersand.glif b/sources/FixelDisplay-Regular.ufo/glyphs/ampersand.glif new file mode 100644 index 00000000..46845aaf --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/ampersand.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/aogonek.glif b/sources/FixelDisplay-Regular.ufo/glyphs/aogonek.glif new file mode 100644 index 00000000..ec531ffe --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/aogonek.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+ogonek + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/aogonek.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/aogonek.ss01.glif new file mode 100644 index 00000000..66075257 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/aogonek.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+ogonek + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/apostrophemod.glif b/sources/FixelDisplay-Regular.ufo/glyphs/apostrophemod.glif new file mode 100644 index 00000000..f1d12742 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/apostrophemod.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + apostrophe + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/approxequal.glif b/sources/FixelDisplay-Regular.ufo/glyphs/approxequal.glif new file mode 100644 index 00000000..abcf9765 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/approxequal.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/aring.glif b/sources/FixelDisplay-Regular.ufo/glyphs/aring.glif new file mode 100644 index 00000000..671b7afc --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/aring.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+ring + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/aring.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/aring.ss01.glif new file mode 100644 index 00000000..67869387 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/aring.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+ring + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/arrowdown.case.glif b/sources/FixelDisplay-Regular.ufo/glyphs/arrowdown.case.glif new file mode 100644 index 00000000..e38b8c1d --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/arrowdown.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + arrowup + com.fontlab.metricsRight + arrowup + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/arrowdown.glif b/sources/FixelDisplay-Regular.ufo/glyphs/arrowdown.glif new file mode 100644 index 00000000..b94f0597 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/arrowdown.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + arrowup + com.fontlab.metricsRight + arrowup + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/arrowdown.ss01.case.glif b/sources/FixelDisplay-Regular.ufo/glyphs/arrowdown.ss01.case.glif new file mode 100644 index 00000000..ba84d35d --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/arrowdown.ss01.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + arrowup + com.fontlab.metricsRight + arrowup + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/arrowdown.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/arrowdown.ss01.glif new file mode 100644 index 00000000..9f982f61 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/arrowdown.ss01.glif @@ -0,0 +1,15 @@ + + + + + + + + + com.fontlab.metricsLeft + arrowup + com.fontlab.metricsRight + arrowup + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/arrowleft.case.glif b/sources/FixelDisplay-Regular.ufo/glyphs/arrowleft.case.glif new file mode 100644 index 00000000..59bd28c5 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/arrowleft.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + arrowleft + com.fontlab.metricsRight + arrowleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/arrowleft.glif b/sources/FixelDisplay-Regular.ufo/glyphs/arrowleft.glif new file mode 100644 index 00000000..607822b2 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/arrowleft.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/arrowleft.ss01.case.glif b/sources/FixelDisplay-Regular.ufo/glyphs/arrowleft.ss01.case.glif new file mode 100644 index 00000000..e9b29c4e --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/arrowleft.ss01.case.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + arrowleft + com.fontlab.metricsRight + arrowleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/arrowleft.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/arrowleft.ss01.glif new file mode 100644 index 00000000..1acc9c7f --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/arrowleft.ss01.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + arrowleft + com.fontlab.metricsRight + arrowleft + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/arrowright.case.glif b/sources/FixelDisplay-Regular.ufo/glyphs/arrowright.case.glif new file mode 100644 index 00000000..995b43ab --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/arrowright.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |arrowleft + com.fontlab.metricsRight + |arrowleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/arrowright.glif b/sources/FixelDisplay-Regular.ufo/glyphs/arrowright.glif new file mode 100644 index 00000000..866f0aac --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/arrowright.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + |arrowleft + com.fontlab.metricsRight + |arrowleft + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/arrowright.ss01.case.glif b/sources/FixelDisplay-Regular.ufo/glyphs/arrowright.ss01.case.glif new file mode 100644 index 00000000..b1055d25 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/arrowright.ss01.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |arrowleft + com.fontlab.metricsRight + |arrowleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/arrowright.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/arrowright.ss01.glif new file mode 100644 index 00000000..02e7a1d0 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/arrowright.ss01.glif @@ -0,0 +1,15 @@ + + + + + + + + + com.fontlab.metricsLeft + |arrowleft + com.fontlab.metricsRight + |arrowleft + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/arrowup.case.glif b/sources/FixelDisplay-Regular.ufo/glyphs/arrowup.case.glif new file mode 100644 index 00000000..ed73c046 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/arrowup.case.glif @@ -0,0 +1,15 @@ + + + + + + + + + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/arrowup.glif b/sources/FixelDisplay-Regular.ufo/glyphs/arrowup.glif new file mode 100644 index 00000000..6c84b663 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/arrowup.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + l() + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/arrowup.ss01.case.glif b/sources/FixelDisplay-Regular.ufo/glyphs/arrowup.ss01.case.glif new file mode 100644 index 00000000..dcbf8718 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/arrowup.ss01.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + arrowup + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/arrowup.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/arrowup.ss01.glif new file mode 100644 index 00000000..58ac79e9 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/arrowup.ss01.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + arrowup + com.fontlab.metricsRight + l() + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/asciicircum.glif b/sources/FixelDisplay-Regular.ufo/glyphs/asciicircum.glif new file mode 100644 index 00000000..0242e490 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/asciicircum.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/asciitilde.glif b/sources/FixelDisplay-Regular.ufo/glyphs/asciitilde.glif new file mode 100644 index 00000000..972ecf3f --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/asciitilde.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/asterisk.glif b/sources/FixelDisplay-Regular.ufo/glyphs/asterisk.glif new file mode 100644 index 00000000..b513ee9b --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/asterisk.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/at.case.glif b/sources/FixelDisplay-Regular.ufo/glyphs/at.case.glif new file mode 100644 index 00000000..4ccc3e85 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/at.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/at.glif b/sources/FixelDisplay-Regular.ufo/glyphs/at.glif new file mode 100644 index 00000000..deea8e26 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/at.glif @@ -0,0 +1,92 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/atilde.glif b/sources/FixelDisplay-Regular.ufo/glyphs/atilde.glif new file mode 100644 index 00000000..9cde2963 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/atilde.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+tilde + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/atilde.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/atilde.ss01.glif new file mode 100644 index 00000000..5470c051 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/atilde.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+tilde + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/b.glif b/sources/FixelDisplay-Regular.ufo/glyphs/b.glif new file mode 100644 index 00000000..795bfcf8 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/b.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/b.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/b.ss01.glif new file mode 100644 index 00000000..26e3827c --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/b.ss01.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/backslash.case.glif b/sources/FixelDisplay-Regular.ufo/glyphs/backslash.case.glif new file mode 100644 index 00000000..040eba25 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/backslash.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + backslash + com.fontlab.metricsRight + backslash + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/backslash.glif b/sources/FixelDisplay-Regular.ufo/glyphs/backslash.glif new file mode 100644 index 00000000..4d7305f5 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/backslash.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/bar.case.glif b/sources/FixelDisplay-Regular.ufo/glyphs/bar.case.glif new file mode 100644 index 00000000..c6719bcf --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/bar.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + H-10 + com.fontlab.metricsRight + H-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/bar.glif b/sources/FixelDisplay-Regular.ufo/glyphs/bar.glif new file mode 100644 index 00000000..04c3076f --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/bar.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H-10 + com.fontlab.metricsRight + H-10 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/be-cy.S_R_B_.glif b/sources/FixelDisplay-Regular.ufo/glyphs/be-cy.S_R_B_.glif new file mode 100644 index 00000000..deffd52e --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/be-cy.S_R_B_.glif @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/be-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/be-cy.glif new file mode 100644 index 00000000..1c806707 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/be-cy.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/bishopblack.glif b/sources/FixelDisplay-Regular.ufo/glyphs/bishopblack.glif new file mode 100644 index 00000000..2399ff0b --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/bishopblack.glif @@ -0,0 +1,241 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =10 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/bishopwhite.glif b/sources/FixelDisplay-Regular.ufo/glyphs/bishopwhite.glif new file mode 100644 index 00000000..58de42a6 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/bishopwhite.glif @@ -0,0 +1,331 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/braceleft.case.glif b/sources/FixelDisplay-Regular.ufo/glyphs/braceleft.case.glif new file mode 100644 index 00000000..0baf6ae5 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/braceleft.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |braceright.case + com.fontlab.metricsRight + |braceright.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/braceleft.glif b/sources/FixelDisplay-Regular.ufo/glyphs/braceleft.glif new file mode 100644 index 00000000..b571866d --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/braceleft.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/braceright.case.glif b/sources/FixelDisplay-Regular.ufo/glyphs/braceright.case.glif new file mode 100644 index 00000000..3056ccc3 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/braceright.case.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/braceright.glif b/sources/FixelDisplay-Regular.ufo/glyphs/braceright.glif new file mode 100644 index 00000000..1b16dc0a --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/braceright.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/bracketangleleft.case.glif b/sources/FixelDisplay-Regular.ufo/glyphs/bracketangleleft.case.glif new file mode 100644 index 00000000..9a4c55b0 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/bracketangleleft.case.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + parenleft.case + com.fontlab.metricsRight + parenleft.case + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/bracketangleleft.glif b/sources/FixelDisplay-Regular.ufo/glyphs/bracketangleleft.glif new file mode 100644 index 00000000..1f453d3a --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/bracketangleleft.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + parenleft + com.fontlab.metricsRight + parenleft + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/bracketangleright.case.glif b/sources/FixelDisplay-Regular.ufo/glyphs/bracketangleright.case.glif new file mode 100644 index 00000000..d4b97fcb --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/bracketangleright.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |bracketangleleft.case + com.fontlab.metricsRight + |bracketangleleft.case + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/bracketangleright.glif b/sources/FixelDisplay-Regular.ufo/glyphs/bracketangleright.glif new file mode 100644 index 00000000..c5b03783 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/bracketangleright.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.metricsLeft + |bracketangleleft + com.fontlab.metricsRight + |bracketangleleft + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/bracketleft.case.glif b/sources/FixelDisplay-Regular.ufo/glyphs/bracketleft.case.glif new file mode 100644 index 00000000..6ccf9ddb --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/bracketleft.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |bracketright.case + com.fontlab.metricsRight + |bracketright.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/bracketleft.glif b/sources/FixelDisplay-Regular.ufo/glyphs/bracketleft.glif new file mode 100644 index 00000000..62bfca15 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/bracketleft.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/bracketright.case.glif b/sources/FixelDisplay-Regular.ufo/glyphs/bracketright.case.glif new file mode 100644 index 00000000..7249fcb5 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/bracketright.case.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |bracketleft + com.fontlab.metricsRight + |bracketleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/bracketright.glif b/sources/FixelDisplay-Regular.ufo/glyphs/bracketright.glif new file mode 100644 index 00000000..e3c64d74 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/bracketright.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |bracketleft + com.fontlab.metricsRight + |bracketleft + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/breve.case.glif b/sources/FixelDisplay-Regular.ufo/glyphs/breve.case.glif new file mode 100644 index 00000000..a1deac08 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/breve.case.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/breve.glif b/sources/FixelDisplay-Regular.ufo/glyphs/breve.glif new file mode 100644 index 00000000..f81b18a0 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/breve.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/brokenbar.case.glif b/sources/FixelDisplay-Regular.ufo/glyphs/brokenbar.case.glif new file mode 100644 index 00000000..3230f358 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/brokenbar.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + bar + com.fontlab.metricsRight + bar + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/brokenbar.glif b/sources/FixelDisplay-Regular.ufo/glyphs/brokenbar.glif new file mode 100644 index 00000000..09b3e4ef --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/brokenbar.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + bar + com.fontlab.metricsRight + bar + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/bullet.case.glif b/sources/FixelDisplay-Regular.ufo/glyphs/bullet.case.glif new file mode 100644 index 00000000..7f208f0d --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/bullet.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + period + com.fontlab.metricsRight + period + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/bullet.glif b/sources/FixelDisplay-Regular.ufo/glyphs/bullet.glif new file mode 100644 index 00000000..c4443aa7 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/bullet.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + period + com.fontlab.metricsRight + period + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/c.glif b/sources/FixelDisplay-Regular.ufo/glyphs/c.glif new file mode 100644 index 00000000..0b658ecb --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/c.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/cacute.glif b/sources/FixelDisplay-Regular.ufo/glyphs/cacute.glif new file mode 100644 index 00000000..1764a02a --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/cacute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+acute + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/caron.case.glif b/sources/FixelDisplay-Regular.ufo/glyphs/caron.case.glif new file mode 100644 index 00000000..f06ba4c5 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/caron.case.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/caron.glif b/sources/FixelDisplay-Regular.ufo/glyphs/caron.glif new file mode 100644 index 00000000..6cd15287 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/caron.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/caron.salt.glif b/sources/FixelDisplay-Regular.ufo/glyphs/caron.salt.glif new file mode 100644 index 00000000..ac9e29b5 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/caron.salt.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/ccaron.glif b/sources/FixelDisplay-Regular.ufo/glyphs/ccaron.glif new file mode 100644 index 00000000..cfe3bb63 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/ccaron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+caron + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/ccedilla.glif b/sources/FixelDisplay-Regular.ufo/glyphs/ccedilla.glif new file mode 100644 index 00000000..cb778f83 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/ccedilla.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+cedilla + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/cche-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/cche-cy.glif new file mode 100644 index 00000000..c8360dfc --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/cche-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ч + com.fontlab.metricsRight + ч + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/ccircumflex.glif b/sources/FixelDisplay-Regular.ufo/glyphs/ccircumflex.glif new file mode 100644 index 00000000..d7ffb5e5 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/ccircumflex.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+circumflex + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/cdotaccent.glif b/sources/FixelDisplay-Regular.ufo/glyphs/cdotaccent.glif new file mode 100644 index 00000000..fcebbf78 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/cdotaccent.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+dotaccent + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/cedilla.glif b/sources/FixelDisplay-Regular.ufo/glyphs/cedilla.glif new file mode 100644 index 00000000..d051f68a --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/cedilla.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/cent.glif b/sources/FixelDisplay-Regular.ufo/glyphs/cent.glif new file mode 100644 index 00000000..ecc02e69 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/cent.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + c + com.fontlab.metricsRight + c + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/che-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/che-cy.glif new file mode 100644 index 00000000..3a682a0a --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/che-cy.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + u-10 + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/cheabkhcyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/cheabkhcyr.glif new file mode 100644 index 00000000..7828c65f --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/cheabkhcyr.glif @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + e + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/cheabkhtailcyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/cheabkhtailcyr.glif new file mode 100644 index 00000000..4adbba26 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/cheabkhtailcyr.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + cheabkhcyr + com.fontlab.metricsRight + cheabkhcyr + com.fontlab.recipe + cheabkhcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/chedieresiscyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/chedieresiscyr.glif new file mode 100644 index 00000000..773eada5 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/chedieresiscyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + che-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/chekhakascyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/chekhakascyr.glif new file mode 100644 index 00000000..2b575c55 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/chekhakascyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ч + com.fontlab.metricsRight + н + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/chetailcyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/chetailcyr.glif new file mode 100644 index 00000000..32e01b33 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/chetailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ч + com.fontlab.metricsRight + entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/chevertcyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/chevertcyr.glif new file mode 100644 index 00000000..198af132 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/chevertcyr.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ч + com.fontlab.metricsRight + н + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/circumflex.case.glif b/sources/FixelDisplay-Regular.ufo/glyphs/circumflex.case.glif new file mode 100644 index 00000000..80adc0d3 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/circumflex.case.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/circumflex.glif b/sources/FixelDisplay-Regular.ufo/glyphs/circumflex.glif new file mode 100644 index 00000000..2412290e --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/circumflex.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/clubwhite.glif b/sources/FixelDisplay-Regular.ufo/glyphs/clubwhite.glif new file mode 100644 index 00000000..a242c00e --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/clubwhite.glif @@ -0,0 +1,155 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/colon.case.glif b/sources/FixelDisplay-Regular.ufo/glyphs/colon.case.glif new file mode 100644 index 00000000..a12265b5 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/colon.case.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/colon.glif b/sources/FixelDisplay-Regular.ufo/glyphs/colon.glif new file mode 100644 index 00000000..9f441b84 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/colon.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/colontriangularmod.glif b/sources/FixelDisplay-Regular.ufo/glyphs/colontriangularmod.glif new file mode 100644 index 00000000..88c630c4 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/colontriangularmod.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + colon + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/comma.glif b/sources/FixelDisplay-Regular.ufo/glyphs/comma.glif new file mode 100644 index 00000000..9b843583 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/comma.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/commaaccentcomb.glif b/sources/FixelDisplay-Regular.ufo/glyphs/commaaccentcomb.glif new file mode 100644 index 00000000..ab544c8b --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/commaaccentcomb.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/commaaccentcomb.salt.glif b/sources/FixelDisplay-Regular.ufo/glyphs/commaaccentcomb.salt.glif new file mode 100644 index 00000000..9e387d30 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/commaaccentcomb.salt.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/contents.plist b/sources/FixelDisplay-Regular.ufo/glyphs/contents.plist new file mode 100644 index 00000000..2830b2de --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/contents.plist @@ -0,0 +1,2352 @@ + + + + + .notdef + _notdef.glif + A + A_.glif + A-cy + A_-cy.glif + A-cy.accented + A_-cy.accented.glif + A-cy.ss01 + A_-cy.ss01.glif + A.ss01 + A_.ss01.glif + AE + A_E_.glif + AE.ss01 + A_E_.ss01.glif + AEacute + A_E_acute.glif + Aacute + A_acute.glif + Aacute.ss01 + A_acute.ss01.glif + Abreve + A_breve.glif + Abreve.ss01 + A_breve.ss01.glif + Abrevecyr + A_brevecyr.glif + Acaron + A_caron.glif + Acircumflex + A_circumflex.glif + Acircumflex.ss01 + A_circumflex.ss01.glif + Adieresis + A_dieresis.glif + Adieresis.ss01 + A_dieresis.ss01.glif + Adieresiscyr + A_dieresiscyr.glif + Agrave + A_grave.glif + Agrave.ss01 + A_grave.ss01.glif + Aiecyr + A_iecyr.glif + Amacron + A_macron.glif + Amacron.ss01 + A_macron.ss01.glif + Aogonek + A_ogonek.glif + Aogonek.ss01 + A_ogonek.ss01.glif + Aring + A_ring.glif + Aring.ss01 + A_ring.ss01.glif + Atilde + A_tilde.glif + Atilde.ss01 + A_tilde.ss01.glif + B + B_.glif + Be-cy + B_e-cy.glif + C + C_.glif + CR + C_R_.glif + Cacute + C_acute.glif + Ccaron + C_caron.glif + Ccedilla + C_cedilla.glif + Cche-cy + C_che-cy.glif + Ccircumflex + C_circumflex.glif + Cdotaccent + C_dotaccent.glif + Che-cy + C_he-cy.glif + Cheabkhcyr + C_heabkhcyr.glif + Cheabkhtailcyr + C_heabkhtailcyr.glif + Chedieresiscyr + C_hedieresiscyr.glif + Chekhakascyr + C_hekhakascyr.glif + Chetailcyr + C_hetailcyr.glif + Chevertcyr + C_hevertcyr.glif + CrossedO-cy + C_rossedO_-cy.glif + D + D_.glif + Dcaron + D_caron.glif + Dchecyr + D_checyr.glif + Dcroat + D_croat.glif + De-cy + D_e-cy.glif + De-cy.BGR + D_e-cy.B_G_R_.glif + DeSoft-cy + D_eS_oft-cy.glif + Dekomicyr + D_ekomicyr.glif + Delta + D_elta.glif + Djecyr + D_jecyr.glif + Djekomicyr + D_jekomicyr.glif + Djerv-cy + D_jerv-cy.glif + DoubleO-cy + D_oubleO_-cy.glif + Dwe-cy + D_we-cy.glif + Dze-cy + D_ze-cy.glif + DzeReversed-cy + D_zeR_eversed-cy.glif + Dzeabkhcyr + D_zeabkhcyr.glif + Dzelo-cy + D_zelo-cy.glif + Dzhecyr + D_zhecyr.glif + Dzjekomicyr + D_zjekomicyr.glif + Dzwe-cy + D_zwe-cy.glif + Dzze-cy + D_zze-cy.glif + Dzzhecyr + D_zzhecyr.glif + E + E_.glif + E-cy + E_-cy.glif + E-cy.accented + E_-cy.accented.glif + Eacute + E_acute.glif + Ebreve + E_breve.glif + Ecaron + E_caron.glif + Ecircumflex + E_circumflex.glif + Edieresis + E_dieresis.glif + Edotaccent + E_dotaccent.glif + Ef-cy + E_f-cy.glif + Ef-cy.BGR + E_f-cy.B_G_R_.glif + Egrave + E_grave.glif + Eiotifiedcyr + E_iotifiedcyr.glif + El-cy + E_l-cy.glif + El-cy.BGR + E_l-cy.B_G_R_.glif + ElSoft-cy + E_lS_oft-cy.glif + Elhookcyr + E_lhookcyr.glif + Elmiddlehookcyr + E_lmiddlehookcyr.glif + Elsharptailcyr + E_lsharptailcyr.glif + Elsmallcyr + E_lsmallcyr.glif + Eltailcyr + E_ltailcyr.glif + Em-cy + E_m-cy.glif + Em-cy.ss01 + E_m-cy.ss01.glif + EmSoft-cy + E_mS_oft-cy.glif + Emacron + E_macron.glif + Emsharptailcyr + E_msharptailcyr.glif + En-cy + E_n-cy.glif + Eng + E_ng.glif + Eng.ss01 + E_ng.ss01.glif + Engecyr + E_ngecyr.glif + Enhookcyr + E_nhookcyr.glif + Enhookleftcyr + E_nhookleftcyr.glif + Enmiddlehookcyr + E_nmiddlehookcyr.glif + Ensharptailcyr + E_nsharptailcyr.glif + Entailcyr + E_ntailcyr.glif + Eogonek + E_ogonek.glif + Er-cy + E_r-cy.glif + Ereversed-cy + E_reversed-cy.glif + Ereversed-cy.accented + E_reversed-cy.accented.glif + Ereverseddieresiscyr + E_reverseddieresiscyr.glif + Ertickcyr + E_rtickcyr.glif + Es-cy + E_s-cy.glif + Estailcyr + E_stailcyr.glif + Estailcyr.BSH + E_stailcyr.B_S_H_.glif + Estailcyr.CHU + E_stailcyr.C_H_U_.glif + Eth + E_th.glif + F + F_.glif + Fitacyr + F_itacyr.glif + G + G_.glif + G.ss01 + G_.ss01.glif + Gacute + G_acute.glif + Gacute.ss01 + G_acute.ss01.glif + Gbreve + G_breve.glif + Gbreve.ss01 + G_breve.ss01.glif + Gcircumflex + G_circumflex.glif + Gcircumflex.ss01 + G_circumflex.ss01.glif + Gcommaaccent + G_commaaccent.glif + Gcommaaccent.ss01 + G_commaaccent.ss01.glif + Gdotaccent + G_dotaccent.glif + Gdotaccent.ss01 + G_dotaccent.ss01.glif + Ge-cy + G_e-cy.glif + Gehookcyr + G_ehookcyr.glif + Gehookstrokecyr + G_ehookstrokecyr.glif + Germandbls + G_ermandbls.glif + Gestrokecyr + G_estrokecyr.glif + Gestrokecyr.BSH + G_estrokecyr.B_S_H_.glif + Getailcyr + G_etailcyr.glif + Gheupturn-cy + G_heupturn-cy.glif + Gjecyr + G_jecyr.glif + H + H_.glif + Ha-cy + H_a-cy.glif + Ha-cy.ss01 + H_a-cy.ss01.glif + Haabkhcyr + H_aabkhcyr.glif + Hahookcyr + H_ahookcyr.glif + Hardsign-cy + H_ardsign-cy.glif + Hastrokecyr + H_astrokecyr.glif + Hbar + H_bar.glif + Hcircumflex + H_circumflex.glif + Hwe-cy + H_we-cy.glif + I + I_.glif + I-cy + I_-cy.glif + IJ + I_J_.glif + Ia-cy + I_a-cy.glif + Ia-cy.accented + I_a-cy.accented.glif + Ia-cy.ss01 + I_a-cy.ss01.glif + Iacute + I_acute.glif + Ibreve + I_breve.glif + Icircumflex + I_circumflex.glif + Idieresis + I_dieresis.glif + Idieresiscyr + I_dieresiscyr.glif + Idotaccent + I_dotaccent.glif + Ie-cy + I_e-cy.glif + Iebrevecyr + I_ebrevecyr.glif + Iegravecyr + I_egravecyr.glif + Igrave + I_grave.glif + Igravecyr + I_gravecyr.glif + Ii-cy + I_i-cy.glif + Ii-cy.accented + I_i-cy.accented.glif + Iishort-cy + I_ishort-cy.glif + Imacron + I_macron.glif + Imacroncyr + I_macroncyr.glif + Io-cy + I_o-cy.glif + Io-cy.accented + I_o-cy.accented.glif + Iogonek + I_ogonek.glif + Iota-cy + I_ota-cy.glif + IotifiedA-cy + I_otifiedA_-cy.glif + Ishortsharptailcyr + I_shortsharptailcyr.glif + Itilde + I_tilde.glif + Iu-cy + I_u-cy.glif + Iu-cy.accented + I_u-cy.accented.glif + Izhitsacyr + I_zhitsacyr.glif + Izhitsagravedblcyr + I_zhitsagravedblcyr.glif + J + J_.glif + J.ss01 + J_.ss01.glif + Jcircumflex + J_circumflex.glif + Jcircumflex.ss01 + J_circumflex.ss01.glif + Jecyr + J_ecyr.glif + K + K_.glif + K.ss01 + K_.ss01.glif + Ka-cy + K_a-cy.glif + Ka-cy.ss01 + K_a-cy.ss01.glif + Kaaleutcyr + K_aaleutcyr.glif + Kabashkcyr + K_abashkcyr.glif + Kahookcyr + K_ahookcyr.glif + Kastrokecyr + K_astrokecyr.glif + Katailcyr + K_atailcyr.glif + Kaverticalstrokecyr + K_averticalstrokecyr.glif + Kcommaaccent + K_commaaccent.glif + Kcommaaccent.ss01 + K_commaaccent.ss01.glif + Kjecyr + K_jecyr.glif + Koppacyr + K_oppacyr.glif + Ksicyr + K_sicyr.glif + L + L_.glif + Lacute + L_acute.glif + Lcaron + L_caron.glif + Lcommaaccent + L_commaaccent.glif + Ldot + L_dot.glif + Lhacyr + L_hacyr.glif + Ljecyr + L_jecyr.glif + Ljekomicyr + L_jekomicyr.glif + Lslash + L_slash.glif + M + M_.glif + M.ss01 + M_.ss01.glif + N + N_.glif + N.ss01 + N_.ss01.glif + NULL + N_U_L_L_.glif + Nacute + N_acute.glif + Nacute.ss01 + N_acute.ss01.glif + Ncaron + N_caron.glif + Ncaron.ss01 + N_caron.ss01.glif + Ncommaaccent + N_commaaccent.glif + Ncommaaccent.ss01 + N_commaaccent.ss01.glif + Njecyr + N_jecyr.glif + Njekomicyr + N_jekomicyr.glif + Ntilde + N_tilde.glif + Ntilde.ss01 + N_tilde.ss01.glif + O + O_.glif + O-cy + O_-cy.glif + O-cy.accented + O_-cy.accented.glif + OBinocular-cy + O_B_inocular-cy.glif + ODoubleMonocular-cy + O_D_oubleM_onocular-cy.glif + OE + O_E_.glif + OMonocular-cy + O_M_onocular-cy.glif + Oacute + O_acute.glif + Obarcyr + O_barcyr.glif + Obardieresiscyr + O_bardieresiscyr.glif + Obreve + O_breve.glif + Ocircumflex + O_circumflex.glif + Odieresis + O_dieresis.glif + Odieresiscyr + O_dieresiscyr.glif + Ograve + O_grave.glif + Ohungarumlaut + O_hungarumlaut.glif + Omacron + O_macron.glif + Omega + O_mega.glif + OmegaBroad-cy + O_megaB_road-cy.glif + Omegacyr + O_megacyr.glif + Omegaroundcyr + O_megaroundcyr.glif + Omegatitlocyr + O_megatitlocyr.glif + Oslash + O_slash.glif + Oslashacute + O_slashacute.glif + Otcyr + O_tcyr.glif + Otilde + O_tilde.glif + P + P_.glif + Palochkacyr + P_alochkacyr.glif + Pe-cy + P_e-cy.glif + Pehookcyr + P_ehookcyr.glif + Petailcyr + P_etailcyr.glif + Psicyr + P_sicyr.glif + Q + Q_.glif + Q.ss01 + Q_.ss01.glif + Qacyr + Q_acyr.glif + R + R_.glif + Racute + R_acute.glif + Rcaron + R_caron.glif + Rcommaaccent + R_commaaccent.glif + Reversedzecyr + R_eversedzecyr.glif + Rhacyr + R_hacyr.glif + S + S_.glif + Sacute + S_acute.glif + Scaron + S_caron.glif + Scedilla + S_cedilla.glif + Schwa + S_chwa.glif + Schwacyr + S_chwacyr.glif + Schwadieresiscyr + S_chwadieresiscyr.glif + Scircumflex + S_circumflex.glif + Scommaaccent + S_commaaccent.glif + Semisoftcyr + S_emisoftcyr.glif + Sha-cy + S_ha-cy.glif + Shcha-cy + S_hcha-cy.glif + Shhacyr + S_hhacyr.glif + Shhatailcyr + S_hhatailcyr.glif + Shwe-cy + S_hwe-cy.glif + Sjekomicyr + S_jekomicyr.glif + Softsign-cy + S_oftsign-cy.glif + T + T_.glif + Tbar + T_bar.glif + Tcaron + T_caron.glif + Tcedilla + T_cedilla.glif + Tche-cy + T_che-cy.glif + Tcommaaccent + T_commaaccent.glif + Te-cy + T_e-cy.glif + TeWithMiddleHook-cy + T_eW_ithM_iddleH_ook-cy.glif + Tetailcyr + T_etailcyr.glif + Tetsecyr + T_etsecyr.glif + Thorn + T_horn.glif + Tjekomicyr + T_jekomicyr.glif + Tse-cy + T_se-cy.glif + TseReversed-cy + T_seR_eversed-cy.glif + Tshecyr + T_shecyr.glif + Tsse-cy + T_sse-cy.glif + Tswe-cy + T_swe-cy.glif + Twe-cy + T_we-cy.glif + U + U_.glif + U-cy + U_-cy.glif + U-cy.accented + U_-cy.accented.glif + U-cy.ss01 + U_-cy.ss01.glif + Uacute + U_acute.glif + Uacutedblcyr + U_acutedblcyr.glif + Ubreve + U_breve.glif + Ucircumflex + U_circumflex.glif + Udieresis + U_dieresis.glif + Udieresiscyr + U_dieresiscyr.glif + Ugrave + U_grave.glif + Uhungarumlaut + U_hungarumlaut.glif + UkMonograph-cy + U_kM_onograph-cy.glif + Ukcyr + U_kcyr.glif + Umacron + U_macron.glif + Umacroncyr + U_macroncyr.glif + Uogonek + U_ogonek.glif + Uring + U_ring.glif + Ushort-cy + U_short-cy.glif + Ushort-cy.ss01 + U_short-cy.ss01.glif + Ustraightcyr + U_straightcyr.glif + Ustraightstrokecyr + U_straightstrokecyr.glif + Utilde + U_tilde.glif + V + V_.glif + V.ss01 + V_.ss01.glif + Ve-cy + V_e-cy.glif + W + W_.glif + W.ss01 + W_.ss01.glif + Wacute + W_acute.glif + Wacute.ss01 + W_acute.ss01.glif + Wcircumflex + W_circumflex.glif + Wcircumflex.ss01 + W_circumflex.ss01.glif + Wdieresis + W_dieresis.glif + Wdieresis.ss01 + W_dieresis.ss01.glif + Wecyr + W_ecyr.glif + Wgrave + W_grave.glif + Wgrave.ss01 + W_grave.ss01.glif + X + X_.glif + X.ss01 + X_.ss01.glif + Xatailcyr + X_atailcyr.glif + Y + Y_.glif + Y.ss01 + Y_.ss01.glif + Yacute + Y_acute.glif + Yacute.ss01 + Y_acute.ss01.glif + Yaecyr + Y_aecyr.glif + YatIotified-cy + Y_atI_otified-cy.glif + Yatcyr + Y_atcyr.glif + Ycircumflex + Y_circumflex.glif + Ycircumflex.ss01 + Y_circumflex.ss01.glif + Ydieresis + Y_dieresis.glif + Ydieresis.ss01 + Y_dieresis.ss01.glif + YerNeutral-cy + Y_erN_eutral-cy.glif + Yeru-cy + Y_eru-cy.glif + Yeru-cy.accented + Y_eru-cy.accented.glif + Yeru-cymacron + Y_eru-cymacron.glif + YeruBackYer-cy + Y_eruB_ackY_er-cy.glif + Yi-cy + Y_i-cy.glif + Ylongdieresiscyr + Y_longdieresiscyr.glif + Yn-cy + Y_n-cy.glif + YuReversed-cy + Y_uR_eversed-cy.glif + YusBlended-cy + Y_usB_lended-cy.glif + YusClosedlittle-cy + Y_usC_losedlittle-cy.glif + Yusbigcyr + Y_usbigcyr.glif + Yusbigiotifiedcyr + Y_usbigiotifiedcyr.glif + YusiotifiedClosedLittle-cy + Y_usiotifiedC_losedL_ittle-cy.glif + Yuslittlecyr + Y_uslittlecyr.glif + Yuslittleiotifiedcyr + Y_uslittleiotifiedcyr.glif + Z + Z_.glif + Z.ss01 + Z_.ss01.glif + Zacute + Z_acute.glif + Zacute.ss01 + Z_acute.ss01.glif + Zcaron + Z_caron.glif + Zcaron.ss01 + Z_caron.ss01.glif + Zdotaccent + Z_dotaccent.glif + Zdotaccent.ss01 + Z_dotaccent.ss01.glif + Ze-cy + Z_e-cy.glif + Zedieresiscyr + Z_edieresiscyr.glif + Zemlya-cy + Z_emlya-cy.glif + Zetailcyr + Z_etailcyr.glif + Zetailcyr.BSH + Z_etailcyr.B_S_H_.glif + Zhe-cy + Z_he-cy.glif + Zhe-cy.ss01 + Z_he-cy.ss01.glif + Zhebrevecyr + Z_hebrevecyr.glif + Zhedieresiscyr + Z_hedieresiscyr.glif + Zhetailcyr + Z_hetailcyr.glif + Zhwe-cy + Z_hwe-cy.glif + Zjekomicyr + Z_jekomicyr.glif + _perc-circule + _perc-circule.glif + a + a.glif + a-cy + a-cy.glif + a-cy.accented + a-cy.accented.glif + a-cy.ss01 + a-cy.ss01.glif + a.ss01 + a.ss01.glif + aacute + aacute.glif + aacute.ss01 + aacute.ss01.glif + abreve + abreve.glif + abreve.ss01 + abreve.ss01.glif + abrevecyr + abrevecyr.glif + acaron + acaron.glif + acircumflex + acircumflex.glif + acircumflex.ss01 + acircumflex.ss01.glif + acute + acute.glif + acute.case + acute.case.glif + adieresis + adieresis.glif + adieresis.ss01 + adieresis.ss01.glif + adieresiscyr + adieresiscyr.glif + ae + ae.glif + ae.ss01 + ae.ss01.glif + aeacute + aeacute.glif + agrave + agrave.glif + agrave.ss01 + agrave.ss01.glif + aiecyr + aiecyr.glif + amacron + amacron.glif + amacron.ss01 + amacron.ss01.glif + ampersand + ampersand.glif + aogonek + aogonek.glif + aogonek.ss01 + aogonek.ss01.glif + apostrophemod + apostrophemod.glif + approxequal + approxequal.glif + aring + aring.glif + aring.ss01 + aring.ss01.glif + arrowdown + arrowdown.glif + arrowdown.case + arrowdown.case.glif + arrowdown.ss01 + arrowdown.ss01.glif + arrowdown.ss01.case + arrowdown.ss01.case.glif + arrowleft + arrowleft.glif + arrowleft.case + arrowleft.case.glif + arrowleft.ss01 + arrowleft.ss01.glif + arrowleft.ss01.case + arrowleft.ss01.case.glif + arrowright + arrowright.glif + arrowright.case + arrowright.case.glif + arrowright.ss01 + arrowright.ss01.glif + arrowright.ss01.case + arrowright.ss01.case.glif + arrowup + arrowup.glif + arrowup.case + arrowup.case.glif + arrowup.ss01 + arrowup.ss01.glif + arrowup.ss01.case + arrowup.ss01.case.glif + asciicircum + asciicircum.glif + asciitilde + asciitilde.glif + asterisk + asterisk.glif + at + at.glif + at.case + at.case.glif + atilde + atilde.glif + atilde.ss01 + atilde.ss01.glif + b + b.glif + b.ss01 + b.ss01.glif + backslash + backslash.glif + backslash.case + backslash.case.glif + bar + bar.glif + bar.case + bar.case.glif + be-cy + be-cy.glif + be-cy.SRB + be-cy.S_R_B_.glif + bishopblack + bishopblack.glif + bishopwhite + bishopwhite.glif + braceleft + braceleft.glif + braceleft.case + braceleft.case.glif + braceright + braceright.glif + braceright.case + braceright.case.glif + bracketangleleft + bracketangleleft.glif + bracketangleleft.case + bracketangleleft.case.glif + bracketangleright + bracketangleright.glif + bracketangleright.case + bracketangleright.case.glif + bracketleft + bracketleft.glif + bracketleft.case + bracketleft.case.glif + bracketright + bracketright.glif + bracketright.case + bracketright.case.glif + breve + breve.glif + breve.case + breve.case.glif + brokenbar + brokenbar.glif + brokenbar.case + brokenbar.case.glif + bullet + bullet.glif + bullet.case + bullet.case.glif + c + c.glif + cacute + cacute.glif + caron + caron.glif + caron.case + caron.case.glif + caron.salt + caron.salt.glif + ccaron + ccaron.glif + ccedilla + ccedilla.glif + cche-cy + cche-cy.glif + ccircumflex + ccircumflex.glif + cdotaccent + cdotaccent.glif + cedilla + cedilla.glif + cent + cent.glif + che-cy + che-cy.glif + cheabkhcyr + cheabkhcyr.glif + cheabkhtailcyr + cheabkhtailcyr.glif + chedieresiscyr + chedieresiscyr.glif + chekhakascyr + chekhakascyr.glif + chetailcyr + chetailcyr.glif + chevertcyr + chevertcyr.glif + circumflex + circumflex.glif + circumflex.case + circumflex.case.glif + clubwhite + clubwhite.glif + colon + colon.glif + colon.case + colon.case.glif + colontriangularmod + colontriangularmod.glif + comma + comma.glif + commaaccentcomb + commaaccentcomb.glif + commaaccentcomb.salt + commaaccentcomb.salt.glif + copyright + copyright.glif + crossedo-cy + crossedo-cy.glif + crossedswords + crossedswords.glif + currency + currency.glif + d + d.glif + d.ss01 + d.ss01.glif + dagger + dagger.glif + daggerdbl + daggerdbl.glif + dcaron + dcaron.glif + dcaron.ss01 + dcaron.ss01.glif + dchecyr + dchecyr.glif + dcroat + dcroat.glif + dcroat.ss01 + dcroat.ss01.glif + de-cy + de-cy.glif + de-cy.BGR + de-cy.B_G_R_.glif + de-cy.ss01 + de-cy.ss01.glif + deSoft-cy + deS_oft-cy.glif + degree + degree.glif + dekomicyr + dekomicyr.glif + diamondwhite-misc + diamondwhite-misc.glif + dieresis + dieresis.glif + dieresis.alt + dieresis.alt.glif + dieresis.case + dieresis.case.glif + dieresisacute + dieresisacute.glif + dieresiscase.alt + dieresiscase.alt.glif + divide + divide.glif + djecyr + djecyr.glif + djekomicyr + djekomicyr.glif + djerv-cy + djerv-cy.glif + dollar + dollar.glif + dotaccent + dotaccent.glif + dotaccent.case + dotaccent.case.glif + doubleo-cy + doubleo-cy.glif + dramsignarmn + dramsignarmn.glif + dwe-cy + dwe-cy.glif + dze-cy + dze-cy.glif + dzeReversed-cy + dzeR_eversed-cy.glif + dzeabkhcyr + dzeabkhcyr.glif + dzelo-cy + dzelo-cy.glif + dzhecyr + dzhecyr.glif + dzjekomicyr + dzjekomicyr.glif + dzwe-cy + dzwe-cy.glif + dzze-cy + dzze-cy.glif + dzzhecyr + dzzhecyr.glif + e + e.glif + e-cy + e-cy.glif + e-cy.accented + e-cy.accented.glif + e-cy.hist + e-cy.hist.glif + e.ss01 + e.ss01.glif + eacute + eacute.glif + eacute.ss01 + eacute.ss01.glif + ebreve + ebreve.glif + ebreve.ss01 + ebreve.ss01.glif + ecaron + ecaron.glif + ecaron.ss01 + ecaron.ss01.glif + ecircumflex + ecircumflex.glif + ecircumflex.ss01 + ecircumflex.ss01.glif + edieresis + edieresis.glif + edieresis.ss01 + edieresis.ss01.glif + edotaccent + edotaccent.glif + edotaccent.ss01 + edotaccent.ss01.glif + ef-cy + ef-cy.glif + egrave + egrave.glif + egrave.ss01 + egrave.ss01.glif + eight + eight.glif + eight.osf + eight.osf.glif + eight.tf + eight.tf.glif + eiotifiedcyr + eiotifiedcyr.glif + eiotifiedcyr.BGR + eiotifiedcyr.B_G_R_.glif + el-cy + el-cy.glif + el-cy.BGR + el-cy.B_G_R_.glif + el-cy.ss01 + el-cy.ss01.glif + elSoft-cy + elS_oft-cy.glif + elhookcyr + elhookcyr.glif + ellipsis + ellipsis.glif + elmiddlehookcyr + elmiddlehookcyr.glif + elsharptailcyr + elsharptailcyr.glif + eltailcyr + eltailcyr.glif + em-cy + em-cy.glif + emSoft-cy + emS_oft-cy.glif + emacron + emacron.glif + emacron.ss01 + emacron.ss01.glif + emdash + emdash.glif + emdash.case + emdash.case.glif + emsharptailcyr + emsharptailcyr.glif + en-cy + en-cy.glif + enclosingcirclecomb + enclosingcirclecomb.glif + endash + endash.glif + endash.case + endash.case.glif + eng + eng.glif + engecyr + engecyr.glif + enhookcyr + enhookcyr.glif + enhookleftcyr + enhookleftcyr.glif + enmiddlehookcyr + enmiddlehookcyr.glif + ensharptailcyr + ensharptailcyr.glif + entailcyr + entailcyr.glif + eogonek + eogonek.glif + eogonek.ss01 + eogonek.ss01.glif + equal + equal.glif + er-cy + er-cy.glif + er-cy.ss01 + er-cy.ss01.glif + ereversed-cy + ereversed-cy.glif + ereversed-cy.accented + ereversed-cy.accented.glif + ereverseddieresiscyr + ereverseddieresiscyr.glif + ertickcyr + ertickcyr.glif + es-cy + es-cy.glif + estailcyr + estailcyr.glif + estailcyr.BSH + estailcyr.B_S_H_.glif + estailcyr.CHU + estailcyr.C_H_U_.glif + estimated + estimated.glif + eth + eth.glif + eturned + eturned.glif + euro + euro.glif + exclam + exclam.glif + exclamdown + exclamdown.glif + exclamdown.case + exclamdown.case.glif + f + f.glif + f.ss01 + f.ss01.glif + f_f + f_f.glif + f_f.ss01 + f_f.ss01.glif + f_f_i + f_f_i.glif + f_f_i.ss01 + f_f_i.ss01.glif + f_f_l + f_f_l.glif + f_f_l.ss01 + f_f_l.ss01.glif + fi + fi.glif + fi.ss01 + fi.ss01.glif + fitacyr + fitacyr.glif + five + five.glif + five.osf + five.osf.glif + five.tf + five.tf.glif + fl + fl.glif + fl.ss01 + fl.ss01.glif + floretteblack + floretteblack.glif + floretteoutlinedpetalledblackeight + floretteoutlinedpetalledblackeight.glif + florettewhite + florettewhite.glif + florin + florin.glif + flower + flower.glif + four + four.glif + four.osf + four.osf.glif + four.tf + four.tf.glif + fraction + fraction.glif + g + g.glif + g.ss01 + g.ss01.glif + gacute + gacute.glif + gacute.ss01 + gacute.ss01.glif + gbreve + gbreve.glif + gbreve.ss01 + gbreve.ss01.glif + gcircumflex + gcircumflex.glif + gcircumflex.ss01 + gcircumflex.ss01.glif + gcommaaccent + gcommaaccent.glif + gcommaaccent.ss01 + gcommaaccent.ss01.glif + gdotaccent + gdotaccent.glif + gdotaccent.ss01 + gdotaccent.ss01.glif + ge-cy + ge-cy.glif + ge-cy.BGR + ge-cy.B_G_R_.glif + ge-cy.SRB + ge-cy.S_R_B_.glif + gehookcyr + gehookcyr.glif + gehookstrokecyr + gehookstrokecyr.glif + germandbls + germandbls.glif + germandbls.ss01 + germandbls.ss01.glif + gestrokecyr + gestrokecyr.glif + gestrokecyr.BSH + gestrokecyr.B_S_H_.glif + getailcyr + getailcyr.glif + gheupturn-cy + gheupturn-cy.glif + gjecyr + gjecyr.glif + gjecyr.SRB + gjecyr.S_R_B_.glif + grave + grave.glif + grave.case + grave.case.glif + greater + greater.glif + greaterequal + greaterequal.glif + guillemetleft + guillemetleft.glif + guillemetleft.case + guillemetleft.case.glif + guillemetright + guillemetright.glif + guillemetright.case + guillemetright.case.glif + guilsinglleft + guilsinglleft.glif + guilsinglleft.case + guilsinglleft.case.glif + guilsinglright + guilsinglright.glif + guilsinglright.case + guilsinglright.case.glif + h + h.glif + ha-cy + ha-cy.glif + haabkhcyr + haabkhcyr.glif + hahookcyr + hahookcyr.glif + hardsign-cy + hardsign-cy.glif + hardsign-cy.BGR + hardsign-cy.B_G_R_.glif + hardsign-cy.ss01 + hardsign-cy.ss01.glif + hastrokecyr + hastrokecyr.glif + hbar + hbar.glif + hcircumflex + hcircumflex.glif + heart + heart.glif + heartwhite + heartwhite.glif + hryvnia + hryvnia.glif + hundredmillionscomb-cy + hundredmillionscomb-cy.glif + hundredthousandscombcyr + hundredthousandscombcyr.glif + hungarumlaut + hungarumlaut.glif + hungarumlaut.case + hungarumlaut.case.glif + hwe-cy + hwe-cy.glif + hyphen + hyphen.glif + hyphen.case + hyphen.case.glif + i + i.glif + i-cy + i-cy.glif + ia-cy + ia-cy.glif + ia-cy.accented + ia-cy.accented.glif + ia-cy.ss01 + ia-cy.ss01.glif + iacute + iacute.glif + ibreve + ibreve.glif + icircumflex + icircumflex.glif + idieresis + idieresis.glif + idieresiscyr + idieresiscyr.glif + idotless + idotless.glif + ie-cy + ie-cy.glif + ie-cy.ss01 + ie-cy.ss01.glif + iebrevecyr + iebrevecyr.glif + iegravecyr + iegravecyr.glif + iegravecyr.SRB + iegravecyr.S_R_B_.glif + igrave + igrave.glif + igravecyr + igravecyr.glif + igravecyr.SRB + igravecyr.S_R_B_.glif + ii-cy + ii-cy.glif + ii-cy.BGR + ii-cy.B_G_R_.glif + ii-cy.accented + ii-cy.accented.glif + iishort-cy + iishort-cy.glif + iishort-cy.BGR + iishort-cy.B_G_R_.glif + ij + ij.glif + imacron + imacron.glif + imacroncyr + imacroncyr.glif + increment + increment.glif + infinity + infinity.glif + integral + integral.glif + io-cy + io-cy.glif + io-cy.accented + io-cy.accented.glif + io-cy.ss01 + io-cy.ss01.glif + iogonek + iogonek.glif + iota-cy + iota-cy.glif + iotifieda-cy + iotifieda-cy.glif + iotifieda-cy.BGR + iotifieda-cy.B_G_R_.glif + iotifieda-cy.hist + iotifieda-cy.hist.glif + ishortsharptailcyr + ishortsharptailcyr.glif + itilde + itilde.glif + iu-cy + iu-cy.glif + iu-cy.BGR + iu-cy.B_G_R_.glif + iu-cy.accented + iu-cy.accented.glif + izhitsacyr + izhitsacyr.glif + izhitsagravedblcyr + izhitsagravedblcyr.glif + j + j.glif + jcircumflex + jcircumflex.glif + jdotless + jdotless.glif + je-cy + je-cy.glif + k + k.glif + ka-cy + ka-cy.glif + ka-cy.BGR + ka-cy.B_G_R_.glif + kaaleutcyr + kaaleutcyr.glif + kabashkcyr + kabashkcyr.glif + kahookcyr + kahookcyr.glif + kastrokecyr + kastrokecyr.glif + katailcyr + katailcyr.glif + kaverticalstrokecyr + kaverticalstrokecyr.glif + kcommaaccent + kcommaaccent.glif + kgreenlandic + kgreenlandic.glif + kjecyr + kjecyr.glif + knightblack + knightblack.glif + knightwhite + knightwhite.glif + koppacyr + koppacyr.glif + ksicyr + ksicyr.glif + l + l.glif + l.ss01 + l.ss01.glif + lacute + lacute.glif + lacute.ss01 + lacute.ss01.glif + lcaron + lcaron.glif + lcaron.ss01 + lcaron.ss01.glif + lcommaaccent + lcommaaccent.glif + lcommaaccent.ss01 + lcommaaccent.ss01.glif + ldot + ldot.glif + ldot.ss01 + ldot.ss01.glif + leo + leo.glif + less + less.glif + lessequal + lessequal.glif + lhacyr + lhacyr.glif + ljecyr + ljecyr.glif + ljecyr.ss01 + ljecyr.ss01.glif + ljekomicyr + ljekomicyr.glif + longs + longs.glif + lslash + lslash.glif + lslash.ss01 + lslash.ss01.glif + m + m.glif + macron + macron.glif + macron-fwd + macron-fwd.glif + macron-fwd.alt + macron-fwd.alt.glif + macron.case + macron.case.glif + macronacute.SRB + macronacute.S_R_B_.glif + millionscombcyr + millionscombcyr.glif + minus + minus.glif + minute + minute.glif + mu + mu.glif + multiply + multiply.glif + n + n.glif + nacute + nacute.glif + napostrophe + napostrophe.glif + ncaron + ncaron.glif + ncommaaccent + ncommaaccent.glif + neptune + neptune.glif + nine + nine.glif + nine.osf + nine.osf.glif + nine.tf + nine.tf.glif + njecyr + njecyr.glif + njecyr.ss01 + njecyr.ss01.glif + njekomicyr + njekomicyr.glif + notequal + notequal.glif + ntilde + ntilde.glif + numbersign + numbersign.glif + numero + numero.glif + numero.ss01 + numero.ss01.glif + o + o.glif + o-cy + o-cy.glif + o-cy.accented + o-cy.accented.glif + oBinocular-cy + oB_inocular-cy.glif + oDoubleMonocular-cy + oD_oubleM_onocular-cy.glif + oMonocular-cy + oM_onocular-cy.glif + oacute + oacute.glif + obarcyr + obarcyr.glif + obardieresiscyr + obardieresiscyr.glif + obreve + obreve.glif + ocircumflex + ocircumflex.glif + odieresis + odieresis.glif + odieresiscyr + odieresiscyr.glif + oe + oe.glif + oe.ss01 + oe.ss01.glif + ogonek + ogonek.glif + ograve + ograve.glif + ohungarumlaut + ohungarumlaut.glif + omacron + omacron.glif + omegaBroad-cy + omegaB_road-cy.glif + omegacyr + omegacyr.glif + omegaroundcyr + omegaroundcyr.glif + omegatitlocyr + omegatitlocyr.glif + omultiocular-cy + omultiocular-cy.glif + omultiocular-cy.alt + omultiocular-cy.alt.glif + one + one.glif + one.osf + one.osf.glif + one.tf + one.tf.glif + onehalf + onehalf.glif + onequarter + onequarter.glif + onesuperior + onesuperior.glif + ordfeminine + ordfeminine.glif + ordmasculine + ordmasculine.glif + oslash + oslash.glif + oslashacute + oslashacute.glif + otcyr + otcyr.glif + otilde + otilde.glif + p + p.glif + p.ss01 + p.ss01.glif + palatcombcyr + palatcombcyr.glif + palochkacyr + palochkacyr.glif + paragraph + paragraph.glif + parenleft + parenleft.glif + parenleft.case + parenleft.case.glif + parenright + parenright.glif + parenright.case + parenright.case.glif + partialdiff + partialdiff.glif + pe-cy + pe-cy.glif + pe-cy.BGR + pe-cy.B_G_R_.glif + pe-cy.SRB + pe-cy.S_R_B_.glif + pehookcyr + pehookcyr.glif + percent + percent.glif + period + period.glif + periodcentered + periodcentered.glif + perthousand + perthousand.glif + petailcyr + petailcyr.glif + pi + pi.glif + plus + plus.glif + plusminus + plusminus.glif + pokrytiecombcyr + pokrytiecombcyr.glif + product + product.glif + proportional + proportional.glif + psicyr + psicyr.glif + q + q.glif + q.ss01 + q.ss01.glif + qacyr + qacyr.glif + question + question.glif + questiondown + questiondown.glif + questiondown.case + questiondown.case.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 + radical + radical.glif + rcaron + rcaron.glif + rcommaaccent + rcommaaccent.glif + registered + registered.glif + reversedzecyr + reversedzecyr.glif + rhacyr + rhacyr.glif + ring + ring.glif + ring.case + ring.case.glif + rookblack + rookblack.glif + ruble + ruble.glif + s + s.glif + sacute + sacute.glif + scaron + scaron.glif + scedilla + scedilla.glif + schwacyr + schwacyr.glif + schwadieresiscyr + schwadieresiscyr.glif + scircumflex + scircumflex.glif + scommaaccent + scommaaccent.glif + second + second.glif + section + section.glif + semicolon + semicolon.glif + semicolon.case + semicolon.case.glif + semisoftcyr + semisoftcyr.glif + seven + seven.glif + seven.osf + seven.osf.glif + seven.tf + seven.tf.glif + sha-cy + sha-cy.glif + sha-cy.BGR + sha-cy.B_G_R_.glif + shcha-cy + shcha-cy.glif + shcha-cy.BGR + shcha-cy.B_G_R_.glif + shhacyr + shhacyr.glif + shhatailcyr + shhatailcyr.glif + shwe-cy + shwe-cy.glif + six + six.glif + six.osf + six.osf.glif + six.tf + six.tf.glif + sjekomicyr + sjekomicyr.glif + slash + slash.glif + slash.case + slash.case.glif + softsign-cy + softsign-cy.glif + softsign-cy.BGR + softsign-cy.B_G_R_.glif + softsign-cy.ss01 + softsign-cy.ss01.glif + space + space.glif + spadewhite + spadewhite.glif + sterling + sterling.glif + summation + summation.glif + t + t.glif + t.ss01 + t.ss01.glif + tbar + tbar.glif + tbar.ss01 + tbar.ss01.glif + tcaron + tcaron.glif + tcaron.ss01 + tcaron.ss01.glif + tcedilla + tcedilla.glif + tcedilla.ss01 + tcedilla.ss01.glif + tche-cy + tche-cy.glif + tcommaaccent + tcommaaccent.glif + tcommaaccent.ss01 + tcommaaccent.ss01.glif + te-cy + te-cy.glif + te-cy.BGR + te-cy.B_G_R_.glif + te-cy.SRB + te-cy.S_R_B_.glif + te-cy.ss01 + te-cy.ss01.glif + tenge + tenge.glif + tenmillionscomb-cy + tenmillionscomb-cy.glif + tetailcyr + tetailcyr.glif + tetsecyr + tetsecyr.glif + tewithmiddlehook-cy + tewithmiddlehook-cy.glif + thorn + thorn.glif + thousandmillionscomb-cy + thousandmillionscomb-cy.glif + thousandscyr + thousandscyr.glif + thousandscyr.dnom + thousandscyr.dnom.glif + three + three.glif + three.osf + three.osf.glif + three.tf + three.tf.glif + threequarters + threequarters.glif + threesuperior + threesuperior.glif + tilde + tilde.glif + tilde.case + tilde.case.glif + titlocombcyr + titlocombcyr.glif + tjekomicyr + tjekomicyr.glif + trademark + trademark.glif + tse-cy + tse-cy.glif + tse-cy.BGR + tse-cy.B_G_R_.glif + tseReversed-cy + tseR_eversed-cy.glif + tshecyr + tshecyr.glif + tsse-cy + tsse-cy.glif + tswe-cy + tswe-cy.glif + twe-cy + twe-cy.glif + two + two.glif + two.osf + two.osf.glif + two.tf + two.tf.glif + twosuperior + twosuperior.glif + u + u.glif + u-cy + u-cy.glif + u-cy.accented + u-cy.accented.glif + uacute + uacute.glif + uacutedblcyr + uacutedblcyr.glif + ubreve + ubreve.glif + ucircumflex + ucircumflex.glif + udieresis + udieresis.glif + udieresiscyr + udieresiscyr.glif + ugrave + ugrave.glif + uhungarumlaut + uhungarumlaut.glif + ukMonograph-cy + ukM_onograph-cy.glif + ukcyr + ukcyr.glif + umacron + umacron.glif + umacroncyr + umacroncyr.glif + underscore + underscore.glif + uni1C80 + uni1C_80.glif + uni1C81 + uni1C_81.glif + uni1C82 + uni1C_82.glif + uni1C83 + uni1C_83.glif + uni1C84 + uni1C_84.glif + uni1C85 + uni1C_85.glif + uni1C86 + uni1C_86.glif + uni1C87 + uni1C_87.glif + uni1C88 + uni1C_88.glif + uni1EBC + uni1E_B_C_.glif + uni1EBD + uni1E_B_D_.glif + uni2010 + uni2010.glif + uni2DEE + uni2D_E_E_.glif + uni2DEE.case + uni2D_E_E_.case.glif + uniE000 + uniE_000.glif + uniE000.alt + uniE_000.alt.glif + uniE01A + uniE_01A_.glif + uniF43A + uniF_43A_.glif + uniF43B + uniF_43B_.glif + uniF45D + uniF_45D_.glif + uniF45E + uniF_45E_.glif + uniF45F + uniF_45F_.glif + uniF475 + uniF_475.glif + uniF476 + uniF_476.glif + uniF477 + uniF_477.glif + uniF478 + uniF_478.glif + uniF479 + uniF_479.glif + uniF498 + uniF_498.glif + uniF499 + uniF_499.glif + uniF49A + uniF_49A_.glif + uniF49B + uniF_49B_.glif + uniF49C + uniF_49C_.glif + uniF49D + uniF_49D_.glif + uniF49E + uniF_49E_.glif + uniF49F + uniF_49F_.glif + uniF4C6 + uniF_4C_6.glif + uniF4C7 + uniF_4C_7.glif + uniF4CC + uniF_4C_C_.glif + uniF4CD + uniF_4C_D_.glif + uniF4D2 + uniF_4D_2.glif + uniF4D3 + uniF_4D_3.glif + uniF4D4 + uniF_4D_4.glif + uniF4D5 + uniF_4D_5.glif + uniF4D6 + uniF_4D_6.glif + uniF4D7 + uniF_4D_7.glif + uniF4D8 + uniF_4D_8.glif + uniF4D9 + uniF_4D_9.glif + uniF50E + uniF_50E_.glif + uniF50F + uniF_50F_.glif + uniF510 + uniF_510.glif + uniF511 + uniF_511.glif + uniF512 + uniF_512.glif + uniF513 + uniF_513.glif + uniF514 + uniF_514.glif + uniF515 + uniF_515.glif + uniF516 + uniF_516.glif + uniF517 + uniF_517.glif + uniF518 + uniF_518.glif + uniF519 + uniF_519.glif + uniF51A + uniF_51A_.glif + uniF51B + uniF_51B_.glif + uniF51C + uniF_51C_.glif + uniF51D + uniF_51D_.glif + uniF51E + uniF_51E_.glif + uniF51F + uniF_51F_.glif + uniF521 + uniF_521.glif + uniF522 + uniF_522.glif + uniF523 + uniF_523.glif + uniF524 + uniF_524.glif + uniF525 + uniF_525.glif + uniF526 + uniF_526.glif + uniF527 + uniF_527.glif + uniF528 + uniF_528.glif + uniF529 + uniF_529.glif + uniF52A + uniF_52A_.glif + uniF52B + uniF_52B_.glif + uniF52C + uniF_52C_.glif + uniF52D + uniF_52D_.glif + uniF52E + uniF_52E_.glif + uniF52F + uniF_52F_.glif + uniF532 + uniF_532.glif + uniF533 + uniF_533.glif + uniF536 + uniF_536.glif + uniF537 + uniF_537.glif + uniF538 + uniF_538.glif + uniF539 + uniF_539.glif + uniF830 + uniF_830.glif + uniF831 + uniF_831.glif + uniF833 + uniF_833.glif + uniF834 + uniF_834.glif + uniF839 + uniF_839.glif + uniF83A + uniF_83A_.glif + uniF86F + uniF_86F_.glif + uniF870 + uniF_870.glif + uniF872 + uniF_872.glif + uniF873 + uniF_873.glif + uniF875 + uniF_875.glif + uniF876 + uniF_876.glif + uniF878 + uniF_878.glif + uniF879 + uniF_879.glif + uniF87B + uniF_87B_.glif + uniF87C + uniF_87C_.glif + uniF87E + uniF_87E_.glif + uniF87F + uniF_87F_.glif + uogonek + uogonek.glif + uring + uring.glif + ushort-cy + ushort-cy.glif + ustraightcyr + ustraightcyr.glif + ustraightstrokecyr + ustraightstrokecyr.glif + utilde + utilde.glif + v + v.glif + ve-cy + ve-cy.glif + ve-cy.BGR + ve-cy.B_G_R_.glif + ve-cy.ss01 + ve-cy.ss01.glif + virgo + virgo.glif + vzmetcomb-cy + vzmetcomb-cy.glif + w + w.glif + wacute + wacute.glif + wcircumflex + wcircumflex.glif + wdieresis + wdieresis.glif + wecyr + wecyr.glif + wgrave + wgrave.glif + x + x.glif + xatailcyr + xatailcyr.glif + y + y.glif + yacute + yacute.glif + yaecyr + yaecyr.glif + yatIotified-cy + yatI_otified-cy.glif + yatcyr + yatcyr.glif + yatcyr.BGR + yatcyr.B_G_R_.glif + ycircumflex + ycircumflex.glif + ydieresis + ydieresis.glif + yen + yen.glif + yen.ss01 + yen.ss01.glif + yerNeutral-cy + yerN_eutral-cy.glif + yeru-cy + yeru-cy.glif + yeru-cy.accented + yeru-cy.accented.glif + yeru-cy.ss01 + yeru-cy.ss01.glif + yeruBackyer-cy + yeruB_ackyer-cy.glif + yi-cy + yi-cy.glif + yi-cy.alt + yi-cy.alt.glif + ylongdieresiscyr + ylongdieresiscyr.glif + yn-cy + yn-cy.glif + yuReversed-cy + yuR_eversed-cy.glif + yusBlended-cy + yusB_lended-cy.glif + yusClosedlittle-cy + yusC_losedlittle-cy.glif + yusbigcyr + yusbigcyr.glif + yusbigiotifiedcyr + yusbigiotifiedcyr.glif + yusbigiotifiedcyr.BGR + yusbigiotifiedcyr.B_G_R_.glif + yusiotifiedClosedLittle-cy + yusiotifiedC_losedL_ittle-cy.glif + yuslittlecyr + yuslittlecyr.glif + yuslittleiotifiedcyr + yuslittleiotifiedcyr.glif + z + z.glif + zacute + zacute.glif + zcaron + zcaron.glif + zdotaccent + zdotaccent.glif + ze-cy + ze-cy.glif + ze-cy.BGR + ze-cy.B_G_R_.glif + zedieresiscyr + zedieresiscyr.glif + zemlya-cy + zemlya-cy.glif + zero + zero.glif + zero.osf + zero.osf.glif + zero.tf + zero.tf.glif + zetailcyr + zetailcyr.glif + zetailcyr.BSH + zetailcyr.B_S_H_.glif + zhe-cy + zhe-cy.glif + zhe-cy.BGR + zhe-cy.B_G_R_.glif + zhebrevecyr + zhebrevecyr.glif + zhedieresiscyr + zhedieresiscyr.glif + zhetailcyr + zhetailcyr.glif + zhwe-cy + zhwe-cy.glif + zjekomicyr + zjekomicyr.glif + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/copyright.glif b/sources/FixelDisplay-Regular.ufo/glyphs/copyright.glif new file mode 100644 index 00000000..5a399d02 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/copyright.glif @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/crossedo-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/crossedo-cy.glif new file mode 100644 index 00000000..e7c4e336 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/crossedo-cy.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + com.fontlab.recipe + o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/crossedswords.glif b/sources/FixelDisplay-Regular.ufo/glyphs/crossedswords.glif new file mode 100644 index 00000000..078cad90 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/crossedswords.glif @@ -0,0 +1,103 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/currency.glif b/sources/FixelDisplay-Regular.ufo/glyphs/currency.glif new file mode 100644 index 00000000..d809c6a0 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/currency.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/d.glif b/sources/FixelDisplay-Regular.ufo/glyphs/d.glif new file mode 100644 index 00000000..cae5c602 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/d.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/d.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/d.ss01.glif new file mode 100644 index 00000000..8e77c7a3 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/d.ss01.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/dagger.glif b/sources/FixelDisplay-Regular.ufo/glyphs/dagger.glif new file mode 100644 index 00000000..6c1abfe4 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/dagger.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/daggerdbl.glif b/sources/FixelDisplay-Regular.ufo/glyphs/daggerdbl.glif new file mode 100644 index 00000000..a9ab596c --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/daggerdbl.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/dcaron.glif b/sources/FixelDisplay-Regular.ufo/glyphs/dcaron.glif new file mode 100644 index 00000000..249950bb --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/dcaron.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + d+caron.salt + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/dcaron.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/dcaron.ss01.glif new file mode 100644 index 00000000..17996549 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/dcaron.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + d.ss01+caron.salt + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/dchecyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/dchecyr.glif new file mode 100644 index 00000000..f52ac100 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/dchecyr.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + д+10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/dcroat.glif b/sources/FixelDisplay-Regular.ufo/glyphs/dcroat.glif new file mode 100644 index 00000000..0a409b01 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/dcroat.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + d + com.fontlab.metricsRight + |hbar + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/dcroat.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/dcroat.ss01.glif new file mode 100644 index 00000000..129d80a5 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/dcroat.ss01.glif @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + d.ss01 + com.fontlab.metricsRight + |hbar + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/de-cy.B_G_R_.glif b/sources/FixelDisplay-Regular.ufo/glyphs/de-cy.B_G_R_.glif new file mode 100644 index 00000000..278c8278 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/de-cy.B_G_R_.glif @@ -0,0 +1,77 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + q + com.fontlab.metricsRight + q + com.fontlab.recipe + uni1C81 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/de-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/de-cy.glif new file mode 100644 index 00000000..2379c777 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/de-cy.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/de-cy.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/de-cy.ss01.glif new file mode 100644 index 00000000..cf6bfe04 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/de-cy.ss01.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/deS_oft-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/deS_oft-cy.glif new file mode 100644 index 00000000..bd222712 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/deS_oft-cy.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + д + com.fontlab.metricsRight + ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/degree.glif b/sources/FixelDisplay-Regular.ufo/glyphs/degree.glif new file mode 100644 index 00000000..374fd736 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/degree.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/dekomicyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/dekomicyr.glif new file mode 100644 index 00000000..a64fbf56 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/dekomicyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + d + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/diamondwhite-misc.glif b/sources/FixelDisplay-Regular.ufo/glyphs/diamondwhite-misc.glif new file mode 100644 index 00000000..5e06be35 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/diamondwhite-misc.glif @@ -0,0 +1,145 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =40 + com.fontlab.metricsRight + =40 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/dieresis.alt.glif b/sources/FixelDisplay-Regular.ufo/glyphs/dieresis.alt.glif new file mode 100644 index 00000000..767a6831 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/dieresis.alt.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 1,0.6,0.994,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/dieresis.case.glif b/sources/FixelDisplay-Regular.ufo/glyphs/dieresis.case.glif new file mode 100644 index 00000000..a2adbd84 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/dieresis.case.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/dieresis.glif b/sources/FixelDisplay-Regular.ufo/glyphs/dieresis.glif new file mode 100644 index 00000000..6c4a2590 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/dieresis.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/dieresisacute.glif b/sources/FixelDisplay-Regular.ufo/glyphs/dieresisacute.glif new file mode 100644 index 00000000..7f497cb4 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/dieresisacute.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/dieresiscase.alt.glif b/sources/FixelDisplay-Regular.ufo/glyphs/dieresiscase.alt.glif new file mode 100644 index 00000000..efbeff5b --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/dieresiscase.alt.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 1,0.6,0.994,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/divide.glif b/sources/FixelDisplay-Regular.ufo/glyphs/divide.glif new file mode 100644 index 00000000..3a333acf --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/divide.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/djecyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/djecyr.glif new file mode 100644 index 00000000..c6b32a9f --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/djecyr.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hbar + com.fontlab.metricsRight + h + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/djekomicyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/djekomicyr.glif new file mode 100644 index 00000000..266d019e --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/djekomicyr.glif @@ -0,0 +1,73 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + d + com.fontlab.metricsRight + njekomicyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/djerv-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/djerv-cy.glif new file mode 100644 index 00000000..4366873a --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/djerv-cy.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + r() + com.fontlab.metricsRight + п-30 + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/dollar.glif b/sources/FixelDisplay-Regular.ufo/glyphs/dollar.glif new file mode 100644 index 00000000..80420672 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/dollar.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + S + com.fontlab.metricsRight + S + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/dotaccent.case.glif b/sources/FixelDisplay-Regular.ufo/glyphs/dotaccent.case.glif new file mode 100644 index 00000000..7f9de365 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/dotaccent.case.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/dotaccent.glif b/sources/FixelDisplay-Regular.ufo/glyphs/dotaccent.glif new file mode 100644 index 00000000..214f420d --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/dotaccent.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/doubleo-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/doubleo-cy.glif new file mode 100644 index 00000000..1d0c2754 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/doubleo-cy.glif @@ -0,0 +1,91 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + com.fontlab.recipe + o_o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/dramsignarmn.glif b/sources/FixelDisplay-Regular.ufo/glyphs/dramsignarmn.glif new file mode 100644 index 00000000..058778a1 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/dramsignarmn.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/dwe-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/dwe-cy.glif new file mode 100644 index 00000000..61bdb03d --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/dwe-cy.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + д + com.fontlab.metricsRight + д + com.fontlab.recipe + д + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/dze-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/dze-cy.glif new file mode 100644 index 00000000..bb8d2896 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/dze-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + s + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/dzeR_eversed-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/dzeR_eversed-cy.glif new file mode 100644 index 00000000..48217627 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/dzeR_eversed-cy.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |s + com.fontlab.metricsRight + |s + com.fontlab.recipe + s + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/dzeabkhcyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/dzeabkhcyr.glif new file mode 100644 index 00000000..162b100a --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/dzeabkhcyr.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + z-30 + com.fontlab.metricsRight + з-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/dzelo-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/dzelo-cy.glif new file mode 100644 index 00000000..5c05693a --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/dzelo-cy.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/dzhecyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/dzhecyr.glif new file mode 100644 index 00000000..7f4065c0 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/dzhecyr.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/dzjekomicyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/dzjekomicyr.glif new file mode 100644 index 00000000..c950b05a --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/dzjekomicyr.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + zjekomicyr + com.fontlab.metricsRight + ц-5 + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/dzwe-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/dzwe-cy.glif new file mode 100644 index 00000000..e6a33c3d --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/dzwe-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + s + com.fontlab.metricsRight + s + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/dzze-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/dzze-cy.glif new file mode 100644 index 00000000..625b5737 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/dzze-cy.glif @@ -0,0 +1,84 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + д + com.fontlab.metricsRight + д-30 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/dzzhecyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/dzzhecyr.glif new file mode 100644 index 00000000..3616e10a --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/dzzhecyr.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + д+5 + com.fontlab.metricsRight + ж+5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/e-cy.accented.glif b/sources/FixelDisplay-Regular.ufo/glyphs/e-cy.accented.glif new file mode 100644 index 00000000..1d6d938a --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/e-cy.accented.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+acute + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/e-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/e-cy.glif new file mode 100644 index 00000000..9e9d2ddf --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/e-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + c + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/e-cy.hist.glif b/sources/FixelDisplay-Regular.ufo/glyphs/e-cy.hist.glif new file mode 100644 index 00000000..e5233fff --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/e-cy.hist.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + c + com.fontlab.recipe + uni1C83 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/e.glif b/sources/FixelDisplay-Regular.ufo/glyphs/e.glif new file mode 100644 index 00000000..6cc8595e --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/e.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/e.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/e.ss01.glif new file mode 100644 index 00000000..8c7e5dc8 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/e.ss01.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + O-5 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/eacute.glif b/sources/FixelDisplay-Regular.ufo/glyphs/eacute.glif new file mode 100644 index 00000000..dcd75d2c --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/eacute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+acute + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/eacute.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/eacute.ss01.glif new file mode 100644 index 00000000..9acda77b --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/eacute.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+acute + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/ebreve.glif b/sources/FixelDisplay-Regular.ufo/glyphs/ebreve.glif new file mode 100644 index 00000000..4a7c281d --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/ebreve.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+breve + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/ebreve.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/ebreve.ss01.glif new file mode 100644 index 00000000..79f37f4d --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/ebreve.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+breve + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/ecaron.glif b/sources/FixelDisplay-Regular.ufo/glyphs/ecaron.glif new file mode 100644 index 00000000..da2c4218 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/ecaron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+caron + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/ecaron.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/ecaron.ss01.glif new file mode 100644 index 00000000..33f90459 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/ecaron.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+caron + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/ecircumflex.glif b/sources/FixelDisplay-Regular.ufo/glyphs/ecircumflex.glif new file mode 100644 index 00000000..41e7f2c1 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/ecircumflex.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+circumflex + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/ecircumflex.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/ecircumflex.ss01.glif new file mode 100644 index 00000000..5aaa57ce --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/ecircumflex.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+circumflex + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/edieresis.glif b/sources/FixelDisplay-Regular.ufo/glyphs/edieresis.glif new file mode 100644 index 00000000..339493ff --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/edieresis.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsLeft + e + com.fontlab.metricsRight + e + com.fontlab.recipe + e+dieresis + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/edieresis.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/edieresis.ss01.glif new file mode 100644 index 00000000..99ce313d --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/edieresis.ss01.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsLeft + e + com.fontlab.metricsRight + e + com.fontlab.recipe + e.ss01+dieresis + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/edotaccent.glif b/sources/FixelDisplay-Regular.ufo/glyphs/edotaccent.glif new file mode 100644 index 00000000..6de39a4c --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/edotaccent.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+dotaccent + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/edotaccent.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/edotaccent.ss01.glif new file mode 100644 index 00000000..caa7d650 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/edotaccent.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+dotaccent + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/ef-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/ef-cy.glif new file mode 100644 index 00000000..02db3969 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/ef-cy.glif @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/egrave.glif b/sources/FixelDisplay-Regular.ufo/glyphs/egrave.glif new file mode 100644 index 00000000..bac3c46f --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/egrave.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+grave + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/egrave.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/egrave.ss01.glif new file mode 100644 index 00000000..3ce37c58 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/egrave.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+grave + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/eight.glif b/sources/FixelDisplay-Regular.ufo/glyphs/eight.glif new file mode 100644 index 00000000..c6d44495 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/eight.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/eight.osf.glif b/sources/FixelDisplay-Regular.ufo/glyphs/eight.osf.glif new file mode 100644 index 00000000..ab52c764 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/eight.osf.glif @@ -0,0 +1,15 @@ + + + + + + + + + com.fontlab.metricsLeft + eight + com.fontlab.metricsRight + eight + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/eight.tf.glif b/sources/FixelDisplay-Regular.ufo/glyphs/eight.tf.glif new file mode 100644 index 00000000..95811d4b --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/eight.tf.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/eiotifiedcyr.B_G_R_.glif b/sources/FixelDisplay-Regular.ufo/glyphs/eiotifiedcyr.B_G_R_.glif new file mode 100644 index 00000000..31262eaf --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/eiotifiedcyr.B_G_R_.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + c + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/eiotifiedcyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/eiotifiedcyr.glif new file mode 100644 index 00000000..7cc68ee0 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/eiotifiedcyr.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + c + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/el-cy.B_G_R_.glif b/sources/FixelDisplay-Regular.ufo/glyphs/el-cy.B_G_R_.glif new file mode 100644 index 00000000..6beb734e --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/el-cy.B_G_R_.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + v + com.fontlab.metricsRight + v + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/el-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/el-cy.glif new file mode 100644 index 00000000..2569b294 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/el-cy.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/el-cy.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/el-cy.ss01.glif new file mode 100644 index 00000000..6553b145 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/el-cy.ss01.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/elS_oft-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/elS_oft-cy.glif new file mode 100644 index 00000000..4419d7a4 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/elS_oft-cy.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/elhookcyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/elhookcyr.glif new file mode 100644 index 00000000..b14dd822 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/elhookcyr.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + н + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/ellipsis.glif b/sources/FixelDisplay-Regular.ufo/glyphs/ellipsis.glif new file mode 100644 index 00000000..77bf972d --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/ellipsis.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/elmiddlehookcyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/elmiddlehookcyr.glif new file mode 100644 index 00000000..7d771621 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/elmiddlehookcyr.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + enmiddlehookcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/elsharptailcyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/elsharptailcyr.glif new file mode 100644 index 00000000..f767e6f5 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/elsharptailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + ensharptailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/eltailcyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/eltailcyr.glif new file mode 100644 index 00000000..e055af88 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/eltailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/em-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/em-cy.glif new file mode 100644 index 00000000..138f580d --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/em-cy.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/emS_oft-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/emS_oft-cy.glif new file mode 100644 index 00000000..b2c47fad --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/emS_oft-cy.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + м + com.fontlab.metricsRight + ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/emacron.glif b/sources/FixelDisplay-Regular.ufo/glyphs/emacron.glif new file mode 100644 index 00000000..6292656f --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/emacron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+macron + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/emacron.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/emacron.ss01.glif new file mode 100644 index 00000000..881179d1 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/emacron.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+macron + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/emdash.case.glif b/sources/FixelDisplay-Regular.ufo/glyphs/emdash.case.glif new file mode 100644 index 00000000..8e3164a7 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/emdash.case.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/emdash.glif b/sources/FixelDisplay-Regular.ufo/glyphs/emdash.glif new file mode 100644 index 00000000..1421c6b3 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/emdash.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/emsharptailcyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/emsharptailcyr.glif new file mode 100644 index 00000000..58f43ab5 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/emsharptailcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + м + com.fontlab.metricsRight + ensharptailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/en-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/en-cy.glif new file mode 100644 index 00000000..84adf927 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/en-cy.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/enclosingcirclecomb.glif b/sources/FixelDisplay-Regular.ufo/glyphs/enclosingcirclecomb.glif new file mode 100644 index 00000000..3e73d379 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/enclosingcirclecomb.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/endash.case.glif b/sources/FixelDisplay-Regular.ufo/glyphs/endash.case.glif new file mode 100644 index 00000000..d945643c --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/endash.case.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/endash.glif b/sources/FixelDisplay-Regular.ufo/glyphs/endash.glif new file mode 100644 index 00000000..f0037838 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/endash.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/eng.glif b/sources/FixelDisplay-Regular.ufo/glyphs/eng.glif new file mode 100644 index 00000000..f81c7721 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/eng.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + n + com.fontlab.metricsRight + dotlessj + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/engecyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/engecyr.glif new file mode 100644 index 00000000..32635b6a --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/engecyr.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/enhookcyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/enhookcyr.glif new file mode 100644 index 00000000..fa161a0d --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/enhookcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/enhookleftcyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/enhookleftcyr.glif new file mode 100644 index 00000000..c88281fd --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/enhookleftcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + j + com.fontlab.metricsRight + н + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/enmiddlehookcyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/enmiddlehookcyr.glif new file mode 100644 index 00000000..15549cdb --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/enmiddlehookcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + softsign-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/ensharptailcyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/ensharptailcyr.glif new file mode 100644 index 00000000..7d6565de --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/ensharptailcyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + д + com.fontlab.recipe + entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/entailcyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/entailcyr.glif new file mode 100644 index 00000000..7bab0078 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/entailcyr.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + ц + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/eogonek.glif b/sources/FixelDisplay-Regular.ufo/glyphs/eogonek.glif new file mode 100644 index 00000000..824b5a24 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/eogonek.glif @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + e+ogonek + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/eogonek.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/eogonek.ss01.glif new file mode 100644 index 00000000..6134a905 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/eogonek.ss01.glif @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + e.ss01+ogonek + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/equal.glif b/sources/FixelDisplay-Regular.ufo/glyphs/equal.glif new file mode 100644 index 00000000..a2b79231 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/equal.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/er-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/er-cy.glif new file mode 100644 index 00000000..b9faf55b --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/er-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + p + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/er-cy.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/er-cy.ss01.glif new file mode 100644 index 00000000..6fa7f4ab --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/er-cy.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + p.ss01 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/ereversed-cy.accented.glif b/sources/FixelDisplay-Regular.ufo/glyphs/ereversed-cy.accented.glif new file mode 100644 index 00000000..7938f894 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/ereversed-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + э+acute + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/ereversed-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/ereversed-cy.glif new file mode 100644 index 00000000..6faa3035 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/ereversed-cy.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |c + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/ereverseddieresiscyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/ereverseddieresiscyr.glif new file mode 100644 index 00000000..7ff88459 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/ereverseddieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ereversed-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/ertickcyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/ertickcyr.glif new file mode 100644 index 00000000..720de24a --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/ertickcyr.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + p + com.fontlab.metricsRight + p + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/es-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/es-cy.glif new file mode 100644 index 00000000..5ffc224b --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/es-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/estailcyr.B_S_H_.glif b/sources/FixelDisplay-Regular.ufo/glyphs/estailcyr.B_S_H_.glif new file mode 100644 index 00000000..894c1db2 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/estailcyr.B_S_H_.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + c + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/estailcyr.C_H_U_.glif b/sources/FixelDisplay-Regular.ufo/glyphs/estailcyr.C_H_U_.glif new file mode 100644 index 00000000..cb1f6955 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/estailcyr.C_H_U_.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+cedilla + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/estailcyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/estailcyr.glif new file mode 100644 index 00000000..54b9320e --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/estailcyr.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + с + com.fontlab.metricsRight + с + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/estimated.glif b/sources/FixelDisplay-Regular.ufo/glyphs/estimated.glif new file mode 100644 index 00000000..dc26f3d3 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/estimated.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/eth.glif b/sources/FixelDisplay-Regular.ufo/glyphs/eth.glif new file mode 100644 index 00000000..24e9399e --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/eth.glif @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/eturned.glif b/sources/FixelDisplay-Regular.ufo/glyphs/eturned.glif new file mode 100644 index 00000000..cfefe3ab --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/eturned.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + schwacyr + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/euro.glif b/sources/FixelDisplay-Regular.ufo/glyphs/euro.glif new file mode 100644 index 00000000..01729ac7 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/euro.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + C + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/exclam.glif b/sources/FixelDisplay-Regular.ufo/glyphs/exclam.glif new file mode 100644 index 00000000..6f9ca44a --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/exclam.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/exclamdown.case.glif b/sources/FixelDisplay-Regular.ufo/glyphs/exclamdown.case.glif new file mode 100644 index 00000000..b0404838 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/exclamdown.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + exclamdown + com.fontlab.metricsRight + exclamdown + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/exclamdown.glif b/sources/FixelDisplay-Regular.ufo/glyphs/exclamdown.glif new file mode 100644 index 00000000..d1f32066 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/exclamdown.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/f.glif b/sources/FixelDisplay-Regular.ufo/glyphs/f.glif new file mode 100644 index 00000000..a4fcc7c7 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/f.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/f.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/f.ss01.glif new file mode 100644 index 00000000..f521e859 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/f.ss01.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/f_f.glif b/sources/FixelDisplay-Regular.ufo/glyphs/f_f.glif new file mode 100644 index 00000000..d2c4e180 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/f_f.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f + com.fontlab.metricsRight + f + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/f_f.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/f_f.ss01.glif new file mode 100644 index 00000000..a13be374 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/f_f.ss01.glif @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f.ss01 + com.fontlab.metricsRight + f.ss01 + com.fontlab.recipe + f.ss01_f.ss01 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/f_f_i.glif b/sources/FixelDisplay-Regular.ufo/glyphs/f_f_i.glif new file mode 100644 index 00000000..ae66a008 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/f_f_i.glif @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f + com.fontlab.metricsRight + i + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/f_f_i.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/f_f_i.ss01.glif new file mode 100644 index 00000000..d4dba583 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/f_f_i.ss01.glif @@ -0,0 +1,88 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f.ss01 + com.fontlab.metricsRight + i + com.fontlab.recipe + f.ss01_f.ss01_i + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/f_f_l.glif b/sources/FixelDisplay-Regular.ufo/glyphs/f_f_l.glif new file mode 100644 index 00000000..e1955039 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/f_f_l.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f + com.fontlab.metricsRight + l + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/f_f_l.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/f_f_l.ss01.glif new file mode 100644 index 00000000..92f63d23 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/f_f_l.ss01.glif @@ -0,0 +1,86 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f.ss01 + com.fontlab.metricsRight + l.ss01 + com.fontlab.recipe + f.ss01_f.ss01_l.ss01 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/fi.glif b/sources/FixelDisplay-Regular.ufo/glyphs/fi.glif new file mode 100644 index 00000000..abe1d03e --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/fi.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f + com.fontlab.metricsRight + i + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/fi.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/fi.ss01.glif new file mode 100644 index 00000000..22b6ba26 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/fi.ss01.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f.ss01 + com.fontlab.metricsRight + i + com.fontlab.recipe + f.ss01_i + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/fitacyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/fitacyr.glif new file mode 100644 index 00000000..3a2a8ed8 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/fitacyr.glif @@ -0,0 +1,76 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + obarcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/five.glif b/sources/FixelDisplay-Regular.ufo/glyphs/five.glif new file mode 100644 index 00000000..927af6d6 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/five.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/five.osf.glif b/sources/FixelDisplay-Regular.ufo/glyphs/five.osf.glif new file mode 100644 index 00000000..abf70bd9 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/five.osf.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + five + com.fontlab.metricsRight + five + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/five.tf.glif b/sources/FixelDisplay-Regular.ufo/glyphs/five.tf.glif new file mode 100644 index 00000000..d2fbf797 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/five.tf.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/fl.glif b/sources/FixelDisplay-Regular.ufo/glyphs/fl.glif new file mode 100644 index 00000000..e7c8f985 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/fl.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f + com.fontlab.metricsRight + l + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/fl.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/fl.ss01.glif new file mode 100644 index 00000000..29628dfd --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/fl.ss01.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f.ss01 + com.fontlab.metricsRight + l.ss01 + com.fontlab.recipe + f.ss01_l.ss01 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/floretteblack.glif b/sources/FixelDisplay-Regular.ufo/glyphs/floretteblack.glif new file mode 100644 index 00000000..d1486562 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/floretteblack.glif @@ -0,0 +1,522 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/floretteoutlinedpetalledblackeight.glif b/sources/FixelDisplay-Regular.ufo/glyphs/floretteoutlinedpetalledblackeight.glif new file mode 100644 index 00000000..852c96bb --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/floretteoutlinedpetalledblackeight.glif @@ -0,0 +1,693 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/florettewhite.glif b/sources/FixelDisplay-Regular.ufo/glyphs/florettewhite.glif new file mode 100644 index 00000000..12f0bccb --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/florettewhite.glif @@ -0,0 +1,417 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/florin.glif b/sources/FixelDisplay-Regular.ufo/glyphs/florin.glif new file mode 100644 index 00000000..b25a2775 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/florin.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/flower.glif b/sources/FixelDisplay-Regular.ufo/glyphs/flower.glif new file mode 100644 index 00000000..b43e5057 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/flower.glif @@ -0,0 +1,278 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/four.glif b/sources/FixelDisplay-Regular.ufo/glyphs/four.glif new file mode 100644 index 00000000..844bd0d5 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/four.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/four.osf.glif b/sources/FixelDisplay-Regular.ufo/glyphs/four.osf.glif new file mode 100644 index 00000000..ef561dc4 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/four.osf.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + four + com.fontlab.metricsRight + four + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/four.tf.glif b/sources/FixelDisplay-Regular.ufo/glyphs/four.tf.glif new file mode 100644 index 00000000..6ad8ada4 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/four.tf.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/fraction.glif b/sources/FixelDisplay-Regular.ufo/glyphs/fraction.glif new file mode 100644 index 00000000..6c5e2346 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/fraction.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/g.glif b/sources/FixelDisplay-Regular.ufo/glyphs/g.glif new file mode 100644 index 00000000..c9e4750a --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/g.glif @@ -0,0 +1,94 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/g.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/g.ss01.glif new file mode 100644 index 00000000..0f685eb9 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/g.ss01.glif @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/gacute.glif b/sources/FixelDisplay-Regular.ufo/glyphs/gacute.glif new file mode 100644 index 00000000..b3fe7e42 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/gacute.glif @@ -0,0 +1,109 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + g+acute + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/gacute.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/gacute.ss01.glif new file mode 100644 index 00000000..4a9323bb --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/gacute.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + g.ss01+acute + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/gbreve.glif b/sources/FixelDisplay-Regular.ufo/glyphs/gbreve.glif new file mode 100644 index 00000000..fe4685e1 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/gbreve.glif @@ -0,0 +1,119 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + g+breve + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/gbreve.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/gbreve.ss01.glif new file mode 100644 index 00000000..758cd1d3 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/gbreve.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + g.ss01+breve + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/gcircumflex.glif b/sources/FixelDisplay-Regular.ufo/glyphs/gcircumflex.glif new file mode 100644 index 00000000..8e496067 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/gcircumflex.glif @@ -0,0 +1,113 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + g+circumflex + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/gcircumflex.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/gcircumflex.ss01.glif new file mode 100644 index 00000000..9c4f3585 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/gcircumflex.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + g.ss01+circumflex + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/gcommaaccent.glif b/sources/FixelDisplay-Regular.ufo/glyphs/gcommaaccent.glif new file mode 100644 index 00000000..7d60ae61 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/gcommaaccent.glif @@ -0,0 +1,121 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + g+commaaccentcomb.salt + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/gcommaaccent.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/gcommaaccent.ss01.glif new file mode 100644 index 00000000..9696a57c --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/gcommaaccent.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + g.ss01+commaaccentcomb.salt + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/gdotaccent.glif b/sources/FixelDisplay-Regular.ufo/glyphs/gdotaccent.glif new file mode 100644 index 00000000..04f9beb4 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/gdotaccent.glif @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + g+dotaccent + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/gdotaccent.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/gdotaccent.ss01.glif new file mode 100644 index 00000000..682f3091 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/gdotaccent.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + g.ss01+dotaccent + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/ge-cy.B_G_R_.glif b/sources/FixelDisplay-Regular.ufo/glyphs/ge-cy.B_G_R_.glif new file mode 100644 index 00000000..d91ead7b --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/ge-cy.B_G_R_.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |s+5 + com.fontlab.metricsRight + |s+5 + com.fontlab.recipe + dzeReversed-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/ge-cy.S_R_B_.glif b/sources/FixelDisplay-Regular.ufo/glyphs/ge-cy.S_R_B_.glif new file mode 100644 index 00000000..b6b4655e --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/ge-cy.S_R_B_.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + iota-cy+macron + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/ge-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/ge-cy.glif new file mode 100644 index 00000000..ab51550e --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/ge-cy.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + т + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/gehookcyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/gehookcyr.glif new file mode 100644 index 00000000..778dbbaf --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/gehookcyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + г + com.fontlab.metricsRight + enmiddlehookcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/gehookstrokecyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/gehookstrokecyr.glif new file mode 100644 index 00000000..6fe45253 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/gehookstrokecyr.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + gestrokecyr + com.fontlab.metricsRight + gestrokecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/germandbls.glif b/sources/FixelDisplay-Regular.ufo/glyphs/germandbls.glif new file mode 100644 index 00000000..57464682 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/germandbls.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + h-5 + com.fontlab.metricsRight + з + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/germandbls.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/germandbls.ss01.glif new file mode 100644 index 00000000..7b7af553 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/germandbls.ss01.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f.ss01 + com.fontlab.metricsRight + з + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/gestrokecyr.B_S_H_.glif b/sources/FixelDisplay-Regular.ufo/glyphs/gestrokecyr.B_S_H_.glif new file mode 100644 index 00000000..70c7aa9b --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/gestrokecyr.B_S_H_.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + г + com.fontlab.metricsRight + gestrokecyr + com.fontlab.recipe + gestrokecyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/gestrokecyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/gestrokecyr.glif new file mode 100644 index 00000000..cf4004b2 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/gestrokecyr.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + г + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/getailcyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/getailcyr.glif new file mode 100644 index 00000000..f5a55e67 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/getailcyr.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + г + com.fontlab.metricsRight + г + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/gheupturn-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/gheupturn-cy.glif new file mode 100644 index 00000000..a376e1c0 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/gheupturn-cy.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + г + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/gjecyr.S_R_B_.glif b/sources/FixelDisplay-Regular.ufo/glyphs/gjecyr.S_R_B_.glif new file mode 100644 index 00000000..7d6eb4d2 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/gjecyr.S_R_B_.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + iota-cy+macronacute.SRB + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/gjecyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/gjecyr.glif new file mode 100644 index 00000000..ef9efe23 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/gjecyr.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/grave.case.glif b/sources/FixelDisplay-Regular.ufo/glyphs/grave.case.glif new file mode 100644 index 00000000..294d88e3 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/grave.case.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/grave.glif b/sources/FixelDisplay-Regular.ufo/glyphs/grave.glif new file mode 100644 index 00000000..4bebcbb3 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/grave.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/greater.glif b/sources/FixelDisplay-Regular.ufo/glyphs/greater.glif new file mode 100644 index 00000000..5a2111cc --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/greater.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |less + com.fontlab.metricsRight + |less + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/greaterequal.glif b/sources/FixelDisplay-Regular.ufo/glyphs/greaterequal.glif new file mode 100644 index 00000000..0cf61cad --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/greaterequal.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/guillemetleft.case.glif b/sources/FixelDisplay-Regular.ufo/glyphs/guillemetleft.case.glif new file mode 100644 index 00000000..612877b5 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/guillemetleft.case.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + guilsinglleft + com.fontlab.metricsRight + guilsinglleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/guillemetleft.glif b/sources/FixelDisplay-Regular.ufo/glyphs/guillemetleft.glif new file mode 100644 index 00000000..d521d2f3 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/guillemetleft.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + guilsinglleft + com.fontlab.metricsRight + guilsinglleft + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/guillemetright.case.glif b/sources/FixelDisplay-Regular.ufo/glyphs/guillemetright.case.glif new file mode 100644 index 00000000..50d5f064 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/guillemetright.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |guillemetleft.case + com.fontlab.metricsRight + |guillemetleft.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/guillemetright.glif b/sources/FixelDisplay-Regular.ufo/glyphs/guillemetright.glif new file mode 100644 index 00000000..ca4f8166 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/guillemetright.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |guilsinglleft + com.fontlab.metricsRight + |guilsinglleft + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/guilsinglleft.case.glif b/sources/FixelDisplay-Regular.ufo/glyphs/guilsinglleft.case.glif new file mode 100644 index 00000000..b0757400 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/guilsinglleft.case.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/guilsinglleft.glif b/sources/FixelDisplay-Regular.ufo/glyphs/guilsinglleft.glif new file mode 100644 index 00000000..21a2827e --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/guilsinglleft.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/guilsinglright.case.glif b/sources/FixelDisplay-Regular.ufo/glyphs/guilsinglright.case.glif new file mode 100644 index 00000000..18888e60 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/guilsinglright.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |guilsinglleft + com.fontlab.metricsRight + |guilsinglleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/guilsinglright.glif b/sources/FixelDisplay-Regular.ufo/glyphs/guilsinglright.glif new file mode 100644 index 00000000..e412aacd --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/guilsinglright.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + |guilsinglleft + com.fontlab.metricsRight + |guilsinglleft + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/h.glif b/sources/FixelDisplay-Regular.ufo/glyphs/h.glif new file mode 100644 index 00000000..49037b96 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/h.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + com.fontlab.metricsRight + n + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/ha-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/ha-cy.glif new file mode 100644 index 00000000..846924e6 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/ha-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + x + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/haabkhcyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/haabkhcyr.glif new file mode 100644 index 00000000..a083d98d --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/haabkhcyr.glif @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + |o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/hahookcyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/hahookcyr.glif new file mode 100644 index 00000000..fd453e03 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/hahookcyr.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + x + com.fontlab.metricsRight + x + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/hardsign-cy.B_G_R_.glif b/sources/FixelDisplay-Regular.ufo/glyphs/hardsign-cy.B_G_R_.glif new file mode 100644 index 00000000..087cb4c6 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/hardsign-cy.B_G_R_.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/hardsign-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/hardsign-cy.glif new file mode 100644 index 00000000..a4eb7ecb --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/hardsign-cy.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/hardsign-cy.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/hardsign-cy.ss01.glif new file mode 100644 index 00000000..8e4adf0e --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/hardsign-cy.ss01.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/hastrokecyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/hastrokecyr.glif new file mode 100644 index 00000000..626e337a --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/hastrokecyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + x + com.fontlab.metricsRight + x + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/hbar.glif b/sources/FixelDisplay-Regular.ufo/glyphs/hbar.glif new file mode 100644 index 00000000..a8c80482 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/hbar.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + h + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/hcircumflex.glif b/sources/FixelDisplay-Regular.ufo/glyphs/hcircumflex.glif new file mode 100644 index 00000000..f3a01d9a --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/hcircumflex.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + h+circumflex.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/heart.glif b/sources/FixelDisplay-Regular.ufo/glyphs/heart.glif new file mode 100644 index 00000000..6254b7b0 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/heart.glif @@ -0,0 +1,320 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/heartwhite.glif b/sources/FixelDisplay-Regular.ufo/glyphs/heartwhite.glif new file mode 100644 index 00000000..9ec2b701 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/heartwhite.glif @@ -0,0 +1,189 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =30 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/hryvnia.glif b/sources/FixelDisplay-Regular.ufo/glyphs/hryvnia.glif new file mode 100644 index 00000000..705cc4a0 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/hryvnia.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/hundredmillionscomb-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/hundredmillionscomb-cy.glif new file mode 100644 index 00000000..23873643 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/hundredmillionscomb-cy.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/hundredthousandscombcyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/hundredthousandscombcyr.glif new file mode 100644 index 00000000..7168fa47 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/hundredthousandscombcyr.glif @@ -0,0 +1,141 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/hungarumlaut.case.glif b/sources/FixelDisplay-Regular.ufo/glyphs/hungarumlaut.case.glif new file mode 100644 index 00000000..a7f396a4 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/hungarumlaut.case.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/hungarumlaut.glif b/sources/FixelDisplay-Regular.ufo/glyphs/hungarumlaut.glif new file mode 100644 index 00000000..535d6dbc --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/hungarumlaut.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/hwe-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/hwe-cy.glif new file mode 100644 index 00000000..2a51c0fd --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/hwe-cy.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + h + com.fontlab.metricsRight + h + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/hyphen.case.glif b/sources/FixelDisplay-Regular.ufo/glyphs/hyphen.case.glif new file mode 100644 index 00000000..b4d76756 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/hyphen.case.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.metricsLeft + hyphen + com.fontlab.metricsRight + hyphen + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/hyphen.glif b/sources/FixelDisplay-Regular.ufo/glyphs/hyphen.glif new file mode 100644 index 00000000..cedc140e --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/hyphen.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/i-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/i-cy.glif new file mode 100644 index 00000000..93074ec7 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/i-cy.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + i + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/i.glif b/sources/FixelDisplay-Regular.ufo/glyphs/i.glif new file mode 100644 index 00000000..e5dad7d6 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/i.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + dotlessi+dotaccent + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/ia-cy.accented.glif b/sources/FixelDisplay-Regular.ufo/glyphs/ia-cy.accented.glif new file mode 100644 index 00000000..e72126ea --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/ia-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + я+acute + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/ia-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/ia-cy.glif new file mode 100644 index 00000000..3a21d025 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/ia-cy.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/ia-cy.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/ia-cy.ss01.glif new file mode 100644 index 00000000..4298f5b0 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/ia-cy.ss01.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/iacute.glif b/sources/FixelDisplay-Regular.ufo/glyphs/iacute.glif new file mode 100644 index 00000000..398f60ab --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/iacute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + dotlessi+acute + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/ibreve.glif b/sources/FixelDisplay-Regular.ufo/glyphs/ibreve.glif new file mode 100644 index 00000000..22cea9ca --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/ibreve.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + dotlessi+breve + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/icircumflex.glif b/sources/FixelDisplay-Regular.ufo/glyphs/icircumflex.glif new file mode 100644 index 00000000..64a37439 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/icircumflex.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + dotlessi+circumflex + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/idieresis.glif b/sources/FixelDisplay-Regular.ufo/glyphs/idieresis.glif new file mode 100644 index 00000000..db36a358 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/idieresis.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + idotless+dieresis.alt + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/idieresiscyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/idieresiscyr.glif new file mode 100644 index 00000000..09417ed7 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/idieresiscyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ii-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/idotless.glif b/sources/FixelDisplay-Regular.ufo/glyphs/idotless.glif new file mode 100644 index 00000000..3ac58adb --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/idotless.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/ie-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/ie-cy.glif new file mode 100644 index 00000000..f6e296b2 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/ie-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/ie-cy.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/ie-cy.ss01.glif new file mode 100644 index 00000000..1bc58197 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/ie-cy.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/iebrevecyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/iebrevecyr.glif new file mode 100644 index 00000000..6f78ca03 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/iebrevecyr.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+breve + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/iegravecyr.S_R_B_.glif b/sources/FixelDisplay-Regular.ufo/glyphs/iegravecyr.S_R_B_.glif new file mode 100644 index 00000000..48ef79e9 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/iegravecyr.S_R_B_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+grave + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/iegravecyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/iegravecyr.glif new file mode 100644 index 00000000..825f346e --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/iegravecyr.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+grave + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/igrave.glif b/sources/FixelDisplay-Regular.ufo/glyphs/igrave.glif new file mode 100644 index 00000000..734d2ee6 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/igrave.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + dotlessi+grave + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/igravecyr.S_R_B_.glif b/sources/FixelDisplay-Regular.ufo/glyphs/igravecyr.S_R_B_.glif new file mode 100644 index 00000000..f13df6d9 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/igravecyr.S_R_B_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+grave + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/igravecyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/igravecyr.glif new file mode 100644 index 00000000..52629b7e --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/igravecyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ii-cy+grave + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/ii-cy.B_G_R_.glif b/sources/FixelDisplay-Regular.ufo/glyphs/ii-cy.B_G_R_.glif new file mode 100644 index 00000000..c336a61f --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/ii-cy.B_G_R_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/ii-cy.accented.glif b/sources/FixelDisplay-Regular.ufo/glyphs/ii-cy.accented.glif new file mode 100644 index 00000000..6da79311 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/ii-cy.accented.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + и+acute + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/ii-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/ii-cy.glif new file mode 100644 index 00000000..9b6b5d59 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/ii-cy.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/iishort-cy.B_G_R_.glif b/sources/FixelDisplay-Regular.ufo/glyphs/iishort-cy.B_G_R_.glif new file mode 100644 index 00000000..fc99210a --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/iishort-cy.B_G_R_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/iishort-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/iishort-cy.glif new file mode 100644 index 00000000..68e50efe --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/iishort-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + icyr+breve + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/ij.glif b/sources/FixelDisplay-Regular.ufo/glyphs/ij.glif new file mode 100644 index 00000000..c2a987c1 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/ij.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + i + com.fontlab.metricsRight + j + com.fontlab.recipe + i_j + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/imacron.glif b/sources/FixelDisplay-Regular.ufo/glyphs/imacron.glif new file mode 100644 index 00000000..49490111 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/imacron.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =5 + com.fontlab.metricsRight + =5 + com.fontlab.recipe + idotless+macron + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/imacroncyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/imacroncyr.glif new file mode 100644 index 00000000..96db03c9 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/imacroncyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ii-cy+macron + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/increment.glif b/sources/FixelDisplay-Regular.ufo/glyphs/increment.glif new file mode 100644 index 00000000..a1749f26 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/increment.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/infinity.glif b/sources/FixelDisplay-Regular.ufo/glyphs/infinity.glif new file mode 100644 index 00000000..c6386249 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/infinity.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/integral.glif b/sources/FixelDisplay-Regular.ufo/glyphs/integral.glif new file mode 100644 index 00000000..8de5aa70 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/integral.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/io-cy.accented.glif b/sources/FixelDisplay-Regular.ufo/glyphs/io-cy.accented.glif new file mode 100644 index 00000000..834f4b1b --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/io-cy.accented.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsLeft + e + com.fontlab.metricsRight + e + com.fontlab.recipe + e+dieresisacute + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/io-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/io-cy.glif new file mode 100644 index 00000000..d561c303 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/io-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + edieresis + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/io-cy.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/io-cy.ss01.glif new file mode 100644 index 00000000..4918edc6 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/io-cy.ss01.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + edieresis.ss01 + com.schriftgestaltung.Glyphs.ComponentInfo + + + alignment + -1 + index + 0 + name + edieresis.ss01 + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/iogonek.glif b/sources/FixelDisplay-Regular.ufo/glyphs/iogonek.glif new file mode 100644 index 00000000..bb1909aa --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/iogonek.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + i+ogonek + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/iota-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/iota-cy.glif new file mode 100644 index 00000000..770e1aed --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/iota-cy.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l.ss01 + com.fontlab.metricsRight + l.ss01 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/iotifieda-cy.B_G_R_.glif b/sources/FixelDisplay-Regular.ufo/glyphs/iotifieda-cy.B_G_R_.glif new file mode 100644 index 00000000..eb108ee8 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/iotifieda-cy.B_G_R_.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + el-cy.BGR + com.fontlab.recipe + iotifieda-cy + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/iotifieda-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/iotifieda-cy.glif new file mode 100644 index 00000000..32d9bc7d --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/iotifieda-cy.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + yusClosedlittle-cy + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/iotifieda-cy.hist.glif b/sources/FixelDisplay-Regular.ufo/glyphs/iotifieda-cy.hist.glif new file mode 100644 index 00000000..9298ecfe --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/iotifieda-cy.hist.glif @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + reversedzecyr + com.fontlab.metricsRight + a + public.markColor + 0.6,0.997,1,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/ishortsharptailcyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/ishortsharptailcyr.glif new file mode 100644 index 00000000..0b9f829f --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/ishortsharptailcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + й + com.fontlab.metricsRight + ensharptailcyr + com.fontlab.recipe + й + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/itilde.glif b/sources/FixelDisplay-Regular.ufo/glyphs/itilde.glif new file mode 100644 index 00000000..24761942 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/itilde.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + dotlessi+tilde + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/iu-cy.B_G_R_.glif b/sources/FixelDisplay-Regular.ufo/glyphs/iu-cy.B_G_R_.glif new file mode 100644 index 00000000..1cf077b7 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/iu-cy.B_G_R_.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + o + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/iu-cy.accented.glif b/sources/FixelDisplay-Regular.ufo/glyphs/iu-cy.accented.glif new file mode 100644 index 00000000..eb0a9315 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/iu-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ю+acute + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/iu-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/iu-cy.glif new file mode 100644 index 00000000..544183b8 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/iu-cy.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/izhitsacyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/izhitsacyr.glif new file mode 100644 index 00000000..857ce8ef --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/izhitsacyr.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + v + com.fontlab.metricsRight + + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/izhitsagravedblcyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/izhitsagravedblcyr.glif new file mode 100644 index 00000000..5472eae0 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/izhitsagravedblcyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + com.fontlab.metricsLeft + izhitsacyr + com.fontlab.metricsRight + izhitsacyr + com.fontlab.recipe + izhitsacyr+hungarumlaut + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/j.glif b/sources/FixelDisplay-Regular.ufo/glyphs/j.glif new file mode 100644 index 00000000..c6fca261 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/j.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + i + com.fontlab.recipe + dotlessj+dotaccent + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/jcircumflex.glif b/sources/FixelDisplay-Regular.ufo/glyphs/jcircumflex.glif new file mode 100644 index 00000000..3cf5745a --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/jcircumflex.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + dotlessj+circumflex + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/jdotless.glif b/sources/FixelDisplay-Regular.ufo/glyphs/jdotless.glif new file mode 100644 index 00000000..0d144172 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/jdotless.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + l + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/je-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/je-cy.glif new file mode 100644 index 00000000..c24dd4b1 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/je-cy.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + j + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/k.glif b/sources/FixelDisplay-Regular.ufo/glyphs/k.glif new file mode 100644 index 00000000..f9974ff6 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/k.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/ka-cy.B_G_R_.glif b/sources/FixelDisplay-Regular.ufo/glyphs/ka-cy.B_G_R_.glif new file mode 100644 index 00000000..5784a396 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/ka-cy.B_G_R_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + k + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/ka-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/ka-cy.glif new file mode 100644 index 00000000..5dd7c13d --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/ka-cy.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + k + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/kaaleutcyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/kaaleutcyr.glif new file mode 100644 index 00000000..3aadc08d --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/kaaleutcyr.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + k + com.fontlab.metricsRight + k + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/kabashkcyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/kabashkcyr.glif new file mode 100644 index 00000000..7b297205 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/kabashkcyr.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hardsign-cy + com.fontlab.metricsRight + k + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/kahookcyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/kahookcyr.glif new file mode 100644 index 00000000..a71da5a0 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/kahookcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + n + com.fontlab.metricsRight + k+10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/kastrokecyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/kastrokecyr.glif new file mode 100644 index 00000000..85a2e38a --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/kastrokecyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hbar + com.fontlab.metricsRight + k + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/katailcyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/katailcyr.glif new file mode 100644 index 00000000..65a71332 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/katailcyr.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + k + com.fontlab.metricsRight + к-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/kaverticalstrokecyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/kaverticalstrokecyr.glif new file mode 100644 index 00000000..dcb05d12 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/kaverticalstrokecyr.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + k + com.fontlab.metricsRight + k + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/kcommaaccent.glif b/sources/FixelDisplay-Regular.ufo/glyphs/kcommaaccent.glif new file mode 100644 index 00000000..7c0b9cd8 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/kcommaaccent.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsLeft + k + com.fontlab.metricsRight + k + com.fontlab.recipe + k+commaaccentcomb + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/kgreenlandic.glif b/sources/FixelDisplay-Regular.ufo/glyphs/kgreenlandic.glif new file mode 100644 index 00000000..f560703c --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/kgreenlandic.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + kacyr + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/kjecyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/kjecyr.glif new file mode 100644 index 00000000..f1820be1 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/kjecyr.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/knightblack.glif b/sources/FixelDisplay-Regular.ufo/glyphs/knightblack.glif new file mode 100644 index 00000000..a0b453f3 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/knightblack.glif @@ -0,0 +1,313 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =30 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/knightwhite.glif b/sources/FixelDisplay-Regular.ufo/glyphs/knightwhite.glif new file mode 100644 index 00000000..e9a5d8ea --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/knightwhite.glif @@ -0,0 +1,320 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/koppacyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/koppacyr.glif new file mode 100644 index 00000000..b0260f0e --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/koppacyr.glif @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + c-20 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/ksicyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/ksicyr.glif new file mode 100644 index 00000000..d2f1c7de --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/ksicyr.glif @@ -0,0 +1,102 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + з-10 + com.fontlab.metricsRight + з + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/l.glif b/sources/FixelDisplay-Regular.ufo/glyphs/l.glif new file mode 100644 index 00000000..350016f4 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/l.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/l.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/l.ss01.glif new file mode 100644 index 00000000..e622ad68 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/l.ss01.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/lacute.glif b/sources/FixelDisplay-Regular.ufo/glyphs/lacute.glif new file mode 100644 index 00000000..dbffb38a --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/lacute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l+acute.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/lacute.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/lacute.ss01.glif new file mode 100644 index 00000000..1f9cbd98 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/lacute.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l.ss01+acute.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/layerinfo.plist b/sources/FixelDisplay-Regular.ufo/glyphs/layerinfo.plist new file mode 100644 index 00000000..8c198655 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/layerinfo.plist @@ -0,0 +1,21 @@ + + + + + lib + + com.fontlab.layer.name + Body + com.fontlab.layer.opacity + 1 + com.fontlab.layer.visible + + com.fontlab.layer.locked + + com.fontlab.layer.service + + com.fontlab.layer.wireframe + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/lcaron.glif b/sources/FixelDisplay-Regular.ufo/glyphs/lcaron.glif new file mode 100644 index 00000000..daaa8a34 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/lcaron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l+caron.salt + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/lcaron.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/lcaron.ss01.glif new file mode 100644 index 00000000..ac522f39 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/lcaron.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l.ss01+caron.salt + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/lcommaaccent.glif b/sources/FixelDisplay-Regular.ufo/glyphs/lcommaaccent.glif new file mode 100644 index 00000000..d28a1bb8 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/lcommaaccent.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l+commaaccentcomb + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/lcommaaccent.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/lcommaaccent.ss01.glif new file mode 100644 index 00000000..9228d5c2 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/lcommaaccent.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l.ss01+commaaccentcomb + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/ldot.glif b/sources/FixelDisplay-Regular.ufo/glyphs/ldot.glif new file mode 100644 index 00000000..9f1eda50 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/ldot.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/ldot.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/ldot.ss01.glif new file mode 100644 index 00000000..d83e0df5 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/ldot.ss01.glif @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + l.ss01_periodcentered + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/leo.glif b/sources/FixelDisplay-Regular.ufo/glyphs/leo.glif new file mode 100644 index 00000000..b39e4fac --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/leo.glif @@ -0,0 +1,494 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/less.glif b/sources/FixelDisplay-Regular.ufo/glyphs/less.glif new file mode 100644 index 00000000..15afc4a9 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/less.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/lessequal.glif b/sources/FixelDisplay-Regular.ufo/glyphs/lessequal.glif new file mode 100644 index 00000000..8ef63e03 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/lessequal.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/lhacyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/lhacyr.glif new file mode 100644 index 00000000..d0072a8c --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/lhacyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + х + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/ljecyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/ljecyr.glif new file mode 100644 index 00000000..016a4508 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/ljecyr.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + ь + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/ljecyr.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/ljecyr.ss01.glif new file mode 100644 index 00000000..6996f678 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/ljecyr.ss01.glif @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + ь + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/ljekomicyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/ljekomicyr.glif new file mode 100644 index 00000000..1c07c01b --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/ljekomicyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + njekomicyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/longs.glif b/sources/FixelDisplay-Regular.ufo/glyphs/longs.glif new file mode 100644 index 00000000..b46f0325 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/longs.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + n + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/lslash.glif b/sources/FixelDisplay-Regular.ufo/glyphs/lslash.glif new file mode 100644 index 00000000..36aa2ff0 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/lslash.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Lslash+12 + com.fontlab.metricsRight + |Lslash+12 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/lslash.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/lslash.ss01.glif new file mode 100644 index 00000000..99b3b9be --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/lslash.ss01.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Lslash-10 + com.fontlab.metricsRight + |Lslash + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/m.glif b/sources/FixelDisplay-Regular.ufo/glyphs/m.glif new file mode 100644 index 00000000..1687c226 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/m.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + n + com.fontlab.metricsRight + n + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/macron-fwd.alt.glif b/sources/FixelDisplay-Regular.ufo/glyphs/macron-fwd.alt.glif new file mode 100644 index 00000000..0b543e43 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/macron-fwd.alt.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/macron-fwd.glif b/sources/FixelDisplay-Regular.ufo/glyphs/macron-fwd.glif new file mode 100644 index 00000000..4a891b6f --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/macron-fwd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/macron.case.glif b/sources/FixelDisplay-Regular.ufo/glyphs/macron.case.glif new file mode 100644 index 00000000..04b6e6b8 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/macron.case.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/macron.glif b/sources/FixelDisplay-Regular.ufo/glyphs/macron.glif new file mode 100644 index 00000000..2ced158f --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/macron.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/macronacute.S_R_B_.glif b/sources/FixelDisplay-Regular.ufo/glyphs/macronacute.S_R_B_.glif new file mode 100644 index 00000000..a44c21a6 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/macronacute.S_R_B_.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + macron+acute + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/millionscombcyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/millionscombcyr.glif new file mode 100644 index 00000000..454263d8 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/millionscombcyr.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/minus.glif b/sources/FixelDisplay-Regular.ufo/glyphs/minus.glif new file mode 100644 index 00000000..4aa4996a --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/minus.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/minute.glif b/sources/FixelDisplay-Regular.ufo/glyphs/minute.glif new file mode 100644 index 00000000..78c31891 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/minute.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/mu.glif b/sources/FixelDisplay-Regular.ufo/glyphs/mu.glif new file mode 100644 index 00000000..9827accc --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/mu.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + p + com.fontlab.metricsRight + u + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/multiply.glif b/sources/FixelDisplay-Regular.ufo/glyphs/multiply.glif new file mode 100644 index 00000000..5c562941 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/multiply.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/n.glif b/sources/FixelDisplay-Regular.ufo/glyphs/n.glif new file mode 100644 index 00000000..b7563ec6 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/n.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/nacute.glif b/sources/FixelDisplay-Regular.ufo/glyphs/nacute.glif new file mode 100644 index 00000000..c0734e34 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/nacute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + n+acute + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/napostrophe.glif b/sources/FixelDisplay-Regular.ufo/glyphs/napostrophe.glif new file mode 100644 index 00000000..551cd049 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/napostrophe.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + com.fontlab.metricsRight + n + com.schriftgestaltung.Glyphs.ComponentInfo + + + alignment + -1 + index + 0 + name + n + + + alignment + -1 + index + 1 + name + quoteright + + + com.schriftgestaltung.Glyphs.rightMetricsKey + n + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/ncaron.glif b/sources/FixelDisplay-Regular.ufo/glyphs/ncaron.glif new file mode 100644 index 00000000..4ec8addc --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/ncaron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + n+caron + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/ncommaaccent.glif b/sources/FixelDisplay-Regular.ufo/glyphs/ncommaaccent.glif new file mode 100644 index 00000000..ac5a6909 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/ncommaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + n+commaaccentcomb + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/neptune.glif b/sources/FixelDisplay-Regular.ufo/glyphs/neptune.glif new file mode 100644 index 00000000..0673b7a7 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/neptune.glif @@ -0,0 +1,125 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ш + com.fontlab.metricsRight + Ш + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/nine.glif b/sources/FixelDisplay-Regular.ufo/glyphs/nine.glif new file mode 100644 index 00000000..f858d64e --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/nine.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + |six + com.fontlab.metricsRight + |six + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/nine.osf.glif b/sources/FixelDisplay-Regular.ufo/glyphs/nine.osf.glif new file mode 100644 index 00000000..44c6ce8d --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/nine.osf.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |six + com.fontlab.metricsRight + |six + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/nine.tf.glif b/sources/FixelDisplay-Regular.ufo/glyphs/nine.tf.glif new file mode 100644 index 00000000..9f6872ec --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/nine.tf.glif @@ -0,0 +1,7 @@ + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/njecyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/njecyr.glif new file mode 100644 index 00000000..9a202c13 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/njecyr.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + ь + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/njecyr.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/njecyr.ss01.glif new file mode 100644 index 00000000..6b0e8029 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/njecyr.ss01.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + ь + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/njekomicyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/njekomicyr.glif new file mode 100644 index 00000000..58cd361c --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/njekomicyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + |u + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/notequal.glif b/sources/FixelDisplay-Regular.ufo/glyphs/notequal.glif new file mode 100644 index 00000000..65487379 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/notequal.glif @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/ntilde.glif b/sources/FixelDisplay-Regular.ufo/glyphs/ntilde.glif new file mode 100644 index 00000000..96776682 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/ntilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + n+tilde + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/numbersign.glif b/sources/FixelDisplay-Regular.ufo/glyphs/numbersign.glif new file mode 100644 index 00000000..2f15c705 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/numbersign.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/numero.glif b/sources/FixelDisplay-Regular.ufo/glyphs/numero.glif new file mode 100644 index 00000000..f58194d8 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/numero.glif @@ -0,0 +1,90 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + N + com.fontlab.recipe + N+ordmasculine + com.schriftgestaltung.Glyphs.ComponentInfo + + + alignment + -1 + index + 0 + name + N + + + alignment + -1 + index + 1 + name + ordmasculine + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/numero.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/numero.ss01.glif new file mode 100644 index 00000000..914dd675 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/numero.ss01.glif @@ -0,0 +1,95 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + N.ss01 + com.fontlab.metricsRight + ordmasculine + com.fontlab.recipe + N.ss01+ordmasculine + com.schriftgestaltung.Glyphs.ComponentInfo + + + alignment + -1 + index + 0 + name + ordmasculine + + + alignment + -1 + index + 1 + name + N.ss01 + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/o-cy.accented.glif b/sources/FixelDisplay-Regular.ufo/glyphs/o-cy.accented.glif new file mode 100644 index 00000000..1a72abf1 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/o-cy.accented.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+acute + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/o-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/o-cy.glif new file mode 100644 index 00000000..98b61167 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/o-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/o.glif b/sources/FixelDisplay-Regular.ufo/glyphs/o.glif new file mode 100644 index 00000000..471f1a1d --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/o.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/oB_inocular-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/oB_inocular-cy.glif new file mode 100644 index 00000000..2edb24a6 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/oB_inocular-cy.glif @@ -0,0 +1,81 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/oD_oubleM_onocular-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/oD_oubleM_onocular-cy.glif new file mode 100644 index 00000000..13be0370 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/oD_oubleM_onocular-cy.glif @@ -0,0 +1,121 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + com.fontlab.recipe + doubleo-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/oM_onocular-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/oM_onocular-cy.glif new file mode 100644 index 00000000..3e990d8b --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/oM_onocular-cy.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/oacute.glif b/sources/FixelDisplay-Regular.ufo/glyphs/oacute.glif new file mode 100644 index 00000000..99ece2bc --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/oacute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+acute + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/obarcyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/obarcyr.glif new file mode 100644 index 00000000..ef21c002 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/obarcyr.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/obardieresiscyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/obardieresiscyr.glif new file mode 100644 index 00000000..2610d6a3 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/obardieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + obarcyr+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/obreve.glif b/sources/FixelDisplay-Regular.ufo/glyphs/obreve.glif new file mode 100644 index 00000000..af97dfc3 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/obreve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+breve + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/ocircumflex.glif b/sources/FixelDisplay-Regular.ufo/glyphs/ocircumflex.glif new file mode 100644 index 00000000..9c9ba62f --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/ocircumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+circumflex + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/odieresis.glif b/sources/FixelDisplay-Regular.ufo/glyphs/odieresis.glif new file mode 100644 index 00000000..8b04d460 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/odieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+dieresis + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/odieresiscyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/odieresiscyr.glif new file mode 100644 index 00000000..5bac682f --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/odieresiscyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/oe.glif b/sources/FixelDisplay-Regular.ufo/glyphs/oe.glif new file mode 100644 index 00000000..e991c707 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/oe.glif @@ -0,0 +1,86 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + e + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/oe.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/oe.ss01.glif new file mode 100644 index 00000000..970edfd1 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/oe.ss01.glif @@ -0,0 +1,95 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + e.ss01 + public.markColor + 0.6,0.997,1,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/ogonek.glif b/sources/FixelDisplay-Regular.ufo/glyphs/ogonek.glif new file mode 100644 index 00000000..cfdb3696 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/ogonek.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/ograve.glif b/sources/FixelDisplay-Regular.ufo/glyphs/ograve.glif new file mode 100644 index 00000000..8a80b4b4 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/ograve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+grave + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/ohungarumlaut.glif b/sources/FixelDisplay-Regular.ufo/glyphs/ohungarumlaut.glif new file mode 100644 index 00000000..a9cccdc9 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/ohungarumlaut.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+hungarumlaut + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/omacron.glif b/sources/FixelDisplay-Regular.ufo/glyphs/omacron.glif new file mode 100644 index 00000000..5d676f19 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/omacron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+macron + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/omegaB_road-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/omegaB_road-cy.glif new file mode 100644 index 00000000..30a93ba8 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/omegaB_road-cy.glif @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o+5 + com.fontlab.metricsRight + o+5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/omegacyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/omegacyr.glif new file mode 100644 index 00000000..b2667ef7 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/omegacyr.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + w + com.fontlab.metricsRight + w + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/omegaroundcyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/omegaroundcyr.glif new file mode 100644 index 00000000..cc8c41fc --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/omegaroundcyr.glif @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/omegatitlocyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/omegatitlocyr.glif new file mode 100644 index 00000000..95a8e45a --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/omegatitlocyr.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o+5 + com.fontlab.metricsRight + o+5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/omultiocular-cy.alt.glif b/sources/FixelDisplay-Regular.ufo/glyphs/omultiocular-cy.alt.glif new file mode 100644 index 00000000..264ba6e9 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/omultiocular-cy.alt.glif @@ -0,0 +1,366 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + oMonocular-cy + com.fontlab.metricsRight + oMonocular-cy + public.markColor + 0.6,0.997,1,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/omultiocular-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/omultiocular-cy.glif new file mode 100644 index 00000000..395b4b03 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/omultiocular-cy.glif @@ -0,0 +1,517 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + oMonocular-cy + com.fontlab.metricsRight + oMonocular-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/one.glif b/sources/FixelDisplay-Regular.ufo/glyphs/one.glif new file mode 100644 index 00000000..365cfeb7 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/one.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =40 + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/one.osf.glif b/sources/FixelDisplay-Regular.ufo/glyphs/one.osf.glif new file mode 100644 index 00000000..335d5405 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/one.osf.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + one + com.fontlab.metricsRight + one + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/one.tf.glif b/sources/FixelDisplay-Regular.ufo/glyphs/one.tf.glif new file mode 100644 index 00000000..09087eaa --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/one.tf.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/onehalf.glif b/sources/FixelDisplay-Regular.ufo/glyphs/onehalf.glif new file mode 100644 index 00000000..c5f04fc2 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/onehalf.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/onequarter.glif b/sources/FixelDisplay-Regular.ufo/glyphs/onequarter.glif new file mode 100644 index 00000000..e3dc5444 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/onequarter.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/onesuperior.glif b/sources/FixelDisplay-Regular.ufo/glyphs/onesuperior.glif new file mode 100644 index 00000000..4a70ebbf --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/onesuperior.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/ordfeminine.glif b/sources/FixelDisplay-Regular.ufo/glyphs/ordfeminine.glif new file mode 100644 index 00000000..3fda4ce5 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/ordfeminine.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/ordmasculine.glif b/sources/FixelDisplay-Regular.ufo/glyphs/ordmasculine.glif new file mode 100644 index 00000000..3ea851f2 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/ordmasculine.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/oslash.glif b/sources/FixelDisplay-Regular.ufo/glyphs/oslash.glif new file mode 100644 index 00000000..bdd0c166 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/oslash.glif @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/oslashacute.glif b/sources/FixelDisplay-Regular.ufo/glyphs/oslashacute.glif new file mode 100644 index 00000000..10a84202 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/oslashacute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + oslash+acute + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/otcyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/otcyr.glif new file mode 100644 index 00000000..7539a479 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/otcyr.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsRight + w + com.fontlab.recipe + omegacyr+uni2DEE + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/otilde.glif b/sources/FixelDisplay-Regular.ufo/glyphs/otilde.glif new file mode 100644 index 00000000..92c4cd8b --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/otilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+tilde + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/p.glif b/sources/FixelDisplay-Regular.ufo/glyphs/p.glif new file mode 100644 index 00000000..90f4017c --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/p.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/p.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/p.ss01.glif new file mode 100644 index 00000000..25c56a95 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/p.ss01.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/palatcombcyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/palatcombcyr.glif new file mode 100644 index 00000000..3dc3e62f --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/palatcombcyr.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/palochkacyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/palochkacyr.glif new file mode 100644 index 00000000..bd746838 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/palochkacyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/paragraph.glif b/sources/FixelDisplay-Regular.ufo/glyphs/paragraph.glif new file mode 100644 index 00000000..6fbf769a --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/paragraph.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |P + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/parenleft.case.glif b/sources/FixelDisplay-Regular.ufo/glyphs/parenleft.case.glif new file mode 100644 index 00000000..1f29f32e --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/parenleft.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |parenright.case + com.fontlab.metricsRight + |parenright.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/parenleft.glif b/sources/FixelDisplay-Regular.ufo/glyphs/parenleft.glif new file mode 100644 index 00000000..64148993 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/parenleft.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/parenright.case.glif b/sources/FixelDisplay-Regular.ufo/glyphs/parenright.case.glif new file mode 100644 index 00000000..02d7b154 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/parenright.case.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + parenright + com.fontlab.metricsRight + parenright + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/parenright.glif b/sources/FixelDisplay-Regular.ufo/glyphs/parenright.glif new file mode 100644 index 00000000..35cca66e --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/parenright.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/partialdiff.glif b/sources/FixelDisplay-Regular.ufo/glyphs/partialdiff.glif new file mode 100644 index 00000000..85eab4c4 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/partialdiff.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/pe-cy.B_G_R_.glif b/sources/FixelDisplay-Regular.ufo/glyphs/pe-cy.B_G_R_.glif new file mode 100644 index 00000000..44be4b14 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/pe-cy.B_G_R_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + n + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/pe-cy.S_R_B_.glif b/sources/FixelDisplay-Regular.ufo/glyphs/pe-cy.S_R_B_.glif new file mode 100644 index 00000000..af38cdb0 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/pe-cy.S_R_B_.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+macron-fwd.alt + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/pe-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/pe-cy.glif new file mode 100644 index 00000000..15540b52 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/pe-cy.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/pehookcyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/pehookcyr.glif new file mode 100644 index 00000000..06921664 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/pehookcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + п + com.fontlab.metricsRight + enmiddlehookcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/percent.glif b/sources/FixelDisplay-Regular.ufo/glyphs/percent.glif new file mode 100644 index 00000000..b8be48d6 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/percent.glif @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/period.glif b/sources/FixelDisplay-Regular.ufo/glyphs/period.glif new file mode 100644 index 00000000..5a1ad042 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/period.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/periodcentered.glif b/sources/FixelDisplay-Regular.ufo/glyphs/periodcentered.glif new file mode 100644 index 00000000..a13a774d --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/periodcentered.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/perthousand.glif b/sources/FixelDisplay-Regular.ufo/glyphs/perthousand.glif new file mode 100644 index 00000000..12f876f5 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/perthousand.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/petailcyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/petailcyr.glif new file mode 100644 index 00000000..3d8d9f81 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/petailcyr.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + п + com.fontlab.metricsRight + entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/pi.glif b/sources/FixelDisplay-Regular.ufo/glyphs/pi.glif new file mode 100644 index 00000000..f4c25657 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/pi.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f + com.fontlab.metricsRight + t + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/plus.glif b/sources/FixelDisplay-Regular.ufo/glyphs/plus.glif new file mode 100644 index 00000000..e60f7517 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/plus.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/plusminus.glif b/sources/FixelDisplay-Regular.ufo/glyphs/plusminus.glif new file mode 100644 index 00000000..b0308d17 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/plusminus.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/pokrytiecombcyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/pokrytiecombcyr.glif new file mode 100644 index 00000000..3857c122 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/pokrytiecombcyr.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/product.glif b/sources/FixelDisplay-Regular.ufo/glyphs/product.glif new file mode 100644 index 00000000..6791a212 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/product.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/proportional.glif b/sources/FixelDisplay-Regular.ufo/glyphs/proportional.glif new file mode 100644 index 00000000..2838fa76 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/proportional.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/psicyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/psicyr.glif new file mode 100644 index 00000000..2644cf00 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/psicyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + u + com.fontlab.metricsRight + |u + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/q.glif b/sources/FixelDisplay-Regular.ufo/glyphs/q.glif new file mode 100644 index 00000000..45990039 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/q.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/q.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/q.ss01.glif new file mode 100644 index 00000000..aef4b509 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/q.ss01.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/qacyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/qacyr.glif new file mode 100644 index 00000000..38f72edf --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/qacyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + q + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/question.glif b/sources/FixelDisplay-Regular.ufo/glyphs/question.glif new file mode 100644 index 00000000..0f5819b1 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/question.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/questiondown.case.glif b/sources/FixelDisplay-Regular.ufo/glyphs/questiondown.case.glif new file mode 100644 index 00000000..1cb34e22 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/questiondown.case.glif @@ -0,0 +1,19 @@ + + + + + + + + + com.fontlab.metricsLeft + |question + com.fontlab.metricsRight + |question + com.fontlab.recipe + questiondown + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/questiondown.glif b/sources/FixelDisplay-Regular.ufo/glyphs/questiondown.glif new file mode 100644 index 00000000..2dc3636d --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/questiondown.glif @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |question + com.fontlab.metricsRight + |question + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/quotedbl.glif b/sources/FixelDisplay-Regular.ufo/glyphs/quotedbl.glif new file mode 100644 index 00000000..652740c4 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/quotedbl.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/quotedblbase.glif b/sources/FixelDisplay-Regular.ufo/glyphs/quotedblbase.glif new file mode 100644 index 00000000..32864210 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/quotedblbase.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + comma + com.fontlab.metricsRight + comma + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/quotedblleft.glif b/sources/FixelDisplay-Regular.ufo/glyphs/quotedblleft.glif new file mode 100644 index 00000000..ab85538c --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/quotedblleft.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + |comma + com.fontlab.metricsRight + |comma + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/quotedblright.glif b/sources/FixelDisplay-Regular.ufo/glyphs/quotedblright.glif new file mode 100644 index 00000000..be3ac6bf --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/quotedblright.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.metricsLeft + comma+20 + com.fontlab.metricsRight + comma-20 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/quoteleft.glif b/sources/FixelDisplay-Regular.ufo/glyphs/quoteleft.glif new file mode 100644 index 00000000..0ece8d14 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/quoteleft.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + quotedblleft + com.fontlab.metricsRight + quotedblleft + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/quoteright.glif b/sources/FixelDisplay-Regular.ufo/glyphs/quoteright.glif new file mode 100644 index 00000000..fc025ba5 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/quoteright.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + com.fontlab.metricsLeft + quotedblright + com.fontlab.metricsRight + quotedblright + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/quotesinglbase.glif b/sources/FixelDisplay-Regular.ufo/glyphs/quotesinglbase.glif new file mode 100644 index 00000000..cc80d25f --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/quotesinglbase.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + com.fontlab.recipe + comma + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/quotesingle.glif b/sources/FixelDisplay-Regular.ufo/glyphs/quotesingle.glif new file mode 100644 index 00000000..ebe10c9a --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/quotesingle.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/r.glif b/sources/FixelDisplay-Regular.ufo/glyphs/r.glif new file mode 100644 index 00000000..746e6b5e --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/r.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/racute.glif b/sources/FixelDisplay-Regular.ufo/glyphs/racute.glif new file mode 100644 index 00000000..c8e5582a --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/racute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + r+acute + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/radical.glif b/sources/FixelDisplay-Regular.ufo/glyphs/radical.glif new file mode 100644 index 00000000..69397119 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/radical.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + V + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/rcaron.glif b/sources/FixelDisplay-Regular.ufo/glyphs/rcaron.glif new file mode 100644 index 00000000..e36bd050 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/rcaron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + r+caron + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/rcommaaccent.glif b/sources/FixelDisplay-Regular.ufo/glyphs/rcommaaccent.glif new file mode 100644 index 00000000..f68a5df8 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/rcommaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + r+commaaccentcomb + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/registered.glif b/sources/FixelDisplay-Regular.ufo/glyphs/registered.glif new file mode 100644 index 00000000..9294576d --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/registered.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/reversedzecyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/reversedzecyr.glif new file mode 100644 index 00000000..0f4b26a0 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/reversedzecyr.glif @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + + com.fontlab.metricsRight + + com.fontlab.recipe + з + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/rhacyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/rhacyr.glif new file mode 100644 index 00000000..80eb7280 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/rhacyr.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + p + com.fontlab.metricsRight + x + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/ring.case.glif b/sources/FixelDisplay-Regular.ufo/glyphs/ring.case.glif new file mode 100644 index 00000000..056fa419 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/ring.case.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/ring.glif b/sources/FixelDisplay-Regular.ufo/glyphs/ring.glif new file mode 100644 index 00000000..6503429c --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/ring.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/rookblack.glif b/sources/FixelDisplay-Regular.ufo/glyphs/rookblack.glif new file mode 100644 index 00000000..51bde327 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/rookblack.glif @@ -0,0 +1,270 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =30 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/ruble.glif b/sources/FixelDisplay-Regular.ufo/glyphs/ruble.glif new file mode 100644 index 00000000..7cfa3b40 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/ruble.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + P + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/s.glif b/sources/FixelDisplay-Regular.ufo/glyphs/s.glif new file mode 100644 index 00000000..c949e497 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/s.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/sacute.glif b/sources/FixelDisplay-Regular.ufo/glyphs/sacute.glif new file mode 100644 index 00000000..b2411e36 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/sacute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + s+acute + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/scaron.glif b/sources/FixelDisplay-Regular.ufo/glyphs/scaron.glif new file mode 100644 index 00000000..83bc46b0 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/scaron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + s+caron + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/scedilla.glif b/sources/FixelDisplay-Regular.ufo/glyphs/scedilla.glif new file mode 100644 index 00000000..3f3b83fe --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/scedilla.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + s+cedilla + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/schwacyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/schwacyr.glif new file mode 100644 index 00000000..82f5dc40 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/schwacyr.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |e + com.fontlab.metricsRight + o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/schwadieresiscyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/schwadieresiscyr.glif new file mode 100644 index 00000000..449d1f31 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/schwadieresiscyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + schwacyr+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/scircumflex.glif b/sources/FixelDisplay-Regular.ufo/glyphs/scircumflex.glif new file mode 100644 index 00000000..ee75b660 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/scircumflex.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + s+circumflex + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/scommaaccent.glif b/sources/FixelDisplay-Regular.ufo/glyphs/scommaaccent.glif new file mode 100644 index 00000000..d214af0d --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/scommaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + s+commaaccentcomb + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/second.glif b/sources/FixelDisplay-Regular.ufo/glyphs/second.glif new file mode 100644 index 00000000..4b0eb0a4 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/second.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/section.glif b/sources/FixelDisplay-Regular.ufo/glyphs/section.glif new file mode 100644 index 00000000..bcc51b1e --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/section.glif @@ -0,0 +1,87 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + S + com.fontlab.metricsRight + S + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/semicolon.case.glif b/sources/FixelDisplay-Regular.ufo/glyphs/semicolon.case.glif new file mode 100644 index 00000000..27d43fae --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/semicolon.case.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.metricsLeft + semicolon + com.fontlab.metricsRight + semicolon + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/semicolon.glif b/sources/FixelDisplay-Regular.ufo/glyphs/semicolon.glif new file mode 100644 index 00000000..36feb0fe --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/semicolon.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/semisoftcyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/semisoftcyr.glif new file mode 100644 index 00000000..93e9b99e --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/semisoftcyr.glif @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + t + com.fontlab.metricsRight + ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/seven.glif b/sources/FixelDisplay-Regular.ufo/glyphs/seven.glif new file mode 100644 index 00000000..80b30b68 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/seven.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/seven.osf.glif b/sources/FixelDisplay-Regular.ufo/glyphs/seven.osf.glif new file mode 100644 index 00000000..aa2bbd18 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/seven.osf.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + seven + com.fontlab.metricsRight + seven + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/seven.tf.glif b/sources/FixelDisplay-Regular.ufo/glyphs/seven.tf.glif new file mode 100644 index 00000000..cbbcedb2 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/seven.tf.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/sha-cy.B_G_R_.glif b/sources/FixelDisplay-Regular.ufo/glyphs/sha-cy.B_G_R_.glif new file mode 100644 index 00000000..d8ecbcbd --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/sha-cy.B_G_R_.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + u + com.fontlab.metricsRight + l + com.fontlab.recipe + m + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/sha-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/sha-cy.glif new file mode 100644 index 00000000..a66bea7c --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/sha-cy.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/shcha-cy.B_G_R_.glif b/sources/FixelDisplay-Regular.ufo/glyphs/shcha-cy.B_G_R_.glif new file mode 100644 index 00000000..71c98773 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/shcha-cy.B_G_R_.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + u + com.fontlab.metricsRight + щ + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/shcha-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/shcha-cy.glif new file mode 100644 index 00000000..93caa9c2 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/shcha-cy.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + д + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/shhacyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/shhacyr.glif new file mode 100644 index 00000000..e13fb78d --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/shhacyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsRight + n + com.fontlab.recipe + h + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/shhatailcyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/shhatailcyr.glif new file mode 100644 index 00000000..5a83c4c3 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/shhatailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + h + com.fontlab.metricsRight + entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/shwe-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/shwe-cy.glif new file mode 100644 index 00000000..4cbabd79 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/shwe-cy.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + щ + com.fontlab.metricsRight + щ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/six.glif b/sources/FixelDisplay-Regular.ufo/glyphs/six.glif new file mode 100644 index 00000000..e1ae7d93 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/six.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/six.osf.glif b/sources/FixelDisplay-Regular.ufo/glyphs/six.osf.glif new file mode 100644 index 00000000..ad87a88b --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/six.osf.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + six + com.fontlab.metricsRight + six + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/six.tf.glif b/sources/FixelDisplay-Regular.ufo/glyphs/six.tf.glif new file mode 100644 index 00000000..3ceb82fc --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/six.tf.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/sjekomicyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/sjekomicyr.glif new file mode 100644 index 00000000..71736316 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/sjekomicyr.glif @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + e + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/slash.case.glif b/sources/FixelDisplay-Regular.ufo/glyphs/slash.case.glif new file mode 100644 index 00000000..c04e9e4c --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/slash.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + slash + com.fontlab.metricsRight + slash + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/slash.glif b/sources/FixelDisplay-Regular.ufo/glyphs/slash.glif new file mode 100644 index 00000000..528c2ef7 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/slash.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/softsign-cy.B_G_R_.glif b/sources/FixelDisplay-Regular.ufo/glyphs/softsign-cy.B_G_R_.glif new file mode 100644 index 00000000..95884e21 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/softsign-cy.B_G_R_.glif @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + u + com.fontlab.metricsRight + ь-5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/softsign-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/softsign-cy.glif new file mode 100644 index 00000000..aa37e902 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/softsign-cy.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/softsign-cy.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/softsign-cy.ss01.glif new file mode 100644 index 00000000..a46c624e --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/softsign-cy.ss01.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/space.glif b/sources/FixelDisplay-Regular.ufo/glyphs/space.glif new file mode 100644 index 00000000..9878d518 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/space.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/spadewhite.glif b/sources/FixelDisplay-Regular.ufo/glyphs/spadewhite.glif new file mode 100644 index 00000000..9fbd6b99 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/spadewhite.glif @@ -0,0 +1,453 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/sterling.glif b/sources/FixelDisplay-Regular.ufo/glyphs/sterling.glif new file mode 100644 index 00000000..b9db44ed --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/sterling.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/summation.glif b/sources/FixelDisplay-Regular.ufo/glyphs/summation.glif new file mode 100644 index 00000000..fcefcf74 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/summation.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/t.glif b/sources/FixelDisplay-Regular.ufo/glyphs/t.glif new file mode 100644 index 00000000..48795ce6 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/t.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/t.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/t.ss01.glif new file mode 100644 index 00000000..6d2ecf3d --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/t.ss01.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/tbar.glif b/sources/FixelDisplay-Regular.ufo/glyphs/tbar.glif new file mode 100644 index 00000000..50ae6c68 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/tbar.glif @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/tbar.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/tbar.ss01.glif new file mode 100644 index 00000000..d3e800d5 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/tbar.ss01.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/tcaron.glif b/sources/FixelDisplay-Regular.ufo/glyphs/tcaron.glif new file mode 100644 index 00000000..76e2de5a --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/tcaron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.metricsLeft + t + com.fontlab.metricsRight + t + com.fontlab.recipe + t+caron.salt + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/tcaron.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/tcaron.ss01.glif new file mode 100644 index 00000000..b8d5f796 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/tcaron.ss01.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + com.fontlab.recipe + t.ss01+caron.salt + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/tcedilla.glif b/sources/FixelDisplay-Regular.ufo/glyphs/tcedilla.glif new file mode 100644 index 00000000..aca51ef0 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/tcedilla.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + t+cedilla + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/tcedilla.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/tcedilla.ss01.glif new file mode 100644 index 00000000..fba68ea2 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/tcedilla.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + t.ss01+cedilla + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/tche-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/tche-cy.glif new file mode 100644 index 00000000..171140fc --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/tche-cy.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + tetsecyr-20 + com.fontlab.metricsRight + ч + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/tcommaaccent.glif b/sources/FixelDisplay-Regular.ufo/glyphs/tcommaaccent.glif new file mode 100644 index 00000000..72a51623 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/tcommaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + t+commaaccentcomb + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/tcommaaccent.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/tcommaaccent.ss01.glif new file mode 100644 index 00000000..86430c62 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/tcommaaccent.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + t.ss01+commaaccentcomb + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/te-cy.B_G_R_.glif b/sources/FixelDisplay-Regular.ufo/glyphs/te-cy.B_G_R_.glif new file mode 100644 index 00000000..11919d06 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/te-cy.B_G_R_.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + m + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/te-cy.S_R_B_.glif b/sources/FixelDisplay-Regular.ufo/glyphs/te-cy.S_R_B_.glif new file mode 100644 index 00000000..8e0c9a3a --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/te-cy.S_R_B_.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ш.BGR+macron-fwd + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/te-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/te-cy.glif new file mode 100644 index 00000000..2e6f68a4 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/te-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/te-cy.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/te-cy.ss01.glif new file mode 100644 index 00000000..7b663cc9 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/te-cy.ss01.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/tenge.glif b/sources/FixelDisplay-Regular.ufo/glyphs/tenge.glif new file mode 100644 index 00000000..c43f1448 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/tenge.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + T + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/tenmillionscomb-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/tenmillionscomb-cy.glif new file mode 100644 index 00000000..f2da8898 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/tenmillionscomb-cy.glif @@ -0,0 +1,109 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/tetailcyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/tetailcyr.glif new file mode 100644 index 00000000..2fa200d0 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/tetailcyr.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + т + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/tetsecyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/tetsecyr.glif new file mode 100644 index 00000000..4bfc7d75 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/tetsecyr.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + т + com.fontlab.metricsRight + ц + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/tewithmiddlehook-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/tewithmiddlehook-cy.glif new file mode 100644 index 00000000..040c0b2b --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/tewithmiddlehook-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + т + com.fontlab.metricsRight + gehookcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/thorn.glif b/sources/FixelDisplay-Regular.ufo/glyphs/thorn.glif new file mode 100644 index 00000000..a14c811a --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/thorn.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + b + com.fontlab.metricsRight + b + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/thousandmillionscomb-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/thousandmillionscomb-cy.glif new file mode 100644 index 00000000..8ceddc87 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/thousandmillionscomb-cy.glif @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/thousandscyr.dnom.glif b/sources/FixelDisplay-Regular.ufo/glyphs/thousandscyr.dnom.glif new file mode 100644 index 00000000..9b6d0e51 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/thousandscyr.dnom.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + | + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/thousandscyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/thousandscyr.glif new file mode 100644 index 00000000..ad3e03ae --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/thousandscyr.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + | + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/three.glif b/sources/FixelDisplay-Regular.ufo/glyphs/three.glif new file mode 100644 index 00000000..79072178 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/three.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/three.osf.glif b/sources/FixelDisplay-Regular.ufo/glyphs/three.osf.glif new file mode 100644 index 00000000..27781365 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/three.osf.glif @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + three + com.fontlab.metricsRight + three + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/three.tf.glif b/sources/FixelDisplay-Regular.ufo/glyphs/three.tf.glif new file mode 100644 index 00000000..a976c946 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/three.tf.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/threequarters.glif b/sources/FixelDisplay-Regular.ufo/glyphs/threequarters.glif new file mode 100644 index 00000000..47c091a5 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/threequarters.glif @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/threesuperior.glif b/sources/FixelDisplay-Regular.ufo/glyphs/threesuperior.glif new file mode 100644 index 00000000..635f22a5 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/threesuperior.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/tilde.case.glif b/sources/FixelDisplay-Regular.ufo/glyphs/tilde.case.glif new file mode 100644 index 00000000..23635456 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/tilde.case.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/tilde.glif b/sources/FixelDisplay-Regular.ufo/glyphs/tilde.glif new file mode 100644 index 00000000..276d1fda --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/tilde.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/titlocombcyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/titlocombcyr.glif new file mode 100644 index 00000000..05997d7d --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/titlocombcyr.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/tjekomicyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/tjekomicyr.glif new file mode 100644 index 00000000..c5b9a866 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/tjekomicyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + т + com.fontlab.metricsRight + njekomicyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/trademark.glif b/sources/FixelDisplay-Regular.ufo/glyphs/trademark.glif new file mode 100644 index 00000000..9e0925bf --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/trademark.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/tse-cy.B_G_R_.glif b/sources/FixelDisplay-Regular.ufo/glyphs/tse-cy.B_G_R_.glif new file mode 100644 index 00000000..ae47f3ad --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/tse-cy.B_G_R_.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + u + com.fontlab.metricsRight + ц + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/tse-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/tse-cy.glif new file mode 100644 index 00000000..999d5846 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/tse-cy.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + д + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/tseR_eversed-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/tseR_eversed-cy.glif new file mode 100644 index 00000000..1a99d703 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/tseR_eversed-cy.glif @@ -0,0 +1,20 @@ + + + + + + + + + + com.fontlab.metricsLeft + + com.fontlab.metricsRight + н + com.fontlab.recipe + ц + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/tshecyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/tshecyr.glif new file mode 100644 index 00000000..49708577 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/tshecyr.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + hbar + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/tsse-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/tsse-cy.glif new file mode 100644 index 00000000..46012a53 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/tsse-cy.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + т + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/tswe-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/tswe-cy.glif new file mode 100644 index 00000000..8ca3f1df --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/tswe-cy.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ш + com.fontlab.metricsRight + shwe-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/twe-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/twe-cy.glif new file mode 100644 index 00000000..faecebd6 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/twe-cy.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + т.ss01 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/two.glif b/sources/FixelDisplay-Regular.ufo/glyphs/two.glif new file mode 100644 index 00000000..b6b401c9 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/two.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/two.osf.glif b/sources/FixelDisplay-Regular.ufo/glyphs/two.osf.glif new file mode 100644 index 00000000..8817eb3b --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/two.osf.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + two + com.fontlab.metricsRight + two + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/two.tf.glif b/sources/FixelDisplay-Regular.ufo/glyphs/two.tf.glif new file mode 100644 index 00000000..625df179 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/two.tf.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/twosuperior.glif b/sources/FixelDisplay-Regular.ufo/glyphs/twosuperior.glif new file mode 100644 index 00000000..0060ca10 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/twosuperior.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/u-cy.accented.glif b/sources/FixelDisplay-Regular.ufo/glyphs/u-cy.accented.glif new file mode 100644 index 00000000..97c05abd --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/u-cy.accented.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + y+acute + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/u-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/u-cy.glif new file mode 100644 index 00000000..f80d09bc --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/u-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + y + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/u.glif b/sources/FixelDisplay-Regular.ufo/glyphs/u.glif new file mode 100644 index 00000000..c9488715 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/u.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |n + com.fontlab.metricsRight + l + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/uacute.glif b/sources/FixelDisplay-Regular.ufo/glyphs/uacute.glif new file mode 100644 index 00000000..65d7c6e5 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/uacute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+acute + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/uacutedblcyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/uacutedblcyr.glif new file mode 100644 index 00000000..4366ff86 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/uacutedblcyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u-cy+hungarumlaut + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/ubreve.glif b/sources/FixelDisplay-Regular.ufo/glyphs/ubreve.glif new file mode 100644 index 00000000..c57503ba --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/ubreve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+breve + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/ucircumflex.glif b/sources/FixelDisplay-Regular.ufo/glyphs/ucircumflex.glif new file mode 100644 index 00000000..23f40ce2 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/ucircumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+circumflex + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/udieresis.glif b/sources/FixelDisplay-Regular.ufo/glyphs/udieresis.glif new file mode 100644 index 00000000..84fdf2c6 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/udieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+dieresis + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/udieresiscyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/udieresiscyr.glif new file mode 100644 index 00000000..2c2e717b --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/udieresiscyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/ugrave.glif b/sources/FixelDisplay-Regular.ufo/glyphs/ugrave.glif new file mode 100644 index 00000000..3223b709 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/ugrave.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+grave + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/uhungarumlaut.glif b/sources/FixelDisplay-Regular.ufo/glyphs/uhungarumlaut.glif new file mode 100644 index 00000000..23cba55b --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/uhungarumlaut.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+hungarumlaut + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/ukM_onograph-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/ukM_onograph-cy.glif new file mode 100644 index 00000000..d0a2738f --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/ukM_onograph-cy.glif @@ -0,0 +1,78 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + y-30 + com.fontlab.metricsRight + y-20 + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/ukcyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/ukcyr.glif new file mode 100644 index 00000000..9ebb4f04 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/ukcyr.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + y + com.fontlab.recipe + uni1C82_у + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/umacron.glif b/sources/FixelDisplay-Regular.ufo/glyphs/umacron.glif new file mode 100644 index 00000000..ba6200a1 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/umacron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+macron + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/umacroncyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/umacroncyr.glif new file mode 100644 index 00000000..6d88cfd4 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/umacroncyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u-cy+macron + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/underscore.glif b/sources/FixelDisplay-Regular.ufo/glyphs/underscore.glif new file mode 100644 index 00000000..51e3d117 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/underscore.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/uni1C_80.glif b/sources/FixelDisplay-Regular.ufo/glyphs/uni1C_80.glif new file mode 100644 index 00000000..7377f6d3 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/uni1C_80.glif @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + б + com.fontlab.metricsRight + o-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/uni1C_81.glif b/sources/FixelDisplay-Regular.ufo/glyphs/uni1C_81.glif new file mode 100644 index 00000000..66d0bab5 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/uni1C_81.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + д-10 + com.fontlab.metricsRight + | + com.fontlab.recipe + д + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/uni1C_82.glif b/sources/FixelDisplay-Regular.ufo/glyphs/uni1C_82.glif new file mode 100644 index 00000000..eb14a733 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/uni1C_82.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/uni1C_83.glif b/sources/FixelDisplay-Regular.ufo/glyphs/uni1C_83.glif new file mode 100644 index 00000000..b659f72b --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/uni1C_83.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + c + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/uni1C_84.glif b/sources/FixelDisplay-Regular.ufo/glyphs/uni1C_84.glif new file mode 100644 index 00000000..6b8a6135 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/uni1C_84.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/uni1C_85.glif b/sources/FixelDisplay-Regular.ufo/glyphs/uni1C_85.glif new file mode 100644 index 00000000..d0483c8f --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/uni1C_85.glif @@ -0,0 +1,20 @@ + + + + + + + + + + com.fontlab.metricsLeft + ш + com.fontlab.metricsRight + l() + com.fontlab.recipe + ш + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/uni1C_86.glif b/sources/FixelDisplay-Regular.ufo/glyphs/uni1C_86.glif new file mode 100644 index 00000000..0c4577b8 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/uni1C_86.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + uni1C84 + com.fontlab.metricsRight + ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/uni1C_87.glif b/sources/FixelDisplay-Regular.ufo/glyphs/uni1C_87.glif new file mode 100644 index 00000000..fb6fe542 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/uni1C_87.glif @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + uni1C84-40 + com.fontlab.metricsRight + ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/uni1C_88.glif b/sources/FixelDisplay-Regular.ufo/glyphs/uni1C_88.glif new file mode 100644 index 00000000..cf2a569d --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/uni1C_88.glif @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/uni1E_B_C_.glif b/sources/FixelDisplay-Regular.ufo/glyphs/uni1E_B_C_.glif new file mode 100644 index 00000000..a292c709 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/uni1E_B_C_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+tilde.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/uni1E_B_D_.glif b/sources/FixelDisplay-Regular.ufo/glyphs/uni1E_B_D_.glif new file mode 100644 index 00000000..96702ed3 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/uni1E_B_D_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+tilde + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/uni2010.glif b/sources/FixelDisplay-Regular.ufo/glyphs/uni2010.glif new file mode 100644 index 00000000..10fc5ace --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/uni2010.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + hyphen + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/uni2D_E_E_.case.glif b/sources/FixelDisplay-Regular.ufo/glyphs/uni2D_E_E_.case.glif new file mode 100644 index 00000000..af6d0bd9 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/uni2D_E_E_.case.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/uni2D_E_E_.glif b/sources/FixelDisplay-Regular.ufo/glyphs/uni2D_E_E_.glif new file mode 100644 index 00000000..2bf97f14 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/uni2D_E_E_.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/uniE_000.alt.glif b/sources/FixelDisplay-Regular.ufo/glyphs/uniE_000.alt.glif new file mode 100644 index 00000000..cf91953d --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/uniE_000.alt.glif @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + ї_ї + public.markColor + 0.6,0.997,1,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/uniE_000.glif b/sources/FixelDisplay-Regular.ufo/glyphs/uniE_000.glif new file mode 100644 index 00000000..f53b8ea7 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/uniE_000.glif @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + ї_ї + public.markColor + 0.6,0.997,1,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/uniE_01A_.glif b/sources/FixelDisplay-Regular.ufo/glyphs/uniE_01A_.glif new file mode 100644 index 00000000..1e271b1d --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/uniE_01A_.glif @@ -0,0 +1,115 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/uniF_43A_.glif b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_43A_.glif new file mode 100644 index 00000000..e3a93a28 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_43A_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/uniF_43B_.glif b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_43B_.glif new file mode 100644 index 00000000..800f4f88 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_43B_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ustraightcyr+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/uniF_45D_.glif b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_45D_.glif new file mode 100644 index 00000000..13df2709 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_45D_.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Є+acute.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/uniF_45E_.glif b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_45E_.glif new file mode 100644 index 00000000..8d473a6f --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_45E_.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Iacute + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/uniF_45F_.glif b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_45F_.glif new file mode 100644 index 00000000..6b92f764 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_45F_.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + com.fontlab.recipe + I+dieresiscase.alt+acute.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/uniF_475.glif b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_475.glif new file mode 100644 index 00000000..b8c63432 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_475.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + є+acute + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/uniF_476.glif b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_476.glif new file mode 100644 index 00000000..8e68ba23 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_476.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + iacute + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/uniF_477.glif b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_477.glif new file mode 100644 index 00000000..4f524c36 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_477.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + dotlessi+dieresisacute + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/uniF_478.glif b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_478.glif new file mode 100644 index 00000000..26250a44 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_478.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Yat+acute.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/uniF_479.glif b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_479.glif new file mode 100644 index 00000000..08f57bed --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_479.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + yat+acute + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/uniF_498.glif b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_498.glif new file mode 100644 index 00000000..21d924d2 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_498.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ю+dieresis.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/uniF_499.glif b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_499.glif new file mode 100644 index 00000000..7fc51a47 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_499.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ю+dieresis + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/uniF_49A_.glif b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_49A_.glif new file mode 100644 index 00000000..b77b03f6 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_49A_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Obarcyr+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/uniF_49B_.glif b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_49B_.glif new file mode 100644 index 00000000..190028be --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_49B_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + obarcyr+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/uniF_49C_.glif b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_49C_.glif new file mode 100644 index 00000000..10b42e76 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_49C_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Schwacyr+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/uniF_49D_.glif b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_49D_.glif new file mode 100644 index 00000000..524460c2 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_49D_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + schwacyr+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/uniF_49E_.glif b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_49E_.glif new file mode 100644 index 00000000..0cc11d89 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_49E_.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Yatcyr + com.fontlab.metricsRight + Tshecyr + com.fontlab.recipe + Shhacyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/uniF_49F_.glif b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_49F_.glif new file mode 100644 index 00000000..bd7d2891 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_49F_.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + hbar + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/uniF_4C_6.glif b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_4C_6.glif new file mode 100644 index 00000000..6db3dea5 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_4C_6.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ч + com.fontlab.metricsRight + Ч + com.fontlab.recipe + Ч + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/uniF_4C_7.glif b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_4C_7.glif new file mode 100644 index 00000000..9589ac85 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_4C_7.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ч + com.fontlab.metricsRight + ч + com.fontlab.recipe + ч+enhookcyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/uniF_4C_C_.glif b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_4C_C_.glif new file mode 100644 index 00000000..04974821 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_4C_C_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + У+acute.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/uniF_4C_D_.glif b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_4C_D_.glif new file mode 100644 index 00000000..7e0ce60e --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_4C_D_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + y+acute + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/uniF_4D_2.glif b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_4D_2.glif new file mode 100644 index 00000000..9722a5b5 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_4D_2.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+grave.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/uniF_4D_3.glif b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_4D_3.glif new file mode 100644 index 00000000..1a85cecd --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_4D_3.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+grave + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/uniF_4D_4.glif b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_4D_4.glif new file mode 100644 index 00000000..7f218302 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_4D_4.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + P+caron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/uniF_4D_5.glif b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_4D_5.glif new file mode 100644 index 00000000..e65f8791 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_4D_5.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + p+caron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/uniF_4D_6.glif b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_4D_6.glif new file mode 100644 index 00000000..000372a5 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_4D_6.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Э+dotaccent.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/uniF_4D_7.glif b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_4D_7.glif new file mode 100644 index 00000000..62cd4cb2 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_4D_7.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + э+dotaccent + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/uniF_4D_8.glif b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_4D_8.glif new file mode 100644 index 00000000..93fa9484 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_4D_8.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Я+dieresis.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/uniF_4D_9.glif b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_4D_9.glif new file mode 100644 index 00000000..ffa976d7 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_4D_9.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + я+dieresis + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/uniF_50E_.glif b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_50E_.glif new file mode 100644 index 00000000..425e5a63 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_50E_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/uniF_50F_.glif b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_50F_.glif new file mode 100644 index 00000000..f616f385 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_50F_.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/uniF_510.glif b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_510.glif new file mode 100644 index 00000000..604b0c95 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_510.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/uniF_511.glif b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_511.glif new file mode 100644 index 00000000..ef73093e --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_511.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/uniF_512.glif b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_512.glif new file mode 100644 index 00000000..47c5af92 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_512.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + com.fontlab.metricsLeft + E + com.fontlab.metricsRight + E + com.fontlab.recipe + E+dieresis.case+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/uniF_513.glif b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_513.glif new file mode 100644 index 00000000..61db9c74 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_513.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.recipe + e+dieresis+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/uniF_514.glif b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_514.glif new file mode 100644 index 00000000..9e3037e0 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_514.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + com.fontlab.metricsLeft + E + com.fontlab.metricsRight + E + com.fontlab.recipe + E+dieresis.case+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/uniF_515.glif b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_515.glif new file mode 100644 index 00000000..250f86c5 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_515.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.recipe + e+dieresis+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/uniF_516.glif b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_516.glif new file mode 100644 index 00000000..6ffab15d --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_516.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + З+caron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/uniF_517.glif b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_517.glif new file mode 100644 index 00000000..6261f948 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_517.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + з+caron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/uniF_518.glif b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_518.glif new file mode 100644 index 00000000..9a5e01db --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_518.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/uniF_519.glif b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_519.glif new file mode 100644 index 00000000..b451775b --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_519.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/uniF_51A_.glif b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_51A_.glif new file mode 100644 index 00000000..652aabda --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_51A_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/uniF_51B_.glif b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_51B_.glif new file mode 100644 index 00000000..b2a1a857 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_51B_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/uniF_51C_.glif b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_51C_.glif new file mode 100644 index 00000000..09df3677 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_51C_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Obarcyr+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/uniF_51D_.glif b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_51D_.glif new file mode 100644 index 00000000..1595f16f --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_51D_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + obarcyr+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/uniF_51E_.glif b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_51E_.glif new file mode 100644 index 00000000..0346169c --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_51E_.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + com.fontlab.recipe + Obarcyr+dieresis.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/uniF_51F_.glif b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_51F_.glif new file mode 100644 index 00000000..7eec798d --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_51F_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.recipe + obarcyr+dieresis+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/uniF_521.glif b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_521.glif new file mode 100644 index 00000000..d6b64618 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_521.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ы+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/uniF_522.glif b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_522.glif new file mode 100644 index 00000000..871d4075 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_522.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Э+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/uniF_523.glif b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_523.glif new file mode 100644 index 00000000..104ae4c7 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_523.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + э+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/uniF_524.glif b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_524.glif new file mode 100644 index 00000000..2a70c88a --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_524.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Э+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/uniF_525.glif b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_525.glif new file mode 100644 index 00000000..f37a46d3 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_525.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + э+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/uniF_526.glif b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_526.glif new file mode 100644 index 00000000..00eafa2f --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_526.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Є+dieresis.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/uniF_527.glif b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_527.glif new file mode 100644 index 00000000..5c36158d --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_527.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + є+dieresis + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/uniF_528.glif b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_528.glif new file mode 100644 index 00000000..81dee631 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_528.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Я+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/uniF_529.glif b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_529.glif new file mode 100644 index 00000000..13dd0647 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_529.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + я+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/uniF_52A_.glif b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_52A_.glif new file mode 100644 index 00000000..112c681b --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_52A_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Я+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/uniF_52B_.glif b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_52B_.glif new file mode 100644 index 00000000..4dc168b6 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_52B_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + я+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/uniF_52C_.glif b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_52C_.glif new file mode 100644 index 00000000..f7dc50b5 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_52C_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ю+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/uniF_52D_.glif b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_52D_.glif new file mode 100644 index 00000000..b8e2c206 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_52D_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ю+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/uniF_52E_.glif b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_52E_.glif new file mode 100644 index 00000000..4aac5550 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_52E_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ю+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/uniF_52F_.glif b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_52F_.glif new file mode 100644 index 00000000..6758500d --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_52F_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ю+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/uniF_532.glif b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_532.glif new file mode 100644 index 00000000..47b2f731 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_532.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Й + com.fontlab.metricsRight + Й + com.fontlab.recipe + Й + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/uniF_533.glif b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_533.glif new file mode 100644 index 00000000..d2add4be --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_533.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + l() + com.fontlab.recipe + й+enhookcyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/uniF_536.glif b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_536.glif new file mode 100644 index 00000000..4e8472c9 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_536.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ы+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/uniF_537.glif b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_537.glif new file mode 100644 index 00000000..a562a646 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_537.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ы+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/uniF_538.glif b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_538.glif new file mode 100644 index 00000000..8e89d6a7 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_538.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Reversedzecyr+dieresis.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/uniF_539.glif b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_539.glif new file mode 100644 index 00000000..89467a4e --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_539.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + reversedzecyr+dieresis + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/uniF_830.glif b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_830.glif new file mode 100644 index 00000000..11f0d276 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_830.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+circumflex.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/uniF_831.glif b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_831.glif new file mode 100644 index 00000000..22b53293 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_831.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+circumflex + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/uniF_833.glif b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_833.glif new file mode 100644 index 00000000..c1857963 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_833.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+circumflex.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/uniF_834.glif b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_834.glif new file mode 100644 index 00000000..a005772f --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_834.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+circumflex + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/uniF_839.glif b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_839.glif new file mode 100644 index 00000000..c4d4d90b --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_839.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+circumflex.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/uniF_83A_.glif b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_83A_.glif new file mode 100644 index 00000000..139183d1 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_83A_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+circumflex + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/uniF_86F_.glif b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_86F_.glif new file mode 100644 index 00000000..d893954a --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_86F_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + K+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/uniF_870.glif b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_870.glif new file mode 100644 index 00000000..12f451d4 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_870.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + к+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/uniF_872.glif b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_872.glif new file mode 100644 index 00000000..95d2706e --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_872.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Л+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/uniF_873.glif b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_873.glif new file mode 100644 index 00000000..ecbb4645 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_873.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + л+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/uniF_875.glif b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_875.glif new file mode 100644 index 00000000..ab461854 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_875.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/uniF_876.glif b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_876.glif new file mode 100644 index 00000000..6e7b2d57 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_876.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/uniF_878.glif b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_878.glif new file mode 100644 index 00000000..ff362ad8 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_878.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + X+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/uniF_879.glif b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_879.glif new file mode 100644 index 00000000..8c9d2a42 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_879.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + x+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/uniF_87B_.glif b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_87B_.glif new file mode 100644 index 00000000..5ec14c98 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_87B_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ц+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/uniF_87C_.glif b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_87C_.glif new file mode 100644 index 00000000..1975f162 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_87C_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ц+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/uniF_87E_.glif b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_87E_.glif new file mode 100644 index 00000000..10f091a0 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_87E_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ч+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/uniF_87F_.glif b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_87F_.glif new file mode 100644 index 00000000..d41fa2fe --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/uniF_87F_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ч+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/uogonek.glif b/sources/FixelDisplay-Regular.ufo/glyphs/uogonek.glif new file mode 100644 index 00000000..627a01f8 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/uogonek.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+ogonek + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/uring.glif b/sources/FixelDisplay-Regular.ufo/glyphs/uring.glif new file mode 100644 index 00000000..0ec98dfb --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/uring.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+ring + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/ushort-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/ushort-cy.glif new file mode 100644 index 00000000..43a96d15 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/ushort-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + uni0443+breve + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/ustraightcyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/ustraightcyr.glif new file mode 100644 index 00000000..fc180385 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/ustraightcyr.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + v + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/ustraightstrokecyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/ustraightstrokecyr.glif new file mode 100644 index 00000000..9f220941 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/ustraightstrokecyr.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/utilde.glif b/sources/FixelDisplay-Regular.ufo/glyphs/utilde.glif new file mode 100644 index 00000000..1ea4a733 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/utilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+tilde + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/v.glif b/sources/FixelDisplay-Regular.ufo/glyphs/v.glif new file mode 100644 index 00000000..fc76b6c8 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/v.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/ve-cy.B_G_R_.glif b/sources/FixelDisplay-Regular.ufo/glyphs/ve-cy.B_G_R_.glif new file mode 100644 index 00000000..b62cc636 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/ve-cy.B_G_R_.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + b-5 + com.fontlab.metricsRight + b + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/ve-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/ve-cy.glif new file mode 100644 index 00000000..69508f82 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/ve-cy.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/ve-cy.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/ve-cy.ss01.glif new file mode 100644 index 00000000..93b630e9 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/ve-cy.ss01.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/virgo.glif b/sources/FixelDisplay-Regular.ufo/glyphs/virgo.glif new file mode 100644 index 00000000..23f8fc15 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/virgo.glif @@ -0,0 +1,224 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =55 + com.fontlab.metricsRight + =35 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/vzmetcomb-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/vzmetcomb-cy.glif new file mode 100644 index 00000000..65052f53 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/vzmetcomb-cy.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/w.glif b/sources/FixelDisplay-Regular.ufo/glyphs/w.glif new file mode 100644 index 00000000..e11c2bad --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/w.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/wacute.glif b/sources/FixelDisplay-Regular.ufo/glyphs/wacute.glif new file mode 100644 index 00000000..7852dfbe --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/wacute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + w+acute + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/wcircumflex.glif b/sources/FixelDisplay-Regular.ufo/glyphs/wcircumflex.glif new file mode 100644 index 00000000..38394575 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/wcircumflex.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + w+circumflex + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/wdieresis.glif b/sources/FixelDisplay-Regular.ufo/glyphs/wdieresis.glif new file mode 100644 index 00000000..af542906 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/wdieresis.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + w+dieresis + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/wecyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/wecyr.glif new file mode 100644 index 00000000..46b3604c --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/wecyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + w + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/wgrave.glif b/sources/FixelDisplay-Regular.ufo/glyphs/wgrave.glif new file mode 100644 index 00000000..6f075c07 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/wgrave.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + w+grave + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/x.glif b/sources/FixelDisplay-Regular.ufo/glyphs/x.glif new file mode 100644 index 00000000..dae957c4 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/x.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/xatailcyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/xatailcyr.glif new file mode 100644 index 00000000..d6849796 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/xatailcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + x + com.fontlab.metricsRight + zhetailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/y.glif b/sources/FixelDisplay-Regular.ufo/glyphs/y.glif new file mode 100644 index 00000000..9a1e47d6 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/y.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/yacute.glif b/sources/FixelDisplay-Regular.ufo/glyphs/yacute.glif new file mode 100644 index 00000000..b91b18c5 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/yacute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + y+acute + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/yaecyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/yaecyr.glif new file mode 100644 index 00000000..16d604a4 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/yaecyr.glif @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + я + com.fontlab.metricsRight + e + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/yatI_otified-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/yatI_otified-cy.glif new file mode 100644 index 00000000..afd96f03 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/yatI_otified-cy.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + com.fontlab.metricsRight + yatcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/yatcyr.B_G_R_.glif b/sources/FixelDisplay-Regular.ufo/glyphs/yatcyr.B_G_R_.glif new file mode 100644 index 00000000..42a02c22 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/yatcyr.B_G_R_.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hardsign-cy + com.fontlab.metricsRight + ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/yatcyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/yatcyr.glif new file mode 100644 index 00000000..730b7eb8 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/yatcyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hardsign-cy + com.fontlab.metricsRight + ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/ycircumflex.glif b/sources/FixelDisplay-Regular.ufo/glyphs/ycircumflex.glif new file mode 100644 index 00000000..eb5b2161 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/ycircumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + y+circumflex + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/ydieresis.glif b/sources/FixelDisplay-Regular.ufo/glyphs/ydieresis.glif new file mode 100644 index 00000000..c2ab844f --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/ydieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + y+dieresis + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/yen.glif b/sources/FixelDisplay-Regular.ufo/glyphs/yen.glif new file mode 100644 index 00000000..e2122bdd --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/yen.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/yen.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/yen.ss01.glif new file mode 100644 index 00000000..07f5e919 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/yen.ss01.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/yerN_eutral-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/yerN_eutral-cy.glif new file mode 100644 index 00000000..4aa54d18 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/yerN_eutral-cy.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hardsign-cy + com.fontlab.metricsRight + ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/yeru-cy.accented.glif b/sources/FixelDisplay-Regular.ufo/glyphs/yeru-cy.accented.glif new file mode 100644 index 00000000..ed74bbdc --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/yeru-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ы+acute + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/yeru-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/yeru-cy.glif new file mode 100644 index 00000000..2ed114ef --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/yeru-cy.glif @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/yeru-cy.ss01.glif b/sources/FixelDisplay-Regular.ufo/glyphs/yeru-cy.ss01.glif new file mode 100644 index 00000000..43d5e6ff --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/yeru-cy.ss01.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/yeruB_ackyer-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/yeruB_ackyer-cy.glif new file mode 100644 index 00000000..93030ce9 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/yeruB_ackyer-cy.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hardsign-cy + com.fontlab.metricsRight + dotlessi + com.fontlab.recipe + hardsign-cy_dotlessi + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/yi-cy.alt.glif b/sources/FixelDisplay-Regular.ufo/glyphs/yi-cy.alt.glif new file mode 100644 index 00000000..66c40936 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/yi-cy.alt.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.recipe + idieresis + public.markColor + 0.6,0.997,1,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/yi-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/yi-cy.glif new file mode 100644 index 00000000..054b318d --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/yi-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + idieresis + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/ylongdieresiscyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/ylongdieresiscyr.glif new file mode 100644 index 00000000..6b1863b3 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/ylongdieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + yeru-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/yn-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/yn-cy.glif new file mode 100644 index 00000000..9a15a5f6 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/yn-cy.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |izhitsacyr + com.fontlab.metricsRight + |izhitsacyr + com.fontlab.recipe + izhitsa + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/yuR_eversed-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/yuR_eversed-cy.glif new file mode 100644 index 00000000..a2774d27 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/yuR_eversed-cy.glif @@ -0,0 +1,20 @@ + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l + com.fontlab.recipe + ю + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/yusB_lended-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/yusB_lended-cy.glif new file mode 100644 index 00000000..f2c3cf2a --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/yusB_lended-cy.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + yusbigcyr + com.fontlab.metricsRight + yusbigcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/yusC_losedlittle-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/yusC_losedlittle-cy.glif new file mode 100644 index 00000000..33fc8c0f --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/yusC_losedlittle-cy.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + yuslittlecyr + com.fontlab.metricsRight + yuslittlecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/yusbigcyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/yusbigcyr.glif new file mode 100644 index 00000000..d91b2688 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/yusbigcyr.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/yusbigiotifiedcyr.B_G_R_.glif b/sources/FixelDisplay-Regular.ufo/glyphs/yusbigiotifiedcyr.B_G_R_.glif new file mode 100644 index 00000000..d69e5529 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/yusbigiotifiedcyr.B_G_R_.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + com.fontlab.metricsRight + ж + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/yusbigiotifiedcyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/yusbigiotifiedcyr.glif new file mode 100644 index 00000000..a6912126 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/yusbigiotifiedcyr.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + ж + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/yusiotifiedC_losedL_ittle-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/yusiotifiedC_losedL_ittle-cy.glif new file mode 100644 index 00000000..4e09941d --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/yusiotifiedC_losedL_ittle-cy.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + yusClosedlittle-cy + com.fontlab.recipe + yusClosedlittle-cy+н + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/yuslittlecyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/yuslittlecyr.glif new file mode 100644 index 00000000..88ab4f07 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/yuslittlecyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + v-5 + com.fontlab.metricsRight + v-5 + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/yuslittleiotifiedcyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/yuslittleiotifiedcyr.glif new file mode 100644 index 00000000..77b7675d --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/yuslittleiotifiedcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + v-10 + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/z.glif b/sources/FixelDisplay-Regular.ufo/glyphs/z.glif new file mode 100644 index 00000000..8ec75936 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/z.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/zacute.glif b/sources/FixelDisplay-Regular.ufo/glyphs/zacute.glif new file mode 100644 index 00000000..88f5c809 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/zacute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + z+acute + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/zcaron.glif b/sources/FixelDisplay-Regular.ufo/glyphs/zcaron.glif new file mode 100644 index 00000000..28138230 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/zcaron.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + z+caron + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/zdotaccent.glif b/sources/FixelDisplay-Regular.ufo/glyphs/zdotaccent.glif new file mode 100644 index 00000000..7773fdf6 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/zdotaccent.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + z+dotaccent + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/ze-cy.B_G_R_.glif b/sources/FixelDisplay-Regular.ufo/glyphs/ze-cy.B_G_R_.glif new file mode 100644 index 00000000..6157620b --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/ze-cy.B_G_R_.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |c-12 + com.fontlab.metricsRight + в-5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/ze-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/ze-cy.glif new file mode 100644 index 00000000..f4829757 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/ze-cy.glif @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |c-5 + com.fontlab.metricsRight + в + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/zedieresiscyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/zedieresiscyr.glif new file mode 100644 index 00000000..fad0c6e5 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/zedieresiscyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ze-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/zemlya-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/zemlya-cy.glif new file mode 100644 index 00000000..cd90fba6 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/zemlya-cy.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + z-10 + com.fontlab.metricsRight + z + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/zero.glif b/sources/FixelDisplay-Regular.ufo/glyphs/zero.glif new file mode 100644 index 00000000..83987b7b --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/zero.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/zero.osf.glif b/sources/FixelDisplay-Regular.ufo/glyphs/zero.osf.glif new file mode 100644 index 00000000..fdbeeae2 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/zero.osf.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + zero + com.fontlab.metricsRight + zero + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/zero.tf.glif b/sources/FixelDisplay-Regular.ufo/glyphs/zero.tf.glif new file mode 100644 index 00000000..68fdae41 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/zero.tf.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/zetailcyr.B_S_H_.glif b/sources/FixelDisplay-Regular.ufo/glyphs/zetailcyr.B_S_H_.glif new file mode 100644 index 00000000..ba0f1cb9 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/zetailcyr.B_S_H_.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + з + com.fontlab.metricsRight + з + com.fontlab.recipe + з + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/zetailcyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/zetailcyr.glif new file mode 100644 index 00000000..55644caf --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/zetailcyr.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + з + com.fontlab.metricsRight + з + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/zhe-cy.B_G_R_.glif b/sources/FixelDisplay-Regular.ufo/glyphs/zhe-cy.B_G_R_.glif new file mode 100644 index 00000000..8b9c76cf --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/zhe-cy.B_G_R_.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |k + com.fontlab.metricsRight + k + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/zhe-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/zhe-cy.glif new file mode 100644 index 00000000..8bb08c12 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/zhe-cy.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |k + com.fontlab.metricsRight + k + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/zhebrevecyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/zhebrevecyr.glif new file mode 100644 index 00000000..a5f97d18 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/zhebrevecyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + zhe-cy+breve + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/zhedieresiscyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/zhedieresiscyr.glif new file mode 100644 index 00000000..f331d437 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/zhedieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + zhe-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/zhetailcyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/zhetailcyr.glif new file mode 100644 index 00000000..17c98674 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/zhetailcyr.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ж + com.fontlab.metricsRight + katailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/zhwe-cy.glif b/sources/FixelDisplay-Regular.ufo/glyphs/zhwe-cy.glif new file mode 100644 index 00000000..d6bc7aa6 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/zhwe-cy.glif @@ -0,0 +1,87 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + з + com.fontlab.metricsRight + ж + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/glyphs/zjekomicyr.glif b/sources/FixelDisplay-Regular.ufo/glyphs/zjekomicyr.glif new file mode 100644 index 00000000..2c1784b6 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/glyphs/zjekomicyr.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + з-20 + com.fontlab.metricsRight + njekomicyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Regular.ufo/groups.plist b/sources/FixelDisplay-Regular.ufo/groups.plist new file mode 100644 index 00000000..0215e532 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/groups.plist @@ -0,0 +1,2992 @@ + + + + + accent + + grave + acute.case + grave.case + acute + + case + + arrowdown.case + arrowdown.ss01.case + arrowleft.case + arrowleft.ss01.case + arrowright.case + arrowright.ss01.case + arrowup.case + arrowup.ss01.case + backslash.case + bar.case + braceleft.case + braceright.case + bracketleft.case + bracketright.case + brokenbar.case + bullet.case + colon.case + emdash.case + endash.case + exclamdown.case + guillemetleft.case + guillemetright.case + guilsinglleft.case + guilsinglright.case + hyphen.case + parenleft.case + parenright.case + questiondown.case + semicolon.case + at.case + bracketangleleft.case + bracketangleright.case + slash.case + + case_def + + arrowdown + arrowdown.ss01 + arrowleft + arrowleft.ss01 + arrowright + arrowright.ss01 + arrowup + arrowup.ss01 + backslash + bar + braceleft + braceright + bracketleft + bracketright + brokenbar + bullet + colon + emdash + endash + exclamdown + guillemetleft + guillemetright + guilsinglleft + guilsinglright + hyphen + parenleft + parenright + questiondown + semicolon + at + bracketangleleft + bracketangleright + slash + + cpsp + + 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 + Agrave + Aacute + Acircumflex + Atilde + Adieresis + Aring + AE + Ccedilla + Egrave + Eacute + Ecircumflex + Edieresis + Igrave + Iacute + Icircumflex + Idieresis + Eth + Ntilde + Ograve + Oacute + Ocircumflex + Otilde + Odieresis + Oslash + Ugrave + Uacute + Ucircumflex + Udieresis + Yacute + Thorn + Amacron + Abreve + Aogonek + Cacute + Ccircumflex + Cdotaccent + Ccaron + Dcaron + Dcroat + Emacron + Ebreve + Edotaccent + Eogonek + Ecaron + Gcircumflex + Gbreve + Gdotaccent + Gcommaaccent + Hcircumflex + Hbar + Itilde + Imacron + Ibreve + Iogonek + Idotaccent + IJ + Jcircumflex + Kcommaaccent + Lacute + Lcommaaccent + Lcaron + Ldot + Lslash + Nacute + Ncommaaccent + Ncaron + Eng + Omacron + Obreve + Ohungarumlaut + OE + Racute + Rcommaaccent + Rcaron + Sacute + Scircumflex + Scedilla + Scaron + Tcedilla + Tcaron + Tbar + Utilde + Umacron + Ubreve + Uring + Uhungarumlaut + Uogonek + Wcircumflex + Ycircumflex + Ydieresis + Zacute + Zdotaccent + Zcaron + Schwa + Acaron + Gacute + AEacute + Oslashacute + Scommaaccent + Tcommaaccent + Delta + Omega + Iegravecyr + uniF43A + A-cy.accented + E-cy.accented + Ii-cy.accented + O-cy.accented + U-cy.accented + Yeru-cy.accented + Ereversed-cy.accented + Iu-cy.accented + Ia-cy.accented + Io-cy.accented + uniF498 + uniF49A + uniF49C + uniF49E + uniF4C6 + uniF4CC + uniF4D2 + uniF4D4 + uniF4D6 + uniF4D8 + uniF50E + uniF510 + uniF512 + uniF514 + uniF516 + uniF518 + uniF51A + uniF51C + uniF51E + Yeru-cymacron + uniF522 + uniF524 + uniF526 + uniF528 + uniF52A + uniF52C + uniF52E + uniF532 + uniF536 + uniF538 + uniF830 + uniF833 + uniF839 + uniF86F + uniF872 + uniF875 + uniF878 + uniF87B + uniF87E + Io-cy + Djecyr + Gjecyr + E-cy + Dze-cy + I-cy + Yi-cy + Jecyr + Ljecyr + Njecyr + Tshecyr + Kjecyr + Igravecyr + Ushort-cy + Dzhecyr + A-cy + Be-cy + Ve-cy + Ge-cy + De-cy + Ie-cy + Zhe-cy + Ze-cy + Ii-cy + Iishort-cy + Ka-cy + El-cy + Em-cy + En-cy + O-cy + Pe-cy + Er-cy + Es-cy + Te-cy + U-cy + Ef-cy + Ha-cy + Tse-cy + Che-cy + Sha-cy + Shcha-cy + Hardsign-cy + Yeru-cy + Softsign-cy + Ereversed-cy + Iu-cy + Ia-cy + Omegacyr + Yatcyr + Eiotifiedcyr + Yuslittlecyr + Yuslittleiotifiedcyr + Yusbigcyr + Yusbigiotifiedcyr + Ksicyr + Psicyr + Fitacyr + Izhitsacyr + Izhitsagravedblcyr + Ukcyr + Omegaroundcyr + Omegatitlocyr + Otcyr + Koppacyr + Ishortsharptailcyr + Semisoftcyr + Ertickcyr + Gheupturn-cy + Gestrokecyr + Gehookcyr + Zhetailcyr + Zetailcyr + Katailcyr + Kaverticalstrokecyr + Kastrokecyr + Kabashkcyr + Entailcyr + Engecyr + Pehookcyr + Haabkhcyr + Estailcyr + Tetailcyr + Ustraightcyr + Ustraightstrokecyr + Xatailcyr + Tetsecyr + Chetailcyr + Chevertcyr + Shhacyr + Cheabkhcyr + Cheabkhtailcyr + Palochkacyr + Zhebrevecyr + Kahookcyr + Elsharptailcyr + Enhookcyr + Ensharptailcyr + Chekhakascyr + Emsharptailcyr + Abrevecyr + Adieresiscyr + Aiecyr + Iebrevecyr + Schwacyr + Schwadieresiscyr + Zhedieresiscyr + Zedieresiscyr + Dzeabkhcyr + Imacroncyr + Idieresiscyr + Odieresiscyr + Obarcyr + Obardieresiscyr + Ereverseddieresiscyr + Umacroncyr + Udieresiscyr + Uacutedblcyr + Chedieresiscyr + Getailcyr + Ylongdieresiscyr + Gehookstrokecyr + Hahookcyr + Hastrokecyr + Dekomicyr + Djekomicyr + Zjekomicyr + Dzjekomicyr + Ljekomicyr + Njekomicyr + Sjekomicyr + Tjekomicyr + Reversedzecyr + Elhookcyr + Lhacyr + Rhacyr + Yaecyr + Qacyr + Wecyr + Kaaleutcyr + Elmiddlehookcyr + Enmiddlehookcyr + Petailcyr + Shhatailcyr + Enhookleftcyr + Dzzhecyr + Dchecyr + Eltailcyr + Wgrave + Wacute + Wdieresis + Germandbls + uni1EBC + Zemlya-cy + Dzelo-cy + DzeReversed-cy + Iota-cy + Djerv-cy + UkMonograph-cy + OmegaBroad-cy + YerNeutral-cy + YeruBackYer-cy + YatIotified-cy + YuReversed-cy + IotifiedA-cy + YusClosedlittle-cy + YusBlended-cy + YusiotifiedClosedLittle-cy + Yn-cy + TseReversed-cy + DeSoft-cy + ElSoft-cy + EmSoft-cy + OMonocular-cy + OBinocular-cy + ODoubleMonocular-cy + Dwe-cy + Dzwe-cy + Zhwe-cy + Cche-cy + Dzze-cy + TeWithMiddleHook-cy + Twe-cy + Tswe-cy + Tsse-cy + Tche-cy + Hwe-cy + Shwe-cy + DoubleO-cy + CrossedO-cy + A-cy.ss01 + A.ss01 + AE.ss01 + Aacute.ss01 + Abreve.ss01 + Acircumflex.ss01 + Adieresis.ss01 + Agrave.ss01 + Amacron.ss01 + Aogonek.ss01 + Aring.ss01 + Atilde.ss01 + Em-cy.ss01 + Eng.ss01 + G.ss01 + Gacute.ss01 + Gbreve.ss01 + Gcircumflex.ss01 + Gcommaaccent.ss01 + Gdotaccent.ss01 + Ha-cy.ss01 + Ia-cy.ss01 + J.ss01 + Jcircumflex.ss01 + K.ss01 + Ka-cy.ss01 + Kcommaaccent.ss01 + M.ss01 + N.ss01 + Nacute.ss01 + Ncaron.ss01 + Ncommaaccent.ss01 + Ntilde.ss01 + Q.ss01 + U-cy.ss01 + Ushort-cy.ss01 + V.ss01 + W.ss01 + Wacute.ss01 + Wcircumflex.ss01 + Wdieresis.ss01 + Wgrave.ss01 + X.ss01 + Y.ss01 + Yacute.ss01 + Ycircumflex.ss01 + Ydieresis.ss01 + Z.ss01 + Zacute.ss01 + Zcaron.ss01 + Zdotaccent.ss01 + Zetailcyr.BSH + Gestrokecyr.BSH + Estailcyr.BSH + Estailcyr.CHU + Zhe-cy.ss01 + + locl.SRB + + be-cy.SRB + iegravecyr.SRB + igravecyr.SRB + + loclSRB_def + + be-cy + iegravecyr + igravecyr + + locl_BGR + + De-cy.BGR + Ef-cy.BGR + El-cy.BGR + de-cy.BGR + eiotifiedcyr.BGR + el-cy.BGR + ge-cy.BGR + hardsign-cy.BGR + ii-cy.BGR + iishort-cy.BGR + iotifieda-cy.BGR + iu-cy.BGR + ka-cy.BGR + pe-cy.BGR + sha-cy.BGR + shcha-cy.BGR + softsign-cy.BGR + te-cy.BGR + tse-cy.BGR + ve-cy.BGR + yatcyr.BGR + yusbigiotifiedcyr.BGR + ze-cy.BGR + zhe-cy.BGR + + locl_def + + De-cy + Ef-cy + El-cy + de-cy + eiotifiedcyr + el-cy + ge-cy + hardsign-cy + ii-cy + iishort-cy + iotifieda-cy + iu-cy + ka-cy + pe-cy + sha-cy + shcha-cy + softsign-cy + te-cy + tse-cy + ve-cy + yatcyr + yusbigiotifiedcyr + ze-cy + zhe-cy + + pics + + neptune + leo + virgo + bishopwhite + knightwhite + rookblack + bishopblack + knightblack + heartwhite + diamondwhite-misc + spadewhite + heart + clubwhite + crossedswords + flower + floretteblack + florettewhite + floretteoutlinedpetalledblackeight + + pics_def + + A + B + C + D + E + F + G + H + I + J + K + L + M + N + O + P + Q + R + + public.kern1.A.ss012 + + A-cy.ss01 + A.ss01 + Aacute.ss01 + Abreve.ss01 + Acircumflex.ss01 + Adieresis.ss01 + Agrave.ss01 + Amacron.ss01 + Aogonek.ss01 + Aring.ss01 + Atilde.ss01 + + public.kern1.A2 + + A + A-cy + A-cy.accented + Aacute + Abreve + Abrevecyr + Acaron + Acircumflex + Adieresis + Adieresiscyr + Agrave + Amacron + Aogonek + Aring + Atilde + De-cy.BGR + Delta + El-cy.BGR + IotifiedA-cy + Yn-cy + YusClosedlittle-cy + YusiotifiedClosedLittle-cy + Yuslittlecyr + Yuslittleiotifiedcyr + uniF50E + uniF830 + + public.kern1.AE + + AE + AE.ss01 + AEacute + Aiecyr + + public.kern1.C1 + + C + Cacute + Ccaron + Ccedilla + Ccircumflex + Cdotaccent + E-cy + Eiotifiedcyr + Es-cy + Estailcyr + Estailcyr.BSH + Estailcyr.CHU + Reversedzecyr + uniF45D + uniF526 + uniF538 + uniF875 + + public.kern1.Decyr + + Chetailcyr + De-cy + Dwe-cy + Dzze-cy + Elsharptailcyr + Eltailcyr + Emsharptailcyr + Ensharptailcyr + Entailcyr + Ishortsharptailcyr + Petailcyr + Shcha-cy + Shwe-cy + Tetsecyr + Tse-cy + Tswe-cy + uniF87B + + public.kern1.E1 + + E + E-cy.accented + Eacute + Ebreve + Ecaron + Ecircumflex + Edieresis + Edotaccent + Egrave + Emacron + Eogonek + Ie-cy + Iebrevecyr + Io-cy + Io-cy.accented + Yaecyr + uni1EBC + uniF510 + uniF512 + uniF514 + uniF833 + + public.kern1.G.ss01 + + G.ss01 + Gacute.ss01 + Gbreve.ss01 + Gcircumflex.ss01 + Gcommaaccent.ss01 + Gdotaccent.ss01 + + public.kern1.G1 + + G + Gacute + Gbreve + Gcircumflex + Gcommaaccent + Gdotaccent + + public.kern1.Ge-cy + + DeSoft-cy + ElSoft-cy + EmSoft-cy + Engecyr + Ge-cy + Gehookstrokecyr + Gestrokecyr + Gestrokecyr.BSH + Getailcyr + Gheupturn-cy + Gjecyr + TseReversed-cy + YeruBackYer-cy + uniF872 + + public.kern1.H + + Eng + Eng.ss01 + H + Hbar + Hcircumflex + I + Iacute + Ibreve + Icircumflex + Idieresis + Idotaccent + Igrave + Imacron + Iogonek + Itilde + J.ss01 + Jcircumflex.ss01 + M + M.ss01 + N + N.ss01 + Nacute + Nacute.ss01 + Ncaron + Ncaron.ss01 + Ncommaaccent + Ncommaaccent.ss01 + Ntilde + Ntilde.ss01 + + public.kern1.Hardcyr + + Hardsign-cy + Ljecyr + Njecyr + Semisoftcyr + Shhacyr + Softsign-cy + YatIotified-cy + Yatcyr + YerNeutral-cy + uniF478 + + public.kern1.J1 + + J + Jcircumflex + Jecyr + + public.kern1.K + + K + K.ss01 + Ka-cy + Ka-cy.ss01 + Kaaleutcyr + Kabashkcyr + Kastrokecyr + Kcommaaccent + Kcommaaccent.ss01 + Kjecyr + uniF86F + + public.kern1.L + + L + Lacute + Lcaron + Lcommaaccent + Lslash + + public.kern1.O + + Cheabkhcyr + Cheabkhtailcyr + CrossedO-cy + D + Dcaron + Dcroat + DoubleO-cy + Ef-cy + Ef-cy.BGR + Ereversed-cy + Ereversed-cy.accented + Ereverseddieresiscyr + Eth + Fitacyr + Iu-cy + Iu-cy.accented + O + O-cy + O-cy.accented + OBinocular-cy + ODoubleMonocular-cy + OMonocular-cy + Oacute + Obarcyr + Obardieresiscyr + Obreve + Ocircumflex + Odieresis + Odieresiscyr + Ograve + Ohungarumlaut + Omacron + Omega + Omegaroundcyr + Oslash + Oslashacute + Otilde + Q + Qacyr + Schwa + Schwacyr + Schwadieresiscyr + Sjekomicyr + uniF498 + uniF49A + uniF49C + uniF4D2 + uniF4D6 + uniF518 + uniF51A + uniF51C + uniF51E + uniF522 + uniF524 + uniF52C + uniF52E + uniF839 + + public.kern1.Oslash.alt + + Ha-cy + Ha-cy.ss01 + Hahookcyr + Lhacyr + Rhacyr + X + X.ss01 + uniF878 + + public.kern1.P + + Er-cy + Ertickcyr + P + uniF4D4 + + public.kern1.R + + R + Racute + Rcaron + Rcommaaccent + + public.kern1.S1 + + Dzwe-cy + S + Sacute + Scaron + Scedilla + Scircumflex + Scommaaccent + + public.kern1.T1 + + Koppacyr + T + Tcaron + Tcedilla + Tcommaaccent + Te-cy + Tetailcyr + Tsse-cy + Twe-cy + + public.kern1.U1 + + OmegaBroad-cy + Omegacyr + Omegatitlocyr + Otcyr + Psicyr + U + Uacute + Ubreve + Ucircumflex + Udieresis + Ugrave + Uhungarumlaut + Umacron + Uogonek + Uring + Utilde + + public.kern1.Ucyr1 + + U-cy + U-cy.accented + U-cy.ss01 + Uacutedblcyr + Udieresiscyr + Umacroncyr + Ushort-cy + Ushort-cy.ss01 + uniF4CC + + public.kern1.V + + Izhitsacyr + Izhitsagravedblcyr + V + V.ss01 + + public.kern1.W.ss011 + + W.ss01 + Wacute.ss01 + Wcircumflex.ss01 + Wdieresis.ss01 + Wgrave.ss01 + + public.kern1.W1 + + W + Wacute + Wcircumflex + Wdieresis + Wecyr + Wgrave + + public.kern1.Y.ss011 + + Y.ss01 + Yacute.ss01 + Ycircumflex.ss01 + Ydieresis.ss01 + + public.kern1.Y1 + + Ustraightcyr + Ustraightstrokecyr + Y + Yacute + Ycircumflex + Ydieresis + uniF43A + + public.kern1.Yacyr + + Cche-cy + Che-cy + Chedieresiscyr + Chekhakascyr + Chevertcyr + Dekomicyr + Elhookcyr + Em-cy + En-cy + Enhookcyr + Enhookleftcyr + I-cy + Ia-cy + Ia-cy.accented + Ia-cy.ss01 + Idieresiscyr + Ii-cy + Ii-cy.accented + Iishort-cy + Imacroncyr + Palochkacyr + Pe-cy + Sha-cy + Tche-cy + Yeru-cy + Yeru-cy.accented + Yeru-cymacron + Yi-cy + Ylongdieresiscyr + YuReversed-cy + palochkacyr + uniF45E + uniF45F + uniF4C6 + uniF4D8 + uniF528 + uniF52A + uniF532 + uniF536 + uniF87E + + public.kern1.Z1 + + Dzelo-cy + Z + Z.ss01 + Zacute + Zacute.ss01 + Zcaron + Zcaron.ss01 + Zdotaccent + Zdotaccent.ss01 + Zemlya-cy + + public.kern1.Ze-cy + + Dzeabkhcyr + Ksicyr + Ze-cy + Zedieresiscyr + Zetailcyr + Zetailcyr.BSH + uniF516 + + public.kern1.Zhe-cy + + Dzzhecyr + Katailcyr + Kaverticalstrokecyr + Xatailcyr + YusBlended-cy + Yusbigcyr + Yusbigiotifiedcyr + Zhe-cy + Zhebrevecyr + Zhedieresiscyr + Zhetailcyr + Zhwe-cy + + public.kern1.a1 + + a + aacute + abreve + acaron + acircumflex + adieresis + agrave + amacron + aogonek + aring + atilde + + public.kern1.c1 + + c + cacute + ccaron + ccedilla + ccircumflex + cdotaccent + e-cy + e-cy.hist + eiotifiedcyr + eiotifiedcyr.BGR + es-cy + estailcyr + estailcyr.BSH + estailcyr.CHU + koppacyr + reversedzecyr + sjekomicyr + uni1C83 + uniF475 + uniF527 + uniF539 + uniF876 + + public.kern1.comma1 + + comma + quotedblbase + quotesinglbase + + public.kern1.copyright1 + + copyright + registered + + public.kern1.dcaron + + dcaron + dcaron.ss01 + lcaron + + public.kern1.decyr1 + + chetailcyr + dchecyr + de-cy + de-cy.ss01 + dwe-cy + dzze-cy + elsharptailcyr + eltailcyr + emsharptailcyr + ensharptailcyr + entailcyr + ishortsharptailcyr + petailcyr + shcha-cy + shcha-cy.BGR + shhatailcyr + shwe-cy + tetsecyr + tse-cy + tse-cy.BGR + tswe-cy + uniF87C + + public.kern1.e.ss011 + + e.ss01 + eacute.ss01 + ebreve.ss01 + ecaron.ss01 + ecircumflex.ss01 + edieresis.ss01 + edotaccent.ss01 + egrave.ss01 + emacron.ss01 + eogonek.ss01 + oe.ss01 + + public.kern1.e1 + + ae + aeacute + aiecyr + cheabkhcyr + cheabkhtailcyr + e + e-cy.accented + eacute + ebreve + ecaron + ecircumflex + edieresis + edotaccent + egrave + emacron + eogonek + ie-cy + iebrevecyr + iegravecyr + iegravecyr.SRB + io-cy + io-cy.accented + uni1EBD + uniF511 + uniF513 + uniF515 + uniF834 + yaecyr + + public.kern1.el-cy.BGR + + el-cy.BGR + iotifieda-cy + iotifieda-cy.BGR + uni1C81 + yn-cy + yusClosedlittle-cy + yusiotifiedClosedLittle-cy + yuslittlecyr + yuslittleiotifiedcyr + + public.kern1.emdash1 + + emdash + endash + hyphen + + public.kern1.f1 + + f + f_f + + public.kern1.fi + + f_f_i + fi + + public.kern1.five1 + + five + five.tf + + public.kern1.four1 + + four + four.tf + + public.kern1.g.ss011 + + g.ss01 + gacute.ss01 + gbreve.ss01 + gcircumflex.ss01 + gcommaaccent.ss01 + gdotaccent.ss01 + + public.kern1.g1 + + g + gacute + gbreve + gcircumflex + gcommaaccent + gdotaccent + + public.kern1.gecyr + + deSoft-cy + elSoft-cy + emSoft-cy + engecyr + ge-cy + gehookstrokecyr + gestrokecyr + gestrokecyr.BSH + getailcyr + gheupturn-cy + gjecyr + + public.kern1.guillemotright1 + + guillemetright + guilsinglright + + public.kern1.hardcyr + + Tjekomicyr + djekomicyr + elmiddlehookcyr + enmiddlehookcyr + gehookcyr + hardsign-cy + hardsign-cy.BGR + hardsign-cy.ss01 + ljecyr + ljecyr.ss01 + ljekomicyr + njecyr + njecyr.ss01 + njekomicyr + pehookcyr + semisoftcyr + softsign-cy + softsign-cy.BGR + softsign-cy.ss01 + tewithmiddlehook-cy + tjekomicyr + uni1C86 + uni1C87 + uniF479 + yatIotified-cy + yatcyr + yatcyr.BGR + yerNeutral-cy + zjekomicyr + + public.kern1.i1 + + Djekomicyr + Ljekomicyr + Njekomicyr + Zjekomicyr + i + i-cy + iacute + icircumflex + igrave + imacron + iogonek + itilde + uniF476 + yi-cy.alt + + public.kern1.icyr1 + + cche-cy + che-cy + chedieresiscyr + chekhakascyr + chevertcyr + de-cy.BGR + el-cy + elhookcyr + em-cy + en-cy + enhookcyr + enhookleftcyr + ia-cy + ia-cy.accented + idieresiscyr + igravecyr + ii-cy + ii-cy.accented + iishort-cy + imacroncyr + mu + pe-cy + psicyr + q + qacyr + sha-cy + sha-cy.BGR + tche-cy + tseReversed-cy + ubreve + uni1C85 + uniF4C7 + uniF4D9 + uniF521 + uniF529 + uniF52B + uniF533 + uniF537 + uniF873 + uniF87F + utilde + yeru-cy + yeru-cy.accented + yeru-cy.ss01 + yeruBackyer-cy + ylongdieresiscyr + yuReversed-cy + + public.kern1.j1 + + ij + j + jcircumflex + jdotless + + public.kern1.k + + k + ka-cy + ka-cy.BGR + kaaleutcyr + kabashkcyr + kastrokecyr + kcommaaccent + kgreenlandic + kjecyr + uniF870 + + public.kern1.l + + f_f_l + fl + l + lacute + lcommaaccent + + public.kern1.l.ss011 + + Iota-cy + iota-cy + l.ss01 + lacute.ss01 + lcommaaccent.ss01 + + public.kern1.n + + Djecyr + Elmiddlehookcyr + Enmiddlehookcyr + Gehookcyr + Hwe-cy + Kahookcyr + Pehookcyr + Shhatailcyr + TeWithMiddleHook-cy + Tshecyr + a-cy.accented + a-cy.ss01 + a.ss01 + aacute.ss01 + abreve.ss01 + abrevecyr + acircumflex.ss01 + adieresis.ss01 + adieresiscyr + agrave.ss01 + aogonek.ss01 + aring.ss01 + atilde.ss01 + djecyr + el-cy.ss01 + h + hbar + hcircumflex + hwe-cy + ia-cy.ss01 + iotifieda-cy.hist + m + n + nacute + napostrophe + ncaron + ncommaaccent + ntilde + pe-cy.BGR + q.ss01 + shhacyr + te-cy.BGR + tshecyr + uniF49E + uniF49F + uniF50F + uniF831 + + public.kern1.numero + + numero + numero.ss01 + + public.kern1.o1 + + b + b.ss01 + be-cy.SRB + crossedo-cy + ef-cy + er-cy + er-cy.ss01 + ereversed-cy + ereversed-cy.accented + ereverseddieresiscyr + ertickcyr + eturned + fitacyr + iu-cy + iu-cy.BGR + iu-cy.accented + o + o-cy + o-cy.accented + oBinocular-cy + oDoubleMonocular-cy + oMonocular-cy + oacute + obarcyr + obardieresiscyr + obreve + ocircumflex + odieresis + odieresiscyr + ograve + ohungarumlaut + omacron + omegaBroad-cy + omegaroundcyr + omegatitlocyr + oslashacute + otilde + p + p.ss01 + schwacyr + schwadieresiscyr + thorn + uni1C82 + uniF499 + uniF49D + uniF4D3 + uniF4D5 + uniF4D7 + uniF519 + uniF51B + uniF51D + uniF51F + uniF523 + uniF525 + uniF52D + uniF52F + uniF83A + + public.kern1.period1 + + ellipsis + period + + public.kern1.quotedbl1 + + quotedbl + quotesingle + + public.kern1.quoteleft1 + + quotedblleft + quoteleft + + public.kern1.quoteright1 + + apostrophemod + minute + quotedblright + quoteright + second + + public.kern1.s1 + + dzwe-cy + s + sacute + scaron + scedilla + scircumflex + scommaaccent + + public.kern1.t.ss011 + + t.ss01 + tcedilla.ss01 + tcommaaccent.ss01 + + public.kern1.t1 + + t + tcaron + tcedilla + tcommaaccent + + public.kern1.te-cy + + te-cy + tetailcyr + tsse-cy + twe-cy + + public.kern1.u1 + + igravecyr.SRB + ii-cy.BGR + iishort-cy.BGR + pe-cy.SRB + te-cy.SRB + u + uacute + ucircumflex + udieresis + ugrave + uhungarumlaut + umacron + uogonek + uring + + public.kern1.uni0435.ss011 + + ie-cy.ss01 + io-cy.ss01 + + public.kern1.v + + izhitsacyr + izhitsagravedblcyr + v + + public.kern1.w1 + + omegacyr + otcyr + w + wacute + wcircumflex + wdieresis + wecyr + wgrave + + public.kern1.x + + ha-cy + hahookcyr + lhacyr + rhacyr + uniF879 + x + + public.kern1.y1 + + Ukcyr + u-cy + u-cy.accented + uacutedblcyr + udieresiscyr + ukcyr + umacroncyr + uniF43B + uniF4CD + ushort-cy + ustraightcyr + ustraightstrokecyr + y + yacute + ycircumflex + ydieresis + + public.kern1.z1 + + dzelo-cy + z + zacute + zcaron + zdotaccent + zemlya-cy + + public.kern1.ze-cy + + dzeabkhcyr + ksicyr + uniF517 + ze-cy + ze-cy.BGR + zedieresiscyr + zetailcyr + zetailcyr.BSH + + public.kern1.zhe-cy + + dzzhecyr + katailcyr + kaverticalstrokecyr + xatailcyr + yusBlended-cy + yusbigcyr + yusbigiotifiedcyr + yusbigiotifiedcyr.BGR + zhe-cy + zhe-cy.BGR + zhebrevecyr + zhedieresiscyr + zhetailcyr + zhwe-cy + + public.kern2.A.ss01 + + A.ss01 + AE.ss01 + Aacute.ss01 + Acircumflex.ss01 + Adieresis.ss01 + Agrave.ss01 + Amacron.ss01 + Aogonek.ss01 + Atilde.ss01 + + public.kern2.A.ss012 + + A-cy.ss01 + Abreve.ss01 + Aring.ss01 + + public.kern2.A2 + + A + A-cy + A-cy.accented + AE + AEacute + Aacute + Abreve + Abrevecyr + Acaron + Acircumflex + Adieresis + Adieresiscyr + Agrave + Aiecyr + Amacron + Aogonek + Aring + Atilde + De-cy.BGR + Delta + El-cy.BGR + Yn-cy + YusClosedlittle-cy + Yuslittlecyr + uniF50E + uniF830 + + public.kern2.B + + B + D + Dcaron + E + Eacute + Ecaron + Ecircumflex + Edieresis + Edotaccent + Egrave + Emacron + Eogonek + F + H + Hbar + Hcircumflex + I + Iacute + Ibreve + Icircumflex + Idieresis + Idotaccent + Igrave + Imacron + Iogonek + Itilde + K + K.ss01 + Kcommaaccent + Kcommaaccent.ss01 + L + Lacute + Lcaron + Lcommaaccent + Ldot + M + N + N.ss01 + Nacute + Nacute.ss01 + Ncaron + Ncaron.ss01 + Ncommaaccent + Ncommaaccent.ss01 + Ntilde + Ntilde.ss01 + P + R + Racute + Rcaron + Rcommaaccent + Thorn + uni1EBC + + public.kern2.Che-cy + + Cche-cy + Che-cy + Chedieresiscyr + Chekhakascyr + Chetailcyr + Chevertcyr + uniF4C6 + uniF87E + + public.kern2.De-cy + + Dchecyr + De-cy + DeSoft-cy + Dwe-cy + Dzze-cy + Dzzhecyr + TseReversed-cy + + public.kern2.El-cy + + El-cy + ElSoft-cy + Elhookcyr + Elmiddlehookcyr + Elsharptailcyr + Eltailcyr + Lhacyr + Ljekomicyr + uniF872 + + public.kern2.Eth + + Dcroat + Eth + Gestrokecyr + + public.kern2.G + + C + Cacute + Ccaron + Ccedilla + Ccircumflex + Cdotaccent + CrossedO-cy + DoubleO-cy + E-cy + Ef-cy.BGR + Es-cy + Estailcyr + Estailcyr.BSH + Estailcyr.CHU + Fitacyr + G + G.ss01 + Gacute + Gacute.ss01 + Gbreve + Gbreve.ss01 + Gcircumflex + Gcircumflex.ss01 + Gcommaaccent + Gcommaaccent.ss01 + Gdotaccent + Gdotaccent.ss01 + Haabkhcyr + Koppacyr + O + O-cy + O-cy.accented + OBinocular-cy + ODoubleMonocular-cy + OE + OMonocular-cy + Oacute + Obarcyr + Obardieresiscyr + Obreve + Ocircumflex + Odieresis + Odieresiscyr + Ograve + Ohungarumlaut + Omacron + Omegaroundcyr + Oslash + Otilde + Q + Q.ss01 + Qacyr + Schwacyr + Schwadieresiscyr + Sjekomicyr + Ukcyr + YuReversed-cy + uniF45D + uniF49A + uniF49C + uniF4D2 + uniF518 + uniF51A + uniF51C + uniF51E + uniF526 + uniF839 + uniF875 + + public.kern2.Gecyr + + Be-cy + E-cy.accented + Eiotifiedcyr + Em-cy + EmSoft-cy + Emsharptailcyr + En-cy + Engecyr + Enhookcyr + Enhookleftcyr + Enmiddlehookcyr + Ensharptailcyr + Entailcyr + Er-cy + Ertickcyr + Gehookcyr + Gestrokecyr.BSH + Getailcyr + Gheupturn-cy + Gjecyr + Hwe-cy + I-cy + Iebrevecyr + Ii-cy + Ii-cy.accented + Io-cy.accented + IotifiedA-cy + Iu-cy.accented + Ka-cy + Kaaleutcyr + Kahookcyr + Katailcyr + Kaverticalstrokecyr + Kjecyr + Njekomicyr + Palochkacyr + Pe-cy + Pehookcyr + Petailcyr + Rhacyr + Shhacyr + Shhatailcyr + Shwe-cy + Tswe-cy + Ve-cy + Yeru-cy.accented + Yeru-cymacron + Yi-cy + Ylongdieresiscyr + Yusbigiotifiedcyr + YusiotifiedClosedLittle-cy + Yuslittleiotifiedcyr + palochkacyr + uniF45E + uniF45F + uniF498 + uniF4D4 + uniF510 + uniF512 + uniF514 + uniF52C + uniF52E + uniF532 + uniF536 + uniF833 + uniF86F + uniF87B + + public.kern2.Ia-cy + + Ia-cy + Ia-cy.accented + Yaecyr + uniF4D8 + uniF528 + uniF52A + + public.kern2.Iishort-cy + + Idieresiscyr + Iishort-cy + Imacroncyr + Ishortsharptailcyr + + public.kern2.J + + J + Jcircumflex + Jecyr + + public.kern2.Oslash.alt + + Ha-cy.ss01 + Hahookcyr + X + X.ss01 + Xatailcyr + uniF878 + + public.kern2.S + + Dzwe-cy + S + Sacute + Scaron + Scedilla + Scircumflex + Scommaaccent + + public.kern2.T + + Djecyr + T + Tcaron + Tcedilla + Tche-cy + Tcommaaccent + Te-cy + TeWithMiddleHook-cy + Tetailcyr + Tetsecyr + Tjekomicyr + Tshecyr + Tsse-cy + Twe-cy + + public.kern2.U + + Iota-cy + OmegaBroad-cy + Omegacyr + Omegatitlocyr + Otcyr + Psicyr + U + Uacute + Ubreve + Ucircumflex + Udieresis + Ugrave + Uhungarumlaut + Umacron + Uogonek + Uring + Utilde + + public.kern2.Ucyr.ss01 + + U-cy.accented + U-cy.ss01 + Uacutedblcyr + Udieresiscyr + Umacroncyr + Ushort-cy.ss01 + uniF4CC + + public.kern2.V + + Izhitsacyr + Izhitsagravedblcyr + V + V.ss01 + + public.kern2.W + + W + W.ss01 + Wacute + Wacute.ss01 + Wcircumflex + Wcircumflex.ss01 + Wdieresis + Wdieresis.ss01 + Wecyr + Wgrave + Wgrave.ss01 + + public.kern2.Y + + Ustraightcyr + Ustraightstrokecyr + Y + Y.ss01 + Yacute + Yacute.ss01 + Ycircumflex + Ycircumflex.ss01 + Ydieresis + Ydieresis.ss01 + uniF43A + + public.kern2.Z + + Dzelo-cy + Z + Z.ss01 + Zacute + Zacute.ss01 + Zcaron + Zcaron.ss01 + Zdotaccent + Zdotaccent.ss01 + Zemlya-cy + + public.kern2.Ze-cy1 + + Dzeabkhcyr + Ksicyr + Ze-cy + Zedieresiscyr + Zetailcyr + Zetailcyr.BSH + Zhwe-cy + uniF516 + + public.kern2.Zhe-cy1 + + YusBlended-cy + Yusbigcyr + Zhe-cy + Zhebrevecyr + Zhedieresiscyr + Zhetailcyr + + public.kern2.a + + a + a-cy + a-cy.accented + aacute + abreve + abrevecyr + acaron + acircumflex + adieresis + adieresiscyr + ae + aeacute + agrave + aiecyr + amacron + aogonek + aring + atilde + uniF50F + uniF831 + + public.kern2.acute.case + + acute.case + hungarumlaut.case + + public.kern2.che-cy + + cche-cy + che-cy + chedieresiscyr + chekhakascyr + chetailcyr + chevertcyr + uniF4C7 + uniF87F + + public.kern2.comma + + comma + quotedblbase + quotesinglbase + + public.kern2.copyright + + copyright + registered + + public.kern2.decyr.ss01 + + de-cy.ss01 + deSoft-cy + dwe-cy + dzze-cy + dzzhecyr + tseReversed-cy + + public.kern2.el-cy + + el-cy + el-cy.ss01 + elSoft-cy + elhookcyr + elmiddlehookcyr + elsharptailcyr + eltailcyr + lhacyr + ljecyr.ss01 + ljekomicyr + uniF873 + + public.kern2.el-cy.BGR1 + + el-cy.BGR + uni1C81 + yn-cy + yusClosedlittle-cy + yuslittlecyr + + public.kern2.emdash + + emdash + endash + hyphen + + public.kern2.f + + f + f_f + f_f_i + f_f_l + fi + fl + gestrokecyr + + public.kern2.f_f.ss01 + + f_f.ss01 + f_f_i.ss01 + f_f_l.ss01 + + public.kern2.fi.ss01 + + fi.ss01 + fl.ss01 + + public.kern2.five + + five + five.tf + + public.kern2.four + + four + four.tf + + public.kern2.g + + g + gacute + gbreve + gcircumflex + gcommaaccent + gdotaccent + + public.kern2.g.ss01 + + g.ss01 + gacute.ss01 + gbreve.ss01 + gcircumflex.ss01 + gcommaaccent.ss01 + gdotaccent.ss01 + + public.kern2.guillemotleft + + guillemetleft + guilsinglleft + + public.kern2.guillemotright + + guillemetright + guilsinglright + + public.kern2.h + + eiotifiedcyr.BGR + h + hcircumflex + hwe-cy + iotifieda-cy.BGR + iu-cy.BGR + k + ka-cy.BGR + kcommaaccent + l + lacute + lcaron + lcommaaccent + ldot + shhacyr + shhatailcyr + ve-cy.BGR + yatcyr.BGR + yusbigiotifiedcyr.BGR + + public.kern2.i1 + + i + i-cy + iacute + icircumflex + igrave + imacron + iogonek + itilde + uniF476 + yi-cy.alt + + public.kern2.ia-cy + + ia-cy + ia-cy.accented + ia-cy.ss01 + uniF4D9 + uniF529 + uniF52B + yaecyr + + public.kern2.j + + enhookleftcyr + j + jcircumflex + jdotless + + public.kern2.l.ss01 + + l.ss01 + lacute.ss01 + lcaron.ss01 + lcommaaccent.ss01 + ldot.ss01 + + public.kern2.m + + eiotifiedcyr + em-cy + emSoft-cy + emsharptailcyr + en-cy + eng + engecyr + enhookcyr + enmiddlehookcyr + ensharptailcyr + entailcyr + er-cy + er-cy.ss01 + ertickcyr + ge-cy + gehookcyr + gehookstrokecyr + gestrokecyr.BSH + getailcyr + gheupturn-cy + gjecyr + idieresiscyr + idotless + igravecyr + ii-cy + ii-cy.accented + iishort-cy + imacroncyr + iotifieda-cy + ishortsharptailcyr + iu-cy + iu-cy.accented + ka-cy + kaaleutcyr + kahookcyr + katailcyr + kaverticalstrokecyr + kgreenlandic + kjecyr + m + mu + n + nacute + ncaron + ncommaaccent + njecyr.ss01 + njekomicyr + ntilde + p + p.ss01 + pe-cy + pe-cy.BGR + pehookcyr + petailcyr + psicyr + r + racute + rcaron + rcommaaccent + rhacyr + sha-cy + shcha-cy + shwe-cy + softsign-cy + softsign-cy.BGR + softsign-cy.ss01 + te-cy.BGR + tse-cy + tswe-cy + uni1C85 + uniF499 + uniF4D5 + uniF521 + uniF52D + uniF52F + uniF533 + uniF537 + uniF870 + uniF87C + ve-cy + ve-cy.ss01 + yatIotified-cy + yeru-cy + yeru-cy.accented + yeru-cy.ss01 + ylongdieresiscyr + yusbigiotifiedcyr + yusiotifiedClosedLittle-cy + yuslittleiotifiedcyr + + public.kern2.o + + Dekomicyr + Djekomicyr + a-cy.ss01 + a.ss01 + aacute.ss01 + abreve.ss01 + acircumflex.ss01 + adieresis.ss01 + agrave.ss01 + amacron.ss01 + aogonek.ss01 + aring.ss01 + atilde.ss01 + c + cacute + ccaron + ccedilla + ccircumflex + cdotaccent + cent + crossedo-cy + d + d.ss01 + dcaron + dcaron.ss01 + dcroat + dcroat.ss01 + de-cy.BGR + dekomicyr + djekomicyr + e + e-cy + e-cy.accented + e-cy.hist + e.ss01 + eacute + eacute.ss01 + ebreve + ebreve.ss01 + ecaron + ecaron.ss01 + ecircumflex + ecircumflex.ss01 + edieresis + edieresis.ss01 + edotaccent + edotaccent.ss01 + ef-cy + egrave + egrave.ss01 + emacron + emacron.ss01 + eogonek + eogonek.ss01 + es-cy + estailcyr + estailcyr.BSH + estailcyr.CHU + eth + eturned + fitacyr + haabkhcyr + ie-cy + ie-cy.ss01 + iebrevecyr + iegravecyr + iegravecyr.SRB + io-cy + io-cy.accented + io-cy.ss01 + koppacyr + o + o-cy + o-cy.accented + oBinocular-cy + oDoubleMonocular-cy + oMonocular-cy + oacute + obarcyr + obardieresiscyr + obreve + ocircumflex + odieresis + odieresiscyr + oe.ss01 + ograve + ohungarumlaut + omacron + omegaBroad-cy + omegaroundcyr + omegatitlocyr + oslashacute + otilde + q + q.ss01 + qacyr + schwacyr + schwadieresiscyr + sjekomicyr + ukcyr + uni1C82 + uni1C83 + uni1EBD + uniF475 + uniF49D + uniF4D3 + uniF511 + uniF513 + uniF515 + uniF519 + uniF51B + uniF51D + uniF51F + uniF527 + uniF834 + uniF83A + uniF876 + yuReversed-cy + + public.kern2.percent + + percent + perthousand + + public.kern2.period + + ellipsis + period + + public.kern2.quotedbl + + quotedbl + quotesingle + + public.kern2.quoteleft + + quotedblleft + quoteleft + + public.kern2.quoteright + + apostrophemod + minute + quotedblright + quoteright + second + + public.kern2.s + + dzwe-cy + s + sacute + scaron + scedilla + scircumflex + scommaaccent + + public.kern2.t + + t + t.ss01 + tbar.ss01 + tcaron + tcaron.ss01 + tcedilla + tcedilla.ss01 + tcommaaccent + tcommaaccent.ss01 + + public.kern2.tecyr + + tche-cy + te-cy.ss01 + tetailcyr + tetsecyr + tewithmiddlehook-cy + tjekomicyr + tsse-cy + twe-cy + + public.kern2.u + + igravecyr.SRB + ii-cy.BGR + iishort-cy.BGR + iota-cy + pe-cy.SRB + sha-cy.BGR + shcha-cy.BGR + te-cy.SRB + tse-cy.BGR + u + uacute + ubreve + ucircumflex + udieresis + ugrave + uhungarumlaut + umacron + uogonek + uring + utilde + + public.kern2.v1 + + izhitsacyr + izhitsagravedblcyr + v + + public.kern2.w + + omegacyr + otcyr + w + wacute + wcircumflex + wdieresis + wecyr + wgrave + + public.kern2.x + + ha-cy + hahookcyr + uniF879 + x + + public.kern2.y + + u-cy + u-cy.accented + uacutedblcyr + udieresiscyr + umacroncyr + uniF43B + uniF4CD + ustraightcyr + ustraightstrokecyr + y + yacute + ycircumflex + ydieresis + + public.kern2.z + + dzelo-cy + z + zacute + zcaron + zdotaccent + zemlya-cy + + public.kern2.ze-cy1 + + dzeabkhcyr + ksicyr + uniF517 + ze-cy + ze-cy.BGR + zedieresiscyr + zetailcyr + zetailcyr.BSH + zhwe-cy + + public.kern2.zero + + uni1C80 + zero + zero.tf + + public.kern2.zhe-cy1 + + xatailcyr + yusBlended-cy + yusbigcyr + zhe-cy + zhe-cy.BGR + zhebrevecyr + zhedieresiscyr + zhetailcyr + + ss01 + + A-cy.ss01 + A.ss01 + AE.ss01 + Aacute.ss01 + Abreve.ss01 + Acircumflex.ss01 + Adieresis.ss01 + Agrave.ss01 + Amacron.ss01 + Aogonek.ss01 + Aring.ss01 + Atilde.ss01 + Em-cy.ss01 + Eng.ss01 + G.ss01 + Gacute.ss01 + Gbreve.ss01 + Gcircumflex.ss01 + Gcommaaccent.ss01 + Gdotaccent.ss01 + Ha-cy.ss01 + Ia-cy.ss01 + J.ss01 + Jcircumflex.ss01 + K.ss01 + Ka-cy.ss01 + Kcommaaccent.ss01 + M.ss01 + N.ss01 + Nacute.ss01 + Ncaron.ss01 + Ncommaaccent.ss01 + Ntilde.ss01 + Q.ss01 + U-cy.ss01 + Ushort-cy.ss01 + V.ss01 + W.ss01 + Wacute.ss01 + Wcircumflex.ss01 + Wdieresis.ss01 + Wgrave.ss01 + X.ss01 + Y.ss01 + Yacute.ss01 + Ycircumflex.ss01 + Ydieresis.ss01 + Z.ss01 + Zacute.ss01 + Zcaron.ss01 + Zdotaccent.ss01 + Zhe-cy.ss01 + a-cy.ss01 + a.ss01 + aacute.ss01 + abreve.ss01 + acircumflex.ss01 + adieresis.ss01 + ae.ss01 + agrave.ss01 + amacron.ss01 + aogonek.ss01 + aring.ss01 + arrowdown.ss01 + arrowdown.ss01.case + arrowleft.ss01 + arrowleft.ss01.case + arrowright.ss01 + arrowright.ss01.case + arrowup.ss01 + arrowup.ss01.case + atilde.ss01 + b.ss01 + d.ss01 + dcaron.ss01 + dcroat.ss01 + de-cy.ss01 + e.ss01 + eacute.ss01 + ebreve.ss01 + ecaron.ss01 + ecircumflex.ss01 + edieresis.ss01 + edotaccent.ss01 + egrave.ss01 + el-cy.ss01 + emacron.ss01 + eogonek.ss01 + er-cy.ss01 + f.ss01 + f_f.ss01 + f_f_i.ss01 + f_f_l.ss01 + fi.ss01 + fl.ss01 + g.ss01 + gacute.ss01 + gbreve.ss01 + gcircumflex.ss01 + gcommaaccent.ss01 + gdotaccent.ss01 + germandbls.ss01 + hardsign-cy.ss01 + ia-cy.ss01 + ie-cy.ss01 + io-cy.ss01 + l.ss01 + lacute.ss01 + lcaron.ss01 + lcommaaccent.ss01 + ldot.ss01 + ljecyr.ss01 + lslash.ss01 + njecyr.ss01 + numero.ss01 + oe.ss01 + p.ss01 + q.ss01 + softsign-cy.ss01 + t.ss01 + tbar.ss01 + tcaron.ss01 + tcedilla.ss01 + tcommaaccent.ss01 + te-cy.ss01 + ve-cy.ss01 + yen.ss01 + yeru-cy.ss01 + + ss01_def + + A-cy + A + AE + Aacute + Abreve + Acircumflex + Adieresis + Agrave + Amacron + Aogonek + Aring + Atilde + Em-cy + Eng + G + Gacute + Gbreve + Gcircumflex + Gcommaaccent + Gdotaccent + Ha-cy + Ia-cy + J + Jcircumflex + K + Ka-cy + Kcommaaccent + M + N + Nacute + Ncaron + Ncommaaccent + Ntilde + Q + U-cy + Ushort-cy + V + W + Wacute + Wcircumflex + Wdieresis + Wgrave + X + Y + Yacute + Ycircumflex + Ydieresis + Z + Zacute + Zcaron + Zdotaccent + Zhe-cy + a-cy + a + aacute + abreve + acircumflex + adieresis + ae + agrave + amacron + aogonek + aring + arrowdown + arrowdown.case + arrowleft + arrowleft.case + arrowright + arrowright.case + arrowup + arrowup.case + atilde + b + d + dcaron + dcroat + de-cy + e + eacute + ebreve + ecaron + ecircumflex + edieresis + edotaccent + egrave + el-cy + emacron + eogonek + er-cy + f + f_f + f_f_i + f_f_l + fi + fl + g + gacute + gbreve + gcircumflex + gcommaaccent + gdotaccent + germandbls + hardsign-cy + ia-cy + ie-cy + io-cy + l + lacute + lcaron + lcommaaccent + ldot + ljecyr + lslash + njecyr + numero + oe + p + q + softsign-cy + t + tbar + tcaron + tcedilla + tcommaaccent + te-cy + ve-cy + yen + yeru-cy + + + diff --git a/sources/FixelDisplay-Regular.ufo/kerning.plist b/sources/FixelDisplay-Regular.ufo/kerning.plist new file mode 100644 index 00000000..a1aefb39 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/kerning.plist @@ -0,0 +1,2046 @@ + + + + + Zhe-cy + + public.kern2.G + -20 + + space + + public.kern2.Y + -70 + + uni1C82 + + public.kern2.y + -70 + + public.kern1.A.ss012 + + public.kern2.B + -10 + public.kern2.G + -20 + public.kern2.T + -40 + public.kern2.U + -20 + public.kern2.Ucyr.ss01 + -40 + public.kern2.V + -30 + public.kern2.W + -20 + public.kern2.Y + -55 + public.kern2.a + -10 + public.kern2.emdash + -10 + public.kern2.o + -20 + public.kern2.quotedbl + -40 + public.kern2.quoteright + -50 + public.kern2.tecyr + -30 + public.kern2.u + -20 + public.kern2.w + -30 + public.kern2.x + 4 + public.kern2.y + -10 + + public.kern1.A2 + + public.kern2.G + -20 + public.kern2.J + 10 + public.kern2.T + -40 + public.kern2.U + -10 + public.kern2.Ucyr.ss01 + -20 + public.kern2.V + -25 + public.kern2.W + -20 + public.kern2.Y + -50 + public.kern2.a + -5 + public.kern2.decyr.ss01 + 4 + public.kern2.emdash + -10 + public.kern2.g + 5 + public.kern2.j + -20 + public.kern2.o + -10 + public.kern2.period + 30 + public.kern2.quotedbl + -50 + public.kern2.quoteright + -50 + public.kern2.t + -10 + public.kern2.tecyr + -30 + public.kern2.u + -5 + public.kern2.w + -20 + public.kern2.y + -40 + public.kern2.z + 10 + + public.kern1.C1 + + public.kern2.A.ss01 + 10 + public.kern2.G + -10 + public.kern2.Oslash.alt + 5 + public.kern2.S + 10 + public.kern2.T + 10 + public.kern2.Ucyr.ss01 + -2 + public.kern2.V + 10 + public.kern2.Y + -20 + public.kern2.comma + -10 + public.kern2.emdash + -20 + public.kern2.f + -2 + public.kern2.g + -6 + public.kern2.j + -6 + public.kern2.o + -10 + public.kern2.period + -20 + public.kern2.tecyr + -2 + public.kern2.u + -4 + public.kern2.x + -5 + + public.kern1.Decyr + + public.kern2.A.ss012 + 10 + public.kern2.G + -10 + public.kern2.Ucyr.ss01 + -30 + public.kern2.a + -10 + public.kern2.comma + 40 + public.kern2.decyr.ss01 + 2 + public.kern2.emdash + -10 + public.kern2.o + -10 + public.kern2.period + 20 + public.kern2.quoteright + -20 + public.kern2.tecyr + -20 + + public.kern1.E1 + + public.kern2.A.ss012 + 10 + public.kern2.G + -5 + public.kern2.J + 10 + public.kern2.o + -10 + public.kern2.period + 20 + public.kern2.w + -5 + public.kern2.y + -10 + + public.kern1.G.ss01 + + public.kern2.A.ss01 + 10 + public.kern2.T + -10 + public.kern2.V + -20 + public.kern2.W + -10 + public.kern2.Y + -20 + public.kern2.quotedbl + -50 + public.kern2.quoteright + -20 + public.kern2.t + -4 + public.kern2.w + -23 + public.kern2.y + -20 + + public.kern1.G1 + + public.kern2.G + 10 + public.kern2.T + -10 + public.kern2.V + -20 + public.kern2.W + -10 + public.kern2.Y + -20 + public.kern2.comma + 10 + public.kern2.emdash + 20 + public.kern2.period + 10 + + public.kern1.Ge-cy + + public.kern2.A.ss012 + -30 + public.kern2.A2 + -30 + public.kern2.G + -10 + public.kern2.Gecyr + 10 + public.kern2.T + 60 + public.kern2.Ucyr.ss01 + 30 + public.kern2.a + -60 + public.kern2.comma + -61 + public.kern2.emdash + -60 + public.kern2.i1 + 40 + public.kern2.m + -60 + public.kern2.o + -70 + public.kern2.period + -90 + public.kern2.quoteright + 10 + public.kern2.x + -50 + public.kern2.y + -50 + + public.kern1.H + + public.kern2.Gecyr + 1 + public.kern2.comma + -20 + public.kern2.j + -10 + public.kern2.quoteright + -20 + + public.kern1.Hardcyr + + public.kern2.A.ss012 + 8 + public.kern2.Oslash.alt + -15 + public.kern2.T + -110 + public.kern2.Ucyr.ss01 + -70 + public.kern2.comma + -20 + public.kern2.period + -10 + public.kern2.quotedbl + -120 + public.kern2.quoteright + -80 + public.kern2.tecyr + -30 + public.kern2.x + -20 + public.kern2.y + -30 + + public.kern1.J1 + + public.kern2.A.ss012 + 4 + public.kern2.A2 + -10 + public.kern2.S + -20 + public.kern2.T + -2 + public.kern2.Z + -10 + public.kern2.comma + -30 + public.kern2.period + -30 + + public.kern1.K + + public.kern2.A.ss01 + 20 + public.kern2.G + -40 + public.kern2.J + 10 + public.kern2.U + -3 + public.kern2.a + -10 + public.kern2.emdash + -60 + public.kern2.f + -5 + public.kern2.g + -20 + public.kern2.j + -10 + public.kern2.o + -40 + public.kern2.period + 10 + public.kern2.quoteright + -30 + public.kern2.t + -30 + public.kern2.tecyr + -40 + public.kern2.u + -30 + public.kern2.w + -30 + public.kern2.y + -40 + + public.kern1.L + + public.kern2.A.ss01 + 10 + public.kern2.A2 + 10 + public.kern2.G + -40 + public.kern2.T + -90 + public.kern2.U + -40 + public.kern2.V + -100 + public.kern2.W + -60 + public.kern2.Y + -90 + public.kern2.a + -10 + public.kern2.emdash + -80 + public.kern2.guillemotleft + -40 + public.kern2.j + -10 + public.kern2.o + -40 + public.kern2.quotedbl + -90 + public.kern2.quoteright + -70 + public.kern2.t + -20 + public.kern2.u + -10 + public.kern2.w + -60 + public.kern2.y + -90 + public.kern2.z + 10 + + public.kern1.O + + Zhe-cy + -20 + public.kern2.A.ss01 + -5 + public.kern2.A.ss012 + 5 + public.kern2.A2 + -20 + public.kern2.J + -40 + public.kern2.Oslash.alt + -30 + public.kern2.T + -40 + public.kern2.Ucyr.ss01 + -30 + public.kern2.V + -35 + public.kern2.W + -10 + public.kern2.Y + -40 + public.kern2.Z + -40 + public.kern2.a + -10 + public.kern2.comma + -40 + public.kern2.decyr.ss01 + -20 + public.kern2.emdash + 20 + public.kern2.j + -10 + public.kern2.period + -50 + public.kern2.quotedbl + -20 + public.kern2.quoteright + -10 + public.kern2.x + -10 + public.kern2.z + -10 + + public.kern1.Oslash.alt + + public.kern2.A.ss01 + 20 + public.kern2.G + -30 + public.kern2.J + 12 + public.kern2.S + -10 + public.kern2.a + -10 + public.kern2.comma + 10 + public.kern2.emdash + -30 + public.kern2.f + -5 + public.kern2.g + -5 + public.kern2.j + -10 + public.kern2.o + -30 + public.kern2.period + 10 + public.kern2.quoteright + -40 + public.kern2.s + -5 + public.kern2.t + -10 + public.kern2.tecyr + -20 + public.kern2.u + -10 + public.kern2.w + -20 + public.kern2.y + -20 + + public.kern1.P + + public.kern2.A.ss01 + -40 + public.kern2.A.ss012 + -40 + public.kern2.A2 + -60 + public.kern2.B + -20 + public.kern2.J + -70 + public.kern2.Oslash.alt + -30 + public.kern2.T + -20 + public.kern2.Ucyr.ss01 + -20 + public.kern2.V + -5 + public.kern2.W + -5 + public.kern2.Y + -10 + public.kern2.Z + -40 + public.kern2.a + -20 + public.kern2.comma + -110 + public.kern2.decyr.ss01 + -30 + public.kern2.emdash + -11 + public.kern2.g + -10 + public.kern2.g.ss01 + -20 + public.kern2.j + -30 + public.kern2.o + -30 + public.kern2.period + -130 + public.kern2.quotedbl + -20 + public.kern2.s + -20 + public.kern2.tecyr + 4 + public.kern2.x + -5 + public.kern2.z + -10 + + public.kern1.R + + public.kern2.A.ss01 + 10 + public.kern2.G + -20 + public.kern2.J + 10 + public.kern2.T + -20 + public.kern2.U + -20 + public.kern2.V + -15 + public.kern2.W + -5 + public.kern2.Y + -20 + public.kern2.a + -5 + public.kern2.emdash + -10 + public.kern2.j + -10 + public.kern2.o + -20 + public.kern2.quotedbl + -20 + public.kern2.s + -5 + public.kern2.t + -5 + public.kern2.u + -20 + public.kern2.w + -5 + public.kern2.y + -5 + + public.kern1.S1 + + public.kern2.A.ss01 + 10 + public.kern2.J + 16 + public.kern2.Oslash.alt + -5 + public.kern2.T + -5 + public.kern2.V + -10 + public.kern2.W + -10 + public.kern2.Y + -30 + public.kern2.Z + -10 + public.kern2.emdash + 10 + public.kern2.g + -20 + public.kern2.j + -10 + public.kern2.quotedbl + -30 + public.kern2.quoteright + -30 + public.kern2.t + -5 + public.kern2.w + -10 + public.kern2.x + -5 + public.kern2.y + -10 + + public.kern1.T1 + + public.kern2.A.ss01 + -30 + public.kern2.A.ss012 + -35 + public.kern2.A2 + -40 + public.kern2.G + -40 + public.kern2.J + -70 + public.kern2.S + -10 + public.kern2.T + 40 + public.kern2.V + 20 + public.kern2.W + 20 + public.kern2.Y + 10 + public.kern2.a + -60 + public.kern2.comma + -50 + public.kern2.decyr.ss01 + -80 + public.kern2.emdash + -70 + public.kern2.f + -10 + public.kern2.g + -70 + public.kern2.guillemotleft + -70 + public.kern2.guillemotright + -70 + public.kern2.i1 + 20 + public.kern2.j + -20 + public.kern2.m + -60 + public.kern2.o + -80 + public.kern2.period + -70 + public.kern2.quotedbl + 20 + public.kern2.quoteright + -10 + public.kern2.s + -60 + public.kern2.tecyr + -60 + public.kern2.u + -55 + public.kern2.w + -60 + public.kern2.x + -60 + public.kern2.y + -60 + public.kern2.z + -50 + + public.kern1.U1 + + public.kern2.A.ss01 + -10 + public.kern2.A.ss012 + -4 + public.kern2.A2 + -10 + public.kern2.J + -20 + public.kern2.Z + -20 + public.kern2.comma + -30 + public.kern2.j + -20 + public.kern2.period + -30 + public.kern2.quoteright + -40 + public.kern2.z + -10 + + public.kern1.Ucyr1 + + public.kern2.A.ss012 + -20 + public.kern2.A2 + -20 + public.kern2.G + -30 + public.kern2.T + 10 + public.kern2.a + -50 + public.kern2.comma + -70 + public.kern2.decyr.ss01 + -50 + public.kern2.emdash + -50 + public.kern2.guillemotright + -60 + public.kern2.i1 + 20 + public.kern2.m + -60 + public.kern2.o + -70 + public.kern2.period + -90 + public.kern2.tecyr + -20 + public.kern2.x + -20 + public.kern2.y + -30 + + public.kern1.V + + public.kern2.A.ss01 + -40 + public.kern2.A.ss012 + -20 + public.kern2.A2 + -25 + public.kern2.G + -35 + public.kern2.J + -70 + public.kern2.Oslash.alt + -10 + public.kern2.S + -30 + public.kern2.T + 20 + public.kern2.Z + -30 + public.kern2.a + -50 + public.kern2.comma + -60 + public.kern2.emdash + -40 + public.kern2.f + -5 + public.kern2.g + -40 + public.kern2.g.ss01 + -40 + public.kern2.guillemotleft + -50 + public.kern2.guillemotright + -30 + public.kern2.i1 + -2 + public.kern2.j + -20 + public.kern2.m + -50 + public.kern2.o + -55 + public.kern2.period + -90 + public.kern2.quotedbl + 10 + public.kern2.quoteright + -10 + public.kern2.s + -40 + public.kern2.t + -10 + public.kern2.u + -50 + public.kern2.w + -10 + public.kern2.x + -20 + public.kern2.y + -20 + public.kern2.z + -20 + + public.kern1.W.ss011 + + public.kern2.A.ss01 + -20 + public.kern2.A.ss012 + -10 + public.kern2.A2 + -20 + public.kern2.J + -30 + public.kern2.T + 20 + public.kern2.V + 10 + public.kern2.Z + -9 + public.kern2.a + -20 + public.kern2.comma + -80 + public.kern2.emdash + -20 + public.kern2.g + -15 + public.kern2.g.ss01 + -11 + public.kern2.guillemotright + -12 + public.kern2.i1 + -9 + public.kern2.m + -10 + public.kern2.o + -40 + public.kern2.period + -80 + public.kern2.quotedbl + 10 + public.kern2.s + -11 + public.kern2.u + -10 + public.kern2.w + -17 + public.kern2.y + -13 + public.kern2.z + -10 + + public.kern1.W1 + + public.kern2.A.ss01 + -40 + public.kern2.A.ss012 + -10 + public.kern2.A2 + -20 + public.kern2.G + -10 + public.kern2.J + -60 + public.kern2.S + -5 + public.kern2.T + 20 + public.kern2.Z + -10 + public.kern2.a + -40 + public.kern2.comma + -40 + public.kern2.emdash + -20 + public.kern2.g + -30 + public.kern2.guillemotleft + -40 + public.kern2.guillemotright + -40 + public.kern2.i1 + 10 + public.kern2.j + -20 + public.kern2.m + -30 + public.kern2.o + -45 + public.kern2.period + -40 + public.kern2.quoteright + -20 + public.kern2.s + -20 + public.kern2.u + -20 + public.kern2.w + -5 + public.kern2.x + -10 + public.kern2.y + -10 + public.kern2.z + -20 + + public.kern1.Y.ss011 + + public.kern2.A.ss01 + -30 + public.kern2.A.ss012 + -60 + public.kern2.G + -30 + public.kern2.S + -23 + public.kern2.Z + -30 + public.kern2.a + -50 + public.kern2.comma + -100 + public.kern2.emdash + -50 + public.kern2.i1 + 10 + public.kern2.m + -70 + public.kern2.o + -120 + public.kern2.period + -90 + public.kern2.quoteright + -20 + public.kern2.s + -56 + public.kern2.u + -60 + public.kern2.w + -40 + + public.kern1.Y1 + + public.kern2.A.ss012 + -30 + public.kern2.A2 + -50 + public.kern2.G + -40 + public.kern2.J + -80 + public.kern2.S + -30 + public.kern2.T + 10 + public.kern2.a + -70 + public.kern2.comma + -80 + public.kern2.emdash + -60 + public.kern2.f + -30 + public.kern2.g + -60 + public.kern2.guillemotleft + -80 + public.kern2.guillemotright + -60 + public.kern2.i1 + -20 + public.kern2.j + -30 + public.kern2.m + -80 + public.kern2.o + -110 + public.kern2.period + -100 + public.kern2.quotedbl + 10 + public.kern2.quoteright + -20 + public.kern2.s + -70 + public.kern2.t + -10 + public.kern2.u + -70 + public.kern2.w + -30 + public.kern2.x + -40 + public.kern2.y + -40 + public.kern2.z + -50 + + public.kern1.Z1 + + public.kern2.A.ss01 + 20 + public.kern2.A.ss012 + 20 + public.kern2.G + -30 + public.kern2.T + 10 + public.kern2.a + -10 + public.kern2.comma + 30 + public.kern2.emdash + -30 + public.kern2.f + -4 + public.kern2.i1 + 10 + public.kern2.o + -30 + public.kern2.period + 10 + public.kern2.quoteright + -40 + public.kern2.s + -10 + public.kern2.t + -10 + public.kern2.u + -20 + public.kern2.w + -20 + public.kern2.y + -10 + + public.kern1.a1 + + public.kern2.A.ss012 + 8 + public.kern2.G + -5 + public.kern2.S + -20 + public.kern2.T + -70 + public.kern2.Ucyr.ss01 + -4 + public.kern2.V + -60 + public.kern2.W + -40 + public.kern2.Y + -80 + public.kern2.comma + -10 + public.kern2.j + -20 + public.kern2.quotedbl + -40 + public.kern2.quoteright + -60 + public.kern2.t + -5 + public.kern2.tecyr + -3 + public.kern2.u + -10 + public.kern2.w + -15 + public.kern2.y + -20 + + public.kern1.c1 + + public.kern2.A2 + 20 + public.kern2.G + 10 + public.kern2.T + -50 + public.kern2.Ucyr.ss01 + -50 + public.kern2.V + -30 + public.kern2.W + -20 + public.kern2.Y + -50 + public.kern2.comma + -10 + public.kern2.g + 10 + public.kern2.period + -20 + public.kern2.quotedbl + -30 + public.kern2.quoteright + -20 + + public.kern1.comma1 + + public.kern2.G + -70 + public.kern2.J + 20 + public.kern2.T + -70 + public.kern2.U + -30 + public.kern2.V + -80 + public.kern2.W + -30 + public.kern2.Y + -100 + public.kern2.a + -20 + public.kern2.five + -20 + public.kern2.g.ss01 + -10 + public.kern2.h + -20 + public.kern2.i1 + -20 + public.kern2.m + -20 + public.kern2.o + -40 + public.kern2.t + -30 + public.kern2.u + -30 + public.kern2.w + -30 + public.kern2.x + -20 + public.kern2.y + -70 + public.kern2.z + -10 + public.kern2.zero + -30 + + public.kern1.dcaron + + public.kern2.B + 30 + public.kern2.Oslash.alt + 60 + public.kern2.S + 20 + public.kern2.T + 100 + public.kern2.U + 30 + public.kern2.V + 80 + public.kern2.W + 80 + public.kern2.Y + 70 + public.kern2.Z + 40 + public.kern2.f + 30 + public.kern2.fi.ss01 + 30 + public.kern2.h + 40 + public.kern2.i1 + 40 + public.kern2.j + 30 + public.kern2.l.ss01 + 10 + public.kern2.m + 1 + public.kern2.s + 5 + public.kern2.t + 40 + public.kern2.w + 30 + public.kern2.x + 20 + public.kern2.y + 20 + public.kern2.z + 40 + + public.kern1.decyr1 + + public.kern2.A2 + 10 + public.kern2.T + -80 + public.kern2.Ucyr.ss01 + -40 + public.kern2.comma + 20 + public.kern2.decyr.ss01 + 4 + public.kern2.emdash + -8 + public.kern2.o + -20 + public.kern2.period + 10 + public.kern2.quoteright + -20 + public.kern2.tecyr + -20 + + public.kern1.e.ss011 + + public.kern2.Oslash.alt + -10 + public.kern2.V + -50 + public.kern2.comma + -30 + public.kern2.emdash + -10 + public.kern2.quotedbl + -40 + + public.kern1.e1 + + public.kern2.A.ss012 + 8 + public.kern2.A2 + -5 + public.kern2.Oslash.alt + -20 + public.kern2.T + -80 + public.kern2.Ucyr.ss01 + -70 + public.kern2.V + -60 + public.kern2.W + -50 + public.kern2.Y + -110 + public.kern2.Z + -10 + public.kern2.j + -20 + public.kern2.period + -20 + public.kern2.quotedbl + -30 + public.kern2.quoteright + -40 + public.kern2.w + -10 + public.kern2.x + -20 + public.kern2.y + -20 + public.kern2.z + -10 + + public.kern1.emdash1 + + public.kern2.A.ss01 + 10 + public.kern2.A2 + -10 + public.kern2.G + 20 + public.kern2.J + -50 + public.kern2.Oslash.alt + -20 + public.kern2.S + -30 + public.kern2.T + -70 + public.kern2.Ucyr.ss01 + -50 + public.kern2.V + -40 + public.kern2.W + -20 + public.kern2.Y + -60 + public.kern2.Z + -10 + public.kern2.decyr.ss01 + -30 + public.kern2.five + -20 + public.kern2.four + 20 + public.kern2.g.ss01 + 10 + public.kern2.j + -20 + public.kern2.tecyr + -40 + public.kern2.x + -20 + public.kern2.y + -10 + public.kern2.z + -30 + + public.kern1.f1 + + public.kern2.A.ss012 + -10 + public.kern2.A2 + -20 + public.kern2.J + -60 + public.kern2.S + 10 + public.kern2.T + 10 + public.kern2.V + 10 + public.kern2.Y + 10 + public.kern2.a + -5 + public.kern2.comma + -40 + public.kern2.emdash + -20 + public.kern2.f + 10 + public.kern2.g + -10 + public.kern2.i1 + 1 + public.kern2.o + -30 + public.kern2.period + -70 + public.kern2.quotedbl + 20 + public.kern2.quoteright + 20 + public.kern2.s + -20 + public.kern2.t + 5 + public.kern2.y + 20 + + public.kern1.five1 + + public.kern2.comma + -30 + public.kern2.period + -15 + + public.kern1.four1 + + public.kern2.emdash + -20 + public.kern2.five + 10 + public.kern2.four + 10 + public.kern2.quotedbl + -20 + + public.kern1.g.ss011 + + public.kern2.V + -20 + public.kern2.comma + 10 + public.kern2.quoteright + 10 + + public.kern1.g1 + + public.kern2.A2 + 5 + public.kern2.T + -80 + public.kern2.V + -20 + public.kern2.W + -10 + public.kern2.Y + -30 + public.kern2.comma + 10 + public.kern2.f + 10 + public.kern2.j + 15 + public.kern2.quotedbl + -10 + public.kern2.y + 10 + + public.kern1.gecyr + + public.kern2.A2 + -10 + public.kern2.T + -40 + public.kern2.Ucyr.ss01 + -20 + public.kern2.comma + -60 + public.kern2.decyr.ss01 + -30 + public.kern2.emdash + -50 + public.kern2.o + -20 + public.kern2.period + -80 + public.kern2.quoteright + 30 + public.kern2.x + 10 + public.kern2.y + 20 + + public.kern1.guillemotright1 + + public.kern2.J + -40 + public.kern2.T + -70 + public.kern2.V + -50 + public.kern2.W + -40 + public.kern2.Y + -80 + + public.kern1.hardcyr + + public.kern2.Oslash.alt + -10 + public.kern2.T + -70 + public.kern2.Ucyr.ss01 + -60 + public.kern2.period + -10 + public.kern2.quotedbl + -110 + public.kern2.quoteright + -60 + public.kern2.tecyr + -90 + public.kern2.x + -20 + public.kern2.y + -50 + + public.kern1.i1 + + public.kern2.T + 20 + public.kern2.V + 20 + public.kern2.W + 10 + public.kern2.Y + 20 + public.kern2.i1 + 20 + public.kern2.j + -40 + public.kern2.quoteright + -10 + + public.kern1.icyr1 + + public.kern2.T + -60 + public.kern2.Ucyr.ss01 + -60 + public.kern2.V + -50 + public.kern2.W + -20 + public.kern2.Y + -80 + public.kern2.j + 2 + public.kern2.quoteright + -20 + + public.kern1.j1 + + public.kern2.quoteright + -20 + + public.kern1.k + + public.kern2.A.ss012 + 10 + public.kern2.A2 + 10 + public.kern2.G + -10 + public.kern2.J + 10 + public.kern2.T + -60 + public.kern2.Ucyr.ss01 + -20 + public.kern2.W + -20 + public.kern2.Y + -20 + public.kern2.a + -10 + public.kern2.emdash + -40 + public.kern2.o + -20 + public.kern2.x + 10 + + public.kern1.l + + public.kern2.quoteright + -20 + + public.kern1.l.ss011 + + public.kern2.V + -40 + public.kern2.W + -40 + public.kern2.comma + 20 + public.kern2.f + -40 + public.kern2.j + -20 + public.kern2.period + 20 + public.kern2.quoteright + -10 + public.kern2.t + -8 + public.kern2.w + -30 + public.kern2.y + -30 + + public.kern1.n + + public.kern2.T + -65 + public.kern2.Ucyr.ss01 + -70 + public.kern2.V + -60 + public.kern2.W + -40 + public.kern2.Y + -100 + public.kern2.j + -20 + public.kern2.quotedbl + -30 + public.kern2.quoteright + -20 + public.kern2.w + -5 + public.kern2.y + -20 + + public.kern1.o1 + + public.kern2.A.ss012 + -2 + public.kern2.A2 + -10 + public.kern2.J + -20 + public.kern2.Oslash.alt + -30 + public.kern2.S + -10 + public.kern2.T + -80 + public.kern2.Ucyr.ss01 + -90 + public.kern2.V + -55 + public.kern2.W + -45 + public.kern2.Y + -100 + public.kern2.Z + -30 + public.kern2.a + -5 + public.kern2.comma + -50 + public.kern2.j + -20 + public.kern2.period + -50 + public.kern2.quotedbl + -40 + public.kern2.quoteright + -40 + public.kern2.s + -10 + public.kern2.tecyr + -30 + public.kern2.w + -15 + public.kern2.x + -25 + public.kern2.y + -30 + public.kern2.z + -20 + + public.kern1.period1 + + public.kern2.A.ss01 + 20 + public.kern2.A.ss012 + 30 + public.kern2.A2 + 30 + public.kern2.G + -50 + public.kern2.J + 20 + public.kern2.Oslash.alt + 10 + public.kern2.T + -70 + public.kern2.U + -30 + public.kern2.Ucyr.ss01 + -20 + public.kern2.V + -90 + public.kern2.W + -40 + public.kern2.Y + -100 + public.kern2.Z + 10 + public.kern2.five + -10 + public.kern2.g.ss01 + 10 + public.kern2.j + -20 + public.kern2.o + -50 + public.kern2.t + -30 + public.kern2.tecyr + -60 + public.kern2.u + -30 + public.kern2.w + -30 + public.kern2.y + -75 + public.kern2.zero + -10 + + public.kern1.quotedbl1 + + public.kern2.A.ss01 + -70 + public.kern2.A.ss012 + -30 + public.kern2.A2 + -50 + public.kern2.G + -20 + public.kern2.J + -80 + public.kern2.T + 30 + public.kern2.V + 10 + public.kern2.Y + 10 + public.kern2.Z + -10 + public.kern2.a + -30 + public.kern2.decyr.ss01 + -40 + public.kern2.four + -60 + public.kern2.g + -30 + public.kern2.g.ss01 + -40 + public.kern2.j + -20 + public.kern2.o + -40 + public.kern2.period + -8 + public.kern2.s + -20 + public.kern2.u + -10 + public.kern2.x + -10 + public.kern2.z + -10 + public.kern2.zero + -20 + + public.kern1.quoteleft1 + + public.kern2.A.ss01 + -70 + public.kern2.A2 + -60 + public.kern2.G + -20 + public.kern2.J + -40 + public.kern2.Oslash.alt + 10 + public.kern2.T + 40 + public.kern2.V + 20 + public.kern2.Y + 20 + public.kern2.Z + -10 + public.kern2.a + -30 + public.kern2.f + 10 + public.kern2.g + -50 + public.kern2.g.ss01 + -30 + public.kern2.i1 + 10 + public.kern2.j + -10 + public.kern2.m + -20 + public.kern2.o + -60 + public.kern2.s + -30 + public.kern2.u + -20 + public.kern2.w + -30 + public.kern2.x + -30 + public.kern2.y + -10 + public.kern2.z + -30 + + public.kern1.quoteright1 + + public.kern2.A.ss01 + -80 + public.kern2.A2 + -60 + public.kern2.G + -30 + public.kern2.J + -50 + public.kern2.Oslash.alt + -10 + public.kern2.S + -30 + public.kern2.T + 20 + public.kern2.U + -20 + public.kern2.Y + 10 + public.kern2.Z + -30 + public.kern2.a + -70 + public.kern2.g + -80 + public.kern2.g.ss01 + -90 + public.kern2.h + -30 + public.kern2.i1 + -20 + public.kern2.m + -30 + public.kern2.o + -90 + public.kern2.s + -70 + public.kern2.u + -30 + public.kern2.w + -40 + public.kern2.x + -40 + public.kern2.y + -30 + public.kern2.z + -60 + + public.kern1.s1 + + public.kern2.A2 + 10 + public.kern2.Oslash.alt + -5 + public.kern2.T + -60 + public.kern2.V + -40 + public.kern2.W + -20 + public.kern2.Y + -70 + public.kern2.Z + -10 + public.kern2.comma + -10 + public.kern2.o + -10 + public.kern2.period + -20 + public.kern2.quotedbl + -30 + public.kern2.quoteright + -20 + public.kern2.x + -10 + + public.kern1.t1 + + public.kern2.G + -10 + public.kern2.J + 20 + public.kern2.T + -15 + public.kern2.V + -20 + public.kern2.W + -10 + public.kern2.Y + -25 + public.kern2.emdash + -30 + public.kern2.f + 10 + public.kern2.o + -10 + public.kern2.t + 10 + public.kern2.y + 10 + public.kern2.z + 20 + + public.kern1.u1 + + public.kern2.T + -60 + public.kern2.V + -50 + public.kern2.W + -30 + public.kern2.Y + -80 + public.kern2.j + -10 + public.kern2.quotedbl + -10 + public.kern2.quoteright + -20 + + public.kern1.uni0435.ss011 + + public.kern2.T + -70 + public.kern2.Ucyr.ss01 + -60 + public.kern2.V + -50 + public.kern2.W + -20 + public.kern2.Y + -60 + public.kern2.w + -4 + public.kern2.x + -10 + public.kern2.y + -10 + + public.kern1.w1 + + public.kern2.A.ss012 + -3 + public.kern2.A2 + -20 + public.kern2.J + -50 + public.kern2.Oslash.alt + -20 + public.kern2.S + -20 + public.kern2.T + -60 + public.kern2.V + -10 + public.kern2.W + -5 + public.kern2.Y + -30 + public.kern2.Z + -30 + public.kern2.a + -15 + public.kern2.comma + -20 + public.kern2.j + -10 + public.kern2.o + -15 + public.kern2.period + -30 + + public.kern1.x + + public.kern2.G + -10 + public.kern2.S + -10 + public.kern2.T + -60 + public.kern2.Ucyr.ss01 + -20 + public.kern2.V + -20 + public.kern2.W + -10 + public.kern2.Y + -40 + public.kern2.emdash + -20 + public.kern2.o + -25 + public.kern2.quotedbl + -10 + public.kern2.s + -10 + + public.kern1.y1 + + public.kern2.A.ss012 + -4 + public.kern2.A2 + -20 + public.kern2.J + -60 + public.kern2.Oslash.alt + -30 + public.kern2.T + -60 + public.kern2.Ucyr.ss01 + -6 + public.kern2.V + -20 + public.kern2.W + -5 + public.kern2.Y + -40 + public.kern2.Z + -20 + public.kern2.a + -5 + public.kern2.comma + -40 + public.kern2.decyr.ss01 + -20 + public.kern2.f + 20 + public.kern2.g + -10 + public.kern2.j + -10 + public.kern2.o + -20 + public.kern2.period + -80 + public.kern2.quoteright + 20 + public.kern2.t + 10 + + public.kern1.z1 + + public.kern2.A2 + 10 + public.kern2.S + -20 + public.kern2.T + -50 + public.kern2.V + -20 + public.kern2.W + -20 + public.kern2.Y + -50 + public.kern2.comma + 10 + public.kern2.f + 10 + public.kern2.o + -20 + public.kern2.quotedbl + -20 + public.kern2.quoteright + -10 + + + diff --git a/sources/FixelDisplay-Regular.ufo/layercontents.plist b/sources/FixelDisplay-Regular.ufo/layercontents.plist new file mode 100644 index 00000000..7a35a5cf --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/layercontents.plist @@ -0,0 +1,10 @@ + + + + + + public.default + glyphs + + + diff --git a/sources/FixelDisplay-Regular.ufo/lib.plist b/sources/FixelDisplay-Regular.ufo/lib.plist new file mode 100644 index 00000000..c0069150 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/lib.plist @@ -0,0 +1,1671 @@ + + + + + com.fontlab.v2.tth + + stems + + 69 + + width + 69 + horizontal + + round + + 35 + 3 + 47 + 4 + 60 + 5 + 0 + 7 + 22 + 8 + + + 74 + + width + 74 + horizontal + + round + + 19 + 2 + 35 + 3 + 47 + 4 + 60 + 5 + 72 + 6 + 0 + 7 + 20 + 8 + + + 76 + + width + 76 + horizontal + + round + + 19 + 2 + 35 + 3 + 72 + 6 + 0 + 7 + 20 + 8 + + + 80 + + width + 80 + horizontal + + round + + 29 + 3 + 47 + 4 + 60 + 5 + 72 + 6 + 0 + 7 + 20 + 8 + + + 99 + + width + 99 + horizontal + + round + + 19 + 2 + 29 + 3 + 37 + 4 + 48 + 5 + 58 + 6 + 0 + 7 + 16 + 8 + + + 74 + + width + 74 + horizontal + + round + + 19 + 2 + 35 + 3 + 47 + 4 + 60 + 5 + 72 + 6 + 0 + 7 + 20 + 8 + + + 80 + + width + 80 + horizontal + + round + + 29 + 3 + 47 + 4 + 60 + 5 + 72 + 6 + 0 + 7 + 20 + 8 + + + 93 + + width + 93 + horizontal + + round + + 19 + 2 + 29 + 3 + 37 + 4 + 48 + 5 + 58 + 6 + 0 + 7 + 16 + 8 + + + + + com.schriftgestaltung.disablesAutomaticAlignment + + com.schriftgestaltung.fontMasterID + master01 + com.schriftgestaltung.glyphOrder + + com.schriftgestaltung.master.name + regular + com.schriftgestaltung.useNiceNames + + com.schriftgestaltung.weightValue + 400 + public.postscriptNames + + A-cy + uni0410 + A-cy.ss01 + uni0410.ss01 + Be-cy + uni0411 + Che-cy + uni0427 + De-cy + uni0414 + Dze-cy + uni0405 + E-cy + uni0404 + Ef-cy + uni0424 + El-cy + uni041B + Em-cy + uni041C + Em-cy.ss01 + uni041C.ss01 + En-cy + uni041D + Er-cy + uni0420 + Ereversed-cy + uni042D + Es-cy + uni0421 + Gacute + uni01F4 + Gacute.ss01 + uni01F4.ss01 + Gcommaaccent + uni0122 + Gcommaaccent.ss01 + uni0122.ss01 + Ge-cy + uni0413 + Germandbls + uni1E9E + Gheupturn-cy + uni0490 + Ha-cy + uni0425 + Ha-cy.ss01 + uni0425.ss01 + Hardsign-cy + uni042A + I-cy + uni0406 + Ia-cy + uni042F + Ia-cy.ss01 + uni042F.ss01 + Ie-cy + uni0415 + Ii-cy + uni0418 + Iishort-cy + uni0419 + Io-cy + uni0401 + Iu-cy + uni042E + Ka-cy + uni041A + Ka-cy.ss01 + uni041A.ss01 + Kcommaaccent + uni0136 + Kcommaaccent.ss01 + uni0136.ss01 + Lcommaaccent + uni013B + Ncommaaccent + uni0145 + Ncommaaccent.ss01 + uni0145.ss01 + O-cy + uni041E + Pe-cy + uni041F + Rcommaaccent + uni0156 + Scommaaccent + uni0218 + Sha-cy + uni0428 + Shcha-cy + uni0429 + Softsign-cy + uni042C + Tcedilla + uni0162 + Tcommaaccent + uni021A + Te-cy + uni0422 + Tse-cy + uni0426 + U-cy + uni0423 + U-cy.ss01 + uni0423.ss01 + Ushort-cy + uni040E + Ushort-cy.ss01 + uni040E.ss01 + Ve-cy + uni0412 + Yeru-cy + uni042B + Yi-cy + uni0407 + Ze-cy + uni0417 + Zhe-cy + uni0416 + Zhe-cy.ss01 + uni0416.ss01 + _perc-circule + _perccircule + a-cy + uni0430 + a-cy.ss01 + uni0430.ss01 + be-cy + uni0431 + che-cy + uni0447 + commaaccentcomb + uni0326 + commaaccentcomb.salt + uni0326.salt + de-cy + uni0434 + de-cy.ss01 + uni0434.ss01 + dze-cy + uni0455 + e-cy + uni0454 + ef-cy + uni0444 + el-cy + uni043B + el-cy.ss01 + uni043B.ss01 + em-cy + uni043C + en-cy + uni043D + er-cy + uni0440 + er-cy.ss01 + uni0440.ss01 + ereversed-cy + uni044D + es-cy + uni0441 + euro + Euro + gacute + uni01F5 + gacute.ss01 + uni01F5.ss01 + gcommaaccent + uni0123 + gcommaaccent.ss01 + uni0123.ss01 + ge-cy + uni0433 + gheupturn-cy + uni0491 + guillemetleft + guillemotleft + guillemetright + guillemotright + ha-cy + uni0445 + hardsign-cy + uni044A + hardsign-cy.ss01 + uni044A.ss01 + hryvnia + uni20B4 + i-cy + uni0456 + ia-cy + uni044F + ia-cy.ss01 + uni044F.ss01 + idotless + dotlessi + ie-cy + uni0435 + ie-cy.ss01 + uni0435.ss01 + ii-cy + uni0438 + iishort-cy + uni0439 + io-cy + uni0451 + io-cy.ss01 + uni0451.ss01 + iu-cy + uni044E + jdotless + uni0237 + je-cy + uni0458 + ka-cy + uni043A + kcommaaccent + uni0137 + lcommaaccent + uni013C + lcommaaccent.ss01 + uni013C.ss01 + ncommaaccent + uni0146 + numero + uni2116 + numero.ss01 + uni2116.ss01 + o-cy + uni043E + onesuperior + uni00B9 + pe-cy + uni043F + rcommaaccent + uni0157 + scommaaccent + uni0219 + sha-cy + uni0448 + shcha-cy + uni0449 + softsign-cy + uni044C + softsign-cy.ss01 + uni044C.ss01 + tcedilla + uni0163 + tcedilla.ss01 + uni0163.ss01 + tcommaaccent + uni021B + tcommaaccent.ss01 + uni021B.ss01 + te-cy + uni0442 + te-cy.ss01 + uni0442.ss01 + threesuperior + uni00B3 + tse-cy + uni0446 + twosuperior + uni00B2 + u-cy + uni0443 + ushort-cy + uni045E + ve-cy + uni0432 + ve-cy.ss01 + uni0432.ss01 + yeru-cy + uni044B + yeru-cy.ss01 + uni044B.ss01 + yi-cy + uni0457 + ze-cy + uni0437 + zhe-cy + uni0436 + + public.skipExportGlyphs + + Oslash.bold + oslash.bold + _perc-circule + + public.glyphOrder + + .notdef + NULL + CR + space + A + Aacute + Abreve + Acircumflex + Adieresis + Agrave + Amacron + Aogonek + Aring + Atilde + AE + B + C + Cacute + Ccaron + Ccedilla + Ccircumflex + Cdotaccent + D + Eth + Dcaron + Dcroat + E + Eacute + Ebreve + Ecaron + Ecircumflex + Edieresis + Edotaccent + Egrave + Emacron + Eogonek + F + G + Gacute + Gbreve + Gcircumflex + Gcommaaccent + Gdotaccent + H + Hbar + Hcircumflex + I + IJ + Iacute + Ibreve + Icircumflex + Idieresis + Idotaccent + Igrave + Imacron + Iogonek + Itilde + J + Jcircumflex + K + Kcommaaccent + L + Lacute + Lcaron + Lcommaaccent + Ldot + Lslash + M + N + Nacute + Ncaron + Ncommaaccent + Eng + Ntilde + O + Oacute + Obreve + Ocircumflex + Odieresis + Ograve + Ohungarumlaut + Omacron + Oslash + Otilde + OE + P + Thorn + Q + R + Racute + Rcaron + Rcommaaccent + S + Sacute + Scaron + Scedilla + Scircumflex + Scommaaccent + Germandbls + T + Tbar + Tcaron + Tcedilla + Tcommaaccent + U + Uacute + Ubreve + Ucircumflex + Udieresis + Ugrave + Uhungarumlaut + Umacron + Uogonek + Uring + Utilde + V + W + Wacute + Wcircumflex + Wdieresis + Wgrave + X + Y + Yacute + Ycircumflex + Ydieresis + Z + Zacute + Zcaron + Zdotaccent + A.ss01 + Aacute.ss01 + Abreve.ss01 + Acircumflex.ss01 + Adieresis.ss01 + Agrave.ss01 + Amacron.ss01 + Aogonek.ss01 + Aring.ss01 + Atilde.ss01 + AE.ss01 + G.ss01 + Gacute.ss01 + Gbreve.ss01 + Gcircumflex.ss01 + Gcommaaccent.ss01 + Gdotaccent.ss01 + J.ss01 + Jcircumflex.ss01 + K.ss01 + Kcommaaccent.ss01 + M.ss01 + N.ss01 + Nacute.ss01 + Ncaron.ss01 + Ncommaaccent.ss01 + Eng.ss01 + Ntilde.ss01 + Q.ss01 + V.ss01 + W.ss01 + Wacute.ss01 + Wcircumflex.ss01 + Wdieresis.ss01 + Wgrave.ss01 + X.ss01 + Y.ss01 + Yacute.ss01 + Ycircumflex.ss01 + Ydieresis.ss01 + Z.ss01 + Zacute.ss01 + Zcaron.ss01 + Zdotaccent.ss01 + a + aacute + abreve + acircumflex + adieresis + agrave + amacron + aogonek + aring + atilde + ae + b + c + cacute + ccaron + ccedilla + ccircumflex + cdotaccent + d + eth + dcaron + dcroat + e + eacute + ebreve + ecaron + ecircumflex + edieresis + edotaccent + egrave + emacron + eogonek + f + g + gacute + gbreve + gcircumflex + gcommaaccent + gdotaccent + h + hbar + hcircumflex + i + idotless + iacute + ibreve + icircumflex + idieresis + igrave + ij + imacron + iogonek + itilde + j + jdotless + jcircumflex + k + kcommaaccent + kgreenlandic + l + lacute + lcaron + lcommaaccent + ldot + lslash + m + n + nacute + napostrophe + ncaron + ncommaaccent + eng + ntilde + o + oacute + obreve + ocircumflex + odieresis + ograve + ohungarumlaut + omacron + oslash + otilde + oe + p + thorn + q + r + racute + rcaron + rcommaaccent + s + sacute + scaron + scedilla + scircumflex + scommaaccent + germandbls + t + tbar + tcaron + tcedilla + tcommaaccent + u + uacute + ubreve + ucircumflex + udieresis + ugrave + uhungarumlaut + umacron + uogonek + uring + utilde + v + w + wacute + wcircumflex + wdieresis + wgrave + x + y + yacute + ycircumflex + ydieresis + z + zacute + zcaron + zdotaccent + a.ss01 + aacute.ss01 + abreve.ss01 + acircumflex.ss01 + adieresis.ss01 + agrave.ss01 + amacron.ss01 + aogonek.ss01 + aring.ss01 + atilde.ss01 + ae.ss01 + b.ss01 + d.ss01 + dcaron.ss01 + dcroat.ss01 + e.ss01 + eacute.ss01 + ebreve.ss01 + ecaron.ss01 + ecircumflex.ss01 + edieresis.ss01 + edotaccent.ss01 + egrave.ss01 + emacron.ss01 + eogonek.ss01 + f.ss01 + g.ss01 + gacute.ss01 + gbreve.ss01 + gcircumflex.ss01 + gcommaaccent.ss01 + gdotaccent.ss01 + l.ss01 + lacute.ss01 + lcaron.ss01 + lcommaaccent.ss01 + ldot.ss01 + lslash.ss01 + oe.ss01 + p.ss01 + q.ss01 + germandbls.ss01 + t.ss01 + tbar.ss01 + tcaron.ss01 + tcedilla.ss01 + tcommaaccent.ss01 + f_f + f_f_i + f_f_l + fi + fl + f_f.ss01 + f_f_i.ss01 + f_f_l.ss01 + fi.ss01 + fl.ss01 + ordfeminine + ordmasculine + A-cy + Be-cy + Ve-cy + Ge-cy + Gheupturn-cy + De-cy + Ie-cy + Io-cy + Zhe-cy + Ze-cy + Ii-cy + Iishort-cy + Ka-cy + El-cy + Em-cy + En-cy + O-cy + Pe-cy + Er-cy + Es-cy + Te-cy + U-cy + Ushort-cy + Ef-cy + Ha-cy + Che-cy + Tse-cy + Sha-cy + Shcha-cy + Softsign-cy + Hardsign-cy + Yeru-cy + Dze-cy + E-cy + Ereversed-cy + I-cy + Yi-cy + Iu-cy + Ia-cy + A-cy.ss01 + Zhe-cy.ss01 + Ka-cy.ss01 + Em-cy.ss01 + U-cy.ss01 + Ushort-cy.ss01 + Ha-cy.ss01 + Ia-cy.ss01 + a-cy + be-cy + ve-cy + ge-cy + gheupturn-cy + de-cy + ie-cy + io-cy + zhe-cy + ze-cy + ii-cy + iishort-cy + ka-cy + el-cy + em-cy + en-cy + o-cy + pe-cy + er-cy + es-cy + te-cy + u-cy + ushort-cy + ef-cy + ha-cy + che-cy + tse-cy + sha-cy + shcha-cy + softsign-cy + hardsign-cy + yeru-cy + dze-cy + e-cy + ereversed-cy + i-cy + yi-cy + je-cy + iu-cy + ia-cy + a-cy.ss01 + ve-cy.ss01 + de-cy.ss01 + ie-cy.ss01 + io-cy.ss01 + el-cy.ss01 + er-cy.ss01 + te-cy.ss01 + softsign-cy.ss01 + hardsign-cy.ss01 + yeru-cy.ss01 + ia-cy.ss01 + zero + one + two + three + four + five + six + seven + eight + nine + zero.osf + one.osf + two.osf + three.osf + four.osf + five.osf + six.osf + seven.osf + nine.osf + zero.tf + one.tf + two.tf + three.tf + four.tf + five.tf + six.tf + seven.tf + eight.tf + nine.tf + onesuperior + twosuperior + threesuperior + period + comma + colon + semicolon + ellipsis + exclam + exclamdown + question + questiondown + periodcentered + bullet + asterisk + numbersign + slash + backslash + parenleft + parenright + braceleft + braceright + bracketleft + bracketright + hyphen + endash + emdash + underscore + quotesinglbase + quotedblbase + quotedblleft + quotedblright + quoteleft + quoteright + guillemetleft + guillemetright + guilsinglleft + guilsinglright + quotedbl + quotesingle + cent + currency + dollar + euro + hryvnia + sterling + yen + yen.ss01 + plus + minus + multiply + divide + equal + greater + less + asciitilde + asciicircum + percent + perthousand + at + ampersand + paragraph + section + copyright + registered + trademark + degree + bar + brokenbar + dagger + daggerdbl + numero + estimated + numero.ss01 + commaaccentcomb + dieresis + dotaccent + grave + acute + hungarumlaut + circumflex + caron + breve + ring + tilde + macron + cedilla + ogonek + dieresis.case + dotaccent.case + grave.case + acute.case + hungarumlaut.case + circumflex.case + caron.case + breve.case + ring.case + tilde.case + macron.case + commaaccentcomb.salt + caron.salt + uniE01A + _perc-circule + eight.osf + ruble + Ljecyr + Njecyr + Jecyr + dzhecyr + Dzhecyr + ljecyr + njecyr + Tshecyr + Djecyr + tshecyr + djecyr + tenge + ljecyr.ss01 + njecyr.ss01 + dramsignarmn + gjecyr + kjecyr + neptune + florin + plusminus + fraction + onequarter + onehalf + threequarters + mu + lessequal + greaterequal + minute + second + Schwacyr + schwacyr + Gestrokecyr + gestrokecyr + Obarcyr + obarcyr + Entailcyr + entailcyr + Katailcyr + katailcyr + Ustraightstrokecyr + ustraightstrokecyr + Shhacyr + shhacyr + ustraightcyr + Ustraightcyr + partialdiff + increment + integral + summation + radical + infinity + Omega + pi + longs + Delta + product + notequal + proportional + approxequal + Schwa + eturned + Oslashacute + oslashacute + AEacute + aeacute + uni2010 + Aiecyr + aiecyr + uni1EBC + uni1EBD + Acaron + acaron + Gjecyr + Kjecyr + uniE000 + uniE000.alt + arrowleft + arrowup + arrowright + arrowdown + arrowdown.ss01 + arrowleft.ss01 + arrowright.ss01 + arrowup.ss01 + yi-cy.alt + Omegacyr + omegacyr + Yatcyr + yatcyr + Eiotifiedcyr + eiotifiedcyr + Ksicyr + ksicyr + Shwe-cy + Fitacyr + fitacyr + Koppacyr + Iegravecyr + Igravecyr + iegravecyr + igravecyr + Zhebrevecyr + zhebrevecyr + Abrevecyr + abrevecyr + Adieresiscyr + adieresiscyr + Iebrevecyr + iebrevecyr + Schwadieresiscyr + schwadieresiscyr + Zhedieresiscyr + zhedieresiscyr + Zedieresiscyr + zedieresiscyr + Imacroncyr + imacroncyr + Idieresiscyr + idieresiscyr + Odieresiscyr + odieresiscyr + Umacroncyr + umacroncyr + Udieresiscyr + udieresiscyr + Uacutedblcyr + uacutedblcyr + Dekomicyr + dekomicyr + Wecyr + wecyr + Qacyr + qacyr + Ylongdieresiscyr + ylongdieresiscyr + Chedieresiscyr + chedieresiscyr + Obardieresiscyr + obardieresiscyr + Ereverseddieresiscyr + ereverseddieresiscyr + Zhetailcyr + zhetailcyr + Tetailcyr + tetailcyr + Xatailcyr + xatailcyr + Chetailcyr + chetailcyr + Chekhakascyr + chekhakascyr + Getailcyr + getailcyr + Petailcyr + petailcyr + Eltailcyr + eltailcyr + Shhatailcyr + shhatailcyr + Palochkacyr + palochkacyr + Dzzhecyr + Yaecyr + yaecyr + Tetsecyr + tetsecyr + Engecyr + engecyr + kabashkcyr + Kabashkcyr + semisoftcyr + Semisoftcyr + Reversedzecyr + reversedzecyr + Elmiddlehookcyr + Enmiddlehookcyr + Enhookcyr + Kahookcyr + Pehookcyr + Gehookcyr + parenleft.case + parenright.case + hyphen.case + bracketleft.case + bracketright.case + braceleft.case + braceright.case + exclamdown.case + guillemetleft.case + guillemetright.case + endash.case + emdash.case + bullet.case + guilsinglleft.case + guilsinglright.case + arrowleft.case + arrowup.case + arrowright.case + arrowdown.case + arrowdown.ss01.case + arrowleft.ss01.case + arrowright.ss01.case + arrowup.ss01.case + Enhookleftcyr + enhookleftcyr + enhookcyr + gehookcyr + pehookcyr + kahookcyr + enmiddlehookcyr + elmiddlehookcyr + kastrokecyr + Kastrokecyr + Chevertcyr + chevertcyr + Kaverticalstrokecyr + kaverticalstrokecyr + Elhookcyr + elhookcyr + zetailcyr + Zetailcyr + Estailcyr + estailcyr + Haabkhcyr + koppacyr + ukcyr + Ukcyr + omegaroundcyr + Izhitsagravedblcyr + izhitsagravedblcyr + izhitsacyr + Izhitsacyr + Yusbigcyr + yusbigcyr + Psicyr + psicyr + Omegaroundcyr + Yuslittlecyr + yuslittlecyr + yuslittleiotifiedcyr + Yuslittleiotifiedcyr + Yusbigiotifiedcyr + yusbigiotifiedcyr + Omegatitlocyr + omegatitlocyr + Otcyr + otcyr + uni2DEE + uni2DEE.case + ertickcyr + Ertickcyr + Lhacyr + lhacyr + ensharptailcyr + Ensharptailcyr + emsharptailcyr + elsharptailcyr + ishortsharptailcyr + Ishortsharptailcyr + Emsharptailcyr + Elsharptailcyr + njekomicyr + Njekomicyr + ljekomicyr + tjekomicyr + djekomicyr + zjekomicyr + colon.case + questiondown.case + slash.case + semicolon.case + backslash.case + bar.case + brokenbar.case + dzjekomicyr + Cheabkhcyr + cheabkhcyr + cheabkhtailcyr + sjekomicyr + Sjekomicyr + Ljekomicyr + Tjekomicyr + Djekomicyr + kaaleutcyr + dzzhecyr + haabkhcyr + Dchecyr + dchecyr + dzeabkhcyr + Dzeabkhcyr + palatcombcyr + Cheabkhtailcyr + Dzjekomicyr + Zjekomicyr + rhacyr + Rhacyr + Kaaleutcyr + thousandscyr + titlocombcyr + pokrytiecombcyr + hundredthousandscombcyr + millionscombcyr + Gehookstrokecyr + gehookstrokecyr + Hahookcyr + hahookcyr + Hastrokecyr + uni1C80 + uni1C81 + uni1C82 + uni1C83 + uni1C84 + uni1C85 + uni1C86 + uni1C87 + Zemlya-cy + zemlya-cy + Dzelo-cy + dzelo-cy + DzeReversed-cy + dzeReversed-cy + Iota-cy + iota-cy + Djerv-cy + djerv-cy + UkMonograph-cy + ukMonograph-cy + OmegaBroad-cy + omegaBroad-cy + YerNeutral-cy + yerNeutral-cy + YeruBackYer-cy + yeruBackyer-cy + YatIotified-cy + yatIotified-cy + YuReversed-cy + yuReversed-cy + IotifiedA-cy + iotifieda-cy + YusClosedlittle-cy + yusClosedlittle-cy + YusBlended-cy + yusBlended-cy + YusiotifiedClosedLittle-cy + yusiotifiedClosedLittle-cy + Yn-cy + yn-cy + TseReversed-cy + tseReversed-cy + DeSoft-cy + deSoft-cy + ElSoft-cy + elSoft-cy + EmSoft-cy + emSoft-cy + OMonocular-cy + oMonocular-cy + OBinocular-cy + oBinocular-cy + ODoubleMonocular-cy + oDoubleMonocular-cy + omultiocular-cy + vzmetcomb-cy + tenmillionscomb-cy + hundredmillionscomb-cy + thousandmillionscomb-cy + Dwe-cy + dwe-cy + Dzwe-cy + dzwe-cy + Zhwe-cy + zhwe-cy + Cche-cy + cche-cy + Dzze-cy + dzze-cy + TeWithMiddleHook-cy + tewithmiddlehook-cy + Twe-cy + twe-cy + Tswe-cy + tswe-cy + Tsse-cy + tsse-cy + Tche-cy + tche-cy + Hwe-cy + hwe-cy + shwe-cy + DoubleO-cy + doubleo-cy + CrossedO-cy + crossedo-cy + hastrokecyr + uniF43A + A-cy.accented + E-cy.accented + Ii-cy.accented + O-cy.accented + U-cy.accented + Yeru-cy.accented + Ereversed-cy.accented + Iu-cy.accented + Ia-cy.accented + Io-cy.accented + uniF498 + uniF49A + uniF49C + uniF49E + uniF4C6 + uniF4CC + uniF4D2 + uniF4D4 + uniF4D6 + uniF4D8 + Zetailcyr.BSH + Estailcyr.CHU + uniF50E + uniF510 + uniF512 + uniF514 + uniF516 + uniF518 + uniF51A + uniF51C + uniF51E + Yeru-cymacron + uniF522 + uniF524 + uniF526 + uniF528 + uniF52A + uniF52C + uniF52E + uniF532 + uniF536 + uniF538 + Gestrokecyr.BSH + Estailcyr.BSH + uniF830 + uniF833 + uniF839 + uniF86F + uniF872 + uniF875 + uniF878 + uniF87B + uniF87E + apostrophemod + colontriangularmod + uni1C88 + uniF87F + uniF87C + uniF879 + uniF876 + uniF873 + uniF870 + uniF83A + uniF834 + uniF831 + zetailcyr.BSH + estailcyr.CHU + uniF50F + uniF511 + uniF513 + uniF515 + uniF517 + uniF519 + uniF51B + uniF51D + uniF51F + uniF521 + uniF523 + uniF525 + uniF527 + uniF529 + uniF52B + uniF52D + uniF52F + uniF533 + uniF537 + uniF539 + gestrokecyr.BSH + estailcyr.BSH + uniF499 + uniF49B + uniF49D + uniF49F + uniF4C7 + uniF4CD + uniF4D3 + uniF4D5 + uniF4D7 + uniF4D9 + a-cy.accented + e-cy.accented + ii-cy.accented + o-cy.accented + u-cy.accented + yeru-cy.accented + ereversed-cy.accented + iu-cy.accented + ia-cy.accented + io-cy.accented + uniF43B + at.case + dieresis.alt + dieresiscase.alt + e-cy.hist + omultiocular-cy.alt + iotifieda-cy.hist + be-cy.SRB + ve-cy.BGR + ge-cy.BGR + de-cy.BGR + zhe-cy.BGR + ze-cy.BGR + ii-cy.BGR + iishort-cy.BGR + ka-cy.BGR + el-cy.BGR + pe-cy.BGR + te-cy.BGR + tse-cy.BGR + sha-cy.BGR + shcha-cy.BGR + hardsign-cy.BGR + softsign-cy.BGR + iu-cy.BGR + yatcyr.BGR + eiotifiedcyr.BGR + yusbigiotifiedcyr.BGR + iotifieda-cy.BGR + De-cy.BGR + El-cy.BGR + Ef-cy.BGR + dieresisacute + uniF45D + uniF45E + uniF45F + uniF475 + uniF476 + uniF477 + uniF478 + uniF479 + Elsmallcyr + enclosingcirclecomb + ge-cy.SRB + pe-cy.SRB + te-cy.SRB + gjecyr.SRB + macron-fwd + macron-fwd.alt + macronacute.SRB + iegravecyr.SRB + igravecyr.SRB + flower + knightwhite + knightblack + floretteblack + florettewhite + floretteoutlinedpetalledblackeight + rookblack + bishopblack + leo + heartwhite + diamondwhite-misc + spadewhite + clubwhite + bishopwhite + heart + crossedswords + virgo + thousandscyr.dnom + bracketangleleft + bracketangleright + bracketangleleft.case + bracketangleright.case + + + diff --git a/sources/FixelDisplay-Regular.ufo/metainfo.plist b/sources/FixelDisplay-Regular.ufo/metainfo.plist new file mode 100644 index 00000000..10582b84 --- /dev/null +++ b/sources/FixelDisplay-Regular.ufo/metainfo.plist @@ -0,0 +1,10 @@ + + + + + creator + com.fontlab.ufoLib + formatVersion + 3 + + diff --git a/sources/FixelDisplay-SemiBold.ufo/features.fea b/sources/FixelDisplay-SemiBold.ufo/features.fea new file mode 100644 index 00000000..302ade93 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/features.fea @@ -0,0 +1,573 @@ +#> classes +#/> otclasses +@ss01_def = [A-cy A AE Aacute Abreve Acircumflex Adieresis Agrave Amacron Aogonek Aring Atilde Em-cy Eng G Gacute Gbreve Gcircumflex Gcommaaccent Gdotaccent Ha-cy Ia-cy J Jcircumflex K Ka-cy Kcommaaccent M N Nacute Ncaron Ncommaaccent Ntilde Q U-cy Ushort-cy V W Wacute Wcircumflex Wdieresis Wgrave X Y Yacute Ycircumflex Ydieresis Z Zacute Zcaron Zdotaccent Zhe-cy a-cy a aacute abreve acircumflex adieresis ae agrave amacron aogonek aring arrowdown arrowdown.case arrowleft arrowleft.case arrowright arrowright.case arrowup arrowup.case atilde b d dcaron dcroat de-cy e eacute ebreve ecaron ecircumflex edieresis edotaccent egrave el-cy emacron eogonek er-cy f f_f f_f_i f_f_l fi fl g gacute gbreve gcircumflex gcommaaccent gdotaccent germandbls hardsign-cy ia-cy ie-cy io-cy l lacute lcaron lcommaaccent ldot ljecyr lslash njecyr numero oe p q softsign-cy t tbar tcaron tcedilla tcommaaccent te-cy ve-cy yen yeru-cy]; +@ss01 = [A-cy.ss01 A.ss01 AE.ss01 Aacute.ss01 Abreve.ss01 Acircumflex.ss01 Adieresis.ss01 Agrave.ss01 Amacron.ss01 Aogonek.ss01 Aring.ss01 Atilde.ss01 Em-cy.ss01 Eng.ss01 G.ss01 Gacute.ss01 Gbreve.ss01 Gcircumflex.ss01 Gcommaaccent.ss01 Gdotaccent.ss01 Ha-cy.ss01 Ia-cy.ss01 J.ss01 Jcircumflex.ss01 K.ss01 Ka-cy.ss01 Kcommaaccent.ss01 M.ss01 N.ss01 Nacute.ss01 Ncaron.ss01 Ncommaaccent.ss01 Ntilde.ss01 Q.ss01 U-cy.ss01 Ushort-cy.ss01 V.ss01 W.ss01 Wacute.ss01 Wcircumflex.ss01 Wdieresis.ss01 Wgrave.ss01 X.ss01 Y.ss01 Yacute.ss01 Ycircumflex.ss01 Ydieresis.ss01 Z.ss01 Zacute.ss01 Zcaron.ss01 Zdotaccent.ss01 Zhe-cy.ss01 a-cy.ss01 a.ss01 aacute.ss01 abreve.ss01 acircumflex.ss01 adieresis.ss01 ae.ss01 agrave.ss01 amacron.ss01 aogonek.ss01 aring.ss01 arrowdown.ss01 arrowdown.ss01.case arrowleft.ss01 arrowleft.ss01.case arrowright.ss01 arrowright.ss01.case arrowup.ss01 arrowup.ss01.case atilde.ss01 b.ss01 d.ss01 dcaron.ss01 dcroat.ss01 de-cy.ss01 e.ss01 eacute.ss01 ebreve.ss01 ecaron.ss01 ecircumflex.ss01 edieresis.ss01 edotaccent.ss01 egrave.ss01 el-cy.ss01 emacron.ss01 eogonek.ss01 er-cy.ss01 f.ss01 f_f.ss01 f_f_i.ss01 f_f_l.ss01 fi.ss01 fl.ss01 g.ss01 gacute.ss01 gbreve.ss01 gcircumflex.ss01 gcommaaccent.ss01 gdotaccent.ss01 germandbls.ss01 hardsign-cy.ss01 ia-cy.ss01 ie-cy.ss01 io-cy.ss01 l.ss01 lacute.ss01 lcaron.ss01 lcommaaccent.ss01 ldot.ss01 ljecyr.ss01 lslash.ss01 njecyr.ss01 numero.ss01 oe.ss01 p.ss01 q.ss01 softsign-cy.ss01 t.ss01 tbar.ss01 tcaron.ss01 tcedilla.ss01 tcommaaccent.ss01 te-cy.ss01 ve-cy.ss01 yen.ss01 yeru-cy.ss01]; +@case = [arrowdown.case arrowdown.ss01.case arrowleft.case arrowleft.ss01.case arrowright.case arrowright.ss01.case arrowup.case arrowup.ss01.case backslash.case bar.case braceleft.case braceright.case bracketleft.case bracketright.case brokenbar.case bullet.case colon.case emdash.case endash.case exclamdown.case guillemetleft.case guillemetright.case guilsinglleft.case guilsinglright.case hyphen.case parenleft.case parenright.case questiondown.case semicolon.case at.case bracketangleleft.case bracketangleright.case slash.case]; +@case_def = [arrowdown arrowdown.ss01 arrowleft arrowleft.ss01 arrowright arrowright.ss01 arrowup arrowup.ss01 backslash bar braceleft braceright bracketleft bracketright brokenbar bullet colon emdash endash exclamdown guillemetleft guillemetright guilsinglleft guilsinglright hyphen parenleft parenright questiondown semicolon at bracketangleleft bracketangleright slash]; +@cpsp = [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 Agrave Aacute Acircumflex Atilde Adieresis Aring AE Ccedilla Egrave Eacute Ecircumflex Edieresis Igrave Iacute Icircumflex Idieresis Eth Ntilde Ograve Oacute Ocircumflex Otilde Odieresis Oslash Ugrave Uacute Ucircumflex Udieresis Yacute Thorn Amacron Abreve Aogonek Cacute Ccircumflex Cdotaccent Ccaron Dcaron Dcroat Emacron Ebreve Edotaccent Eogonek Ecaron Gcircumflex Gbreve Gdotaccent Gcommaaccent Hcircumflex Hbar Itilde Imacron Ibreve Iogonek Idotaccent IJ Jcircumflex Kcommaaccent Lacute Lcommaaccent Lcaron Ldot Lslash Nacute Ncommaaccent Ncaron Eng Omacron Obreve Ohungarumlaut OE Racute Rcommaaccent Rcaron Sacute Scircumflex Scedilla Scaron Tcedilla Tcaron Tbar Utilde Umacron Ubreve Uring Uhungarumlaut Uogonek Wcircumflex Ycircumflex Ydieresis Zacute Zdotaccent Zcaron Schwa Acaron Gacute AEacute Oslashacute Scommaaccent Tcommaaccent Delta Omega Iegravecyr uniF43A A-cy.accented E-cy.accented Ii-cy.accented O-cy.accented U-cy.accented Yeru-cy.accented Ereversed-cy.accented Iu-cy.accented Ia-cy.accented Io-cy.accented uniF498 uniF49A uniF49C uniF49E uniF4C6 uniF4CC uniF4D2 uniF4D4 uniF4D6 uniF4D8 uniF50E uniF510 uniF512 uniF514 uniF516 uniF518 uniF51A uniF51C uniF51E Yeru-cymacron uniF522 uniF524 uniF526 uniF528 uniF52A uniF52C uniF52E uniF532 uniF536 uniF538 uniF830 uniF833 uniF839 uniF86F uniF872 uniF875 uniF878 uniF87B uniF87E Io-cy Djecyr Gjecyr E-cy Dze-cy I-cy Yi-cy Jecyr Ljecyr Njecyr Tshecyr Kjecyr Igravecyr Ushort-cy Dzhecyr A-cy Be-cy Ve-cy Ge-cy De-cy Ie-cy Zhe-cy Ze-cy Ii-cy Iishort-cy Ka-cy El-cy Em-cy En-cy O-cy Pe-cy Er-cy Es-cy Te-cy U-cy Ef-cy Ha-cy Tse-cy Che-cy Sha-cy Shcha-cy Hardsign-cy Yeru-cy Softsign-cy Ereversed-cy Iu-cy Ia-cy Omegacyr Yatcyr Eiotifiedcyr Yuslittlecyr Yuslittleiotifiedcyr Yusbigcyr Yusbigiotifiedcyr Ksicyr Psicyr Fitacyr Izhitsacyr Izhitsagravedblcyr Ukcyr Omegaroundcyr Omegatitlocyr Otcyr Koppacyr Ishortsharptailcyr Semisoftcyr Ertickcyr Gheupturn-cy Gestrokecyr Gehookcyr Zhetailcyr Zetailcyr Katailcyr Kaverticalstrokecyr Kastrokecyr Kabashkcyr Entailcyr Engecyr Pehookcyr Haabkhcyr Estailcyr Tetailcyr Ustraightcyr Ustraightstrokecyr Xatailcyr Tetsecyr Chetailcyr Chevertcyr Shhacyr Cheabkhcyr Cheabkhtailcyr Palochkacyr Zhebrevecyr Kahookcyr Elsharptailcyr Enhookcyr Ensharptailcyr Chekhakascyr Emsharptailcyr Abrevecyr Adieresiscyr Aiecyr Iebrevecyr Schwacyr Schwadieresiscyr Zhedieresiscyr Zedieresiscyr Dzeabkhcyr Imacroncyr Idieresiscyr Odieresiscyr Obarcyr Obardieresiscyr Ereverseddieresiscyr Umacroncyr Udieresiscyr Uacutedblcyr Chedieresiscyr Getailcyr Ylongdieresiscyr Gehookstrokecyr Hahookcyr Hastrokecyr Dekomicyr Djekomicyr Zjekomicyr Dzjekomicyr Ljekomicyr Njekomicyr Sjekomicyr Tjekomicyr Reversedzecyr Elhookcyr Lhacyr Rhacyr Yaecyr Qacyr Wecyr Kaaleutcyr Elmiddlehookcyr Enmiddlehookcyr Petailcyr Shhatailcyr Enhookleftcyr Dzzhecyr Dchecyr Eltailcyr Wgrave Wacute Wdieresis Germandbls uni1EBC Zemlya-cy Dzelo-cy DzeReversed-cy Iota-cy Djerv-cy UkMonograph-cy OmegaBroad-cy YerNeutral-cy YeruBackYer-cy YatIotified-cy YuReversed-cy IotifiedA-cy YusClosedlittle-cy YusBlended-cy YusiotifiedClosedLittle-cy Yn-cy TseReversed-cy DeSoft-cy ElSoft-cy EmSoft-cy OMonocular-cy OBinocular-cy ODoubleMonocular-cy Dwe-cy Dzwe-cy Zhwe-cy Cche-cy Dzze-cy TeWithMiddleHook-cy Twe-cy Tswe-cy Tsse-cy Tche-cy Hwe-cy Shwe-cy DoubleO-cy CrossedO-cy A-cy.ss01 A.ss01 AE.ss01 Aacute.ss01 Abreve.ss01 Acircumflex.ss01 Adieresis.ss01 Agrave.ss01 Amacron.ss01 Aogonek.ss01 Aring.ss01 Atilde.ss01 Em-cy.ss01 Eng.ss01 G.ss01 Gacute.ss01 Gbreve.ss01 Gcircumflex.ss01 Gcommaaccent.ss01 Gdotaccent.ss01 Ha-cy.ss01 Ia-cy.ss01 J.ss01 Jcircumflex.ss01 K.ss01 Ka-cy.ss01 Kcommaaccent.ss01 M.ss01 N.ss01 Nacute.ss01 Ncaron.ss01 Ncommaaccent.ss01 Ntilde.ss01 Q.ss01 U-cy.ss01 Ushort-cy.ss01 V.ss01 W.ss01 Wacute.ss01 Wcircumflex.ss01 Wdieresis.ss01 Wgrave.ss01 X.ss01 Y.ss01 Yacute.ss01 Ycircumflex.ss01 Ydieresis.ss01 Z.ss01 Zacute.ss01 Zcaron.ss01 Zdotaccent.ss01 Zetailcyr.BSH Gestrokecyr.BSH Estailcyr.BSH Estailcyr.CHU Zhe-cy.ss01]; +@locl_BGR = [De-cy.BGR Ef-cy.BGR El-cy.BGR de-cy.BGR eiotifiedcyr.BGR el-cy.BGR ge-cy.BGR hardsign-cy.BGR ii-cy.BGR iishort-cy.BGR iotifieda-cy.BGR iu-cy.BGR ka-cy.BGR pe-cy.BGR sha-cy.BGR shcha-cy.BGR softsign-cy.BGR te-cy.BGR tse-cy.BGR ve-cy.BGR yatcyr.BGR yusbigiotifiedcyr.BGR ze-cy.BGR zhe-cy.BGR]; +@locl_def = [De-cy Ef-cy El-cy de-cy eiotifiedcyr el-cy ge-cy hardsign-cy ii-cy iishort-cy iotifieda-cy iu-cy ka-cy pe-cy sha-cy shcha-cy softsign-cy te-cy tse-cy ve-cy yatcyr yusbigiotifiedcyr ze-cy zhe-cy]; +@locl.SRB = [be-cy.SRB iegravecyr.SRB igravecyr.SRB]; +@loclSRB_def = [be-cy iegravecyr igravecyr]; +@accent = [grave acute.case grave.case acute]; +@pics = [neptune leo virgo bishopwhite knightwhite rookblack bishopblack knightblack heartwhite diamondwhite-misc spadewhite heart clubwhite crossedswords flower floretteblack florettewhite floretteoutlinedpetalledblackeight]; +@pics_def = [A B C D E F G H I J K L M N O P Q R]; +#/< otclasses + +#/> tags +@tag.omultiocular-cy.alt = [omultiocular-cy]; +@tag.yi-cy_yi-cy.alt = [uniE000]; +#/< tags +#< classes + +# automatic +@Uppercase = [ A Aacute Abreve Acircumflex Adieresis Agrave Amacron Aogonek Aring Atilde AE B C Cacute Ccaron Ccedilla Ccircumflex Cdotaccent D Eth Dcaron Dcroat E Eacute Ebreve Ecaron Ecircumflex Edieresis Edotaccent Egrave Emacron Eogonek F G Gacute Gbreve Gcircumflex Gcommaaccent Gdotaccent H Hbar Hcircumflex I IJ Iacute Ibreve Icircumflex Idieresis Idotaccent Igrave Imacron Iogonek Itilde J Jcircumflex K Kcommaaccent L Lacute Lcaron Lcommaaccent Ldot Lslash M N Nacute Ncaron Ncommaaccent Eng Ntilde O Oacute Obreve Ocircumflex Odieresis Ograve Ohungarumlaut Omacron Oslash Otilde OE P Thorn Q R Racute Rcaron Rcommaaccent S Sacute Scaron Scedilla Scircumflex Scommaaccent Germandbls T Tbar Tcaron Tcedilla Tcommaaccent U Uacute Ubreve Ucircumflex Udieresis Ugrave Uhungarumlaut Umacron Uogonek Uring Utilde V W Wacute Wcircumflex Wdieresis Wgrave X Y Yacute Ycircumflex Ydieresis Z Zacute Zcaron Zdotaccent A.ss01 Aacute.ss01 Abreve.ss01 Acircumflex.ss01 Adieresis.ss01 Agrave.ss01 Amacron.ss01 Aogonek.ss01 Aring.ss01 Atilde.ss01 AE.ss01 G.ss01 Gacute.ss01 Gbreve.ss01 Gcircumflex.ss01 Gcommaaccent.ss01 Gdotaccent.ss01 J.ss01 Jcircumflex.ss01 K.ss01 Kcommaaccent.ss01 M.ss01 N.ss01 Nacute.ss01 Ncaron.ss01 Ncommaaccent.ss01 Eng.ss01 Ntilde.ss01 Q.ss01 V.ss01 W.ss01 Wacute.ss01 Wcircumflex.ss01 Wdieresis.ss01 Wgrave.ss01 X.ss01 Y.ss01 Yacute.ss01 Ycircumflex.ss01 Ydieresis.ss01 Z.ss01 Zacute.ss01 Zcaron.ss01 Zdotaccent.ss01 A-cy Be-cy Ve-cy Ge-cy Gheupturn-cy De-cy Ie-cy Io-cy Zhe-cy Ze-cy Ii-cy Iishort-cy Ka-cy El-cy Em-cy En-cy O-cy Pe-cy Er-cy Es-cy Te-cy U-cy Ushort-cy Ef-cy Ha-cy Che-cy Tse-cy Sha-cy Shcha-cy Softsign-cy Hardsign-cy Yeru-cy Dze-cy E-cy Ereversed-cy I-cy Yi-cy Iu-cy Ia-cy A-cy.ss01 Zhe-cy.ss01 Ka-cy.ss01 Em-cy.ss01 U-cy.ss01 Ushort-cy.ss01 Ha-cy.ss01 Ia-cy.ss01 ]; + +# Prefix: Languagesystems +# automatic +languagesystem DFLT dflt; + +languagesystem latn dflt; +languagesystem latn ROM; +languagesystem latn MOL; +languagesystem latn CAT; +languagesystem cyrl dflt; +languagesystem cyrl BGR; +languagesystem cyrl BSH; +languagesystem cyrl CHU; +languagesystem cyrl SRB; +languagesystem cyrl MKD; + +lookup liga_accent { + sub @accent by [grave grave grave grave]; +} liga_accent; +feature aalt { +# Access All Alternates + +#> feature + feature locl; + feature sups; + feature case; + feature lnum; + feature pnum; + feature tnum; + feature onum; + feature salt; + feature ss01; + feature hist; +#< feature +} aalt; +feature ccmp { +# automatic +lookup ccmp_Other_1 { + @Markscomb = [dieresis dotaccent grave acute hungarumlaut circumflex caron breve ring tilde macron]; + @MarkscombCase = [dieresis.case dotaccent.case grave.case acute.case hungarumlaut.case circumflex.case caron.case breve.case ring.case tilde.case macron.case]; + sub @Markscomb @Markscomb' by @MarkscombCase; + sub @cpsp @Markscomb' by @MarkscombCase; +} ccmp_Other_1; + +lookup ccmp_Other_2 { + sub @Markscomb' @MarkscombCase by @MarkscombCase; + sub @MarkscombCase @Markscomb' by @MarkscombCase; +} ccmp_Other_2; +} ccmp; + +feature locl { +# automatic + +script latn; + language ROM; + language MOL; + sub Scedilla by Scommaaccent; + sub scedilla by scommaaccent; + sub Tcedilla by Tcommaaccent; + sub tcedilla by tcommaaccent; + +script latn; + language CAT; + sub l' periodcentered' l by ldot; + sub L' periodcentered' L by Ldot; + +script cyrl; # Cyrillic + language SRB ; # Serbian + + lookup locl_SRB_MCD { + # GSUB lookup 20, type 11 (Single) + sub @loclSRB_def by @locl.SRB; + } locl_SRB_MCD; + + language MKD ; # Serbian + lookup locl_SRB_MCD; + + language BSH ; # Bashkir + sub [Gestrokecyr gestrokecyr Zetailcyr zetailcyr] by [Gestrokecyr.BSH gestrokecyr.BSH Zetailcyr.BSH zetailcyr.BSH]; + sub [Estailcyr estailcyr] by [Estailcyr.BSH estailcyr.BSH]; + + language CHU ; # Chuvash + sub [Estailcyr estailcyr] by [Estailcyr.CHU estailcyr.CHU]; + + language BGR ; # Bulgarian + sub @locl_def by @locl_BGR; + +} locl; + +feature sups { +# Superscript + +#> feature + sub one by onesuperior; + sub three by threesuperior; + sub two by twosuperior; +#< feature +} sups; +feature ordn { +# Ordinals + +#> feature + sub [zero one two three four five six seven eight nine] [A a]' by ordfeminine; + sub [zero one two three four five six seven eight nine] [O o]' by ordmasculine; + sub N o period by numero; +#< feature +} ordn; +feature case { +# Case Sensitive Forms + +#> feature + + sub @case_def by @case; + +#< feature +} case; +feature liga { +# Standard Ligatures + +#> feature +sub f f i by f_f_i; +sub f f l by f_f_l; +sub f f by f_f; +sub f i by fi; +sub f l by fl; +sub yi-cy yi-cy by uniE000; +sub hyphen greater by arrowright; +sub less hyphen by arrowleft; +sub backslash bar slash by arrowdown; +sub slash bar backslash by arrowup; + + lookup accent_2 { + sub E-cy @accent' lookup liga_accent; + sub I-cy @accent' lookup liga_accent; + sub Yi-cy @accent' lookup liga_accent; + sub A-cy @accent' lookup liga_accent; + sub Ie-cy @accent' lookup liga_accent; + sub Ii-cy @accent' lookup liga_accent; + sub O-cy @accent' lookup liga_accent; + sub U-cy @accent' lookup liga_accent; + sub Yeru-cy @accent' lookup liga_accent; + sub Ereversed-cy @accent' lookup liga_accent; + sub Iu-cy @accent' lookup liga_accent; + sub Ia-cy @accent' lookup liga_accent; + sub Io-cy @accent' lookup liga_accent; + sub Yatcyr @accent' lookup liga_accent; + + sub e-cy @accent' lookup liga_accent; + sub i-cy @accent' lookup liga_accent; + sub yi-cy @accent' lookup liga_accent; + sub a-cy @accent' lookup liga_accent; + sub ie-cy @accent' lookup liga_accent; + sub ii-cy @accent' lookup liga_accent; + sub o-cy @accent' lookup liga_accent; + sub u-cy @accent' lookup liga_accent; + sub yeru-cy @accent' lookup liga_accent; + sub ereversed-cy @accent' lookup liga_accent; + sub iu-cy @accent' lookup liga_accent; + sub ia-cy @accent' lookup liga_accent; + sub io-cy @accent' lookup liga_accent; + sub yatcyr @accent' lookup liga_accent; + } accent_2; + + lookup accent_3 { + sub E-cy grave by uniF45D; + sub I-cy grave by uniF45E; + sub Yi-cy grave by uniF45F; + sub A-cy grave by A-cy.accented; + sub Ie-cy grave by E-cy.accented; + sub Ii-cy grave by Ii-cy.accented; + sub O-cy grave by O-cy.accented; + sub U-cy grave by U-cy.accented; + sub Yeru-cy grave by Yeru-cy.accented; + sub Ereversed-cy grave by Ereversed-cy.accented; + sub Iu-cy grave by Iu-cy.accented; + sub Ia-cy grave by Ia-cy.accented; + sub Io-cy grave by Io-cy.accented; + sub Yatcyr grave by uniF478; + + sub e-cy grave by uniF475; + sub i-cy grave by uniF476; + sub yi-cy grave by uniF477; + sub a-cy grave by a-cy.accented; + sub ie-cy grave by e-cy.accented; + sub ii-cy grave by ii-cy.accented; + sub o-cy grave by o-cy.accented; + sub u-cy grave by u-cy.accented; + sub yeru-cy grave by yeru-cy.accented; + sub ereversed-cy grave by ereversed-cy.accented; + sub iu-cy grave by iu-cy.accented; + sub ia-cy grave by ia-cy.accented; + sub io-cy grave by io-cy.accented; + sub yatcyr grave by uniF479; + } accent_3; + +#< feature +} liga; +feature dlig { +# Discretionary Ligatures + +#> feature + +sub M a c P a w l o g o by uniE01A; +sub M P a w l o g o by uniE01A; +sub M P l o g o by uniE01A; +sub M A C P A W L O G O by uniE01A; +sub m a c p a w l o g o by uniE01A; +sub t r i d e n t by neptune; +sub t r y z u b by neptune; +sub u k r a i n e s i g n by neptune; +sub T R I D E N T by neptune; +sub T R Y Z U B by neptune; +sub U k r a i n e S i g n by neptune; +sub T r y z u b by neptune; +sub T r i d e n t by neptune; +sub Te-cy Er-cy Ii-cy Ze-cy U-cy Be-cy by neptune; + +#< feature +} dlig; +feature lnum { +# Lining Figures + +#> feature + sub eight.osf by eight.tf; + sub eight by eight.tf; + sub five.osf by five.tf; + sub five by five.tf; + sub four.osf by four.tf; + sub four by four.tf; + sub nine.osf by nine.tf; + sub nine by nine.tf; + sub one.osf by one.tf; + sub one by one.tf; + sub seven.osf by seven.tf; + sub seven by seven.tf; + sub six.osf by six.tf; + sub six by six.tf; + sub three.osf by three.tf; + sub three by three.tf; + sub two.osf by two.tf; + sub two by two.tf; + sub zero.osf by zero.tf; + sub zero by zero.tf; +#< feature +} lnum; +feature pnum { +# Proportional Figures + +#> feature + sub eight.tf by eight.osf; + sub eight by eight.osf; + sub five.tf by five.osf; + sub five by five.osf; + sub four.tf by four.osf; + sub four by four.osf; + sub nine.tf by nine.osf; + sub nine by nine.osf; + sub one.tf by one.osf; + sub one by one.osf; + sub seven.tf by seven.osf; + sub seven by seven.osf; + sub six.tf by six.osf; + sub six by six.osf; + sub three.tf by three.osf; + sub three by three.osf; + sub two.tf by two.osf; + sub two by two.osf; + sub zero.tf by zero.osf; + sub zero by zero.osf; +#< feature +} pnum; +feature tnum { +# Tabular Figures + +#> feature + sub eight by eight.tf; + sub eight.osf by eight.tf; + sub five by five.tf; + sub five.osf by five.tf; + sub four by four.tf; + sub four.osf by four.tf; + sub nine by nine.tf; + sub nine.osf by nine.tf; + sub one by one.tf; + sub one.osf by one.tf; + sub seven by seven.tf; + sub seven.osf by seven.tf; + sub six by six.tf; + sub six.osf by six.tf; + sub three by three.tf; + sub three.osf by three.tf; + sub two by two.tf; + sub two.osf by two.tf; + sub zero by zero.tf; + sub zero.osf by zero.tf; +#< feature +} tnum; +feature onum { +# Oldstyle Figures + +#> feature + sub eight by eight.osf; + sub eight.tf by eight.osf; + sub five by five.osf; + sub five.tf by five.osf; + sub four by four.osf; + sub four.tf by four.osf; + sub nine by nine.osf; + sub nine.tf by nine.osf; + sub one by one.osf; + sub one.tf by one.osf; + sub seven by seven.osf; + sub seven.tf by seven.osf; + sub six by six.osf; + sub six.tf by six.osf; + sub three by three.osf; + sub three.tf by three.osf; + sub two by two.osf; + sub two.tf by two.osf; + sub zero by zero.osf; + sub zero.tf by zero.osf; +#< feature +} onum; +feature salt { +# Stylistic Alternates + +#> feature + sub A from [A.ss01]; + sub A-cy from [A-cy.ss01]; + sub AE from [AE.ss01]; + sub Aacute from [Aacute.ss01]; + sub Abreve from [Abreve.ss01]; + sub Acircumflex from [Acircumflex.ss01]; + sub Adieresis from [Adieresis.ss01]; + sub Agrave from [Agrave.ss01]; + sub Amacron from [Amacron.ss01]; + sub Aogonek from [Aogonek.ss01]; + sub Aring from [Aring.ss01]; + sub Atilde from [Atilde.ss01]; + sub Em-cy from [Em-cy.ss01]; + sub Eng from [Eng.ss01]; + sub G from [G.ss01]; + sub Gacute from [Gacute.ss01]; + sub Gbreve from [Gbreve.ss01]; + sub Gcircumflex from [Gcircumflex.ss01]; + sub Gcommaaccent from [Gcommaaccent.ss01]; + sub Gdotaccent from [Gdotaccent.ss01]; + sub Ha-cy from [Ha-cy.ss01]; + sub Ia-cy from [Ia-cy.ss01]; + sub J from [J.ss01]; + sub Jcircumflex from [Jcircumflex.ss01]; + sub K from [K.ss01]; + sub Ka-cy from [Ka-cy.ss01]; + sub Kcommaaccent from [Kcommaaccent.ss01]; + sub M from [M.ss01]; + sub N from [N.ss01]; + sub Nacute from [Nacute.ss01]; + sub Ncaron from [Ncaron.ss01]; + sub Ncommaaccent from [Ncommaaccent.ss01]; + sub Ntilde from [Ntilde.ss01]; + sub Q from [Q.ss01]; + sub U-cy from [U-cy.ss01]; + sub Ushort-cy from [Ushort-cy.ss01]; + sub V from [V.ss01]; + sub W from [W.ss01]; + sub Wacute from [Wacute.ss01]; + sub Wcircumflex from [Wcircumflex.ss01]; + sub Wdieresis from [Wdieresis.ss01]; + sub Wgrave from [Wgrave.ss01]; + sub X from [X.ss01]; + sub Y from [Y.ss01]; + sub Yacute from [Yacute.ss01]; + sub Ycircumflex from [Ycircumflex.ss01]; + sub Ydieresis from [Ydieresis.ss01]; + sub Z from [Z.ss01]; + sub Zacute from [Zacute.ss01]; + sub Zcaron from [Zcaron.ss01]; + sub Zdotaccent from [Zdotaccent.ss01]; + sub Zhe-cy from [Zhe-cy.ss01]; + sub a from [a.ss01]; + sub a-cy from [a-cy.ss01]; + sub aacute from [aacute.ss01]; + sub abreve from [abreve.ss01]; + sub acircumflex from [acircumflex.ss01]; + sub adieresis from [adieresis.ss01]; + sub ae from [ae.ss01]; + sub agrave from [agrave.ss01]; + sub amacron from [amacron.ss01]; + sub aogonek from [aogonek.ss01]; + sub aring from [aring.ss01]; + sub arrowdown from [arrowdown.ss01]; + sub arrowleft from [arrowleft.ss01]; + sub arrowright from [arrowright.ss01]; + sub arrowup from [arrowup.ss01]; + sub atilde from [atilde.ss01]; + sub b from [b.ss01]; + sub caron from [caron.salt]; + sub commaaccentcomb from [commaaccentcomb.salt]; + sub d from [d.ss01]; + sub dcaron from [dcaron.ss01]; + sub dcroat from [dcroat.ss01]; + sub de-cy from [de-cy.ss01]; + sub e from [e.ss01]; + sub eacute from [eacute.ss01]; + sub ebreve from [ebreve.ss01]; + sub ecaron from [ecaron.ss01]; + sub ecircumflex from [ecircumflex.ss01]; + sub edieresis from [edieresis.ss01]; + sub edotaccent from [edotaccent.ss01]; + sub egrave from [egrave.ss01]; + sub el-cy from [el-cy.ss01]; + sub emacron from [emacron.ss01]; + sub eogonek from [eogonek.ss01]; + sub er-cy from [er-cy.ss01]; + sub f from [f.ss01]; + sub f_f from [f_f.ss01]; + sub f_f_i from [f_f_i.ss01]; + sub f_f_l from [f_f_l.ss01]; + sub fi from [fi.ss01]; + sub fl from [fl.ss01]; + sub g from [g.ss01]; + sub gacute from [gacute.ss01]; + sub gbreve from [gbreve.ss01]; + sub gcircumflex from [gcircumflex.ss01]; + sub gcommaaccent from [gcommaaccent.ss01]; + sub gdotaccent from [gdotaccent.ss01]; + sub germandbls from [germandbls.ss01]; + sub hardsign-cy from [hardsign-cy.ss01]; + sub ia-cy from [ia-cy.ss01]; + sub ie-cy from [ie-cy.ss01]; + sub io-cy from [io-cy.ss01]; + sub l from [l.ss01]; + sub lacute from [lacute.ss01]; + sub lcaron from [lcaron.ss01]; + sub lcommaaccent from [lcommaaccent.ss01]; + sub ldot from [ldot.ss01]; + sub ljecyr from [ljecyr.ss01]; + sub lslash from [lslash.ss01]; + sub njecyr from [njecyr.ss01]; + sub numero from [numero.ss01]; + sub oe from [oe.ss01]; + sub p from [p.ss01]; + sub q from [q.ss01]; + sub softsign-cy from [softsign-cy.ss01]; + sub t from [t.ss01]; + sub tbar from [tbar.ss01]; + sub tcaron from [tcaron.ss01]; + sub tcedilla from [tcedilla.ss01]; + sub tcommaaccent from [tcommaaccent.ss01]; + sub te-cy from [te-cy.ss01]; + sub uniE000 from [uniE000.alt]; + sub ve-cy from [ve-cy.ss01]; + sub yen from [yen.ss01]; + sub yeru-cy from [yeru-cy.ss01]; +#< feature +} salt; +feature ss03 { +# Stylistic Set 01–20 + +#> feature + featureNames { + name "Bulgarian forms"; + name 1 "Bulgarian forms"; + }; + + sub @locl_def by @locl_BGR; + +#< feature +} ss03; +feature ss04 { +# Stylistic Set 01–20 + +#> feature + featureNames { + name "Serbian/Macedonian forms"; + name 1 "Serbian/Macedonian forms"; + }; + + sub @loclSRB_def by @locl.SRB; + +#< feature +} ss04; +feature ss01 { +# Stylistic Set 01–20 + +#> feature + + featureNames { + name "Humanistic forms"; + name 1 "Humanistic forms"; + }; + + sub @ss01_def by @ss01; + +#< feature +} ss01; +feature ss05 { +# Stylistic Set 01–20 + +#> feature + + featureNames { + name "Ukrainian pictograms"; + name 1 "Ukrainian pictograms"; + }; + + sub @pics_def by @pics; + +#< feature +} ss05; +feature hist { +# Historical Forms + +#> feature + sub e-cy by e-cy.hist; + sub s by longs; +#< feature +} hist; +feature frac { +# Fractions + +#> feature +lookup frac_precomposed { + + sub one slash four by onequarter; + sub one slash two by onehalf; + sub three slash four by threequarters; + sub one fraction four by onequarter; + sub one fraction two by onehalf; + sub three fraction four by threequarters; +} frac_precomposed; +#< feature +} frac; +feature cpsp { +# Capital Spacing + +#> feature + + pos @cpsp <5 0 10 0>; + +#< feature +} cpsp; +feature dnom { +# Denominator + +#> feature + sub thousandscyr by thousandscyr.dnom; +#< feature +} dnom; diff --git a/sources/FixelDisplay-SemiBold.ufo/fontinfo.plist b/sources/FixelDisplay-SemiBold.ufo/fontinfo.plist new file mode 100644 index 00000000..686b48b2 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/fontinfo.plist @@ -0,0 +1,207 @@ + + + + + ascender + 720 + capHeight + 700 + descender + -200 + familyName + Fixel Display + guidelines + + + angle + 0 + name + m + x + 0 + y + -387.4 + + + angle + 0 + name + m + x + 0 + y + 189 + + + italicAngle + 0 + openTypeGaspRangeRecords + + + rangeGaspBehavior + + 0 + 1 + 2 + 3 + + rangeMaxPPEM + 65535 + + + openTypeHeadCreated + 2023/09/05 09:25:43 + openTypeHeadFlags + + + openTypeHheaAscender + 720 + openTypeHheaCaretOffset + -0 + openTypeHheaDescender + -190 + openTypeHheaLineGap + 100 + openTypeNameDesigner + AlfaBravo + openTypeNameDesignerURL + https://alfabravo.design/ + openTypeNameManufacturer + Kyrylo Tkachov, Marchela Mozhyna, Serhii Makarenko, Maria Weinstein, Zakhar Kryvoshyya + + openTypeNameManufacturerURL + https://macpaw.com/ + openTypeNamePreferredFamilyName + Fixel Display + openTypeNamePreferredSubfamilyName + SemiBold + openTypeNameVersion + Version 1.200 + openTypeOS2CodePageRanges + + 0 + 1 + 2 + 4 + 7 + 29 + + openTypeOS2Panose + + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + + openTypeOS2Selection + + + openTypeOS2StrikeoutPosition + 300 + openTypeOS2StrikeoutSize + 50 + openTypeOS2SubscriptXOffset + -0 + openTypeOS2SubscriptXSize + 650 + openTypeOS2SubscriptYOffset + 75 + openTypeOS2SubscriptYSize + 600 + openTypeOS2SuperscriptXOffset + -0 + openTypeOS2SuperscriptXSize + 650 + openTypeOS2SuperscriptYOffset + 350 + openTypeOS2SuperscriptYSize + 600 + openTypeOS2Type + + 2 + + openTypeOS2TypoAscender + 720 + openTypeOS2TypoDescender + -200 + openTypeOS2TypoLineGap + 290 + openTypeOS2UnicodeRanges + + 0 + 1 + 2 + 9 + 31 + 33 + 60 + + openTypeOS2WeightClass + 600 + openTypeOS2WidthClass + 5 + openTypeOS2WinAscent + 750 + openTypeOS2WinDescent + 250 + postscriptBlueFuzz + 1 + postscriptBlueScale + 0.039625 + postscriptBlueShift + 7 + postscriptBlueValues + + -20 + 0 + + postscriptFontName + FixelDisplay-SemiBold + postscriptForceBold + + postscriptFullName + Fixel Display SemiBold + postscriptIsFixedPitch + + postscriptStemSnapH + + 69 + 74 + 76 + 80 + 99 + + postscriptStemSnapV + + 74 + 80 + 93 + + postscriptUnderlinePosition + -100 + postscriptUnderlineThickness + 50 + postscriptWeightName + Semi Bold + styleMapFamilyName + Fixel Display SemiBold + styleMapStyleName + regular + styleName + SemiBold + unitsPerEm + 1000 + versionMajor + 1 + versionMinor + 200 + xHeight + 520 + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/A_-cy.accented.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/A_-cy.accented.glif new file mode 100644 index 00000000..3b163f85 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/A_-cy.accented.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+acute.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/A_-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/A_-cy.glif new file mode 100644 index 00000000..40ce3dbd --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/A_-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/A_-cy.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/A_-cy.ss01.glif new file mode 100644 index 00000000..0afd1f3f --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/A_-cy.ss01.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + com.fontlab.recipe + A + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/A_.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/A_.glif new file mode 100644 index 00000000..c4783ff2 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/A_.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/A_.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/A_.ss01.glif new file mode 100644 index 00000000..749b7df6 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/A_.ss01.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/A_E_.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/A_E_.glif new file mode 100644 index 00000000..c3224df7 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/A_E_.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + A + com.fontlab.metricsRight + E + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/A_E_.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/A_E_.ss01.glif new file mode 100644 index 00000000..850f7811 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/A_E_.ss01.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + A.ss01 + com.fontlab.metricsRight + E + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/A_E_acute.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/A_E_acute.glif new file mode 100644 index 00000000..994a45b5 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/A_E_acute.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + AE+acute.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/A_acute.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/A_acute.glif new file mode 100644 index 00000000..de55c96c --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/A_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+acute.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/A_acute.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/A_acute.ss01.glif new file mode 100644 index 00000000..309ca8cc --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/A_acute.ss01.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + A.ss01+acute.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/A_breve.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/A_breve.glif new file mode 100644 index 00000000..1221032b --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/A_breve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+breve.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/A_breve.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/A_breve.ss01.glif new file mode 100644 index 00000000..1114a6d3 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/A_breve.ss01.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + A.ss01+breve.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/A_brevecyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/A_brevecyr.glif new file mode 100644 index 00000000..b87c3c00 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/A_brevecyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+breve.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/A_caron.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/A_caron.glif new file mode 100644 index 00000000..01bcc925 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/A_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+caron.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/A_circumflex.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/A_circumflex.glif new file mode 100644 index 00000000..6e5b7cb2 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/A_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+circumflex.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/A_circumflex.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/A_circumflex.ss01.glif new file mode 100644 index 00000000..7afb803f --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/A_circumflex.ss01.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + A.ss01+circumflex.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/A_dieresis.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/A_dieresis.glif new file mode 100644 index 00000000..a353b0e7 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/A_dieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+dieresis.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/A_dieresis.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/A_dieresis.ss01.glif new file mode 100644 index 00000000..8a2c4eb8 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/A_dieresis.ss01.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + A.ss01+dieresis.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/A_dieresiscyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/A_dieresiscyr.glif new file mode 100644 index 00000000..afc6bd69 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/A_dieresiscyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/A_grave.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/A_grave.glif new file mode 100644 index 00000000..002536b4 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/A_grave.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+grave.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/A_grave.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/A_grave.ss01.glif new file mode 100644 index 00000000..5becc27c --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/A_grave.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A.ss01+grave.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/A_iecyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/A_iecyr.glif new file mode 100644 index 00000000..96e489a9 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/A_iecyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + AE + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/A_macron.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/A_macron.glif new file mode 100644 index 00000000..b2c63431 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/A_macron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+macron.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/A_macron.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/A_macron.ss01.glif new file mode 100644 index 00000000..ac2768bb --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/A_macron.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A.ss01+macron.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/A_ogonek.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/A_ogonek.glif new file mode 100644 index 00000000..cf2356a6 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/A_ogonek.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+ogonek + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/A_ogonek.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/A_ogonek.ss01.glif new file mode 100644 index 00000000..3284f3eb --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/A_ogonek.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A.ss01+ogonek + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/A_ring.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/A_ring.glif new file mode 100644 index 00000000..565d34ed --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/A_ring.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+ring.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/A_ring.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/A_ring.ss01.glif new file mode 100644 index 00000000..5109be80 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/A_ring.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A.ss01+ring.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/A_tilde.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/A_tilde.glif new file mode 100644 index 00000000..007d9de2 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/A_tilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+tilde.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/A_tilde.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/A_tilde.ss01.glif new file mode 100644 index 00000000..04d563a0 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/A_tilde.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A.ss01+tilde.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/B_.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/B_.glif new file mode 100644 index 00000000..889c83cb --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/B_.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/B_e-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/B_e-cy.glif new file mode 100644 index 00000000..41ae9277 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/B_e-cy.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + B-10 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/C_.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/C_.glif new file mode 100644 index 00000000..dea167dc --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/C_.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/C_R_.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/C_R_.glif new file mode 100644 index 00000000..a38a285e --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/C_R_.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/C_acute.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/C_acute.glif new file mode 100644 index 00000000..8e1ad7a9 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/C_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+acute.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/C_caron.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/C_caron.glif new file mode 100644 index 00000000..6fdb368e --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/C_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+caron.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/C_cedilla.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/C_cedilla.glif new file mode 100644 index 00000000..48863852 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/C_cedilla.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+cedilla + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/C_che-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/C_che-cy.glif new file mode 100644 index 00000000..e425362d --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/C_che-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ч + com.fontlab.metricsRight + Ч + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/C_circumflex.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/C_circumflex.glif new file mode 100644 index 00000000..a22e6f78 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/C_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+circumflex.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/C_dotaccent.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/C_dotaccent.glif new file mode 100644 index 00000000..cf5f101e --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/C_dotaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+dotaccent.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/C_he-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/C_he-cy.glif new file mode 100644 index 00000000..1f199712 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/C_he-cy.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/C_heabkhcyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/C_heabkhcyr.glif new file mode 100644 index 00000000..e782691a --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/C_heabkhcyr.glif @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + |Schwa + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/C_heabkhtailcyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/C_heabkhtailcyr.glif new file mode 100644 index 00000000..7c06ef1c --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/C_heabkhtailcyr.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Cheabkhcyr + com.fontlab.metricsRight + Cheabkhcyr + com.fontlab.recipe + Cheabkhcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/C_hedieresiscyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/C_hedieresiscyr.glif new file mode 100644 index 00000000..df4416cf --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/C_hedieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Che-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/C_hekhakascyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/C_hekhakascyr.glif new file mode 100644 index 00000000..9840ca89 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/C_hekhakascyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ч + com.fontlab.metricsRight + H + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/C_hetailcyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/C_hetailcyr.glif new file mode 100644 index 00000000..6008915e --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/C_hetailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ч + com.fontlab.metricsRight + Entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/C_hevertcyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/C_hevertcyr.glif new file mode 100644 index 00000000..c8838b5e --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/C_hevertcyr.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ч + com.fontlab.metricsRight + Н + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/C_rossedO_-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/C_rossedO_-cy.glif new file mode 100644 index 00000000..69beaf3a --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/C_rossedO_-cy.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + com.fontlab.recipe + O + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/D_.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/D_.glif new file mode 100644 index 00000000..141ced70 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/D_.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/D_caron.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/D_caron.glif new file mode 100644 index 00000000..72211ffe --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/D_caron.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + D+caron.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/D_checyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/D_checyr.glif new file mode 100644 index 00000000..5855e4f9 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/D_checyr.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Д+10 + com.fontlab.metricsRight + Д + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/D_croat.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/D_croat.glif new file mode 100644 index 00000000..7f970405 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/D_croat.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + D + com.fontlab.recipe + Eth + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/D_e-cy.B_G_R_.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/D_e-cy.B_G_R_.glif new file mode 100644 index 00000000..a5fd943a --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/D_e-cy.B_G_R_.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + l() + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/D_e-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/D_e-cy.glif new file mode 100644 index 00000000..0a97b338 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/D_e-cy.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/D_eS_oft-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/D_eS_oft-cy.glif new file mode 100644 index 00000000..4ace223d --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/D_eS_oft-cy.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Д + com.fontlab.metricsRight + Ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/D_ekomicyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/D_ekomicyr.glif new file mode 100644 index 00000000..be721399 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/D_ekomicyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.metricsLeft + |P + com.fontlab.metricsRight + H + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/D_elta.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/D_elta.glif new file mode 100644 index 00000000..9aad1ba0 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/D_elta.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + A + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/D_jecyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/D_jecyr.glif new file mode 100644 index 00000000..56e439bf --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/D_jecyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/D_jekomicyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/D_jekomicyr.glif new file mode 100644 index 00000000..5c1db47d --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/D_jekomicyr.glif @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Dekomicyr + com.fontlab.metricsRight + Njekomicyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/D_jerv-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/D_jerv-cy.glif new file mode 100644 index 00000000..cb406b99 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/D_jerv-cy.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + r() + com.fontlab.metricsRight + O + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/D_oubleO_-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/D_oubleO_-cy.glif new file mode 100644 index 00000000..342a8650 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/D_oubleO_-cy.glif @@ -0,0 +1,91 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + com.fontlab.recipe + O_O + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/D_we-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/D_we-cy.glif new file mode 100644 index 00000000..66b2f284 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/D_we-cy.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Д + com.fontlab.metricsRight + Д + com.fontlab.recipe + Д + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/D_ze-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/D_ze-cy.glif new file mode 100644 index 00000000..fca15427 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/D_ze-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + S + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/D_zeR_eversed-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/D_zeR_eversed-cy.glif new file mode 100644 index 00000000..0cf14b0f --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/D_zeR_eversed-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + S + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/D_zeabkhcyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/D_zeabkhcyr.glif new file mode 100644 index 00000000..a64b1744 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/D_zeabkhcyr.glif @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + З-10 + com.fontlab.metricsRight + З-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/D_zelo-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/D_zelo-cy.glif new file mode 100644 index 00000000..b583615a --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/D_zelo-cy.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/D_zhecyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/D_zhecyr.glif new file mode 100644 index 00000000..76e5cfbf --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/D_zhecyr.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/D_zjekomicyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/D_zjekomicyr.glif new file mode 100644 index 00000000..f1285fce --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/D_zjekomicyr.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + З-10 + com.fontlab.metricsRight + Ц-5 + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/D_zwe-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/D_zwe-cy.glif new file mode 100644 index 00000000..9612158f --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/D_zwe-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + S + com.fontlab.metricsRight + S + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/D_zze-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/D_zze-cy.glif new file mode 100644 index 00000000..58ac7dce --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/D_zze-cy.glif @@ -0,0 +1,84 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Д + com.fontlab.metricsRight + Д-20 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/D_zzhecyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/D_zzhecyr.glif new file mode 100644 index 00000000..8f0d182b --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/D_zzhecyr.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Д + com.fontlab.metricsRight + Ж + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/E_-cy.accented.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/E_-cy.accented.glif new file mode 100644 index 00000000..da4033ac --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/E_-cy.accented.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+acute.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/E_-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/E_-cy.glif new file mode 100644 index 00000000..5cb6a5ef --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/E_-cy.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + C + com.fontlab.metricsRight + C + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/E_.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/E_.glif new file mode 100644 index 00000000..1bfe4649 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/E_.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + com.fontlab.metricsRight + F+10 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/E_acute.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/E_acute.glif new file mode 100644 index 00000000..345cb97b --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/E_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+acute.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/E_breve.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/E_breve.glif new file mode 100644 index 00000000..1260a7dd --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/E_breve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+breve.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/E_caron.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/E_caron.glif new file mode 100644 index 00000000..f7a796e6 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/E_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+caron.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/E_circumflex.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/E_circumflex.glif new file mode 100644 index 00000000..cfc9927c --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/E_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+circumflex.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/E_dieresis.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/E_dieresis.glif new file mode 100644 index 00000000..6abcd807 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/E_dieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+dieresiscase.alt + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/E_dotaccent.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/E_dotaccent.glif new file mode 100644 index 00000000..cb1d3e0f --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/E_dotaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+dotaccent.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/E_f-cy.B_G_R_.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/E_f-cy.B_G_R_.glif new file mode 100644 index 00000000..f0051d9d --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/E_f-cy.B_G_R_.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/E_f-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/E_f-cy.glif new file mode 100644 index 00000000..7e79f397 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/E_f-cy.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/E_grave.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/E_grave.glif new file mode 100644 index 00000000..4ed86be7 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/E_grave.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+grave.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/E_iotifiedcyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/E_iotifiedcyr.glif new file mode 100644 index 00000000..0dd32dc7 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/E_iotifiedcyr.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + C + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/E_l-cy.B_G_R_.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/E_l-cy.B_G_R_.glif new file mode 100644 index 00000000..42102101 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/E_l-cy.B_G_R_.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + A + com.fontlab.metricsRight + l() + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/E_l-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/E_l-cy.glif new file mode 100644 index 00000000..9104af88 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/E_l-cy.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/E_lS_oft-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/E_lS_oft-cy.glif new file mode 100644 index 00000000..3ba77bcf --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/E_lS_oft-cy.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/E_lhookcyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/E_lhookcyr.glif new file mode 100644 index 00000000..399c3bee --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/E_lhookcyr.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Л + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/E_lmiddlehookcyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/E_lmiddlehookcyr.glif new file mode 100644 index 00000000..3e21e518 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/E_lmiddlehookcyr.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Shhacyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/E_lsharptailcyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/E_lsharptailcyr.glif new file mode 100644 index 00000000..e33f77d7 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/E_lsharptailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Ensharptailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/E_lsmallcyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/E_lsmallcyr.glif new file mode 100644 index 00000000..f45531f0 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/E_lsmallcyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + el-cy.BGR + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/E_ltailcyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/E_ltailcyr.glif new file mode 100644 index 00000000..3f54e20c --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/E_ltailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/E_m-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/E_m-cy.glif new file mode 100644 index 00000000..c68d0a26 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/E_m-cy.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + M + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/E_m-cy.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/E_m-cy.ss01.glif new file mode 100644 index 00000000..94c11e5b --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/E_m-cy.ss01.glif @@ -0,0 +1,13 @@ + + + + + + + + + com.fontlab.recipe + M + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/E_mS_oft-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/E_mS_oft-cy.glif new file mode 100644 index 00000000..f285f940 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/E_mS_oft-cy.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + M + com.fontlab.metricsRight + Ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/E_macron.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/E_macron.glif new file mode 100644 index 00000000..5e6cea1f --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/E_macron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+macron.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/E_msharptailcyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/E_msharptailcyr.glif new file mode 100644 index 00000000..c200b520 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/E_msharptailcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Н + com.fontlab.metricsRight + Ensharptailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/E_n-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/E_n-cy.glif new file mode 100644 index 00000000..f7b15716 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/E_n-cy.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + H + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/E_ng.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/E_ng.glif new file mode 100644 index 00000000..57287cb1 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/E_ng.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + N + com.fontlab.metricsRight + l() + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/E_ng.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/E_ng.ss01.glif new file mode 100644 index 00000000..91d44118 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/E_ng.ss01.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + N.ss01 + com.fontlab.metricsRight + J.ss01 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/E_ngecyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/E_ngecyr.glif new file mode 100644 index 00000000..ad562145 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/E_ngecyr.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/E_nhookcyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/E_nhookcyr.glif new file mode 100644 index 00000000..fc1a8cab --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/E_nhookcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/E_nhookleftcyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/E_nhookleftcyr.glif new file mode 100644 index 00000000..928b6fe2 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/E_nhookleftcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + r()-159 + com.fontlab.metricsRight + H + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/E_nmiddlehookcyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/E_nmiddlehookcyr.glif new file mode 100644 index 00000000..b6af9098 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/E_nmiddlehookcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Shhacyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/E_nsharptailcyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/E_nsharptailcyr.glif new file mode 100644 index 00000000..23184c83 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/E_nsharptailcyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Н + com.fontlab.metricsRight + Д + com.fontlab.recipe + Entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/E_ntailcyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/E_ntailcyr.glif new file mode 100644 index 00000000..3e8c57ab --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/E_ntailcyr.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Ц + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/E_ogonek.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/E_ogonek.glif new file mode 100644 index 00000000..f3c0e90c --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/E_ogonek.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+ogonek + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/E_r-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/E_r-cy.glif new file mode 100644 index 00000000..13705cf0 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/E_r-cy.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + P + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/E_reversed-cy.accented.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/E_reversed-cy.accented.glif new file mode 100644 index 00000000..8a14984c --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/E_reversed-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Э+acute.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/E_reversed-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/E_reversed-cy.glif new file mode 100644 index 00000000..9794a937 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/E_reversed-cy.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |C + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/E_reverseddieresiscyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/E_reverseddieresiscyr.glif new file mode 100644 index 00000000..246924df --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/E_reverseddieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ereversed-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/E_rtickcyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/E_rtickcyr.glif new file mode 100644 index 00000000..086b52a1 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/E_rtickcyr.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + P + com.fontlab.metricsRight + P + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/E_s-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/E_s-cy.glif new file mode 100644 index 00000000..14cb3c6c --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/E_s-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/E_stailcyr.B_S_H_.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/E_stailcyr.B_S_H_.glif new file mode 100644 index 00000000..c8e48ef8 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/E_stailcyr.B_S_H_.glif @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + C + com.fontlab.metricsRight + C + com.fontlab.recipe + C + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/E_stailcyr.C_H_U_.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/E_stailcyr.C_H_U_.glif new file mode 100644 index 00000000..7762f2f2 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/E_stailcyr.C_H_U_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+cedilla.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/E_stailcyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/E_stailcyr.glif new file mode 100644 index 00000000..17649ba5 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/E_stailcyr.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + С + com.fontlab.metricsRight + С + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/E_th.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/E_th.glif new file mode 100644 index 00000000..0265c3ad --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/E_th.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + D + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/F_.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/F_.glif new file mode 100644 index 00000000..7da23af8 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/F_.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/F_itacyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/F_itacyr.glif new file mode 100644 index 00000000..171f4aac --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/F_itacyr.glif @@ -0,0 +1,78 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + com.fontlab.recipe + Obarcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/G_.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/G_.glif new file mode 100644 index 00000000..edd6d933 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/G_.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O+18 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/G_.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/G_.ss01.glif new file mode 100644 index 00000000..c0728881 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/G_.ss01.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O+10 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/G_acute.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/G_acute.glif new file mode 100644 index 00000000..01cdfca4 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/G_acute.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + G+acute.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/G_acute.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/G_acute.ss01.glif new file mode 100644 index 00000000..824896ed --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/G_acute.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G.ss01+acute.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/G_breve.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/G_breve.glif new file mode 100644 index 00000000..1a6cb63a --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/G_breve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G+breve.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/G_breve.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/G_breve.ss01.glif new file mode 100644 index 00000000..c8d66f09 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/G_breve.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G.ss01+breve.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/G_circumflex.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/G_circumflex.glif new file mode 100644 index 00000000..ea139d86 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/G_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G+circumflex.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/G_circumflex.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/G_circumflex.ss01.glif new file mode 100644 index 00000000..f67810c9 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/G_circumflex.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G.ss01+circumflex.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/G_commaaccent.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/G_commaaccent.glif new file mode 100644 index 00000000..b3b7e3b5 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/G_commaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G+commaaccentcomb + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/G_commaaccent.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/G_commaaccent.ss01.glif new file mode 100644 index 00000000..28ede685 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/G_commaaccent.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G.ss01+commaaccentcomb + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/G_dotaccent.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/G_dotaccent.glif new file mode 100644 index 00000000..c18da51b --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/G_dotaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G+dotaccent.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/G_dotaccent.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/G_dotaccent.ss01.glif new file mode 100644 index 00000000..352b5527 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/G_dotaccent.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G.ss01+dotaccent.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/G_e-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/G_e-cy.glif new file mode 100644 index 00000000..8dc966bb --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/G_e-cy.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + T + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/G_ehookcyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/G_ehookcyr.glif new file mode 100644 index 00000000..bb6e0ed5 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/G_ehookcyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Г + com.fontlab.metricsRight + Tshecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/G_ehookstrokecyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/G_ehookstrokecyr.glif new file mode 100644 index 00000000..cc3bc6f8 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/G_ehookstrokecyr.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Gestrokecyr + com.fontlab.metricsRight + Gestrokecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/G_ermandbls.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/G_ermandbls.glif new file mode 100644 index 00000000..0343d0e1 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/G_ermandbls.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + U + com.fontlab.metricsRight + B-5 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/G_estrokecyr.B_S_H_.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/G_estrokecyr.B_S_H_.glif new file mode 100644 index 00000000..27d458c8 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/G_estrokecyr.B_S_H_.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + F + com.fontlab.metricsRight + Gestrokecyr + com.fontlab.recipe + Gestrokecyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/G_estrokecyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/G_estrokecyr.glif new file mode 100644 index 00000000..baa603e4 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/G_estrokecyr.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + Г + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/G_etailcyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/G_etailcyr.glif new file mode 100644 index 00000000..01f7cd37 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/G_etailcyr.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Г + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/G_heupturn-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/G_heupturn-cy.glif new file mode 100644 index 00000000..19d73593 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/G_heupturn-cy.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Г + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/G_jecyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/G_jecyr.glif new file mode 100644 index 00000000..3e1e2f01 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/G_jecyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ge-cy+acute.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/H_.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/H_.glif new file mode 100644 index 00000000..b2f124f5 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/H_.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + com.fontlab.metricsRight + I + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/H_a-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/H_a-cy.glif new file mode 100644 index 00000000..35bb08a1 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/H_a-cy.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + X + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/H_a-cy.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/H_a-cy.ss01.glif new file mode 100644 index 00000000..0246abc8 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/H_a-cy.ss01.glif @@ -0,0 +1,14 @@ + + + + + + + + + + com.fontlab.recipe + X + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/H_aabkhcyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/H_aabkhcyr.glif new file mode 100644 index 00000000..c148f5c1 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/H_aabkhcyr.glif @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/H_ahookcyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/H_ahookcyr.glif new file mode 100644 index 00000000..d890a155 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/H_ahookcyr.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + X + com.fontlab.metricsRight + X + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/H_ardsign-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/H_ardsign-cy.glif new file mode 100644 index 00000000..585396ea --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/H_ardsign-cy.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + Ь + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/H_astrokecyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/H_astrokecyr.glif new file mode 100644 index 00000000..373a9b1b --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/H_astrokecyr.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + X + com.fontlab.metricsRight + X + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/H_bar.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/H_bar.glif new file mode 100644 index 00000000..dcd8b83f --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/H_bar.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + r() + com.fontlab.metricsRight + H + com.schriftgestaltung.Glyphs.rightMetricsKey + H + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/H_circumflex.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/H_circumflex.glif new file mode 100644 index 00000000..2a5b338b --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/H_circumflex.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + H+circumflex.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/H_we-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/H_we-cy.glif new file mode 100644 index 00000000..57e6d9f4 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/H_we-cy.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Iota-cy + com.fontlab.metricsRight + Tshecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/I_-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/I_-cy.glif new file mode 100644 index 00000000..0c8b1b76 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/I_-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/I_.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/I_.glif new file mode 100644 index 00000000..2f9f29bb --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/I_.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/I_J_.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/I_J_.glif new file mode 100644 index 00000000..f06cad84 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/I_J_.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + I_J + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/I_a-cy.accented.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/I_a-cy.accented.glif new file mode 100644 index 00000000..b4a8dac9 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/I_a-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Я+acute.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/I_a-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/I_a-cy.glif new file mode 100644 index 00000000..9a34857b --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/I_a-cy.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |R+10 + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/I_a-cy.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/I_a-cy.ss01.glif new file mode 100644 index 00000000..3ffe61de --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/I_a-cy.ss01.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/I_acute.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/I_acute.glif new file mode 100644 index 00000000..6d10f53e --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/I_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+acute.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/I_breve.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/I_breve.glif new file mode 100644 index 00000000..6193d953 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/I_breve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+breve.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/I_circumflex.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/I_circumflex.glif new file mode 100644 index 00000000..6eb4c48c --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/I_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+circumflex.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/I_dieresis.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/I_dieresis.glif new file mode 100644 index 00000000..d2c2683c --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/I_dieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+dieresiscase.alt + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/I_dieresiscyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/I_dieresiscyr.glif new file mode 100644 index 00000000..f5260c9e --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/I_dieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ii-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/I_dotaccent.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/I_dotaccent.glif new file mode 100644 index 00000000..9c40b72f --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/I_dotaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+dotaccent.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/I_e-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/I_e-cy.glif new file mode 100644 index 00000000..a1f7f89b --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/I_e-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/I_ebrevecyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/I_ebrevecyr.glif new file mode 100644 index 00000000..219a60a8 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/I_ebrevecyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+breve.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/I_egravecyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/I_egravecyr.glif new file mode 100644 index 00000000..216a823f --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/I_egravecyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+grave.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/I_grave.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/I_grave.glif new file mode 100644 index 00000000..f8979c6a --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/I_grave.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+grave.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/I_gravecyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/I_gravecyr.glif new file mode 100644 index 00000000..3f9a46de --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/I_gravecyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ii-cy+grave.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/I_i-cy.accented.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/I_i-cy.accented.glif new file mode 100644 index 00000000..ea8c5664 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/I_i-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + И+acute.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/I_i-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/I_i-cy.glif new file mode 100644 index 00000000..08ea3af8 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/I_i-cy.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/I_ishort-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/I_ishort-cy.glif new file mode 100644 index 00000000..c04f86ed --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/I_ishort-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + uni0418+breve.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/I_macron.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/I_macron.glif new file mode 100644 index 00000000..89f76b06 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/I_macron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+macron.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/I_macroncyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/I_macroncyr.glif new file mode 100644 index 00000000..5445fd3b --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/I_macroncyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ii-cy+macron.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/I_o-cy.accented.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/I_o-cy.accented.glif new file mode 100644 index 00000000..6e9d3d42 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/I_o-cy.accented.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + com.fontlab.recipe + E+dieresis.case+acute.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/I_o-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/I_o-cy.glif new file mode 100644 index 00000000..8520cb7f --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/I_o-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Edieresis + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/I_ogonek.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/I_ogonek.glif new file mode 100644 index 00000000..83d32e59 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/I_ogonek.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+ogonek + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/I_ota-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/I_ota-cy.glif new file mode 100644 index 00000000..21134bab --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/I_ota-cy.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |J + com.fontlab.metricsRight + |J + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/I_otifiedA_-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/I_otifiedA_-cy.glif new file mode 100644 index 00000000..eeb55a5b --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/I_otifiedA_-cy.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + com.fontlab.metricsRight + A + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/I_shortsharptailcyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/I_shortsharptailcyr.glif new file mode 100644 index 00000000..310ce11c --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/I_shortsharptailcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Й + com.fontlab.metricsRight + Ensharptailcyr + com.fontlab.recipe + Й + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/I_tilde.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/I_tilde.glif new file mode 100644 index 00000000..0e28dd28 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/I_tilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+tilde.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/I_u-cy.accented.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/I_u-cy.accented.glif new file mode 100644 index 00000000..e72db93d --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/I_u-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ю+acute.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/I_u-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/I_u-cy.glif new file mode 100644 index 00000000..8954b9c7 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/I_u-cy.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/I_zhitsacyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/I_zhitsacyr.glif new file mode 100644 index 00000000..c8cdceea --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/I_zhitsacyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + V + com.fontlab.metricsRight + + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/I_zhitsagravedblcyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/I_zhitsagravedblcyr.glif new file mode 100644 index 00000000..c46bf078 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/I_zhitsagravedblcyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + com.fontlab.metricsLeft + Izhitsacyr + com.fontlab.metricsRight + Izhitsacyr + com.fontlab.recipe + Izhitsacyr+hungarumlaut.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/J_.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/J_.glif new file mode 100644 index 00000000..3f024fa2 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/J_.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + U + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/J_.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/J_.ss01.glif new file mode 100644 index 00000000..7ee41a8f --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/J_.ss01.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + U + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/J_circumflex.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/J_circumflex.glif new file mode 100644 index 00000000..984a8e5f --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/J_circumflex.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + J+circumflex.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/J_circumflex.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/J_circumflex.ss01.glif new file mode 100644 index 00000000..4821ab26 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/J_circumflex.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + J.ss01+circumflex.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/J_ecyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/J_ecyr.glif new file mode 100644 index 00000000..c3bedc2c --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/J_ecyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsLeft + J + com.fontlab.metricsRight + J + com.fontlab.recipe + J + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/K_.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/K_.glif new file mode 100644 index 00000000..e1a5bda0 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/K_.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/K_.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/K_.ss01.glif new file mode 100644 index 00000000..361cb727 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/K_.ss01.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/K_a-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/K_a-cy.glif new file mode 100644 index 00000000..8a75910e --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/K_a-cy.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.recipe + K + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/K_a-cy.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/K_a-cy.ss01.glif new file mode 100644 index 00000000..bd78f782 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/K_a-cy.ss01.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.recipe + K + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/K_aaleutcyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/K_aaleutcyr.glif new file mode 100644 index 00000000..0f5afd66 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/K_aaleutcyr.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + K + com.fontlab.metricsRight + K + com.fontlab.recipe + K + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/K_abashkcyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/K_abashkcyr.glif new file mode 100644 index 00000000..510687fe --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/K_abashkcyr.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Hardsign-cy + com.fontlab.metricsRight + K + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/K_ahookcyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/K_ahookcyr.glif new file mode 100644 index 00000000..5be30541 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/K_ahookcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + K + com.fontlab.metricsRight + Djecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/K_astrokecyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/K_astrokecyr.glif new file mode 100644 index 00000000..65b3e036 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/K_astrokecyr.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Yatcyr + com.fontlab.metricsRight + K + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/K_atailcyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/K_atailcyr.glif new file mode 100644 index 00000000..7115c140 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/K_atailcyr.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + К-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/K_averticalstrokecyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/K_averticalstrokecyr.glif new file mode 100644 index 00000000..09187ac5 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/K_averticalstrokecyr.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + K + com.fontlab.metricsRight + Ж + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/K_commaaccent.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/K_commaaccent.glif new file mode 100644 index 00000000..3baeb73b --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/K_commaaccent.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + K+commaaccentcomb + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/K_commaaccent.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/K_commaaccent.ss01.glif new file mode 100644 index 00000000..6419bd43 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/K_commaaccent.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + K.ss01+commaaccentcomb + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/K_jecyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/K_jecyr.glif new file mode 100644 index 00000000..ad5fb099 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/K_jecyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ka-cy+acute.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/K_oppacyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/K_oppacyr.glif new file mode 100644 index 00000000..1db0bf7a --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/K_oppacyr.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + C-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/K_sicyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/K_sicyr.glif new file mode 100644 index 00000000..50739b0c --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/K_sicyr.glif @@ -0,0 +1,98 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + З-10 + com.fontlab.metricsRight + З + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/L_.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/L_.glif new file mode 100644 index 00000000..3557de09 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/L_.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/L_acute.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/L_acute.glif new file mode 100644 index 00000000..0fd17816 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/L_acute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + L+acute.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/L_caron.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/L_caron.glif new file mode 100644 index 00000000..708f0bf0 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/L_caron.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + com.fontlab.recipe + L+caron.salt + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/L_commaaccent.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/L_commaaccent.glif new file mode 100644 index 00000000..a1cc46ce --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/L_commaaccent.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + L+commaaccentcomb + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/L_dot.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/L_dot.glif new file mode 100644 index 00000000..61906bd2 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/L_dot.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + com.fontlab.metricsRight + L + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/L_hacyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/L_hacyr.glif new file mode 100644 index 00000000..13de42c5 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/L_hacyr.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + X + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/L_jecyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/L_jecyr.glif new file mode 100644 index 00000000..cf499892 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/L_jecyr.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Ь + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/L_jekomicyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/L_jekomicyr.glif new file mode 100644 index 00000000..b7b9bce8 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/L_jekomicyr.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Njekomicyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/L_slash.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/L_slash.glif new file mode 100644 index 00000000..79ba1b44 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/L_slash.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + L-80 + com.fontlab.metricsRight + L + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/M_.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/M_.glif new file mode 100644 index 00000000..e5b64d0f --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/M_.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/M_.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/M_.ss01.glif new file mode 100644 index 00000000..3a9ebab8 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/M_.ss01.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H-25 + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/N_.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/N_.glif new file mode 100644 index 00000000..115d0864 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/N_.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/N_.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/N_.ss01.glif new file mode 100644 index 00000000..8a844b1f --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/N_.ss01.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H-10 + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/N_U_L_L_.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/N_U_L_L_.glif new file mode 100644 index 00000000..1ad177ae --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/N_U_L_L_.glif @@ -0,0 +1,4 @@ + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/N_acute.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/N_acute.glif new file mode 100644 index 00000000..d6e8e2cd --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/N_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N+acute.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/N_acute.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/N_acute.ss01.glif new file mode 100644 index 00000000..122a8503 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/N_acute.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N.ss01+acute.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/N_caron.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/N_caron.glif new file mode 100644 index 00000000..25b528f5 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/N_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N+caron.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/N_caron.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/N_caron.ss01.glif new file mode 100644 index 00000000..0ece919e --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/N_caron.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N.ss01+caron.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/N_commaaccent.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/N_commaaccent.glif new file mode 100644 index 00000000..a53cf4b8 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/N_commaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N+commaaccentcomb + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/N_commaaccent.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/N_commaaccent.ss01.glif new file mode 100644 index 00000000..2b2d08ff --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/N_commaaccent.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N.ss01+commaaccentcomb + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/N_jecyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/N_jecyr.glif new file mode 100644 index 00000000..ec683e2d --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/N_jecyr.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Н + com.fontlab.metricsRight + Ь + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/N_jekomicyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/N_jekomicyr.glif new file mode 100644 index 00000000..909d9bf1 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/N_jekomicyr.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + |u + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/N_tilde.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/N_tilde.glif new file mode 100644 index 00000000..8f0de397 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/N_tilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N+tilde.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/N_tilde.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/N_tilde.ss01.glif new file mode 100644 index 00000000..900c1fa7 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/N_tilde.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N.ss01+tilde.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/O_-cy.accented.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/O_-cy.accented.glif new file mode 100644 index 00000000..be90bbdf --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/O_-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+acute.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/O_-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/O_-cy.glif new file mode 100644 index 00000000..6be5d27b --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/O_-cy.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/O_.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/O_.glif new file mode 100644 index 00000000..e2a5c0ba --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/O_.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/O_B_inocular-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/O_B_inocular-cy.glif new file mode 100644 index 00000000..2014ffc7 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/O_B_inocular-cy.glif @@ -0,0 +1,81 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/O_D_oubleM_onocular-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/O_D_oubleM_onocular-cy.glif new file mode 100644 index 00000000..ceb94944 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/O_D_oubleM_onocular-cy.glif @@ -0,0 +1,119 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + com.fontlab.recipe + DoubleO-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/O_E_.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/O_E_.glif new file mode 100644 index 00000000..506f9a9a --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/O_E_.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + E + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/O_M_onocular-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/O_M_onocular-cy.glif new file mode 100644 index 00000000..9b4738c5 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/O_M_onocular-cy.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/O_acute.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/O_acute.glif new file mode 100644 index 00000000..28bc0ab7 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/O_acute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+acute.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/O_barcyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/O_barcyr.glif new file mode 100644 index 00000000..c0091d0c --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/O_barcyr.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + r() + com.fontlab.metricsRight + O + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/O_bardieresiscyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/O_bardieresiscyr.glif new file mode 100644 index 00000000..d21bee0d --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/O_bardieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Obarcyr+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/O_breve.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/O_breve.glif new file mode 100644 index 00000000..95f4feda --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/O_breve.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+breve.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/O_circumflex.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/O_circumflex.glif new file mode 100644 index 00000000..ca4f6786 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/O_circumflex.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+circumflex.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/O_dieresis.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/O_dieresis.glif new file mode 100644 index 00000000..53b44a20 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/O_dieresis.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+dieresis.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/O_dieresiscyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/O_dieresiscyr.glif new file mode 100644 index 00000000..b9c3a952 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/O_dieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/O_grave.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/O_grave.glif new file mode 100644 index 00000000..c8f1dc7c --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/O_grave.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+grave.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/O_hungarumlaut.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/O_hungarumlaut.glif new file mode 100644 index 00000000..2dea6d29 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/O_hungarumlaut.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+hungarumlaut.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/O_macron.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/O_macron.glif new file mode 100644 index 00000000..12a2b702 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/O_macron.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+macron.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/O_mega.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/O_mega.glif new file mode 100644 index 00000000..668b9cd5 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/O_mega.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O+10 + com.fontlab.metricsRight + O+10 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/O_megaB_road-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/O_megaB_road-cy.glif new file mode 100644 index 00000000..bde17e06 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/O_megaB_road-cy.glif @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O+10 + com.fontlab.metricsRight + O+10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/O_megacyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/O_megacyr.glif new file mode 100644 index 00000000..8f389932 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/O_megacyr.glif @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O+10 + com.fontlab.metricsRight + O+10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/O_megaroundcyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/O_megaroundcyr.glif new file mode 100644 index 00000000..86b07911 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/O_megaroundcyr.glif @@ -0,0 +1,81 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/O_megatitlocyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/O_megatitlocyr.glif new file mode 100644 index 00000000..f4c33da6 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/O_megatitlocyr.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O+10 + com.fontlab.metricsRight + O+10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/O_slash.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/O_slash.glif new file mode 100644 index 00000000..224c5e53 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/O_slash.glif @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/O_slashacute.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/O_slashacute.glif new file mode 100644 index 00000000..aee6f8f4 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/O_slashacute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Oslash+acute.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/O_tcyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/O_tcyr.glif new file mode 100644 index 00000000..71a3c7c6 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/O_tcyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Omegacyr+uni2DEE.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/O_tilde.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/O_tilde.glif new file mode 100644 index 00000000..19cf686e --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/O_tilde.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+tilde.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/P_.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/P_.glif new file mode 100644 index 00000000..74a46dc0 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/P_.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/P_alochkacyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/P_alochkacyr.glif new file mode 100644 index 00000000..f51f04de --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/P_alochkacyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/P_e-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/P_e-cy.glif new file mode 100644 index 00000000..819b1b42 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/P_e-cy.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/P_ehookcyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/P_ehookcyr.glif new file mode 100644 index 00000000..3033863e --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/P_ehookcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + П + com.fontlab.metricsRight + Shhacyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/P_etailcyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/P_etailcyr.glif new file mode 100644 index 00000000..ae82cc49 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/P_etailcyr.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/P_sicyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/P_sicyr.glif new file mode 100644 index 00000000..c1cee85e --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/P_sicyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + U-20 + com.fontlab.metricsRight + U-20 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/Q_.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/Q_.glif new file mode 100644 index 00000000..98942915 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/Q_.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/Q_.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/Q_.ss01.glif new file mode 100644 index 00000000..0dd312a7 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/Q_.ss01.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/Q_acyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/Q_acyr.glif new file mode 100644 index 00000000..4c648108 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/Q_acyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Q + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/R_.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/R_.glif new file mode 100644 index 00000000..4b6aaa11 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/R_.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/R_acute.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/R_acute.glif new file mode 100644 index 00000000..fb11129f --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/R_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + R+acute.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/R_caron.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/R_caron.glif new file mode 100644 index 00000000..ec4a84c3 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/R_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + R+caron.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/R_commaaccent.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/R_commaaccent.glif new file mode 100644 index 00000000..964904a9 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/R_commaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + R+commaaccentcomb + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/R_eversedzecyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/R_eversedzecyr.glif new file mode 100644 index 00000000..f12fd0c2 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/R_eversedzecyr.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + + com.fontlab.metricsRight + + com.fontlab.recipe + З + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/R_hacyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/R_hacyr.glif new file mode 100644 index 00000000..7f809511 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/R_hacyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + P + com.fontlab.metricsRight + X + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/S_.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/S_.glif new file mode 100644 index 00000000..7f6b14f3 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/S_.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/S_acute.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/S_acute.glif new file mode 100644 index 00000000..da09c617 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/S_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + S+acute.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/S_caron.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/S_caron.glif new file mode 100644 index 00000000..3cbf178c --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/S_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + S+caron.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/S_cedilla.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/S_cedilla.glif new file mode 100644 index 00000000..c05613eb --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/S_cedilla.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + S+cedilla + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/S_chwa.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/S_chwa.glif new file mode 100644 index 00000000..c3d3a85a --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/S_chwa.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Schwacyr + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/S_chwacyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/S_chwacyr.glif new file mode 100644 index 00000000..5107faa6 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/S_chwacyr.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O-10 + com.fontlab.metricsRight + O + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/S_chwadieresiscyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/S_chwadieresiscyr.glif new file mode 100644 index 00000000..29c3db45 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/S_chwadieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Schwacyr+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/S_circumflex.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/S_circumflex.glif new file mode 100644 index 00000000..337b81d4 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/S_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + S+circumflex.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/S_commaaccent.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/S_commaaccent.glif new file mode 100644 index 00000000..0a46f135 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/S_commaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + S+commaaccentcomb + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/S_emisoftcyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/S_emisoftcyr.glif new file mode 100644 index 00000000..527041f3 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/S_emisoftcyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Yat + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/S_ha-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/S_ha-cy.glif new file mode 100644 index 00000000..d393b25a --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/S_ha-cy.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/S_hcha-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/S_hcha-cy.glif new file mode 100644 index 00000000..9651580d --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/S_hcha-cy.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Д + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/S_hhacyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/S_hhacyr.glif new file mode 100644 index 00000000..3dbe92d7 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/S_hhacyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.metricsLeft + Н + com.fontlab.metricsRight + Tshecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/S_hhatailcyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/S_hhatailcyr.glif new file mode 100644 index 00000000..a295b11e --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/S_hhatailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/S_hwe-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/S_hwe-cy.glif new file mode 100644 index 00000000..aedc81b7 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/S_hwe-cy.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Щ + com.fontlab.metricsRight + Щ-20 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/S_jekomicyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/S_jekomicyr.glif new file mode 100644 index 00000000..46fe8fac --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/S_jekomicyr.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + |Schwa + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/S_oftsign-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/S_oftsign-cy.glif new file mode 100644 index 00000000..f80c918d --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/S_oftsign-cy.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + P + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/T_.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/T_.glif new file mode 100644 index 00000000..ffd66abd --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/T_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/T_bar.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/T_bar.glif new file mode 100644 index 00000000..d6c21a67 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/T_bar.glif @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/T_caron.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/T_caron.glif new file mode 100644 index 00000000..19f3024f --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/T_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + T+caron.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/T_cedilla.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/T_cedilla.glif new file mode 100644 index 00000000..845ca833 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/T_cedilla.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + T+cedilla + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/T_che-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/T_che-cy.glif new file mode 100644 index 00000000..5ab55fa3 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/T_che-cy.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Tetsecyr-20 + com.fontlab.metricsRight + Ч + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/T_commaaccent.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/T_commaaccent.glif new file mode 100644 index 00000000..e1e8c21c --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/T_commaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + T+commaaccentcomb + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/T_e-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/T_e-cy.glif new file mode 100644 index 00000000..e0c59b90 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/T_e-cy.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + com.fontlab.recipe + T + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/T_eW_ithM_iddleH_ook-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/T_eW_ithM_iddleH_ook-cy.glif new file mode 100644 index 00000000..9b381219 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/T_eW_ithM_iddleH_ook-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Djecyr + com.fontlab.metricsRight + Gehookcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/T_etailcyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/T_etailcyr.glif new file mode 100644 index 00000000..ecb7d888 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/T_etailcyr.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/T_etsecyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/T_etsecyr.glif new file mode 100644 index 00000000..9297620d --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/T_etsecyr.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Tshecyr + com.fontlab.metricsRight + Ц + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/T_horn.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/T_horn.glif new file mode 100644 index 00000000..e0db86bf --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/T_horn.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + P + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/T_jekomicyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/T_jekomicyr.glif new file mode 100644 index 00000000..8ecf0722 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/T_jekomicyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + Njekomicyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/T_se-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/T_se-cy.glif new file mode 100644 index 00000000..f47999dc --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/T_se-cy.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Д + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/T_seR_eversed-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/T_seR_eversed-cy.glif new file mode 100644 index 00000000..8e5a03f3 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/T_seR_eversed-cy.glif @@ -0,0 +1,20 @@ + + + + + + + + + + com.fontlab.metricsLeft + + com.fontlab.metricsRight + H + com.fontlab.recipe + Ц + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/T_shecyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/T_shecyr.glif new file mode 100644 index 00000000..b42d63bf --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/T_shecyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + n + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/T_sse-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/T_sse-cy.glif new file mode 100644 index 00000000..9ffb999e --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/T_sse-cy.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + T + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/T_swe-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/T_swe-cy.glif new file mode 100644 index 00000000..17ac47fc --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/T_swe-cy.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Shwe-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/T_we-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/T_we-cy.glif new file mode 100644 index 00000000..06030c58 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/T_we-cy.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + T + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/U_-cy.accented.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/U_-cy.accented.glif new file mode 100644 index 00000000..6acb5cfa --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/U_-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + У+acute.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/U_-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/U_-cy.glif new file mode 100644 index 00000000..6b471c74 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/U_-cy.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Y+10 + com.fontlab.metricsRight + Y+5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/U_-cy.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/U_-cy.ss01.glif new file mode 100644 index 00000000..8f85a141 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/U_-cy.ss01.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/U_.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/U_.glif new file mode 100644 index 00000000..1d9fb8c0 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/U_.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H-10 + com.fontlab.metricsRight + H-10 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/U_acute.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/U_acute.glif new file mode 100644 index 00000000..5246a7c1 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/U_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+acute.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/U_acutedblcyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/U_acutedblcyr.glif new file mode 100644 index 00000000..2732af91 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/U_acutedblcyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U-cy+hungarumlaut.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/U_breve.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/U_breve.glif new file mode 100644 index 00000000..3a34bc63 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/U_breve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+breve.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/U_circumflex.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/U_circumflex.glif new file mode 100644 index 00000000..75c7123d --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/U_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+circumflex.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/U_dieresis.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/U_dieresis.glif new file mode 100644 index 00000000..fa2d6f89 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/U_dieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+dieresis.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/U_dieresiscyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/U_dieresiscyr.glif new file mode 100644 index 00000000..a4e9d316 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/U_dieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/U_grave.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/U_grave.glif new file mode 100644 index 00000000..02cd24d2 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/U_grave.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+grave.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/U_hungarumlaut.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/U_hungarumlaut.glif new file mode 100644 index 00000000..164a2790 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/U_hungarumlaut.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+hungarumlaut.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/U_kM_onograph-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/U_kM_onograph-cy.glif new file mode 100644 index 00000000..88c7eea1 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/U_kM_onograph-cy.glif @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/U_kcyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/U_kcyr.glif new file mode 100644 index 00000000..c33ee64d --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/U_kcyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + y + com.fontlab.recipe + О_у + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/U_macron.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/U_macron.glif new file mode 100644 index 00000000..a29b7aea --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/U_macron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+macron.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/U_macroncyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/U_macroncyr.glif new file mode 100644 index 00000000..047eb1ae --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/U_macroncyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U-cy+macron.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/U_ogonek.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/U_ogonek.glif new file mode 100644 index 00000000..a888c81c --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/U_ogonek.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + U+ogonek + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/U_ring.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/U_ring.glif new file mode 100644 index 00000000..c949624c --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/U_ring.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+ring.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/U_short-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/U_short-cy.glif new file mode 100644 index 00000000..85993834 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/U_short-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ucyr+breve.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/U_short-cy.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/U_short-cy.ss01.glif new file mode 100644 index 00000000..8b981a32 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/U_short-cy.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ucyr.ss01+breve.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/U_straightcyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/U_straightcyr.glif new file mode 100644 index 00000000..162e1e37 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/U_straightcyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsRight + Y + com.fontlab.recipe + Y + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/U_straightstrokecyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/U_straightstrokecyr.glif new file mode 100644 index 00000000..1195c862 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/U_straightstrokecyr.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/U_tilde.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/U_tilde.glif new file mode 100644 index 00000000..f57306c5 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/U_tilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+tilde.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/V_.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/V_.glif new file mode 100644 index 00000000..6cbc88e7 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/V_.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/V_.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/V_.ss01.glif new file mode 100644 index 00000000..ecaf7696 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/V_.ss01.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/V_e-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/V_e-cy.glif new file mode 100644 index 00000000..a4f705ee --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/V_e-cy.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + B + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/W_.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/W_.glif new file mode 100644 index 00000000..009fa2e0 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/W_.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/W_.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/W_.ss01.glif new file mode 100644 index 00000000..87476ab6 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/W_.ss01.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |A + com.fontlab.metricsRight + |A + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/W_acute.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/W_acute.glif new file mode 100644 index 00000000..3700fb91 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/W_acute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W+acute.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/W_acute.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/W_acute.ss01.glif new file mode 100644 index 00000000..25a1b2ae --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/W_acute.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W.ss01+acute.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/W_circumflex.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/W_circumflex.glif new file mode 100644 index 00000000..dcd86589 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/W_circumflex.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W+circumflex.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/W_circumflex.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/W_circumflex.ss01.glif new file mode 100644 index 00000000..360a6b0d --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/W_circumflex.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W.ss01+circumflex.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/W_dieresis.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/W_dieresis.glif new file mode 100644 index 00000000..f19fa9bb --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/W_dieresis.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + W+dieresis.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/W_dieresis.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/W_dieresis.ss01.glif new file mode 100644 index 00000000..39b5f49b --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/W_dieresis.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W.ss01+dieresis.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/W_ecyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/W_ecyr.glif new file mode 100644 index 00000000..0597fb13 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/W_ecyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/W_grave.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/W_grave.glif new file mode 100644 index 00000000..885e5e5c --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/W_grave.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W+grave.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/W_grave.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/W_grave.ss01.glif new file mode 100644 index 00000000..6cdf35cb --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/W_grave.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W.ss01+grave.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/X_.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/X_.glif new file mode 100644 index 00000000..c40f5d8a --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/X_.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/X_.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/X_.ss01.glif new file mode 100644 index 00000000..a28814ad --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/X_.ss01.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/X_atailcyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/X_atailcyr.glif new file mode 100644 index 00000000..287c342e --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/X_atailcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + X + com.fontlab.metricsRight + Katailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/Y_.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/Y_.glif new file mode 100644 index 00000000..de102815 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/Y_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/Y_.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/Y_.ss01.glif new file mode 100644 index 00000000..e6baf2fd --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/Y_.ss01.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/Y_acute.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/Y_acute.glif new file mode 100644 index 00000000..ab62cb26 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/Y_acute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y+acute.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/Y_acute.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/Y_acute.ss01.glif new file mode 100644 index 00000000..c372db2d --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/Y_acute.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y.ss01+acute.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/Y_aecyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/Y_aecyr.glif new file mode 100644 index 00000000..35a8e680 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/Y_aecyr.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Я + com.fontlab.metricsRight + E + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/Y_atI_otified-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/Y_atI_otified-cy.glif new file mode 100644 index 00000000..08eb286a --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/Y_atI_otified-cy.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + com.fontlab.metricsRight + Yatcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/Y_atcyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/Y_atcyr.glif new file mode 100644 index 00000000..f8b24bea --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/Y_atcyr.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Т + com.fontlab.metricsRight + Ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/Y_circumflex.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/Y_circumflex.glif new file mode 100644 index 00000000..e903f683 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/Y_circumflex.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y+circumflex.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/Y_circumflex.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/Y_circumflex.ss01.glif new file mode 100644 index 00000000..acedd064 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/Y_circumflex.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y.ss01+circumflex.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/Y_dieresis.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/Y_dieresis.glif new file mode 100644 index 00000000..eb81a897 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/Y_dieresis.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y+dieresis.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/Y_dieresis.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/Y_dieresis.ss01.glif new file mode 100644 index 00000000..9658bf39 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/Y_dieresis.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y.ss01+dieresis.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/Y_erN_eutral-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/Y_erN_eutral-cy.glif new file mode 100644 index 00000000..24072273 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/Y_erN_eutral-cy.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Hardsign-cy + com.fontlab.metricsRight + Ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/Y_eru-cy.accented.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/Y_eru-cy.accented.glif new file mode 100644 index 00000000..d7483d36 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/Y_eru-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ы+acute.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/Y_eru-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/Y_eru-cy.glif new file mode 100644 index 00000000..e1c77a14 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/Y_eru-cy.glif @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/Y_eru-cymacron.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/Y_eru-cymacron.glif new file mode 100644 index 00000000..c5b43b62 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/Y_eru-cymacron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ы+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/Y_eruB_ackY_er-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/Y_eruB_ackY_er-cy.glif new file mode 100644 index 00000000..db3f7f8f --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/Y_eruB_ackY_er-cy.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Hardsign + com.fontlab.metricsRight + I + com.fontlab.recipe + Hardsign-cy_I + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/Y_i-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/Y_i-cy.glif new file mode 100644 index 00000000..21cb44ab --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/Y_i-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Idieresis + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/Y_longdieresiscyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/Y_longdieresiscyr.glif new file mode 100644 index 00000000..b866932e --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/Y_longdieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Yeru-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/Y_n-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/Y_n-cy.glif new file mode 100644 index 00000000..54166a81 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/Y_n-cy.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |Izhitsa + com.fontlab.metricsRight + |Izhitsa + com.fontlab.recipe + Izhitsa + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/Y_uR_eversed-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/Y_uR_eversed-cy.glif new file mode 100644 index 00000000..39d6ced8 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/Y_uR_eversed-cy.glif @@ -0,0 +1,20 @@ + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + H + com.fontlab.recipe + Ю + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/Y_usB_lended-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/Y_usB_lended-cy.glif new file mode 100644 index 00000000..f66fffe6 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/Y_usB_lended-cy.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Yusbigcyr + com.fontlab.metricsRight + Yusbigcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/Y_usC_losedlittle-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/Y_usC_losedlittle-cy.glif new file mode 100644 index 00000000..c5a8dcc5 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/Y_usC_losedlittle-cy.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + A + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/Y_usbigcyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/Y_usbigcyr.glif new file mode 100644 index 00000000..6277824f --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/Y_usbigcyr.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ж + com.fontlab.metricsRight + Ж + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/Y_usbigiotifiedcyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/Y_usbigiotifiedcyr.glif new file mode 100644 index 00000000..8beedef9 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/Y_usbigiotifiedcyr.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + Ж + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/Y_usiotifiedC_losedL_ittle-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/Y_usiotifiedC_losedL_ittle-cy.glif new file mode 100644 index 00000000..46ee706e --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/Y_usiotifiedC_losedL_ittle-cy.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + A + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/Y_uslittlecyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/Y_uslittlecyr.glif new file mode 100644 index 00000000..e3abe047 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/Y_uslittlecyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + А-5 + com.fontlab.metricsRight + А-5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/Y_uslittleiotifiedcyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/Y_uslittleiotifiedcyr.glif new file mode 100644 index 00000000..9e68744c --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/Y_uslittleiotifiedcyr.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + А-5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/Z_.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/Z_.glif new file mode 100644 index 00000000..9b382074 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/Z_.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/Z_.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/Z_.ss01.glif new file mode 100644 index 00000000..0901ba81 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/Z_.ss01.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/Z_acute.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/Z_acute.glif new file mode 100644 index 00000000..ae3e9378 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/Z_acute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Z+acute.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/Z_acute.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/Z_acute.ss01.glif new file mode 100644 index 00000000..c50ffae4 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/Z_acute.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Z.ss01+acute.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/Z_caron.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/Z_caron.glif new file mode 100644 index 00000000..a763f367 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/Z_caron.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Z+caron.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/Z_caron.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/Z_caron.ss01.glif new file mode 100644 index 00000000..4a7d2cf4 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/Z_caron.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Z.ss01+caron.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/Z_dotaccent.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/Z_dotaccent.glif new file mode 100644 index 00000000..f702f08b --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/Z_dotaccent.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Z+dotaccent.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/Z_dotaccent.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/Z_dotaccent.ss01.glif new file mode 100644 index 00000000..cf90594b --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/Z_dotaccent.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Z.ss01+dotaccent.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/Z_e-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/Z_e-cy.glif new file mode 100644 index 00000000..d20f7801 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/Z_e-cy.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |C + com.fontlab.metricsRight + B + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/Z_edieresiscyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/Z_edieresiscyr.glif new file mode 100644 index 00000000..91c81eb7 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/Z_edieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ze-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/Z_emlya-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/Z_emlya-cy.glif new file mode 100644 index 00000000..5ca1f665 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/Z_emlya-cy.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Z-10 + com.fontlab.metricsRight + Z + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/Z_etailcyr.B_S_H_.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/Z_etailcyr.B_S_H_.glif new file mode 100644 index 00000000..ce72a25b --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/Z_etailcyr.B_S_H_.glif @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + З + com.fontlab.metricsRight + З + com.fontlab.recipe + Zetailcyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/Z_etailcyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/Z_etailcyr.glif new file mode 100644 index 00000000..22582b58 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/Z_etailcyr.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + З + com.fontlab.metricsRight + З + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/Z_he-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/Z_he-cy.glif new file mode 100644 index 00000000..e79d7e74 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/Z_he-cy.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |K + com.fontlab.metricsRight + K + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/Z_he-cy.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/Z_he-cy.ss01.glif new file mode 100644 index 00000000..db32919c --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/Z_he-cy.ss01.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |K + com.fontlab.metricsRight + K + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/Z_hebrevecyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/Z_hebrevecyr.glif new file mode 100644 index 00000000..5786d0f8 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/Z_hebrevecyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Zhe-cy+breve.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/Z_hedieresiscyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/Z_hedieresiscyr.glif new file mode 100644 index 00000000..067a0c90 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/Z_hedieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Zhe-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/Z_hetailcyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/Z_hetailcyr.glif new file mode 100644 index 00000000..e0ed8062 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/Z_hetailcyr.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ж + com.fontlab.metricsRight + Katailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/Z_hwe-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/Z_hwe-cy.glif new file mode 100644 index 00000000..c0cd7e50 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/Z_hwe-cy.glif @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + З + com.fontlab.metricsRight + Ж + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/Z_jekomicyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/Z_jekomicyr.glif new file mode 100644 index 00000000..bc8da8d1 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/Z_jekomicyr.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Dzjekomicyr + com.fontlab.metricsRight + Njekomicyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/_notdef.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/_notdef.glif new file mode 100644 index 00000000..97ef4ce2 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/_notdef.glif @@ -0,0 +1,178 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + =55 + com.schriftgestaltung.Glyphs.rightMetricsKey + =55 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/_perc-circule.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/_perc-circule.glif new file mode 100644 index 00000000..6ced9e73 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/_perc-circule.glif @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.schriftgestaltung.Glyphs.Export + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/a-cy.accented.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/a-cy.accented.glif new file mode 100644 index 00000000..284e5a0d --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/a-cy.accented.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+acute + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/a-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/a-cy.glif new file mode 100644 index 00000000..5886fae6 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/a-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/a-cy.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/a-cy.ss01.glif new file mode 100644 index 00000000..551814c3 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/a-cy.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/a.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/a.glif new file mode 100644 index 00000000..ec6d0a49 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/a.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + n-10 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/a.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/a.ss01.glif new file mode 100644 index 00000000..8789d3f7 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/a.ss01.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/aacute.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/aacute.glif new file mode 100644 index 00000000..011c0d17 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/aacute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+acute + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/aacute.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/aacute.ss01.glif new file mode 100644 index 00000000..87d798a4 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/aacute.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+acute + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/abreve.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/abreve.glif new file mode 100644 index 00000000..2e8ca6ac --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/abreve.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+breve + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/abreve.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/abreve.ss01.glif new file mode 100644 index 00000000..8243d288 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/abreve.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+breve + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/abrevecyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/abrevecyr.glif new file mode 100644 index 00000000..681a4222 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/abrevecyr.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+breve + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/acaron.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/acaron.glif new file mode 100644 index 00000000..cd3cd6a4 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/acaron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+caron + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/acircumflex.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/acircumflex.glif new file mode 100644 index 00000000..9bdf1c65 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/acircumflex.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+circumflex + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/acircumflex.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/acircumflex.ss01.glif new file mode 100644 index 00000000..360996d6 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/acircumflex.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+circumflex + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/acute.case.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/acute.case.glif new file mode 100644 index 00000000..d03b42c4 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/acute.case.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/acute.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/acute.glif new file mode 100644 index 00000000..39bc8759 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/acute.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/adieresis.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/adieresis.glif new file mode 100644 index 00000000..bdfee8d0 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/adieresis.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+dieresis + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/adieresis.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/adieresis.ss01.glif new file mode 100644 index 00000000..a9f09dbd --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/adieresis.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+dieresis + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/adieresiscyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/adieresiscyr.glif new file mode 100644 index 00000000..d5ced023 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/adieresiscyr.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/ae.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/ae.glif new file mode 100644 index 00000000..1cb06665 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/ae.glif @@ -0,0 +1,101 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + a + com.fontlab.metricsRight + e + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/ae.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/ae.ss01.glif new file mode 100644 index 00000000..e7cd67bf --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/ae.ss01.glif @@ -0,0 +1,96 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + a + com.fontlab.metricsRight + e.ss01 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/aeacute.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/aeacute.glif new file mode 100644 index 00000000..32c4b6b5 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/aeacute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ae+acute + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/agrave.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/agrave.glif new file mode 100644 index 00000000..6afb2262 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/agrave.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+grave + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/agrave.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/agrave.ss01.glif new file mode 100644 index 00000000..0636a829 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/agrave.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+grave + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/aiecyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/aiecyr.glif new file mode 100644 index 00000000..cb453de4 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/aiecyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ae + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/amacron.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/amacron.glif new file mode 100644 index 00000000..e9709188 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/amacron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+macron + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/amacron.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/amacron.ss01.glif new file mode 100644 index 00000000..f49f192f --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/amacron.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+macron + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/ampersand.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/ampersand.glif new file mode 100644 index 00000000..addb1130 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/ampersand.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/aogonek.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/aogonek.glif new file mode 100644 index 00000000..b0a724cf --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/aogonek.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+ogonek + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/aogonek.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/aogonek.ss01.glif new file mode 100644 index 00000000..12ef904d --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/aogonek.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+ogonek + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/apostrophemod.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/apostrophemod.glif new file mode 100644 index 00000000..770f4911 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/apostrophemod.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + apostrophe + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/approxequal.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/approxequal.glif new file mode 100644 index 00000000..427e7196 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/approxequal.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/aring.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/aring.glif new file mode 100644 index 00000000..96a7d2ca --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/aring.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+ring + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/aring.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/aring.ss01.glif new file mode 100644 index 00000000..6e9fc697 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/aring.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+ring + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/arrowdown.case.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/arrowdown.case.glif new file mode 100644 index 00000000..03b32ce5 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/arrowdown.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + arrowup + com.fontlab.metricsRight + arrowup + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/arrowdown.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/arrowdown.glif new file mode 100644 index 00000000..5c19f285 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/arrowdown.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + arrowup + com.fontlab.metricsRight + arrowup + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/arrowdown.ss01.case.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/arrowdown.ss01.case.glif new file mode 100644 index 00000000..018e9d94 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/arrowdown.ss01.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + arrowup + com.fontlab.metricsRight + arrowup + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/arrowdown.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/arrowdown.ss01.glif new file mode 100644 index 00000000..850c2471 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/arrowdown.ss01.glif @@ -0,0 +1,15 @@ + + + + + + + + + com.fontlab.metricsLeft + arrowup + com.fontlab.metricsRight + arrowup + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/arrowleft.case.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/arrowleft.case.glif new file mode 100644 index 00000000..563797ca --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/arrowleft.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + arrowleft + com.fontlab.metricsRight + arrowleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/arrowleft.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/arrowleft.glif new file mode 100644 index 00000000..79e91712 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/arrowleft.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/arrowleft.ss01.case.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/arrowleft.ss01.case.glif new file mode 100644 index 00000000..af542339 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/arrowleft.ss01.case.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + arrowleft + com.fontlab.metricsRight + arrowleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/arrowleft.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/arrowleft.ss01.glif new file mode 100644 index 00000000..3340f47b --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/arrowleft.ss01.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + arrowleft + com.fontlab.metricsRight + arrowleft + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/arrowright.case.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/arrowright.case.glif new file mode 100644 index 00000000..f643a62f --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/arrowright.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |arrowleft + com.fontlab.metricsRight + |arrowleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/arrowright.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/arrowright.glif new file mode 100644 index 00000000..fdb0f04e --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/arrowright.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + |arrowleft + com.fontlab.metricsRight + |arrowleft + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/arrowright.ss01.case.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/arrowright.ss01.case.glif new file mode 100644 index 00000000..699653a7 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/arrowright.ss01.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |arrowleft + com.fontlab.metricsRight + |arrowleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/arrowright.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/arrowright.ss01.glif new file mode 100644 index 00000000..33c30be3 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/arrowright.ss01.glif @@ -0,0 +1,15 @@ + + + + + + + + + com.fontlab.metricsLeft + |arrowleft + com.fontlab.metricsRight + |arrowleft + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/arrowup.case.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/arrowup.case.glif new file mode 100644 index 00000000..5829d861 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/arrowup.case.glif @@ -0,0 +1,15 @@ + + + + + + + + + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/arrowup.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/arrowup.glif new file mode 100644 index 00000000..ca3d6a7d --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/arrowup.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + l() + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/arrowup.ss01.case.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/arrowup.ss01.case.glif new file mode 100644 index 00000000..a7560784 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/arrowup.ss01.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + arrowup + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/arrowup.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/arrowup.ss01.glif new file mode 100644 index 00000000..d95cd619 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/arrowup.ss01.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + arrowup + com.fontlab.metricsRight + l() + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/asciicircum.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/asciicircum.glif new file mode 100644 index 00000000..45be9efd --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/asciicircum.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/asciitilde.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/asciitilde.glif new file mode 100644 index 00000000..074fc232 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/asciitilde.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/asterisk.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/asterisk.glif new file mode 100644 index 00000000..7edc0fec --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/asterisk.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/at.case.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/at.case.glif new file mode 100644 index 00000000..fea7b89f --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/at.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/at.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/at.glif new file mode 100644 index 00000000..4cca9aa9 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/at.glif @@ -0,0 +1,92 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/atilde.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/atilde.glif new file mode 100644 index 00000000..26370ae4 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/atilde.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+tilde + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/atilde.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/atilde.ss01.glif new file mode 100644 index 00000000..06c1147b --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/atilde.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+tilde + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/b.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/b.glif new file mode 100644 index 00000000..e8c44982 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/b.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/b.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/b.ss01.glif new file mode 100644 index 00000000..ebb9aa04 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/b.ss01.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/backslash.case.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/backslash.case.glif new file mode 100644 index 00000000..c1c97657 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/backslash.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + backslash + com.fontlab.metricsRight + backslash + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/backslash.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/backslash.glif new file mode 100644 index 00000000..b00123de --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/backslash.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/bar.case.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/bar.case.glif new file mode 100644 index 00000000..ec2d9d9a --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/bar.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + H-10 + com.fontlab.metricsRight + H-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/bar.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/bar.glif new file mode 100644 index 00000000..21c181a9 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/bar.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H-10 + com.fontlab.metricsRight + H-10 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/be-cy.S_R_B_.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/be-cy.S_R_B_.glif new file mode 100644 index 00000000..c7a62a10 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/be-cy.S_R_B_.glif @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/be-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/be-cy.glif new file mode 100644 index 00000000..4b49efca --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/be-cy.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/bishopblack.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/bishopblack.glif new file mode 100644 index 00000000..234ccb95 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/bishopblack.glif @@ -0,0 +1,241 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =10 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/bishopwhite.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/bishopwhite.glif new file mode 100644 index 00000000..691b9361 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/bishopwhite.glif @@ -0,0 +1,331 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/braceleft.case.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/braceleft.case.glif new file mode 100644 index 00000000..23a9e0e7 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/braceleft.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |braceright.case + com.fontlab.metricsRight + |braceright.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/braceleft.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/braceleft.glif new file mode 100644 index 00000000..60673733 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/braceleft.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/braceright.case.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/braceright.case.glif new file mode 100644 index 00000000..99fb31cc --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/braceright.case.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/braceright.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/braceright.glif new file mode 100644 index 00000000..384e56d4 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/braceright.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/bracketangleleft.case.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/bracketangleleft.case.glif new file mode 100644 index 00000000..2491ea7f --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/bracketangleleft.case.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + parenleft.case + com.fontlab.metricsRight + parenleft.case + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/bracketangleleft.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/bracketangleleft.glif new file mode 100644 index 00000000..9b257d1e --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/bracketangleleft.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + parenleft + com.fontlab.metricsRight + parenleft + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/bracketangleright.case.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/bracketangleright.case.glif new file mode 100644 index 00000000..72a6ba5f --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/bracketangleright.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |bracketangleleft.case + com.fontlab.metricsRight + |bracketangleleft.case + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/bracketangleright.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/bracketangleright.glif new file mode 100644 index 00000000..65b06c33 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/bracketangleright.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.metricsLeft + |bracketangleleft + com.fontlab.metricsRight + |bracketangleleft + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/bracketleft.case.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/bracketleft.case.glif new file mode 100644 index 00000000..9a648a5d --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/bracketleft.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |bracketright.case + com.fontlab.metricsRight + |bracketright.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/bracketleft.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/bracketleft.glif new file mode 100644 index 00000000..e9e3c88f --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/bracketleft.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/bracketright.case.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/bracketright.case.glif new file mode 100644 index 00000000..95f43c6c --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/bracketright.case.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |bracketleft + com.fontlab.metricsRight + |bracketleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/bracketright.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/bracketright.glif new file mode 100644 index 00000000..592ffff9 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/bracketright.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |bracketleft + com.fontlab.metricsRight + |bracketleft + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/breve.case.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/breve.case.glif new file mode 100644 index 00000000..19493c3c --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/breve.case.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/breve.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/breve.glif new file mode 100644 index 00000000..b39c1ddf --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/breve.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/brokenbar.case.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/brokenbar.case.glif new file mode 100644 index 00000000..ce9a1793 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/brokenbar.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + bar + com.fontlab.metricsRight + bar + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/brokenbar.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/brokenbar.glif new file mode 100644 index 00000000..b72c505e --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/brokenbar.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + bar + com.fontlab.metricsRight + bar + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/bullet.case.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/bullet.case.glif new file mode 100644 index 00000000..427978f8 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/bullet.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + period + com.fontlab.metricsRight + period + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/bullet.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/bullet.glif new file mode 100644 index 00000000..b0c03017 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/bullet.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + period + com.fontlab.metricsRight + period + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/c.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/c.glif new file mode 100644 index 00000000..77c4fac1 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/c.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/cacute.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/cacute.glif new file mode 100644 index 00000000..1da8b5a3 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/cacute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+acute + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/caron.case.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/caron.case.glif new file mode 100644 index 00000000..3452d705 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/caron.case.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/caron.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/caron.glif new file mode 100644 index 00000000..cfc9d6fd --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/caron.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/caron.salt.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/caron.salt.glif new file mode 100644 index 00000000..fa2d9c3f --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/caron.salt.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/ccaron.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/ccaron.glif new file mode 100644 index 00000000..8c0073ad --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/ccaron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+caron + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/ccedilla.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/ccedilla.glif new file mode 100644 index 00000000..fd3c5a24 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/ccedilla.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+cedilla + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/cche-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/cche-cy.glif new file mode 100644 index 00000000..fa4ecb79 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/cche-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ч + com.fontlab.metricsRight + ч + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/ccircumflex.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/ccircumflex.glif new file mode 100644 index 00000000..305f71ea --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/ccircumflex.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+circumflex + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/cdotaccent.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/cdotaccent.glif new file mode 100644 index 00000000..de27160b --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/cdotaccent.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+dotaccent + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/cedilla.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/cedilla.glif new file mode 100644 index 00000000..de6bea8d --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/cedilla.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/cent.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/cent.glif new file mode 100644 index 00000000..b0272e3f --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/cent.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + c + com.fontlab.metricsRight + c + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/che-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/che-cy.glif new file mode 100644 index 00000000..fc4ae16e --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/che-cy.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + u-10 + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/cheabkhcyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/cheabkhcyr.glif new file mode 100644 index 00000000..5a55cd68 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/cheabkhcyr.glif @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + e + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/cheabkhtailcyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/cheabkhtailcyr.glif new file mode 100644 index 00000000..d535d7fe --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/cheabkhtailcyr.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + cheabkhcyr + com.fontlab.metricsRight + cheabkhcyr + com.fontlab.recipe + cheabkhcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/chedieresiscyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/chedieresiscyr.glif new file mode 100644 index 00000000..6eb1924b --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/chedieresiscyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + che-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/chekhakascyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/chekhakascyr.glif new file mode 100644 index 00000000..c8de6c27 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/chekhakascyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ч + com.fontlab.metricsRight + н + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/chetailcyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/chetailcyr.glif new file mode 100644 index 00000000..999e1dce --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/chetailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ч + com.fontlab.metricsRight + entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/chevertcyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/chevertcyr.glif new file mode 100644 index 00000000..9849290f --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/chevertcyr.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ч + com.fontlab.metricsRight + н + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/circumflex.case.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/circumflex.case.glif new file mode 100644 index 00000000..5dc16728 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/circumflex.case.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/circumflex.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/circumflex.glif new file mode 100644 index 00000000..42dcf0f0 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/circumflex.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/clubwhite.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/clubwhite.glif new file mode 100644 index 00000000..886e2580 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/clubwhite.glif @@ -0,0 +1,155 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/colon.case.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/colon.case.glif new file mode 100644 index 00000000..2e5ab8ed --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/colon.case.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/colon.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/colon.glif new file mode 100644 index 00000000..bfd12b56 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/colon.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/colontriangularmod.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/colontriangularmod.glif new file mode 100644 index 00000000..05efa563 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/colontriangularmod.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + colon + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/comma.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/comma.glif new file mode 100644 index 00000000..a55d5ece --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/comma.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/commaaccentcomb.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/commaaccentcomb.glif new file mode 100644 index 00000000..56a92498 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/commaaccentcomb.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/commaaccentcomb.salt.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/commaaccentcomb.salt.glif new file mode 100644 index 00000000..523ee852 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/commaaccentcomb.salt.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/contents.plist b/sources/FixelDisplay-SemiBold.ufo/glyphs/contents.plist new file mode 100644 index 00000000..2830b2de --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/contents.plist @@ -0,0 +1,2352 @@ + + + + + .notdef + _notdef.glif + A + A_.glif + A-cy + A_-cy.glif + A-cy.accented + A_-cy.accented.glif + A-cy.ss01 + A_-cy.ss01.glif + A.ss01 + A_.ss01.glif + AE + A_E_.glif + AE.ss01 + A_E_.ss01.glif + AEacute + A_E_acute.glif + Aacute + A_acute.glif + Aacute.ss01 + A_acute.ss01.glif + Abreve + A_breve.glif + Abreve.ss01 + A_breve.ss01.glif + Abrevecyr + A_brevecyr.glif + Acaron + A_caron.glif + Acircumflex + A_circumflex.glif + Acircumflex.ss01 + A_circumflex.ss01.glif + Adieresis + A_dieresis.glif + Adieresis.ss01 + A_dieresis.ss01.glif + Adieresiscyr + A_dieresiscyr.glif + Agrave + A_grave.glif + Agrave.ss01 + A_grave.ss01.glif + Aiecyr + A_iecyr.glif + Amacron + A_macron.glif + Amacron.ss01 + A_macron.ss01.glif + Aogonek + A_ogonek.glif + Aogonek.ss01 + A_ogonek.ss01.glif + Aring + A_ring.glif + Aring.ss01 + A_ring.ss01.glif + Atilde + A_tilde.glif + Atilde.ss01 + A_tilde.ss01.glif + B + B_.glif + Be-cy + B_e-cy.glif + C + C_.glif + CR + C_R_.glif + Cacute + C_acute.glif + Ccaron + C_caron.glif + Ccedilla + C_cedilla.glif + Cche-cy + C_che-cy.glif + Ccircumflex + C_circumflex.glif + Cdotaccent + C_dotaccent.glif + Che-cy + C_he-cy.glif + Cheabkhcyr + C_heabkhcyr.glif + Cheabkhtailcyr + C_heabkhtailcyr.glif + Chedieresiscyr + C_hedieresiscyr.glif + Chekhakascyr + C_hekhakascyr.glif + Chetailcyr + C_hetailcyr.glif + Chevertcyr + C_hevertcyr.glif + CrossedO-cy + C_rossedO_-cy.glif + D + D_.glif + Dcaron + D_caron.glif + Dchecyr + D_checyr.glif + Dcroat + D_croat.glif + De-cy + D_e-cy.glif + De-cy.BGR + D_e-cy.B_G_R_.glif + DeSoft-cy + D_eS_oft-cy.glif + Dekomicyr + D_ekomicyr.glif + Delta + D_elta.glif + Djecyr + D_jecyr.glif + Djekomicyr + D_jekomicyr.glif + Djerv-cy + D_jerv-cy.glif + DoubleO-cy + D_oubleO_-cy.glif + Dwe-cy + D_we-cy.glif + Dze-cy + D_ze-cy.glif + DzeReversed-cy + D_zeR_eversed-cy.glif + Dzeabkhcyr + D_zeabkhcyr.glif + Dzelo-cy + D_zelo-cy.glif + Dzhecyr + D_zhecyr.glif + Dzjekomicyr + D_zjekomicyr.glif + Dzwe-cy + D_zwe-cy.glif + Dzze-cy + D_zze-cy.glif + Dzzhecyr + D_zzhecyr.glif + E + E_.glif + E-cy + E_-cy.glif + E-cy.accented + E_-cy.accented.glif + Eacute + E_acute.glif + Ebreve + E_breve.glif + Ecaron + E_caron.glif + Ecircumflex + E_circumflex.glif + Edieresis + E_dieresis.glif + Edotaccent + E_dotaccent.glif + Ef-cy + E_f-cy.glif + Ef-cy.BGR + E_f-cy.B_G_R_.glif + Egrave + E_grave.glif + Eiotifiedcyr + E_iotifiedcyr.glif + El-cy + E_l-cy.glif + El-cy.BGR + E_l-cy.B_G_R_.glif + ElSoft-cy + E_lS_oft-cy.glif + Elhookcyr + E_lhookcyr.glif + Elmiddlehookcyr + E_lmiddlehookcyr.glif + Elsharptailcyr + E_lsharptailcyr.glif + Elsmallcyr + E_lsmallcyr.glif + Eltailcyr + E_ltailcyr.glif + Em-cy + E_m-cy.glif + Em-cy.ss01 + E_m-cy.ss01.glif + EmSoft-cy + E_mS_oft-cy.glif + Emacron + E_macron.glif + Emsharptailcyr + E_msharptailcyr.glif + En-cy + E_n-cy.glif + Eng + E_ng.glif + Eng.ss01 + E_ng.ss01.glif + Engecyr + E_ngecyr.glif + Enhookcyr + E_nhookcyr.glif + Enhookleftcyr + E_nhookleftcyr.glif + Enmiddlehookcyr + E_nmiddlehookcyr.glif + Ensharptailcyr + E_nsharptailcyr.glif + Entailcyr + E_ntailcyr.glif + Eogonek + E_ogonek.glif + Er-cy + E_r-cy.glif + Ereversed-cy + E_reversed-cy.glif + Ereversed-cy.accented + E_reversed-cy.accented.glif + Ereverseddieresiscyr + E_reverseddieresiscyr.glif + Ertickcyr + E_rtickcyr.glif + Es-cy + E_s-cy.glif + Estailcyr + E_stailcyr.glif + Estailcyr.BSH + E_stailcyr.B_S_H_.glif + Estailcyr.CHU + E_stailcyr.C_H_U_.glif + Eth + E_th.glif + F + F_.glif + Fitacyr + F_itacyr.glif + G + G_.glif + G.ss01 + G_.ss01.glif + Gacute + G_acute.glif + Gacute.ss01 + G_acute.ss01.glif + Gbreve + G_breve.glif + Gbreve.ss01 + G_breve.ss01.glif + Gcircumflex + G_circumflex.glif + Gcircumflex.ss01 + G_circumflex.ss01.glif + Gcommaaccent + G_commaaccent.glif + Gcommaaccent.ss01 + G_commaaccent.ss01.glif + Gdotaccent + G_dotaccent.glif + Gdotaccent.ss01 + G_dotaccent.ss01.glif + Ge-cy + G_e-cy.glif + Gehookcyr + G_ehookcyr.glif + Gehookstrokecyr + G_ehookstrokecyr.glif + Germandbls + G_ermandbls.glif + Gestrokecyr + G_estrokecyr.glif + Gestrokecyr.BSH + G_estrokecyr.B_S_H_.glif + Getailcyr + G_etailcyr.glif + Gheupturn-cy + G_heupturn-cy.glif + Gjecyr + G_jecyr.glif + H + H_.glif + Ha-cy + H_a-cy.glif + Ha-cy.ss01 + H_a-cy.ss01.glif + Haabkhcyr + H_aabkhcyr.glif + Hahookcyr + H_ahookcyr.glif + Hardsign-cy + H_ardsign-cy.glif + Hastrokecyr + H_astrokecyr.glif + Hbar + H_bar.glif + Hcircumflex + H_circumflex.glif + Hwe-cy + H_we-cy.glif + I + I_.glif + I-cy + I_-cy.glif + IJ + I_J_.glif + Ia-cy + I_a-cy.glif + Ia-cy.accented + I_a-cy.accented.glif + Ia-cy.ss01 + I_a-cy.ss01.glif + Iacute + I_acute.glif + Ibreve + I_breve.glif + Icircumflex + I_circumflex.glif + Idieresis + I_dieresis.glif + Idieresiscyr + I_dieresiscyr.glif + Idotaccent + I_dotaccent.glif + Ie-cy + I_e-cy.glif + Iebrevecyr + I_ebrevecyr.glif + Iegravecyr + I_egravecyr.glif + Igrave + I_grave.glif + Igravecyr + I_gravecyr.glif + Ii-cy + I_i-cy.glif + Ii-cy.accented + I_i-cy.accented.glif + Iishort-cy + I_ishort-cy.glif + Imacron + I_macron.glif + Imacroncyr + I_macroncyr.glif + Io-cy + I_o-cy.glif + Io-cy.accented + I_o-cy.accented.glif + Iogonek + I_ogonek.glif + Iota-cy + I_ota-cy.glif + IotifiedA-cy + I_otifiedA_-cy.glif + Ishortsharptailcyr + I_shortsharptailcyr.glif + Itilde + I_tilde.glif + Iu-cy + I_u-cy.glif + Iu-cy.accented + I_u-cy.accented.glif + Izhitsacyr + I_zhitsacyr.glif + Izhitsagravedblcyr + I_zhitsagravedblcyr.glif + J + J_.glif + J.ss01 + J_.ss01.glif + Jcircumflex + J_circumflex.glif + Jcircumflex.ss01 + J_circumflex.ss01.glif + Jecyr + J_ecyr.glif + K + K_.glif + K.ss01 + K_.ss01.glif + Ka-cy + K_a-cy.glif + Ka-cy.ss01 + K_a-cy.ss01.glif + Kaaleutcyr + K_aaleutcyr.glif + Kabashkcyr + K_abashkcyr.glif + Kahookcyr + K_ahookcyr.glif + Kastrokecyr + K_astrokecyr.glif + Katailcyr + K_atailcyr.glif + Kaverticalstrokecyr + K_averticalstrokecyr.glif + Kcommaaccent + K_commaaccent.glif + Kcommaaccent.ss01 + K_commaaccent.ss01.glif + Kjecyr + K_jecyr.glif + Koppacyr + K_oppacyr.glif + Ksicyr + K_sicyr.glif + L + L_.glif + Lacute + L_acute.glif + Lcaron + L_caron.glif + Lcommaaccent + L_commaaccent.glif + Ldot + L_dot.glif + Lhacyr + L_hacyr.glif + Ljecyr + L_jecyr.glif + Ljekomicyr + L_jekomicyr.glif + Lslash + L_slash.glif + M + M_.glif + M.ss01 + M_.ss01.glif + N + N_.glif + N.ss01 + N_.ss01.glif + NULL + N_U_L_L_.glif + Nacute + N_acute.glif + Nacute.ss01 + N_acute.ss01.glif + Ncaron + N_caron.glif + Ncaron.ss01 + N_caron.ss01.glif + Ncommaaccent + N_commaaccent.glif + Ncommaaccent.ss01 + N_commaaccent.ss01.glif + Njecyr + N_jecyr.glif + Njekomicyr + N_jekomicyr.glif + Ntilde + N_tilde.glif + Ntilde.ss01 + N_tilde.ss01.glif + O + O_.glif + O-cy + O_-cy.glif + O-cy.accented + O_-cy.accented.glif + OBinocular-cy + O_B_inocular-cy.glif + ODoubleMonocular-cy + O_D_oubleM_onocular-cy.glif + OE + O_E_.glif + OMonocular-cy + O_M_onocular-cy.glif + Oacute + O_acute.glif + Obarcyr + O_barcyr.glif + Obardieresiscyr + O_bardieresiscyr.glif + Obreve + O_breve.glif + Ocircumflex + O_circumflex.glif + Odieresis + O_dieresis.glif + Odieresiscyr + O_dieresiscyr.glif + Ograve + O_grave.glif + Ohungarumlaut + O_hungarumlaut.glif + Omacron + O_macron.glif + Omega + O_mega.glif + OmegaBroad-cy + O_megaB_road-cy.glif + Omegacyr + O_megacyr.glif + Omegaroundcyr + O_megaroundcyr.glif + Omegatitlocyr + O_megatitlocyr.glif + Oslash + O_slash.glif + Oslashacute + O_slashacute.glif + Otcyr + O_tcyr.glif + Otilde + O_tilde.glif + P + P_.glif + Palochkacyr + P_alochkacyr.glif + Pe-cy + P_e-cy.glif + Pehookcyr + P_ehookcyr.glif + Petailcyr + P_etailcyr.glif + Psicyr + P_sicyr.glif + Q + Q_.glif + Q.ss01 + Q_.ss01.glif + Qacyr + Q_acyr.glif + R + R_.glif + Racute + R_acute.glif + Rcaron + R_caron.glif + Rcommaaccent + R_commaaccent.glif + Reversedzecyr + R_eversedzecyr.glif + Rhacyr + R_hacyr.glif + S + S_.glif + Sacute + S_acute.glif + Scaron + S_caron.glif + Scedilla + S_cedilla.glif + Schwa + S_chwa.glif + Schwacyr + S_chwacyr.glif + Schwadieresiscyr + S_chwadieresiscyr.glif + Scircumflex + S_circumflex.glif + Scommaaccent + S_commaaccent.glif + Semisoftcyr + S_emisoftcyr.glif + Sha-cy + S_ha-cy.glif + Shcha-cy + S_hcha-cy.glif + Shhacyr + S_hhacyr.glif + Shhatailcyr + S_hhatailcyr.glif + Shwe-cy + S_hwe-cy.glif + Sjekomicyr + S_jekomicyr.glif + Softsign-cy + S_oftsign-cy.glif + T + T_.glif + Tbar + T_bar.glif + Tcaron + T_caron.glif + Tcedilla + T_cedilla.glif + Tche-cy + T_che-cy.glif + Tcommaaccent + T_commaaccent.glif + Te-cy + T_e-cy.glif + TeWithMiddleHook-cy + T_eW_ithM_iddleH_ook-cy.glif + Tetailcyr + T_etailcyr.glif + Tetsecyr + T_etsecyr.glif + Thorn + T_horn.glif + Tjekomicyr + T_jekomicyr.glif + Tse-cy + T_se-cy.glif + TseReversed-cy + T_seR_eversed-cy.glif + Tshecyr + T_shecyr.glif + Tsse-cy + T_sse-cy.glif + Tswe-cy + T_swe-cy.glif + Twe-cy + T_we-cy.glif + U + U_.glif + U-cy + U_-cy.glif + U-cy.accented + U_-cy.accented.glif + U-cy.ss01 + U_-cy.ss01.glif + Uacute + U_acute.glif + Uacutedblcyr + U_acutedblcyr.glif + Ubreve + U_breve.glif + Ucircumflex + U_circumflex.glif + Udieresis + U_dieresis.glif + Udieresiscyr + U_dieresiscyr.glif + Ugrave + U_grave.glif + Uhungarumlaut + U_hungarumlaut.glif + UkMonograph-cy + U_kM_onograph-cy.glif + Ukcyr + U_kcyr.glif + Umacron + U_macron.glif + Umacroncyr + U_macroncyr.glif + Uogonek + U_ogonek.glif + Uring + U_ring.glif + Ushort-cy + U_short-cy.glif + Ushort-cy.ss01 + U_short-cy.ss01.glif + Ustraightcyr + U_straightcyr.glif + Ustraightstrokecyr + U_straightstrokecyr.glif + Utilde + U_tilde.glif + V + V_.glif + V.ss01 + V_.ss01.glif + Ve-cy + V_e-cy.glif + W + W_.glif + W.ss01 + W_.ss01.glif + Wacute + W_acute.glif + Wacute.ss01 + W_acute.ss01.glif + Wcircumflex + W_circumflex.glif + Wcircumflex.ss01 + W_circumflex.ss01.glif + Wdieresis + W_dieresis.glif + Wdieresis.ss01 + W_dieresis.ss01.glif + Wecyr + W_ecyr.glif + Wgrave + W_grave.glif + Wgrave.ss01 + W_grave.ss01.glif + X + X_.glif + X.ss01 + X_.ss01.glif + Xatailcyr + X_atailcyr.glif + Y + Y_.glif + Y.ss01 + Y_.ss01.glif + Yacute + Y_acute.glif + Yacute.ss01 + Y_acute.ss01.glif + Yaecyr + Y_aecyr.glif + YatIotified-cy + Y_atI_otified-cy.glif + Yatcyr + Y_atcyr.glif + Ycircumflex + Y_circumflex.glif + Ycircumflex.ss01 + Y_circumflex.ss01.glif + Ydieresis + Y_dieresis.glif + Ydieresis.ss01 + Y_dieresis.ss01.glif + YerNeutral-cy + Y_erN_eutral-cy.glif + Yeru-cy + Y_eru-cy.glif + Yeru-cy.accented + Y_eru-cy.accented.glif + Yeru-cymacron + Y_eru-cymacron.glif + YeruBackYer-cy + Y_eruB_ackY_er-cy.glif + Yi-cy + Y_i-cy.glif + Ylongdieresiscyr + Y_longdieresiscyr.glif + Yn-cy + Y_n-cy.glif + YuReversed-cy + Y_uR_eversed-cy.glif + YusBlended-cy + Y_usB_lended-cy.glif + YusClosedlittle-cy + Y_usC_losedlittle-cy.glif + Yusbigcyr + Y_usbigcyr.glif + Yusbigiotifiedcyr + Y_usbigiotifiedcyr.glif + YusiotifiedClosedLittle-cy + Y_usiotifiedC_losedL_ittle-cy.glif + Yuslittlecyr + Y_uslittlecyr.glif + Yuslittleiotifiedcyr + Y_uslittleiotifiedcyr.glif + Z + Z_.glif + Z.ss01 + Z_.ss01.glif + Zacute + Z_acute.glif + Zacute.ss01 + Z_acute.ss01.glif + Zcaron + Z_caron.glif + Zcaron.ss01 + Z_caron.ss01.glif + Zdotaccent + Z_dotaccent.glif + Zdotaccent.ss01 + Z_dotaccent.ss01.glif + Ze-cy + Z_e-cy.glif + Zedieresiscyr + Z_edieresiscyr.glif + Zemlya-cy + Z_emlya-cy.glif + Zetailcyr + Z_etailcyr.glif + Zetailcyr.BSH + Z_etailcyr.B_S_H_.glif + Zhe-cy + Z_he-cy.glif + Zhe-cy.ss01 + Z_he-cy.ss01.glif + Zhebrevecyr + Z_hebrevecyr.glif + Zhedieresiscyr + Z_hedieresiscyr.glif + Zhetailcyr + Z_hetailcyr.glif + Zhwe-cy + Z_hwe-cy.glif + Zjekomicyr + Z_jekomicyr.glif + _perc-circule + _perc-circule.glif + a + a.glif + a-cy + a-cy.glif + a-cy.accented + a-cy.accented.glif + a-cy.ss01 + a-cy.ss01.glif + a.ss01 + a.ss01.glif + aacute + aacute.glif + aacute.ss01 + aacute.ss01.glif + abreve + abreve.glif + abreve.ss01 + abreve.ss01.glif + abrevecyr + abrevecyr.glif + acaron + acaron.glif + acircumflex + acircumflex.glif + acircumflex.ss01 + acircumflex.ss01.glif + acute + acute.glif + acute.case + acute.case.glif + adieresis + adieresis.glif + adieresis.ss01 + adieresis.ss01.glif + adieresiscyr + adieresiscyr.glif + ae + ae.glif + ae.ss01 + ae.ss01.glif + aeacute + aeacute.glif + agrave + agrave.glif + agrave.ss01 + agrave.ss01.glif + aiecyr + aiecyr.glif + amacron + amacron.glif + amacron.ss01 + amacron.ss01.glif + ampersand + ampersand.glif + aogonek + aogonek.glif + aogonek.ss01 + aogonek.ss01.glif + apostrophemod + apostrophemod.glif + approxequal + approxequal.glif + aring + aring.glif + aring.ss01 + aring.ss01.glif + arrowdown + arrowdown.glif + arrowdown.case + arrowdown.case.glif + arrowdown.ss01 + arrowdown.ss01.glif + arrowdown.ss01.case + arrowdown.ss01.case.glif + arrowleft + arrowleft.glif + arrowleft.case + arrowleft.case.glif + arrowleft.ss01 + arrowleft.ss01.glif + arrowleft.ss01.case + arrowleft.ss01.case.glif + arrowright + arrowright.glif + arrowright.case + arrowright.case.glif + arrowright.ss01 + arrowright.ss01.glif + arrowright.ss01.case + arrowright.ss01.case.glif + arrowup + arrowup.glif + arrowup.case + arrowup.case.glif + arrowup.ss01 + arrowup.ss01.glif + arrowup.ss01.case + arrowup.ss01.case.glif + asciicircum + asciicircum.glif + asciitilde + asciitilde.glif + asterisk + asterisk.glif + at + at.glif + at.case + at.case.glif + atilde + atilde.glif + atilde.ss01 + atilde.ss01.glif + b + b.glif + b.ss01 + b.ss01.glif + backslash + backslash.glif + backslash.case + backslash.case.glif + bar + bar.glif + bar.case + bar.case.glif + be-cy + be-cy.glif + be-cy.SRB + be-cy.S_R_B_.glif + bishopblack + bishopblack.glif + bishopwhite + bishopwhite.glif + braceleft + braceleft.glif + braceleft.case + braceleft.case.glif + braceright + braceright.glif + braceright.case + braceright.case.glif + bracketangleleft + bracketangleleft.glif + bracketangleleft.case + bracketangleleft.case.glif + bracketangleright + bracketangleright.glif + bracketangleright.case + bracketangleright.case.glif + bracketleft + bracketleft.glif + bracketleft.case + bracketleft.case.glif + bracketright + bracketright.glif + bracketright.case + bracketright.case.glif + breve + breve.glif + breve.case + breve.case.glif + brokenbar + brokenbar.glif + brokenbar.case + brokenbar.case.glif + bullet + bullet.glif + bullet.case + bullet.case.glif + c + c.glif + cacute + cacute.glif + caron + caron.glif + caron.case + caron.case.glif + caron.salt + caron.salt.glif + ccaron + ccaron.glif + ccedilla + ccedilla.glif + cche-cy + cche-cy.glif + ccircumflex + ccircumflex.glif + cdotaccent + cdotaccent.glif + cedilla + cedilla.glif + cent + cent.glif + che-cy + che-cy.glif + cheabkhcyr + cheabkhcyr.glif + cheabkhtailcyr + cheabkhtailcyr.glif + chedieresiscyr + chedieresiscyr.glif + chekhakascyr + chekhakascyr.glif + chetailcyr + chetailcyr.glif + chevertcyr + chevertcyr.glif + circumflex + circumflex.glif + circumflex.case + circumflex.case.glif + clubwhite + clubwhite.glif + colon + colon.glif + colon.case + colon.case.glif + colontriangularmod + colontriangularmod.glif + comma + comma.glif + commaaccentcomb + commaaccentcomb.glif + commaaccentcomb.salt + commaaccentcomb.salt.glif + copyright + copyright.glif + crossedo-cy + crossedo-cy.glif + crossedswords + crossedswords.glif + currency + currency.glif + d + d.glif + d.ss01 + d.ss01.glif + dagger + dagger.glif + daggerdbl + daggerdbl.glif + dcaron + dcaron.glif + dcaron.ss01 + dcaron.ss01.glif + dchecyr + dchecyr.glif + dcroat + dcroat.glif + dcroat.ss01 + dcroat.ss01.glif + de-cy + de-cy.glif + de-cy.BGR + de-cy.B_G_R_.glif + de-cy.ss01 + de-cy.ss01.glif + deSoft-cy + deS_oft-cy.glif + degree + degree.glif + dekomicyr + dekomicyr.glif + diamondwhite-misc + diamondwhite-misc.glif + dieresis + dieresis.glif + dieresis.alt + dieresis.alt.glif + dieresis.case + dieresis.case.glif + dieresisacute + dieresisacute.glif + dieresiscase.alt + dieresiscase.alt.glif + divide + divide.glif + djecyr + djecyr.glif + djekomicyr + djekomicyr.glif + djerv-cy + djerv-cy.glif + dollar + dollar.glif + dotaccent + dotaccent.glif + dotaccent.case + dotaccent.case.glif + doubleo-cy + doubleo-cy.glif + dramsignarmn + dramsignarmn.glif + dwe-cy + dwe-cy.glif + dze-cy + dze-cy.glif + dzeReversed-cy + dzeR_eversed-cy.glif + dzeabkhcyr + dzeabkhcyr.glif + dzelo-cy + dzelo-cy.glif + dzhecyr + dzhecyr.glif + dzjekomicyr + dzjekomicyr.glif + dzwe-cy + dzwe-cy.glif + dzze-cy + dzze-cy.glif + dzzhecyr + dzzhecyr.glif + e + e.glif + e-cy + e-cy.glif + e-cy.accented + e-cy.accented.glif + e-cy.hist + e-cy.hist.glif + e.ss01 + e.ss01.glif + eacute + eacute.glif + eacute.ss01 + eacute.ss01.glif + ebreve + ebreve.glif + ebreve.ss01 + ebreve.ss01.glif + ecaron + ecaron.glif + ecaron.ss01 + ecaron.ss01.glif + ecircumflex + ecircumflex.glif + ecircumflex.ss01 + ecircumflex.ss01.glif + edieresis + edieresis.glif + edieresis.ss01 + edieresis.ss01.glif + edotaccent + edotaccent.glif + edotaccent.ss01 + edotaccent.ss01.glif + ef-cy + ef-cy.glif + egrave + egrave.glif + egrave.ss01 + egrave.ss01.glif + eight + eight.glif + eight.osf + eight.osf.glif + eight.tf + eight.tf.glif + eiotifiedcyr + eiotifiedcyr.glif + eiotifiedcyr.BGR + eiotifiedcyr.B_G_R_.glif + el-cy + el-cy.glif + el-cy.BGR + el-cy.B_G_R_.glif + el-cy.ss01 + el-cy.ss01.glif + elSoft-cy + elS_oft-cy.glif + elhookcyr + elhookcyr.glif + ellipsis + ellipsis.glif + elmiddlehookcyr + elmiddlehookcyr.glif + elsharptailcyr + elsharptailcyr.glif + eltailcyr + eltailcyr.glif + em-cy + em-cy.glif + emSoft-cy + emS_oft-cy.glif + emacron + emacron.glif + emacron.ss01 + emacron.ss01.glif + emdash + emdash.glif + emdash.case + emdash.case.glif + emsharptailcyr + emsharptailcyr.glif + en-cy + en-cy.glif + enclosingcirclecomb + enclosingcirclecomb.glif + endash + endash.glif + endash.case + endash.case.glif + eng + eng.glif + engecyr + engecyr.glif + enhookcyr + enhookcyr.glif + enhookleftcyr + enhookleftcyr.glif + enmiddlehookcyr + enmiddlehookcyr.glif + ensharptailcyr + ensharptailcyr.glif + entailcyr + entailcyr.glif + eogonek + eogonek.glif + eogonek.ss01 + eogonek.ss01.glif + equal + equal.glif + er-cy + er-cy.glif + er-cy.ss01 + er-cy.ss01.glif + ereversed-cy + ereversed-cy.glif + ereversed-cy.accented + ereversed-cy.accented.glif + ereverseddieresiscyr + ereverseddieresiscyr.glif + ertickcyr + ertickcyr.glif + es-cy + es-cy.glif + estailcyr + estailcyr.glif + estailcyr.BSH + estailcyr.B_S_H_.glif + estailcyr.CHU + estailcyr.C_H_U_.glif + estimated + estimated.glif + eth + eth.glif + eturned + eturned.glif + euro + euro.glif + exclam + exclam.glif + exclamdown + exclamdown.glif + exclamdown.case + exclamdown.case.glif + f + f.glif + f.ss01 + f.ss01.glif + f_f + f_f.glif + f_f.ss01 + f_f.ss01.glif + f_f_i + f_f_i.glif + f_f_i.ss01 + f_f_i.ss01.glif + f_f_l + f_f_l.glif + f_f_l.ss01 + f_f_l.ss01.glif + fi + fi.glif + fi.ss01 + fi.ss01.glif + fitacyr + fitacyr.glif + five + five.glif + five.osf + five.osf.glif + five.tf + five.tf.glif + fl + fl.glif + fl.ss01 + fl.ss01.glif + floretteblack + floretteblack.glif + floretteoutlinedpetalledblackeight + floretteoutlinedpetalledblackeight.glif + florettewhite + florettewhite.glif + florin + florin.glif + flower + flower.glif + four + four.glif + four.osf + four.osf.glif + four.tf + four.tf.glif + fraction + fraction.glif + g + g.glif + g.ss01 + g.ss01.glif + gacute + gacute.glif + gacute.ss01 + gacute.ss01.glif + gbreve + gbreve.glif + gbreve.ss01 + gbreve.ss01.glif + gcircumflex + gcircumflex.glif + gcircumflex.ss01 + gcircumflex.ss01.glif + gcommaaccent + gcommaaccent.glif + gcommaaccent.ss01 + gcommaaccent.ss01.glif + gdotaccent + gdotaccent.glif + gdotaccent.ss01 + gdotaccent.ss01.glif + ge-cy + ge-cy.glif + ge-cy.BGR + ge-cy.B_G_R_.glif + ge-cy.SRB + ge-cy.S_R_B_.glif + gehookcyr + gehookcyr.glif + gehookstrokecyr + gehookstrokecyr.glif + germandbls + germandbls.glif + germandbls.ss01 + germandbls.ss01.glif + gestrokecyr + gestrokecyr.glif + gestrokecyr.BSH + gestrokecyr.B_S_H_.glif + getailcyr + getailcyr.glif + gheupturn-cy + gheupturn-cy.glif + gjecyr + gjecyr.glif + gjecyr.SRB + gjecyr.S_R_B_.glif + grave + grave.glif + grave.case + grave.case.glif + greater + greater.glif + greaterequal + greaterequal.glif + guillemetleft + guillemetleft.glif + guillemetleft.case + guillemetleft.case.glif + guillemetright + guillemetright.glif + guillemetright.case + guillemetright.case.glif + guilsinglleft + guilsinglleft.glif + guilsinglleft.case + guilsinglleft.case.glif + guilsinglright + guilsinglright.glif + guilsinglright.case + guilsinglright.case.glif + h + h.glif + ha-cy + ha-cy.glif + haabkhcyr + haabkhcyr.glif + hahookcyr + hahookcyr.glif + hardsign-cy + hardsign-cy.glif + hardsign-cy.BGR + hardsign-cy.B_G_R_.glif + hardsign-cy.ss01 + hardsign-cy.ss01.glif + hastrokecyr + hastrokecyr.glif + hbar + hbar.glif + hcircumflex + hcircumflex.glif + heart + heart.glif + heartwhite + heartwhite.glif + hryvnia + hryvnia.glif + hundredmillionscomb-cy + hundredmillionscomb-cy.glif + hundredthousandscombcyr + hundredthousandscombcyr.glif + hungarumlaut + hungarumlaut.glif + hungarumlaut.case + hungarumlaut.case.glif + hwe-cy + hwe-cy.glif + hyphen + hyphen.glif + hyphen.case + hyphen.case.glif + i + i.glif + i-cy + i-cy.glif + ia-cy + ia-cy.glif + ia-cy.accented + ia-cy.accented.glif + ia-cy.ss01 + ia-cy.ss01.glif + iacute + iacute.glif + ibreve + ibreve.glif + icircumflex + icircumflex.glif + idieresis + idieresis.glif + idieresiscyr + idieresiscyr.glif + idotless + idotless.glif + ie-cy + ie-cy.glif + ie-cy.ss01 + ie-cy.ss01.glif + iebrevecyr + iebrevecyr.glif + iegravecyr + iegravecyr.glif + iegravecyr.SRB + iegravecyr.S_R_B_.glif + igrave + igrave.glif + igravecyr + igravecyr.glif + igravecyr.SRB + igravecyr.S_R_B_.glif + ii-cy + ii-cy.glif + ii-cy.BGR + ii-cy.B_G_R_.glif + ii-cy.accented + ii-cy.accented.glif + iishort-cy + iishort-cy.glif + iishort-cy.BGR + iishort-cy.B_G_R_.glif + ij + ij.glif + imacron + imacron.glif + imacroncyr + imacroncyr.glif + increment + increment.glif + infinity + infinity.glif + integral + integral.glif + io-cy + io-cy.glif + io-cy.accented + io-cy.accented.glif + io-cy.ss01 + io-cy.ss01.glif + iogonek + iogonek.glif + iota-cy + iota-cy.glif + iotifieda-cy + iotifieda-cy.glif + iotifieda-cy.BGR + iotifieda-cy.B_G_R_.glif + iotifieda-cy.hist + iotifieda-cy.hist.glif + ishortsharptailcyr + ishortsharptailcyr.glif + itilde + itilde.glif + iu-cy + iu-cy.glif + iu-cy.BGR + iu-cy.B_G_R_.glif + iu-cy.accented + iu-cy.accented.glif + izhitsacyr + izhitsacyr.glif + izhitsagravedblcyr + izhitsagravedblcyr.glif + j + j.glif + jcircumflex + jcircumflex.glif + jdotless + jdotless.glif + je-cy + je-cy.glif + k + k.glif + ka-cy + ka-cy.glif + ka-cy.BGR + ka-cy.B_G_R_.glif + kaaleutcyr + kaaleutcyr.glif + kabashkcyr + kabashkcyr.glif + kahookcyr + kahookcyr.glif + kastrokecyr + kastrokecyr.glif + katailcyr + katailcyr.glif + kaverticalstrokecyr + kaverticalstrokecyr.glif + kcommaaccent + kcommaaccent.glif + kgreenlandic + kgreenlandic.glif + kjecyr + kjecyr.glif + knightblack + knightblack.glif + knightwhite + knightwhite.glif + koppacyr + koppacyr.glif + ksicyr + ksicyr.glif + l + l.glif + l.ss01 + l.ss01.glif + lacute + lacute.glif + lacute.ss01 + lacute.ss01.glif + lcaron + lcaron.glif + lcaron.ss01 + lcaron.ss01.glif + lcommaaccent + lcommaaccent.glif + lcommaaccent.ss01 + lcommaaccent.ss01.glif + ldot + ldot.glif + ldot.ss01 + ldot.ss01.glif + leo + leo.glif + less + less.glif + lessequal + lessequal.glif + lhacyr + lhacyr.glif + ljecyr + ljecyr.glif + ljecyr.ss01 + ljecyr.ss01.glif + ljekomicyr + ljekomicyr.glif + longs + longs.glif + lslash + lslash.glif + lslash.ss01 + lslash.ss01.glif + m + m.glif + macron + macron.glif + macron-fwd + macron-fwd.glif + macron-fwd.alt + macron-fwd.alt.glif + macron.case + macron.case.glif + macronacute.SRB + macronacute.S_R_B_.glif + millionscombcyr + millionscombcyr.glif + minus + minus.glif + minute + minute.glif + mu + mu.glif + multiply + multiply.glif + n + n.glif + nacute + nacute.glif + napostrophe + napostrophe.glif + ncaron + ncaron.glif + ncommaaccent + ncommaaccent.glif + neptune + neptune.glif + nine + nine.glif + nine.osf + nine.osf.glif + nine.tf + nine.tf.glif + njecyr + njecyr.glif + njecyr.ss01 + njecyr.ss01.glif + njekomicyr + njekomicyr.glif + notequal + notequal.glif + ntilde + ntilde.glif + numbersign + numbersign.glif + numero + numero.glif + numero.ss01 + numero.ss01.glif + o + o.glif + o-cy + o-cy.glif + o-cy.accented + o-cy.accented.glif + oBinocular-cy + oB_inocular-cy.glif + oDoubleMonocular-cy + oD_oubleM_onocular-cy.glif + oMonocular-cy + oM_onocular-cy.glif + oacute + oacute.glif + obarcyr + obarcyr.glif + obardieresiscyr + obardieresiscyr.glif + obreve + obreve.glif + ocircumflex + ocircumflex.glif + odieresis + odieresis.glif + odieresiscyr + odieresiscyr.glif + oe + oe.glif + oe.ss01 + oe.ss01.glif + ogonek + ogonek.glif + ograve + ograve.glif + ohungarumlaut + ohungarumlaut.glif + omacron + omacron.glif + omegaBroad-cy + omegaB_road-cy.glif + omegacyr + omegacyr.glif + omegaroundcyr + omegaroundcyr.glif + omegatitlocyr + omegatitlocyr.glif + omultiocular-cy + omultiocular-cy.glif + omultiocular-cy.alt + omultiocular-cy.alt.glif + one + one.glif + one.osf + one.osf.glif + one.tf + one.tf.glif + onehalf + onehalf.glif + onequarter + onequarter.glif + onesuperior + onesuperior.glif + ordfeminine + ordfeminine.glif + ordmasculine + ordmasculine.glif + oslash + oslash.glif + oslashacute + oslashacute.glif + otcyr + otcyr.glif + otilde + otilde.glif + p + p.glif + p.ss01 + p.ss01.glif + palatcombcyr + palatcombcyr.glif + palochkacyr + palochkacyr.glif + paragraph + paragraph.glif + parenleft + parenleft.glif + parenleft.case + parenleft.case.glif + parenright + parenright.glif + parenright.case + parenright.case.glif + partialdiff + partialdiff.glif + pe-cy + pe-cy.glif + pe-cy.BGR + pe-cy.B_G_R_.glif + pe-cy.SRB + pe-cy.S_R_B_.glif + pehookcyr + pehookcyr.glif + percent + percent.glif + period + period.glif + periodcentered + periodcentered.glif + perthousand + perthousand.glif + petailcyr + petailcyr.glif + pi + pi.glif + plus + plus.glif + plusminus + plusminus.glif + pokrytiecombcyr + pokrytiecombcyr.glif + product + product.glif + proportional + proportional.glif + psicyr + psicyr.glif + q + q.glif + q.ss01 + q.ss01.glif + qacyr + qacyr.glif + question + question.glif + questiondown + questiondown.glif + questiondown.case + questiondown.case.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 + radical + radical.glif + rcaron + rcaron.glif + rcommaaccent + rcommaaccent.glif + registered + registered.glif + reversedzecyr + reversedzecyr.glif + rhacyr + rhacyr.glif + ring + ring.glif + ring.case + ring.case.glif + rookblack + rookblack.glif + ruble + ruble.glif + s + s.glif + sacute + sacute.glif + scaron + scaron.glif + scedilla + scedilla.glif + schwacyr + schwacyr.glif + schwadieresiscyr + schwadieresiscyr.glif + scircumflex + scircumflex.glif + scommaaccent + scommaaccent.glif + second + second.glif + section + section.glif + semicolon + semicolon.glif + semicolon.case + semicolon.case.glif + semisoftcyr + semisoftcyr.glif + seven + seven.glif + seven.osf + seven.osf.glif + seven.tf + seven.tf.glif + sha-cy + sha-cy.glif + sha-cy.BGR + sha-cy.B_G_R_.glif + shcha-cy + shcha-cy.glif + shcha-cy.BGR + shcha-cy.B_G_R_.glif + shhacyr + shhacyr.glif + shhatailcyr + shhatailcyr.glif + shwe-cy + shwe-cy.glif + six + six.glif + six.osf + six.osf.glif + six.tf + six.tf.glif + sjekomicyr + sjekomicyr.glif + slash + slash.glif + slash.case + slash.case.glif + softsign-cy + softsign-cy.glif + softsign-cy.BGR + softsign-cy.B_G_R_.glif + softsign-cy.ss01 + softsign-cy.ss01.glif + space + space.glif + spadewhite + spadewhite.glif + sterling + sterling.glif + summation + summation.glif + t + t.glif + t.ss01 + t.ss01.glif + tbar + tbar.glif + tbar.ss01 + tbar.ss01.glif + tcaron + tcaron.glif + tcaron.ss01 + tcaron.ss01.glif + tcedilla + tcedilla.glif + tcedilla.ss01 + tcedilla.ss01.glif + tche-cy + tche-cy.glif + tcommaaccent + tcommaaccent.glif + tcommaaccent.ss01 + tcommaaccent.ss01.glif + te-cy + te-cy.glif + te-cy.BGR + te-cy.B_G_R_.glif + te-cy.SRB + te-cy.S_R_B_.glif + te-cy.ss01 + te-cy.ss01.glif + tenge + tenge.glif + tenmillionscomb-cy + tenmillionscomb-cy.glif + tetailcyr + tetailcyr.glif + tetsecyr + tetsecyr.glif + tewithmiddlehook-cy + tewithmiddlehook-cy.glif + thorn + thorn.glif + thousandmillionscomb-cy + thousandmillionscomb-cy.glif + thousandscyr + thousandscyr.glif + thousandscyr.dnom + thousandscyr.dnom.glif + three + three.glif + three.osf + three.osf.glif + three.tf + three.tf.glif + threequarters + threequarters.glif + threesuperior + threesuperior.glif + tilde + tilde.glif + tilde.case + tilde.case.glif + titlocombcyr + titlocombcyr.glif + tjekomicyr + tjekomicyr.glif + trademark + trademark.glif + tse-cy + tse-cy.glif + tse-cy.BGR + tse-cy.B_G_R_.glif + tseReversed-cy + tseR_eversed-cy.glif + tshecyr + tshecyr.glif + tsse-cy + tsse-cy.glif + tswe-cy + tswe-cy.glif + twe-cy + twe-cy.glif + two + two.glif + two.osf + two.osf.glif + two.tf + two.tf.glif + twosuperior + twosuperior.glif + u + u.glif + u-cy + u-cy.glif + u-cy.accented + u-cy.accented.glif + uacute + uacute.glif + uacutedblcyr + uacutedblcyr.glif + ubreve + ubreve.glif + ucircumflex + ucircumflex.glif + udieresis + udieresis.glif + udieresiscyr + udieresiscyr.glif + ugrave + ugrave.glif + uhungarumlaut + uhungarumlaut.glif + ukMonograph-cy + ukM_onograph-cy.glif + ukcyr + ukcyr.glif + umacron + umacron.glif + umacroncyr + umacroncyr.glif + underscore + underscore.glif + uni1C80 + uni1C_80.glif + uni1C81 + uni1C_81.glif + uni1C82 + uni1C_82.glif + uni1C83 + uni1C_83.glif + uni1C84 + uni1C_84.glif + uni1C85 + uni1C_85.glif + uni1C86 + uni1C_86.glif + uni1C87 + uni1C_87.glif + uni1C88 + uni1C_88.glif + uni1EBC + uni1E_B_C_.glif + uni1EBD + uni1E_B_D_.glif + uni2010 + uni2010.glif + uni2DEE + uni2D_E_E_.glif + uni2DEE.case + uni2D_E_E_.case.glif + uniE000 + uniE_000.glif + uniE000.alt + uniE_000.alt.glif + uniE01A + uniE_01A_.glif + uniF43A + uniF_43A_.glif + uniF43B + uniF_43B_.glif + uniF45D + uniF_45D_.glif + uniF45E + uniF_45E_.glif + uniF45F + uniF_45F_.glif + uniF475 + uniF_475.glif + uniF476 + uniF_476.glif + uniF477 + uniF_477.glif + uniF478 + uniF_478.glif + uniF479 + uniF_479.glif + uniF498 + uniF_498.glif + uniF499 + uniF_499.glif + uniF49A + uniF_49A_.glif + uniF49B + uniF_49B_.glif + uniF49C + uniF_49C_.glif + uniF49D + uniF_49D_.glif + uniF49E + uniF_49E_.glif + uniF49F + uniF_49F_.glif + uniF4C6 + uniF_4C_6.glif + uniF4C7 + uniF_4C_7.glif + uniF4CC + uniF_4C_C_.glif + uniF4CD + uniF_4C_D_.glif + uniF4D2 + uniF_4D_2.glif + uniF4D3 + uniF_4D_3.glif + uniF4D4 + uniF_4D_4.glif + uniF4D5 + uniF_4D_5.glif + uniF4D6 + uniF_4D_6.glif + uniF4D7 + uniF_4D_7.glif + uniF4D8 + uniF_4D_8.glif + uniF4D9 + uniF_4D_9.glif + uniF50E + uniF_50E_.glif + uniF50F + uniF_50F_.glif + uniF510 + uniF_510.glif + uniF511 + uniF_511.glif + uniF512 + uniF_512.glif + uniF513 + uniF_513.glif + uniF514 + uniF_514.glif + uniF515 + uniF_515.glif + uniF516 + uniF_516.glif + uniF517 + uniF_517.glif + uniF518 + uniF_518.glif + uniF519 + uniF_519.glif + uniF51A + uniF_51A_.glif + uniF51B + uniF_51B_.glif + uniF51C + uniF_51C_.glif + uniF51D + uniF_51D_.glif + uniF51E + uniF_51E_.glif + uniF51F + uniF_51F_.glif + uniF521 + uniF_521.glif + uniF522 + uniF_522.glif + uniF523 + uniF_523.glif + uniF524 + uniF_524.glif + uniF525 + uniF_525.glif + uniF526 + uniF_526.glif + uniF527 + uniF_527.glif + uniF528 + uniF_528.glif + uniF529 + uniF_529.glif + uniF52A + uniF_52A_.glif + uniF52B + uniF_52B_.glif + uniF52C + uniF_52C_.glif + uniF52D + uniF_52D_.glif + uniF52E + uniF_52E_.glif + uniF52F + uniF_52F_.glif + uniF532 + uniF_532.glif + uniF533 + uniF_533.glif + uniF536 + uniF_536.glif + uniF537 + uniF_537.glif + uniF538 + uniF_538.glif + uniF539 + uniF_539.glif + uniF830 + uniF_830.glif + uniF831 + uniF_831.glif + uniF833 + uniF_833.glif + uniF834 + uniF_834.glif + uniF839 + uniF_839.glif + uniF83A + uniF_83A_.glif + uniF86F + uniF_86F_.glif + uniF870 + uniF_870.glif + uniF872 + uniF_872.glif + uniF873 + uniF_873.glif + uniF875 + uniF_875.glif + uniF876 + uniF_876.glif + uniF878 + uniF_878.glif + uniF879 + uniF_879.glif + uniF87B + uniF_87B_.glif + uniF87C + uniF_87C_.glif + uniF87E + uniF_87E_.glif + uniF87F + uniF_87F_.glif + uogonek + uogonek.glif + uring + uring.glif + ushort-cy + ushort-cy.glif + ustraightcyr + ustraightcyr.glif + ustraightstrokecyr + ustraightstrokecyr.glif + utilde + utilde.glif + v + v.glif + ve-cy + ve-cy.glif + ve-cy.BGR + ve-cy.B_G_R_.glif + ve-cy.ss01 + ve-cy.ss01.glif + virgo + virgo.glif + vzmetcomb-cy + vzmetcomb-cy.glif + w + w.glif + wacute + wacute.glif + wcircumflex + wcircumflex.glif + wdieresis + wdieresis.glif + wecyr + wecyr.glif + wgrave + wgrave.glif + x + x.glif + xatailcyr + xatailcyr.glif + y + y.glif + yacute + yacute.glif + yaecyr + yaecyr.glif + yatIotified-cy + yatI_otified-cy.glif + yatcyr + yatcyr.glif + yatcyr.BGR + yatcyr.B_G_R_.glif + ycircumflex + ycircumflex.glif + ydieresis + ydieresis.glif + yen + yen.glif + yen.ss01 + yen.ss01.glif + yerNeutral-cy + yerN_eutral-cy.glif + yeru-cy + yeru-cy.glif + yeru-cy.accented + yeru-cy.accented.glif + yeru-cy.ss01 + yeru-cy.ss01.glif + yeruBackyer-cy + yeruB_ackyer-cy.glif + yi-cy + yi-cy.glif + yi-cy.alt + yi-cy.alt.glif + ylongdieresiscyr + ylongdieresiscyr.glif + yn-cy + yn-cy.glif + yuReversed-cy + yuR_eversed-cy.glif + yusBlended-cy + yusB_lended-cy.glif + yusClosedlittle-cy + yusC_losedlittle-cy.glif + yusbigcyr + yusbigcyr.glif + yusbigiotifiedcyr + yusbigiotifiedcyr.glif + yusbigiotifiedcyr.BGR + yusbigiotifiedcyr.B_G_R_.glif + yusiotifiedClosedLittle-cy + yusiotifiedC_losedL_ittle-cy.glif + yuslittlecyr + yuslittlecyr.glif + yuslittleiotifiedcyr + yuslittleiotifiedcyr.glif + z + z.glif + zacute + zacute.glif + zcaron + zcaron.glif + zdotaccent + zdotaccent.glif + ze-cy + ze-cy.glif + ze-cy.BGR + ze-cy.B_G_R_.glif + zedieresiscyr + zedieresiscyr.glif + zemlya-cy + zemlya-cy.glif + zero + zero.glif + zero.osf + zero.osf.glif + zero.tf + zero.tf.glif + zetailcyr + zetailcyr.glif + zetailcyr.BSH + zetailcyr.B_S_H_.glif + zhe-cy + zhe-cy.glif + zhe-cy.BGR + zhe-cy.B_G_R_.glif + zhebrevecyr + zhebrevecyr.glif + zhedieresiscyr + zhedieresiscyr.glif + zhetailcyr + zhetailcyr.glif + zhwe-cy + zhwe-cy.glif + zjekomicyr + zjekomicyr.glif + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/copyright.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/copyright.glif new file mode 100644 index 00000000..e3c6b1fa --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/copyright.glif @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/crossedo-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/crossedo-cy.glif new file mode 100644 index 00000000..788d1d91 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/crossedo-cy.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + com.fontlab.recipe + o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/crossedswords.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/crossedswords.glif new file mode 100644 index 00000000..fc2d7cd3 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/crossedswords.glif @@ -0,0 +1,103 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/currency.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/currency.glif new file mode 100644 index 00000000..353668c3 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/currency.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/d.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/d.glif new file mode 100644 index 00000000..4ebe11ee --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/d.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/d.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/d.ss01.glif new file mode 100644 index 00000000..f5c82583 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/d.ss01.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/dagger.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/dagger.glif new file mode 100644 index 00000000..701438a3 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/dagger.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/daggerdbl.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/daggerdbl.glif new file mode 100644 index 00000000..f6fc0320 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/daggerdbl.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/dcaron.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/dcaron.glif new file mode 100644 index 00000000..277af45e --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/dcaron.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + d+caron.salt + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/dcaron.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/dcaron.ss01.glif new file mode 100644 index 00000000..09025a8e --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/dcaron.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + d.ss01+caron.salt + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/dchecyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/dchecyr.glif new file mode 100644 index 00000000..68c28d6c --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/dchecyr.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + д+10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/dcroat.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/dcroat.glif new file mode 100644 index 00000000..14cb73f6 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/dcroat.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + d + com.fontlab.metricsRight + |hbar + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/dcroat.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/dcroat.ss01.glif new file mode 100644 index 00000000..8990cc34 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/dcroat.ss01.glif @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + d.ss01 + com.fontlab.metricsRight + |hbar + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/de-cy.B_G_R_.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/de-cy.B_G_R_.glif new file mode 100644 index 00000000..e996d9d2 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/de-cy.B_G_R_.glif @@ -0,0 +1,77 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + q + com.fontlab.metricsRight + q + com.fontlab.recipe + uni1C81 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/de-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/de-cy.glif new file mode 100644 index 00000000..58d0190f --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/de-cy.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/de-cy.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/de-cy.ss01.glif new file mode 100644 index 00000000..1146f761 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/de-cy.ss01.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/deS_oft-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/deS_oft-cy.glif new file mode 100644 index 00000000..ce80709f --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/deS_oft-cy.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + д + com.fontlab.metricsRight + ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/degree.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/degree.glif new file mode 100644 index 00000000..77a03a13 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/degree.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/dekomicyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/dekomicyr.glif new file mode 100644 index 00000000..1d21e4fe --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/dekomicyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + d + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/diamondwhite-misc.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/diamondwhite-misc.glif new file mode 100644 index 00000000..9a85226f --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/diamondwhite-misc.glif @@ -0,0 +1,145 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =36 + com.fontlab.metricsRight + =36 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/dieresis.alt.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/dieresis.alt.glif new file mode 100644 index 00000000..96721afd --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/dieresis.alt.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 1,0.6,0.994,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/dieresis.case.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/dieresis.case.glif new file mode 100644 index 00000000..89d63f14 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/dieresis.case.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/dieresis.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/dieresis.glif new file mode 100644 index 00000000..d95dbe35 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/dieresis.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/dieresisacute.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/dieresisacute.glif new file mode 100644 index 00000000..12c51c90 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/dieresisacute.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/dieresiscase.alt.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/dieresiscase.alt.glif new file mode 100644 index 00000000..6fa31ad2 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/dieresiscase.alt.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 1,0.6,0.994,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/divide.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/divide.glif new file mode 100644 index 00000000..608613f8 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/divide.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/djecyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/djecyr.glif new file mode 100644 index 00000000..5950615a --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/djecyr.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hbar + com.fontlab.metricsRight + h + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/djekomicyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/djekomicyr.glif new file mode 100644 index 00000000..858c6708 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/djekomicyr.glif @@ -0,0 +1,73 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + d + com.fontlab.metricsRight + njekomicyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/djerv-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/djerv-cy.glif new file mode 100644 index 00000000..4edf755d --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/djerv-cy.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + r() + com.fontlab.metricsRight + п-30 + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/dollar.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/dollar.glif new file mode 100644 index 00000000..00b6d43d --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/dollar.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + S + com.fontlab.metricsRight + S + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/dotaccent.case.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/dotaccent.case.glif new file mode 100644 index 00000000..74feb7a8 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/dotaccent.case.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/dotaccent.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/dotaccent.glif new file mode 100644 index 00000000..82ddc05c --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/dotaccent.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/doubleo-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/doubleo-cy.glif new file mode 100644 index 00000000..cd1dc7d7 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/doubleo-cy.glif @@ -0,0 +1,91 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + com.fontlab.recipe + o_o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/dramsignarmn.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/dramsignarmn.glif new file mode 100644 index 00000000..df588730 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/dramsignarmn.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/dwe-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/dwe-cy.glif new file mode 100644 index 00000000..06a6cac7 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/dwe-cy.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + д + com.fontlab.metricsRight + д + com.fontlab.recipe + д + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/dze-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/dze-cy.glif new file mode 100644 index 00000000..43393ce4 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/dze-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + s + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/dzeR_eversed-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/dzeR_eversed-cy.glif new file mode 100644 index 00000000..adb297d5 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/dzeR_eversed-cy.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |s + com.fontlab.metricsRight + |s + com.fontlab.recipe + s + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/dzeabkhcyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/dzeabkhcyr.glif new file mode 100644 index 00000000..8a76c1b9 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/dzeabkhcyr.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + z-30 + com.fontlab.metricsRight + з-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/dzelo-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/dzelo-cy.glif new file mode 100644 index 00000000..111891b6 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/dzelo-cy.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/dzhecyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/dzhecyr.glif new file mode 100644 index 00000000..a893757e --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/dzhecyr.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/dzjekomicyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/dzjekomicyr.glif new file mode 100644 index 00000000..e5e8b340 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/dzjekomicyr.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + zjekomicyr + com.fontlab.metricsRight + ц-5 + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/dzwe-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/dzwe-cy.glif new file mode 100644 index 00000000..c8ae9c07 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/dzwe-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + s + com.fontlab.metricsRight + s + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/dzze-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/dzze-cy.glif new file mode 100644 index 00000000..69fcb2c3 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/dzze-cy.glif @@ -0,0 +1,84 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + д + com.fontlab.metricsRight + д-30 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/dzzhecyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/dzzhecyr.glif new file mode 100644 index 00000000..4abfa723 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/dzzhecyr.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + д+5 + com.fontlab.metricsRight + ж+5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/e-cy.accented.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/e-cy.accented.glif new file mode 100644 index 00000000..ad8b6f86 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/e-cy.accented.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+acute + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/e-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/e-cy.glif new file mode 100644 index 00000000..75d7ceb5 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/e-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + c + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/e-cy.hist.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/e-cy.hist.glif new file mode 100644 index 00000000..61ec7797 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/e-cy.hist.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + c + com.fontlab.recipe + uni1C83 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/e.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/e.glif new file mode 100644 index 00000000..427ded57 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/e.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/e.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/e.ss01.glif new file mode 100644 index 00000000..2cd38609 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/e.ss01.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + O-5 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/eacute.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/eacute.glif new file mode 100644 index 00000000..d79a73d3 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/eacute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+acute + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/eacute.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/eacute.ss01.glif new file mode 100644 index 00000000..e0eae294 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/eacute.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+acute + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/ebreve.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/ebreve.glif new file mode 100644 index 00000000..3017c8d5 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/ebreve.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+breve + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/ebreve.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/ebreve.ss01.glif new file mode 100644 index 00000000..c6f2a5f0 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/ebreve.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+breve + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/ecaron.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/ecaron.glif new file mode 100644 index 00000000..7342f64b --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/ecaron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+caron + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/ecaron.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/ecaron.ss01.glif new file mode 100644 index 00000000..4d9bd3c6 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/ecaron.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+caron + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/ecircumflex.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/ecircumflex.glif new file mode 100644 index 00000000..10d70afa --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/ecircumflex.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+circumflex + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/ecircumflex.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/ecircumflex.ss01.glif new file mode 100644 index 00000000..7dc1caf2 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/ecircumflex.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+circumflex + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/edieresis.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/edieresis.glif new file mode 100644 index 00000000..89c201ad --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/edieresis.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsLeft + e + com.fontlab.metricsRight + e + com.fontlab.recipe + e+dieresis + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/edieresis.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/edieresis.ss01.glif new file mode 100644 index 00000000..25cccb57 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/edieresis.ss01.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsLeft + e + com.fontlab.metricsRight + e + com.fontlab.recipe + e.ss01+dieresis + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/edotaccent.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/edotaccent.glif new file mode 100644 index 00000000..fbd3395b --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/edotaccent.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+dotaccent + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/edotaccent.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/edotaccent.ss01.glif new file mode 100644 index 00000000..7954dd9b --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/edotaccent.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+dotaccent + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/ef-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/ef-cy.glif new file mode 100644 index 00000000..2a197b52 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/ef-cy.glif @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/egrave.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/egrave.glif new file mode 100644 index 00000000..b4919c89 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/egrave.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+grave + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/egrave.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/egrave.ss01.glif new file mode 100644 index 00000000..870b503f --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/egrave.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+grave + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/eight.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/eight.glif new file mode 100644 index 00000000..a34cb3e6 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/eight.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/eight.osf.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/eight.osf.glif new file mode 100644 index 00000000..af795c85 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/eight.osf.glif @@ -0,0 +1,15 @@ + + + + + + + + + com.fontlab.metricsLeft + eight + com.fontlab.metricsRight + eight + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/eight.tf.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/eight.tf.glif new file mode 100644 index 00000000..cab209b4 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/eight.tf.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/eiotifiedcyr.B_G_R_.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/eiotifiedcyr.B_G_R_.glif new file mode 100644 index 00000000..1ef60d04 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/eiotifiedcyr.B_G_R_.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + c + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/eiotifiedcyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/eiotifiedcyr.glif new file mode 100644 index 00000000..942b8635 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/eiotifiedcyr.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + c + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/el-cy.B_G_R_.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/el-cy.B_G_R_.glif new file mode 100644 index 00000000..6a305510 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/el-cy.B_G_R_.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + v + com.fontlab.metricsRight + v + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/el-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/el-cy.glif new file mode 100644 index 00000000..27abb46b --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/el-cy.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/el-cy.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/el-cy.ss01.glif new file mode 100644 index 00000000..0c934065 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/el-cy.ss01.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/elS_oft-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/elS_oft-cy.glif new file mode 100644 index 00000000..cd1248e8 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/elS_oft-cy.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/elhookcyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/elhookcyr.glif new file mode 100644 index 00000000..5ee9c8ce --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/elhookcyr.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + н + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/ellipsis.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/ellipsis.glif new file mode 100644 index 00000000..2c86f1d2 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/ellipsis.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/elmiddlehookcyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/elmiddlehookcyr.glif new file mode 100644 index 00000000..5da20e4f --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/elmiddlehookcyr.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + enmiddlehookcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/elsharptailcyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/elsharptailcyr.glif new file mode 100644 index 00000000..5362291a --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/elsharptailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + ensharptailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/eltailcyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/eltailcyr.glif new file mode 100644 index 00000000..462736c7 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/eltailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/em-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/em-cy.glif new file mode 100644 index 00000000..0db156fc --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/em-cy.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/emS_oft-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/emS_oft-cy.glif new file mode 100644 index 00000000..d9909db6 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/emS_oft-cy.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + м + com.fontlab.metricsRight + ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/emacron.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/emacron.glif new file mode 100644 index 00000000..87bdbd4f --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/emacron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+macron + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/emacron.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/emacron.ss01.glif new file mode 100644 index 00000000..c6348b2e --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/emacron.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+macron + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/emdash.case.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/emdash.case.glif new file mode 100644 index 00000000..b5c91d84 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/emdash.case.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/emdash.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/emdash.glif new file mode 100644 index 00000000..531779b4 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/emdash.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/emsharptailcyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/emsharptailcyr.glif new file mode 100644 index 00000000..00d427ac --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/emsharptailcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + м + com.fontlab.metricsRight + ensharptailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/en-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/en-cy.glif new file mode 100644 index 00000000..693fb441 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/en-cy.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/enclosingcirclecomb.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/enclosingcirclecomb.glif new file mode 100644 index 00000000..903b42aa --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/enclosingcirclecomb.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/endash.case.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/endash.case.glif new file mode 100644 index 00000000..c4d4de0c --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/endash.case.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/endash.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/endash.glif new file mode 100644 index 00000000..36df62fc --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/endash.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/eng.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/eng.glif new file mode 100644 index 00000000..2b16a2ed --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/eng.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + n + com.fontlab.metricsRight + dotlessj + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/engecyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/engecyr.glif new file mode 100644 index 00000000..8074f8c9 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/engecyr.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/enhookcyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/enhookcyr.glif new file mode 100644 index 00000000..00b2217d --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/enhookcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/enhookleftcyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/enhookleftcyr.glif new file mode 100644 index 00000000..3550a38e --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/enhookleftcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + j + com.fontlab.metricsRight + н + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/enmiddlehookcyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/enmiddlehookcyr.glif new file mode 100644 index 00000000..a6a3e463 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/enmiddlehookcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + softsign-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/ensharptailcyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/ensharptailcyr.glif new file mode 100644 index 00000000..9b3aed9d --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/ensharptailcyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + д + com.fontlab.recipe + entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/entailcyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/entailcyr.glif new file mode 100644 index 00000000..38b43e73 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/entailcyr.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + ц + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/eogonek.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/eogonek.glif new file mode 100644 index 00000000..37391d8e --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/eogonek.glif @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + e+ogonek + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/eogonek.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/eogonek.ss01.glif new file mode 100644 index 00000000..3a4bd404 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/eogonek.ss01.glif @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + e.ss01+ogonek + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/equal.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/equal.glif new file mode 100644 index 00000000..9e36dafd --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/equal.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/er-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/er-cy.glif new file mode 100644 index 00000000..ab6fd7b6 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/er-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + p + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/er-cy.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/er-cy.ss01.glif new file mode 100644 index 00000000..3fe4386f --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/er-cy.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + p.ss01 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/ereversed-cy.accented.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/ereversed-cy.accented.glif new file mode 100644 index 00000000..0cc7b0be --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/ereversed-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + э+acute + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/ereversed-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/ereversed-cy.glif new file mode 100644 index 00000000..4bbb5da6 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/ereversed-cy.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |c + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/ereverseddieresiscyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/ereverseddieresiscyr.glif new file mode 100644 index 00000000..876221be --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/ereverseddieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ereversed-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/ertickcyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/ertickcyr.glif new file mode 100644 index 00000000..2112a2a1 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/ertickcyr.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + p + com.fontlab.metricsRight + p + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/es-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/es-cy.glif new file mode 100644 index 00000000..44823ffb --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/es-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/estailcyr.B_S_H_.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/estailcyr.B_S_H_.glif new file mode 100644 index 00000000..1e114074 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/estailcyr.B_S_H_.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + c + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/estailcyr.C_H_U_.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/estailcyr.C_H_U_.glif new file mode 100644 index 00000000..9ec8c088 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/estailcyr.C_H_U_.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+cedilla + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/estailcyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/estailcyr.glif new file mode 100644 index 00000000..6e99461f --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/estailcyr.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + с + com.fontlab.metricsRight + с + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/estimated.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/estimated.glif new file mode 100644 index 00000000..7d2d1ee6 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/estimated.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/eth.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/eth.glif new file mode 100644 index 00000000..a891527f --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/eth.glif @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/eturned.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/eturned.glif new file mode 100644 index 00000000..8d7f7d00 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/eturned.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + schwacyr + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/euro.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/euro.glif new file mode 100644 index 00000000..a78ae950 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/euro.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + C + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/exclam.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/exclam.glif new file mode 100644 index 00000000..4c351120 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/exclam.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/exclamdown.case.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/exclamdown.case.glif new file mode 100644 index 00000000..25d3343b --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/exclamdown.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + exclamdown + com.fontlab.metricsRight + exclamdown + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/exclamdown.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/exclamdown.glif new file mode 100644 index 00000000..7a514d95 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/exclamdown.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/f.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/f.glif new file mode 100644 index 00000000..e449d78f --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/f.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/f.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/f.ss01.glif new file mode 100644 index 00000000..4ec8018a --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/f.ss01.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/f_f.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/f_f.glif new file mode 100644 index 00000000..d40840e4 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/f_f.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f + com.fontlab.metricsRight + f + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/f_f.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/f_f.ss01.glif new file mode 100644 index 00000000..362115de --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/f_f.ss01.glif @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f.ss01 + com.fontlab.metricsRight + f.ss01 + com.fontlab.recipe + f.ss01_f.ss01 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/f_f_i.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/f_f_i.glif new file mode 100644 index 00000000..ed78f118 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/f_f_i.glif @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f + com.fontlab.metricsRight + i + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/f_f_i.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/f_f_i.ss01.glif new file mode 100644 index 00000000..653ab07d --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/f_f_i.ss01.glif @@ -0,0 +1,88 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f.ss01 + com.fontlab.metricsRight + i + com.fontlab.recipe + f.ss01_f.ss01_i + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/f_f_l.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/f_f_l.glif new file mode 100644 index 00000000..0bbfe342 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/f_f_l.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f + com.fontlab.metricsRight + l + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/f_f_l.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/f_f_l.ss01.glif new file mode 100644 index 00000000..eb4461f7 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/f_f_l.ss01.glif @@ -0,0 +1,86 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f.ss01 + com.fontlab.metricsRight + l.ss01 + com.fontlab.recipe + f.ss01_f.ss01_l.ss01 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/fi.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/fi.glif new file mode 100644 index 00000000..aee61119 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/fi.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f + com.fontlab.metricsRight + i + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/fi.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/fi.ss01.glif new file mode 100644 index 00000000..a5cb7a8e --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/fi.ss01.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f.ss01 + com.fontlab.metricsRight + i + com.fontlab.recipe + f.ss01_i + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/fitacyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/fitacyr.glif new file mode 100644 index 00000000..dce59273 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/fitacyr.glif @@ -0,0 +1,76 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + obarcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/five.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/five.glif new file mode 100644 index 00000000..ebd5d372 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/five.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/five.osf.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/five.osf.glif new file mode 100644 index 00000000..9f068afd --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/five.osf.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + five + com.fontlab.metricsRight + five + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/five.tf.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/five.tf.glif new file mode 100644 index 00000000..c63b942e --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/five.tf.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/fl.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/fl.glif new file mode 100644 index 00000000..8329e476 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/fl.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f + com.fontlab.metricsRight + l + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/fl.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/fl.ss01.glif new file mode 100644 index 00000000..b0abf8ed --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/fl.ss01.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f.ss01 + com.fontlab.metricsRight + l.ss01 + com.fontlab.recipe + f.ss01_l.ss01 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/floretteblack.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/floretteblack.glif new file mode 100644 index 00000000..3a3db57b --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/floretteblack.glif @@ -0,0 +1,522 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/floretteoutlinedpetalledblackeight.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/floretteoutlinedpetalledblackeight.glif new file mode 100644 index 00000000..091568d1 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/floretteoutlinedpetalledblackeight.glif @@ -0,0 +1,693 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/florettewhite.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/florettewhite.glif new file mode 100644 index 00000000..1d4f1e81 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/florettewhite.glif @@ -0,0 +1,417 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/florin.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/florin.glif new file mode 100644 index 00000000..0a0323cb --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/florin.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/flower.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/flower.glif new file mode 100644 index 00000000..2e23dc8a --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/flower.glif @@ -0,0 +1,278 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/four.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/four.glif new file mode 100644 index 00000000..d80bbfef --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/four.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/four.osf.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/four.osf.glif new file mode 100644 index 00000000..971f2788 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/four.osf.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + four + com.fontlab.metricsRight + four + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/four.tf.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/four.tf.glif new file mode 100644 index 00000000..99001401 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/four.tf.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/fraction.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/fraction.glif new file mode 100644 index 00000000..bb79fcdc --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/fraction.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/g.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/g.glif new file mode 100644 index 00000000..dcb3dd46 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/g.glif @@ -0,0 +1,94 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/g.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/g.ss01.glif new file mode 100644 index 00000000..eee9ddc0 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/g.ss01.glif @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/gacute.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/gacute.glif new file mode 100644 index 00000000..96bf4969 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/gacute.glif @@ -0,0 +1,109 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + g+acute + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/gacute.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/gacute.ss01.glif new file mode 100644 index 00000000..5631ddb7 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/gacute.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + g.ss01+acute + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/gbreve.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/gbreve.glif new file mode 100644 index 00000000..236b42d6 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/gbreve.glif @@ -0,0 +1,119 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + g+breve + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/gbreve.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/gbreve.ss01.glif new file mode 100644 index 00000000..10161a58 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/gbreve.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + g.ss01+breve + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/gcircumflex.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/gcircumflex.glif new file mode 100644 index 00000000..16a9a455 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/gcircumflex.glif @@ -0,0 +1,113 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + g+circumflex + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/gcircumflex.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/gcircumflex.ss01.glif new file mode 100644 index 00000000..ed5bf142 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/gcircumflex.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + g.ss01+circumflex + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/gcommaaccent.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/gcommaaccent.glif new file mode 100644 index 00000000..efa968e7 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/gcommaaccent.glif @@ -0,0 +1,121 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + g+commaaccentcomb.salt + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/gcommaaccent.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/gcommaaccent.ss01.glif new file mode 100644 index 00000000..447d4dfa --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/gcommaaccent.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + g.ss01+commaaccentcomb.salt + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/gdotaccent.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/gdotaccent.glif new file mode 100644 index 00000000..4c354363 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/gdotaccent.glif @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + g+dotaccent + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/gdotaccent.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/gdotaccent.ss01.glif new file mode 100644 index 00000000..136a668d --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/gdotaccent.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + g.ss01+dotaccent + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/ge-cy.B_G_R_.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/ge-cy.B_G_R_.glif new file mode 100644 index 00000000..49dfd0ea --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/ge-cy.B_G_R_.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |s+5 + com.fontlab.metricsRight + |s+5 + com.fontlab.recipe + dzeReversed-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/ge-cy.S_R_B_.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/ge-cy.S_R_B_.glif new file mode 100644 index 00000000..4f33bb67 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/ge-cy.S_R_B_.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + iota-cy+macron + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/ge-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/ge-cy.glif new file mode 100644 index 00000000..d7463882 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/ge-cy.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + т + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/gehookcyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/gehookcyr.glif new file mode 100644 index 00000000..bbc6ce2f --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/gehookcyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + г + com.fontlab.metricsRight + enmiddlehookcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/gehookstrokecyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/gehookstrokecyr.glif new file mode 100644 index 00000000..2ca24c3b --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/gehookstrokecyr.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + gestrokecyr + com.fontlab.metricsRight + gestrokecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/germandbls.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/germandbls.glif new file mode 100644 index 00000000..74d2e9b3 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/germandbls.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + h-5 + com.fontlab.metricsRight + з + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/germandbls.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/germandbls.ss01.glif new file mode 100644 index 00000000..12ee9d55 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/germandbls.ss01.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f.ss01 + com.fontlab.metricsRight + з + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/gestrokecyr.B_S_H_.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/gestrokecyr.B_S_H_.glif new file mode 100644 index 00000000..3b1b3e5c --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/gestrokecyr.B_S_H_.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + г + com.fontlab.metricsRight + gestrokecyr + com.fontlab.recipe + gestrokecyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/gestrokecyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/gestrokecyr.glif new file mode 100644 index 00000000..310fa287 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/gestrokecyr.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + г + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/getailcyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/getailcyr.glif new file mode 100644 index 00000000..b6d503c8 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/getailcyr.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + г + com.fontlab.metricsRight + г + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/gheupturn-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/gheupturn-cy.glif new file mode 100644 index 00000000..49469e62 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/gheupturn-cy.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + г + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/gjecyr.S_R_B_.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/gjecyr.S_R_B_.glif new file mode 100644 index 00000000..cfadd9c1 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/gjecyr.S_R_B_.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + iota-cy+macronacute.SRB + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/gjecyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/gjecyr.glif new file mode 100644 index 00000000..3f396451 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/gjecyr.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/grave.case.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/grave.case.glif new file mode 100644 index 00000000..7206246f --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/grave.case.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/grave.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/grave.glif new file mode 100644 index 00000000..74bd16b3 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/grave.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/greater.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/greater.glif new file mode 100644 index 00000000..d935d937 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/greater.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |less + com.fontlab.metricsRight + |less + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/greaterequal.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/greaterequal.glif new file mode 100644 index 00000000..6cf188c2 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/greaterequal.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/guillemetleft.case.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/guillemetleft.case.glif new file mode 100644 index 00000000..6c3a90d4 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/guillemetleft.case.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + guilsinglleft + com.fontlab.metricsRight + guilsinglleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/guillemetleft.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/guillemetleft.glif new file mode 100644 index 00000000..234b2028 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/guillemetleft.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + guilsinglleft + com.fontlab.metricsRight + guilsinglleft + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/guillemetright.case.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/guillemetright.case.glif new file mode 100644 index 00000000..473cd3de --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/guillemetright.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |guillemetleft.case + com.fontlab.metricsRight + |guillemetleft.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/guillemetright.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/guillemetright.glif new file mode 100644 index 00000000..089f8616 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/guillemetright.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |guilsinglleft + com.fontlab.metricsRight + |guilsinglleft + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/guilsinglleft.case.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/guilsinglleft.case.glif new file mode 100644 index 00000000..2dc38540 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/guilsinglleft.case.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/guilsinglleft.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/guilsinglleft.glif new file mode 100644 index 00000000..e7f08dc8 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/guilsinglleft.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/guilsinglright.case.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/guilsinglright.case.glif new file mode 100644 index 00000000..888382d5 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/guilsinglright.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |guilsinglleft + com.fontlab.metricsRight + |guilsinglleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/guilsinglright.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/guilsinglright.glif new file mode 100644 index 00000000..0acb8b8a --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/guilsinglright.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + |guilsinglleft + com.fontlab.metricsRight + |guilsinglleft + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/h.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/h.glif new file mode 100644 index 00000000..62f0092e --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/h.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + com.fontlab.metricsRight + n + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/ha-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/ha-cy.glif new file mode 100644 index 00000000..c1a44953 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/ha-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + x + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/haabkhcyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/haabkhcyr.glif new file mode 100644 index 00000000..4a723b3c --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/haabkhcyr.glif @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + |o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/hahookcyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/hahookcyr.glif new file mode 100644 index 00000000..7dc0fb2d --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/hahookcyr.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + x + com.fontlab.metricsRight + x + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/hardsign-cy.B_G_R_.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/hardsign-cy.B_G_R_.glif new file mode 100644 index 00000000..fae8e5ae --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/hardsign-cy.B_G_R_.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/hardsign-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/hardsign-cy.glif new file mode 100644 index 00000000..d9c8bffb --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/hardsign-cy.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/hardsign-cy.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/hardsign-cy.ss01.glif new file mode 100644 index 00000000..652f803e --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/hardsign-cy.ss01.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/hastrokecyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/hastrokecyr.glif new file mode 100644 index 00000000..ec044ad5 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/hastrokecyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + x + com.fontlab.metricsRight + x + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/hbar.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/hbar.glif new file mode 100644 index 00000000..21d2e324 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/hbar.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + h + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/hcircumflex.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/hcircumflex.glif new file mode 100644 index 00000000..fd6aa087 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/hcircumflex.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + h+circumflex.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/heart.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/heart.glif new file mode 100644 index 00000000..3a25b1cf --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/heart.glif @@ -0,0 +1,320 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/heartwhite.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/heartwhite.glif new file mode 100644 index 00000000..0a3d37d4 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/heartwhite.glif @@ -0,0 +1,189 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =38 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/hryvnia.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/hryvnia.glif new file mode 100644 index 00000000..4c01cee5 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/hryvnia.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/hundredmillionscomb-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/hundredmillionscomb-cy.glif new file mode 100644 index 00000000..46599e5e --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/hundredmillionscomb-cy.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/hundredthousandscombcyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/hundredthousandscombcyr.glif new file mode 100644 index 00000000..b40c108a --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/hundredthousandscombcyr.glif @@ -0,0 +1,141 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/hungarumlaut.case.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/hungarumlaut.case.glif new file mode 100644 index 00000000..0b9a23f4 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/hungarumlaut.case.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/hungarumlaut.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/hungarumlaut.glif new file mode 100644 index 00000000..e4f17f99 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/hungarumlaut.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/hwe-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/hwe-cy.glif new file mode 100644 index 00000000..b3760708 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/hwe-cy.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + h + com.fontlab.metricsRight + h + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/hyphen.case.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/hyphen.case.glif new file mode 100644 index 00000000..3f1d6f17 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/hyphen.case.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.metricsLeft + hyphen + com.fontlab.metricsRight + hyphen + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/hyphen.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/hyphen.glif new file mode 100644 index 00000000..b8f0280f --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/hyphen.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/i-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/i-cy.glif new file mode 100644 index 00000000..8a9e4865 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/i-cy.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + i + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/i.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/i.glif new file mode 100644 index 00000000..fa9c13c0 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/i.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + dotlessi+dotaccent + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/ia-cy.accented.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/ia-cy.accented.glif new file mode 100644 index 00000000..b08afc28 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/ia-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + я+acute + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/ia-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/ia-cy.glif new file mode 100644 index 00000000..5a35b5fc --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/ia-cy.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/ia-cy.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/ia-cy.ss01.glif new file mode 100644 index 00000000..387007ff --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/ia-cy.ss01.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/iacute.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/iacute.glif new file mode 100644 index 00000000..37c816d8 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/iacute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + dotlessi+acute + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/ibreve.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/ibreve.glif new file mode 100644 index 00000000..3dd7857f --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/ibreve.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + dotlessi+breve + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/icircumflex.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/icircumflex.glif new file mode 100644 index 00000000..f5a973b7 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/icircumflex.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + dotlessi+circumflex + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/idieresis.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/idieresis.glif new file mode 100644 index 00000000..5d01c6ac --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/idieresis.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + idotless+dieresis.alt + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/idieresiscyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/idieresiscyr.glif new file mode 100644 index 00000000..c407459b --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/idieresiscyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ii-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/idotless.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/idotless.glif new file mode 100644 index 00000000..61e756c6 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/idotless.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/ie-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/ie-cy.glif new file mode 100644 index 00000000..cfb0dce9 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/ie-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/ie-cy.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/ie-cy.ss01.glif new file mode 100644 index 00000000..172d1f10 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/ie-cy.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/iebrevecyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/iebrevecyr.glif new file mode 100644 index 00000000..0624e8cc --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/iebrevecyr.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+breve + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/iegravecyr.S_R_B_.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/iegravecyr.S_R_B_.glif new file mode 100644 index 00000000..5ea056e5 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/iegravecyr.S_R_B_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+grave + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/iegravecyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/iegravecyr.glif new file mode 100644 index 00000000..88e8a1b5 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/iegravecyr.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+grave + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/igrave.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/igrave.glif new file mode 100644 index 00000000..3fbb2465 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/igrave.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + dotlessi+grave + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/igravecyr.S_R_B_.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/igravecyr.S_R_B_.glif new file mode 100644 index 00000000..1baf9e7c --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/igravecyr.S_R_B_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+grave + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/igravecyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/igravecyr.glif new file mode 100644 index 00000000..2faf4112 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/igravecyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ii-cy+grave + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/ii-cy.B_G_R_.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/ii-cy.B_G_R_.glif new file mode 100644 index 00000000..af42a0ac --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/ii-cy.B_G_R_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/ii-cy.accented.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/ii-cy.accented.glif new file mode 100644 index 00000000..de791c11 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/ii-cy.accented.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + и+acute + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/ii-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/ii-cy.glif new file mode 100644 index 00000000..68e2aab5 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/ii-cy.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/iishort-cy.B_G_R_.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/iishort-cy.B_G_R_.glif new file mode 100644 index 00000000..7f8b64da --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/iishort-cy.B_G_R_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/iishort-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/iishort-cy.glif new file mode 100644 index 00000000..cd102cef --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/iishort-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + icyr+breve + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/ij.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/ij.glif new file mode 100644 index 00000000..d40ba818 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/ij.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + i + com.fontlab.metricsRight + j + com.fontlab.recipe + i_j + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/imacron.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/imacron.glif new file mode 100644 index 00000000..332afc82 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/imacron.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =5 + com.fontlab.metricsRight + =5 + com.fontlab.recipe + idotless+macron + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/imacroncyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/imacroncyr.glif new file mode 100644 index 00000000..9afd6467 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/imacroncyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ii-cy+macron + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/increment.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/increment.glif new file mode 100644 index 00000000..fe69e86a --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/increment.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/infinity.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/infinity.glif new file mode 100644 index 00000000..3f03e970 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/infinity.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/integral.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/integral.glif new file mode 100644 index 00000000..c9e4fb19 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/integral.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/io-cy.accented.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/io-cy.accented.glif new file mode 100644 index 00000000..880d3e76 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/io-cy.accented.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsLeft + e + com.fontlab.metricsRight + e + com.fontlab.recipe + e+dieresisacute + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/io-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/io-cy.glif new file mode 100644 index 00000000..95ab1052 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/io-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + edieresis + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/io-cy.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/io-cy.ss01.glif new file mode 100644 index 00000000..cd64a201 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/io-cy.ss01.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + edieresis.ss01 + com.schriftgestaltung.Glyphs.ComponentInfo + + + alignment + -1 + index + 0 + name + edieresis.ss01 + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/iogonek.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/iogonek.glif new file mode 100644 index 00000000..2d0e72c9 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/iogonek.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + i+ogonek + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/iota-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/iota-cy.glif new file mode 100644 index 00000000..11f9c041 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/iota-cy.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l.ss01 + com.fontlab.metricsRight + l.ss01 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/iotifieda-cy.B_G_R_.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/iotifieda-cy.B_G_R_.glif new file mode 100644 index 00000000..9709c93c --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/iotifieda-cy.B_G_R_.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + el-cy.BGR + com.fontlab.recipe + iotifieda-cy + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/iotifieda-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/iotifieda-cy.glif new file mode 100644 index 00000000..54cf3e17 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/iotifieda-cy.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + yusClosedlittle-cy + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/iotifieda-cy.hist.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/iotifieda-cy.hist.glif new file mode 100644 index 00000000..6106c687 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/iotifieda-cy.hist.glif @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + reversedzecyr + com.fontlab.metricsRight + a + public.markColor + 0.6,0.997,1,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/ishortsharptailcyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/ishortsharptailcyr.glif new file mode 100644 index 00000000..9b9d21d5 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/ishortsharptailcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + й + com.fontlab.metricsRight + ensharptailcyr + com.fontlab.recipe + й + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/itilde.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/itilde.glif new file mode 100644 index 00000000..1fc7cba5 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/itilde.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + dotlessi+tilde + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/iu-cy.B_G_R_.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/iu-cy.B_G_R_.glif new file mode 100644 index 00000000..8e129ae2 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/iu-cy.B_G_R_.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + o + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/iu-cy.accented.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/iu-cy.accented.glif new file mode 100644 index 00000000..018e9b47 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/iu-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ю+acute + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/iu-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/iu-cy.glif new file mode 100644 index 00000000..5a991e04 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/iu-cy.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/izhitsacyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/izhitsacyr.glif new file mode 100644 index 00000000..818366bf --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/izhitsacyr.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + v + com.fontlab.metricsRight + + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/izhitsagravedblcyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/izhitsagravedblcyr.glif new file mode 100644 index 00000000..3aaaf0a4 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/izhitsagravedblcyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + com.fontlab.metricsLeft + izhitsacyr + com.fontlab.metricsRight + izhitsacyr + com.fontlab.recipe + izhitsacyr+hungarumlaut + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/j.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/j.glif new file mode 100644 index 00000000..9acc3ff3 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/j.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + i + com.fontlab.recipe + dotlessj+dotaccent + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/jcircumflex.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/jcircumflex.glif new file mode 100644 index 00000000..90f3cd23 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/jcircumflex.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + dotlessj+circumflex + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/jdotless.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/jdotless.glif new file mode 100644 index 00000000..390a6a9a --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/jdotless.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + l + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/je-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/je-cy.glif new file mode 100644 index 00000000..d1c05199 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/je-cy.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + j + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/k.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/k.glif new file mode 100644 index 00000000..b4a0b98c --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/k.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/ka-cy.B_G_R_.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/ka-cy.B_G_R_.glif new file mode 100644 index 00000000..c28a2444 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/ka-cy.B_G_R_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + k + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/ka-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/ka-cy.glif new file mode 100644 index 00000000..684a3f2b --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/ka-cy.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + k + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/kaaleutcyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/kaaleutcyr.glif new file mode 100644 index 00000000..feac4462 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/kaaleutcyr.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + k + com.fontlab.metricsRight + k + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/kabashkcyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/kabashkcyr.glif new file mode 100644 index 00000000..6acba2e6 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/kabashkcyr.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hardsign-cy + com.fontlab.metricsRight + k + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/kahookcyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/kahookcyr.glif new file mode 100644 index 00000000..af2b3ba3 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/kahookcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + n + com.fontlab.metricsRight + k+10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/kastrokecyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/kastrokecyr.glif new file mode 100644 index 00000000..93e989b1 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/kastrokecyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hbar + com.fontlab.metricsRight + k + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/katailcyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/katailcyr.glif new file mode 100644 index 00000000..f6d75f39 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/katailcyr.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + k + com.fontlab.metricsRight + к-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/kaverticalstrokecyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/kaverticalstrokecyr.glif new file mode 100644 index 00000000..72e8a05a --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/kaverticalstrokecyr.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + k + com.fontlab.metricsRight + k + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/kcommaaccent.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/kcommaaccent.glif new file mode 100644 index 00000000..99c96da8 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/kcommaaccent.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsLeft + k + com.fontlab.metricsRight + k + com.fontlab.recipe + k+commaaccentcomb + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/kgreenlandic.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/kgreenlandic.glif new file mode 100644 index 00000000..1977175a --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/kgreenlandic.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + kacyr + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/kjecyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/kjecyr.glif new file mode 100644 index 00000000..db6c1575 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/kjecyr.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/knightblack.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/knightblack.glif new file mode 100644 index 00000000..b1a9994a --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/knightblack.glif @@ -0,0 +1,313 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =30 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/knightwhite.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/knightwhite.glif new file mode 100644 index 00000000..22872436 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/knightwhite.glif @@ -0,0 +1,320 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/koppacyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/koppacyr.glif new file mode 100644 index 00000000..9e307943 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/koppacyr.glif @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + c-20 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/ksicyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/ksicyr.glif new file mode 100644 index 00000000..19072d21 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/ksicyr.glif @@ -0,0 +1,102 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + з-10 + com.fontlab.metricsRight + з + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/l.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/l.glif new file mode 100644 index 00000000..1df97d5a --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/l.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/l.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/l.ss01.glif new file mode 100644 index 00000000..2789a1ae --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/l.ss01.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/lacute.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/lacute.glif new file mode 100644 index 00000000..4b9ca1bd --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/lacute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l+acute.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/lacute.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/lacute.ss01.glif new file mode 100644 index 00000000..db7a29d9 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/lacute.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l.ss01+acute.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/layerinfo.plist b/sources/FixelDisplay-SemiBold.ufo/glyphs/layerinfo.plist new file mode 100644 index 00000000..8c198655 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/layerinfo.plist @@ -0,0 +1,21 @@ + + + + + lib + + com.fontlab.layer.name + Body + com.fontlab.layer.opacity + 1 + com.fontlab.layer.visible + + com.fontlab.layer.locked + + com.fontlab.layer.service + + com.fontlab.layer.wireframe + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/lcaron.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/lcaron.glif new file mode 100644 index 00000000..7741f9d3 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/lcaron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l+caron.salt + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/lcaron.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/lcaron.ss01.glif new file mode 100644 index 00000000..5f341f21 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/lcaron.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l.ss01+caron.salt + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/lcommaaccent.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/lcommaaccent.glif new file mode 100644 index 00000000..f3081c0a --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/lcommaaccent.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l+commaaccentcomb + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/lcommaaccent.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/lcommaaccent.ss01.glif new file mode 100644 index 00000000..134742e9 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/lcommaaccent.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l.ss01+commaaccentcomb + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/ldot.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/ldot.glif new file mode 100644 index 00000000..fb049c1c --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/ldot.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/ldot.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/ldot.ss01.glif new file mode 100644 index 00000000..d925eb2a --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/ldot.ss01.glif @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + l.ss01_periodcentered + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/leo.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/leo.glif new file mode 100644 index 00000000..72ac1b77 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/leo.glif @@ -0,0 +1,494 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/less.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/less.glif new file mode 100644 index 00000000..751eec12 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/less.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/lessequal.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/lessequal.glif new file mode 100644 index 00000000..269dfd94 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/lessequal.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/lhacyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/lhacyr.glif new file mode 100644 index 00000000..a76c4b91 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/lhacyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + х + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/ljecyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/ljecyr.glif new file mode 100644 index 00000000..ab0cfc7e --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/ljecyr.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + ь + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/ljecyr.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/ljecyr.ss01.glif new file mode 100644 index 00000000..33b585c2 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/ljecyr.ss01.glif @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + ь + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/ljekomicyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/ljekomicyr.glif new file mode 100644 index 00000000..f66e364a --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/ljekomicyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + njekomicyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/longs.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/longs.glif new file mode 100644 index 00000000..807eed0e --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/longs.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + n + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/lslash.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/lslash.glif new file mode 100644 index 00000000..7deeefba --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/lslash.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Lslash+12 + com.fontlab.metricsRight + |Lslash+12 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/lslash.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/lslash.ss01.glif new file mode 100644 index 00000000..4c04896f --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/lslash.ss01.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Lslash-10 + com.fontlab.metricsRight + |Lslash + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/m.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/m.glif new file mode 100644 index 00000000..05906b06 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/m.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + n + com.fontlab.metricsRight + n + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/macron-fwd.alt.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/macron-fwd.alt.glif new file mode 100644 index 00000000..a1c4ae05 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/macron-fwd.alt.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/macron-fwd.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/macron-fwd.glif new file mode 100644 index 00000000..fbb27576 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/macron-fwd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/macron.case.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/macron.case.glif new file mode 100644 index 00000000..c5ea28fd --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/macron.case.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/macron.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/macron.glif new file mode 100644 index 00000000..2a37a035 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/macron.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/macronacute.S_R_B_.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/macronacute.S_R_B_.glif new file mode 100644 index 00000000..22001a88 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/macronacute.S_R_B_.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + macron+acute + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/millionscombcyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/millionscombcyr.glif new file mode 100644 index 00000000..0e4e3a9a --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/millionscombcyr.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/minus.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/minus.glif new file mode 100644 index 00000000..ac3ab6be --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/minus.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/minute.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/minute.glif new file mode 100644 index 00000000..76f2e3a2 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/minute.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/mu.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/mu.glif new file mode 100644 index 00000000..4f4d23de --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/mu.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + p + com.fontlab.metricsRight + u + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/multiply.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/multiply.glif new file mode 100644 index 00000000..92bea332 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/multiply.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/n.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/n.glif new file mode 100644 index 00000000..1e8e4296 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/n.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/nacute.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/nacute.glif new file mode 100644 index 00000000..b050fa80 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/nacute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + n+acute + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/napostrophe.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/napostrophe.glif new file mode 100644 index 00000000..e69f7b7c --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/napostrophe.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + com.fontlab.metricsRight + n + com.schriftgestaltung.Glyphs.ComponentInfo + + + alignment + -1 + index + 0 + name + n + + + alignment + -1 + index + 1 + name + quoteright + + + com.schriftgestaltung.Glyphs.rightMetricsKey + n + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/ncaron.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/ncaron.glif new file mode 100644 index 00000000..f1da1aed --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/ncaron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + n+caron + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/ncommaaccent.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/ncommaaccent.glif new file mode 100644 index 00000000..a84b01af --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/ncommaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + n+commaaccentcomb + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/neptune.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/neptune.glif new file mode 100644 index 00000000..0a1d9f7c --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/neptune.glif @@ -0,0 +1,125 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ш + com.fontlab.metricsRight + Ш + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/nine.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/nine.glif new file mode 100644 index 00000000..30a907e9 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/nine.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + |six + com.fontlab.metricsRight + |six + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/nine.osf.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/nine.osf.glif new file mode 100644 index 00000000..7aabaebb --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/nine.osf.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |six + com.fontlab.metricsRight + |six + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/nine.tf.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/nine.tf.glif new file mode 100644 index 00000000..45340dba --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/nine.tf.glif @@ -0,0 +1,7 @@ + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/njecyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/njecyr.glif new file mode 100644 index 00000000..92b83929 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/njecyr.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + ь + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/njecyr.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/njecyr.ss01.glif new file mode 100644 index 00000000..7a3bfd69 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/njecyr.ss01.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + ь + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/njekomicyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/njekomicyr.glif new file mode 100644 index 00000000..d7528345 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/njekomicyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + |u + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/notequal.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/notequal.glif new file mode 100644 index 00000000..f615de02 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/notequal.glif @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/ntilde.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/ntilde.glif new file mode 100644 index 00000000..c349a663 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/ntilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + n+tilde + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/numbersign.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/numbersign.glif new file mode 100644 index 00000000..e4276475 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/numbersign.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/numero.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/numero.glif new file mode 100644 index 00000000..2792c042 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/numero.glif @@ -0,0 +1,90 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + N + com.fontlab.recipe + N+ordmasculine + com.schriftgestaltung.Glyphs.ComponentInfo + + + alignment + -1 + index + 0 + name + N + + + alignment + -1 + index + 1 + name + ordmasculine + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/numero.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/numero.ss01.glif new file mode 100644 index 00000000..91f50b8a --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/numero.ss01.glif @@ -0,0 +1,95 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + N.ss01 + com.fontlab.metricsRight + ordmasculine + com.fontlab.recipe + N.ss01+ordmasculine + com.schriftgestaltung.Glyphs.ComponentInfo + + + alignment + -1 + index + 0 + name + ordmasculine + + + alignment + -1 + index + 1 + name + N.ss01 + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/o-cy.accented.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/o-cy.accented.glif new file mode 100644 index 00000000..11d85191 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/o-cy.accented.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+acute + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/o-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/o-cy.glif new file mode 100644 index 00000000..017e668b --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/o-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/o.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/o.glif new file mode 100644 index 00000000..85cb36f7 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/o.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/oB_inocular-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/oB_inocular-cy.glif new file mode 100644 index 00000000..4683c60f --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/oB_inocular-cy.glif @@ -0,0 +1,81 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/oD_oubleM_onocular-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/oD_oubleM_onocular-cy.glif new file mode 100644 index 00000000..5a838c0e --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/oD_oubleM_onocular-cy.glif @@ -0,0 +1,121 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + com.fontlab.recipe + doubleo-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/oM_onocular-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/oM_onocular-cy.glif new file mode 100644 index 00000000..b9c8b5d8 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/oM_onocular-cy.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/oacute.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/oacute.glif new file mode 100644 index 00000000..880932b1 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/oacute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+acute + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/obarcyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/obarcyr.glif new file mode 100644 index 00000000..c3dc8a78 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/obarcyr.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/obardieresiscyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/obardieresiscyr.glif new file mode 100644 index 00000000..1951f3e0 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/obardieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + obarcyr+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/obreve.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/obreve.glif new file mode 100644 index 00000000..376cf539 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/obreve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+breve + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/ocircumflex.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/ocircumflex.glif new file mode 100644 index 00000000..6d1c1a6a --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/ocircumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+circumflex + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/odieresis.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/odieresis.glif new file mode 100644 index 00000000..5ff7b938 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/odieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+dieresis + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/odieresiscyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/odieresiscyr.glif new file mode 100644 index 00000000..6e8e1e78 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/odieresiscyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/oe.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/oe.glif new file mode 100644 index 00000000..459a46ad --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/oe.glif @@ -0,0 +1,86 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + e + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/oe.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/oe.ss01.glif new file mode 100644 index 00000000..596b3198 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/oe.ss01.glif @@ -0,0 +1,95 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + e.ss01 + public.markColor + 0.6,0.997,1,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/ogonek.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/ogonek.glif new file mode 100644 index 00000000..f883bb71 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/ogonek.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/ograve.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/ograve.glif new file mode 100644 index 00000000..4fe60a5d --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/ograve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+grave + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/ohungarumlaut.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/ohungarumlaut.glif new file mode 100644 index 00000000..f7bb36ea --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/ohungarumlaut.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+hungarumlaut + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/omacron.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/omacron.glif new file mode 100644 index 00000000..4e43dd04 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/omacron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+macron + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/omegaB_road-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/omegaB_road-cy.glif new file mode 100644 index 00000000..d1bcf8b4 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/omegaB_road-cy.glif @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o+5 + com.fontlab.metricsRight + o+5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/omegacyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/omegacyr.glif new file mode 100644 index 00000000..4c6264b8 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/omegacyr.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + w + com.fontlab.metricsRight + w + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/omegaroundcyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/omegaroundcyr.glif new file mode 100644 index 00000000..5503f1f0 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/omegaroundcyr.glif @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/omegatitlocyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/omegatitlocyr.glif new file mode 100644 index 00000000..29ffd3a7 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/omegatitlocyr.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o+5 + com.fontlab.metricsRight + o+5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/omultiocular-cy.alt.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/omultiocular-cy.alt.glif new file mode 100644 index 00000000..5957b203 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/omultiocular-cy.alt.glif @@ -0,0 +1,366 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + oMonocular-cy + com.fontlab.metricsRight + oMonocular-cy + public.markColor + 0.6,0.997,1,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/omultiocular-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/omultiocular-cy.glif new file mode 100644 index 00000000..a11c8376 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/omultiocular-cy.glif @@ -0,0 +1,517 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + oMonocular-cy + com.fontlab.metricsRight + oMonocular-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/one.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/one.glif new file mode 100644 index 00000000..74a265a0 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/one.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =40 + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/one.osf.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/one.osf.glif new file mode 100644 index 00000000..a2a420a6 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/one.osf.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + one + com.fontlab.metricsRight + one + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/one.tf.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/one.tf.glif new file mode 100644 index 00000000..b2554010 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/one.tf.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/onehalf.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/onehalf.glif new file mode 100644 index 00000000..5e07b7b6 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/onehalf.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/onequarter.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/onequarter.glif new file mode 100644 index 00000000..819e898e --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/onequarter.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/onesuperior.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/onesuperior.glif new file mode 100644 index 00000000..7ed6f40d --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/onesuperior.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/ordfeminine.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/ordfeminine.glif new file mode 100644 index 00000000..f3daae53 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/ordfeminine.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/ordmasculine.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/ordmasculine.glif new file mode 100644 index 00000000..560e91b4 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/ordmasculine.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/oslash.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/oslash.glif new file mode 100644 index 00000000..c54c6f9a --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/oslash.glif @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/oslashacute.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/oslashacute.glif new file mode 100644 index 00000000..fc5586ed --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/oslashacute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + oslash+acute + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/otcyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/otcyr.glif new file mode 100644 index 00000000..07c0b90e --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/otcyr.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsRight + w + com.fontlab.recipe + omegacyr+uni2DEE + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/otilde.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/otilde.glif new file mode 100644 index 00000000..97c2f4d9 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/otilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+tilde + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/p.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/p.glif new file mode 100644 index 00000000..68b63be3 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/p.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/p.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/p.ss01.glif new file mode 100644 index 00000000..bfc90ce0 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/p.ss01.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/palatcombcyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/palatcombcyr.glif new file mode 100644 index 00000000..11e42045 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/palatcombcyr.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/palochkacyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/palochkacyr.glif new file mode 100644 index 00000000..f89c44d1 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/palochkacyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/paragraph.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/paragraph.glif new file mode 100644 index 00000000..1c599d67 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/paragraph.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |P + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/parenleft.case.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/parenleft.case.glif new file mode 100644 index 00000000..9bbb3d36 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/parenleft.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |parenright.case + com.fontlab.metricsRight + |parenright.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/parenleft.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/parenleft.glif new file mode 100644 index 00000000..ecdfdb6e --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/parenleft.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/parenright.case.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/parenright.case.glif new file mode 100644 index 00000000..f452860c --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/parenright.case.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + parenright + com.fontlab.metricsRight + parenright + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/parenright.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/parenright.glif new file mode 100644 index 00000000..8a502607 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/parenright.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/partialdiff.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/partialdiff.glif new file mode 100644 index 00000000..8b3eed66 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/partialdiff.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/pe-cy.B_G_R_.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/pe-cy.B_G_R_.glif new file mode 100644 index 00000000..3abe37be --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/pe-cy.B_G_R_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + n + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/pe-cy.S_R_B_.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/pe-cy.S_R_B_.glif new file mode 100644 index 00000000..c902c460 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/pe-cy.S_R_B_.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+macron-fwd.alt + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/pe-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/pe-cy.glif new file mode 100644 index 00000000..e78a7d8f --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/pe-cy.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/pehookcyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/pehookcyr.glif new file mode 100644 index 00000000..cea86ead --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/pehookcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + п + com.fontlab.metricsRight + enmiddlehookcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/percent.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/percent.glif new file mode 100644 index 00000000..55ad81a4 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/percent.glif @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/period.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/period.glif new file mode 100644 index 00000000..3f5e27ba --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/period.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/periodcentered.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/periodcentered.glif new file mode 100644 index 00000000..dda13ec8 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/periodcentered.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/perthousand.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/perthousand.glif new file mode 100644 index 00000000..064a9b09 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/perthousand.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/petailcyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/petailcyr.glif new file mode 100644 index 00000000..0a874e92 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/petailcyr.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + п + com.fontlab.metricsRight + entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/pi.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/pi.glif new file mode 100644 index 00000000..b037ef08 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/pi.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f + com.fontlab.metricsRight + t + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/plus.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/plus.glif new file mode 100644 index 00000000..c4af786f --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/plus.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/plusminus.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/plusminus.glif new file mode 100644 index 00000000..26da5031 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/plusminus.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/pokrytiecombcyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/pokrytiecombcyr.glif new file mode 100644 index 00000000..a9be65d2 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/pokrytiecombcyr.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/product.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/product.glif new file mode 100644 index 00000000..bd885c5f --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/product.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/proportional.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/proportional.glif new file mode 100644 index 00000000..53060ee1 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/proportional.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/psicyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/psicyr.glif new file mode 100644 index 00000000..cf7d8318 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/psicyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + u + com.fontlab.metricsRight + |u + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/q.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/q.glif new file mode 100644 index 00000000..5c67a901 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/q.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/q.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/q.ss01.glif new file mode 100644 index 00000000..64900e96 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/q.ss01.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/qacyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/qacyr.glif new file mode 100644 index 00000000..9a8495ff --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/qacyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + q + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/question.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/question.glif new file mode 100644 index 00000000..82918b52 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/question.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/questiondown.case.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/questiondown.case.glif new file mode 100644 index 00000000..337f5a61 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/questiondown.case.glif @@ -0,0 +1,19 @@ + + + + + + + + + com.fontlab.metricsLeft + |question + com.fontlab.metricsRight + |question + com.fontlab.recipe + questiondown + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/questiondown.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/questiondown.glif new file mode 100644 index 00000000..dc31d875 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/questiondown.glif @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |question + com.fontlab.metricsRight + |question + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/quotedbl.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/quotedbl.glif new file mode 100644 index 00000000..6d031051 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/quotedbl.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/quotedblbase.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/quotedblbase.glif new file mode 100644 index 00000000..0896ad28 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/quotedblbase.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + comma + com.fontlab.metricsRight + comma + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/quotedblleft.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/quotedblleft.glif new file mode 100644 index 00000000..bdda0d15 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/quotedblleft.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + |comma + com.fontlab.metricsRight + |comma + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/quotedblright.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/quotedblright.glif new file mode 100644 index 00000000..0dff9eab --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/quotedblright.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.metricsLeft + comma+20 + com.fontlab.metricsRight + comma-20 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/quoteleft.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/quoteleft.glif new file mode 100644 index 00000000..a96b98ae --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/quoteleft.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + quotedblleft + com.fontlab.metricsRight + quotedblleft + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/quoteright.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/quoteright.glif new file mode 100644 index 00000000..05aa843f --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/quoteright.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + com.fontlab.metricsLeft + quotedblright + com.fontlab.metricsRight + quotedblright + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/quotesinglbase.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/quotesinglbase.glif new file mode 100644 index 00000000..ec5c42e5 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/quotesinglbase.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + com.fontlab.recipe + comma + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/quotesingle.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/quotesingle.glif new file mode 100644 index 00000000..41a3ded4 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/quotesingle.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/r.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/r.glif new file mode 100644 index 00000000..036f7248 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/r.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/racute.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/racute.glif new file mode 100644 index 00000000..8aa2f18b --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/racute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + r+acute + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/radical.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/radical.glif new file mode 100644 index 00000000..9eab17f7 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/radical.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + V + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/rcaron.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/rcaron.glif new file mode 100644 index 00000000..9d59b72d --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/rcaron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + r+caron + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/rcommaaccent.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/rcommaaccent.glif new file mode 100644 index 00000000..d46ceca1 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/rcommaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + r+commaaccentcomb + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/registered.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/registered.glif new file mode 100644 index 00000000..4b6e78b1 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/registered.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/reversedzecyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/reversedzecyr.glif new file mode 100644 index 00000000..709b4aa0 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/reversedzecyr.glif @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + + com.fontlab.metricsRight + + com.fontlab.recipe + з + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/rhacyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/rhacyr.glif new file mode 100644 index 00000000..2fe4659d --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/rhacyr.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + p + com.fontlab.metricsRight + x + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/ring.case.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/ring.case.glif new file mode 100644 index 00000000..1f1e9b6a --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/ring.case.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/ring.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/ring.glif new file mode 100644 index 00000000..f01f80f7 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/ring.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/rookblack.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/rookblack.glif new file mode 100644 index 00000000..175a8c8f --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/rookblack.glif @@ -0,0 +1,270 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =30 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/ruble.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/ruble.glif new file mode 100644 index 00000000..2817e48a --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/ruble.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + P + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/s.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/s.glif new file mode 100644 index 00000000..5d5a1475 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/s.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/sacute.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/sacute.glif new file mode 100644 index 00000000..664933f1 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/sacute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + s+acute + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/scaron.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/scaron.glif new file mode 100644 index 00000000..5ae75a86 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/scaron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + s+caron + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/scedilla.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/scedilla.glif new file mode 100644 index 00000000..dc5bc3be --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/scedilla.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + s+cedilla + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/schwacyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/schwacyr.glif new file mode 100644 index 00000000..110ceb0f --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/schwacyr.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |e + com.fontlab.metricsRight + o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/schwadieresiscyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/schwadieresiscyr.glif new file mode 100644 index 00000000..47ed6263 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/schwadieresiscyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + schwacyr+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/scircumflex.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/scircumflex.glif new file mode 100644 index 00000000..4c9c0997 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/scircumflex.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + s+circumflex + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/scommaaccent.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/scommaaccent.glif new file mode 100644 index 00000000..cd6c07d0 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/scommaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + s+commaaccentcomb + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/second.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/second.glif new file mode 100644 index 00000000..a8a35dc4 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/second.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/section.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/section.glif new file mode 100644 index 00000000..5c198a72 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/section.glif @@ -0,0 +1,87 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + S + com.fontlab.metricsRight + S + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/semicolon.case.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/semicolon.case.glif new file mode 100644 index 00000000..57065af7 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/semicolon.case.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.metricsLeft + semicolon + com.fontlab.metricsRight + semicolon + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/semicolon.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/semicolon.glif new file mode 100644 index 00000000..018c22b7 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/semicolon.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/semisoftcyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/semisoftcyr.glif new file mode 100644 index 00000000..c78cd439 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/semisoftcyr.glif @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + t + com.fontlab.metricsRight + ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/seven.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/seven.glif new file mode 100644 index 00000000..88807c7b --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/seven.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/seven.osf.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/seven.osf.glif new file mode 100644 index 00000000..cb108506 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/seven.osf.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + seven + com.fontlab.metricsRight + seven + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/seven.tf.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/seven.tf.glif new file mode 100644 index 00000000..35298e1f --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/seven.tf.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/sha-cy.B_G_R_.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/sha-cy.B_G_R_.glif new file mode 100644 index 00000000..934e3f92 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/sha-cy.B_G_R_.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + u + com.fontlab.metricsRight + l + com.fontlab.recipe + m + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/sha-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/sha-cy.glif new file mode 100644 index 00000000..a3015c4a --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/sha-cy.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/shcha-cy.B_G_R_.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/shcha-cy.B_G_R_.glif new file mode 100644 index 00000000..534193e0 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/shcha-cy.B_G_R_.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + u + com.fontlab.metricsRight + щ + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/shcha-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/shcha-cy.glif new file mode 100644 index 00000000..f1ee10ca --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/shcha-cy.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + д + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/shhacyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/shhacyr.glif new file mode 100644 index 00000000..2db9e23e --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/shhacyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsRight + n + com.fontlab.recipe + h + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/shhatailcyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/shhatailcyr.glif new file mode 100644 index 00000000..a258ad98 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/shhatailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + h + com.fontlab.metricsRight + entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/shwe-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/shwe-cy.glif new file mode 100644 index 00000000..1c5b046a --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/shwe-cy.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + щ + com.fontlab.metricsRight + щ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/six.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/six.glif new file mode 100644 index 00000000..d9cb3691 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/six.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/six.osf.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/six.osf.glif new file mode 100644 index 00000000..c2755f81 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/six.osf.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + six + com.fontlab.metricsRight + six + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/six.tf.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/six.tf.glif new file mode 100644 index 00000000..a25c75e0 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/six.tf.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/sjekomicyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/sjekomicyr.glif new file mode 100644 index 00000000..9e5c6d42 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/sjekomicyr.glif @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + e + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/slash.case.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/slash.case.glif new file mode 100644 index 00000000..589768c7 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/slash.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + slash + com.fontlab.metricsRight + slash + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/slash.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/slash.glif new file mode 100644 index 00000000..c2e2b92f --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/slash.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/softsign-cy.B_G_R_.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/softsign-cy.B_G_R_.glif new file mode 100644 index 00000000..212a27bb --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/softsign-cy.B_G_R_.glif @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + u + com.fontlab.metricsRight + ь-5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/softsign-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/softsign-cy.glif new file mode 100644 index 00000000..e38ad9eb --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/softsign-cy.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/softsign-cy.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/softsign-cy.ss01.glif new file mode 100644 index 00000000..91fc97bb --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/softsign-cy.ss01.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/space.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/space.glif new file mode 100644 index 00000000..52472956 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/space.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/spadewhite.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/spadewhite.glif new file mode 100644 index 00000000..1af44123 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/spadewhite.glif @@ -0,0 +1,453 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/sterling.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/sterling.glif new file mode 100644 index 00000000..23e3dc3d --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/sterling.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/summation.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/summation.glif new file mode 100644 index 00000000..41ed14ce --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/summation.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/t.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/t.glif new file mode 100644 index 00000000..23bb47fd --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/t.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/t.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/t.ss01.glif new file mode 100644 index 00000000..bfc27bf7 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/t.ss01.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/tbar.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/tbar.glif new file mode 100644 index 00000000..1df27986 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/tbar.glif @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/tbar.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/tbar.ss01.glif new file mode 100644 index 00000000..bb4ebe99 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/tbar.ss01.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/tcaron.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/tcaron.glif new file mode 100644 index 00000000..d84fdbf2 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/tcaron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.metricsLeft + t + com.fontlab.metricsRight + t + com.fontlab.recipe + t+caron.salt + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/tcaron.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/tcaron.ss01.glif new file mode 100644 index 00000000..8cac0527 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/tcaron.ss01.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + com.fontlab.recipe + t.ss01+caron.salt + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/tcedilla.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/tcedilla.glif new file mode 100644 index 00000000..eaac9ea1 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/tcedilla.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + t+cedilla + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/tcedilla.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/tcedilla.ss01.glif new file mode 100644 index 00000000..2b9afd69 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/tcedilla.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + t.ss01+cedilla + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/tche-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/tche-cy.glif new file mode 100644 index 00000000..2b8aee3f --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/tche-cy.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + tetsecyr-20 + com.fontlab.metricsRight + ч + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/tcommaaccent.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/tcommaaccent.glif new file mode 100644 index 00000000..052a454a --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/tcommaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + t+commaaccentcomb + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/tcommaaccent.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/tcommaaccent.ss01.glif new file mode 100644 index 00000000..ab3832a2 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/tcommaaccent.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + t.ss01+commaaccentcomb + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/te-cy.B_G_R_.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/te-cy.B_G_R_.glif new file mode 100644 index 00000000..08503644 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/te-cy.B_G_R_.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + m + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/te-cy.S_R_B_.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/te-cy.S_R_B_.glif new file mode 100644 index 00000000..f1200203 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/te-cy.S_R_B_.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ш.BGR+macron-fwd + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/te-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/te-cy.glif new file mode 100644 index 00000000..800d1a8e --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/te-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/te-cy.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/te-cy.ss01.glif new file mode 100644 index 00000000..52c28a58 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/te-cy.ss01.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/tenge.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/tenge.glif new file mode 100644 index 00000000..ab3321e2 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/tenge.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + T + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/tenmillionscomb-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/tenmillionscomb-cy.glif new file mode 100644 index 00000000..31f20e39 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/tenmillionscomb-cy.glif @@ -0,0 +1,109 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/tetailcyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/tetailcyr.glif new file mode 100644 index 00000000..e819b034 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/tetailcyr.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + т + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/tetsecyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/tetsecyr.glif new file mode 100644 index 00000000..818bf45d --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/tetsecyr.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + т + com.fontlab.metricsRight + ц + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/tewithmiddlehook-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/tewithmiddlehook-cy.glif new file mode 100644 index 00000000..acff597a --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/tewithmiddlehook-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + т + com.fontlab.metricsRight + gehookcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/thorn.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/thorn.glif new file mode 100644 index 00000000..e6414034 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/thorn.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + b + com.fontlab.metricsRight + b + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/thousandmillionscomb-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/thousandmillionscomb-cy.glif new file mode 100644 index 00000000..7c25cc98 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/thousandmillionscomb-cy.glif @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/thousandscyr.dnom.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/thousandscyr.dnom.glif new file mode 100644 index 00000000..445d1407 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/thousandscyr.dnom.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + | + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/thousandscyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/thousandscyr.glif new file mode 100644 index 00000000..d48bfed5 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/thousandscyr.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + | + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/three.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/three.glif new file mode 100644 index 00000000..2528902a --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/three.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/three.osf.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/three.osf.glif new file mode 100644 index 00000000..5309c791 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/three.osf.glif @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + three + com.fontlab.metricsRight + three + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/three.tf.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/three.tf.glif new file mode 100644 index 00000000..f852d12d --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/three.tf.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/threequarters.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/threequarters.glif new file mode 100644 index 00000000..56de11dd --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/threequarters.glif @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/threesuperior.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/threesuperior.glif new file mode 100644 index 00000000..fb9a043b --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/threesuperior.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/tilde.case.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/tilde.case.glif new file mode 100644 index 00000000..65d147ac --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/tilde.case.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/tilde.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/tilde.glif new file mode 100644 index 00000000..86ccc6f1 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/tilde.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/titlocombcyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/titlocombcyr.glif new file mode 100644 index 00000000..c6ee0934 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/titlocombcyr.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/tjekomicyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/tjekomicyr.glif new file mode 100644 index 00000000..22c3942c --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/tjekomicyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + т + com.fontlab.metricsRight + njekomicyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/trademark.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/trademark.glif new file mode 100644 index 00000000..c9c9b333 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/trademark.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/tse-cy.B_G_R_.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/tse-cy.B_G_R_.glif new file mode 100644 index 00000000..c58bbe3c --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/tse-cy.B_G_R_.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + u + com.fontlab.metricsRight + ц + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/tse-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/tse-cy.glif new file mode 100644 index 00000000..00eafc3d --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/tse-cy.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + д + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/tseR_eversed-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/tseR_eversed-cy.glif new file mode 100644 index 00000000..18ef0e01 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/tseR_eversed-cy.glif @@ -0,0 +1,20 @@ + + + + + + + + + + com.fontlab.metricsLeft + + com.fontlab.metricsRight + н + com.fontlab.recipe + ц + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/tshecyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/tshecyr.glif new file mode 100644 index 00000000..fda74b42 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/tshecyr.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + hbar + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/tsse-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/tsse-cy.glif new file mode 100644 index 00000000..35f7e89c --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/tsse-cy.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + т + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/tswe-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/tswe-cy.glif new file mode 100644 index 00000000..d66be3aa --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/tswe-cy.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ш + com.fontlab.metricsRight + shwe-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/twe-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/twe-cy.glif new file mode 100644 index 00000000..17e86695 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/twe-cy.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + т.ss01 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/two.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/two.glif new file mode 100644 index 00000000..02d1b7f6 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/two.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/two.osf.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/two.osf.glif new file mode 100644 index 00000000..9f50f182 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/two.osf.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + two + com.fontlab.metricsRight + two + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/two.tf.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/two.tf.glif new file mode 100644 index 00000000..ba3a725c --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/two.tf.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/twosuperior.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/twosuperior.glif new file mode 100644 index 00000000..abcd9df6 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/twosuperior.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/u-cy.accented.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/u-cy.accented.glif new file mode 100644 index 00000000..f756dc21 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/u-cy.accented.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + y+acute + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/u-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/u-cy.glif new file mode 100644 index 00000000..f92521c6 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/u-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + y + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/u.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/u.glif new file mode 100644 index 00000000..be81aff3 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/u.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |n + com.fontlab.metricsRight + l + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/uacute.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/uacute.glif new file mode 100644 index 00000000..3306a727 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/uacute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+acute + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/uacutedblcyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/uacutedblcyr.glif new file mode 100644 index 00000000..839ee899 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/uacutedblcyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u-cy+hungarumlaut + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/ubreve.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/ubreve.glif new file mode 100644 index 00000000..aa3738be --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/ubreve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+breve + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/ucircumflex.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/ucircumflex.glif new file mode 100644 index 00000000..41f92394 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/ucircumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+circumflex + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/udieresis.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/udieresis.glif new file mode 100644 index 00000000..ca3da14c --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/udieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+dieresis + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/udieresiscyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/udieresiscyr.glif new file mode 100644 index 00000000..9f9e3383 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/udieresiscyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/ugrave.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/ugrave.glif new file mode 100644 index 00000000..78cb8357 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/ugrave.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+grave + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/uhungarumlaut.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/uhungarumlaut.glif new file mode 100644 index 00000000..f483ce49 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/uhungarumlaut.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+hungarumlaut + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/ukM_onograph-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/ukM_onograph-cy.glif new file mode 100644 index 00000000..fb76873b --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/ukM_onograph-cy.glif @@ -0,0 +1,78 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + y-30 + com.fontlab.metricsRight + y-20 + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/ukcyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/ukcyr.glif new file mode 100644 index 00000000..df181391 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/ukcyr.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + y + com.fontlab.recipe + uni1C82_у + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/umacron.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/umacron.glif new file mode 100644 index 00000000..3014c9f2 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/umacron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+macron + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/umacroncyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/umacroncyr.glif new file mode 100644 index 00000000..071bcbfb --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/umacroncyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u-cy+macron + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/underscore.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/underscore.glif new file mode 100644 index 00000000..adfc044f --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/underscore.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/uni1C_80.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/uni1C_80.glif new file mode 100644 index 00000000..147e7861 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/uni1C_80.glif @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + б + com.fontlab.metricsRight + o-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/uni1C_81.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/uni1C_81.glif new file mode 100644 index 00000000..82757301 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/uni1C_81.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + д-10 + com.fontlab.metricsRight + | + com.fontlab.recipe + д + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/uni1C_82.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/uni1C_82.glif new file mode 100644 index 00000000..bd81460b --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/uni1C_82.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/uni1C_83.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/uni1C_83.glif new file mode 100644 index 00000000..e46f94dd --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/uni1C_83.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + c + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/uni1C_84.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/uni1C_84.glif new file mode 100644 index 00000000..3a1f7505 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/uni1C_84.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/uni1C_85.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/uni1C_85.glif new file mode 100644 index 00000000..82df904b --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/uni1C_85.glif @@ -0,0 +1,20 @@ + + + + + + + + + + com.fontlab.metricsLeft + ш + com.fontlab.metricsRight + l() + com.fontlab.recipe + ш + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/uni1C_86.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/uni1C_86.glif new file mode 100644 index 00000000..4f86d891 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/uni1C_86.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + uni1C84 + com.fontlab.metricsRight + ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/uni1C_87.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/uni1C_87.glif new file mode 100644 index 00000000..e814325b --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/uni1C_87.glif @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + uni1C84-40 + com.fontlab.metricsRight + ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/uni1C_88.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/uni1C_88.glif new file mode 100644 index 00000000..d018b498 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/uni1C_88.glif @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/uni1E_B_C_.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/uni1E_B_C_.glif new file mode 100644 index 00000000..267ca852 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/uni1E_B_C_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+tilde.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/uni1E_B_D_.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/uni1E_B_D_.glif new file mode 100644 index 00000000..64e75cae --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/uni1E_B_D_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+tilde + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/uni2010.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/uni2010.glif new file mode 100644 index 00000000..86bd9aef --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/uni2010.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + hyphen + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/uni2D_E_E_.case.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/uni2D_E_E_.case.glif new file mode 100644 index 00000000..89ac95dc --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/uni2D_E_E_.case.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/uni2D_E_E_.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/uni2D_E_E_.glif new file mode 100644 index 00000000..dfafc28e --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/uni2D_E_E_.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/uniE_000.alt.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniE_000.alt.glif new file mode 100644 index 00000000..3bc90aef --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniE_000.alt.glif @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + ї_ї + public.markColor + 0.6,0.997,1,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/uniE_000.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniE_000.glif new file mode 100644 index 00000000..00cd97d5 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniE_000.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + ї_ї + public.markColor + 0.6,0.997,1,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/uniE_01A_.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniE_01A_.glif new file mode 100644 index 00000000..20a740c0 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniE_01A_.glif @@ -0,0 +1,115 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_43A_.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_43A_.glif new file mode 100644 index 00000000..af544cfe --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_43A_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_43B_.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_43B_.glif new file mode 100644 index 00000000..d1fa58cb --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_43B_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ustraightcyr+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_45D_.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_45D_.glif new file mode 100644 index 00000000..7b5f1b90 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_45D_.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Є+acute.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_45E_.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_45E_.glif new file mode 100644 index 00000000..78904f15 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_45E_.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Iacute + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_45F_.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_45F_.glif new file mode 100644 index 00000000..a12fe3e5 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_45F_.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + com.fontlab.recipe + I+dieresiscase.alt+acute.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_475.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_475.glif new file mode 100644 index 00000000..30e64326 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_475.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + є+acute + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_476.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_476.glif new file mode 100644 index 00000000..0d880395 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_476.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + iacute + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_477.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_477.glif new file mode 100644 index 00000000..6f266031 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_477.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + dotlessi+dieresisacute + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_478.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_478.glif new file mode 100644 index 00000000..10fddc93 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_478.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Yat+acute.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_479.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_479.glif new file mode 100644 index 00000000..0b6a5260 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_479.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + yat+acute + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_498.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_498.glif new file mode 100644 index 00000000..ef716305 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_498.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ю+dieresis.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_499.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_499.glif new file mode 100644 index 00000000..456bb608 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_499.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ю+dieresis + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_49A_.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_49A_.glif new file mode 100644 index 00000000..8a29f77a --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_49A_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Obarcyr+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_49B_.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_49B_.glif new file mode 100644 index 00000000..c3ac0658 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_49B_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + obarcyr+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_49C_.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_49C_.glif new file mode 100644 index 00000000..4aeaca38 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_49C_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Schwacyr+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_49D_.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_49D_.glif new file mode 100644 index 00000000..fa3f097b --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_49D_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + schwacyr+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_49E_.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_49E_.glif new file mode 100644 index 00000000..3c13407a --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_49E_.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Yatcyr + com.fontlab.metricsRight + Tshecyr + com.fontlab.recipe + Shhacyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_49F_.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_49F_.glif new file mode 100644 index 00000000..b2e29d7f --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_49F_.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + hbar + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_4C_6.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_4C_6.glif new file mode 100644 index 00000000..6f92e8c2 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_4C_6.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ч + com.fontlab.metricsRight + Ч + com.fontlab.recipe + Ч + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_4C_7.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_4C_7.glif new file mode 100644 index 00000000..8a9f7abc --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_4C_7.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ч + com.fontlab.metricsRight + ч + com.fontlab.recipe + ч+enhookcyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_4C_C_.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_4C_C_.glif new file mode 100644 index 00000000..aa05bf58 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_4C_C_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + У+acute.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_4C_D_.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_4C_D_.glif new file mode 100644 index 00000000..e4964bd3 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_4C_D_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + y+acute + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_4D_2.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_4D_2.glif new file mode 100644 index 00000000..160e014b --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_4D_2.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+grave.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_4D_3.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_4D_3.glif new file mode 100644 index 00000000..72803d33 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_4D_3.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+grave + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_4D_4.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_4D_4.glif new file mode 100644 index 00000000..e7b48f75 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_4D_4.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + P+caron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_4D_5.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_4D_5.glif new file mode 100644 index 00000000..f845f274 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_4D_5.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + p+caron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_4D_6.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_4D_6.glif new file mode 100644 index 00000000..3d83bbf1 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_4D_6.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Э+dotaccent.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_4D_7.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_4D_7.glif new file mode 100644 index 00000000..dc09e3fd --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_4D_7.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + э+dotaccent + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_4D_8.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_4D_8.glif new file mode 100644 index 00000000..22dd900b --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_4D_8.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Я+dieresis.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_4D_9.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_4D_9.glif new file mode 100644 index 00000000..8077a81c --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_4D_9.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + я+dieresis + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_50E_.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_50E_.glif new file mode 100644 index 00000000..e15da026 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_50E_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_50F_.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_50F_.glif new file mode 100644 index 00000000..3e6e8139 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_50F_.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_510.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_510.glif new file mode 100644 index 00000000..cd246564 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_510.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_511.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_511.glif new file mode 100644 index 00000000..a95ac8c9 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_511.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_512.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_512.glif new file mode 100644 index 00000000..de43f2dd --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_512.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + com.fontlab.metricsLeft + E + com.fontlab.metricsRight + E + com.fontlab.recipe + E+dieresis.case+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_513.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_513.glif new file mode 100644 index 00000000..34d8f7b8 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_513.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.recipe + e+dieresis+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_514.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_514.glif new file mode 100644 index 00000000..52c90f89 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_514.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + com.fontlab.metricsLeft + E + com.fontlab.metricsRight + E + com.fontlab.recipe + E+dieresis.case+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_515.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_515.glif new file mode 100644 index 00000000..d5083d14 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_515.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.recipe + e+dieresis+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_516.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_516.glif new file mode 100644 index 00000000..ab37907f --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_516.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + З+caron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_517.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_517.glif new file mode 100644 index 00000000..ec314764 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_517.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + з+caron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_518.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_518.glif new file mode 100644 index 00000000..3b8671c1 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_518.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_519.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_519.glif new file mode 100644 index 00000000..cf668b3e --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_519.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_51A_.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_51A_.glif new file mode 100644 index 00000000..9c509779 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_51A_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_51B_.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_51B_.glif new file mode 100644 index 00000000..144a1ed7 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_51B_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_51C_.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_51C_.glif new file mode 100644 index 00000000..0acc828d --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_51C_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Obarcyr+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_51D_.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_51D_.glif new file mode 100644 index 00000000..52a664a7 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_51D_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + obarcyr+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_51E_.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_51E_.glif new file mode 100644 index 00000000..e56b0a7f --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_51E_.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + com.fontlab.recipe + Obarcyr+dieresis.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_51F_.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_51F_.glif new file mode 100644 index 00000000..9c94a410 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_51F_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.recipe + obarcyr+dieresis+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_521.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_521.glif new file mode 100644 index 00000000..9e7fcdff --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_521.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ы+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_522.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_522.glif new file mode 100644 index 00000000..ff05202f --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_522.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Э+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_523.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_523.glif new file mode 100644 index 00000000..3ed61086 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_523.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + э+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_524.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_524.glif new file mode 100644 index 00000000..29d7a3b8 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_524.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Э+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_525.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_525.glif new file mode 100644 index 00000000..cad10b83 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_525.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + э+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_526.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_526.glif new file mode 100644 index 00000000..65deac58 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_526.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Є+dieresis.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_527.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_527.glif new file mode 100644 index 00000000..d25ce4b4 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_527.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + є+dieresis + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_528.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_528.glif new file mode 100644 index 00000000..c6f022e4 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_528.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Я+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_529.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_529.glif new file mode 100644 index 00000000..74f85443 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_529.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + я+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_52A_.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_52A_.glif new file mode 100644 index 00000000..0ab39e36 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_52A_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Я+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_52B_.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_52B_.glif new file mode 100644 index 00000000..063c27ca --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_52B_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + я+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_52C_.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_52C_.glif new file mode 100644 index 00000000..f3017aac --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_52C_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ю+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_52D_.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_52D_.glif new file mode 100644 index 00000000..ef4a54ee --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_52D_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ю+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_52E_.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_52E_.glif new file mode 100644 index 00000000..159edf80 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_52E_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ю+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_52F_.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_52F_.glif new file mode 100644 index 00000000..a3f34e05 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_52F_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ю+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_532.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_532.glif new file mode 100644 index 00000000..a6b2551c --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_532.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Й + com.fontlab.metricsRight + Й + com.fontlab.recipe + Й + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_533.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_533.glif new file mode 100644 index 00000000..8a4ca0f4 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_533.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + l() + com.fontlab.recipe + й+enhookcyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_536.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_536.glif new file mode 100644 index 00000000..73fb9809 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_536.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ы+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_537.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_537.glif new file mode 100644 index 00000000..c77b0b79 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_537.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ы+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_538.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_538.glif new file mode 100644 index 00000000..9a78449a --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_538.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Reversedzecyr+dieresis.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_539.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_539.glif new file mode 100644 index 00000000..2bd817e8 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_539.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + reversedzecyr+dieresis + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_830.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_830.glif new file mode 100644 index 00000000..3fbf3596 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_830.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+circumflex.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_831.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_831.glif new file mode 100644 index 00000000..b13e8056 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_831.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+circumflex + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_833.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_833.glif new file mode 100644 index 00000000..87e4a2f1 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_833.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+circumflex.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_834.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_834.glif new file mode 100644 index 00000000..edf7117e --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_834.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+circumflex + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_839.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_839.glif new file mode 100644 index 00000000..9f332967 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_839.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+circumflex.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_83A_.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_83A_.glif new file mode 100644 index 00000000..737eb131 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_83A_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+circumflex + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_86F_.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_86F_.glif new file mode 100644 index 00000000..d6e7f4e9 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_86F_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + K+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_870.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_870.glif new file mode 100644 index 00000000..1a8d0408 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_870.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + к+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_872.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_872.glif new file mode 100644 index 00000000..37180d00 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_872.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Л+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_873.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_873.glif new file mode 100644 index 00000000..c349436a --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_873.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + л+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_875.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_875.glif new file mode 100644 index 00000000..faede266 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_875.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_876.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_876.glif new file mode 100644 index 00000000..675a4c92 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_876.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_878.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_878.glif new file mode 100644 index 00000000..2cf0900c --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_878.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + X+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_879.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_879.glif new file mode 100644 index 00000000..95d7b8bb --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_879.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + x+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_87B_.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_87B_.glif new file mode 100644 index 00000000..3f420bdf --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_87B_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ц+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_87C_.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_87C_.glif new file mode 100644 index 00000000..f5abd0f1 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_87C_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ц+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_87E_.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_87E_.glif new file mode 100644 index 00000000..f23eb130 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_87E_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ч+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_87F_.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_87F_.glif new file mode 100644 index 00000000..31bddc8a --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/uniF_87F_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ч+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/uogonek.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/uogonek.glif new file mode 100644 index 00000000..d5fc9f72 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/uogonek.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+ogonek + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/uring.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/uring.glif new file mode 100644 index 00000000..8931d44c --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/uring.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+ring + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/ushort-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/ushort-cy.glif new file mode 100644 index 00000000..d67a61e5 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/ushort-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + uni0443+breve + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/ustraightcyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/ustraightcyr.glif new file mode 100644 index 00000000..2722abf0 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/ustraightcyr.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + v + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/ustraightstrokecyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/ustraightstrokecyr.glif new file mode 100644 index 00000000..be4e3594 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/ustraightstrokecyr.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/utilde.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/utilde.glif new file mode 100644 index 00000000..cb39c8e8 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/utilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+tilde + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/v.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/v.glif new file mode 100644 index 00000000..6f6c1d38 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/v.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/ve-cy.B_G_R_.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/ve-cy.B_G_R_.glif new file mode 100644 index 00000000..aafaddab --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/ve-cy.B_G_R_.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + b-5 + com.fontlab.metricsRight + b + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/ve-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/ve-cy.glif new file mode 100644 index 00000000..731cb603 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/ve-cy.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/ve-cy.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/ve-cy.ss01.glif new file mode 100644 index 00000000..a3536d90 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/ve-cy.ss01.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/virgo.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/virgo.glif new file mode 100644 index 00000000..56fe8f3f --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/virgo.glif @@ -0,0 +1,224 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =55 + com.fontlab.metricsRight + =35 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/vzmetcomb-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/vzmetcomb-cy.glif new file mode 100644 index 00000000..da2ecb79 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/vzmetcomb-cy.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/w.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/w.glif new file mode 100644 index 00000000..d8ef8bbd --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/w.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/wacute.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/wacute.glif new file mode 100644 index 00000000..c270abc8 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/wacute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + w+acute + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/wcircumflex.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/wcircumflex.glif new file mode 100644 index 00000000..3e17fb25 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/wcircumflex.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + w+circumflex + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/wdieresis.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/wdieresis.glif new file mode 100644 index 00000000..629792af --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/wdieresis.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + w+dieresis + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/wecyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/wecyr.glif new file mode 100644 index 00000000..2b07fd9f --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/wecyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + w + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/wgrave.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/wgrave.glif new file mode 100644 index 00000000..350ee9bf --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/wgrave.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + w+grave + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/x.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/x.glif new file mode 100644 index 00000000..92f629c6 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/x.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/xatailcyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/xatailcyr.glif new file mode 100644 index 00000000..2144d917 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/xatailcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + x + com.fontlab.metricsRight + zhetailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/y.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/y.glif new file mode 100644 index 00000000..8191105b --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/y.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/yacute.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/yacute.glif new file mode 100644 index 00000000..c3bf0805 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/yacute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + y+acute + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/yaecyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/yaecyr.glif new file mode 100644 index 00000000..2388a761 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/yaecyr.glif @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + я + com.fontlab.metricsRight + e + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/yatI_otified-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/yatI_otified-cy.glif new file mode 100644 index 00000000..61980a36 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/yatI_otified-cy.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + com.fontlab.metricsRight + yatcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/yatcyr.B_G_R_.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/yatcyr.B_G_R_.glif new file mode 100644 index 00000000..f69ca195 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/yatcyr.B_G_R_.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hardsign-cy + com.fontlab.metricsRight + ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/yatcyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/yatcyr.glif new file mode 100644 index 00000000..2d9201b1 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/yatcyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hardsign-cy + com.fontlab.metricsRight + ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/ycircumflex.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/ycircumflex.glif new file mode 100644 index 00000000..e77fb364 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/ycircumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + y+circumflex + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/ydieresis.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/ydieresis.glif new file mode 100644 index 00000000..452421b1 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/ydieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + y+dieresis + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/yen.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/yen.glif new file mode 100644 index 00000000..e72a7703 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/yen.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/yen.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/yen.ss01.glif new file mode 100644 index 00000000..ea4d29a8 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/yen.ss01.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/yerN_eutral-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/yerN_eutral-cy.glif new file mode 100644 index 00000000..5d7fb438 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/yerN_eutral-cy.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hardsign-cy + com.fontlab.metricsRight + ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/yeru-cy.accented.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/yeru-cy.accented.glif new file mode 100644 index 00000000..028b2fae --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/yeru-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ы+acute + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/yeru-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/yeru-cy.glif new file mode 100644 index 00000000..672c788f --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/yeru-cy.glif @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/yeru-cy.ss01.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/yeru-cy.ss01.glif new file mode 100644 index 00000000..1c107cdf --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/yeru-cy.ss01.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/yeruB_ackyer-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/yeruB_ackyer-cy.glif new file mode 100644 index 00000000..2a5ade99 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/yeruB_ackyer-cy.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hardsign-cy + com.fontlab.metricsRight + dotlessi + com.fontlab.recipe + hardsign-cy_dotlessi + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/yi-cy.alt.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/yi-cy.alt.glif new file mode 100644 index 00000000..5567e38a --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/yi-cy.alt.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.recipe + idieresis + public.markColor + 0.6,0.997,1,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/yi-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/yi-cy.glif new file mode 100644 index 00000000..5e4edd20 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/yi-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + idieresis + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/ylongdieresiscyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/ylongdieresiscyr.glif new file mode 100644 index 00000000..7d6ccdfe --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/ylongdieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + yeru-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/yn-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/yn-cy.glif new file mode 100644 index 00000000..460b1332 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/yn-cy.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |izhitsacyr + com.fontlab.metricsRight + |izhitsacyr + com.fontlab.recipe + izhitsa + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/yuR_eversed-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/yuR_eversed-cy.glif new file mode 100644 index 00000000..0d7af87e --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/yuR_eversed-cy.glif @@ -0,0 +1,20 @@ + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l + com.fontlab.recipe + ю + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/yusB_lended-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/yusB_lended-cy.glif new file mode 100644 index 00000000..73db6243 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/yusB_lended-cy.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + yusbigcyr + com.fontlab.metricsRight + yusbigcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/yusC_losedlittle-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/yusC_losedlittle-cy.glif new file mode 100644 index 00000000..17016eaf --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/yusC_losedlittle-cy.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + yuslittlecyr + com.fontlab.metricsRight + yuslittlecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/yusbigcyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/yusbigcyr.glif new file mode 100644 index 00000000..210c8a5a --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/yusbigcyr.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/yusbigiotifiedcyr.B_G_R_.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/yusbigiotifiedcyr.B_G_R_.glif new file mode 100644 index 00000000..fa64c4fb --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/yusbigiotifiedcyr.B_G_R_.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + com.fontlab.metricsRight + ж + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/yusbigiotifiedcyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/yusbigiotifiedcyr.glif new file mode 100644 index 00000000..b9fe7297 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/yusbigiotifiedcyr.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + ж + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/yusiotifiedC_losedL_ittle-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/yusiotifiedC_losedL_ittle-cy.glif new file mode 100644 index 00000000..79a164f4 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/yusiotifiedC_losedL_ittle-cy.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + yusClosedlittle-cy + com.fontlab.recipe + yusClosedlittle-cy+н + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/yuslittlecyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/yuslittlecyr.glif new file mode 100644 index 00000000..5b7804b3 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/yuslittlecyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + v-5 + com.fontlab.metricsRight + v-5 + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/yuslittleiotifiedcyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/yuslittleiotifiedcyr.glif new file mode 100644 index 00000000..208fe7db --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/yuslittleiotifiedcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + v-10 + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/z.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/z.glif new file mode 100644 index 00000000..65fdbf69 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/z.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/zacute.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/zacute.glif new file mode 100644 index 00000000..57ac6613 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/zacute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + z+acute + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/zcaron.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/zcaron.glif new file mode 100644 index 00000000..42a28edb --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/zcaron.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + z+caron + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/zdotaccent.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/zdotaccent.glif new file mode 100644 index 00000000..f6262085 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/zdotaccent.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + z+dotaccent + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/ze-cy.B_G_R_.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/ze-cy.B_G_R_.glif new file mode 100644 index 00000000..7dce99e3 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/ze-cy.B_G_R_.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |c-12 + com.fontlab.metricsRight + в-5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/ze-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/ze-cy.glif new file mode 100644 index 00000000..c510529e --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/ze-cy.glif @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |c-5 + com.fontlab.metricsRight + в + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/zedieresiscyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/zedieresiscyr.glif new file mode 100644 index 00000000..016bc79b --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/zedieresiscyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ze-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/zemlya-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/zemlya-cy.glif new file mode 100644 index 00000000..9b794e4d --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/zemlya-cy.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + z-10 + com.fontlab.metricsRight + z + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/zero.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/zero.glif new file mode 100644 index 00000000..9c88a02d --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/zero.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/zero.osf.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/zero.osf.glif new file mode 100644 index 00000000..ae2c115c --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/zero.osf.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + zero + com.fontlab.metricsRight + zero + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/zero.tf.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/zero.tf.glif new file mode 100644 index 00000000..d1ef4682 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/zero.tf.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/zetailcyr.B_S_H_.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/zetailcyr.B_S_H_.glif new file mode 100644 index 00000000..a0bedf7a --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/zetailcyr.B_S_H_.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + з + com.fontlab.metricsRight + з + com.fontlab.recipe + з + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/zetailcyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/zetailcyr.glif new file mode 100644 index 00000000..ca33ead6 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/zetailcyr.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + з + com.fontlab.metricsRight + з + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/zhe-cy.B_G_R_.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/zhe-cy.B_G_R_.glif new file mode 100644 index 00000000..00d7d4af --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/zhe-cy.B_G_R_.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |k + com.fontlab.metricsRight + k + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/zhe-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/zhe-cy.glif new file mode 100644 index 00000000..54498a15 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/zhe-cy.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |k + com.fontlab.metricsRight + k + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/zhebrevecyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/zhebrevecyr.glif new file mode 100644 index 00000000..bcbdc243 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/zhebrevecyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + zhe-cy+breve + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/zhedieresiscyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/zhedieresiscyr.glif new file mode 100644 index 00000000..cb1e5bc5 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/zhedieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + zhe-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/zhetailcyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/zhetailcyr.glif new file mode 100644 index 00000000..1cd22e5e --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/zhetailcyr.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ж + com.fontlab.metricsRight + katailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/zhwe-cy.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/zhwe-cy.glif new file mode 100644 index 00000000..42fc9227 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/zhwe-cy.glif @@ -0,0 +1,87 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + з + com.fontlab.metricsRight + ж + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/glyphs/zjekomicyr.glif b/sources/FixelDisplay-SemiBold.ufo/glyphs/zjekomicyr.glif new file mode 100644 index 00000000..967480fd --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/glyphs/zjekomicyr.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + з-20 + com.fontlab.metricsRight + njekomicyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/groups.plist b/sources/FixelDisplay-SemiBold.ufo/groups.plist new file mode 100644 index 00000000..0215e532 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/groups.plist @@ -0,0 +1,2992 @@ + + + + + accent + + grave + acute.case + grave.case + acute + + case + + arrowdown.case + arrowdown.ss01.case + arrowleft.case + arrowleft.ss01.case + arrowright.case + arrowright.ss01.case + arrowup.case + arrowup.ss01.case + backslash.case + bar.case + braceleft.case + braceright.case + bracketleft.case + bracketright.case + brokenbar.case + bullet.case + colon.case + emdash.case + endash.case + exclamdown.case + guillemetleft.case + guillemetright.case + guilsinglleft.case + guilsinglright.case + hyphen.case + parenleft.case + parenright.case + questiondown.case + semicolon.case + at.case + bracketangleleft.case + bracketangleright.case + slash.case + + case_def + + arrowdown + arrowdown.ss01 + arrowleft + arrowleft.ss01 + arrowright + arrowright.ss01 + arrowup + arrowup.ss01 + backslash + bar + braceleft + braceright + bracketleft + bracketright + brokenbar + bullet + colon + emdash + endash + exclamdown + guillemetleft + guillemetright + guilsinglleft + guilsinglright + hyphen + parenleft + parenright + questiondown + semicolon + at + bracketangleleft + bracketangleright + slash + + cpsp + + 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 + Agrave + Aacute + Acircumflex + Atilde + Adieresis + Aring + AE + Ccedilla + Egrave + Eacute + Ecircumflex + Edieresis + Igrave + Iacute + Icircumflex + Idieresis + Eth + Ntilde + Ograve + Oacute + Ocircumflex + Otilde + Odieresis + Oslash + Ugrave + Uacute + Ucircumflex + Udieresis + Yacute + Thorn + Amacron + Abreve + Aogonek + Cacute + Ccircumflex + Cdotaccent + Ccaron + Dcaron + Dcroat + Emacron + Ebreve + Edotaccent + Eogonek + Ecaron + Gcircumflex + Gbreve + Gdotaccent + Gcommaaccent + Hcircumflex + Hbar + Itilde + Imacron + Ibreve + Iogonek + Idotaccent + IJ + Jcircumflex + Kcommaaccent + Lacute + Lcommaaccent + Lcaron + Ldot + Lslash + Nacute + Ncommaaccent + Ncaron + Eng + Omacron + Obreve + Ohungarumlaut + OE + Racute + Rcommaaccent + Rcaron + Sacute + Scircumflex + Scedilla + Scaron + Tcedilla + Tcaron + Tbar + Utilde + Umacron + Ubreve + Uring + Uhungarumlaut + Uogonek + Wcircumflex + Ycircumflex + Ydieresis + Zacute + Zdotaccent + Zcaron + Schwa + Acaron + Gacute + AEacute + Oslashacute + Scommaaccent + Tcommaaccent + Delta + Omega + Iegravecyr + uniF43A + A-cy.accented + E-cy.accented + Ii-cy.accented + O-cy.accented + U-cy.accented + Yeru-cy.accented + Ereversed-cy.accented + Iu-cy.accented + Ia-cy.accented + Io-cy.accented + uniF498 + uniF49A + uniF49C + uniF49E + uniF4C6 + uniF4CC + uniF4D2 + uniF4D4 + uniF4D6 + uniF4D8 + uniF50E + uniF510 + uniF512 + uniF514 + uniF516 + uniF518 + uniF51A + uniF51C + uniF51E + Yeru-cymacron + uniF522 + uniF524 + uniF526 + uniF528 + uniF52A + uniF52C + uniF52E + uniF532 + uniF536 + uniF538 + uniF830 + uniF833 + uniF839 + uniF86F + uniF872 + uniF875 + uniF878 + uniF87B + uniF87E + Io-cy + Djecyr + Gjecyr + E-cy + Dze-cy + I-cy + Yi-cy + Jecyr + Ljecyr + Njecyr + Tshecyr + Kjecyr + Igravecyr + Ushort-cy + Dzhecyr + A-cy + Be-cy + Ve-cy + Ge-cy + De-cy + Ie-cy + Zhe-cy + Ze-cy + Ii-cy + Iishort-cy + Ka-cy + El-cy + Em-cy + En-cy + O-cy + Pe-cy + Er-cy + Es-cy + Te-cy + U-cy + Ef-cy + Ha-cy + Tse-cy + Che-cy + Sha-cy + Shcha-cy + Hardsign-cy + Yeru-cy + Softsign-cy + Ereversed-cy + Iu-cy + Ia-cy + Omegacyr + Yatcyr + Eiotifiedcyr + Yuslittlecyr + Yuslittleiotifiedcyr + Yusbigcyr + Yusbigiotifiedcyr + Ksicyr + Psicyr + Fitacyr + Izhitsacyr + Izhitsagravedblcyr + Ukcyr + Omegaroundcyr + Omegatitlocyr + Otcyr + Koppacyr + Ishortsharptailcyr + Semisoftcyr + Ertickcyr + Gheupturn-cy + Gestrokecyr + Gehookcyr + Zhetailcyr + Zetailcyr + Katailcyr + Kaverticalstrokecyr + Kastrokecyr + Kabashkcyr + Entailcyr + Engecyr + Pehookcyr + Haabkhcyr + Estailcyr + Tetailcyr + Ustraightcyr + Ustraightstrokecyr + Xatailcyr + Tetsecyr + Chetailcyr + Chevertcyr + Shhacyr + Cheabkhcyr + Cheabkhtailcyr + Palochkacyr + Zhebrevecyr + Kahookcyr + Elsharptailcyr + Enhookcyr + Ensharptailcyr + Chekhakascyr + Emsharptailcyr + Abrevecyr + Adieresiscyr + Aiecyr + Iebrevecyr + Schwacyr + Schwadieresiscyr + Zhedieresiscyr + Zedieresiscyr + Dzeabkhcyr + Imacroncyr + Idieresiscyr + Odieresiscyr + Obarcyr + Obardieresiscyr + Ereverseddieresiscyr + Umacroncyr + Udieresiscyr + Uacutedblcyr + Chedieresiscyr + Getailcyr + Ylongdieresiscyr + Gehookstrokecyr + Hahookcyr + Hastrokecyr + Dekomicyr + Djekomicyr + Zjekomicyr + Dzjekomicyr + Ljekomicyr + Njekomicyr + Sjekomicyr + Tjekomicyr + Reversedzecyr + Elhookcyr + Lhacyr + Rhacyr + Yaecyr + Qacyr + Wecyr + Kaaleutcyr + Elmiddlehookcyr + Enmiddlehookcyr + Petailcyr + Shhatailcyr + Enhookleftcyr + Dzzhecyr + Dchecyr + Eltailcyr + Wgrave + Wacute + Wdieresis + Germandbls + uni1EBC + Zemlya-cy + Dzelo-cy + DzeReversed-cy + Iota-cy + Djerv-cy + UkMonograph-cy + OmegaBroad-cy + YerNeutral-cy + YeruBackYer-cy + YatIotified-cy + YuReversed-cy + IotifiedA-cy + YusClosedlittle-cy + YusBlended-cy + YusiotifiedClosedLittle-cy + Yn-cy + TseReversed-cy + DeSoft-cy + ElSoft-cy + EmSoft-cy + OMonocular-cy + OBinocular-cy + ODoubleMonocular-cy + Dwe-cy + Dzwe-cy + Zhwe-cy + Cche-cy + Dzze-cy + TeWithMiddleHook-cy + Twe-cy + Tswe-cy + Tsse-cy + Tche-cy + Hwe-cy + Shwe-cy + DoubleO-cy + CrossedO-cy + A-cy.ss01 + A.ss01 + AE.ss01 + Aacute.ss01 + Abreve.ss01 + Acircumflex.ss01 + Adieresis.ss01 + Agrave.ss01 + Amacron.ss01 + Aogonek.ss01 + Aring.ss01 + Atilde.ss01 + Em-cy.ss01 + Eng.ss01 + G.ss01 + Gacute.ss01 + Gbreve.ss01 + Gcircumflex.ss01 + Gcommaaccent.ss01 + Gdotaccent.ss01 + Ha-cy.ss01 + Ia-cy.ss01 + J.ss01 + Jcircumflex.ss01 + K.ss01 + Ka-cy.ss01 + Kcommaaccent.ss01 + M.ss01 + N.ss01 + Nacute.ss01 + Ncaron.ss01 + Ncommaaccent.ss01 + Ntilde.ss01 + Q.ss01 + U-cy.ss01 + Ushort-cy.ss01 + V.ss01 + W.ss01 + Wacute.ss01 + Wcircumflex.ss01 + Wdieresis.ss01 + Wgrave.ss01 + X.ss01 + Y.ss01 + Yacute.ss01 + Ycircumflex.ss01 + Ydieresis.ss01 + Z.ss01 + Zacute.ss01 + Zcaron.ss01 + Zdotaccent.ss01 + Zetailcyr.BSH + Gestrokecyr.BSH + Estailcyr.BSH + Estailcyr.CHU + Zhe-cy.ss01 + + locl.SRB + + be-cy.SRB + iegravecyr.SRB + igravecyr.SRB + + loclSRB_def + + be-cy + iegravecyr + igravecyr + + locl_BGR + + De-cy.BGR + Ef-cy.BGR + El-cy.BGR + de-cy.BGR + eiotifiedcyr.BGR + el-cy.BGR + ge-cy.BGR + hardsign-cy.BGR + ii-cy.BGR + iishort-cy.BGR + iotifieda-cy.BGR + iu-cy.BGR + ka-cy.BGR + pe-cy.BGR + sha-cy.BGR + shcha-cy.BGR + softsign-cy.BGR + te-cy.BGR + tse-cy.BGR + ve-cy.BGR + yatcyr.BGR + yusbigiotifiedcyr.BGR + ze-cy.BGR + zhe-cy.BGR + + locl_def + + De-cy + Ef-cy + El-cy + de-cy + eiotifiedcyr + el-cy + ge-cy + hardsign-cy + ii-cy + iishort-cy + iotifieda-cy + iu-cy + ka-cy + pe-cy + sha-cy + shcha-cy + softsign-cy + te-cy + tse-cy + ve-cy + yatcyr + yusbigiotifiedcyr + ze-cy + zhe-cy + + pics + + neptune + leo + virgo + bishopwhite + knightwhite + rookblack + bishopblack + knightblack + heartwhite + diamondwhite-misc + spadewhite + heart + clubwhite + crossedswords + flower + floretteblack + florettewhite + floretteoutlinedpetalledblackeight + + pics_def + + A + B + C + D + E + F + G + H + I + J + K + L + M + N + O + P + Q + R + + public.kern1.A.ss012 + + A-cy.ss01 + A.ss01 + Aacute.ss01 + Abreve.ss01 + Acircumflex.ss01 + Adieresis.ss01 + Agrave.ss01 + Amacron.ss01 + Aogonek.ss01 + Aring.ss01 + Atilde.ss01 + + public.kern1.A2 + + A + A-cy + A-cy.accented + Aacute + Abreve + Abrevecyr + Acaron + Acircumflex + Adieresis + Adieresiscyr + Agrave + Amacron + Aogonek + Aring + Atilde + De-cy.BGR + Delta + El-cy.BGR + IotifiedA-cy + Yn-cy + YusClosedlittle-cy + YusiotifiedClosedLittle-cy + Yuslittlecyr + Yuslittleiotifiedcyr + uniF50E + uniF830 + + public.kern1.AE + + AE + AE.ss01 + AEacute + Aiecyr + + public.kern1.C1 + + C + Cacute + Ccaron + Ccedilla + Ccircumflex + Cdotaccent + E-cy + Eiotifiedcyr + Es-cy + Estailcyr + Estailcyr.BSH + Estailcyr.CHU + Reversedzecyr + uniF45D + uniF526 + uniF538 + uniF875 + + public.kern1.Decyr + + Chetailcyr + De-cy + Dwe-cy + Dzze-cy + Elsharptailcyr + Eltailcyr + Emsharptailcyr + Ensharptailcyr + Entailcyr + Ishortsharptailcyr + Petailcyr + Shcha-cy + Shwe-cy + Tetsecyr + Tse-cy + Tswe-cy + uniF87B + + public.kern1.E1 + + E + E-cy.accented + Eacute + Ebreve + Ecaron + Ecircumflex + Edieresis + Edotaccent + Egrave + Emacron + Eogonek + Ie-cy + Iebrevecyr + Io-cy + Io-cy.accented + Yaecyr + uni1EBC + uniF510 + uniF512 + uniF514 + uniF833 + + public.kern1.G.ss01 + + G.ss01 + Gacute.ss01 + Gbreve.ss01 + Gcircumflex.ss01 + Gcommaaccent.ss01 + Gdotaccent.ss01 + + public.kern1.G1 + + G + Gacute + Gbreve + Gcircumflex + Gcommaaccent + Gdotaccent + + public.kern1.Ge-cy + + DeSoft-cy + ElSoft-cy + EmSoft-cy + Engecyr + Ge-cy + Gehookstrokecyr + Gestrokecyr + Gestrokecyr.BSH + Getailcyr + Gheupturn-cy + Gjecyr + TseReversed-cy + YeruBackYer-cy + uniF872 + + public.kern1.H + + Eng + Eng.ss01 + H + Hbar + Hcircumflex + I + Iacute + Ibreve + Icircumflex + Idieresis + Idotaccent + Igrave + Imacron + Iogonek + Itilde + J.ss01 + Jcircumflex.ss01 + M + M.ss01 + N + N.ss01 + Nacute + Nacute.ss01 + Ncaron + Ncaron.ss01 + Ncommaaccent + Ncommaaccent.ss01 + Ntilde + Ntilde.ss01 + + public.kern1.Hardcyr + + Hardsign-cy + Ljecyr + Njecyr + Semisoftcyr + Shhacyr + Softsign-cy + YatIotified-cy + Yatcyr + YerNeutral-cy + uniF478 + + public.kern1.J1 + + J + Jcircumflex + Jecyr + + public.kern1.K + + K + K.ss01 + Ka-cy + Ka-cy.ss01 + Kaaleutcyr + Kabashkcyr + Kastrokecyr + Kcommaaccent + Kcommaaccent.ss01 + Kjecyr + uniF86F + + public.kern1.L + + L + Lacute + Lcaron + Lcommaaccent + Lslash + + public.kern1.O + + Cheabkhcyr + Cheabkhtailcyr + CrossedO-cy + D + Dcaron + Dcroat + DoubleO-cy + Ef-cy + Ef-cy.BGR + Ereversed-cy + Ereversed-cy.accented + Ereverseddieresiscyr + Eth + Fitacyr + Iu-cy + Iu-cy.accented + O + O-cy + O-cy.accented + OBinocular-cy + ODoubleMonocular-cy + OMonocular-cy + Oacute + Obarcyr + Obardieresiscyr + Obreve + Ocircumflex + Odieresis + Odieresiscyr + Ograve + Ohungarumlaut + Omacron + Omega + Omegaroundcyr + Oslash + Oslashacute + Otilde + Q + Qacyr + Schwa + Schwacyr + Schwadieresiscyr + Sjekomicyr + uniF498 + uniF49A + uniF49C + uniF4D2 + uniF4D6 + uniF518 + uniF51A + uniF51C + uniF51E + uniF522 + uniF524 + uniF52C + uniF52E + uniF839 + + public.kern1.Oslash.alt + + Ha-cy + Ha-cy.ss01 + Hahookcyr + Lhacyr + Rhacyr + X + X.ss01 + uniF878 + + public.kern1.P + + Er-cy + Ertickcyr + P + uniF4D4 + + public.kern1.R + + R + Racute + Rcaron + Rcommaaccent + + public.kern1.S1 + + Dzwe-cy + S + Sacute + Scaron + Scedilla + Scircumflex + Scommaaccent + + public.kern1.T1 + + Koppacyr + T + Tcaron + Tcedilla + Tcommaaccent + Te-cy + Tetailcyr + Tsse-cy + Twe-cy + + public.kern1.U1 + + OmegaBroad-cy + Omegacyr + Omegatitlocyr + Otcyr + Psicyr + U + Uacute + Ubreve + Ucircumflex + Udieresis + Ugrave + Uhungarumlaut + Umacron + Uogonek + Uring + Utilde + + public.kern1.Ucyr1 + + U-cy + U-cy.accented + U-cy.ss01 + Uacutedblcyr + Udieresiscyr + Umacroncyr + Ushort-cy + Ushort-cy.ss01 + uniF4CC + + public.kern1.V + + Izhitsacyr + Izhitsagravedblcyr + V + V.ss01 + + public.kern1.W.ss011 + + W.ss01 + Wacute.ss01 + Wcircumflex.ss01 + Wdieresis.ss01 + Wgrave.ss01 + + public.kern1.W1 + + W + Wacute + Wcircumflex + Wdieresis + Wecyr + Wgrave + + public.kern1.Y.ss011 + + Y.ss01 + Yacute.ss01 + Ycircumflex.ss01 + Ydieresis.ss01 + + public.kern1.Y1 + + Ustraightcyr + Ustraightstrokecyr + Y + Yacute + Ycircumflex + Ydieresis + uniF43A + + public.kern1.Yacyr + + Cche-cy + Che-cy + Chedieresiscyr + Chekhakascyr + Chevertcyr + Dekomicyr + Elhookcyr + Em-cy + En-cy + Enhookcyr + Enhookleftcyr + I-cy + Ia-cy + Ia-cy.accented + Ia-cy.ss01 + Idieresiscyr + Ii-cy + Ii-cy.accented + Iishort-cy + Imacroncyr + Palochkacyr + Pe-cy + Sha-cy + Tche-cy + Yeru-cy + Yeru-cy.accented + Yeru-cymacron + Yi-cy + Ylongdieresiscyr + YuReversed-cy + palochkacyr + uniF45E + uniF45F + uniF4C6 + uniF4D8 + uniF528 + uniF52A + uniF532 + uniF536 + uniF87E + + public.kern1.Z1 + + Dzelo-cy + Z + Z.ss01 + Zacute + Zacute.ss01 + Zcaron + Zcaron.ss01 + Zdotaccent + Zdotaccent.ss01 + Zemlya-cy + + public.kern1.Ze-cy + + Dzeabkhcyr + Ksicyr + Ze-cy + Zedieresiscyr + Zetailcyr + Zetailcyr.BSH + uniF516 + + public.kern1.Zhe-cy + + Dzzhecyr + Katailcyr + Kaverticalstrokecyr + Xatailcyr + YusBlended-cy + Yusbigcyr + Yusbigiotifiedcyr + Zhe-cy + Zhebrevecyr + Zhedieresiscyr + Zhetailcyr + Zhwe-cy + + public.kern1.a1 + + a + aacute + abreve + acaron + acircumflex + adieresis + agrave + amacron + aogonek + aring + atilde + + public.kern1.c1 + + c + cacute + ccaron + ccedilla + ccircumflex + cdotaccent + e-cy + e-cy.hist + eiotifiedcyr + eiotifiedcyr.BGR + es-cy + estailcyr + estailcyr.BSH + estailcyr.CHU + koppacyr + reversedzecyr + sjekomicyr + uni1C83 + uniF475 + uniF527 + uniF539 + uniF876 + + public.kern1.comma1 + + comma + quotedblbase + quotesinglbase + + public.kern1.copyright1 + + copyright + registered + + public.kern1.dcaron + + dcaron + dcaron.ss01 + lcaron + + public.kern1.decyr1 + + chetailcyr + dchecyr + de-cy + de-cy.ss01 + dwe-cy + dzze-cy + elsharptailcyr + eltailcyr + emsharptailcyr + ensharptailcyr + entailcyr + ishortsharptailcyr + petailcyr + shcha-cy + shcha-cy.BGR + shhatailcyr + shwe-cy + tetsecyr + tse-cy + tse-cy.BGR + tswe-cy + uniF87C + + public.kern1.e.ss011 + + e.ss01 + eacute.ss01 + ebreve.ss01 + ecaron.ss01 + ecircumflex.ss01 + edieresis.ss01 + edotaccent.ss01 + egrave.ss01 + emacron.ss01 + eogonek.ss01 + oe.ss01 + + public.kern1.e1 + + ae + aeacute + aiecyr + cheabkhcyr + cheabkhtailcyr + e + e-cy.accented + eacute + ebreve + ecaron + ecircumflex + edieresis + edotaccent + egrave + emacron + eogonek + ie-cy + iebrevecyr + iegravecyr + iegravecyr.SRB + io-cy + io-cy.accented + uni1EBD + uniF511 + uniF513 + uniF515 + uniF834 + yaecyr + + public.kern1.el-cy.BGR + + el-cy.BGR + iotifieda-cy + iotifieda-cy.BGR + uni1C81 + yn-cy + yusClosedlittle-cy + yusiotifiedClosedLittle-cy + yuslittlecyr + yuslittleiotifiedcyr + + public.kern1.emdash1 + + emdash + endash + hyphen + + public.kern1.f1 + + f + f_f + + public.kern1.fi + + f_f_i + fi + + public.kern1.five1 + + five + five.tf + + public.kern1.four1 + + four + four.tf + + public.kern1.g.ss011 + + g.ss01 + gacute.ss01 + gbreve.ss01 + gcircumflex.ss01 + gcommaaccent.ss01 + gdotaccent.ss01 + + public.kern1.g1 + + g + gacute + gbreve + gcircumflex + gcommaaccent + gdotaccent + + public.kern1.gecyr + + deSoft-cy + elSoft-cy + emSoft-cy + engecyr + ge-cy + gehookstrokecyr + gestrokecyr + gestrokecyr.BSH + getailcyr + gheupturn-cy + gjecyr + + public.kern1.guillemotright1 + + guillemetright + guilsinglright + + public.kern1.hardcyr + + Tjekomicyr + djekomicyr + elmiddlehookcyr + enmiddlehookcyr + gehookcyr + hardsign-cy + hardsign-cy.BGR + hardsign-cy.ss01 + ljecyr + ljecyr.ss01 + ljekomicyr + njecyr + njecyr.ss01 + njekomicyr + pehookcyr + semisoftcyr + softsign-cy + softsign-cy.BGR + softsign-cy.ss01 + tewithmiddlehook-cy + tjekomicyr + uni1C86 + uni1C87 + uniF479 + yatIotified-cy + yatcyr + yatcyr.BGR + yerNeutral-cy + zjekomicyr + + public.kern1.i1 + + Djekomicyr + Ljekomicyr + Njekomicyr + Zjekomicyr + i + i-cy + iacute + icircumflex + igrave + imacron + iogonek + itilde + uniF476 + yi-cy.alt + + public.kern1.icyr1 + + cche-cy + che-cy + chedieresiscyr + chekhakascyr + chevertcyr + de-cy.BGR + el-cy + elhookcyr + em-cy + en-cy + enhookcyr + enhookleftcyr + ia-cy + ia-cy.accented + idieresiscyr + igravecyr + ii-cy + ii-cy.accented + iishort-cy + imacroncyr + mu + pe-cy + psicyr + q + qacyr + sha-cy + sha-cy.BGR + tche-cy + tseReversed-cy + ubreve + uni1C85 + uniF4C7 + uniF4D9 + uniF521 + uniF529 + uniF52B + uniF533 + uniF537 + uniF873 + uniF87F + utilde + yeru-cy + yeru-cy.accented + yeru-cy.ss01 + yeruBackyer-cy + ylongdieresiscyr + yuReversed-cy + + public.kern1.j1 + + ij + j + jcircumflex + jdotless + + public.kern1.k + + k + ka-cy + ka-cy.BGR + kaaleutcyr + kabashkcyr + kastrokecyr + kcommaaccent + kgreenlandic + kjecyr + uniF870 + + public.kern1.l + + f_f_l + fl + l + lacute + lcommaaccent + + public.kern1.l.ss011 + + Iota-cy + iota-cy + l.ss01 + lacute.ss01 + lcommaaccent.ss01 + + public.kern1.n + + Djecyr + Elmiddlehookcyr + Enmiddlehookcyr + Gehookcyr + Hwe-cy + Kahookcyr + Pehookcyr + Shhatailcyr + TeWithMiddleHook-cy + Tshecyr + a-cy.accented + a-cy.ss01 + a.ss01 + aacute.ss01 + abreve.ss01 + abrevecyr + acircumflex.ss01 + adieresis.ss01 + adieresiscyr + agrave.ss01 + aogonek.ss01 + aring.ss01 + atilde.ss01 + djecyr + el-cy.ss01 + h + hbar + hcircumflex + hwe-cy + ia-cy.ss01 + iotifieda-cy.hist + m + n + nacute + napostrophe + ncaron + ncommaaccent + ntilde + pe-cy.BGR + q.ss01 + shhacyr + te-cy.BGR + tshecyr + uniF49E + uniF49F + uniF50F + uniF831 + + public.kern1.numero + + numero + numero.ss01 + + public.kern1.o1 + + b + b.ss01 + be-cy.SRB + crossedo-cy + ef-cy + er-cy + er-cy.ss01 + ereversed-cy + ereversed-cy.accented + ereverseddieresiscyr + ertickcyr + eturned + fitacyr + iu-cy + iu-cy.BGR + iu-cy.accented + o + o-cy + o-cy.accented + oBinocular-cy + oDoubleMonocular-cy + oMonocular-cy + oacute + obarcyr + obardieresiscyr + obreve + ocircumflex + odieresis + odieresiscyr + ograve + ohungarumlaut + omacron + omegaBroad-cy + omegaroundcyr + omegatitlocyr + oslashacute + otilde + p + p.ss01 + schwacyr + schwadieresiscyr + thorn + uni1C82 + uniF499 + uniF49D + uniF4D3 + uniF4D5 + uniF4D7 + uniF519 + uniF51B + uniF51D + uniF51F + uniF523 + uniF525 + uniF52D + uniF52F + uniF83A + + public.kern1.period1 + + ellipsis + period + + public.kern1.quotedbl1 + + quotedbl + quotesingle + + public.kern1.quoteleft1 + + quotedblleft + quoteleft + + public.kern1.quoteright1 + + apostrophemod + minute + quotedblright + quoteright + second + + public.kern1.s1 + + dzwe-cy + s + sacute + scaron + scedilla + scircumflex + scommaaccent + + public.kern1.t.ss011 + + t.ss01 + tcedilla.ss01 + tcommaaccent.ss01 + + public.kern1.t1 + + t + tcaron + tcedilla + tcommaaccent + + public.kern1.te-cy + + te-cy + tetailcyr + tsse-cy + twe-cy + + public.kern1.u1 + + igravecyr.SRB + ii-cy.BGR + iishort-cy.BGR + pe-cy.SRB + te-cy.SRB + u + uacute + ucircumflex + udieresis + ugrave + uhungarumlaut + umacron + uogonek + uring + + public.kern1.uni0435.ss011 + + ie-cy.ss01 + io-cy.ss01 + + public.kern1.v + + izhitsacyr + izhitsagravedblcyr + v + + public.kern1.w1 + + omegacyr + otcyr + w + wacute + wcircumflex + wdieresis + wecyr + wgrave + + public.kern1.x + + ha-cy + hahookcyr + lhacyr + rhacyr + uniF879 + x + + public.kern1.y1 + + Ukcyr + u-cy + u-cy.accented + uacutedblcyr + udieresiscyr + ukcyr + umacroncyr + uniF43B + uniF4CD + ushort-cy + ustraightcyr + ustraightstrokecyr + y + yacute + ycircumflex + ydieresis + + public.kern1.z1 + + dzelo-cy + z + zacute + zcaron + zdotaccent + zemlya-cy + + public.kern1.ze-cy + + dzeabkhcyr + ksicyr + uniF517 + ze-cy + ze-cy.BGR + zedieresiscyr + zetailcyr + zetailcyr.BSH + + public.kern1.zhe-cy + + dzzhecyr + katailcyr + kaverticalstrokecyr + xatailcyr + yusBlended-cy + yusbigcyr + yusbigiotifiedcyr + yusbigiotifiedcyr.BGR + zhe-cy + zhe-cy.BGR + zhebrevecyr + zhedieresiscyr + zhetailcyr + zhwe-cy + + public.kern2.A.ss01 + + A.ss01 + AE.ss01 + Aacute.ss01 + Acircumflex.ss01 + Adieresis.ss01 + Agrave.ss01 + Amacron.ss01 + Aogonek.ss01 + Atilde.ss01 + + public.kern2.A.ss012 + + A-cy.ss01 + Abreve.ss01 + Aring.ss01 + + public.kern2.A2 + + A + A-cy + A-cy.accented + AE + AEacute + Aacute + Abreve + Abrevecyr + Acaron + Acircumflex + Adieresis + Adieresiscyr + Agrave + Aiecyr + Amacron + Aogonek + Aring + Atilde + De-cy.BGR + Delta + El-cy.BGR + Yn-cy + YusClosedlittle-cy + Yuslittlecyr + uniF50E + uniF830 + + public.kern2.B + + B + D + Dcaron + E + Eacute + Ecaron + Ecircumflex + Edieresis + Edotaccent + Egrave + Emacron + Eogonek + F + H + Hbar + Hcircumflex + I + Iacute + Ibreve + Icircumflex + Idieresis + Idotaccent + Igrave + Imacron + Iogonek + Itilde + K + K.ss01 + Kcommaaccent + Kcommaaccent.ss01 + L + Lacute + Lcaron + Lcommaaccent + Ldot + M + N + N.ss01 + Nacute + Nacute.ss01 + Ncaron + Ncaron.ss01 + Ncommaaccent + Ncommaaccent.ss01 + Ntilde + Ntilde.ss01 + P + R + Racute + Rcaron + Rcommaaccent + Thorn + uni1EBC + + public.kern2.Che-cy + + Cche-cy + Che-cy + Chedieresiscyr + Chekhakascyr + Chetailcyr + Chevertcyr + uniF4C6 + uniF87E + + public.kern2.De-cy + + Dchecyr + De-cy + DeSoft-cy + Dwe-cy + Dzze-cy + Dzzhecyr + TseReversed-cy + + public.kern2.El-cy + + El-cy + ElSoft-cy + Elhookcyr + Elmiddlehookcyr + Elsharptailcyr + Eltailcyr + Lhacyr + Ljekomicyr + uniF872 + + public.kern2.Eth + + Dcroat + Eth + Gestrokecyr + + public.kern2.G + + C + Cacute + Ccaron + Ccedilla + Ccircumflex + Cdotaccent + CrossedO-cy + DoubleO-cy + E-cy + Ef-cy.BGR + Es-cy + Estailcyr + Estailcyr.BSH + Estailcyr.CHU + Fitacyr + G + G.ss01 + Gacute + Gacute.ss01 + Gbreve + Gbreve.ss01 + Gcircumflex + Gcircumflex.ss01 + Gcommaaccent + Gcommaaccent.ss01 + Gdotaccent + Gdotaccent.ss01 + Haabkhcyr + Koppacyr + O + O-cy + O-cy.accented + OBinocular-cy + ODoubleMonocular-cy + OE + OMonocular-cy + Oacute + Obarcyr + Obardieresiscyr + Obreve + Ocircumflex + Odieresis + Odieresiscyr + Ograve + Ohungarumlaut + Omacron + Omegaroundcyr + Oslash + Otilde + Q + Q.ss01 + Qacyr + Schwacyr + Schwadieresiscyr + Sjekomicyr + Ukcyr + YuReversed-cy + uniF45D + uniF49A + uniF49C + uniF4D2 + uniF518 + uniF51A + uniF51C + uniF51E + uniF526 + uniF839 + uniF875 + + public.kern2.Gecyr + + Be-cy + E-cy.accented + Eiotifiedcyr + Em-cy + EmSoft-cy + Emsharptailcyr + En-cy + Engecyr + Enhookcyr + Enhookleftcyr + Enmiddlehookcyr + Ensharptailcyr + Entailcyr + Er-cy + Ertickcyr + Gehookcyr + Gestrokecyr.BSH + Getailcyr + Gheupturn-cy + Gjecyr + Hwe-cy + I-cy + Iebrevecyr + Ii-cy + Ii-cy.accented + Io-cy.accented + IotifiedA-cy + Iu-cy.accented + Ka-cy + Kaaleutcyr + Kahookcyr + Katailcyr + Kaverticalstrokecyr + Kjecyr + Njekomicyr + Palochkacyr + Pe-cy + Pehookcyr + Petailcyr + Rhacyr + Shhacyr + Shhatailcyr + Shwe-cy + Tswe-cy + Ve-cy + Yeru-cy.accented + Yeru-cymacron + Yi-cy + Ylongdieresiscyr + Yusbigiotifiedcyr + YusiotifiedClosedLittle-cy + Yuslittleiotifiedcyr + palochkacyr + uniF45E + uniF45F + uniF498 + uniF4D4 + uniF510 + uniF512 + uniF514 + uniF52C + uniF52E + uniF532 + uniF536 + uniF833 + uniF86F + uniF87B + + public.kern2.Ia-cy + + Ia-cy + Ia-cy.accented + Yaecyr + uniF4D8 + uniF528 + uniF52A + + public.kern2.Iishort-cy + + Idieresiscyr + Iishort-cy + Imacroncyr + Ishortsharptailcyr + + public.kern2.J + + J + Jcircumflex + Jecyr + + public.kern2.Oslash.alt + + Ha-cy.ss01 + Hahookcyr + X + X.ss01 + Xatailcyr + uniF878 + + public.kern2.S + + Dzwe-cy + S + Sacute + Scaron + Scedilla + Scircumflex + Scommaaccent + + public.kern2.T + + Djecyr + T + Tcaron + Tcedilla + Tche-cy + Tcommaaccent + Te-cy + TeWithMiddleHook-cy + Tetailcyr + Tetsecyr + Tjekomicyr + Tshecyr + Tsse-cy + Twe-cy + + public.kern2.U + + Iota-cy + OmegaBroad-cy + Omegacyr + Omegatitlocyr + Otcyr + Psicyr + U + Uacute + Ubreve + Ucircumflex + Udieresis + Ugrave + Uhungarumlaut + Umacron + Uogonek + Uring + Utilde + + public.kern2.Ucyr.ss01 + + U-cy.accented + U-cy.ss01 + Uacutedblcyr + Udieresiscyr + Umacroncyr + Ushort-cy.ss01 + uniF4CC + + public.kern2.V + + Izhitsacyr + Izhitsagravedblcyr + V + V.ss01 + + public.kern2.W + + W + W.ss01 + Wacute + Wacute.ss01 + Wcircumflex + Wcircumflex.ss01 + Wdieresis + Wdieresis.ss01 + Wecyr + Wgrave + Wgrave.ss01 + + public.kern2.Y + + Ustraightcyr + Ustraightstrokecyr + Y + Y.ss01 + Yacute + Yacute.ss01 + Ycircumflex + Ycircumflex.ss01 + Ydieresis + Ydieresis.ss01 + uniF43A + + public.kern2.Z + + Dzelo-cy + Z + Z.ss01 + Zacute + Zacute.ss01 + Zcaron + Zcaron.ss01 + Zdotaccent + Zdotaccent.ss01 + Zemlya-cy + + public.kern2.Ze-cy1 + + Dzeabkhcyr + Ksicyr + Ze-cy + Zedieresiscyr + Zetailcyr + Zetailcyr.BSH + Zhwe-cy + uniF516 + + public.kern2.Zhe-cy1 + + YusBlended-cy + Yusbigcyr + Zhe-cy + Zhebrevecyr + Zhedieresiscyr + Zhetailcyr + + public.kern2.a + + a + a-cy + a-cy.accented + aacute + abreve + abrevecyr + acaron + acircumflex + adieresis + adieresiscyr + ae + aeacute + agrave + aiecyr + amacron + aogonek + aring + atilde + uniF50F + uniF831 + + public.kern2.acute.case + + acute.case + hungarumlaut.case + + public.kern2.che-cy + + cche-cy + che-cy + chedieresiscyr + chekhakascyr + chetailcyr + chevertcyr + uniF4C7 + uniF87F + + public.kern2.comma + + comma + quotedblbase + quotesinglbase + + public.kern2.copyright + + copyright + registered + + public.kern2.decyr.ss01 + + de-cy.ss01 + deSoft-cy + dwe-cy + dzze-cy + dzzhecyr + tseReversed-cy + + public.kern2.el-cy + + el-cy + el-cy.ss01 + elSoft-cy + elhookcyr + elmiddlehookcyr + elsharptailcyr + eltailcyr + lhacyr + ljecyr.ss01 + ljekomicyr + uniF873 + + public.kern2.el-cy.BGR1 + + el-cy.BGR + uni1C81 + yn-cy + yusClosedlittle-cy + yuslittlecyr + + public.kern2.emdash + + emdash + endash + hyphen + + public.kern2.f + + f + f_f + f_f_i + f_f_l + fi + fl + gestrokecyr + + public.kern2.f_f.ss01 + + f_f.ss01 + f_f_i.ss01 + f_f_l.ss01 + + public.kern2.fi.ss01 + + fi.ss01 + fl.ss01 + + public.kern2.five + + five + five.tf + + public.kern2.four + + four + four.tf + + public.kern2.g + + g + gacute + gbreve + gcircumflex + gcommaaccent + gdotaccent + + public.kern2.g.ss01 + + g.ss01 + gacute.ss01 + gbreve.ss01 + gcircumflex.ss01 + gcommaaccent.ss01 + gdotaccent.ss01 + + public.kern2.guillemotleft + + guillemetleft + guilsinglleft + + public.kern2.guillemotright + + guillemetright + guilsinglright + + public.kern2.h + + eiotifiedcyr.BGR + h + hcircumflex + hwe-cy + iotifieda-cy.BGR + iu-cy.BGR + k + ka-cy.BGR + kcommaaccent + l + lacute + lcaron + lcommaaccent + ldot + shhacyr + shhatailcyr + ve-cy.BGR + yatcyr.BGR + yusbigiotifiedcyr.BGR + + public.kern2.i1 + + i + i-cy + iacute + icircumflex + igrave + imacron + iogonek + itilde + uniF476 + yi-cy.alt + + public.kern2.ia-cy + + ia-cy + ia-cy.accented + ia-cy.ss01 + uniF4D9 + uniF529 + uniF52B + yaecyr + + public.kern2.j + + enhookleftcyr + j + jcircumflex + jdotless + + public.kern2.l.ss01 + + l.ss01 + lacute.ss01 + lcaron.ss01 + lcommaaccent.ss01 + ldot.ss01 + + public.kern2.m + + eiotifiedcyr + em-cy + emSoft-cy + emsharptailcyr + en-cy + eng + engecyr + enhookcyr + enmiddlehookcyr + ensharptailcyr + entailcyr + er-cy + er-cy.ss01 + ertickcyr + ge-cy + gehookcyr + gehookstrokecyr + gestrokecyr.BSH + getailcyr + gheupturn-cy + gjecyr + idieresiscyr + idotless + igravecyr + ii-cy + ii-cy.accented + iishort-cy + imacroncyr + iotifieda-cy + ishortsharptailcyr + iu-cy + iu-cy.accented + ka-cy + kaaleutcyr + kahookcyr + katailcyr + kaverticalstrokecyr + kgreenlandic + kjecyr + m + mu + n + nacute + ncaron + ncommaaccent + njecyr.ss01 + njekomicyr + ntilde + p + p.ss01 + pe-cy + pe-cy.BGR + pehookcyr + petailcyr + psicyr + r + racute + rcaron + rcommaaccent + rhacyr + sha-cy + shcha-cy + shwe-cy + softsign-cy + softsign-cy.BGR + softsign-cy.ss01 + te-cy.BGR + tse-cy + tswe-cy + uni1C85 + uniF499 + uniF4D5 + uniF521 + uniF52D + uniF52F + uniF533 + uniF537 + uniF870 + uniF87C + ve-cy + ve-cy.ss01 + yatIotified-cy + yeru-cy + yeru-cy.accented + yeru-cy.ss01 + ylongdieresiscyr + yusbigiotifiedcyr + yusiotifiedClosedLittle-cy + yuslittleiotifiedcyr + + public.kern2.o + + Dekomicyr + Djekomicyr + a-cy.ss01 + a.ss01 + aacute.ss01 + abreve.ss01 + acircumflex.ss01 + adieresis.ss01 + agrave.ss01 + amacron.ss01 + aogonek.ss01 + aring.ss01 + atilde.ss01 + c + cacute + ccaron + ccedilla + ccircumflex + cdotaccent + cent + crossedo-cy + d + d.ss01 + dcaron + dcaron.ss01 + dcroat + dcroat.ss01 + de-cy.BGR + dekomicyr + djekomicyr + e + e-cy + e-cy.accented + e-cy.hist + e.ss01 + eacute + eacute.ss01 + ebreve + ebreve.ss01 + ecaron + ecaron.ss01 + ecircumflex + ecircumflex.ss01 + edieresis + edieresis.ss01 + edotaccent + edotaccent.ss01 + ef-cy + egrave + egrave.ss01 + emacron + emacron.ss01 + eogonek + eogonek.ss01 + es-cy + estailcyr + estailcyr.BSH + estailcyr.CHU + eth + eturned + fitacyr + haabkhcyr + ie-cy + ie-cy.ss01 + iebrevecyr + iegravecyr + iegravecyr.SRB + io-cy + io-cy.accented + io-cy.ss01 + koppacyr + o + o-cy + o-cy.accented + oBinocular-cy + oDoubleMonocular-cy + oMonocular-cy + oacute + obarcyr + obardieresiscyr + obreve + ocircumflex + odieresis + odieresiscyr + oe.ss01 + ograve + ohungarumlaut + omacron + omegaBroad-cy + omegaroundcyr + omegatitlocyr + oslashacute + otilde + q + q.ss01 + qacyr + schwacyr + schwadieresiscyr + sjekomicyr + ukcyr + uni1C82 + uni1C83 + uni1EBD + uniF475 + uniF49D + uniF4D3 + uniF511 + uniF513 + uniF515 + uniF519 + uniF51B + uniF51D + uniF51F + uniF527 + uniF834 + uniF83A + uniF876 + yuReversed-cy + + public.kern2.percent + + percent + perthousand + + public.kern2.period + + ellipsis + period + + public.kern2.quotedbl + + quotedbl + quotesingle + + public.kern2.quoteleft + + quotedblleft + quoteleft + + public.kern2.quoteright + + apostrophemod + minute + quotedblright + quoteright + second + + public.kern2.s + + dzwe-cy + s + sacute + scaron + scedilla + scircumflex + scommaaccent + + public.kern2.t + + t + t.ss01 + tbar.ss01 + tcaron + tcaron.ss01 + tcedilla + tcedilla.ss01 + tcommaaccent + tcommaaccent.ss01 + + public.kern2.tecyr + + tche-cy + te-cy.ss01 + tetailcyr + tetsecyr + tewithmiddlehook-cy + tjekomicyr + tsse-cy + twe-cy + + public.kern2.u + + igravecyr.SRB + ii-cy.BGR + iishort-cy.BGR + iota-cy + pe-cy.SRB + sha-cy.BGR + shcha-cy.BGR + te-cy.SRB + tse-cy.BGR + u + uacute + ubreve + ucircumflex + udieresis + ugrave + uhungarumlaut + umacron + uogonek + uring + utilde + + public.kern2.v1 + + izhitsacyr + izhitsagravedblcyr + v + + public.kern2.w + + omegacyr + otcyr + w + wacute + wcircumflex + wdieresis + wecyr + wgrave + + public.kern2.x + + ha-cy + hahookcyr + uniF879 + x + + public.kern2.y + + u-cy + u-cy.accented + uacutedblcyr + udieresiscyr + umacroncyr + uniF43B + uniF4CD + ustraightcyr + ustraightstrokecyr + y + yacute + ycircumflex + ydieresis + + public.kern2.z + + dzelo-cy + z + zacute + zcaron + zdotaccent + zemlya-cy + + public.kern2.ze-cy1 + + dzeabkhcyr + ksicyr + uniF517 + ze-cy + ze-cy.BGR + zedieresiscyr + zetailcyr + zetailcyr.BSH + zhwe-cy + + public.kern2.zero + + uni1C80 + zero + zero.tf + + public.kern2.zhe-cy1 + + xatailcyr + yusBlended-cy + yusbigcyr + zhe-cy + zhe-cy.BGR + zhebrevecyr + zhedieresiscyr + zhetailcyr + + ss01 + + A-cy.ss01 + A.ss01 + AE.ss01 + Aacute.ss01 + Abreve.ss01 + Acircumflex.ss01 + Adieresis.ss01 + Agrave.ss01 + Amacron.ss01 + Aogonek.ss01 + Aring.ss01 + Atilde.ss01 + Em-cy.ss01 + Eng.ss01 + G.ss01 + Gacute.ss01 + Gbreve.ss01 + Gcircumflex.ss01 + Gcommaaccent.ss01 + Gdotaccent.ss01 + Ha-cy.ss01 + Ia-cy.ss01 + J.ss01 + Jcircumflex.ss01 + K.ss01 + Ka-cy.ss01 + Kcommaaccent.ss01 + M.ss01 + N.ss01 + Nacute.ss01 + Ncaron.ss01 + Ncommaaccent.ss01 + Ntilde.ss01 + Q.ss01 + U-cy.ss01 + Ushort-cy.ss01 + V.ss01 + W.ss01 + Wacute.ss01 + Wcircumflex.ss01 + Wdieresis.ss01 + Wgrave.ss01 + X.ss01 + Y.ss01 + Yacute.ss01 + Ycircumflex.ss01 + Ydieresis.ss01 + Z.ss01 + Zacute.ss01 + Zcaron.ss01 + Zdotaccent.ss01 + Zhe-cy.ss01 + a-cy.ss01 + a.ss01 + aacute.ss01 + abreve.ss01 + acircumflex.ss01 + adieresis.ss01 + ae.ss01 + agrave.ss01 + amacron.ss01 + aogonek.ss01 + aring.ss01 + arrowdown.ss01 + arrowdown.ss01.case + arrowleft.ss01 + arrowleft.ss01.case + arrowright.ss01 + arrowright.ss01.case + arrowup.ss01 + arrowup.ss01.case + atilde.ss01 + b.ss01 + d.ss01 + dcaron.ss01 + dcroat.ss01 + de-cy.ss01 + e.ss01 + eacute.ss01 + ebreve.ss01 + ecaron.ss01 + ecircumflex.ss01 + edieresis.ss01 + edotaccent.ss01 + egrave.ss01 + el-cy.ss01 + emacron.ss01 + eogonek.ss01 + er-cy.ss01 + f.ss01 + f_f.ss01 + f_f_i.ss01 + f_f_l.ss01 + fi.ss01 + fl.ss01 + g.ss01 + gacute.ss01 + gbreve.ss01 + gcircumflex.ss01 + gcommaaccent.ss01 + gdotaccent.ss01 + germandbls.ss01 + hardsign-cy.ss01 + ia-cy.ss01 + ie-cy.ss01 + io-cy.ss01 + l.ss01 + lacute.ss01 + lcaron.ss01 + lcommaaccent.ss01 + ldot.ss01 + ljecyr.ss01 + lslash.ss01 + njecyr.ss01 + numero.ss01 + oe.ss01 + p.ss01 + q.ss01 + softsign-cy.ss01 + t.ss01 + tbar.ss01 + tcaron.ss01 + tcedilla.ss01 + tcommaaccent.ss01 + te-cy.ss01 + ve-cy.ss01 + yen.ss01 + yeru-cy.ss01 + + ss01_def + + A-cy + A + AE + Aacute + Abreve + Acircumflex + Adieresis + Agrave + Amacron + Aogonek + Aring + Atilde + Em-cy + Eng + G + Gacute + Gbreve + Gcircumflex + Gcommaaccent + Gdotaccent + Ha-cy + Ia-cy + J + Jcircumflex + K + Ka-cy + Kcommaaccent + M + N + Nacute + Ncaron + Ncommaaccent + Ntilde + Q + U-cy + Ushort-cy + V + W + Wacute + Wcircumflex + Wdieresis + Wgrave + X + Y + Yacute + Ycircumflex + Ydieresis + Z + Zacute + Zcaron + Zdotaccent + Zhe-cy + a-cy + a + aacute + abreve + acircumflex + adieresis + ae + agrave + amacron + aogonek + aring + arrowdown + arrowdown.case + arrowleft + arrowleft.case + arrowright + arrowright.case + arrowup + arrowup.case + atilde + b + d + dcaron + dcroat + de-cy + e + eacute + ebreve + ecaron + ecircumflex + edieresis + edotaccent + egrave + el-cy + emacron + eogonek + er-cy + f + f_f + f_f_i + f_f_l + fi + fl + g + gacute + gbreve + gcircumflex + gcommaaccent + gdotaccent + germandbls + hardsign-cy + ia-cy + ie-cy + io-cy + l + lacute + lcaron + lcommaaccent + ldot + ljecyr + lslash + njecyr + numero + oe + p + q + softsign-cy + t + tbar + tcaron + tcedilla + tcommaaccent + te-cy + ve-cy + yen + yeru-cy + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/kerning.plist b/sources/FixelDisplay-SemiBold.ufo/kerning.plist new file mode 100644 index 00000000..6510e288 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/kerning.plist @@ -0,0 +1,2701 @@ + + + + + Zhe-cy + + public.kern2.G + -28 + + space + + public.kern2.Y + -90 + + uni1C82 + + public.kern2.y + -62 + + public.kern1.A.ss012 + + public.kern2.A.ss01 + 8 + public.kern2.A.ss012 + 4 + public.kern2.B + -6 + public.kern2.G + -24 + public.kern2.T + -52 + public.kern2.U + -20 + public.kern2.Ucyr.ss01 + -48 + public.kern2.V + -42 + public.kern2.W + -32 + public.kern2.Y + -73 + public.kern2.a + -14 + public.kern2.comma + 4 + public.kern2.decyr.ss01 + 4 + public.kern2.emdash + -14 + public.kern2.l.ss01 + -8 + public.kern2.m + -4 + public.kern2.o + -20 + public.kern2.quotedbl + -52 + public.kern2.quoteright + -38 + public.kern2.t + -16 + public.kern2.tecyr + -38 + public.kern2.u + -16 + public.kern2.w + -26 + public.kern2.x + 6 + public.kern2.y + -26 + + public.kern1.A2 + + public.kern2.A2 + 16 + public.kern2.G + -24 + public.kern2.J + 18 + public.kern2.Oslash.alt + 8 + public.kern2.S + 6 + public.kern2.T + -52 + public.kern2.U + -14 + public.kern2.Ucyr.ss01 + -32 + public.kern2.V + -37 + public.kern2.W + -34 + public.kern2.Y + -70 + public.kern2.Z + 12 + public.kern2.a + -3 + public.kern2.comma + 8 + public.kern2.decyr.ss01 + 10 + public.kern2.emdash + -6 + public.kern2.g + 11 + public.kern2.j + -8 + public.kern2.o + -10 + public.kern2.period + 34 + public.kern2.quotedbl + -50 + public.kern2.quoteright + -50 + public.kern2.t + -14 + public.kern2.tecyr + -30 + public.kern2.u + -7 + public.kern2.w + -20 + public.kern2.x + 4 + public.kern2.y + -36 + public.kern2.z + 10 + + public.kern1.C1 + + public.kern2.A.ss01 + 10 + public.kern2.A2 + -4 + public.kern2.B + -4 + public.kern2.G + -14 + public.kern2.J + 8 + public.kern2.Oslash.alt + -5 + public.kern2.S + 10 + public.kern2.T + 6 + public.kern2.U + -4 + public.kern2.Ucyr.ss01 + -5 + public.kern2.V + 6 + public.kern2.Y + -20 + public.kern2.Z + 4 + public.kern2.comma + -6 + public.kern2.emdash + -20 + public.kern2.f + -5 + public.kern2.g + -12 + public.kern2.g.ss01 + -8 + public.kern2.j + 12 + public.kern2.o + -14 + public.kern2.period + -12 + public.kern2.quoteright + -8 + public.kern2.s + -4 + public.kern2.t + -4 + public.kern2.tecyr + -5 + public.kern2.u + -6 + public.kern2.w + -8 + public.kern2.x + -11 + public.kern2.y + -8 + + public.kern1.Decyr + + public.kern2.A.ss012 + 14 + public.kern2.A2 + 4 + public.kern2.G + -10 + public.kern2.T + -14 + public.kern2.Ucyr.ss01 + -30 + public.kern2.a + -6 + public.kern2.comma + 44 + public.kern2.decyr.ss01 + 17 + public.kern2.emdash + -14 + public.kern2.o + -10 + public.kern2.period + 24 + public.kern2.quoteright + -24 + public.kern2.tecyr + -24 + public.kern2.y + -8 + + public.kern1.E1 + + public.kern2.A.ss012 + 6 + public.kern2.G + -7 + public.kern2.J + 10 + public.kern2.a + -4 + public.kern2.f + -8 + public.kern2.g.ss01 + -4 + public.kern2.i1 + 4 + public.kern2.o + -10 + public.kern2.period + 12 + public.kern2.quoteright + -4 + public.kern2.t + -4 + public.kern2.w + -11 + public.kern2.y + -14 + + public.kern1.G.ss01 + + public.kern2.A.ss01 + 10 + public.kern2.G + -12 + public.kern2.T + -14 + public.kern2.U + -12 + public.kern2.V + -32 + public.kern2.W + -22 + public.kern2.Y + -32 + public.kern2.Z + -4 + public.kern2.l.ss01 + -4 + public.kern2.o + -4 + public.kern2.quotedbl + -50 + public.kern2.quoteright + -28 + public.kern2.t + -6 + public.kern2.w + -26 + public.kern2.y + -24 + public.kern2.z + 4 + + public.kern1.G1 + + public.kern2.G + 6 + public.kern2.J + 8 + public.kern2.T + -10 + public.kern2.V + -24 + public.kern2.W + -14 + public.kern2.Y + -32 + public.kern2.comma + 6 + public.kern2.emdash + 12 + public.kern2.period + 10 + public.kern2.quotedbl + -8 + public.kern2.quoteright + -4 + public.kern2.w + -4 + public.kern2.y + -8 + public.kern2.z + 4 + + public.kern1.Ge-cy + + public.kern2.A.ss012 + -46 + public.kern2.A2 + -46 + public.kern2.G + -14 + public.kern2.Gecyr + 14 + public.kern2.T + 40 + public.kern2.Ucyr.ss01 + 18 + public.kern2.a + -76 + public.kern2.comma + -73 + public.kern2.decyr.ss01 + -16 + public.kern2.emdash + -68 + public.kern2.guillemotright + -12 + public.kern2.i1 + 44 + public.kern2.m + -48 + public.kern2.o + -74 + public.kern2.period + -102 + public.kern2.quoteright + 6 + public.kern2.x + -30 + public.kern2.y + -30 + + public.kern1.H + + public.kern2.Gecyr + 1 + public.kern2.comma + -12 + public.kern2.i1 + 8 + public.kern2.j + 12 + public.kern2.quoteright + -12 + public.kern2.s + -4 + public.kern2.y + -4 + + public.kern1.Hardcyr + + public.kern2.A.ss012 + 13 + public.kern2.Oslash.alt + -17 + public.kern2.T + -102 + public.kern2.Ucyr.ss01 + -66 + public.kern2.comma + -12 + public.kern2.emdash + 8 + public.kern2.period + -6 + public.kern2.quotedbl + -120 + public.kern2.quoteright + -48 + public.kern2.tecyr + -26 + public.kern2.x + -24 + public.kern2.y + -30 + + public.kern1.J1 + + public.kern2.A.ss012 + 6 + public.kern2.A2 + -10 + public.kern2.J + 4 + public.kern2.S + -10 + public.kern2.T + -1 + public.kern2.W + 4 + public.kern2.Z + -6 + public.kern2.comma + -30 + public.kern2.i1 + 4 + public.kern2.j + 4 + public.kern2.period + -18 + public.kern2.s + -4 + public.kern2.y + -4 + + public.kern1.K + + public.kern2.A.ss01 + 16 + public.kern2.A2 + 8 + public.kern2.G + -48 + public.kern2.J + 12 + public.kern2.S + -4 + public.kern2.U + -2 + public.kern2.a + -10 + public.kern2.comma + 4 + public.kern2.emdash + -56 + public.kern2.f + -15 + public.kern2.g + -12 + public.kern2.i1 + 16 + public.kern2.j + -6 + public.kern2.l.ss01 + -4 + public.kern2.o + -40 + public.kern2.period + 6 + public.kern2.quoteright + -34 + public.kern2.t + -34 + public.kern2.tecyr + -56 + public.kern2.u + -30 + public.kern2.w + -38 + public.kern2.y + -40 + + public.kern1.L + + public.kern2.A.ss01 + 14 + public.kern2.A2 + 16 + public.kern2.G + -36 + public.kern2.J + 8 + public.kern2.T + -94 + public.kern2.U + -32 + public.kern2.V + -100 + public.kern2.W + -56 + public.kern2.Y + -110 + public.kern2.Z + 4 + public.kern2.a + -10 + public.kern2.emdash + -56 + public.kern2.f + -8 + public.kern2.guillemotleft + -32 + public.kern2.guillemotright + 4 + public.kern2.j + -2 + public.kern2.o + -28 + public.kern2.period + 8 + public.kern2.quotedbl + -90 + public.kern2.quoteright + -78 + public.kern2.t + -24 + public.kern2.u + -10 + public.kern2.w + -56 + public.kern2.x + -4 + public.kern2.y + -86 + public.kern2.z + 10 + + public.kern1.O + + Zhe-cy + -28 + public.kern2.A.ss01 + -3 + public.kern2.A.ss012 + -3 + public.kern2.A2 + -24 + public.kern2.J + -32 + public.kern2.Oslash.alt + -38 + public.kern2.S + -8 + public.kern2.T + -36 + public.kern2.Ucyr.ss01 + -34 + public.kern2.V + -37 + public.kern2.W + -14 + public.kern2.Y + -52 + public.kern2.Z + -38 + public.kern2.a + -10 + public.kern2.comma + -44 + public.kern2.decyr.ss01 + -16 + public.kern2.emdash + 12 + public.kern2.j + -6 + public.kern2.period + -42 + public.kern2.quotedbl + -20 + public.kern2.quoteright + -6 + public.kern2.s + -4 + public.kern2.tecyr + 4 + public.kern2.w + -8 + public.kern2.x + -14 + public.kern2.y + -4 + public.kern2.z + -10 + + public.kern1.Oslash.alt + + public.kern2.A.ss01 + 18 + public.kern2.A.ss012 + 6 + public.kern2.A2 + 4 + public.kern2.G + -38 + public.kern2.J + 19 + public.kern2.S + -10 + public.kern2.Ucyr.ss01 + 6 + public.kern2.W + 6 + public.kern2.a + -10 + public.kern2.comma + 10 + public.kern2.decyr.ss01 + 4 + public.kern2.emdash + -30 + public.kern2.f + -3 + public.kern2.g + -3 + public.kern2.i1 + 16 + public.kern2.j + -6 + public.kern2.o + -30 + public.kern2.period + 6 + public.kern2.quoteright + -48 + public.kern2.s + -3 + public.kern2.t + -14 + public.kern2.tecyr + -32 + public.kern2.u + -10 + public.kern2.w + -20 + public.kern2.x + 4 + public.kern2.y + -24 + + public.kern1.P + + public.kern2.A.ss01 + -40 + public.kern2.A.ss012 + -40 + public.kern2.A2 + -57 + public.kern2.B + -12 + public.kern2.J + -64 + public.kern2.Oslash.alt + -38 + public.kern2.T + -14 + public.kern2.Ucyr.ss01 + -24 + public.kern2.V + -11 + public.kern2.W + -3 + public.kern2.Y + -18 + public.kern2.Z + -32 + public.kern2.a + -20 + public.kern2.comma + -106 + public.kern2.decyr.ss01 + -34 + public.kern2.emdash + -15 + public.kern2.fi.ss01 + 4 + public.kern2.g + -10 + public.kern2.g.ss01 + -16 + public.kern2.j + -22 + public.kern2.o + -26 + public.kern2.period + -138 + public.kern2.quotedbl + -12 + public.kern2.s + -16 + public.kern2.t + 8 + public.kern2.tecyr + 6 + public.kern2.x + -3 + public.kern2.z + -6 + + public.kern1.R + + public.kern2.A.ss01 + 6 + public.kern2.G + -24 + public.kern2.J + 6 + public.kern2.S + -8 + public.kern2.T + -24 + public.kern2.U + -16 + public.kern2.V + -21 + public.kern2.W + -7 + public.kern2.Y + -32 + public.kern2.a + -3 + public.kern2.emdash + -18 + public.kern2.f + -4 + public.kern2.j + -10 + public.kern2.m + -4 + public.kern2.o + -28 + public.kern2.period + 4 + public.kern2.quotedbl + -24 + public.kern2.quoteright + -4 + public.kern2.s + -7 + public.kern2.t + -7 + public.kern2.u + -20 + public.kern2.w + -11 + public.kern2.y + -15 + + public.kern1.S1 + + public.kern2.A.ss01 + 14 + public.kern2.G + -4 + public.kern2.J + 18 + public.kern2.Oslash.alt + -11 + public.kern2.T + -15 + public.kern2.V + -14 + public.kern2.W + -14 + public.kern2.Y + -30 + public.kern2.Z + -6 + public.kern2.emdash + 14 + public.kern2.f + -8 + public.kern2.g + -12 + public.kern2.i1 + 4 + public.kern2.j + -10 + public.kern2.quotedbl + -26 + public.kern2.quoteright + -22 + public.kern2.t + -7 + public.kern2.w + -12 + public.kern2.x + -11 + public.kern2.y + -16 + + public.kern1.T1 + + public.kern2.A.ss01 + -42 + public.kern2.A.ss012 + -45 + public.kern2.A2 + -52 + public.kern2.G + -36 + public.kern2.J + -66 + public.kern2.S + -6 + public.kern2.T + 32 + public.kern2.V + 12 + public.kern2.W + 16 + public.kern2.Y + 6 + public.kern2.a + -60 + public.kern2.comma + -62 + public.kern2.decyr.ss01 + -72 + public.kern2.emdash + -78 + public.kern2.f + -10 + public.kern2.g + -70 + public.kern2.g.ss01 + -28 + public.kern2.guillemotleft + -70 + public.kern2.guillemotright + -66 + public.kern2.i1 + 4 + public.kern2.j + -20 + public.kern2.m + -44 + public.kern2.o + -80 + public.kern2.period + -86 + public.kern2.quotedbl + 24 + public.kern2.quoteright + -18 + public.kern2.s + -58 + public.kern2.tecyr + -44 + public.kern2.u + -41 + public.kern2.w + -44 + public.kern2.x + -40 + public.kern2.y + -40 + public.kern2.z + -38 + + public.kern1.U1 + + public.kern2.A.ss01 + -6 + public.kern2.A.ss012 + -2 + public.kern2.A2 + -14 + public.kern2.J + -16 + public.kern2.Z + -16 + public.kern2.comma + -30 + public.kern2.i1 + 4 + public.kern2.j + -6 + public.kern2.period + -18 + public.kern2.quoteright + -28 + public.kern2.z + -10 + + public.kern1.Ucyr1 + + public.kern2.A.ss012 + -36 + public.kern2.A2 + -40 + public.kern2.G + -34 + public.kern2.T + 10 + public.kern2.a + -50 + public.kern2.comma + -82 + public.kern2.decyr.ss01 + -50 + public.kern2.emdash + -54 + public.kern2.guillemotright + -60 + public.kern2.i1 + 36 + public.kern2.m + -52 + public.kern2.o + -66 + public.kern2.period + -98 + public.kern2.tecyr + -16 + public.kern2.x + -20 + public.kern2.y + -30 + + public.kern1.V + + public.kern2.A.ss01 + -48 + public.kern2.A.ss012 + -36 + public.kern2.A2 + -41 + public.kern2.G + -37 + public.kern2.J + -74 + public.kern2.Oslash.alt + -6 + public.kern2.S + -22 + public.kern2.T + 12 + public.kern2.W + 8 + public.kern2.Z + -22 + public.kern2.a + -50 + public.kern2.comma + -64 + public.kern2.emdash + -48 + public.kern2.f + -3 + public.kern2.g + -36 + public.kern2.g.ss01 + -48 + public.kern2.guillemotleft + -46 + public.kern2.guillemotright + -30 + public.kern2.i1 + 19 + public.kern2.j + -16 + public.kern2.m + -50 + public.kern2.o + -59 + public.kern2.period + -98 + public.kern2.quotedbl + 14 + public.kern2.quoteright + -10 + public.kern2.s + -40 + public.kern2.t + -10 + public.kern2.u + -50 + public.kern2.w + -14 + public.kern2.x + -20 + public.kern2.y + -20 + public.kern2.z + -20 + + public.kern1.W.ss011 + + public.kern2.A.ss01 + -28 + public.kern2.A.ss012 + -22 + public.kern2.A2 + -60 + public.kern2.G + -8 + public.kern2.J + -38 + public.kern2.S + -4 + public.kern2.T + 16 + public.kern2.V + 10 + public.kern2.W + 8 + public.kern2.Y + 8 + public.kern2.Z + -9 + public.kern2.a + -32 + public.kern2.comma + -72 + public.kern2.emdash + -24 + public.kern2.g + -17 + public.kern2.g.ss01 + -23 + public.kern2.guillemotright + -11 + public.kern2.i1 + 23 + public.kern2.m + -14 + public.kern2.o + -36 + public.kern2.period + -84 + public.kern2.quotedbl + 14 + public.kern2.s + -19 + public.kern2.u + -18 + public.kern2.w + -18 + public.kern2.y + -8 + public.kern2.z + -14 + + public.kern1.W1 + + public.kern2.A.ss01 + -40 + public.kern2.A.ss012 + -22 + public.kern2.A2 + -34 + public.kern2.G + -14 + public.kern2.J + -56 + public.kern2.S + -7 + public.kern2.T + 12 + public.kern2.V + 4 + public.kern2.Y + 4 + public.kern2.Z + -10 + public.kern2.a + -44 + public.kern2.comma + -40 + public.kern2.emdash + -20 + public.kern2.g + -26 + public.kern2.guillemotleft + -32 + public.kern2.guillemotright + -28 + public.kern2.i1 + 2 + public.kern2.j + -12 + public.kern2.m + -26 + public.kern2.o + -43 + public.kern2.period + -52 + public.kern2.quotedbl + 8 + public.kern2.quoteright + -16 + public.kern2.s + -20 + public.kern2.u + -24 + public.kern2.w + -7 + public.kern2.x + -6 + public.kern2.y + -10 + public.kern2.z + -24 + + public.kern1.Y.ss011 + + public.kern2.A.ss01 + -54 + public.kern2.A.ss012 + -76 + public.kern2.G + -42 + public.kern2.S + -18 + public.kern2.W + 6 + public.kern2.Y + 12 + public.kern2.Z + -26 + public.kern2.a + -50 + public.kern2.comma + -112 + public.kern2.emdash + -78 + public.kern2.g.ss01 + -44 + public.kern2.i1 + 30 + public.kern2.m + -70 + public.kern2.o + -120 + public.kern2.period + -114 + public.kern2.quoteright + -20 + public.kern2.s + -66 + public.kern2.t + -12 + public.kern2.u + -60 + public.kern2.w + -40 + public.kern2.x + -16 + public.kern2.y + -12 + public.kern2.z + -16 + + public.kern1.Y1 + + public.kern2.A.ss012 + -62 + public.kern2.A2 + -70 + public.kern2.B + -4 + public.kern2.G + -52 + public.kern2.J + -76 + public.kern2.S + -34 + public.kern2.T + 10 + public.kern2.V + 10 + public.kern2.W + 4 + public.kern2.Y + 12 + public.kern2.a + -74 + public.kern2.comma + -88 + public.kern2.emdash + -84 + public.kern2.f + -30 + public.kern2.g + -68 + public.kern2.guillemotleft + -88 + public.kern2.guillemotright + -64 + public.kern2.i1 + 12 + public.kern2.j + -18 + public.kern2.m + -80 + public.kern2.o + -110 + public.kern2.period + -124 + public.kern2.quotedbl + 18 + public.kern2.quoteright + -28 + public.kern2.s + -78 + public.kern2.t + -14 + public.kern2.u + -70 + public.kern2.w + -42 + public.kern2.x + -44 + public.kern2.y + -44 + public.kern2.z + -50 + + public.kern1.Yacyr + + public.kern2.A.ss012 + 4 + public.kern2.i1 + 4 + + public.kern1.Z1 + + public.kern2.A.ss01 + 28 + public.kern2.A.ss012 + 24 + public.kern2.A2 + 4 + public.kern2.B + 4 + public.kern2.G + -32 + public.kern2.J + 12 + public.kern2.Oslash.alt + -4 + public.kern2.S + 8 + public.kern2.T + 6 + public.kern2.V + 4 + public.kern2.Z + 8 + public.kern2.a + -2 + public.kern2.comma + 30 + public.kern2.emdash + -26 + public.kern2.f + -2 + public.kern2.i1 + 22 + public.kern2.j + 8 + public.kern2.o + -22 + public.kern2.period + 18 + public.kern2.quotedbl + 4 + public.kern2.quoteright + -36 + public.kern2.s + -2 + public.kern2.t + -10 + public.kern2.u + -12 + public.kern2.w + -20 + public.kern2.y + -10 + public.kern2.z + 12 + + public.kern1.a1 + + public.kern2.A.ss012 + 13 + public.kern2.G + -3 + public.kern2.J + 4 + public.kern2.S + -12 + public.kern2.T + -70 + public.kern2.U + -4 + public.kern2.Ucyr.ss01 + -2 + public.kern2.V + -62 + public.kern2.W + -40 + public.kern2.Y + -88 + public.kern2.comma + -6 + public.kern2.f + -2 + public.kern2.j + -12 + public.kern2.quotedbl + -35 + public.kern2.quoteright + -44 + public.kern2.t + -7 + public.kern2.tecyr + -2 + public.kern2.u + -10 + public.kern2.w + -21 + public.kern2.y + -20 + public.kern2.z + 6 + + public.kern1.c1 + + public.kern2.A.ss012 + 8 + public.kern2.A2 + 16 + public.kern2.G + 6 + public.kern2.J + 8 + public.kern2.Oslash.alt + -4 + public.kern2.T + -50 + public.kern2.Ucyr.ss01 + -42 + public.kern2.V + -34 + public.kern2.W + -20 + public.kern2.Y + -50 + public.kern2.Z + 4 + public.kern2.a + 4 + public.kern2.comma + -6 + public.kern2.emdash + -12 + public.kern2.g + 6 + public.kern2.o + -4 + public.kern2.period + -8 + public.kern2.quotedbl + -22 + public.kern2.quoteright + -12 + public.kern2.t + 4 + + public.kern1.comma1 + + public.kern2.A.ss01 + 4 + public.kern2.A2 + 4 + public.kern2.G + -50 + public.kern2.J + 24 + public.kern2.T + -74 + public.kern2.U + -18 + public.kern2.V + -76 + public.kern2.W + -34 + public.kern2.Y + -104 + public.kern2.Z + 12 + public.kern2.a + -12 + public.kern2.f + -8 + public.kern2.five + -12 + public.kern2.g.ss01 + -2 + public.kern2.h + -12 + public.kern2.i1 + -12 + public.kern2.j + 4 + public.kern2.m + -12 + public.kern2.o + -24 + public.kern2.t + -30 + public.kern2.u + -18 + public.kern2.w + -22 + public.kern2.x + -12 + public.kern2.y + -58 + public.kern2.z + -2 + public.kern2.zero + -18 + + public.kern1.dcaron + + public.kern2.B + 62 + public.kern2.G + 12 + public.kern2.J + 4 + public.kern2.Oslash.alt + 92 + public.kern2.S + 52 + public.kern2.T + 116 + public.kern2.U + 66 + public.kern2.V + 104 + public.kern2.W + 108 + public.kern2.Y + 110 + public.kern2.Z + 76 + public.kern2.a + 12 + public.kern2.f + 18 + public.kern2.fi.ss01 + 58 + public.kern2.g + 8 + public.kern2.g.ss01 + 8 + public.kern2.h + 72 + public.kern2.i1 + 72 + public.kern2.j + 62 + public.kern2.l.ss01 + 54 + public.kern2.m + 13 + public.kern2.o + 8 + public.kern2.s + 15 + public.kern2.t + 56 + public.kern2.u + 12 + public.kern2.w + 30 + public.kern2.x + 24 + public.kern2.y + 24 + public.kern2.z + 64 + + public.kern1.decyr1 + + public.kern2.A.ss012 + 12 + public.kern2.A2 + 14 + public.kern2.G + -8 + public.kern2.Oslash.alt + 4 + public.kern2.T + -68 + public.kern2.Ucyr.ss01 + -32 + public.kern2.comma + 24 + public.kern2.decyr.ss01 + 10 + public.kern2.emdash + -13 + public.kern2.o + -16 + public.kern2.period + 14 + public.kern2.quoteright + -24 + public.kern2.tecyr + -24 + public.kern2.x + 4 + public.kern2.y + -4 + + public.kern1.e.ss011 + + public.kern2.Oslash.alt + -10 + public.kern2.T + -32 + public.kern2.V + -50 + public.kern2.W + -12 + public.kern2.Y + -40 + public.kern2.comma + -18 + public.kern2.emdash + -6 + public.kern2.o + -4 + public.kern2.quotedbl + -32 + public.kern2.w + -8 + public.kern2.y + -8 + + public.kern1.e1 + + public.kern2.A.ss012 + 13 + public.kern2.A2 + -3 + public.kern2.G + 4 + public.kern2.Oslash.alt + -20 + public.kern2.T + -72 + public.kern2.Ucyr.ss01 + -62 + public.kern2.V + -60 + public.kern2.W + -42 + public.kern2.Y + -102 + public.kern2.Z + -10 + public.kern2.comma + -4 + public.kern2.j + -16 + public.kern2.period + -16 + public.kern2.quotedbl + -26 + public.kern2.quoteright + -24 + public.kern2.w + -14 + public.kern2.x + -20 + public.kern2.y + -24 + public.kern2.z + -6 + + public.kern1.emdash1 + + public.kern2.A.ss01 + 10 + public.kern2.A.ss012 + 4 + public.kern2.A2 + -6 + public.kern2.G + 12 + public.kern2.J + -30 + public.kern2.Oslash.alt + -24 + public.kern2.S + -22 + public.kern2.T + -78 + public.kern2.Ucyr.ss01 + -50 + public.kern2.V + -48 + public.kern2.W + -20 + public.kern2.Y + -84 + public.kern2.Z + -10 + public.kern2.decyr.ss01 + -22 + public.kern2.f + -12 + public.kern2.five + -20 + public.kern2.four + 12 + public.kern2.g.ss01 + 6 + public.kern2.j + -12 + public.kern2.tecyr + -40 + public.kern2.x + -28 + public.kern2.y + -26 + public.kern2.z + -18 + + public.kern1.f1 + + public.kern2.A.ss012 + -10 + public.kern2.A2 + -24 + public.kern2.J + -52 + public.kern2.S + 10 + public.kern2.T + 14 + public.kern2.V + 6 + public.kern2.Y + 10 + public.kern2.a + -9 + public.kern2.comma + -44 + public.kern2.emdash + -24 + public.kern2.f + 6 + public.kern2.g + -6 + public.kern2.h + 4 + public.kern2.i1 + 9 + public.kern2.o + -22 + public.kern2.period + -62 + public.kern2.quotedbl + 28 + public.kern2.quoteright + 24 + public.kern2.s + -12 + public.kern2.t + 17 + public.kern2.w + 4 + public.kern2.x + 4 + public.kern2.y + 16 + + public.kern1.five1 + + public.kern2.comma + -30 + public.kern2.five + -12 + public.kern2.i1 + 8 + public.kern2.period + -13 + + public.kern1.four1 + + public.kern2.emdash + -12 + public.kern2.five + 10 + public.kern2.four + 18 + public.kern2.period + 8 + public.kern2.quotedbl + -20 + + public.kern1.g.ss011 + + public.kern2.A.ss01 + 8 + public.kern2.V + -12 + public.kern2.W + 8 + public.kern2.Y + -12 + public.kern2.comma + 18 + public.kern2.g.ss01 + 8 + public.kern2.h + 4 + public.kern2.i1 + 4 + public.kern2.j + 24 + public.kern2.l.ss01 + 8 + public.kern2.m + 8 + public.kern2.o + 4 + public.kern2.quotedbl + 12 + public.kern2.quoteright + 22 + public.kern2.s + 4 + public.kern2.t + 16 + public.kern2.u + 4 + public.kern2.w + 4 + public.kern2.x + 12 + public.kern2.y + 8 + public.kern2.z + 8 + + public.kern1.g1 + + public.kern2.A2 + 11 + public.kern2.T + -48 + public.kern2.V + -20 + public.kern2.W + -6 + public.kern2.Y + -30 + public.kern2.a + -4 + public.kern2.comma + 14 + public.kern2.f + 6 + public.kern2.i1 + 4 + public.kern2.j + 33 + public.kern2.m + -4 + public.kern2.o + -2 + public.kern2.quotedbl + -6 + public.kern2.s + -4 + public.kern2.w + -4 + public.kern2.y + 2 + + public.kern1.gecyr + + public.kern2.A2 + -18 + public.kern2.G + 4 + public.kern2.Oslash.alt + -8 + public.kern2.T + -32 + public.kern2.Ucyr.ss01 + -28 + public.kern2.a + -8 + public.kern2.comma + -60 + public.kern2.decyr.ss01 + -30 + public.kern2.emdash + -50 + public.kern2.i1 + 16 + public.kern2.o + -18 + public.kern2.period + -92 + public.kern2.quoteright + 18 + public.kern2.x + 6 + public.kern2.y + 12 + + public.kern1.guillemotright1 + + public.kern2.J + -28 + public.kern2.T + -70 + public.kern2.V + -46 + public.kern2.W + -32 + public.kern2.Y + -88 + + public.kern1.hardcyr + + public.kern2.Oslash.alt + -10 + public.kern2.T + -74 + public.kern2.Ucyr.ss01 + -52 + public.kern2.period + -6 + public.kern2.quotedbl + -91 + public.kern2.quoteright + -48 + public.kern2.tecyr + -82 + public.kern2.x + -20 + public.kern2.y + -54 + + public.kern1.i1 + + public.kern2.B + 4 + public.kern2.G + -4 + public.kern2.Gecyr + 4 + public.kern2.Oslash.alt + 16 + public.kern2.T + 4 + public.kern2.U + 4 + public.kern2.Ucyr.ss01 + 20 + public.kern2.V + 32 + public.kern2.W + 6 + public.kern2.Y + 36 + public.kern2.Z + 12 + public.kern2.h + 10 + public.kern2.i1 + 12 + public.kern2.j + -20 + public.kern2.percent + 12 + public.kern2.quotedbl + 11 + public.kern2.quoteright + -14 + + public.kern1.icyr1 + + tenmillionscomb-cy + 11 + public.kern2.A.ss012 + 4 + public.kern2.J + 4 + public.kern2.T + -44 + public.kern2.Ucyr.ss01 + -52 + public.kern2.V + -30 + public.kern2.W + -20 + public.kern2.Y + -80 + public.kern2.j + 13 + public.kern2.quoteright + -12 + + public.kern1.j1 + + public.kern2.T + -8 + public.kern2.i1 + 4 + public.kern2.j + 8 + public.kern2.quoteright + -12 + public.kern2.z + 4 + + public.kern1.k + + public.kern2.A.ss01 + 8 + public.kern2.A.ss012 + 14 + public.kern2.A2 + 14 + public.kern2.G + -14 + public.kern2.J + 14 + public.kern2.T + -36 + public.kern2.Ucyr.ss01 + -20 + public.kern2.V + -12 + public.kern2.W + -20 + public.kern2.Y + -32 + public.kern2.a + -10 + public.kern2.emdash + -44 + public.kern2.o + -32 + public.kern2.quoteright + -8 + public.kern2.s + -4 + public.kern2.t + 4 + public.kern2.x + 14 + public.kern2.z + 4 + + public.kern1.l + + public.kern2.i1 + 4 + public.kern2.j + 10 + public.kern2.quoteright + -12 + public.kern2.s + 2 + + public.kern1.l.ss011 + + public.kern2.A.ss01 + 8 + public.kern2.G + -4 + public.kern2.T + -28 + public.kern2.U + -4 + public.kern2.V + -44 + public.kern2.W + -40 + public.kern2.Y + -20 + public.kern2.comma + 12 + public.kern2.f + -40 + public.kern2.fi.ss01 + -8 + public.kern2.g.ss01 + 4 + public.kern2.j + -12 + public.kern2.o + -4 + public.kern2.period + 12 + public.kern2.quoteright + -22 + public.kern2.t + -16 + public.kern2.w + -38 + public.kern2.y + -42 + + public.kern1.n + + public.kern2.A.ss01 + 4 + public.kern2.A.ss012 + 4 + public.kern2.G + -4 + public.kern2.J + 8 + public.kern2.T + -63 + public.kern2.Ucyr.ss01 + -62 + public.kern2.V + -60 + public.kern2.W + -40 + public.kern2.Y + -100 + public.kern2.g + 2 + public.kern2.guillemotright + 4 + public.kern2.j + -12 + public.kern2.quotedbl + -29 + public.kern2.quoteright + -16 + public.kern2.w + -11 + public.kern2.y + -22 + + public.kern1.numero + + public.kern2.i1 + 16 + + public.kern1.o1 + + public.kern2.A.ss01 + 4 + public.kern2.A.ss012 + 3 + public.kern2.A2 + -10 + public.kern2.J + -12 + public.kern2.Oslash.alt + -30 + public.kern2.S + -14 + public.kern2.T + -80 + public.kern2.Ucyr.ss01 + -70 + public.kern2.V + -59 + public.kern2.W + -43 + public.kern2.Y + -104 + public.kern2.Z + -22 + public.kern2.a + -3 + public.kern2.comma + -42 + public.kern2.emdash + 4 + public.kern2.j + -16 + public.kern2.period + -34 + public.kern2.quotedbl + -32 + public.kern2.quoteright + -28 + public.kern2.s + -10 + public.kern2.t + -2 + public.kern2.tecyr + -26 + public.kern2.w + -17 + public.kern2.x + -25 + public.kern2.y + -30 + public.kern2.z + -16 + + public.kern1.period1 + + public.kern2.A.ss01 + 12 + public.kern2.A.ss012 + 26 + public.kern2.A2 + 34 + public.kern2.G + -42 + public.kern2.J + 32 + public.kern2.Oslash.alt + 10 + public.kern2.S + 4 + public.kern2.T + -86 + public.kern2.U + -18 + public.kern2.Ucyr.ss01 + -20 + public.kern2.V + -98 + public.kern2.W + -52 + public.kern2.Y + -124 + public.kern2.Z + 14 + public.kern2.f + -12 + public.kern2.five + -6 + public.kern2.four + 4 + public.kern2.g.ss01 + 10 + public.kern2.j + -8 + public.kern2.o + -34 + public.kern2.quotedbl + -16 + public.kern2.t + -30 + public.kern2.tecyr + -64 + public.kern2.u + -22 + public.kern2.w + -34 + public.kern2.y + -75 + public.kern2.z + 4 + public.kern2.zero + -14 + + public.kern1.quotedbl1 + + public.kern2.A.ss01 + -62 + public.kern2.A.ss012 + -38 + public.kern2.A2 + -50 + public.kern2.G + -20 + public.kern2.J + -68 + public.kern2.T + 30 + public.kern2.V + 14 + public.kern2.W + 8 + public.kern2.Y + 18 + public.kern2.Z + -6 + public.kern2.a + -30 + public.kern2.decyr.ss01 + -40 + public.kern2.four + -64 + public.kern2.g + -24 + public.kern2.g.ss01 + -32 + public.kern2.i1 + 11 + public.kern2.j + -12 + public.kern2.o + -32 + public.kern2.period + -21 + public.kern2.s + -19 + public.kern2.t + 8 + public.kern2.u + -6 + public.kern2.w + 4 + public.kern2.x + -6 + public.kern2.y + 4 + public.kern2.z + -6 + public.kern2.zero + -16 + + public.kern1.quoteleft1 + + public.kern2.A.ss01 + -54 + public.kern2.A2 + -52 + public.kern2.B + 4 + public.kern2.G + -20 + public.kern2.J + -32 + public.kern2.Oslash.alt + 18 + public.kern2.T + 36 + public.kern2.V + 24 + public.kern2.W + 12 + public.kern2.Y + 28 + public.kern2.Z + -2 + public.kern2.a + -30 + public.kern2.f + 6 + public.kern2.g + -46 + public.kern2.g.ss01 + -30 + public.kern2.i1 + 26 + public.kern2.j + -6 + public.kern2.m + -20 + public.kern2.o + -52 + public.kern2.s + -26 + public.kern2.u + -20 + public.kern2.w + -18 + public.kern2.x + -26 + public.kern2.y + -10 + public.kern2.z + -26 + + public.kern1.quoteright1 + + public.kern2.A.ss01 + -68 + public.kern2.A2 + -60 + public.kern2.G + -30 + public.kern2.J + -46 + public.kern2.Oslash.alt + -2 + public.kern2.S + -22 + public.kern2.T + 20 + public.kern2.U + -12 + public.kern2.V + 12 + public.kern2.W + 12 + public.kern2.Y + 18 + public.kern2.Z + -18 + public.kern2.a + -66 + public.kern2.f + -4 + public.kern2.g + -76 + public.kern2.g.ss01 + -54 + public.kern2.h + -22 + public.kern2.i1 + -4 + public.kern2.m + -26 + public.kern2.o + -82 + public.kern2.s + -62 + public.kern2.u + -26 + public.kern2.w + -24 + public.kern2.x + -24 + public.kern2.y + -30 + public.kern2.z + -48 + + public.kern1.s1 + + public.kern2.A.ss01 + 4 + public.kern2.A2 + 6 + public.kern2.G + -4 + public.kern2.J + 4 + public.kern2.Oslash.alt + -3 + public.kern2.T + -58 + public.kern2.V + -40 + public.kern2.W + -24 + public.kern2.Y + -78 + public.kern2.Z + -6 + public.kern2.a + 4 + public.kern2.comma + -6 + public.kern2.emdash + -12 + public.kern2.f + -4 + public.kern2.guillemotright + 8 + public.kern2.o + -6 + public.kern2.period + -12 + public.kern2.quotedbl + -30 + public.kern2.quoteright + -16 + public.kern2.s + 2 + public.kern2.t + -4 + public.kern2.w + -10 + public.kern2.x + -10 + public.kern2.y + -12 + + public.kern1.t.ss011 + + public.kern2.A.ss01 + 12 + public.kern2.B + 4 + public.kern2.G + 4 + public.kern2.Y + -16 + public.kern2.Z + 4 + public.kern2.h + 4 + public.kern2.j + 8 + public.kern2.l.ss01 + 4 + public.kern2.period + 8 + public.kern2.s + 4 + public.kern2.t + 8 + public.kern2.z + 8 + + public.kern1.t1 + + public.kern2.G + -6 + public.kern2.J + 24 + public.kern2.T + -9 + public.kern2.V + -20 + public.kern2.W + -6 + public.kern2.Y + -23 + public.kern2.Z + 4 + public.kern2.a + 4 + public.kern2.emdash + -18 + public.kern2.f + 12 + public.kern2.g + 4 + public.kern2.h + 2 + public.kern2.i1 + 4 + public.kern2.j + 4 + public.kern2.o + -6 + public.kern2.period + 4 + public.kern2.quotedbl + 8 + public.kern2.quoteright + 4 + public.kern2.t + 14 + public.kern2.x + 4 + public.kern2.y + 6 + public.kern2.z + 20 + + public.kern1.u1 + + public.kern2.A.ss01 + 4 + public.kern2.T + -52 + public.kern2.V + -50 + public.kern2.W + -26 + public.kern2.Y + -80 + public.kern2.j + -6 + public.kern2.quotedbl + -6 + public.kern2.quoteright + -12 + public.kern2.z + 4 + + public.kern1.uni0435.ss011 + + public.kern2.A.ss012 + 8 + public.kern2.T + -66 + public.kern2.Ucyr.ss01 + -48 + public.kern2.V + -50 + public.kern2.W + -16 + public.kern2.Y + -68 + public.kern2.w + -6 + public.kern2.x + -6 + public.kern2.y + -10 + + public.kern1.w1 + + public.kern2.A.ss01 + -8 + public.kern2.A.ss012 + -6 + public.kern2.A2 + -20 + public.kern2.J + -42 + public.kern2.Oslash.alt + -20 + public.kern2.S + -12 + public.kern2.T + -36 + public.kern2.V + -14 + public.kern2.W + -7 + public.kern2.Y + -42 + public.kern2.Z + -30 + public.kern2.a + -17 + public.kern2.comma + -24 + public.kern2.f + 4 + public.kern2.g + -4 + public.kern2.j + -10 + public.kern2.o + -17 + public.kern2.period + -34 + public.kern2.quotedbl + 4 + public.kern2.quoteright + 4 + public.kern2.s + -10 + public.kern2.w + -4 + + public.kern1.x + + public.kern2.A.ss01 + 8 + public.kern2.A.ss012 + 8 + public.kern2.A2 + 8 + public.kern2.G + -14 + public.kern2.J + 8 + public.kern2.S + -6 + public.kern2.T + -36 + public.kern2.Ucyr.ss01 + -16 + public.kern2.V + -20 + public.kern2.W + -6 + public.kern2.Y + -44 + public.kern2.a + -4 + public.kern2.emdash + -28 + public.kern2.o + -25 + public.kern2.quotedbl + -6 + public.kern2.s + -14 + public.kern2.x + 8 + public.kern2.z + 4 + + public.kern1.y1 + + public.kern2.A.ss01 + -8 + public.kern2.A.ss012 + -10 + public.kern2.A2 + -20 + public.kern2.G + -4 + public.kern2.J + -52 + public.kern2.Oslash.alt + -30 + public.kern2.T + -36 + public.kern2.Ucyr.ss01 + -16 + public.kern2.V + -20 + public.kern2.W + -7 + public.kern2.Y + -44 + public.kern2.Z + -20 + public.kern2.a + -9 + public.kern2.comma + -40 + public.kern2.decyr.ss01 + -24 + public.kern2.emdash + -12 + public.kern2.f + 16 + public.kern2.g + -10 + public.kern2.g.ss01 + -8 + public.kern2.h + -4 + public.kern2.j + -10 + public.kern2.o + -20 + public.kern2.period + -76 + public.kern2.quotedbl + 4 + public.kern2.quoteright + 12 + public.kern2.s + -8 + public.kern2.t + 10 + public.kern2.x + 4 + public.kern2.y + 4 + public.kern2.z + -4 + + public.kern1.z1 + + public.kern2.A.ss012 + 8 + public.kern2.A2 + 14 + public.kern2.J + 12 + public.kern2.S + -12 + public.kern2.T + -34 + public.kern2.V + -20 + public.kern2.W + -24 + public.kern2.Y + -50 + public.kern2.comma + 10 + public.kern2.f + 14 + public.kern2.g + 4 + public.kern2.j + 4 + public.kern2.o + -16 + public.kern2.period + 4 + public.kern2.quotedbl + -12 + public.kern2.quoteright + -6 + public.kern2.t + 4 + public.kern2.x + 4 + public.kern2.z + 4 + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/layercontents.plist b/sources/FixelDisplay-SemiBold.ufo/layercontents.plist new file mode 100644 index 00000000..7a35a5cf --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/layercontents.plist @@ -0,0 +1,10 @@ + + + + + + public.default + glyphs + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/lib.plist b/sources/FixelDisplay-SemiBold.ufo/lib.plist new file mode 100644 index 00000000..c0069150 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/lib.plist @@ -0,0 +1,1671 @@ + + + + + com.fontlab.v2.tth + + stems + + 69 + + width + 69 + horizontal + + round + + 35 + 3 + 47 + 4 + 60 + 5 + 0 + 7 + 22 + 8 + + + 74 + + width + 74 + horizontal + + round + + 19 + 2 + 35 + 3 + 47 + 4 + 60 + 5 + 72 + 6 + 0 + 7 + 20 + 8 + + + 76 + + width + 76 + horizontal + + round + + 19 + 2 + 35 + 3 + 72 + 6 + 0 + 7 + 20 + 8 + + + 80 + + width + 80 + horizontal + + round + + 29 + 3 + 47 + 4 + 60 + 5 + 72 + 6 + 0 + 7 + 20 + 8 + + + 99 + + width + 99 + horizontal + + round + + 19 + 2 + 29 + 3 + 37 + 4 + 48 + 5 + 58 + 6 + 0 + 7 + 16 + 8 + + + 74 + + width + 74 + horizontal + + round + + 19 + 2 + 35 + 3 + 47 + 4 + 60 + 5 + 72 + 6 + 0 + 7 + 20 + 8 + + + 80 + + width + 80 + horizontal + + round + + 29 + 3 + 47 + 4 + 60 + 5 + 72 + 6 + 0 + 7 + 20 + 8 + + + 93 + + width + 93 + horizontal + + round + + 19 + 2 + 29 + 3 + 37 + 4 + 48 + 5 + 58 + 6 + 0 + 7 + 16 + 8 + + + + + com.schriftgestaltung.disablesAutomaticAlignment + + com.schriftgestaltung.fontMasterID + master01 + com.schriftgestaltung.glyphOrder + + com.schriftgestaltung.master.name + regular + com.schriftgestaltung.useNiceNames + + com.schriftgestaltung.weightValue + 400 + public.postscriptNames + + A-cy + uni0410 + A-cy.ss01 + uni0410.ss01 + Be-cy + uni0411 + Che-cy + uni0427 + De-cy + uni0414 + Dze-cy + uni0405 + E-cy + uni0404 + Ef-cy + uni0424 + El-cy + uni041B + Em-cy + uni041C + Em-cy.ss01 + uni041C.ss01 + En-cy + uni041D + Er-cy + uni0420 + Ereversed-cy + uni042D + Es-cy + uni0421 + Gacute + uni01F4 + Gacute.ss01 + uni01F4.ss01 + Gcommaaccent + uni0122 + Gcommaaccent.ss01 + uni0122.ss01 + Ge-cy + uni0413 + Germandbls + uni1E9E + Gheupturn-cy + uni0490 + Ha-cy + uni0425 + Ha-cy.ss01 + uni0425.ss01 + Hardsign-cy + uni042A + I-cy + uni0406 + Ia-cy + uni042F + Ia-cy.ss01 + uni042F.ss01 + Ie-cy + uni0415 + Ii-cy + uni0418 + Iishort-cy + uni0419 + Io-cy + uni0401 + Iu-cy + uni042E + Ka-cy + uni041A + Ka-cy.ss01 + uni041A.ss01 + Kcommaaccent + uni0136 + Kcommaaccent.ss01 + uni0136.ss01 + Lcommaaccent + uni013B + Ncommaaccent + uni0145 + Ncommaaccent.ss01 + uni0145.ss01 + O-cy + uni041E + Pe-cy + uni041F + Rcommaaccent + uni0156 + Scommaaccent + uni0218 + Sha-cy + uni0428 + Shcha-cy + uni0429 + Softsign-cy + uni042C + Tcedilla + uni0162 + Tcommaaccent + uni021A + Te-cy + uni0422 + Tse-cy + uni0426 + U-cy + uni0423 + U-cy.ss01 + uni0423.ss01 + Ushort-cy + uni040E + Ushort-cy.ss01 + uni040E.ss01 + Ve-cy + uni0412 + Yeru-cy + uni042B + Yi-cy + uni0407 + Ze-cy + uni0417 + Zhe-cy + uni0416 + Zhe-cy.ss01 + uni0416.ss01 + _perc-circule + _perccircule + a-cy + uni0430 + a-cy.ss01 + uni0430.ss01 + be-cy + uni0431 + che-cy + uni0447 + commaaccentcomb + uni0326 + commaaccentcomb.salt + uni0326.salt + de-cy + uni0434 + de-cy.ss01 + uni0434.ss01 + dze-cy + uni0455 + e-cy + uni0454 + ef-cy + uni0444 + el-cy + uni043B + el-cy.ss01 + uni043B.ss01 + em-cy + uni043C + en-cy + uni043D + er-cy + uni0440 + er-cy.ss01 + uni0440.ss01 + ereversed-cy + uni044D + es-cy + uni0441 + euro + Euro + gacute + uni01F5 + gacute.ss01 + uni01F5.ss01 + gcommaaccent + uni0123 + gcommaaccent.ss01 + uni0123.ss01 + ge-cy + uni0433 + gheupturn-cy + uni0491 + guillemetleft + guillemotleft + guillemetright + guillemotright + ha-cy + uni0445 + hardsign-cy + uni044A + hardsign-cy.ss01 + uni044A.ss01 + hryvnia + uni20B4 + i-cy + uni0456 + ia-cy + uni044F + ia-cy.ss01 + uni044F.ss01 + idotless + dotlessi + ie-cy + uni0435 + ie-cy.ss01 + uni0435.ss01 + ii-cy + uni0438 + iishort-cy + uni0439 + io-cy + uni0451 + io-cy.ss01 + uni0451.ss01 + iu-cy + uni044E + jdotless + uni0237 + je-cy + uni0458 + ka-cy + uni043A + kcommaaccent + uni0137 + lcommaaccent + uni013C + lcommaaccent.ss01 + uni013C.ss01 + ncommaaccent + uni0146 + numero + uni2116 + numero.ss01 + uni2116.ss01 + o-cy + uni043E + onesuperior + uni00B9 + pe-cy + uni043F + rcommaaccent + uni0157 + scommaaccent + uni0219 + sha-cy + uni0448 + shcha-cy + uni0449 + softsign-cy + uni044C + softsign-cy.ss01 + uni044C.ss01 + tcedilla + uni0163 + tcedilla.ss01 + uni0163.ss01 + tcommaaccent + uni021B + tcommaaccent.ss01 + uni021B.ss01 + te-cy + uni0442 + te-cy.ss01 + uni0442.ss01 + threesuperior + uni00B3 + tse-cy + uni0446 + twosuperior + uni00B2 + u-cy + uni0443 + ushort-cy + uni045E + ve-cy + uni0432 + ve-cy.ss01 + uni0432.ss01 + yeru-cy + uni044B + yeru-cy.ss01 + uni044B.ss01 + yi-cy + uni0457 + ze-cy + uni0437 + zhe-cy + uni0436 + + public.skipExportGlyphs + + Oslash.bold + oslash.bold + _perc-circule + + public.glyphOrder + + .notdef + NULL + CR + space + A + Aacute + Abreve + Acircumflex + Adieresis + Agrave + Amacron + Aogonek + Aring + Atilde + AE + B + C + Cacute + Ccaron + Ccedilla + Ccircumflex + Cdotaccent + D + Eth + Dcaron + Dcroat + E + Eacute + Ebreve + Ecaron + Ecircumflex + Edieresis + Edotaccent + Egrave + Emacron + Eogonek + F + G + Gacute + Gbreve + Gcircumflex + Gcommaaccent + Gdotaccent + H + Hbar + Hcircumflex + I + IJ + Iacute + Ibreve + Icircumflex + Idieresis + Idotaccent + Igrave + Imacron + Iogonek + Itilde + J + Jcircumflex + K + Kcommaaccent + L + Lacute + Lcaron + Lcommaaccent + Ldot + Lslash + M + N + Nacute + Ncaron + Ncommaaccent + Eng + Ntilde + O + Oacute + Obreve + Ocircumflex + Odieresis + Ograve + Ohungarumlaut + Omacron + Oslash + Otilde + OE + P + Thorn + Q + R + Racute + Rcaron + Rcommaaccent + S + Sacute + Scaron + Scedilla + Scircumflex + Scommaaccent + Germandbls + T + Tbar + Tcaron + Tcedilla + Tcommaaccent + U + Uacute + Ubreve + Ucircumflex + Udieresis + Ugrave + Uhungarumlaut + Umacron + Uogonek + Uring + Utilde + V + W + Wacute + Wcircumflex + Wdieresis + Wgrave + X + Y + Yacute + Ycircumflex + Ydieresis + Z + Zacute + Zcaron + Zdotaccent + A.ss01 + Aacute.ss01 + Abreve.ss01 + Acircumflex.ss01 + Adieresis.ss01 + Agrave.ss01 + Amacron.ss01 + Aogonek.ss01 + Aring.ss01 + Atilde.ss01 + AE.ss01 + G.ss01 + Gacute.ss01 + Gbreve.ss01 + Gcircumflex.ss01 + Gcommaaccent.ss01 + Gdotaccent.ss01 + J.ss01 + Jcircumflex.ss01 + K.ss01 + Kcommaaccent.ss01 + M.ss01 + N.ss01 + Nacute.ss01 + Ncaron.ss01 + Ncommaaccent.ss01 + Eng.ss01 + Ntilde.ss01 + Q.ss01 + V.ss01 + W.ss01 + Wacute.ss01 + Wcircumflex.ss01 + Wdieresis.ss01 + Wgrave.ss01 + X.ss01 + Y.ss01 + Yacute.ss01 + Ycircumflex.ss01 + Ydieresis.ss01 + Z.ss01 + Zacute.ss01 + Zcaron.ss01 + Zdotaccent.ss01 + a + aacute + abreve + acircumflex + adieresis + agrave + amacron + aogonek + aring + atilde + ae + b + c + cacute + ccaron + ccedilla + ccircumflex + cdotaccent + d + eth + dcaron + dcroat + e + eacute + ebreve + ecaron + ecircumflex + edieresis + edotaccent + egrave + emacron + eogonek + f + g + gacute + gbreve + gcircumflex + gcommaaccent + gdotaccent + h + hbar + hcircumflex + i + idotless + iacute + ibreve + icircumflex + idieresis + igrave + ij + imacron + iogonek + itilde + j + jdotless + jcircumflex + k + kcommaaccent + kgreenlandic + l + lacute + lcaron + lcommaaccent + ldot + lslash + m + n + nacute + napostrophe + ncaron + ncommaaccent + eng + ntilde + o + oacute + obreve + ocircumflex + odieresis + ograve + ohungarumlaut + omacron + oslash + otilde + oe + p + thorn + q + r + racute + rcaron + rcommaaccent + s + sacute + scaron + scedilla + scircumflex + scommaaccent + germandbls + t + tbar + tcaron + tcedilla + tcommaaccent + u + uacute + ubreve + ucircumflex + udieresis + ugrave + uhungarumlaut + umacron + uogonek + uring + utilde + v + w + wacute + wcircumflex + wdieresis + wgrave + x + y + yacute + ycircumflex + ydieresis + z + zacute + zcaron + zdotaccent + a.ss01 + aacute.ss01 + abreve.ss01 + acircumflex.ss01 + adieresis.ss01 + agrave.ss01 + amacron.ss01 + aogonek.ss01 + aring.ss01 + atilde.ss01 + ae.ss01 + b.ss01 + d.ss01 + dcaron.ss01 + dcroat.ss01 + e.ss01 + eacute.ss01 + ebreve.ss01 + ecaron.ss01 + ecircumflex.ss01 + edieresis.ss01 + edotaccent.ss01 + egrave.ss01 + emacron.ss01 + eogonek.ss01 + f.ss01 + g.ss01 + gacute.ss01 + gbreve.ss01 + gcircumflex.ss01 + gcommaaccent.ss01 + gdotaccent.ss01 + l.ss01 + lacute.ss01 + lcaron.ss01 + lcommaaccent.ss01 + ldot.ss01 + lslash.ss01 + oe.ss01 + p.ss01 + q.ss01 + germandbls.ss01 + t.ss01 + tbar.ss01 + tcaron.ss01 + tcedilla.ss01 + tcommaaccent.ss01 + f_f + f_f_i + f_f_l + fi + fl + f_f.ss01 + f_f_i.ss01 + f_f_l.ss01 + fi.ss01 + fl.ss01 + ordfeminine + ordmasculine + A-cy + Be-cy + Ve-cy + Ge-cy + Gheupturn-cy + De-cy + Ie-cy + Io-cy + Zhe-cy + Ze-cy + Ii-cy + Iishort-cy + Ka-cy + El-cy + Em-cy + En-cy + O-cy + Pe-cy + Er-cy + Es-cy + Te-cy + U-cy + Ushort-cy + Ef-cy + Ha-cy + Che-cy + Tse-cy + Sha-cy + Shcha-cy + Softsign-cy + Hardsign-cy + Yeru-cy + Dze-cy + E-cy + Ereversed-cy + I-cy + Yi-cy + Iu-cy + Ia-cy + A-cy.ss01 + Zhe-cy.ss01 + Ka-cy.ss01 + Em-cy.ss01 + U-cy.ss01 + Ushort-cy.ss01 + Ha-cy.ss01 + Ia-cy.ss01 + a-cy + be-cy + ve-cy + ge-cy + gheupturn-cy + de-cy + ie-cy + io-cy + zhe-cy + ze-cy + ii-cy + iishort-cy + ka-cy + el-cy + em-cy + en-cy + o-cy + pe-cy + er-cy + es-cy + te-cy + u-cy + ushort-cy + ef-cy + ha-cy + che-cy + tse-cy + sha-cy + shcha-cy + softsign-cy + hardsign-cy + yeru-cy + dze-cy + e-cy + ereversed-cy + i-cy + yi-cy + je-cy + iu-cy + ia-cy + a-cy.ss01 + ve-cy.ss01 + de-cy.ss01 + ie-cy.ss01 + io-cy.ss01 + el-cy.ss01 + er-cy.ss01 + te-cy.ss01 + softsign-cy.ss01 + hardsign-cy.ss01 + yeru-cy.ss01 + ia-cy.ss01 + zero + one + two + three + four + five + six + seven + eight + nine + zero.osf + one.osf + two.osf + three.osf + four.osf + five.osf + six.osf + seven.osf + nine.osf + zero.tf + one.tf + two.tf + three.tf + four.tf + five.tf + six.tf + seven.tf + eight.tf + nine.tf + onesuperior + twosuperior + threesuperior + period + comma + colon + semicolon + ellipsis + exclam + exclamdown + question + questiondown + periodcentered + bullet + asterisk + numbersign + slash + backslash + parenleft + parenright + braceleft + braceright + bracketleft + bracketright + hyphen + endash + emdash + underscore + quotesinglbase + quotedblbase + quotedblleft + quotedblright + quoteleft + quoteright + guillemetleft + guillemetright + guilsinglleft + guilsinglright + quotedbl + quotesingle + cent + currency + dollar + euro + hryvnia + sterling + yen + yen.ss01 + plus + minus + multiply + divide + equal + greater + less + asciitilde + asciicircum + percent + perthousand + at + ampersand + paragraph + section + copyright + registered + trademark + degree + bar + brokenbar + dagger + daggerdbl + numero + estimated + numero.ss01 + commaaccentcomb + dieresis + dotaccent + grave + acute + hungarumlaut + circumflex + caron + breve + ring + tilde + macron + cedilla + ogonek + dieresis.case + dotaccent.case + grave.case + acute.case + hungarumlaut.case + circumflex.case + caron.case + breve.case + ring.case + tilde.case + macron.case + commaaccentcomb.salt + caron.salt + uniE01A + _perc-circule + eight.osf + ruble + Ljecyr + Njecyr + Jecyr + dzhecyr + Dzhecyr + ljecyr + njecyr + Tshecyr + Djecyr + tshecyr + djecyr + tenge + ljecyr.ss01 + njecyr.ss01 + dramsignarmn + gjecyr + kjecyr + neptune + florin + plusminus + fraction + onequarter + onehalf + threequarters + mu + lessequal + greaterequal + minute + second + Schwacyr + schwacyr + Gestrokecyr + gestrokecyr + Obarcyr + obarcyr + Entailcyr + entailcyr + Katailcyr + katailcyr + Ustraightstrokecyr + ustraightstrokecyr + Shhacyr + shhacyr + ustraightcyr + Ustraightcyr + partialdiff + increment + integral + summation + radical + infinity + Omega + pi + longs + Delta + product + notequal + proportional + approxequal + Schwa + eturned + Oslashacute + oslashacute + AEacute + aeacute + uni2010 + Aiecyr + aiecyr + uni1EBC + uni1EBD + Acaron + acaron + Gjecyr + Kjecyr + uniE000 + uniE000.alt + arrowleft + arrowup + arrowright + arrowdown + arrowdown.ss01 + arrowleft.ss01 + arrowright.ss01 + arrowup.ss01 + yi-cy.alt + Omegacyr + omegacyr + Yatcyr + yatcyr + Eiotifiedcyr + eiotifiedcyr + Ksicyr + ksicyr + Shwe-cy + Fitacyr + fitacyr + Koppacyr + Iegravecyr + Igravecyr + iegravecyr + igravecyr + Zhebrevecyr + zhebrevecyr + Abrevecyr + abrevecyr + Adieresiscyr + adieresiscyr + Iebrevecyr + iebrevecyr + Schwadieresiscyr + schwadieresiscyr + Zhedieresiscyr + zhedieresiscyr + Zedieresiscyr + zedieresiscyr + Imacroncyr + imacroncyr + Idieresiscyr + idieresiscyr + Odieresiscyr + odieresiscyr + Umacroncyr + umacroncyr + Udieresiscyr + udieresiscyr + Uacutedblcyr + uacutedblcyr + Dekomicyr + dekomicyr + Wecyr + wecyr + Qacyr + qacyr + Ylongdieresiscyr + ylongdieresiscyr + Chedieresiscyr + chedieresiscyr + Obardieresiscyr + obardieresiscyr + Ereverseddieresiscyr + ereverseddieresiscyr + Zhetailcyr + zhetailcyr + Tetailcyr + tetailcyr + Xatailcyr + xatailcyr + Chetailcyr + chetailcyr + Chekhakascyr + chekhakascyr + Getailcyr + getailcyr + Petailcyr + petailcyr + Eltailcyr + eltailcyr + Shhatailcyr + shhatailcyr + Palochkacyr + palochkacyr + Dzzhecyr + Yaecyr + yaecyr + Tetsecyr + tetsecyr + Engecyr + engecyr + kabashkcyr + Kabashkcyr + semisoftcyr + Semisoftcyr + Reversedzecyr + reversedzecyr + Elmiddlehookcyr + Enmiddlehookcyr + Enhookcyr + Kahookcyr + Pehookcyr + Gehookcyr + parenleft.case + parenright.case + hyphen.case + bracketleft.case + bracketright.case + braceleft.case + braceright.case + exclamdown.case + guillemetleft.case + guillemetright.case + endash.case + emdash.case + bullet.case + guilsinglleft.case + guilsinglright.case + arrowleft.case + arrowup.case + arrowright.case + arrowdown.case + arrowdown.ss01.case + arrowleft.ss01.case + arrowright.ss01.case + arrowup.ss01.case + Enhookleftcyr + enhookleftcyr + enhookcyr + gehookcyr + pehookcyr + kahookcyr + enmiddlehookcyr + elmiddlehookcyr + kastrokecyr + Kastrokecyr + Chevertcyr + chevertcyr + Kaverticalstrokecyr + kaverticalstrokecyr + Elhookcyr + elhookcyr + zetailcyr + Zetailcyr + Estailcyr + estailcyr + Haabkhcyr + koppacyr + ukcyr + Ukcyr + omegaroundcyr + Izhitsagravedblcyr + izhitsagravedblcyr + izhitsacyr + Izhitsacyr + Yusbigcyr + yusbigcyr + Psicyr + psicyr + Omegaroundcyr + Yuslittlecyr + yuslittlecyr + yuslittleiotifiedcyr + Yuslittleiotifiedcyr + Yusbigiotifiedcyr + yusbigiotifiedcyr + Omegatitlocyr + omegatitlocyr + Otcyr + otcyr + uni2DEE + uni2DEE.case + ertickcyr + Ertickcyr + Lhacyr + lhacyr + ensharptailcyr + Ensharptailcyr + emsharptailcyr + elsharptailcyr + ishortsharptailcyr + Ishortsharptailcyr + Emsharptailcyr + Elsharptailcyr + njekomicyr + Njekomicyr + ljekomicyr + tjekomicyr + djekomicyr + zjekomicyr + colon.case + questiondown.case + slash.case + semicolon.case + backslash.case + bar.case + brokenbar.case + dzjekomicyr + Cheabkhcyr + cheabkhcyr + cheabkhtailcyr + sjekomicyr + Sjekomicyr + Ljekomicyr + Tjekomicyr + Djekomicyr + kaaleutcyr + dzzhecyr + haabkhcyr + Dchecyr + dchecyr + dzeabkhcyr + Dzeabkhcyr + palatcombcyr + Cheabkhtailcyr + Dzjekomicyr + Zjekomicyr + rhacyr + Rhacyr + Kaaleutcyr + thousandscyr + titlocombcyr + pokrytiecombcyr + hundredthousandscombcyr + millionscombcyr + Gehookstrokecyr + gehookstrokecyr + Hahookcyr + hahookcyr + Hastrokecyr + uni1C80 + uni1C81 + uni1C82 + uni1C83 + uni1C84 + uni1C85 + uni1C86 + uni1C87 + Zemlya-cy + zemlya-cy + Dzelo-cy + dzelo-cy + DzeReversed-cy + dzeReversed-cy + Iota-cy + iota-cy + Djerv-cy + djerv-cy + UkMonograph-cy + ukMonograph-cy + OmegaBroad-cy + omegaBroad-cy + YerNeutral-cy + yerNeutral-cy + YeruBackYer-cy + yeruBackyer-cy + YatIotified-cy + yatIotified-cy + YuReversed-cy + yuReversed-cy + IotifiedA-cy + iotifieda-cy + YusClosedlittle-cy + yusClosedlittle-cy + YusBlended-cy + yusBlended-cy + YusiotifiedClosedLittle-cy + yusiotifiedClosedLittle-cy + Yn-cy + yn-cy + TseReversed-cy + tseReversed-cy + DeSoft-cy + deSoft-cy + ElSoft-cy + elSoft-cy + EmSoft-cy + emSoft-cy + OMonocular-cy + oMonocular-cy + OBinocular-cy + oBinocular-cy + ODoubleMonocular-cy + oDoubleMonocular-cy + omultiocular-cy + vzmetcomb-cy + tenmillionscomb-cy + hundredmillionscomb-cy + thousandmillionscomb-cy + Dwe-cy + dwe-cy + Dzwe-cy + dzwe-cy + Zhwe-cy + zhwe-cy + Cche-cy + cche-cy + Dzze-cy + dzze-cy + TeWithMiddleHook-cy + tewithmiddlehook-cy + Twe-cy + twe-cy + Tswe-cy + tswe-cy + Tsse-cy + tsse-cy + Tche-cy + tche-cy + Hwe-cy + hwe-cy + shwe-cy + DoubleO-cy + doubleo-cy + CrossedO-cy + crossedo-cy + hastrokecyr + uniF43A + A-cy.accented + E-cy.accented + Ii-cy.accented + O-cy.accented + U-cy.accented + Yeru-cy.accented + Ereversed-cy.accented + Iu-cy.accented + Ia-cy.accented + Io-cy.accented + uniF498 + uniF49A + uniF49C + uniF49E + uniF4C6 + uniF4CC + uniF4D2 + uniF4D4 + uniF4D6 + uniF4D8 + Zetailcyr.BSH + Estailcyr.CHU + uniF50E + uniF510 + uniF512 + uniF514 + uniF516 + uniF518 + uniF51A + uniF51C + uniF51E + Yeru-cymacron + uniF522 + uniF524 + uniF526 + uniF528 + uniF52A + uniF52C + uniF52E + uniF532 + uniF536 + uniF538 + Gestrokecyr.BSH + Estailcyr.BSH + uniF830 + uniF833 + uniF839 + uniF86F + uniF872 + uniF875 + uniF878 + uniF87B + uniF87E + apostrophemod + colontriangularmod + uni1C88 + uniF87F + uniF87C + uniF879 + uniF876 + uniF873 + uniF870 + uniF83A + uniF834 + uniF831 + zetailcyr.BSH + estailcyr.CHU + uniF50F + uniF511 + uniF513 + uniF515 + uniF517 + uniF519 + uniF51B + uniF51D + uniF51F + uniF521 + uniF523 + uniF525 + uniF527 + uniF529 + uniF52B + uniF52D + uniF52F + uniF533 + uniF537 + uniF539 + gestrokecyr.BSH + estailcyr.BSH + uniF499 + uniF49B + uniF49D + uniF49F + uniF4C7 + uniF4CD + uniF4D3 + uniF4D5 + uniF4D7 + uniF4D9 + a-cy.accented + e-cy.accented + ii-cy.accented + o-cy.accented + u-cy.accented + yeru-cy.accented + ereversed-cy.accented + iu-cy.accented + ia-cy.accented + io-cy.accented + uniF43B + at.case + dieresis.alt + dieresiscase.alt + e-cy.hist + omultiocular-cy.alt + iotifieda-cy.hist + be-cy.SRB + ve-cy.BGR + ge-cy.BGR + de-cy.BGR + zhe-cy.BGR + ze-cy.BGR + ii-cy.BGR + iishort-cy.BGR + ka-cy.BGR + el-cy.BGR + pe-cy.BGR + te-cy.BGR + tse-cy.BGR + sha-cy.BGR + shcha-cy.BGR + hardsign-cy.BGR + softsign-cy.BGR + iu-cy.BGR + yatcyr.BGR + eiotifiedcyr.BGR + yusbigiotifiedcyr.BGR + iotifieda-cy.BGR + De-cy.BGR + El-cy.BGR + Ef-cy.BGR + dieresisacute + uniF45D + uniF45E + uniF45F + uniF475 + uniF476 + uniF477 + uniF478 + uniF479 + Elsmallcyr + enclosingcirclecomb + ge-cy.SRB + pe-cy.SRB + te-cy.SRB + gjecyr.SRB + macron-fwd + macron-fwd.alt + macronacute.SRB + iegravecyr.SRB + igravecyr.SRB + flower + knightwhite + knightblack + floretteblack + florettewhite + floretteoutlinedpetalledblackeight + rookblack + bishopblack + leo + heartwhite + diamondwhite-misc + spadewhite + clubwhite + bishopwhite + heart + crossedswords + virgo + thousandscyr.dnom + bracketangleleft + bracketangleright + bracketangleleft.case + bracketangleright.case + + + diff --git a/sources/FixelDisplay-SemiBold.ufo/metainfo.plist b/sources/FixelDisplay-SemiBold.ufo/metainfo.plist new file mode 100644 index 00000000..10582b84 --- /dev/null +++ b/sources/FixelDisplay-SemiBold.ufo/metainfo.plist @@ -0,0 +1,10 @@ + + + + + creator + com.fontlab.ufoLib + formatVersion + 3 + + diff --git a/sources/FixelDisplay-Thin.ufo/features.fea b/sources/FixelDisplay-Thin.ufo/features.fea new file mode 100644 index 00000000..302ade93 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/features.fea @@ -0,0 +1,573 @@ +#> classes +#/> otclasses +@ss01_def = [A-cy A AE Aacute Abreve Acircumflex Adieresis Agrave Amacron Aogonek Aring Atilde Em-cy Eng G Gacute Gbreve Gcircumflex Gcommaaccent Gdotaccent Ha-cy Ia-cy J Jcircumflex K Ka-cy Kcommaaccent M N Nacute Ncaron Ncommaaccent Ntilde Q U-cy Ushort-cy V W Wacute Wcircumflex Wdieresis Wgrave X Y Yacute Ycircumflex Ydieresis Z Zacute Zcaron Zdotaccent Zhe-cy a-cy a aacute abreve acircumflex adieresis ae agrave amacron aogonek aring arrowdown arrowdown.case arrowleft arrowleft.case arrowright arrowright.case arrowup arrowup.case atilde b d dcaron dcroat de-cy e eacute ebreve ecaron ecircumflex edieresis edotaccent egrave el-cy emacron eogonek er-cy f f_f f_f_i f_f_l fi fl g gacute gbreve gcircumflex gcommaaccent gdotaccent germandbls hardsign-cy ia-cy ie-cy io-cy l lacute lcaron lcommaaccent ldot ljecyr lslash njecyr numero oe p q softsign-cy t tbar tcaron tcedilla tcommaaccent te-cy ve-cy yen yeru-cy]; +@ss01 = [A-cy.ss01 A.ss01 AE.ss01 Aacute.ss01 Abreve.ss01 Acircumflex.ss01 Adieresis.ss01 Agrave.ss01 Amacron.ss01 Aogonek.ss01 Aring.ss01 Atilde.ss01 Em-cy.ss01 Eng.ss01 G.ss01 Gacute.ss01 Gbreve.ss01 Gcircumflex.ss01 Gcommaaccent.ss01 Gdotaccent.ss01 Ha-cy.ss01 Ia-cy.ss01 J.ss01 Jcircumflex.ss01 K.ss01 Ka-cy.ss01 Kcommaaccent.ss01 M.ss01 N.ss01 Nacute.ss01 Ncaron.ss01 Ncommaaccent.ss01 Ntilde.ss01 Q.ss01 U-cy.ss01 Ushort-cy.ss01 V.ss01 W.ss01 Wacute.ss01 Wcircumflex.ss01 Wdieresis.ss01 Wgrave.ss01 X.ss01 Y.ss01 Yacute.ss01 Ycircumflex.ss01 Ydieresis.ss01 Z.ss01 Zacute.ss01 Zcaron.ss01 Zdotaccent.ss01 Zhe-cy.ss01 a-cy.ss01 a.ss01 aacute.ss01 abreve.ss01 acircumflex.ss01 adieresis.ss01 ae.ss01 agrave.ss01 amacron.ss01 aogonek.ss01 aring.ss01 arrowdown.ss01 arrowdown.ss01.case arrowleft.ss01 arrowleft.ss01.case arrowright.ss01 arrowright.ss01.case arrowup.ss01 arrowup.ss01.case atilde.ss01 b.ss01 d.ss01 dcaron.ss01 dcroat.ss01 de-cy.ss01 e.ss01 eacute.ss01 ebreve.ss01 ecaron.ss01 ecircumflex.ss01 edieresis.ss01 edotaccent.ss01 egrave.ss01 el-cy.ss01 emacron.ss01 eogonek.ss01 er-cy.ss01 f.ss01 f_f.ss01 f_f_i.ss01 f_f_l.ss01 fi.ss01 fl.ss01 g.ss01 gacute.ss01 gbreve.ss01 gcircumflex.ss01 gcommaaccent.ss01 gdotaccent.ss01 germandbls.ss01 hardsign-cy.ss01 ia-cy.ss01 ie-cy.ss01 io-cy.ss01 l.ss01 lacute.ss01 lcaron.ss01 lcommaaccent.ss01 ldot.ss01 ljecyr.ss01 lslash.ss01 njecyr.ss01 numero.ss01 oe.ss01 p.ss01 q.ss01 softsign-cy.ss01 t.ss01 tbar.ss01 tcaron.ss01 tcedilla.ss01 tcommaaccent.ss01 te-cy.ss01 ve-cy.ss01 yen.ss01 yeru-cy.ss01]; +@case = [arrowdown.case arrowdown.ss01.case arrowleft.case arrowleft.ss01.case arrowright.case arrowright.ss01.case arrowup.case arrowup.ss01.case backslash.case bar.case braceleft.case braceright.case bracketleft.case bracketright.case brokenbar.case bullet.case colon.case emdash.case endash.case exclamdown.case guillemetleft.case guillemetright.case guilsinglleft.case guilsinglright.case hyphen.case parenleft.case parenright.case questiondown.case semicolon.case at.case bracketangleleft.case bracketangleright.case slash.case]; +@case_def = [arrowdown arrowdown.ss01 arrowleft arrowleft.ss01 arrowright arrowright.ss01 arrowup arrowup.ss01 backslash bar braceleft braceright bracketleft bracketright brokenbar bullet colon emdash endash exclamdown guillemetleft guillemetright guilsinglleft guilsinglright hyphen parenleft parenright questiondown semicolon at bracketangleleft bracketangleright slash]; +@cpsp = [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 Agrave Aacute Acircumflex Atilde Adieresis Aring AE Ccedilla Egrave Eacute Ecircumflex Edieresis Igrave Iacute Icircumflex Idieresis Eth Ntilde Ograve Oacute Ocircumflex Otilde Odieresis Oslash Ugrave Uacute Ucircumflex Udieresis Yacute Thorn Amacron Abreve Aogonek Cacute Ccircumflex Cdotaccent Ccaron Dcaron Dcroat Emacron Ebreve Edotaccent Eogonek Ecaron Gcircumflex Gbreve Gdotaccent Gcommaaccent Hcircumflex Hbar Itilde Imacron Ibreve Iogonek Idotaccent IJ Jcircumflex Kcommaaccent Lacute Lcommaaccent Lcaron Ldot Lslash Nacute Ncommaaccent Ncaron Eng Omacron Obreve Ohungarumlaut OE Racute Rcommaaccent Rcaron Sacute Scircumflex Scedilla Scaron Tcedilla Tcaron Tbar Utilde Umacron Ubreve Uring Uhungarumlaut Uogonek Wcircumflex Ycircumflex Ydieresis Zacute Zdotaccent Zcaron Schwa Acaron Gacute AEacute Oslashacute Scommaaccent Tcommaaccent Delta Omega Iegravecyr uniF43A A-cy.accented E-cy.accented Ii-cy.accented O-cy.accented U-cy.accented Yeru-cy.accented Ereversed-cy.accented Iu-cy.accented Ia-cy.accented Io-cy.accented uniF498 uniF49A uniF49C uniF49E uniF4C6 uniF4CC uniF4D2 uniF4D4 uniF4D6 uniF4D8 uniF50E uniF510 uniF512 uniF514 uniF516 uniF518 uniF51A uniF51C uniF51E Yeru-cymacron uniF522 uniF524 uniF526 uniF528 uniF52A uniF52C uniF52E uniF532 uniF536 uniF538 uniF830 uniF833 uniF839 uniF86F uniF872 uniF875 uniF878 uniF87B uniF87E Io-cy Djecyr Gjecyr E-cy Dze-cy I-cy Yi-cy Jecyr Ljecyr Njecyr Tshecyr Kjecyr Igravecyr Ushort-cy Dzhecyr A-cy Be-cy Ve-cy Ge-cy De-cy Ie-cy Zhe-cy Ze-cy Ii-cy Iishort-cy Ka-cy El-cy Em-cy En-cy O-cy Pe-cy Er-cy Es-cy Te-cy U-cy Ef-cy Ha-cy Tse-cy Che-cy Sha-cy Shcha-cy Hardsign-cy Yeru-cy Softsign-cy Ereversed-cy Iu-cy Ia-cy Omegacyr Yatcyr Eiotifiedcyr Yuslittlecyr Yuslittleiotifiedcyr Yusbigcyr Yusbigiotifiedcyr Ksicyr Psicyr Fitacyr Izhitsacyr Izhitsagravedblcyr Ukcyr Omegaroundcyr Omegatitlocyr Otcyr Koppacyr Ishortsharptailcyr Semisoftcyr Ertickcyr Gheupturn-cy Gestrokecyr Gehookcyr Zhetailcyr Zetailcyr Katailcyr Kaverticalstrokecyr Kastrokecyr Kabashkcyr Entailcyr Engecyr Pehookcyr Haabkhcyr Estailcyr Tetailcyr Ustraightcyr Ustraightstrokecyr Xatailcyr Tetsecyr Chetailcyr Chevertcyr Shhacyr Cheabkhcyr Cheabkhtailcyr Palochkacyr Zhebrevecyr Kahookcyr Elsharptailcyr Enhookcyr Ensharptailcyr Chekhakascyr Emsharptailcyr Abrevecyr Adieresiscyr Aiecyr Iebrevecyr Schwacyr Schwadieresiscyr Zhedieresiscyr Zedieresiscyr Dzeabkhcyr Imacroncyr Idieresiscyr Odieresiscyr Obarcyr Obardieresiscyr Ereverseddieresiscyr Umacroncyr Udieresiscyr Uacutedblcyr Chedieresiscyr Getailcyr Ylongdieresiscyr Gehookstrokecyr Hahookcyr Hastrokecyr Dekomicyr Djekomicyr Zjekomicyr Dzjekomicyr Ljekomicyr Njekomicyr Sjekomicyr Tjekomicyr Reversedzecyr Elhookcyr Lhacyr Rhacyr Yaecyr Qacyr Wecyr Kaaleutcyr Elmiddlehookcyr Enmiddlehookcyr Petailcyr Shhatailcyr Enhookleftcyr Dzzhecyr Dchecyr Eltailcyr Wgrave Wacute Wdieresis Germandbls uni1EBC Zemlya-cy Dzelo-cy DzeReversed-cy Iota-cy Djerv-cy UkMonograph-cy OmegaBroad-cy YerNeutral-cy YeruBackYer-cy YatIotified-cy YuReversed-cy IotifiedA-cy YusClosedlittle-cy YusBlended-cy YusiotifiedClosedLittle-cy Yn-cy TseReversed-cy DeSoft-cy ElSoft-cy EmSoft-cy OMonocular-cy OBinocular-cy ODoubleMonocular-cy Dwe-cy Dzwe-cy Zhwe-cy Cche-cy Dzze-cy TeWithMiddleHook-cy Twe-cy Tswe-cy Tsse-cy Tche-cy Hwe-cy Shwe-cy DoubleO-cy CrossedO-cy A-cy.ss01 A.ss01 AE.ss01 Aacute.ss01 Abreve.ss01 Acircumflex.ss01 Adieresis.ss01 Agrave.ss01 Amacron.ss01 Aogonek.ss01 Aring.ss01 Atilde.ss01 Em-cy.ss01 Eng.ss01 G.ss01 Gacute.ss01 Gbreve.ss01 Gcircumflex.ss01 Gcommaaccent.ss01 Gdotaccent.ss01 Ha-cy.ss01 Ia-cy.ss01 J.ss01 Jcircumflex.ss01 K.ss01 Ka-cy.ss01 Kcommaaccent.ss01 M.ss01 N.ss01 Nacute.ss01 Ncaron.ss01 Ncommaaccent.ss01 Ntilde.ss01 Q.ss01 U-cy.ss01 Ushort-cy.ss01 V.ss01 W.ss01 Wacute.ss01 Wcircumflex.ss01 Wdieresis.ss01 Wgrave.ss01 X.ss01 Y.ss01 Yacute.ss01 Ycircumflex.ss01 Ydieresis.ss01 Z.ss01 Zacute.ss01 Zcaron.ss01 Zdotaccent.ss01 Zetailcyr.BSH Gestrokecyr.BSH Estailcyr.BSH Estailcyr.CHU Zhe-cy.ss01]; +@locl_BGR = [De-cy.BGR Ef-cy.BGR El-cy.BGR de-cy.BGR eiotifiedcyr.BGR el-cy.BGR ge-cy.BGR hardsign-cy.BGR ii-cy.BGR iishort-cy.BGR iotifieda-cy.BGR iu-cy.BGR ka-cy.BGR pe-cy.BGR sha-cy.BGR shcha-cy.BGR softsign-cy.BGR te-cy.BGR tse-cy.BGR ve-cy.BGR yatcyr.BGR yusbigiotifiedcyr.BGR ze-cy.BGR zhe-cy.BGR]; +@locl_def = [De-cy Ef-cy El-cy de-cy eiotifiedcyr el-cy ge-cy hardsign-cy ii-cy iishort-cy iotifieda-cy iu-cy ka-cy pe-cy sha-cy shcha-cy softsign-cy te-cy tse-cy ve-cy yatcyr yusbigiotifiedcyr ze-cy zhe-cy]; +@locl.SRB = [be-cy.SRB iegravecyr.SRB igravecyr.SRB]; +@loclSRB_def = [be-cy iegravecyr igravecyr]; +@accent = [grave acute.case grave.case acute]; +@pics = [neptune leo virgo bishopwhite knightwhite rookblack bishopblack knightblack heartwhite diamondwhite-misc spadewhite heart clubwhite crossedswords flower floretteblack florettewhite floretteoutlinedpetalledblackeight]; +@pics_def = [A B C D E F G H I J K L M N O P Q R]; +#/< otclasses + +#/> tags +@tag.omultiocular-cy.alt = [omultiocular-cy]; +@tag.yi-cy_yi-cy.alt = [uniE000]; +#/< tags +#< classes + +# automatic +@Uppercase = [ A Aacute Abreve Acircumflex Adieresis Agrave Amacron Aogonek Aring Atilde AE B C Cacute Ccaron Ccedilla Ccircumflex Cdotaccent D Eth Dcaron Dcroat E Eacute Ebreve Ecaron Ecircumflex Edieresis Edotaccent Egrave Emacron Eogonek F G Gacute Gbreve Gcircumflex Gcommaaccent Gdotaccent H Hbar Hcircumflex I IJ Iacute Ibreve Icircumflex Idieresis Idotaccent Igrave Imacron Iogonek Itilde J Jcircumflex K Kcommaaccent L Lacute Lcaron Lcommaaccent Ldot Lslash M N Nacute Ncaron Ncommaaccent Eng Ntilde O Oacute Obreve Ocircumflex Odieresis Ograve Ohungarumlaut Omacron Oslash Otilde OE P Thorn Q R Racute Rcaron Rcommaaccent S Sacute Scaron Scedilla Scircumflex Scommaaccent Germandbls T Tbar Tcaron Tcedilla Tcommaaccent U Uacute Ubreve Ucircumflex Udieresis Ugrave Uhungarumlaut Umacron Uogonek Uring Utilde V W Wacute Wcircumflex Wdieresis Wgrave X Y Yacute Ycircumflex Ydieresis Z Zacute Zcaron Zdotaccent A.ss01 Aacute.ss01 Abreve.ss01 Acircumflex.ss01 Adieresis.ss01 Agrave.ss01 Amacron.ss01 Aogonek.ss01 Aring.ss01 Atilde.ss01 AE.ss01 G.ss01 Gacute.ss01 Gbreve.ss01 Gcircumflex.ss01 Gcommaaccent.ss01 Gdotaccent.ss01 J.ss01 Jcircumflex.ss01 K.ss01 Kcommaaccent.ss01 M.ss01 N.ss01 Nacute.ss01 Ncaron.ss01 Ncommaaccent.ss01 Eng.ss01 Ntilde.ss01 Q.ss01 V.ss01 W.ss01 Wacute.ss01 Wcircumflex.ss01 Wdieresis.ss01 Wgrave.ss01 X.ss01 Y.ss01 Yacute.ss01 Ycircumflex.ss01 Ydieresis.ss01 Z.ss01 Zacute.ss01 Zcaron.ss01 Zdotaccent.ss01 A-cy Be-cy Ve-cy Ge-cy Gheupturn-cy De-cy Ie-cy Io-cy Zhe-cy Ze-cy Ii-cy Iishort-cy Ka-cy El-cy Em-cy En-cy O-cy Pe-cy Er-cy Es-cy Te-cy U-cy Ushort-cy Ef-cy Ha-cy Che-cy Tse-cy Sha-cy Shcha-cy Softsign-cy Hardsign-cy Yeru-cy Dze-cy E-cy Ereversed-cy I-cy Yi-cy Iu-cy Ia-cy A-cy.ss01 Zhe-cy.ss01 Ka-cy.ss01 Em-cy.ss01 U-cy.ss01 Ushort-cy.ss01 Ha-cy.ss01 Ia-cy.ss01 ]; + +# Prefix: Languagesystems +# automatic +languagesystem DFLT dflt; + +languagesystem latn dflt; +languagesystem latn ROM; +languagesystem latn MOL; +languagesystem latn CAT; +languagesystem cyrl dflt; +languagesystem cyrl BGR; +languagesystem cyrl BSH; +languagesystem cyrl CHU; +languagesystem cyrl SRB; +languagesystem cyrl MKD; + +lookup liga_accent { + sub @accent by [grave grave grave grave]; +} liga_accent; +feature aalt { +# Access All Alternates + +#> feature + feature locl; + feature sups; + feature case; + feature lnum; + feature pnum; + feature tnum; + feature onum; + feature salt; + feature ss01; + feature hist; +#< feature +} aalt; +feature ccmp { +# automatic +lookup ccmp_Other_1 { + @Markscomb = [dieresis dotaccent grave acute hungarumlaut circumflex caron breve ring tilde macron]; + @MarkscombCase = [dieresis.case dotaccent.case grave.case acute.case hungarumlaut.case circumflex.case caron.case breve.case ring.case tilde.case macron.case]; + sub @Markscomb @Markscomb' by @MarkscombCase; + sub @cpsp @Markscomb' by @MarkscombCase; +} ccmp_Other_1; + +lookup ccmp_Other_2 { + sub @Markscomb' @MarkscombCase by @MarkscombCase; + sub @MarkscombCase @Markscomb' by @MarkscombCase; +} ccmp_Other_2; +} ccmp; + +feature locl { +# automatic + +script latn; + language ROM; + language MOL; + sub Scedilla by Scommaaccent; + sub scedilla by scommaaccent; + sub Tcedilla by Tcommaaccent; + sub tcedilla by tcommaaccent; + +script latn; + language CAT; + sub l' periodcentered' l by ldot; + sub L' periodcentered' L by Ldot; + +script cyrl; # Cyrillic + language SRB ; # Serbian + + lookup locl_SRB_MCD { + # GSUB lookup 20, type 11 (Single) + sub @loclSRB_def by @locl.SRB; + } locl_SRB_MCD; + + language MKD ; # Serbian + lookup locl_SRB_MCD; + + language BSH ; # Bashkir + sub [Gestrokecyr gestrokecyr Zetailcyr zetailcyr] by [Gestrokecyr.BSH gestrokecyr.BSH Zetailcyr.BSH zetailcyr.BSH]; + sub [Estailcyr estailcyr] by [Estailcyr.BSH estailcyr.BSH]; + + language CHU ; # Chuvash + sub [Estailcyr estailcyr] by [Estailcyr.CHU estailcyr.CHU]; + + language BGR ; # Bulgarian + sub @locl_def by @locl_BGR; + +} locl; + +feature sups { +# Superscript + +#> feature + sub one by onesuperior; + sub three by threesuperior; + sub two by twosuperior; +#< feature +} sups; +feature ordn { +# Ordinals + +#> feature + sub [zero one two three four five six seven eight nine] [A a]' by ordfeminine; + sub [zero one two three four five six seven eight nine] [O o]' by ordmasculine; + sub N o period by numero; +#< feature +} ordn; +feature case { +# Case Sensitive Forms + +#> feature + + sub @case_def by @case; + +#< feature +} case; +feature liga { +# Standard Ligatures + +#> feature +sub f f i by f_f_i; +sub f f l by f_f_l; +sub f f by f_f; +sub f i by fi; +sub f l by fl; +sub yi-cy yi-cy by uniE000; +sub hyphen greater by arrowright; +sub less hyphen by arrowleft; +sub backslash bar slash by arrowdown; +sub slash bar backslash by arrowup; + + lookup accent_2 { + sub E-cy @accent' lookup liga_accent; + sub I-cy @accent' lookup liga_accent; + sub Yi-cy @accent' lookup liga_accent; + sub A-cy @accent' lookup liga_accent; + sub Ie-cy @accent' lookup liga_accent; + sub Ii-cy @accent' lookup liga_accent; + sub O-cy @accent' lookup liga_accent; + sub U-cy @accent' lookup liga_accent; + sub Yeru-cy @accent' lookup liga_accent; + sub Ereversed-cy @accent' lookup liga_accent; + sub Iu-cy @accent' lookup liga_accent; + sub Ia-cy @accent' lookup liga_accent; + sub Io-cy @accent' lookup liga_accent; + sub Yatcyr @accent' lookup liga_accent; + + sub e-cy @accent' lookup liga_accent; + sub i-cy @accent' lookup liga_accent; + sub yi-cy @accent' lookup liga_accent; + sub a-cy @accent' lookup liga_accent; + sub ie-cy @accent' lookup liga_accent; + sub ii-cy @accent' lookup liga_accent; + sub o-cy @accent' lookup liga_accent; + sub u-cy @accent' lookup liga_accent; + sub yeru-cy @accent' lookup liga_accent; + sub ereversed-cy @accent' lookup liga_accent; + sub iu-cy @accent' lookup liga_accent; + sub ia-cy @accent' lookup liga_accent; + sub io-cy @accent' lookup liga_accent; + sub yatcyr @accent' lookup liga_accent; + } accent_2; + + lookup accent_3 { + sub E-cy grave by uniF45D; + sub I-cy grave by uniF45E; + sub Yi-cy grave by uniF45F; + sub A-cy grave by A-cy.accented; + sub Ie-cy grave by E-cy.accented; + sub Ii-cy grave by Ii-cy.accented; + sub O-cy grave by O-cy.accented; + sub U-cy grave by U-cy.accented; + sub Yeru-cy grave by Yeru-cy.accented; + sub Ereversed-cy grave by Ereversed-cy.accented; + sub Iu-cy grave by Iu-cy.accented; + sub Ia-cy grave by Ia-cy.accented; + sub Io-cy grave by Io-cy.accented; + sub Yatcyr grave by uniF478; + + sub e-cy grave by uniF475; + sub i-cy grave by uniF476; + sub yi-cy grave by uniF477; + sub a-cy grave by a-cy.accented; + sub ie-cy grave by e-cy.accented; + sub ii-cy grave by ii-cy.accented; + sub o-cy grave by o-cy.accented; + sub u-cy grave by u-cy.accented; + sub yeru-cy grave by yeru-cy.accented; + sub ereversed-cy grave by ereversed-cy.accented; + sub iu-cy grave by iu-cy.accented; + sub ia-cy grave by ia-cy.accented; + sub io-cy grave by io-cy.accented; + sub yatcyr grave by uniF479; + } accent_3; + +#< feature +} liga; +feature dlig { +# Discretionary Ligatures + +#> feature + +sub M a c P a w l o g o by uniE01A; +sub M P a w l o g o by uniE01A; +sub M P l o g o by uniE01A; +sub M A C P A W L O G O by uniE01A; +sub m a c p a w l o g o by uniE01A; +sub t r i d e n t by neptune; +sub t r y z u b by neptune; +sub u k r a i n e s i g n by neptune; +sub T R I D E N T by neptune; +sub T R Y Z U B by neptune; +sub U k r a i n e S i g n by neptune; +sub T r y z u b by neptune; +sub T r i d e n t by neptune; +sub Te-cy Er-cy Ii-cy Ze-cy U-cy Be-cy by neptune; + +#< feature +} dlig; +feature lnum { +# Lining Figures + +#> feature + sub eight.osf by eight.tf; + sub eight by eight.tf; + sub five.osf by five.tf; + sub five by five.tf; + sub four.osf by four.tf; + sub four by four.tf; + sub nine.osf by nine.tf; + sub nine by nine.tf; + sub one.osf by one.tf; + sub one by one.tf; + sub seven.osf by seven.tf; + sub seven by seven.tf; + sub six.osf by six.tf; + sub six by six.tf; + sub three.osf by three.tf; + sub three by three.tf; + sub two.osf by two.tf; + sub two by two.tf; + sub zero.osf by zero.tf; + sub zero by zero.tf; +#< feature +} lnum; +feature pnum { +# Proportional Figures + +#> feature + sub eight.tf by eight.osf; + sub eight by eight.osf; + sub five.tf by five.osf; + sub five by five.osf; + sub four.tf by four.osf; + sub four by four.osf; + sub nine.tf by nine.osf; + sub nine by nine.osf; + sub one.tf by one.osf; + sub one by one.osf; + sub seven.tf by seven.osf; + sub seven by seven.osf; + sub six.tf by six.osf; + sub six by six.osf; + sub three.tf by three.osf; + sub three by three.osf; + sub two.tf by two.osf; + sub two by two.osf; + sub zero.tf by zero.osf; + sub zero by zero.osf; +#< feature +} pnum; +feature tnum { +# Tabular Figures + +#> feature + sub eight by eight.tf; + sub eight.osf by eight.tf; + sub five by five.tf; + sub five.osf by five.tf; + sub four by four.tf; + sub four.osf by four.tf; + sub nine by nine.tf; + sub nine.osf by nine.tf; + sub one by one.tf; + sub one.osf by one.tf; + sub seven by seven.tf; + sub seven.osf by seven.tf; + sub six by six.tf; + sub six.osf by six.tf; + sub three by three.tf; + sub three.osf by three.tf; + sub two by two.tf; + sub two.osf by two.tf; + sub zero by zero.tf; + sub zero.osf by zero.tf; +#< feature +} tnum; +feature onum { +# Oldstyle Figures + +#> feature + sub eight by eight.osf; + sub eight.tf by eight.osf; + sub five by five.osf; + sub five.tf by five.osf; + sub four by four.osf; + sub four.tf by four.osf; + sub nine by nine.osf; + sub nine.tf by nine.osf; + sub one by one.osf; + sub one.tf by one.osf; + sub seven by seven.osf; + sub seven.tf by seven.osf; + sub six by six.osf; + sub six.tf by six.osf; + sub three by three.osf; + sub three.tf by three.osf; + sub two by two.osf; + sub two.tf by two.osf; + sub zero by zero.osf; + sub zero.tf by zero.osf; +#< feature +} onum; +feature salt { +# Stylistic Alternates + +#> feature + sub A from [A.ss01]; + sub A-cy from [A-cy.ss01]; + sub AE from [AE.ss01]; + sub Aacute from [Aacute.ss01]; + sub Abreve from [Abreve.ss01]; + sub Acircumflex from [Acircumflex.ss01]; + sub Adieresis from [Adieresis.ss01]; + sub Agrave from [Agrave.ss01]; + sub Amacron from [Amacron.ss01]; + sub Aogonek from [Aogonek.ss01]; + sub Aring from [Aring.ss01]; + sub Atilde from [Atilde.ss01]; + sub Em-cy from [Em-cy.ss01]; + sub Eng from [Eng.ss01]; + sub G from [G.ss01]; + sub Gacute from [Gacute.ss01]; + sub Gbreve from [Gbreve.ss01]; + sub Gcircumflex from [Gcircumflex.ss01]; + sub Gcommaaccent from [Gcommaaccent.ss01]; + sub Gdotaccent from [Gdotaccent.ss01]; + sub Ha-cy from [Ha-cy.ss01]; + sub Ia-cy from [Ia-cy.ss01]; + sub J from [J.ss01]; + sub Jcircumflex from [Jcircumflex.ss01]; + sub K from [K.ss01]; + sub Ka-cy from [Ka-cy.ss01]; + sub Kcommaaccent from [Kcommaaccent.ss01]; + sub M from [M.ss01]; + sub N from [N.ss01]; + sub Nacute from [Nacute.ss01]; + sub Ncaron from [Ncaron.ss01]; + sub Ncommaaccent from [Ncommaaccent.ss01]; + sub Ntilde from [Ntilde.ss01]; + sub Q from [Q.ss01]; + sub U-cy from [U-cy.ss01]; + sub Ushort-cy from [Ushort-cy.ss01]; + sub V from [V.ss01]; + sub W from [W.ss01]; + sub Wacute from [Wacute.ss01]; + sub Wcircumflex from [Wcircumflex.ss01]; + sub Wdieresis from [Wdieresis.ss01]; + sub Wgrave from [Wgrave.ss01]; + sub X from [X.ss01]; + sub Y from [Y.ss01]; + sub Yacute from [Yacute.ss01]; + sub Ycircumflex from [Ycircumflex.ss01]; + sub Ydieresis from [Ydieresis.ss01]; + sub Z from [Z.ss01]; + sub Zacute from [Zacute.ss01]; + sub Zcaron from [Zcaron.ss01]; + sub Zdotaccent from [Zdotaccent.ss01]; + sub Zhe-cy from [Zhe-cy.ss01]; + sub a from [a.ss01]; + sub a-cy from [a-cy.ss01]; + sub aacute from [aacute.ss01]; + sub abreve from [abreve.ss01]; + sub acircumflex from [acircumflex.ss01]; + sub adieresis from [adieresis.ss01]; + sub ae from [ae.ss01]; + sub agrave from [agrave.ss01]; + sub amacron from [amacron.ss01]; + sub aogonek from [aogonek.ss01]; + sub aring from [aring.ss01]; + sub arrowdown from [arrowdown.ss01]; + sub arrowleft from [arrowleft.ss01]; + sub arrowright from [arrowright.ss01]; + sub arrowup from [arrowup.ss01]; + sub atilde from [atilde.ss01]; + sub b from [b.ss01]; + sub caron from [caron.salt]; + sub commaaccentcomb from [commaaccentcomb.salt]; + sub d from [d.ss01]; + sub dcaron from [dcaron.ss01]; + sub dcroat from [dcroat.ss01]; + sub de-cy from [de-cy.ss01]; + sub e from [e.ss01]; + sub eacute from [eacute.ss01]; + sub ebreve from [ebreve.ss01]; + sub ecaron from [ecaron.ss01]; + sub ecircumflex from [ecircumflex.ss01]; + sub edieresis from [edieresis.ss01]; + sub edotaccent from [edotaccent.ss01]; + sub egrave from [egrave.ss01]; + sub el-cy from [el-cy.ss01]; + sub emacron from [emacron.ss01]; + sub eogonek from [eogonek.ss01]; + sub er-cy from [er-cy.ss01]; + sub f from [f.ss01]; + sub f_f from [f_f.ss01]; + sub f_f_i from [f_f_i.ss01]; + sub f_f_l from [f_f_l.ss01]; + sub fi from [fi.ss01]; + sub fl from [fl.ss01]; + sub g from [g.ss01]; + sub gacute from [gacute.ss01]; + sub gbreve from [gbreve.ss01]; + sub gcircumflex from [gcircumflex.ss01]; + sub gcommaaccent from [gcommaaccent.ss01]; + sub gdotaccent from [gdotaccent.ss01]; + sub germandbls from [germandbls.ss01]; + sub hardsign-cy from [hardsign-cy.ss01]; + sub ia-cy from [ia-cy.ss01]; + sub ie-cy from [ie-cy.ss01]; + sub io-cy from [io-cy.ss01]; + sub l from [l.ss01]; + sub lacute from [lacute.ss01]; + sub lcaron from [lcaron.ss01]; + sub lcommaaccent from [lcommaaccent.ss01]; + sub ldot from [ldot.ss01]; + sub ljecyr from [ljecyr.ss01]; + sub lslash from [lslash.ss01]; + sub njecyr from [njecyr.ss01]; + sub numero from [numero.ss01]; + sub oe from [oe.ss01]; + sub p from [p.ss01]; + sub q from [q.ss01]; + sub softsign-cy from [softsign-cy.ss01]; + sub t from [t.ss01]; + sub tbar from [tbar.ss01]; + sub tcaron from [tcaron.ss01]; + sub tcedilla from [tcedilla.ss01]; + sub tcommaaccent from [tcommaaccent.ss01]; + sub te-cy from [te-cy.ss01]; + sub uniE000 from [uniE000.alt]; + sub ve-cy from [ve-cy.ss01]; + sub yen from [yen.ss01]; + sub yeru-cy from [yeru-cy.ss01]; +#< feature +} salt; +feature ss03 { +# Stylistic Set 01–20 + +#> feature + featureNames { + name "Bulgarian forms"; + name 1 "Bulgarian forms"; + }; + + sub @locl_def by @locl_BGR; + +#< feature +} ss03; +feature ss04 { +# Stylistic Set 01–20 + +#> feature + featureNames { + name "Serbian/Macedonian forms"; + name 1 "Serbian/Macedonian forms"; + }; + + sub @loclSRB_def by @locl.SRB; + +#< feature +} ss04; +feature ss01 { +# Stylistic Set 01–20 + +#> feature + + featureNames { + name "Humanistic forms"; + name 1 "Humanistic forms"; + }; + + sub @ss01_def by @ss01; + +#< feature +} ss01; +feature ss05 { +# Stylistic Set 01–20 + +#> feature + + featureNames { + name "Ukrainian pictograms"; + name 1 "Ukrainian pictograms"; + }; + + sub @pics_def by @pics; + +#< feature +} ss05; +feature hist { +# Historical Forms + +#> feature + sub e-cy by e-cy.hist; + sub s by longs; +#< feature +} hist; +feature frac { +# Fractions + +#> feature +lookup frac_precomposed { + + sub one slash four by onequarter; + sub one slash two by onehalf; + sub three slash four by threequarters; + sub one fraction four by onequarter; + sub one fraction two by onehalf; + sub three fraction four by threequarters; +} frac_precomposed; +#< feature +} frac; +feature cpsp { +# Capital Spacing + +#> feature + + pos @cpsp <5 0 10 0>; + +#< feature +} cpsp; +feature dnom { +# Denominator + +#> feature + sub thousandscyr by thousandscyr.dnom; +#< feature +} dnom; diff --git a/sources/FixelDisplay-Thin.ufo/fontinfo.plist b/sources/FixelDisplay-Thin.ufo/fontinfo.plist new file mode 100644 index 00000000..8a03d2df --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/fontinfo.plist @@ -0,0 +1,207 @@ + + + + + ascender + 720 + capHeight + 700 + descender + -200 + familyName + Fixel Display + guidelines + + + angle + 0 + name + m + x + 0 + y + 250 + + + angle + 0 + name + m + x + 0 + y + 189 + + + italicAngle + 0 + openTypeGaspRangeRecords + + + rangeGaspBehavior + + 0 + 1 + 2 + 3 + + rangeMaxPPEM + 65535 + + + openTypeHeadCreated + 2023/09/05 09:25:30 + openTypeHeadFlags + + + openTypeHheaAscender + 720 + openTypeHheaCaretOffset + -0 + openTypeHheaDescender + -190 + openTypeHheaLineGap + 100 + openTypeNameDesigner + AlfaBravo + openTypeNameDesignerURL + https://alfabravo.design/ + openTypeNameManufacturer + Kyrylo Tkachov, Marchela Mozhyna, Serhii Makarenko, Maria Weinstein, Zakhar Kryvoshyya + + openTypeNameManufacturerURL + https://macpaw.com/ + openTypeNamePreferredFamilyName + Fixel Display + openTypeNamePreferredSubfamilyName + Thin + openTypeNameVersion + Version 1.200 + openTypeOS2CodePageRanges + + 0 + 1 + 2 + 4 + 7 + 29 + + openTypeOS2Panose + + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + + openTypeOS2Selection + + + openTypeOS2StrikeoutPosition + 300 + openTypeOS2StrikeoutSize + 50 + openTypeOS2SubscriptXOffset + -0 + openTypeOS2SubscriptXSize + 650 + openTypeOS2SubscriptYOffset + 75 + openTypeOS2SubscriptYSize + 600 + openTypeOS2SuperscriptXOffset + -0 + openTypeOS2SuperscriptXSize + 650 + openTypeOS2SuperscriptYOffset + 350 + openTypeOS2SuperscriptYSize + 600 + openTypeOS2Type + + 2 + + openTypeOS2TypoAscender + 720 + openTypeOS2TypoDescender + -200 + openTypeOS2TypoLineGap + 290 + openTypeOS2UnicodeRanges + + 0 + 1 + 2 + 9 + 31 + 33 + 60 + + openTypeOS2WeightClass + 100 + openTypeOS2WidthClass + 5 + openTypeOS2WinAscent + 750 + openTypeOS2WinDescent + 250 + postscriptBlueFuzz + 1 + postscriptBlueScale + 0.039625 + postscriptBlueShift + 7 + postscriptBlueValues + + -20 + 0 + + postscriptFontName + FixelDisplay-Thin + postscriptForceBold + + postscriptFullName + Fixel Display Thin + postscriptIsFixedPitch + + postscriptStemSnapH + + 69 + 74 + 76 + 80 + 99 + + postscriptStemSnapV + + 74 + 80 + 93 + + postscriptUnderlinePosition + -100 + postscriptUnderlineThickness + 50 + postscriptWeightName + Thin + styleMapFamilyName + Fixel Display Thin + styleMapStyleName + regular + styleName + Thin + unitsPerEm + 1000 + versionMajor + 1 + versionMinor + 200 + xHeight + 520 + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/A_-cy.accented.glif b/sources/FixelDisplay-Thin.ufo/glyphs/A_-cy.accented.glif new file mode 100644 index 00000000..1764bc36 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/A_-cy.accented.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+acute.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/A_-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/A_-cy.glif new file mode 100644 index 00000000..5c2bd865 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/A_-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/A_-cy.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/A_-cy.ss01.glif new file mode 100644 index 00000000..55c64ed9 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/A_-cy.ss01.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + com.fontlab.recipe + A + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/A_.glif b/sources/FixelDisplay-Thin.ufo/glyphs/A_.glif new file mode 100644 index 00000000..c09d3753 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/A_.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/A_.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/A_.ss01.glif new file mode 100644 index 00000000..7a50fa78 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/A_.ss01.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/A_E_.glif b/sources/FixelDisplay-Thin.ufo/glyphs/A_E_.glif new file mode 100644 index 00000000..c76817aa --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/A_E_.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + A + com.fontlab.metricsRight + E + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/A_E_.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/A_E_.ss01.glif new file mode 100644 index 00000000..8b33cd8f --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/A_E_.ss01.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + A.ss01 + com.fontlab.metricsRight + E + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/A_E_acute.glif b/sources/FixelDisplay-Thin.ufo/glyphs/A_E_acute.glif new file mode 100644 index 00000000..3f7d918d --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/A_E_acute.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + AE+acute.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/A_acute.glif b/sources/FixelDisplay-Thin.ufo/glyphs/A_acute.glif new file mode 100644 index 00000000..3cb5f665 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/A_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+acute.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/A_acute.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/A_acute.ss01.glif new file mode 100644 index 00000000..407b9f4f --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/A_acute.ss01.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + A.ss01+acute.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/A_breve.glif b/sources/FixelDisplay-Thin.ufo/glyphs/A_breve.glif new file mode 100644 index 00000000..c7f4f1bb --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/A_breve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+breve.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/A_breve.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/A_breve.ss01.glif new file mode 100644 index 00000000..eda0e588 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/A_breve.ss01.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + A.ss01+breve.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/A_brevecyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/A_brevecyr.glif new file mode 100644 index 00000000..26f8a884 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/A_brevecyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+breve.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/A_caron.glif b/sources/FixelDisplay-Thin.ufo/glyphs/A_caron.glif new file mode 100644 index 00000000..31081fff --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/A_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+caron.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/A_circumflex.glif b/sources/FixelDisplay-Thin.ufo/glyphs/A_circumflex.glif new file mode 100644 index 00000000..1a066c74 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/A_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+circumflex.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/A_circumflex.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/A_circumflex.ss01.glif new file mode 100644 index 00000000..02477d2b --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/A_circumflex.ss01.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + A.ss01+circumflex.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/A_dieresis.glif b/sources/FixelDisplay-Thin.ufo/glyphs/A_dieresis.glif new file mode 100644 index 00000000..5ddb1c13 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/A_dieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+dieresis.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/A_dieresis.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/A_dieresis.ss01.glif new file mode 100644 index 00000000..74a3a11e --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/A_dieresis.ss01.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + A.ss01+dieresis.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/A_dieresiscyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/A_dieresiscyr.glif new file mode 100644 index 00000000..abdcd5cc --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/A_dieresiscyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/A_grave.glif b/sources/FixelDisplay-Thin.ufo/glyphs/A_grave.glif new file mode 100644 index 00000000..8e149762 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/A_grave.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+grave.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/A_grave.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/A_grave.ss01.glif new file mode 100644 index 00000000..3ff509c8 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/A_grave.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A.ss01+grave.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/A_iecyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/A_iecyr.glif new file mode 100644 index 00000000..cdd0ee05 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/A_iecyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + AE + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/A_macron.glif b/sources/FixelDisplay-Thin.ufo/glyphs/A_macron.glif new file mode 100644 index 00000000..02228ff9 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/A_macron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+macron.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/A_macron.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/A_macron.ss01.glif new file mode 100644 index 00000000..1ba586d3 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/A_macron.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A.ss01+macron.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/A_ogonek.glif b/sources/FixelDisplay-Thin.ufo/glyphs/A_ogonek.glif new file mode 100644 index 00000000..f1806844 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/A_ogonek.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+ogonek + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/A_ogonek.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/A_ogonek.ss01.glif new file mode 100644 index 00000000..1d85c62a --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/A_ogonek.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A.ss01+ogonek + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/A_ring.glif b/sources/FixelDisplay-Thin.ufo/glyphs/A_ring.glif new file mode 100644 index 00000000..ce6f63ce --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/A_ring.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+ring.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/A_ring.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/A_ring.ss01.glif new file mode 100644 index 00000000..3467d71e --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/A_ring.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A.ss01+ring.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/A_tilde.glif b/sources/FixelDisplay-Thin.ufo/glyphs/A_tilde.glif new file mode 100644 index 00000000..951026e0 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/A_tilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+tilde.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/A_tilde.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/A_tilde.ss01.glif new file mode 100644 index 00000000..73070954 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/A_tilde.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A.ss01+tilde.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/B_.glif b/sources/FixelDisplay-Thin.ufo/glyphs/B_.glif new file mode 100644 index 00000000..eeffb715 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/B_.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/B_e-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/B_e-cy.glif new file mode 100644 index 00000000..c7224cf9 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/B_e-cy.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + B-10 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/C_.glif b/sources/FixelDisplay-Thin.ufo/glyphs/C_.glif new file mode 100644 index 00000000..c7e0795d --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/C_.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/C_R_.glif b/sources/FixelDisplay-Thin.ufo/glyphs/C_R_.glif new file mode 100644 index 00000000..a38a285e --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/C_R_.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/C_acute.glif b/sources/FixelDisplay-Thin.ufo/glyphs/C_acute.glif new file mode 100644 index 00000000..293121af --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/C_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+acute.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/C_caron.glif b/sources/FixelDisplay-Thin.ufo/glyphs/C_caron.glif new file mode 100644 index 00000000..c849b116 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/C_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+caron.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/C_cedilla.glif b/sources/FixelDisplay-Thin.ufo/glyphs/C_cedilla.glif new file mode 100644 index 00000000..761fd71d --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/C_cedilla.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+cedilla + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/C_che-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/C_che-cy.glif new file mode 100644 index 00000000..57316603 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/C_che-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ч + com.fontlab.metricsRight + Ч + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/C_circumflex.glif b/sources/FixelDisplay-Thin.ufo/glyphs/C_circumflex.glif new file mode 100644 index 00000000..dae06697 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/C_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+circumflex.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/C_dotaccent.glif b/sources/FixelDisplay-Thin.ufo/glyphs/C_dotaccent.glif new file mode 100644 index 00000000..3c48fe5a --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/C_dotaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+dotaccent.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/C_he-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/C_he-cy.glif new file mode 100644 index 00000000..95737ebb --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/C_he-cy.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/C_heabkhcyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/C_heabkhcyr.glif new file mode 100644 index 00000000..837995ac --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/C_heabkhcyr.glif @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + |Schwa + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/C_heabkhtailcyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/C_heabkhtailcyr.glif new file mode 100644 index 00000000..77e78b3b --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/C_heabkhtailcyr.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Cheabkhcyr + com.fontlab.metricsRight + Cheabkhcyr + com.fontlab.recipe + Cheabkhcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/C_hedieresiscyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/C_hedieresiscyr.glif new file mode 100644 index 00000000..90beb0a2 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/C_hedieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Che-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/C_hekhakascyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/C_hekhakascyr.glif new file mode 100644 index 00000000..27a745cf --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/C_hekhakascyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ч + com.fontlab.metricsRight + H + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/C_hetailcyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/C_hetailcyr.glif new file mode 100644 index 00000000..0abde103 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/C_hetailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ч + com.fontlab.metricsRight + Entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/C_hevertcyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/C_hevertcyr.glif new file mode 100644 index 00000000..76bd271f --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/C_hevertcyr.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ч + com.fontlab.metricsRight + Н + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/C_rossedO_-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/C_rossedO_-cy.glif new file mode 100644 index 00000000..bb2f6ce7 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/C_rossedO_-cy.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + com.fontlab.recipe + O + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/D_.glif b/sources/FixelDisplay-Thin.ufo/glyphs/D_.glif new file mode 100644 index 00000000..18f00320 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/D_.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/D_caron.glif b/sources/FixelDisplay-Thin.ufo/glyphs/D_caron.glif new file mode 100644 index 00000000..40018634 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/D_caron.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + D+caron.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/D_checyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/D_checyr.glif new file mode 100644 index 00000000..69ff322d --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/D_checyr.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Д+10 + com.fontlab.metricsRight + Д + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/D_croat.glif b/sources/FixelDisplay-Thin.ufo/glyphs/D_croat.glif new file mode 100644 index 00000000..1e20599b --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/D_croat.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + D + com.fontlab.recipe + Eth + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/D_e-cy.B_G_R_.glif b/sources/FixelDisplay-Thin.ufo/glyphs/D_e-cy.B_G_R_.glif new file mode 100644 index 00000000..d2a8c048 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/D_e-cy.B_G_R_.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + l() + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/D_e-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/D_e-cy.glif new file mode 100644 index 00000000..b0753b81 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/D_e-cy.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/D_eS_oft-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/D_eS_oft-cy.glif new file mode 100644 index 00000000..b2cb1f48 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/D_eS_oft-cy.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Д + com.fontlab.metricsRight + Ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/D_ekomicyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/D_ekomicyr.glif new file mode 100644 index 00000000..883b22b2 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/D_ekomicyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.metricsLeft + |P + com.fontlab.metricsRight + H + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/D_elta.glif b/sources/FixelDisplay-Thin.ufo/glyphs/D_elta.glif new file mode 100644 index 00000000..6a8b6ae9 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/D_elta.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + A + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/D_jecyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/D_jecyr.glif new file mode 100644 index 00000000..1a5131b9 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/D_jecyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/D_jekomicyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/D_jekomicyr.glif new file mode 100644 index 00000000..eae84863 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/D_jekomicyr.glif @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Dekomicyr + com.fontlab.metricsRight + Njekomicyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/D_jerv-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/D_jerv-cy.glif new file mode 100644 index 00000000..80522fec --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/D_jerv-cy.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + r() + com.fontlab.metricsRight + O + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/D_oubleO_-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/D_oubleO_-cy.glif new file mode 100644 index 00000000..932c691d --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/D_oubleO_-cy.glif @@ -0,0 +1,91 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + com.fontlab.recipe + O_O + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/D_we-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/D_we-cy.glif new file mode 100644 index 00000000..f47d2b16 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/D_we-cy.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Д + com.fontlab.metricsRight + Д + com.fontlab.recipe + Д + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/D_ze-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/D_ze-cy.glif new file mode 100644 index 00000000..9ad08722 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/D_ze-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + S + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/D_zeR_eversed-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/D_zeR_eversed-cy.glif new file mode 100644 index 00000000..7cbd42d7 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/D_zeR_eversed-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + S + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/D_zeabkhcyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/D_zeabkhcyr.glif new file mode 100644 index 00000000..d5e53325 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/D_zeabkhcyr.glif @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + З-10 + com.fontlab.metricsRight + З-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/D_zelo-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/D_zelo-cy.glif new file mode 100644 index 00000000..e0396395 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/D_zelo-cy.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/D_zhecyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/D_zhecyr.glif new file mode 100644 index 00000000..62ddf9f4 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/D_zhecyr.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/D_zjekomicyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/D_zjekomicyr.glif new file mode 100644 index 00000000..6dfef68f --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/D_zjekomicyr.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + З-10 + com.fontlab.metricsRight + Ц-5 + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/D_zwe-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/D_zwe-cy.glif new file mode 100644 index 00000000..984ee653 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/D_zwe-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + S + com.fontlab.metricsRight + S + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/D_zze-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/D_zze-cy.glif new file mode 100644 index 00000000..30d0cb8c --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/D_zze-cy.glif @@ -0,0 +1,84 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Д + com.fontlab.metricsRight + Д-20 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/D_zzhecyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/D_zzhecyr.glif new file mode 100644 index 00000000..4c5a01de --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/D_zzhecyr.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Д + com.fontlab.metricsRight + Ж + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/E_-cy.accented.glif b/sources/FixelDisplay-Thin.ufo/glyphs/E_-cy.accented.glif new file mode 100644 index 00000000..ee451452 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/E_-cy.accented.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+acute.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/E_-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/E_-cy.glif new file mode 100644 index 00000000..496b26b5 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/E_-cy.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + C + com.fontlab.metricsRight + C + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/E_.glif b/sources/FixelDisplay-Thin.ufo/glyphs/E_.glif new file mode 100644 index 00000000..73394725 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/E_.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + com.fontlab.metricsRight + F+10 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/E_acute.glif b/sources/FixelDisplay-Thin.ufo/glyphs/E_acute.glif new file mode 100644 index 00000000..b488dbc1 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/E_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+acute.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/E_breve.glif b/sources/FixelDisplay-Thin.ufo/glyphs/E_breve.glif new file mode 100644 index 00000000..ecfabf47 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/E_breve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+breve.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/E_caron.glif b/sources/FixelDisplay-Thin.ufo/glyphs/E_caron.glif new file mode 100644 index 00000000..896bbd72 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/E_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+caron.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/E_circumflex.glif b/sources/FixelDisplay-Thin.ufo/glyphs/E_circumflex.glif new file mode 100644 index 00000000..d08f10c0 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/E_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+circumflex.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/E_dieresis.glif b/sources/FixelDisplay-Thin.ufo/glyphs/E_dieresis.glif new file mode 100644 index 00000000..1cf55c99 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/E_dieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+dieresiscase.alt + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/E_dotaccent.glif b/sources/FixelDisplay-Thin.ufo/glyphs/E_dotaccent.glif new file mode 100644 index 00000000..5b745d53 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/E_dotaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+dotaccent.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/E_f-cy.B_G_R_.glif b/sources/FixelDisplay-Thin.ufo/glyphs/E_f-cy.B_G_R_.glif new file mode 100644 index 00000000..830c0d44 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/E_f-cy.B_G_R_.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/E_f-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/E_f-cy.glif new file mode 100644 index 00000000..0ef3d533 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/E_f-cy.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/E_grave.glif b/sources/FixelDisplay-Thin.ufo/glyphs/E_grave.glif new file mode 100644 index 00000000..0e124fb9 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/E_grave.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+grave.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/E_iotifiedcyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/E_iotifiedcyr.glif new file mode 100644 index 00000000..56cae952 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/E_iotifiedcyr.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + C + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/E_l-cy.B_G_R_.glif b/sources/FixelDisplay-Thin.ufo/glyphs/E_l-cy.B_G_R_.glif new file mode 100644 index 00000000..3d7815f9 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/E_l-cy.B_G_R_.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + A + com.fontlab.metricsRight + l() + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/E_l-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/E_l-cy.glif new file mode 100644 index 00000000..e7fa69b2 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/E_l-cy.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/E_lS_oft-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/E_lS_oft-cy.glif new file mode 100644 index 00000000..10eb2631 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/E_lS_oft-cy.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/E_lhookcyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/E_lhookcyr.glif new file mode 100644 index 00000000..ad289c0d --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/E_lhookcyr.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Л + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/E_lmiddlehookcyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/E_lmiddlehookcyr.glif new file mode 100644 index 00000000..f1fdd908 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/E_lmiddlehookcyr.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Shhacyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/E_lsharptailcyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/E_lsharptailcyr.glif new file mode 100644 index 00000000..dab2e68b --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/E_lsharptailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Ensharptailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/E_lsmallcyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/E_lsmallcyr.glif new file mode 100644 index 00000000..2e1c6b9f --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/E_lsmallcyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + el-cy.BGR + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/E_ltailcyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/E_ltailcyr.glif new file mode 100644 index 00000000..6aa46c98 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/E_ltailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/E_m-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/E_m-cy.glif new file mode 100644 index 00000000..d109be21 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/E_m-cy.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + M + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/E_m-cy.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/E_m-cy.ss01.glif new file mode 100644 index 00000000..24c162f2 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/E_m-cy.ss01.glif @@ -0,0 +1,13 @@ + + + + + + + + + com.fontlab.recipe + M + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/E_mS_oft-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/E_mS_oft-cy.glif new file mode 100644 index 00000000..b31bae4b --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/E_mS_oft-cy.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + M + com.fontlab.metricsRight + Ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/E_macron.glif b/sources/FixelDisplay-Thin.ufo/glyphs/E_macron.glif new file mode 100644 index 00000000..ef401265 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/E_macron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+macron.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/E_msharptailcyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/E_msharptailcyr.glif new file mode 100644 index 00000000..d72102df --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/E_msharptailcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Н + com.fontlab.metricsRight + Ensharptailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/E_n-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/E_n-cy.glif new file mode 100644 index 00000000..4f5ffd21 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/E_n-cy.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + H + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/E_ng.glif b/sources/FixelDisplay-Thin.ufo/glyphs/E_ng.glif new file mode 100644 index 00000000..45fcc68d --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/E_ng.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + N + com.fontlab.metricsRight + l() + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/E_ng.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/E_ng.ss01.glif new file mode 100644 index 00000000..6be56b93 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/E_ng.ss01.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + N.ss01 + com.fontlab.metricsRight + J.ss01 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/E_ngecyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/E_ngecyr.glif new file mode 100644 index 00000000..ce4b4f49 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/E_ngecyr.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/E_nhookcyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/E_nhookcyr.glif new file mode 100644 index 00000000..49dcc445 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/E_nhookcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/E_nhookleftcyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/E_nhookleftcyr.glif new file mode 100644 index 00000000..5dcf1c2c --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/E_nhookleftcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + r()-159 + com.fontlab.metricsRight + H + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/E_nmiddlehookcyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/E_nmiddlehookcyr.glif new file mode 100644 index 00000000..3ad10c1a --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/E_nmiddlehookcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Shhacyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/E_nsharptailcyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/E_nsharptailcyr.glif new file mode 100644 index 00000000..ba7e3999 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/E_nsharptailcyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Н + com.fontlab.metricsRight + Д + com.fontlab.recipe + Entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/E_ntailcyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/E_ntailcyr.glif new file mode 100644 index 00000000..5e0c35d4 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/E_ntailcyr.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Ц + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/E_ogonek.glif b/sources/FixelDisplay-Thin.ufo/glyphs/E_ogonek.glif new file mode 100644 index 00000000..ff765fcc --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/E_ogonek.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+ogonek + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/E_r-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/E_r-cy.glif new file mode 100644 index 00000000..86323a38 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/E_r-cy.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + P + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/E_reversed-cy.accented.glif b/sources/FixelDisplay-Thin.ufo/glyphs/E_reversed-cy.accented.glif new file mode 100644 index 00000000..88847fb3 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/E_reversed-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Э+acute.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/E_reversed-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/E_reversed-cy.glif new file mode 100644 index 00000000..05181e3f --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/E_reversed-cy.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |C + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/E_reverseddieresiscyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/E_reverseddieresiscyr.glif new file mode 100644 index 00000000..781fce77 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/E_reverseddieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ereversed-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/E_rtickcyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/E_rtickcyr.glif new file mode 100644 index 00000000..986c22bc --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/E_rtickcyr.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + P + com.fontlab.metricsRight + P + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/E_s-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/E_s-cy.glif new file mode 100644 index 00000000..28c48e83 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/E_s-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/E_stailcyr.B_S_H_.glif b/sources/FixelDisplay-Thin.ufo/glyphs/E_stailcyr.B_S_H_.glif new file mode 100644 index 00000000..9f967524 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/E_stailcyr.B_S_H_.glif @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + C + com.fontlab.metricsRight + C + com.fontlab.recipe + C + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/E_stailcyr.C_H_U_.glif b/sources/FixelDisplay-Thin.ufo/glyphs/E_stailcyr.C_H_U_.glif new file mode 100644 index 00000000..4037b450 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/E_stailcyr.C_H_U_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+cedilla.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/E_stailcyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/E_stailcyr.glif new file mode 100644 index 00000000..88cc4450 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/E_stailcyr.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + С + com.fontlab.metricsRight + С + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/E_th.glif b/sources/FixelDisplay-Thin.ufo/glyphs/E_th.glif new file mode 100644 index 00000000..3bef6d36 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/E_th.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + D + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/F_.glif b/sources/FixelDisplay-Thin.ufo/glyphs/F_.glif new file mode 100644 index 00000000..10ecb12f --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/F_.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/F_itacyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/F_itacyr.glif new file mode 100644 index 00000000..d7f75862 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/F_itacyr.glif @@ -0,0 +1,78 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + com.fontlab.recipe + Obarcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/G_.glif b/sources/FixelDisplay-Thin.ufo/glyphs/G_.glif new file mode 100644 index 00000000..6876da9d --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/G_.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O+18 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/G_.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/G_.ss01.glif new file mode 100644 index 00000000..93f73c75 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/G_.ss01.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O+10 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/G_acute.glif b/sources/FixelDisplay-Thin.ufo/glyphs/G_acute.glif new file mode 100644 index 00000000..910de728 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/G_acute.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + G+acute.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/G_acute.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/G_acute.ss01.glif new file mode 100644 index 00000000..f7e9bb34 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/G_acute.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G.ss01+acute.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/G_breve.glif b/sources/FixelDisplay-Thin.ufo/glyphs/G_breve.glif new file mode 100644 index 00000000..4a55d426 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/G_breve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G+breve.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/G_breve.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/G_breve.ss01.glif new file mode 100644 index 00000000..fdc1c007 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/G_breve.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G.ss01+breve.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/G_circumflex.glif b/sources/FixelDisplay-Thin.ufo/glyphs/G_circumflex.glif new file mode 100644 index 00000000..bdb77161 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/G_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G+circumflex.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/G_circumflex.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/G_circumflex.ss01.glif new file mode 100644 index 00000000..6eec7980 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/G_circumflex.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G.ss01+circumflex.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/G_commaaccent.glif b/sources/FixelDisplay-Thin.ufo/glyphs/G_commaaccent.glif new file mode 100644 index 00000000..4e5f8395 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/G_commaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G+commaaccentcomb + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/G_commaaccent.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/G_commaaccent.ss01.glif new file mode 100644 index 00000000..480810fd --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/G_commaaccent.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G.ss01+commaaccentcomb + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/G_dotaccent.glif b/sources/FixelDisplay-Thin.ufo/glyphs/G_dotaccent.glif new file mode 100644 index 00000000..6f1cb345 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/G_dotaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G+dotaccent.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/G_dotaccent.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/G_dotaccent.ss01.glif new file mode 100644 index 00000000..bd87d489 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/G_dotaccent.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G.ss01+dotaccent.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/G_e-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/G_e-cy.glif new file mode 100644 index 00000000..9c6e9a4f --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/G_e-cy.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + T + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/G_ehookcyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/G_ehookcyr.glif new file mode 100644 index 00000000..93ad373c --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/G_ehookcyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Г + com.fontlab.metricsRight + Tshecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/G_ehookstrokecyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/G_ehookstrokecyr.glif new file mode 100644 index 00000000..317169f1 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/G_ehookstrokecyr.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Gestrokecyr + com.fontlab.metricsRight + Gestrokecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/G_ermandbls.glif b/sources/FixelDisplay-Thin.ufo/glyphs/G_ermandbls.glif new file mode 100644 index 00000000..fa6b8453 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/G_ermandbls.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + U + com.fontlab.metricsRight + B-5 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/G_estrokecyr.B_S_H_.glif b/sources/FixelDisplay-Thin.ufo/glyphs/G_estrokecyr.B_S_H_.glif new file mode 100644 index 00000000..571e6134 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/G_estrokecyr.B_S_H_.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + F + com.fontlab.metricsRight + Gestrokecyr + com.fontlab.recipe + Gestrokecyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/G_estrokecyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/G_estrokecyr.glif new file mode 100644 index 00000000..e8027792 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/G_estrokecyr.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + Г + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/G_etailcyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/G_etailcyr.glif new file mode 100644 index 00000000..95730f3e --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/G_etailcyr.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Г + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/G_heupturn-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/G_heupturn-cy.glif new file mode 100644 index 00000000..6e48eede --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/G_heupturn-cy.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Г + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/G_jecyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/G_jecyr.glif new file mode 100644 index 00000000..44ccb2d1 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/G_jecyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ge-cy+acute.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/H_.glif b/sources/FixelDisplay-Thin.ufo/glyphs/H_.glif new file mode 100644 index 00000000..48751cbc --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/H_.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + com.fontlab.metricsRight + I + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/H_a-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/H_a-cy.glif new file mode 100644 index 00000000..ee20c98e --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/H_a-cy.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + X + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/H_a-cy.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/H_a-cy.ss01.glif new file mode 100644 index 00000000..92d6457f --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/H_a-cy.ss01.glif @@ -0,0 +1,14 @@ + + + + + + + + + + com.fontlab.recipe + X + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/H_aabkhcyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/H_aabkhcyr.glif new file mode 100644 index 00000000..a167421e --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/H_aabkhcyr.glif @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/H_ahookcyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/H_ahookcyr.glif new file mode 100644 index 00000000..553faaa0 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/H_ahookcyr.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + X + com.fontlab.metricsRight + X + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/H_ardsign-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/H_ardsign-cy.glif new file mode 100644 index 00000000..e3202009 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/H_ardsign-cy.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + Ь + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/H_astrokecyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/H_astrokecyr.glif new file mode 100644 index 00000000..ecfa2ccf --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/H_astrokecyr.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + X + com.fontlab.metricsRight + X + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/H_bar.glif b/sources/FixelDisplay-Thin.ufo/glyphs/H_bar.glif new file mode 100644 index 00000000..3db76229 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/H_bar.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + r() + com.fontlab.metricsRight + H + com.schriftgestaltung.Glyphs.rightMetricsKey + H + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/H_circumflex.glif b/sources/FixelDisplay-Thin.ufo/glyphs/H_circumflex.glif new file mode 100644 index 00000000..d36dd8b1 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/H_circumflex.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + H+circumflex.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/H_we-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/H_we-cy.glif new file mode 100644 index 00000000..b06aa336 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/H_we-cy.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Iota-cy + com.fontlab.metricsRight + Tshecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/I_-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/I_-cy.glif new file mode 100644 index 00000000..2497d53f --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/I_-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/I_.glif b/sources/FixelDisplay-Thin.ufo/glyphs/I_.glif new file mode 100644 index 00000000..e9201f3f --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/I_.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/I_J_.glif b/sources/FixelDisplay-Thin.ufo/glyphs/I_J_.glif new file mode 100644 index 00000000..d1b3918f --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/I_J_.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + I_J + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/I_a-cy.accented.glif b/sources/FixelDisplay-Thin.ufo/glyphs/I_a-cy.accented.glif new file mode 100644 index 00000000..001852e6 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/I_a-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Я+acute.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/I_a-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/I_a-cy.glif new file mode 100644 index 00000000..fc9d7c88 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/I_a-cy.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |R+10 + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/I_a-cy.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/I_a-cy.ss01.glif new file mode 100644 index 00000000..e83c0f40 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/I_a-cy.ss01.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/I_acute.glif b/sources/FixelDisplay-Thin.ufo/glyphs/I_acute.glif new file mode 100644 index 00000000..582b4a93 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/I_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+acute.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/I_breve.glif b/sources/FixelDisplay-Thin.ufo/glyphs/I_breve.glif new file mode 100644 index 00000000..e5c8aba9 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/I_breve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+breve.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/I_circumflex.glif b/sources/FixelDisplay-Thin.ufo/glyphs/I_circumflex.glif new file mode 100644 index 00000000..2242058b --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/I_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+circumflex.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/I_dieresis.glif b/sources/FixelDisplay-Thin.ufo/glyphs/I_dieresis.glif new file mode 100644 index 00000000..a9b41bcf --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/I_dieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+dieresiscase.alt + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/I_dieresiscyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/I_dieresiscyr.glif new file mode 100644 index 00000000..9b76a3a9 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/I_dieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ii-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/I_dotaccent.glif b/sources/FixelDisplay-Thin.ufo/glyphs/I_dotaccent.glif new file mode 100644 index 00000000..05c702d0 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/I_dotaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+dotaccent.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/I_e-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/I_e-cy.glif new file mode 100644 index 00000000..c84b6693 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/I_e-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/I_ebrevecyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/I_ebrevecyr.glif new file mode 100644 index 00000000..93276325 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/I_ebrevecyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+breve.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/I_egravecyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/I_egravecyr.glif new file mode 100644 index 00000000..5b2b6ce5 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/I_egravecyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+grave.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/I_grave.glif b/sources/FixelDisplay-Thin.ufo/glyphs/I_grave.glif new file mode 100644 index 00000000..c69c6a76 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/I_grave.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+grave.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/I_gravecyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/I_gravecyr.glif new file mode 100644 index 00000000..30598fe8 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/I_gravecyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ii-cy+grave.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/I_i-cy.accented.glif b/sources/FixelDisplay-Thin.ufo/glyphs/I_i-cy.accented.glif new file mode 100644 index 00000000..96d4faa5 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/I_i-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + И+acute.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/I_i-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/I_i-cy.glif new file mode 100644 index 00000000..68f823ef --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/I_i-cy.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/I_ishort-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/I_ishort-cy.glif new file mode 100644 index 00000000..4c129b5c --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/I_ishort-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + uni0418+breve.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/I_macron.glif b/sources/FixelDisplay-Thin.ufo/glyphs/I_macron.glif new file mode 100644 index 00000000..ebe67582 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/I_macron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+macron.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/I_macroncyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/I_macroncyr.glif new file mode 100644 index 00000000..bb503c70 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/I_macroncyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ii-cy+macron.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/I_o-cy.accented.glif b/sources/FixelDisplay-Thin.ufo/glyphs/I_o-cy.accented.glif new file mode 100644 index 00000000..7cc1c8de --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/I_o-cy.accented.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + com.fontlab.recipe + E+dieresis.case+acute.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/I_o-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/I_o-cy.glif new file mode 100644 index 00000000..0d67a406 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/I_o-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Edieresis + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/I_ogonek.glif b/sources/FixelDisplay-Thin.ufo/glyphs/I_ogonek.glif new file mode 100644 index 00000000..e79ee45b --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/I_ogonek.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+ogonek + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/I_ota-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/I_ota-cy.glif new file mode 100644 index 00000000..f132428a --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/I_ota-cy.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |J + com.fontlab.metricsRight + |J + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/I_otifiedA_-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/I_otifiedA_-cy.glif new file mode 100644 index 00000000..e7c8811c --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/I_otifiedA_-cy.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + com.fontlab.metricsRight + A + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/I_shortsharptailcyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/I_shortsharptailcyr.glif new file mode 100644 index 00000000..77a87d68 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/I_shortsharptailcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Й + com.fontlab.metricsRight + Ensharptailcyr + com.fontlab.recipe + Й + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/I_tilde.glif b/sources/FixelDisplay-Thin.ufo/glyphs/I_tilde.glif new file mode 100644 index 00000000..f9195cb0 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/I_tilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+tilde.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/I_u-cy.accented.glif b/sources/FixelDisplay-Thin.ufo/glyphs/I_u-cy.accented.glif new file mode 100644 index 00000000..ca453b70 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/I_u-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ю+acute.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/I_u-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/I_u-cy.glif new file mode 100644 index 00000000..c50c5691 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/I_u-cy.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/I_zhitsacyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/I_zhitsacyr.glif new file mode 100644 index 00000000..5eba6952 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/I_zhitsacyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + V + com.fontlab.metricsRight + + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/I_zhitsagravedblcyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/I_zhitsagravedblcyr.glif new file mode 100644 index 00000000..455c5dad --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/I_zhitsagravedblcyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + com.fontlab.metricsLeft + Izhitsacyr + com.fontlab.metricsRight + Izhitsacyr + com.fontlab.recipe + Izhitsacyr+hungarumlaut.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/J_.glif b/sources/FixelDisplay-Thin.ufo/glyphs/J_.glif new file mode 100644 index 00000000..330e8a80 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/J_.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + U + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/J_.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/J_.ss01.glif new file mode 100644 index 00000000..fe177afd --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/J_.ss01.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + U + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/J_circumflex.glif b/sources/FixelDisplay-Thin.ufo/glyphs/J_circumflex.glif new file mode 100644 index 00000000..31a81d96 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/J_circumflex.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + J+circumflex.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/J_circumflex.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/J_circumflex.ss01.glif new file mode 100644 index 00000000..73a1969c --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/J_circumflex.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + J.ss01+circumflex.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/J_ecyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/J_ecyr.glif new file mode 100644 index 00000000..5c5c746a --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/J_ecyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsLeft + J + com.fontlab.metricsRight + J + com.fontlab.recipe + J + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/K_.glif b/sources/FixelDisplay-Thin.ufo/glyphs/K_.glif new file mode 100644 index 00000000..7d357ddb --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/K_.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/K_.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/K_.ss01.glif new file mode 100644 index 00000000..e4a08fe3 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/K_.ss01.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/K_a-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/K_a-cy.glif new file mode 100644 index 00000000..1de3020a --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/K_a-cy.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.recipe + K + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/K_a-cy.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/K_a-cy.ss01.glif new file mode 100644 index 00000000..f8a8fe9a --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/K_a-cy.ss01.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.recipe + K + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/K_aaleutcyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/K_aaleutcyr.glif new file mode 100644 index 00000000..4b01e73b --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/K_aaleutcyr.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + K + com.fontlab.metricsRight + K + com.fontlab.recipe + K + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/K_abashkcyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/K_abashkcyr.glif new file mode 100644 index 00000000..dc0f061c --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/K_abashkcyr.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Hardsign-cy + com.fontlab.metricsRight + K + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/K_ahookcyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/K_ahookcyr.glif new file mode 100644 index 00000000..8739f20f --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/K_ahookcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + K + com.fontlab.metricsRight + Djecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/K_astrokecyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/K_astrokecyr.glif new file mode 100644 index 00000000..6bd36d56 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/K_astrokecyr.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Yatcyr + com.fontlab.metricsRight + K + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/K_atailcyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/K_atailcyr.glif new file mode 100644 index 00000000..cc54a25f --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/K_atailcyr.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + К-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/K_averticalstrokecyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/K_averticalstrokecyr.glif new file mode 100644 index 00000000..11728c0b --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/K_averticalstrokecyr.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + K + com.fontlab.metricsRight + Ж + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/K_commaaccent.glif b/sources/FixelDisplay-Thin.ufo/glyphs/K_commaaccent.glif new file mode 100644 index 00000000..a54f5362 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/K_commaaccent.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + K+commaaccentcomb + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/K_commaaccent.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/K_commaaccent.ss01.glif new file mode 100644 index 00000000..51bc4c68 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/K_commaaccent.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + K.ss01+commaaccentcomb + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/K_jecyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/K_jecyr.glif new file mode 100644 index 00000000..62ec45f3 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/K_jecyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ka-cy+acute.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/K_oppacyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/K_oppacyr.glif new file mode 100644 index 00000000..2cc94670 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/K_oppacyr.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + C-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/K_sicyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/K_sicyr.glif new file mode 100644 index 00000000..931db74f --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/K_sicyr.glif @@ -0,0 +1,98 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + З-10 + com.fontlab.metricsRight + З + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/L_.glif b/sources/FixelDisplay-Thin.ufo/glyphs/L_.glif new file mode 100644 index 00000000..8fac832a --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/L_.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/L_acute.glif b/sources/FixelDisplay-Thin.ufo/glyphs/L_acute.glif new file mode 100644 index 00000000..a9bbbf8c --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/L_acute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + L+acute.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/L_caron.glif b/sources/FixelDisplay-Thin.ufo/glyphs/L_caron.glif new file mode 100644 index 00000000..9a99c171 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/L_caron.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + com.fontlab.recipe + L+caron.salt + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/L_commaaccent.glif b/sources/FixelDisplay-Thin.ufo/glyphs/L_commaaccent.glif new file mode 100644 index 00000000..51e94f55 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/L_commaaccent.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + L+commaaccentcomb + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/L_dot.glif b/sources/FixelDisplay-Thin.ufo/glyphs/L_dot.glif new file mode 100644 index 00000000..662cc4a1 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/L_dot.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + com.fontlab.metricsRight + L + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/L_hacyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/L_hacyr.glif new file mode 100644 index 00000000..692fd865 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/L_hacyr.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + X + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/L_jecyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/L_jecyr.glif new file mode 100644 index 00000000..47cc38d3 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/L_jecyr.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Ь + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/L_jekomicyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/L_jekomicyr.glif new file mode 100644 index 00000000..e0c15776 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/L_jekomicyr.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Njekomicyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/L_slash.glif b/sources/FixelDisplay-Thin.ufo/glyphs/L_slash.glif new file mode 100644 index 00000000..8bd2a801 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/L_slash.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + L-80 + com.fontlab.metricsRight + L + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/M_.glif b/sources/FixelDisplay-Thin.ufo/glyphs/M_.glif new file mode 100644 index 00000000..b39ceee4 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/M_.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/M_.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/M_.ss01.glif new file mode 100644 index 00000000..6749bc20 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/M_.ss01.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H-25 + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/N_.glif b/sources/FixelDisplay-Thin.ufo/glyphs/N_.glif new file mode 100644 index 00000000..80b772a9 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/N_.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/N_.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/N_.ss01.glif new file mode 100644 index 00000000..015380ad --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/N_.ss01.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H-10 + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/N_U_L_L_.glif b/sources/FixelDisplay-Thin.ufo/glyphs/N_U_L_L_.glif new file mode 100644 index 00000000..1ad177ae --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/N_U_L_L_.glif @@ -0,0 +1,4 @@ + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/N_acute.glif b/sources/FixelDisplay-Thin.ufo/glyphs/N_acute.glif new file mode 100644 index 00000000..e3db16e8 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/N_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N+acute.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/N_acute.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/N_acute.ss01.glif new file mode 100644 index 00000000..0504e77e --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/N_acute.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N.ss01+acute.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/N_caron.glif b/sources/FixelDisplay-Thin.ufo/glyphs/N_caron.glif new file mode 100644 index 00000000..e7bfef41 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/N_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N+caron.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/N_caron.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/N_caron.ss01.glif new file mode 100644 index 00000000..3babb846 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/N_caron.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N.ss01+caron.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/N_commaaccent.glif b/sources/FixelDisplay-Thin.ufo/glyphs/N_commaaccent.glif new file mode 100644 index 00000000..c49eb2ff --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/N_commaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N+commaaccentcomb + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/N_commaaccent.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/N_commaaccent.ss01.glif new file mode 100644 index 00000000..96289870 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/N_commaaccent.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N.ss01+commaaccentcomb + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/N_jecyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/N_jecyr.glif new file mode 100644 index 00000000..75bf870c --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/N_jecyr.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Н + com.fontlab.metricsRight + Ь + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/N_jekomicyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/N_jekomicyr.glif new file mode 100644 index 00000000..1b1f3667 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/N_jekomicyr.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + |u + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/N_tilde.glif b/sources/FixelDisplay-Thin.ufo/glyphs/N_tilde.glif new file mode 100644 index 00000000..ae254280 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/N_tilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N+tilde.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/N_tilde.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/N_tilde.ss01.glif new file mode 100644 index 00000000..5be69527 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/N_tilde.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N.ss01+tilde.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/O_-cy.accented.glif b/sources/FixelDisplay-Thin.ufo/glyphs/O_-cy.accented.glif new file mode 100644 index 00000000..d3e4f227 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/O_-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+acute.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/O_-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/O_-cy.glif new file mode 100644 index 00000000..f1977a98 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/O_-cy.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/O_.glif b/sources/FixelDisplay-Thin.ufo/glyphs/O_.glif new file mode 100644 index 00000000..5c640dcc --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/O_.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/O_B_inocular-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/O_B_inocular-cy.glif new file mode 100644 index 00000000..c89329a7 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/O_B_inocular-cy.glif @@ -0,0 +1,81 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/O_D_oubleM_onocular-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/O_D_oubleM_onocular-cy.glif new file mode 100644 index 00000000..ccb5ad56 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/O_D_oubleM_onocular-cy.glif @@ -0,0 +1,119 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + com.fontlab.recipe + DoubleO-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/O_E_.glif b/sources/FixelDisplay-Thin.ufo/glyphs/O_E_.glif new file mode 100644 index 00000000..0b84f006 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/O_E_.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + E + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/O_M_onocular-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/O_M_onocular-cy.glif new file mode 100644 index 00000000..795c670d --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/O_M_onocular-cy.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/O_acute.glif b/sources/FixelDisplay-Thin.ufo/glyphs/O_acute.glif new file mode 100644 index 00000000..c12435ce --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/O_acute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+acute.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/O_barcyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/O_barcyr.glif new file mode 100644 index 00000000..6b21bf4f --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/O_barcyr.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + r() + com.fontlab.metricsRight + O + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/O_bardieresiscyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/O_bardieresiscyr.glif new file mode 100644 index 00000000..6aed65dc --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/O_bardieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Obarcyr+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/O_breve.glif b/sources/FixelDisplay-Thin.ufo/glyphs/O_breve.glif new file mode 100644 index 00000000..af81669b --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/O_breve.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+breve.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/O_circumflex.glif b/sources/FixelDisplay-Thin.ufo/glyphs/O_circumflex.glif new file mode 100644 index 00000000..4c985ae8 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/O_circumflex.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+circumflex.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/O_dieresis.glif b/sources/FixelDisplay-Thin.ufo/glyphs/O_dieresis.glif new file mode 100644 index 00000000..aea412f6 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/O_dieresis.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+dieresis.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/O_dieresiscyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/O_dieresiscyr.glif new file mode 100644 index 00000000..f42dae74 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/O_dieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/O_grave.glif b/sources/FixelDisplay-Thin.ufo/glyphs/O_grave.glif new file mode 100644 index 00000000..936dc834 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/O_grave.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+grave.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/O_hungarumlaut.glif b/sources/FixelDisplay-Thin.ufo/glyphs/O_hungarumlaut.glif new file mode 100644 index 00000000..43b66e13 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/O_hungarumlaut.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+hungarumlaut.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/O_macron.glif b/sources/FixelDisplay-Thin.ufo/glyphs/O_macron.glif new file mode 100644 index 00000000..dbe09ba5 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/O_macron.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+macron.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/O_mega.glif b/sources/FixelDisplay-Thin.ufo/glyphs/O_mega.glif new file mode 100644 index 00000000..04a72774 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/O_mega.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O+10 + com.fontlab.metricsRight + O+10 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/O_megaB_road-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/O_megaB_road-cy.glif new file mode 100644 index 00000000..1b2976e2 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/O_megaB_road-cy.glif @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O+10 + com.fontlab.metricsRight + O+10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/O_megacyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/O_megacyr.glif new file mode 100644 index 00000000..5232ed42 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/O_megacyr.glif @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O+10 + com.fontlab.metricsRight + O+10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/O_megaroundcyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/O_megaroundcyr.glif new file mode 100644 index 00000000..34a06c22 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/O_megaroundcyr.glif @@ -0,0 +1,81 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/O_megatitlocyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/O_megatitlocyr.glif new file mode 100644 index 00000000..f8b26d65 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/O_megatitlocyr.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O+10 + com.fontlab.metricsRight + O+10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/O_slash.glif b/sources/FixelDisplay-Thin.ufo/glyphs/O_slash.glif new file mode 100644 index 00000000..4ccef3c4 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/O_slash.glif @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/O_slashacute.glif b/sources/FixelDisplay-Thin.ufo/glyphs/O_slashacute.glif new file mode 100644 index 00000000..7e59cac7 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/O_slashacute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Oslash+acute.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/O_tcyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/O_tcyr.glif new file mode 100644 index 00000000..dc515437 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/O_tcyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Omegacyr+uni2DEE.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/O_tilde.glif b/sources/FixelDisplay-Thin.ufo/glyphs/O_tilde.glif new file mode 100644 index 00000000..768bc521 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/O_tilde.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+tilde.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/P_.glif b/sources/FixelDisplay-Thin.ufo/glyphs/P_.glif new file mode 100644 index 00000000..1490bd19 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/P_.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/P_alochkacyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/P_alochkacyr.glif new file mode 100644 index 00000000..e7d9c8fb --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/P_alochkacyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/P_e-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/P_e-cy.glif new file mode 100644 index 00000000..2f190046 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/P_e-cy.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/P_ehookcyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/P_ehookcyr.glif new file mode 100644 index 00000000..76e8b5f7 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/P_ehookcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + П + com.fontlab.metricsRight + Shhacyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/P_etailcyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/P_etailcyr.glif new file mode 100644 index 00000000..3df651ee --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/P_etailcyr.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/P_sicyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/P_sicyr.glif new file mode 100644 index 00000000..f562a427 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/P_sicyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + U-20 + com.fontlab.metricsRight + U-20 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/Q_.glif b/sources/FixelDisplay-Thin.ufo/glyphs/Q_.glif new file mode 100644 index 00000000..61cba951 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/Q_.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/Q_.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/Q_.ss01.glif new file mode 100644 index 00000000..18a22aa8 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/Q_.ss01.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/Q_acyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/Q_acyr.glif new file mode 100644 index 00000000..7fc7103c --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/Q_acyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Q + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/R_.glif b/sources/FixelDisplay-Thin.ufo/glyphs/R_.glif new file mode 100644 index 00000000..3a91cb79 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/R_.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/R_acute.glif b/sources/FixelDisplay-Thin.ufo/glyphs/R_acute.glif new file mode 100644 index 00000000..0400b18f --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/R_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + R+acute.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/R_caron.glif b/sources/FixelDisplay-Thin.ufo/glyphs/R_caron.glif new file mode 100644 index 00000000..531ed340 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/R_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + R+caron.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/R_commaaccent.glif b/sources/FixelDisplay-Thin.ufo/glyphs/R_commaaccent.glif new file mode 100644 index 00000000..859faa0b --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/R_commaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + R+commaaccentcomb + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/R_eversedzecyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/R_eversedzecyr.glif new file mode 100644 index 00000000..5fd91562 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/R_eversedzecyr.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + + com.fontlab.metricsRight + + com.fontlab.recipe + З + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/R_hacyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/R_hacyr.glif new file mode 100644 index 00000000..91257f5f --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/R_hacyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + P + com.fontlab.metricsRight + X + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/S_.glif b/sources/FixelDisplay-Thin.ufo/glyphs/S_.glif new file mode 100644 index 00000000..10b48709 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/S_.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/S_acute.glif b/sources/FixelDisplay-Thin.ufo/glyphs/S_acute.glif new file mode 100644 index 00000000..e71483da --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/S_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + S+acute.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/S_caron.glif b/sources/FixelDisplay-Thin.ufo/glyphs/S_caron.glif new file mode 100644 index 00000000..25a7d09e --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/S_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + S+caron.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/S_cedilla.glif b/sources/FixelDisplay-Thin.ufo/glyphs/S_cedilla.glif new file mode 100644 index 00000000..db893715 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/S_cedilla.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + S+cedilla + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/S_chwa.glif b/sources/FixelDisplay-Thin.ufo/glyphs/S_chwa.glif new file mode 100644 index 00000000..4bc8d349 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/S_chwa.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Schwacyr + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/S_chwacyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/S_chwacyr.glif new file mode 100644 index 00000000..c26cc1c1 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/S_chwacyr.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O-10 + com.fontlab.metricsRight + O + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/S_chwadieresiscyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/S_chwadieresiscyr.glif new file mode 100644 index 00000000..50ebde08 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/S_chwadieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Schwacyr+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/S_circumflex.glif b/sources/FixelDisplay-Thin.ufo/glyphs/S_circumflex.glif new file mode 100644 index 00000000..07ddaeb5 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/S_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + S+circumflex.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/S_commaaccent.glif b/sources/FixelDisplay-Thin.ufo/glyphs/S_commaaccent.glif new file mode 100644 index 00000000..82279964 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/S_commaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + S+commaaccentcomb + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/S_emisoftcyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/S_emisoftcyr.glif new file mode 100644 index 00000000..8a74d404 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/S_emisoftcyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Yat + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/S_ha-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/S_ha-cy.glif new file mode 100644 index 00000000..09722640 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/S_ha-cy.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/S_hcha-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/S_hcha-cy.glif new file mode 100644 index 00000000..0ecb956c --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/S_hcha-cy.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Д + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/S_hhacyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/S_hhacyr.glif new file mode 100644 index 00000000..02757747 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/S_hhacyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.metricsLeft + Н + com.fontlab.metricsRight + Tshecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/S_hhatailcyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/S_hhatailcyr.glif new file mode 100644 index 00000000..49b8e336 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/S_hhatailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/S_hwe-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/S_hwe-cy.glif new file mode 100644 index 00000000..565fd392 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/S_hwe-cy.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Щ + com.fontlab.metricsRight + Щ-20 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/S_jekomicyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/S_jekomicyr.glif new file mode 100644 index 00000000..e239bf50 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/S_jekomicyr.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + |Schwa + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/S_oftsign-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/S_oftsign-cy.glif new file mode 100644 index 00000000..4c25a916 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/S_oftsign-cy.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + P + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/T_.glif b/sources/FixelDisplay-Thin.ufo/glyphs/T_.glif new file mode 100644 index 00000000..046d37fc --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/T_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/T_bar.glif b/sources/FixelDisplay-Thin.ufo/glyphs/T_bar.glif new file mode 100644 index 00000000..221f6ce0 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/T_bar.glif @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/T_caron.glif b/sources/FixelDisplay-Thin.ufo/glyphs/T_caron.glif new file mode 100644 index 00000000..794a66d1 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/T_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + T+caron.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/T_cedilla.glif b/sources/FixelDisplay-Thin.ufo/glyphs/T_cedilla.glif new file mode 100644 index 00000000..a32b0934 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/T_cedilla.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + T+cedilla + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/T_che-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/T_che-cy.glif new file mode 100644 index 00000000..c4dfef70 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/T_che-cy.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Tetsecyr-20 + com.fontlab.metricsRight + Ч + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/T_commaaccent.glif b/sources/FixelDisplay-Thin.ufo/glyphs/T_commaaccent.glif new file mode 100644 index 00000000..7ab1aa97 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/T_commaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + T+commaaccentcomb + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/T_e-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/T_e-cy.glif new file mode 100644 index 00000000..d6ea13f0 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/T_e-cy.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + com.fontlab.recipe + T + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/T_eW_ithM_iddleH_ook-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/T_eW_ithM_iddleH_ook-cy.glif new file mode 100644 index 00000000..a07ba71a --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/T_eW_ithM_iddleH_ook-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Djecyr + com.fontlab.metricsRight + Gehookcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/T_etailcyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/T_etailcyr.glif new file mode 100644 index 00000000..adb5f21b --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/T_etailcyr.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/T_etsecyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/T_etsecyr.glif new file mode 100644 index 00000000..daedc64e --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/T_etsecyr.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Tshecyr + com.fontlab.metricsRight + Ц + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/T_horn.glif b/sources/FixelDisplay-Thin.ufo/glyphs/T_horn.glif new file mode 100644 index 00000000..90f07542 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/T_horn.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + P + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/T_jekomicyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/T_jekomicyr.glif new file mode 100644 index 00000000..2072d140 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/T_jekomicyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + Njekomicyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/T_se-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/T_se-cy.glif new file mode 100644 index 00000000..083f5cbf --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/T_se-cy.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Д + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/T_seR_eversed-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/T_seR_eversed-cy.glif new file mode 100644 index 00000000..b2ca8d0a --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/T_seR_eversed-cy.glif @@ -0,0 +1,20 @@ + + + + + + + + + + com.fontlab.metricsLeft + + com.fontlab.metricsRight + H + com.fontlab.recipe + Ц + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/T_shecyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/T_shecyr.glif new file mode 100644 index 00000000..9accba09 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/T_shecyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + n + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/T_sse-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/T_sse-cy.glif new file mode 100644 index 00000000..38308c78 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/T_sse-cy.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + T + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/T_swe-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/T_swe-cy.glif new file mode 100644 index 00000000..4ad4b636 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/T_swe-cy.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Shwe-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/T_we-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/T_we-cy.glif new file mode 100644 index 00000000..1e663d6f --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/T_we-cy.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + T + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/U_-cy.accented.glif b/sources/FixelDisplay-Thin.ufo/glyphs/U_-cy.accented.glif new file mode 100644 index 00000000..2b22b765 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/U_-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + У+acute.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/U_-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/U_-cy.glif new file mode 100644 index 00000000..b40b349b --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/U_-cy.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Y+10 + com.fontlab.metricsRight + Y+5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/U_-cy.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/U_-cy.ss01.glif new file mode 100644 index 00000000..bcd25fd2 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/U_-cy.ss01.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/U_.glif b/sources/FixelDisplay-Thin.ufo/glyphs/U_.glif new file mode 100644 index 00000000..936dc51c --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/U_.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H-10 + com.fontlab.metricsRight + H-10 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/U_acute.glif b/sources/FixelDisplay-Thin.ufo/glyphs/U_acute.glif new file mode 100644 index 00000000..03ffea4d --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/U_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+acute.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/U_acutedblcyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/U_acutedblcyr.glif new file mode 100644 index 00000000..2c06c6b8 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/U_acutedblcyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U-cy+hungarumlaut.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/U_breve.glif b/sources/FixelDisplay-Thin.ufo/glyphs/U_breve.glif new file mode 100644 index 00000000..9bb1bc21 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/U_breve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+breve.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/U_circumflex.glif b/sources/FixelDisplay-Thin.ufo/glyphs/U_circumflex.glif new file mode 100644 index 00000000..cb428125 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/U_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+circumflex.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/U_dieresis.glif b/sources/FixelDisplay-Thin.ufo/glyphs/U_dieresis.glif new file mode 100644 index 00000000..0f3ce1d1 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/U_dieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+dieresis.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/U_dieresiscyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/U_dieresiscyr.glif new file mode 100644 index 00000000..821f6466 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/U_dieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/U_grave.glif b/sources/FixelDisplay-Thin.ufo/glyphs/U_grave.glif new file mode 100644 index 00000000..b22076d4 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/U_grave.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+grave.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/U_hungarumlaut.glif b/sources/FixelDisplay-Thin.ufo/glyphs/U_hungarumlaut.glif new file mode 100644 index 00000000..9c59d22e --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/U_hungarumlaut.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+hungarumlaut.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/U_kM_onograph-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/U_kM_onograph-cy.glif new file mode 100644 index 00000000..e901ecf9 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/U_kM_onograph-cy.glif @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/U_kcyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/U_kcyr.glif new file mode 100644 index 00000000..bb0c2d96 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/U_kcyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + y + com.fontlab.recipe + О_у + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/U_macron.glif b/sources/FixelDisplay-Thin.ufo/glyphs/U_macron.glif new file mode 100644 index 00000000..04e63841 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/U_macron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+macron.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/U_macroncyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/U_macroncyr.glif new file mode 100644 index 00000000..db652625 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/U_macroncyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U-cy+macron.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/U_ogonek.glif b/sources/FixelDisplay-Thin.ufo/glyphs/U_ogonek.glif new file mode 100644 index 00000000..1a05975e --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/U_ogonek.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + U+ogonek + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/U_ring.glif b/sources/FixelDisplay-Thin.ufo/glyphs/U_ring.glif new file mode 100644 index 00000000..a5600f1d --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/U_ring.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+ring.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/U_short-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/U_short-cy.glif new file mode 100644 index 00000000..63554f93 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/U_short-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ucyr+breve.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/U_short-cy.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/U_short-cy.ss01.glif new file mode 100644 index 00000000..175301fc --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/U_short-cy.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ucyr.ss01+breve.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/U_straightcyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/U_straightcyr.glif new file mode 100644 index 00000000..3f09ae52 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/U_straightcyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsRight + Y + com.fontlab.recipe + Y + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/U_straightstrokecyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/U_straightstrokecyr.glif new file mode 100644 index 00000000..5a5c5ce8 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/U_straightstrokecyr.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/U_tilde.glif b/sources/FixelDisplay-Thin.ufo/glyphs/U_tilde.glif new file mode 100644 index 00000000..88b15f97 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/U_tilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+tilde.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/V_.glif b/sources/FixelDisplay-Thin.ufo/glyphs/V_.glif new file mode 100644 index 00000000..2d5690fa --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/V_.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/V_.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/V_.ss01.glif new file mode 100644 index 00000000..cccbd406 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/V_.ss01.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/V_e-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/V_e-cy.glif new file mode 100644 index 00000000..850555be --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/V_e-cy.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + B + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/W_.glif b/sources/FixelDisplay-Thin.ufo/glyphs/W_.glif new file mode 100644 index 00000000..217758d1 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/W_.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/W_.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/W_.ss01.glif new file mode 100644 index 00000000..37911f1c --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/W_.ss01.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |A + com.fontlab.metricsRight + |A + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/W_acute.glif b/sources/FixelDisplay-Thin.ufo/glyphs/W_acute.glif new file mode 100644 index 00000000..2929e5cb --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/W_acute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W+acute.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/W_acute.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/W_acute.ss01.glif new file mode 100644 index 00000000..7d1a1339 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/W_acute.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W.ss01+acute.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/W_circumflex.glif b/sources/FixelDisplay-Thin.ufo/glyphs/W_circumflex.glif new file mode 100644 index 00000000..72099e19 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/W_circumflex.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W+circumflex.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/W_circumflex.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/W_circumflex.ss01.glif new file mode 100644 index 00000000..4e00ad01 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/W_circumflex.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W.ss01+circumflex.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/W_dieresis.glif b/sources/FixelDisplay-Thin.ufo/glyphs/W_dieresis.glif new file mode 100644 index 00000000..defa6929 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/W_dieresis.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + W+dieresis.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/W_dieresis.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/W_dieresis.ss01.glif new file mode 100644 index 00000000..6e323f44 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/W_dieresis.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W.ss01+dieresis.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/W_ecyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/W_ecyr.glif new file mode 100644 index 00000000..3d0a98be --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/W_ecyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/W_grave.glif b/sources/FixelDisplay-Thin.ufo/glyphs/W_grave.glif new file mode 100644 index 00000000..2c604b57 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/W_grave.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W+grave.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/W_grave.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/W_grave.ss01.glif new file mode 100644 index 00000000..d251ce4e --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/W_grave.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W.ss01+grave.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/X_.glif b/sources/FixelDisplay-Thin.ufo/glyphs/X_.glif new file mode 100644 index 00000000..fe761337 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/X_.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/X_.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/X_.ss01.glif new file mode 100644 index 00000000..41cec5cf --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/X_.ss01.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/X_atailcyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/X_atailcyr.glif new file mode 100644 index 00000000..131ab756 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/X_atailcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + X + com.fontlab.metricsRight + Katailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/Y_.glif b/sources/FixelDisplay-Thin.ufo/glyphs/Y_.glif new file mode 100644 index 00000000..d7a76cd2 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/Y_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/Y_.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/Y_.ss01.glif new file mode 100644 index 00000000..8ab49e98 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/Y_.ss01.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/Y_acute.glif b/sources/FixelDisplay-Thin.ufo/glyphs/Y_acute.glif new file mode 100644 index 00000000..c6c1e576 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/Y_acute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y+acute.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/Y_acute.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/Y_acute.ss01.glif new file mode 100644 index 00000000..a33c0b30 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/Y_acute.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y.ss01+acute.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/Y_aecyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/Y_aecyr.glif new file mode 100644 index 00000000..e5c59609 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/Y_aecyr.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Я + com.fontlab.metricsRight + E + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/Y_atI_otified-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/Y_atI_otified-cy.glif new file mode 100644 index 00000000..9f59c9f2 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/Y_atI_otified-cy.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + com.fontlab.metricsRight + Yatcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/Y_atcyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/Y_atcyr.glif new file mode 100644 index 00000000..e9162cde --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/Y_atcyr.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Т + com.fontlab.metricsRight + Ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/Y_circumflex.glif b/sources/FixelDisplay-Thin.ufo/glyphs/Y_circumflex.glif new file mode 100644 index 00000000..ab2c66c1 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/Y_circumflex.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y+circumflex.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/Y_circumflex.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/Y_circumflex.ss01.glif new file mode 100644 index 00000000..ace8aec0 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/Y_circumflex.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y.ss01+circumflex.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/Y_dieresis.glif b/sources/FixelDisplay-Thin.ufo/glyphs/Y_dieresis.glif new file mode 100644 index 00000000..3cc0ab4a --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/Y_dieresis.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y+dieresis.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/Y_dieresis.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/Y_dieresis.ss01.glif new file mode 100644 index 00000000..7ae22201 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/Y_dieresis.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y.ss01+dieresis.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/Y_erN_eutral-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/Y_erN_eutral-cy.glif new file mode 100644 index 00000000..b30c2deb --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/Y_erN_eutral-cy.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Hardsign-cy + com.fontlab.metricsRight + Ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/Y_eru-cy.accented.glif b/sources/FixelDisplay-Thin.ufo/glyphs/Y_eru-cy.accented.glif new file mode 100644 index 00000000..14b2a878 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/Y_eru-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ы+acute.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/Y_eru-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/Y_eru-cy.glif new file mode 100644 index 00000000..4cc15032 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/Y_eru-cy.glif @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/Y_eru-cymacron.glif b/sources/FixelDisplay-Thin.ufo/glyphs/Y_eru-cymacron.glif new file mode 100644 index 00000000..2180d035 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/Y_eru-cymacron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ы+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/Y_eruB_ackY_er-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/Y_eruB_ackY_er-cy.glif new file mode 100644 index 00000000..3f2478ea --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/Y_eruB_ackY_er-cy.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Hardsign + com.fontlab.metricsRight + I + com.fontlab.recipe + Hardsign-cy_I + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/Y_i-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/Y_i-cy.glif new file mode 100644 index 00000000..af7c755f --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/Y_i-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Idieresis + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/Y_longdieresiscyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/Y_longdieresiscyr.glif new file mode 100644 index 00000000..091c1652 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/Y_longdieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Yeru-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/Y_n-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/Y_n-cy.glif new file mode 100644 index 00000000..d682e285 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/Y_n-cy.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |Izhitsa + com.fontlab.metricsRight + |Izhitsa + com.fontlab.recipe + Izhitsa + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/Y_uR_eversed-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/Y_uR_eversed-cy.glif new file mode 100644 index 00000000..ab9957b9 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/Y_uR_eversed-cy.glif @@ -0,0 +1,20 @@ + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + H + com.fontlab.recipe + Ю + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/Y_usB_lended-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/Y_usB_lended-cy.glif new file mode 100644 index 00000000..cb1e8d89 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/Y_usB_lended-cy.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Yusbigcyr + com.fontlab.metricsRight + Yusbigcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/Y_usC_losedlittle-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/Y_usC_losedlittle-cy.glif new file mode 100644 index 00000000..65bffaa2 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/Y_usC_losedlittle-cy.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + A + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/Y_usbigcyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/Y_usbigcyr.glif new file mode 100644 index 00000000..9a3d831f --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/Y_usbigcyr.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ж + com.fontlab.metricsRight + Ж + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/Y_usbigiotifiedcyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/Y_usbigiotifiedcyr.glif new file mode 100644 index 00000000..f65dad68 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/Y_usbigiotifiedcyr.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + Ж + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/Y_usiotifiedC_losedL_ittle-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/Y_usiotifiedC_losedL_ittle-cy.glif new file mode 100644 index 00000000..40cac444 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/Y_usiotifiedC_losedL_ittle-cy.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + A + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/Y_uslittlecyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/Y_uslittlecyr.glif new file mode 100644 index 00000000..8373cb72 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/Y_uslittlecyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + А-5 + com.fontlab.metricsRight + А-5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/Y_uslittleiotifiedcyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/Y_uslittleiotifiedcyr.glif new file mode 100644 index 00000000..526f8e20 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/Y_uslittleiotifiedcyr.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + А-5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/Z_.glif b/sources/FixelDisplay-Thin.ufo/glyphs/Z_.glif new file mode 100644 index 00000000..79710216 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/Z_.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/Z_.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/Z_.ss01.glif new file mode 100644 index 00000000..bed9d799 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/Z_.ss01.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/Z_acute.glif b/sources/FixelDisplay-Thin.ufo/glyphs/Z_acute.glif new file mode 100644 index 00000000..0fa5424b --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/Z_acute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Z+acute.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/Z_acute.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/Z_acute.ss01.glif new file mode 100644 index 00000000..8901e601 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/Z_acute.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Z.ss01+acute.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/Z_caron.glif b/sources/FixelDisplay-Thin.ufo/glyphs/Z_caron.glif new file mode 100644 index 00000000..89235d2e --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/Z_caron.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Z+caron.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/Z_caron.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/Z_caron.ss01.glif new file mode 100644 index 00000000..ea82bd3c --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/Z_caron.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Z.ss01+caron.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/Z_dotaccent.glif b/sources/FixelDisplay-Thin.ufo/glyphs/Z_dotaccent.glif new file mode 100644 index 00000000..933a2705 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/Z_dotaccent.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Z+dotaccent.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/Z_dotaccent.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/Z_dotaccent.ss01.glif new file mode 100644 index 00000000..989fbcdc --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/Z_dotaccent.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Z.ss01+dotaccent.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/Z_e-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/Z_e-cy.glif new file mode 100644 index 00000000..366f8ede --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/Z_e-cy.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |C + com.fontlab.metricsRight + B + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/Z_edieresiscyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/Z_edieresiscyr.glif new file mode 100644 index 00000000..a135dc6b --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/Z_edieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ze-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/Z_emlya-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/Z_emlya-cy.glif new file mode 100644 index 00000000..a255497d --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/Z_emlya-cy.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Z-10 + com.fontlab.metricsRight + Z + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/Z_etailcyr.B_S_H_.glif b/sources/FixelDisplay-Thin.ufo/glyphs/Z_etailcyr.B_S_H_.glif new file mode 100644 index 00000000..7b23278d --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/Z_etailcyr.B_S_H_.glif @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + З + com.fontlab.metricsRight + З + com.fontlab.recipe + Zetailcyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/Z_etailcyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/Z_etailcyr.glif new file mode 100644 index 00000000..5cd65efe --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/Z_etailcyr.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + З + com.fontlab.metricsRight + З + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/Z_he-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/Z_he-cy.glif new file mode 100644 index 00000000..c4438940 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/Z_he-cy.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |K + com.fontlab.metricsRight + K + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/Z_he-cy.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/Z_he-cy.ss01.glif new file mode 100644 index 00000000..afba4380 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/Z_he-cy.ss01.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |K + com.fontlab.metricsRight + K + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/Z_hebrevecyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/Z_hebrevecyr.glif new file mode 100644 index 00000000..aa40d526 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/Z_hebrevecyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Zhe-cy+breve.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/Z_hedieresiscyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/Z_hedieresiscyr.glif new file mode 100644 index 00000000..06b7f7ee --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/Z_hedieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Zhe-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/Z_hetailcyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/Z_hetailcyr.glif new file mode 100644 index 00000000..a068ba25 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/Z_hetailcyr.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ж + com.fontlab.metricsRight + Katailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/Z_hwe-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/Z_hwe-cy.glif new file mode 100644 index 00000000..25e3363c --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/Z_hwe-cy.glif @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + З + com.fontlab.metricsRight + Ж + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/Z_jekomicyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/Z_jekomicyr.glif new file mode 100644 index 00000000..4c68fe68 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/Z_jekomicyr.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Dzjekomicyr + com.fontlab.metricsRight + Njekomicyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/_notdef.glif b/sources/FixelDisplay-Thin.ufo/glyphs/_notdef.glif new file mode 100644 index 00000000..7261060b --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/_notdef.glif @@ -0,0 +1,178 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + =55 + com.schriftgestaltung.Glyphs.rightMetricsKey + =55 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/_perc-circule.glif b/sources/FixelDisplay-Thin.ufo/glyphs/_perc-circule.glif new file mode 100644 index 00000000..2957606c --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/_perc-circule.glif @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.schriftgestaltung.Glyphs.Export + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/a-cy.accented.glif b/sources/FixelDisplay-Thin.ufo/glyphs/a-cy.accented.glif new file mode 100644 index 00000000..dd610ed8 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/a-cy.accented.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+acute + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/a-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/a-cy.glif new file mode 100644 index 00000000..490c9a56 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/a-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/a-cy.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/a-cy.ss01.glif new file mode 100644 index 00000000..a2e9a0e4 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/a-cy.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/a.glif b/sources/FixelDisplay-Thin.ufo/glyphs/a.glif new file mode 100644 index 00000000..91293c59 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/a.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + n-10 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/a.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/a.ss01.glif new file mode 100644 index 00000000..03f1bc41 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/a.ss01.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/aacute.glif b/sources/FixelDisplay-Thin.ufo/glyphs/aacute.glif new file mode 100644 index 00000000..914e1d61 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/aacute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+acute + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/aacute.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/aacute.ss01.glif new file mode 100644 index 00000000..0ec29fd2 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/aacute.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+acute + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/abreve.glif b/sources/FixelDisplay-Thin.ufo/glyphs/abreve.glif new file mode 100644 index 00000000..307a975c --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/abreve.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+breve + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/abreve.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/abreve.ss01.glif new file mode 100644 index 00000000..bcd6a3aa --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/abreve.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+breve + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/abrevecyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/abrevecyr.glif new file mode 100644 index 00000000..f58aff51 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/abrevecyr.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+breve + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/acaron.glif b/sources/FixelDisplay-Thin.ufo/glyphs/acaron.glif new file mode 100644 index 00000000..a2510c0d --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/acaron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+caron + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/acircumflex.glif b/sources/FixelDisplay-Thin.ufo/glyphs/acircumflex.glif new file mode 100644 index 00000000..9cf25001 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/acircumflex.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+circumflex + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/acircumflex.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/acircumflex.ss01.glif new file mode 100644 index 00000000..02b639d3 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/acircumflex.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+circumflex + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/acute.case.glif b/sources/FixelDisplay-Thin.ufo/glyphs/acute.case.glif new file mode 100644 index 00000000..04ec7771 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/acute.case.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/acute.glif b/sources/FixelDisplay-Thin.ufo/glyphs/acute.glif new file mode 100644 index 00000000..67dbae5e --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/acute.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/adieresis.glif b/sources/FixelDisplay-Thin.ufo/glyphs/adieresis.glif new file mode 100644 index 00000000..68863d41 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/adieresis.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+dieresis + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/adieresis.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/adieresis.ss01.glif new file mode 100644 index 00000000..36c9b2a7 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/adieresis.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+dieresis + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/adieresiscyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/adieresiscyr.glif new file mode 100644 index 00000000..244dda13 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/adieresiscyr.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/ae.glif b/sources/FixelDisplay-Thin.ufo/glyphs/ae.glif new file mode 100644 index 00000000..d8b16fed --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/ae.glif @@ -0,0 +1,101 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + a + com.fontlab.metricsRight + e + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/ae.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/ae.ss01.glif new file mode 100644 index 00000000..f605cba7 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/ae.ss01.glif @@ -0,0 +1,96 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + a + com.fontlab.metricsRight + e.ss01 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/aeacute.glif b/sources/FixelDisplay-Thin.ufo/glyphs/aeacute.glif new file mode 100644 index 00000000..282ecbcc --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/aeacute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ae+acute + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/agrave.glif b/sources/FixelDisplay-Thin.ufo/glyphs/agrave.glif new file mode 100644 index 00000000..c2d0d14e --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/agrave.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+grave + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/agrave.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/agrave.ss01.glif new file mode 100644 index 00000000..124153d6 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/agrave.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+grave + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/aiecyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/aiecyr.glif new file mode 100644 index 00000000..3638c099 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/aiecyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ae + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/amacron.glif b/sources/FixelDisplay-Thin.ufo/glyphs/amacron.glif new file mode 100644 index 00000000..b6669c92 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/amacron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+macron + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/amacron.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/amacron.ss01.glif new file mode 100644 index 00000000..42a4a4f7 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/amacron.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+macron + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/ampersand.glif b/sources/FixelDisplay-Thin.ufo/glyphs/ampersand.glif new file mode 100644 index 00000000..f7436c64 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/ampersand.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/aogonek.glif b/sources/FixelDisplay-Thin.ufo/glyphs/aogonek.glif new file mode 100644 index 00000000..a23f8ef5 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/aogonek.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+ogonek + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/aogonek.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/aogonek.ss01.glif new file mode 100644 index 00000000..57733003 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/aogonek.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+ogonek + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/apostrophemod.glif b/sources/FixelDisplay-Thin.ufo/glyphs/apostrophemod.glif new file mode 100644 index 00000000..cfe9c48e --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/apostrophemod.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + apostrophe + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/approxequal.glif b/sources/FixelDisplay-Thin.ufo/glyphs/approxequal.glif new file mode 100644 index 00000000..0ad33c0e --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/approxequal.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/aring.glif b/sources/FixelDisplay-Thin.ufo/glyphs/aring.glif new file mode 100644 index 00000000..3ef691d6 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/aring.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+ring + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/aring.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/aring.ss01.glif new file mode 100644 index 00000000..b8b891c5 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/aring.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+ring + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/arrowdown.case.glif b/sources/FixelDisplay-Thin.ufo/glyphs/arrowdown.case.glif new file mode 100644 index 00000000..66983c42 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/arrowdown.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + arrowup + com.fontlab.metricsRight + arrowup + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/arrowdown.glif b/sources/FixelDisplay-Thin.ufo/glyphs/arrowdown.glif new file mode 100644 index 00000000..1cdd65b4 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/arrowdown.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + arrowup + com.fontlab.metricsRight + arrowup + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/arrowdown.ss01.case.glif b/sources/FixelDisplay-Thin.ufo/glyphs/arrowdown.ss01.case.glif new file mode 100644 index 00000000..b67dc7d2 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/arrowdown.ss01.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + arrowup + com.fontlab.metricsRight + arrowup + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/arrowdown.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/arrowdown.ss01.glif new file mode 100644 index 00000000..682dcb0b --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/arrowdown.ss01.glif @@ -0,0 +1,15 @@ + + + + + + + + + com.fontlab.metricsLeft + arrowup + com.fontlab.metricsRight + arrowup + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/arrowleft.case.glif b/sources/FixelDisplay-Thin.ufo/glyphs/arrowleft.case.glif new file mode 100644 index 00000000..0d59a2ce --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/arrowleft.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + arrowleft + com.fontlab.metricsRight + arrowleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/arrowleft.glif b/sources/FixelDisplay-Thin.ufo/glyphs/arrowleft.glif new file mode 100644 index 00000000..1219f5c6 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/arrowleft.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/arrowleft.ss01.case.glif b/sources/FixelDisplay-Thin.ufo/glyphs/arrowleft.ss01.case.glif new file mode 100644 index 00000000..fa7545c2 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/arrowleft.ss01.case.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + arrowleft + com.fontlab.metricsRight + arrowleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/arrowleft.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/arrowleft.ss01.glif new file mode 100644 index 00000000..60087913 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/arrowleft.ss01.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + arrowleft + com.fontlab.metricsRight + arrowleft + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/arrowright.case.glif b/sources/FixelDisplay-Thin.ufo/glyphs/arrowright.case.glif new file mode 100644 index 00000000..4eb03cc5 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/arrowright.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |arrowleft + com.fontlab.metricsRight + |arrowleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/arrowright.glif b/sources/FixelDisplay-Thin.ufo/glyphs/arrowright.glif new file mode 100644 index 00000000..448fdd09 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/arrowright.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + |arrowleft + com.fontlab.metricsRight + |arrowleft + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/arrowright.ss01.case.glif b/sources/FixelDisplay-Thin.ufo/glyphs/arrowright.ss01.case.glif new file mode 100644 index 00000000..12470d35 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/arrowright.ss01.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |arrowleft + com.fontlab.metricsRight + |arrowleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/arrowright.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/arrowright.ss01.glif new file mode 100644 index 00000000..4da8247a --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/arrowright.ss01.glif @@ -0,0 +1,15 @@ + + + + + + + + + com.fontlab.metricsLeft + |arrowleft + com.fontlab.metricsRight + |arrowleft + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/arrowup.case.glif b/sources/FixelDisplay-Thin.ufo/glyphs/arrowup.case.glif new file mode 100644 index 00000000..fa4db755 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/arrowup.case.glif @@ -0,0 +1,15 @@ + + + + + + + + + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/arrowup.glif b/sources/FixelDisplay-Thin.ufo/glyphs/arrowup.glif new file mode 100644 index 00000000..513dd62a --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/arrowup.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + l() + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/arrowup.ss01.case.glif b/sources/FixelDisplay-Thin.ufo/glyphs/arrowup.ss01.case.glif new file mode 100644 index 00000000..069a1052 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/arrowup.ss01.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + arrowup + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/arrowup.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/arrowup.ss01.glif new file mode 100644 index 00000000..cf0c450c --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/arrowup.ss01.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + arrowup + com.fontlab.metricsRight + l() + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/asciicircum.glif b/sources/FixelDisplay-Thin.ufo/glyphs/asciicircum.glif new file mode 100644 index 00000000..c983f56f --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/asciicircum.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/asciitilde.glif b/sources/FixelDisplay-Thin.ufo/glyphs/asciitilde.glif new file mode 100644 index 00000000..4df8f60c --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/asciitilde.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/asterisk.glif b/sources/FixelDisplay-Thin.ufo/glyphs/asterisk.glif new file mode 100644 index 00000000..c6379c10 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/asterisk.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/at.case.glif b/sources/FixelDisplay-Thin.ufo/glyphs/at.case.glif new file mode 100644 index 00000000..7754576e --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/at.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/at.glif b/sources/FixelDisplay-Thin.ufo/glyphs/at.glif new file mode 100644 index 00000000..66d7bda0 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/at.glif @@ -0,0 +1,92 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/atilde.glif b/sources/FixelDisplay-Thin.ufo/glyphs/atilde.glif new file mode 100644 index 00000000..a931de6c --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/atilde.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+tilde + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/atilde.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/atilde.ss01.glif new file mode 100644 index 00000000..c3480c9e --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/atilde.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+tilde + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/b.glif b/sources/FixelDisplay-Thin.ufo/glyphs/b.glif new file mode 100644 index 00000000..9c591657 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/b.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/b.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/b.ss01.glif new file mode 100644 index 00000000..0ebbda21 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/b.ss01.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/backslash.case.glif b/sources/FixelDisplay-Thin.ufo/glyphs/backslash.case.glif new file mode 100644 index 00000000..3df6d020 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/backslash.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + backslash + com.fontlab.metricsRight + backslash + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/backslash.glif b/sources/FixelDisplay-Thin.ufo/glyphs/backslash.glif new file mode 100644 index 00000000..86659a9f --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/backslash.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/bar.case.glif b/sources/FixelDisplay-Thin.ufo/glyphs/bar.case.glif new file mode 100644 index 00000000..af61ac26 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/bar.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + H-10 + com.fontlab.metricsRight + H-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/bar.glif b/sources/FixelDisplay-Thin.ufo/glyphs/bar.glif new file mode 100644 index 00000000..8138a1e2 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/bar.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H-10 + com.fontlab.metricsRight + H-10 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/be-cy.S_R_B_.glif b/sources/FixelDisplay-Thin.ufo/glyphs/be-cy.S_R_B_.glif new file mode 100644 index 00000000..c7092a71 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/be-cy.S_R_B_.glif @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/be-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/be-cy.glif new file mode 100644 index 00000000..2264c1ba --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/be-cy.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/bishopblack.glif b/sources/FixelDisplay-Thin.ufo/glyphs/bishopblack.glif new file mode 100644 index 00000000..db686ffb --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/bishopblack.glif @@ -0,0 +1,241 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =10 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/bishopwhite.glif b/sources/FixelDisplay-Thin.ufo/glyphs/bishopwhite.glif new file mode 100644 index 00000000..1205ea54 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/bishopwhite.glif @@ -0,0 +1,331 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/braceleft.case.glif b/sources/FixelDisplay-Thin.ufo/glyphs/braceleft.case.glif new file mode 100644 index 00000000..0baf6ae5 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/braceleft.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |braceright.case + com.fontlab.metricsRight + |braceright.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/braceleft.glif b/sources/FixelDisplay-Thin.ufo/glyphs/braceleft.glif new file mode 100644 index 00000000..c5cf7698 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/braceleft.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/braceright.case.glif b/sources/FixelDisplay-Thin.ufo/glyphs/braceright.case.glif new file mode 100644 index 00000000..0178e4b9 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/braceright.case.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/braceright.glif b/sources/FixelDisplay-Thin.ufo/glyphs/braceright.glif new file mode 100644 index 00000000..9aacc1f5 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/braceright.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/bracketangleleft.case.glif b/sources/FixelDisplay-Thin.ufo/glyphs/bracketangleleft.case.glif new file mode 100644 index 00000000..f407f176 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/bracketangleleft.case.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + parenleft.case + com.fontlab.metricsRight + parenleft.case + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/bracketangleleft.glif b/sources/FixelDisplay-Thin.ufo/glyphs/bracketangleleft.glif new file mode 100644 index 00000000..e577804d --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/bracketangleleft.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + parenleft + com.fontlab.metricsRight + parenleft + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/bracketangleright.case.glif b/sources/FixelDisplay-Thin.ufo/glyphs/bracketangleright.case.glif new file mode 100644 index 00000000..0f222f9a --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/bracketangleright.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |bracketangleleft.case + com.fontlab.metricsRight + |bracketangleleft.case + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/bracketangleright.glif b/sources/FixelDisplay-Thin.ufo/glyphs/bracketangleright.glif new file mode 100644 index 00000000..645fc2ff --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/bracketangleright.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.metricsLeft + |bracketangleleft + com.fontlab.metricsRight + |bracketangleleft + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/bracketleft.case.glif b/sources/FixelDisplay-Thin.ufo/glyphs/bracketleft.case.glif new file mode 100644 index 00000000..6ccf9ddb --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/bracketleft.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |bracketright.case + com.fontlab.metricsRight + |bracketright.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/bracketleft.glif b/sources/FixelDisplay-Thin.ufo/glyphs/bracketleft.glif new file mode 100644 index 00000000..09b60760 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/bracketleft.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/bracketright.case.glif b/sources/FixelDisplay-Thin.ufo/glyphs/bracketright.case.glif new file mode 100644 index 00000000..97617e60 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/bracketright.case.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |bracketleft + com.fontlab.metricsRight + |bracketleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/bracketright.glif b/sources/FixelDisplay-Thin.ufo/glyphs/bracketright.glif new file mode 100644 index 00000000..0f87820b --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/bracketright.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |bracketleft + com.fontlab.metricsRight + |bracketleft + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/breve.case.glif b/sources/FixelDisplay-Thin.ufo/glyphs/breve.case.glif new file mode 100644 index 00000000..feb60602 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/breve.case.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/breve.glif b/sources/FixelDisplay-Thin.ufo/glyphs/breve.glif new file mode 100644 index 00000000..d09fc00d --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/breve.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/brokenbar.case.glif b/sources/FixelDisplay-Thin.ufo/glyphs/brokenbar.case.glif new file mode 100644 index 00000000..56b5faeb --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/brokenbar.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + bar + com.fontlab.metricsRight + bar + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/brokenbar.glif b/sources/FixelDisplay-Thin.ufo/glyphs/brokenbar.glif new file mode 100644 index 00000000..0621c561 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/brokenbar.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + bar + com.fontlab.metricsRight + bar + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/bullet.case.glif b/sources/FixelDisplay-Thin.ufo/glyphs/bullet.case.glif new file mode 100644 index 00000000..c7e7a129 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/bullet.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + period + com.fontlab.metricsRight + period + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/bullet.glif b/sources/FixelDisplay-Thin.ufo/glyphs/bullet.glif new file mode 100644 index 00000000..13fb5ea9 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/bullet.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + period + com.fontlab.metricsRight + period + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/c.glif b/sources/FixelDisplay-Thin.ufo/glyphs/c.glif new file mode 100644 index 00000000..b147a552 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/c.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/cacute.glif b/sources/FixelDisplay-Thin.ufo/glyphs/cacute.glif new file mode 100644 index 00000000..a408ec6a --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/cacute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+acute + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/caron.case.glif b/sources/FixelDisplay-Thin.ufo/glyphs/caron.case.glif new file mode 100644 index 00000000..24e78509 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/caron.case.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/caron.glif b/sources/FixelDisplay-Thin.ufo/glyphs/caron.glif new file mode 100644 index 00000000..e896af9a --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/caron.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/caron.salt.glif b/sources/FixelDisplay-Thin.ufo/glyphs/caron.salt.glif new file mode 100644 index 00000000..16a3f9e9 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/caron.salt.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/ccaron.glif b/sources/FixelDisplay-Thin.ufo/glyphs/ccaron.glif new file mode 100644 index 00000000..b7edf831 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/ccaron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+caron + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/ccedilla.glif b/sources/FixelDisplay-Thin.ufo/glyphs/ccedilla.glif new file mode 100644 index 00000000..879c7678 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/ccedilla.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+cedilla + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/cche-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/cche-cy.glif new file mode 100644 index 00000000..50f33fa5 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/cche-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ч + com.fontlab.metricsRight + ч + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/ccircumflex.glif b/sources/FixelDisplay-Thin.ufo/glyphs/ccircumflex.glif new file mode 100644 index 00000000..3f53c8a0 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/ccircumflex.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+circumflex + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/cdotaccent.glif b/sources/FixelDisplay-Thin.ufo/glyphs/cdotaccent.glif new file mode 100644 index 00000000..a64d230e --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/cdotaccent.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+dotaccent + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/cedilla.glif b/sources/FixelDisplay-Thin.ufo/glyphs/cedilla.glif new file mode 100644 index 00000000..aa7efedc --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/cedilla.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/cent.glif b/sources/FixelDisplay-Thin.ufo/glyphs/cent.glif new file mode 100644 index 00000000..1081cb76 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/cent.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + c + com.fontlab.metricsRight + c + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/che-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/che-cy.glif new file mode 100644 index 00000000..7f1b5ae3 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/che-cy.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + u-10 + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/cheabkhcyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/cheabkhcyr.glif new file mode 100644 index 00000000..fe7ffc58 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/cheabkhcyr.glif @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + e + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/cheabkhtailcyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/cheabkhtailcyr.glif new file mode 100644 index 00000000..9365aacb --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/cheabkhtailcyr.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + cheabkhcyr + com.fontlab.metricsRight + cheabkhcyr + com.fontlab.recipe + cheabkhcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/chedieresiscyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/chedieresiscyr.glif new file mode 100644 index 00000000..1803e779 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/chedieresiscyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + che-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/chekhakascyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/chekhakascyr.glif new file mode 100644 index 00000000..3c359457 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/chekhakascyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ч + com.fontlab.metricsRight + н + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/chetailcyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/chetailcyr.glif new file mode 100644 index 00000000..df170deb --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/chetailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ч + com.fontlab.metricsRight + entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/chevertcyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/chevertcyr.glif new file mode 100644 index 00000000..4a351c8a --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/chevertcyr.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ч + com.fontlab.metricsRight + н + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/circumflex.case.glif b/sources/FixelDisplay-Thin.ufo/glyphs/circumflex.case.glif new file mode 100644 index 00000000..165d223e --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/circumflex.case.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/circumflex.glif b/sources/FixelDisplay-Thin.ufo/glyphs/circumflex.glif new file mode 100644 index 00000000..66b7a877 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/circumflex.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/clubwhite.glif b/sources/FixelDisplay-Thin.ufo/glyphs/clubwhite.glif new file mode 100644 index 00000000..1051e5ff --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/clubwhite.glif @@ -0,0 +1,155 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/colon.case.glif b/sources/FixelDisplay-Thin.ufo/glyphs/colon.case.glif new file mode 100644 index 00000000..7807e4f1 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/colon.case.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/colon.glif b/sources/FixelDisplay-Thin.ufo/glyphs/colon.glif new file mode 100644 index 00000000..64aa5696 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/colon.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/colontriangularmod.glif b/sources/FixelDisplay-Thin.ufo/glyphs/colontriangularmod.glif new file mode 100644 index 00000000..8fb21afd --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/colontriangularmod.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + colon + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/comma.glif b/sources/FixelDisplay-Thin.ufo/glyphs/comma.glif new file mode 100644 index 00000000..dd14b6e1 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/comma.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/commaaccentcomb.glif b/sources/FixelDisplay-Thin.ufo/glyphs/commaaccentcomb.glif new file mode 100644 index 00000000..f797e50b --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/commaaccentcomb.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/commaaccentcomb.salt.glif b/sources/FixelDisplay-Thin.ufo/glyphs/commaaccentcomb.salt.glif new file mode 100644 index 00000000..d4e8bb9c --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/commaaccentcomb.salt.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/contents.plist b/sources/FixelDisplay-Thin.ufo/glyphs/contents.plist new file mode 100644 index 00000000..2830b2de --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/contents.plist @@ -0,0 +1,2352 @@ + + + + + .notdef + _notdef.glif + A + A_.glif + A-cy + A_-cy.glif + A-cy.accented + A_-cy.accented.glif + A-cy.ss01 + A_-cy.ss01.glif + A.ss01 + A_.ss01.glif + AE + A_E_.glif + AE.ss01 + A_E_.ss01.glif + AEacute + A_E_acute.glif + Aacute + A_acute.glif + Aacute.ss01 + A_acute.ss01.glif + Abreve + A_breve.glif + Abreve.ss01 + A_breve.ss01.glif + Abrevecyr + A_brevecyr.glif + Acaron + A_caron.glif + Acircumflex + A_circumflex.glif + Acircumflex.ss01 + A_circumflex.ss01.glif + Adieresis + A_dieresis.glif + Adieresis.ss01 + A_dieresis.ss01.glif + Adieresiscyr + A_dieresiscyr.glif + Agrave + A_grave.glif + Agrave.ss01 + A_grave.ss01.glif + Aiecyr + A_iecyr.glif + Amacron + A_macron.glif + Amacron.ss01 + A_macron.ss01.glif + Aogonek + A_ogonek.glif + Aogonek.ss01 + A_ogonek.ss01.glif + Aring + A_ring.glif + Aring.ss01 + A_ring.ss01.glif + Atilde + A_tilde.glif + Atilde.ss01 + A_tilde.ss01.glif + B + B_.glif + Be-cy + B_e-cy.glif + C + C_.glif + CR + C_R_.glif + Cacute + C_acute.glif + Ccaron + C_caron.glif + Ccedilla + C_cedilla.glif + Cche-cy + C_che-cy.glif + Ccircumflex + C_circumflex.glif + Cdotaccent + C_dotaccent.glif + Che-cy + C_he-cy.glif + Cheabkhcyr + C_heabkhcyr.glif + Cheabkhtailcyr + C_heabkhtailcyr.glif + Chedieresiscyr + C_hedieresiscyr.glif + Chekhakascyr + C_hekhakascyr.glif + Chetailcyr + C_hetailcyr.glif + Chevertcyr + C_hevertcyr.glif + CrossedO-cy + C_rossedO_-cy.glif + D + D_.glif + Dcaron + D_caron.glif + Dchecyr + D_checyr.glif + Dcroat + D_croat.glif + De-cy + D_e-cy.glif + De-cy.BGR + D_e-cy.B_G_R_.glif + DeSoft-cy + D_eS_oft-cy.glif + Dekomicyr + D_ekomicyr.glif + Delta + D_elta.glif + Djecyr + D_jecyr.glif + Djekomicyr + D_jekomicyr.glif + Djerv-cy + D_jerv-cy.glif + DoubleO-cy + D_oubleO_-cy.glif + Dwe-cy + D_we-cy.glif + Dze-cy + D_ze-cy.glif + DzeReversed-cy + D_zeR_eversed-cy.glif + Dzeabkhcyr + D_zeabkhcyr.glif + Dzelo-cy + D_zelo-cy.glif + Dzhecyr + D_zhecyr.glif + Dzjekomicyr + D_zjekomicyr.glif + Dzwe-cy + D_zwe-cy.glif + Dzze-cy + D_zze-cy.glif + Dzzhecyr + D_zzhecyr.glif + E + E_.glif + E-cy + E_-cy.glif + E-cy.accented + E_-cy.accented.glif + Eacute + E_acute.glif + Ebreve + E_breve.glif + Ecaron + E_caron.glif + Ecircumflex + E_circumflex.glif + Edieresis + E_dieresis.glif + Edotaccent + E_dotaccent.glif + Ef-cy + E_f-cy.glif + Ef-cy.BGR + E_f-cy.B_G_R_.glif + Egrave + E_grave.glif + Eiotifiedcyr + E_iotifiedcyr.glif + El-cy + E_l-cy.glif + El-cy.BGR + E_l-cy.B_G_R_.glif + ElSoft-cy + E_lS_oft-cy.glif + Elhookcyr + E_lhookcyr.glif + Elmiddlehookcyr + E_lmiddlehookcyr.glif + Elsharptailcyr + E_lsharptailcyr.glif + Elsmallcyr + E_lsmallcyr.glif + Eltailcyr + E_ltailcyr.glif + Em-cy + E_m-cy.glif + Em-cy.ss01 + E_m-cy.ss01.glif + EmSoft-cy + E_mS_oft-cy.glif + Emacron + E_macron.glif + Emsharptailcyr + E_msharptailcyr.glif + En-cy + E_n-cy.glif + Eng + E_ng.glif + Eng.ss01 + E_ng.ss01.glif + Engecyr + E_ngecyr.glif + Enhookcyr + E_nhookcyr.glif + Enhookleftcyr + E_nhookleftcyr.glif + Enmiddlehookcyr + E_nmiddlehookcyr.glif + Ensharptailcyr + E_nsharptailcyr.glif + Entailcyr + E_ntailcyr.glif + Eogonek + E_ogonek.glif + Er-cy + E_r-cy.glif + Ereversed-cy + E_reversed-cy.glif + Ereversed-cy.accented + E_reversed-cy.accented.glif + Ereverseddieresiscyr + E_reverseddieresiscyr.glif + Ertickcyr + E_rtickcyr.glif + Es-cy + E_s-cy.glif + Estailcyr + E_stailcyr.glif + Estailcyr.BSH + E_stailcyr.B_S_H_.glif + Estailcyr.CHU + E_stailcyr.C_H_U_.glif + Eth + E_th.glif + F + F_.glif + Fitacyr + F_itacyr.glif + G + G_.glif + G.ss01 + G_.ss01.glif + Gacute + G_acute.glif + Gacute.ss01 + G_acute.ss01.glif + Gbreve + G_breve.glif + Gbreve.ss01 + G_breve.ss01.glif + Gcircumflex + G_circumflex.glif + Gcircumflex.ss01 + G_circumflex.ss01.glif + Gcommaaccent + G_commaaccent.glif + Gcommaaccent.ss01 + G_commaaccent.ss01.glif + Gdotaccent + G_dotaccent.glif + Gdotaccent.ss01 + G_dotaccent.ss01.glif + Ge-cy + G_e-cy.glif + Gehookcyr + G_ehookcyr.glif + Gehookstrokecyr + G_ehookstrokecyr.glif + Germandbls + G_ermandbls.glif + Gestrokecyr + G_estrokecyr.glif + Gestrokecyr.BSH + G_estrokecyr.B_S_H_.glif + Getailcyr + G_etailcyr.glif + Gheupturn-cy + G_heupturn-cy.glif + Gjecyr + G_jecyr.glif + H + H_.glif + Ha-cy + H_a-cy.glif + Ha-cy.ss01 + H_a-cy.ss01.glif + Haabkhcyr + H_aabkhcyr.glif + Hahookcyr + H_ahookcyr.glif + Hardsign-cy + H_ardsign-cy.glif + Hastrokecyr + H_astrokecyr.glif + Hbar + H_bar.glif + Hcircumflex + H_circumflex.glif + Hwe-cy + H_we-cy.glif + I + I_.glif + I-cy + I_-cy.glif + IJ + I_J_.glif + Ia-cy + I_a-cy.glif + Ia-cy.accented + I_a-cy.accented.glif + Ia-cy.ss01 + I_a-cy.ss01.glif + Iacute + I_acute.glif + Ibreve + I_breve.glif + Icircumflex + I_circumflex.glif + Idieresis + I_dieresis.glif + Idieresiscyr + I_dieresiscyr.glif + Idotaccent + I_dotaccent.glif + Ie-cy + I_e-cy.glif + Iebrevecyr + I_ebrevecyr.glif + Iegravecyr + I_egravecyr.glif + Igrave + I_grave.glif + Igravecyr + I_gravecyr.glif + Ii-cy + I_i-cy.glif + Ii-cy.accented + I_i-cy.accented.glif + Iishort-cy + I_ishort-cy.glif + Imacron + I_macron.glif + Imacroncyr + I_macroncyr.glif + Io-cy + I_o-cy.glif + Io-cy.accented + I_o-cy.accented.glif + Iogonek + I_ogonek.glif + Iota-cy + I_ota-cy.glif + IotifiedA-cy + I_otifiedA_-cy.glif + Ishortsharptailcyr + I_shortsharptailcyr.glif + Itilde + I_tilde.glif + Iu-cy + I_u-cy.glif + Iu-cy.accented + I_u-cy.accented.glif + Izhitsacyr + I_zhitsacyr.glif + Izhitsagravedblcyr + I_zhitsagravedblcyr.glif + J + J_.glif + J.ss01 + J_.ss01.glif + Jcircumflex + J_circumflex.glif + Jcircumflex.ss01 + J_circumflex.ss01.glif + Jecyr + J_ecyr.glif + K + K_.glif + K.ss01 + K_.ss01.glif + Ka-cy + K_a-cy.glif + Ka-cy.ss01 + K_a-cy.ss01.glif + Kaaleutcyr + K_aaleutcyr.glif + Kabashkcyr + K_abashkcyr.glif + Kahookcyr + K_ahookcyr.glif + Kastrokecyr + K_astrokecyr.glif + Katailcyr + K_atailcyr.glif + Kaverticalstrokecyr + K_averticalstrokecyr.glif + Kcommaaccent + K_commaaccent.glif + Kcommaaccent.ss01 + K_commaaccent.ss01.glif + Kjecyr + K_jecyr.glif + Koppacyr + K_oppacyr.glif + Ksicyr + K_sicyr.glif + L + L_.glif + Lacute + L_acute.glif + Lcaron + L_caron.glif + Lcommaaccent + L_commaaccent.glif + Ldot + L_dot.glif + Lhacyr + L_hacyr.glif + Ljecyr + L_jecyr.glif + Ljekomicyr + L_jekomicyr.glif + Lslash + L_slash.glif + M + M_.glif + M.ss01 + M_.ss01.glif + N + N_.glif + N.ss01 + N_.ss01.glif + NULL + N_U_L_L_.glif + Nacute + N_acute.glif + Nacute.ss01 + N_acute.ss01.glif + Ncaron + N_caron.glif + Ncaron.ss01 + N_caron.ss01.glif + Ncommaaccent + N_commaaccent.glif + Ncommaaccent.ss01 + N_commaaccent.ss01.glif + Njecyr + N_jecyr.glif + Njekomicyr + N_jekomicyr.glif + Ntilde + N_tilde.glif + Ntilde.ss01 + N_tilde.ss01.glif + O + O_.glif + O-cy + O_-cy.glif + O-cy.accented + O_-cy.accented.glif + OBinocular-cy + O_B_inocular-cy.glif + ODoubleMonocular-cy + O_D_oubleM_onocular-cy.glif + OE + O_E_.glif + OMonocular-cy + O_M_onocular-cy.glif + Oacute + O_acute.glif + Obarcyr + O_barcyr.glif + Obardieresiscyr + O_bardieresiscyr.glif + Obreve + O_breve.glif + Ocircumflex + O_circumflex.glif + Odieresis + O_dieresis.glif + Odieresiscyr + O_dieresiscyr.glif + Ograve + O_grave.glif + Ohungarumlaut + O_hungarumlaut.glif + Omacron + O_macron.glif + Omega + O_mega.glif + OmegaBroad-cy + O_megaB_road-cy.glif + Omegacyr + O_megacyr.glif + Omegaroundcyr + O_megaroundcyr.glif + Omegatitlocyr + O_megatitlocyr.glif + Oslash + O_slash.glif + Oslashacute + O_slashacute.glif + Otcyr + O_tcyr.glif + Otilde + O_tilde.glif + P + P_.glif + Palochkacyr + P_alochkacyr.glif + Pe-cy + P_e-cy.glif + Pehookcyr + P_ehookcyr.glif + Petailcyr + P_etailcyr.glif + Psicyr + P_sicyr.glif + Q + Q_.glif + Q.ss01 + Q_.ss01.glif + Qacyr + Q_acyr.glif + R + R_.glif + Racute + R_acute.glif + Rcaron + R_caron.glif + Rcommaaccent + R_commaaccent.glif + Reversedzecyr + R_eversedzecyr.glif + Rhacyr + R_hacyr.glif + S + S_.glif + Sacute + S_acute.glif + Scaron + S_caron.glif + Scedilla + S_cedilla.glif + Schwa + S_chwa.glif + Schwacyr + S_chwacyr.glif + Schwadieresiscyr + S_chwadieresiscyr.glif + Scircumflex + S_circumflex.glif + Scommaaccent + S_commaaccent.glif + Semisoftcyr + S_emisoftcyr.glif + Sha-cy + S_ha-cy.glif + Shcha-cy + S_hcha-cy.glif + Shhacyr + S_hhacyr.glif + Shhatailcyr + S_hhatailcyr.glif + Shwe-cy + S_hwe-cy.glif + Sjekomicyr + S_jekomicyr.glif + Softsign-cy + S_oftsign-cy.glif + T + T_.glif + Tbar + T_bar.glif + Tcaron + T_caron.glif + Tcedilla + T_cedilla.glif + Tche-cy + T_che-cy.glif + Tcommaaccent + T_commaaccent.glif + Te-cy + T_e-cy.glif + TeWithMiddleHook-cy + T_eW_ithM_iddleH_ook-cy.glif + Tetailcyr + T_etailcyr.glif + Tetsecyr + T_etsecyr.glif + Thorn + T_horn.glif + Tjekomicyr + T_jekomicyr.glif + Tse-cy + T_se-cy.glif + TseReversed-cy + T_seR_eversed-cy.glif + Tshecyr + T_shecyr.glif + Tsse-cy + T_sse-cy.glif + Tswe-cy + T_swe-cy.glif + Twe-cy + T_we-cy.glif + U + U_.glif + U-cy + U_-cy.glif + U-cy.accented + U_-cy.accented.glif + U-cy.ss01 + U_-cy.ss01.glif + Uacute + U_acute.glif + Uacutedblcyr + U_acutedblcyr.glif + Ubreve + U_breve.glif + Ucircumflex + U_circumflex.glif + Udieresis + U_dieresis.glif + Udieresiscyr + U_dieresiscyr.glif + Ugrave + U_grave.glif + Uhungarumlaut + U_hungarumlaut.glif + UkMonograph-cy + U_kM_onograph-cy.glif + Ukcyr + U_kcyr.glif + Umacron + U_macron.glif + Umacroncyr + U_macroncyr.glif + Uogonek + U_ogonek.glif + Uring + U_ring.glif + Ushort-cy + U_short-cy.glif + Ushort-cy.ss01 + U_short-cy.ss01.glif + Ustraightcyr + U_straightcyr.glif + Ustraightstrokecyr + U_straightstrokecyr.glif + Utilde + U_tilde.glif + V + V_.glif + V.ss01 + V_.ss01.glif + Ve-cy + V_e-cy.glif + W + W_.glif + W.ss01 + W_.ss01.glif + Wacute + W_acute.glif + Wacute.ss01 + W_acute.ss01.glif + Wcircumflex + W_circumflex.glif + Wcircumflex.ss01 + W_circumflex.ss01.glif + Wdieresis + W_dieresis.glif + Wdieresis.ss01 + W_dieresis.ss01.glif + Wecyr + W_ecyr.glif + Wgrave + W_grave.glif + Wgrave.ss01 + W_grave.ss01.glif + X + X_.glif + X.ss01 + X_.ss01.glif + Xatailcyr + X_atailcyr.glif + Y + Y_.glif + Y.ss01 + Y_.ss01.glif + Yacute + Y_acute.glif + Yacute.ss01 + Y_acute.ss01.glif + Yaecyr + Y_aecyr.glif + YatIotified-cy + Y_atI_otified-cy.glif + Yatcyr + Y_atcyr.glif + Ycircumflex + Y_circumflex.glif + Ycircumflex.ss01 + Y_circumflex.ss01.glif + Ydieresis + Y_dieresis.glif + Ydieresis.ss01 + Y_dieresis.ss01.glif + YerNeutral-cy + Y_erN_eutral-cy.glif + Yeru-cy + Y_eru-cy.glif + Yeru-cy.accented + Y_eru-cy.accented.glif + Yeru-cymacron + Y_eru-cymacron.glif + YeruBackYer-cy + Y_eruB_ackY_er-cy.glif + Yi-cy + Y_i-cy.glif + Ylongdieresiscyr + Y_longdieresiscyr.glif + Yn-cy + Y_n-cy.glif + YuReversed-cy + Y_uR_eversed-cy.glif + YusBlended-cy + Y_usB_lended-cy.glif + YusClosedlittle-cy + Y_usC_losedlittle-cy.glif + Yusbigcyr + Y_usbigcyr.glif + Yusbigiotifiedcyr + Y_usbigiotifiedcyr.glif + YusiotifiedClosedLittle-cy + Y_usiotifiedC_losedL_ittle-cy.glif + Yuslittlecyr + Y_uslittlecyr.glif + Yuslittleiotifiedcyr + Y_uslittleiotifiedcyr.glif + Z + Z_.glif + Z.ss01 + Z_.ss01.glif + Zacute + Z_acute.glif + Zacute.ss01 + Z_acute.ss01.glif + Zcaron + Z_caron.glif + Zcaron.ss01 + Z_caron.ss01.glif + Zdotaccent + Z_dotaccent.glif + Zdotaccent.ss01 + Z_dotaccent.ss01.glif + Ze-cy + Z_e-cy.glif + Zedieresiscyr + Z_edieresiscyr.glif + Zemlya-cy + Z_emlya-cy.glif + Zetailcyr + Z_etailcyr.glif + Zetailcyr.BSH + Z_etailcyr.B_S_H_.glif + Zhe-cy + Z_he-cy.glif + Zhe-cy.ss01 + Z_he-cy.ss01.glif + Zhebrevecyr + Z_hebrevecyr.glif + Zhedieresiscyr + Z_hedieresiscyr.glif + Zhetailcyr + Z_hetailcyr.glif + Zhwe-cy + Z_hwe-cy.glif + Zjekomicyr + Z_jekomicyr.glif + _perc-circule + _perc-circule.glif + a + a.glif + a-cy + a-cy.glif + a-cy.accented + a-cy.accented.glif + a-cy.ss01 + a-cy.ss01.glif + a.ss01 + a.ss01.glif + aacute + aacute.glif + aacute.ss01 + aacute.ss01.glif + abreve + abreve.glif + abreve.ss01 + abreve.ss01.glif + abrevecyr + abrevecyr.glif + acaron + acaron.glif + acircumflex + acircumflex.glif + acircumflex.ss01 + acircumflex.ss01.glif + acute + acute.glif + acute.case + acute.case.glif + adieresis + adieresis.glif + adieresis.ss01 + adieresis.ss01.glif + adieresiscyr + adieresiscyr.glif + ae + ae.glif + ae.ss01 + ae.ss01.glif + aeacute + aeacute.glif + agrave + agrave.glif + agrave.ss01 + agrave.ss01.glif + aiecyr + aiecyr.glif + amacron + amacron.glif + amacron.ss01 + amacron.ss01.glif + ampersand + ampersand.glif + aogonek + aogonek.glif + aogonek.ss01 + aogonek.ss01.glif + apostrophemod + apostrophemod.glif + approxequal + approxequal.glif + aring + aring.glif + aring.ss01 + aring.ss01.glif + arrowdown + arrowdown.glif + arrowdown.case + arrowdown.case.glif + arrowdown.ss01 + arrowdown.ss01.glif + arrowdown.ss01.case + arrowdown.ss01.case.glif + arrowleft + arrowleft.glif + arrowleft.case + arrowleft.case.glif + arrowleft.ss01 + arrowleft.ss01.glif + arrowleft.ss01.case + arrowleft.ss01.case.glif + arrowright + arrowright.glif + arrowright.case + arrowright.case.glif + arrowright.ss01 + arrowright.ss01.glif + arrowright.ss01.case + arrowright.ss01.case.glif + arrowup + arrowup.glif + arrowup.case + arrowup.case.glif + arrowup.ss01 + arrowup.ss01.glif + arrowup.ss01.case + arrowup.ss01.case.glif + asciicircum + asciicircum.glif + asciitilde + asciitilde.glif + asterisk + asterisk.glif + at + at.glif + at.case + at.case.glif + atilde + atilde.glif + atilde.ss01 + atilde.ss01.glif + b + b.glif + b.ss01 + b.ss01.glif + backslash + backslash.glif + backslash.case + backslash.case.glif + bar + bar.glif + bar.case + bar.case.glif + be-cy + be-cy.glif + be-cy.SRB + be-cy.S_R_B_.glif + bishopblack + bishopblack.glif + bishopwhite + bishopwhite.glif + braceleft + braceleft.glif + braceleft.case + braceleft.case.glif + braceright + braceright.glif + braceright.case + braceright.case.glif + bracketangleleft + bracketangleleft.glif + bracketangleleft.case + bracketangleleft.case.glif + bracketangleright + bracketangleright.glif + bracketangleright.case + bracketangleright.case.glif + bracketleft + bracketleft.glif + bracketleft.case + bracketleft.case.glif + bracketright + bracketright.glif + bracketright.case + bracketright.case.glif + breve + breve.glif + breve.case + breve.case.glif + brokenbar + brokenbar.glif + brokenbar.case + brokenbar.case.glif + bullet + bullet.glif + bullet.case + bullet.case.glif + c + c.glif + cacute + cacute.glif + caron + caron.glif + caron.case + caron.case.glif + caron.salt + caron.salt.glif + ccaron + ccaron.glif + ccedilla + ccedilla.glif + cche-cy + cche-cy.glif + ccircumflex + ccircumflex.glif + cdotaccent + cdotaccent.glif + cedilla + cedilla.glif + cent + cent.glif + che-cy + che-cy.glif + cheabkhcyr + cheabkhcyr.glif + cheabkhtailcyr + cheabkhtailcyr.glif + chedieresiscyr + chedieresiscyr.glif + chekhakascyr + chekhakascyr.glif + chetailcyr + chetailcyr.glif + chevertcyr + chevertcyr.glif + circumflex + circumflex.glif + circumflex.case + circumflex.case.glif + clubwhite + clubwhite.glif + colon + colon.glif + colon.case + colon.case.glif + colontriangularmod + colontriangularmod.glif + comma + comma.glif + commaaccentcomb + commaaccentcomb.glif + commaaccentcomb.salt + commaaccentcomb.salt.glif + copyright + copyright.glif + crossedo-cy + crossedo-cy.glif + crossedswords + crossedswords.glif + currency + currency.glif + d + d.glif + d.ss01 + d.ss01.glif + dagger + dagger.glif + daggerdbl + daggerdbl.glif + dcaron + dcaron.glif + dcaron.ss01 + dcaron.ss01.glif + dchecyr + dchecyr.glif + dcroat + dcroat.glif + dcroat.ss01 + dcroat.ss01.glif + de-cy + de-cy.glif + de-cy.BGR + de-cy.B_G_R_.glif + de-cy.ss01 + de-cy.ss01.glif + deSoft-cy + deS_oft-cy.glif + degree + degree.glif + dekomicyr + dekomicyr.glif + diamondwhite-misc + diamondwhite-misc.glif + dieresis + dieresis.glif + dieresis.alt + dieresis.alt.glif + dieresis.case + dieresis.case.glif + dieresisacute + dieresisacute.glif + dieresiscase.alt + dieresiscase.alt.glif + divide + divide.glif + djecyr + djecyr.glif + djekomicyr + djekomicyr.glif + djerv-cy + djerv-cy.glif + dollar + dollar.glif + dotaccent + dotaccent.glif + dotaccent.case + dotaccent.case.glif + doubleo-cy + doubleo-cy.glif + dramsignarmn + dramsignarmn.glif + dwe-cy + dwe-cy.glif + dze-cy + dze-cy.glif + dzeReversed-cy + dzeR_eversed-cy.glif + dzeabkhcyr + dzeabkhcyr.glif + dzelo-cy + dzelo-cy.glif + dzhecyr + dzhecyr.glif + dzjekomicyr + dzjekomicyr.glif + dzwe-cy + dzwe-cy.glif + dzze-cy + dzze-cy.glif + dzzhecyr + dzzhecyr.glif + e + e.glif + e-cy + e-cy.glif + e-cy.accented + e-cy.accented.glif + e-cy.hist + e-cy.hist.glif + e.ss01 + e.ss01.glif + eacute + eacute.glif + eacute.ss01 + eacute.ss01.glif + ebreve + ebreve.glif + ebreve.ss01 + ebreve.ss01.glif + ecaron + ecaron.glif + ecaron.ss01 + ecaron.ss01.glif + ecircumflex + ecircumflex.glif + ecircumflex.ss01 + ecircumflex.ss01.glif + edieresis + edieresis.glif + edieresis.ss01 + edieresis.ss01.glif + edotaccent + edotaccent.glif + edotaccent.ss01 + edotaccent.ss01.glif + ef-cy + ef-cy.glif + egrave + egrave.glif + egrave.ss01 + egrave.ss01.glif + eight + eight.glif + eight.osf + eight.osf.glif + eight.tf + eight.tf.glif + eiotifiedcyr + eiotifiedcyr.glif + eiotifiedcyr.BGR + eiotifiedcyr.B_G_R_.glif + el-cy + el-cy.glif + el-cy.BGR + el-cy.B_G_R_.glif + el-cy.ss01 + el-cy.ss01.glif + elSoft-cy + elS_oft-cy.glif + elhookcyr + elhookcyr.glif + ellipsis + ellipsis.glif + elmiddlehookcyr + elmiddlehookcyr.glif + elsharptailcyr + elsharptailcyr.glif + eltailcyr + eltailcyr.glif + em-cy + em-cy.glif + emSoft-cy + emS_oft-cy.glif + emacron + emacron.glif + emacron.ss01 + emacron.ss01.glif + emdash + emdash.glif + emdash.case + emdash.case.glif + emsharptailcyr + emsharptailcyr.glif + en-cy + en-cy.glif + enclosingcirclecomb + enclosingcirclecomb.glif + endash + endash.glif + endash.case + endash.case.glif + eng + eng.glif + engecyr + engecyr.glif + enhookcyr + enhookcyr.glif + enhookleftcyr + enhookleftcyr.glif + enmiddlehookcyr + enmiddlehookcyr.glif + ensharptailcyr + ensharptailcyr.glif + entailcyr + entailcyr.glif + eogonek + eogonek.glif + eogonek.ss01 + eogonek.ss01.glif + equal + equal.glif + er-cy + er-cy.glif + er-cy.ss01 + er-cy.ss01.glif + ereversed-cy + ereversed-cy.glif + ereversed-cy.accented + ereversed-cy.accented.glif + ereverseddieresiscyr + ereverseddieresiscyr.glif + ertickcyr + ertickcyr.glif + es-cy + es-cy.glif + estailcyr + estailcyr.glif + estailcyr.BSH + estailcyr.B_S_H_.glif + estailcyr.CHU + estailcyr.C_H_U_.glif + estimated + estimated.glif + eth + eth.glif + eturned + eturned.glif + euro + euro.glif + exclam + exclam.glif + exclamdown + exclamdown.glif + exclamdown.case + exclamdown.case.glif + f + f.glif + f.ss01 + f.ss01.glif + f_f + f_f.glif + f_f.ss01 + f_f.ss01.glif + f_f_i + f_f_i.glif + f_f_i.ss01 + f_f_i.ss01.glif + f_f_l + f_f_l.glif + f_f_l.ss01 + f_f_l.ss01.glif + fi + fi.glif + fi.ss01 + fi.ss01.glif + fitacyr + fitacyr.glif + five + five.glif + five.osf + five.osf.glif + five.tf + five.tf.glif + fl + fl.glif + fl.ss01 + fl.ss01.glif + floretteblack + floretteblack.glif + floretteoutlinedpetalledblackeight + floretteoutlinedpetalledblackeight.glif + florettewhite + florettewhite.glif + florin + florin.glif + flower + flower.glif + four + four.glif + four.osf + four.osf.glif + four.tf + four.tf.glif + fraction + fraction.glif + g + g.glif + g.ss01 + g.ss01.glif + gacute + gacute.glif + gacute.ss01 + gacute.ss01.glif + gbreve + gbreve.glif + gbreve.ss01 + gbreve.ss01.glif + gcircumflex + gcircumflex.glif + gcircumflex.ss01 + gcircumflex.ss01.glif + gcommaaccent + gcommaaccent.glif + gcommaaccent.ss01 + gcommaaccent.ss01.glif + gdotaccent + gdotaccent.glif + gdotaccent.ss01 + gdotaccent.ss01.glif + ge-cy + ge-cy.glif + ge-cy.BGR + ge-cy.B_G_R_.glif + ge-cy.SRB + ge-cy.S_R_B_.glif + gehookcyr + gehookcyr.glif + gehookstrokecyr + gehookstrokecyr.glif + germandbls + germandbls.glif + germandbls.ss01 + germandbls.ss01.glif + gestrokecyr + gestrokecyr.glif + gestrokecyr.BSH + gestrokecyr.B_S_H_.glif + getailcyr + getailcyr.glif + gheupturn-cy + gheupturn-cy.glif + gjecyr + gjecyr.glif + gjecyr.SRB + gjecyr.S_R_B_.glif + grave + grave.glif + grave.case + grave.case.glif + greater + greater.glif + greaterequal + greaterequal.glif + guillemetleft + guillemetleft.glif + guillemetleft.case + guillemetleft.case.glif + guillemetright + guillemetright.glif + guillemetright.case + guillemetright.case.glif + guilsinglleft + guilsinglleft.glif + guilsinglleft.case + guilsinglleft.case.glif + guilsinglright + guilsinglright.glif + guilsinglright.case + guilsinglright.case.glif + h + h.glif + ha-cy + ha-cy.glif + haabkhcyr + haabkhcyr.glif + hahookcyr + hahookcyr.glif + hardsign-cy + hardsign-cy.glif + hardsign-cy.BGR + hardsign-cy.B_G_R_.glif + hardsign-cy.ss01 + hardsign-cy.ss01.glif + hastrokecyr + hastrokecyr.glif + hbar + hbar.glif + hcircumflex + hcircumflex.glif + heart + heart.glif + heartwhite + heartwhite.glif + hryvnia + hryvnia.glif + hundredmillionscomb-cy + hundredmillionscomb-cy.glif + hundredthousandscombcyr + hundredthousandscombcyr.glif + hungarumlaut + hungarumlaut.glif + hungarumlaut.case + hungarumlaut.case.glif + hwe-cy + hwe-cy.glif + hyphen + hyphen.glif + hyphen.case + hyphen.case.glif + i + i.glif + i-cy + i-cy.glif + ia-cy + ia-cy.glif + ia-cy.accented + ia-cy.accented.glif + ia-cy.ss01 + ia-cy.ss01.glif + iacute + iacute.glif + ibreve + ibreve.glif + icircumflex + icircumflex.glif + idieresis + idieresis.glif + idieresiscyr + idieresiscyr.glif + idotless + idotless.glif + ie-cy + ie-cy.glif + ie-cy.ss01 + ie-cy.ss01.glif + iebrevecyr + iebrevecyr.glif + iegravecyr + iegravecyr.glif + iegravecyr.SRB + iegravecyr.S_R_B_.glif + igrave + igrave.glif + igravecyr + igravecyr.glif + igravecyr.SRB + igravecyr.S_R_B_.glif + ii-cy + ii-cy.glif + ii-cy.BGR + ii-cy.B_G_R_.glif + ii-cy.accented + ii-cy.accented.glif + iishort-cy + iishort-cy.glif + iishort-cy.BGR + iishort-cy.B_G_R_.glif + ij + ij.glif + imacron + imacron.glif + imacroncyr + imacroncyr.glif + increment + increment.glif + infinity + infinity.glif + integral + integral.glif + io-cy + io-cy.glif + io-cy.accented + io-cy.accented.glif + io-cy.ss01 + io-cy.ss01.glif + iogonek + iogonek.glif + iota-cy + iota-cy.glif + iotifieda-cy + iotifieda-cy.glif + iotifieda-cy.BGR + iotifieda-cy.B_G_R_.glif + iotifieda-cy.hist + iotifieda-cy.hist.glif + ishortsharptailcyr + ishortsharptailcyr.glif + itilde + itilde.glif + iu-cy + iu-cy.glif + iu-cy.BGR + iu-cy.B_G_R_.glif + iu-cy.accented + iu-cy.accented.glif + izhitsacyr + izhitsacyr.glif + izhitsagravedblcyr + izhitsagravedblcyr.glif + j + j.glif + jcircumflex + jcircumflex.glif + jdotless + jdotless.glif + je-cy + je-cy.glif + k + k.glif + ka-cy + ka-cy.glif + ka-cy.BGR + ka-cy.B_G_R_.glif + kaaleutcyr + kaaleutcyr.glif + kabashkcyr + kabashkcyr.glif + kahookcyr + kahookcyr.glif + kastrokecyr + kastrokecyr.glif + katailcyr + katailcyr.glif + kaverticalstrokecyr + kaverticalstrokecyr.glif + kcommaaccent + kcommaaccent.glif + kgreenlandic + kgreenlandic.glif + kjecyr + kjecyr.glif + knightblack + knightblack.glif + knightwhite + knightwhite.glif + koppacyr + koppacyr.glif + ksicyr + ksicyr.glif + l + l.glif + l.ss01 + l.ss01.glif + lacute + lacute.glif + lacute.ss01 + lacute.ss01.glif + lcaron + lcaron.glif + lcaron.ss01 + lcaron.ss01.glif + lcommaaccent + lcommaaccent.glif + lcommaaccent.ss01 + lcommaaccent.ss01.glif + ldot + ldot.glif + ldot.ss01 + ldot.ss01.glif + leo + leo.glif + less + less.glif + lessequal + lessequal.glif + lhacyr + lhacyr.glif + ljecyr + ljecyr.glif + ljecyr.ss01 + ljecyr.ss01.glif + ljekomicyr + ljekomicyr.glif + longs + longs.glif + lslash + lslash.glif + lslash.ss01 + lslash.ss01.glif + m + m.glif + macron + macron.glif + macron-fwd + macron-fwd.glif + macron-fwd.alt + macron-fwd.alt.glif + macron.case + macron.case.glif + macronacute.SRB + macronacute.S_R_B_.glif + millionscombcyr + millionscombcyr.glif + minus + minus.glif + minute + minute.glif + mu + mu.glif + multiply + multiply.glif + n + n.glif + nacute + nacute.glif + napostrophe + napostrophe.glif + ncaron + ncaron.glif + ncommaaccent + ncommaaccent.glif + neptune + neptune.glif + nine + nine.glif + nine.osf + nine.osf.glif + nine.tf + nine.tf.glif + njecyr + njecyr.glif + njecyr.ss01 + njecyr.ss01.glif + njekomicyr + njekomicyr.glif + notequal + notequal.glif + ntilde + ntilde.glif + numbersign + numbersign.glif + numero + numero.glif + numero.ss01 + numero.ss01.glif + o + o.glif + o-cy + o-cy.glif + o-cy.accented + o-cy.accented.glif + oBinocular-cy + oB_inocular-cy.glif + oDoubleMonocular-cy + oD_oubleM_onocular-cy.glif + oMonocular-cy + oM_onocular-cy.glif + oacute + oacute.glif + obarcyr + obarcyr.glif + obardieresiscyr + obardieresiscyr.glif + obreve + obreve.glif + ocircumflex + ocircumflex.glif + odieresis + odieresis.glif + odieresiscyr + odieresiscyr.glif + oe + oe.glif + oe.ss01 + oe.ss01.glif + ogonek + ogonek.glif + ograve + ograve.glif + ohungarumlaut + ohungarumlaut.glif + omacron + omacron.glif + omegaBroad-cy + omegaB_road-cy.glif + omegacyr + omegacyr.glif + omegaroundcyr + omegaroundcyr.glif + omegatitlocyr + omegatitlocyr.glif + omultiocular-cy + omultiocular-cy.glif + omultiocular-cy.alt + omultiocular-cy.alt.glif + one + one.glif + one.osf + one.osf.glif + one.tf + one.tf.glif + onehalf + onehalf.glif + onequarter + onequarter.glif + onesuperior + onesuperior.glif + ordfeminine + ordfeminine.glif + ordmasculine + ordmasculine.glif + oslash + oslash.glif + oslashacute + oslashacute.glif + otcyr + otcyr.glif + otilde + otilde.glif + p + p.glif + p.ss01 + p.ss01.glif + palatcombcyr + palatcombcyr.glif + palochkacyr + palochkacyr.glif + paragraph + paragraph.glif + parenleft + parenleft.glif + parenleft.case + parenleft.case.glif + parenright + parenright.glif + parenright.case + parenright.case.glif + partialdiff + partialdiff.glif + pe-cy + pe-cy.glif + pe-cy.BGR + pe-cy.B_G_R_.glif + pe-cy.SRB + pe-cy.S_R_B_.glif + pehookcyr + pehookcyr.glif + percent + percent.glif + period + period.glif + periodcentered + periodcentered.glif + perthousand + perthousand.glif + petailcyr + petailcyr.glif + pi + pi.glif + plus + plus.glif + plusminus + plusminus.glif + pokrytiecombcyr + pokrytiecombcyr.glif + product + product.glif + proportional + proportional.glif + psicyr + psicyr.glif + q + q.glif + q.ss01 + q.ss01.glif + qacyr + qacyr.glif + question + question.glif + questiondown + questiondown.glif + questiondown.case + questiondown.case.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 + radical + radical.glif + rcaron + rcaron.glif + rcommaaccent + rcommaaccent.glif + registered + registered.glif + reversedzecyr + reversedzecyr.glif + rhacyr + rhacyr.glif + ring + ring.glif + ring.case + ring.case.glif + rookblack + rookblack.glif + ruble + ruble.glif + s + s.glif + sacute + sacute.glif + scaron + scaron.glif + scedilla + scedilla.glif + schwacyr + schwacyr.glif + schwadieresiscyr + schwadieresiscyr.glif + scircumflex + scircumflex.glif + scommaaccent + scommaaccent.glif + second + second.glif + section + section.glif + semicolon + semicolon.glif + semicolon.case + semicolon.case.glif + semisoftcyr + semisoftcyr.glif + seven + seven.glif + seven.osf + seven.osf.glif + seven.tf + seven.tf.glif + sha-cy + sha-cy.glif + sha-cy.BGR + sha-cy.B_G_R_.glif + shcha-cy + shcha-cy.glif + shcha-cy.BGR + shcha-cy.B_G_R_.glif + shhacyr + shhacyr.glif + shhatailcyr + shhatailcyr.glif + shwe-cy + shwe-cy.glif + six + six.glif + six.osf + six.osf.glif + six.tf + six.tf.glif + sjekomicyr + sjekomicyr.glif + slash + slash.glif + slash.case + slash.case.glif + softsign-cy + softsign-cy.glif + softsign-cy.BGR + softsign-cy.B_G_R_.glif + softsign-cy.ss01 + softsign-cy.ss01.glif + space + space.glif + spadewhite + spadewhite.glif + sterling + sterling.glif + summation + summation.glif + t + t.glif + t.ss01 + t.ss01.glif + tbar + tbar.glif + tbar.ss01 + tbar.ss01.glif + tcaron + tcaron.glif + tcaron.ss01 + tcaron.ss01.glif + tcedilla + tcedilla.glif + tcedilla.ss01 + tcedilla.ss01.glif + tche-cy + tche-cy.glif + tcommaaccent + tcommaaccent.glif + tcommaaccent.ss01 + tcommaaccent.ss01.glif + te-cy + te-cy.glif + te-cy.BGR + te-cy.B_G_R_.glif + te-cy.SRB + te-cy.S_R_B_.glif + te-cy.ss01 + te-cy.ss01.glif + tenge + tenge.glif + tenmillionscomb-cy + tenmillionscomb-cy.glif + tetailcyr + tetailcyr.glif + tetsecyr + tetsecyr.glif + tewithmiddlehook-cy + tewithmiddlehook-cy.glif + thorn + thorn.glif + thousandmillionscomb-cy + thousandmillionscomb-cy.glif + thousandscyr + thousandscyr.glif + thousandscyr.dnom + thousandscyr.dnom.glif + three + three.glif + three.osf + three.osf.glif + three.tf + three.tf.glif + threequarters + threequarters.glif + threesuperior + threesuperior.glif + tilde + tilde.glif + tilde.case + tilde.case.glif + titlocombcyr + titlocombcyr.glif + tjekomicyr + tjekomicyr.glif + trademark + trademark.glif + tse-cy + tse-cy.glif + tse-cy.BGR + tse-cy.B_G_R_.glif + tseReversed-cy + tseR_eversed-cy.glif + tshecyr + tshecyr.glif + tsse-cy + tsse-cy.glif + tswe-cy + tswe-cy.glif + twe-cy + twe-cy.glif + two + two.glif + two.osf + two.osf.glif + two.tf + two.tf.glif + twosuperior + twosuperior.glif + u + u.glif + u-cy + u-cy.glif + u-cy.accented + u-cy.accented.glif + uacute + uacute.glif + uacutedblcyr + uacutedblcyr.glif + ubreve + ubreve.glif + ucircumflex + ucircumflex.glif + udieresis + udieresis.glif + udieresiscyr + udieresiscyr.glif + ugrave + ugrave.glif + uhungarumlaut + uhungarumlaut.glif + ukMonograph-cy + ukM_onograph-cy.glif + ukcyr + ukcyr.glif + umacron + umacron.glif + umacroncyr + umacroncyr.glif + underscore + underscore.glif + uni1C80 + uni1C_80.glif + uni1C81 + uni1C_81.glif + uni1C82 + uni1C_82.glif + uni1C83 + uni1C_83.glif + uni1C84 + uni1C_84.glif + uni1C85 + uni1C_85.glif + uni1C86 + uni1C_86.glif + uni1C87 + uni1C_87.glif + uni1C88 + uni1C_88.glif + uni1EBC + uni1E_B_C_.glif + uni1EBD + uni1E_B_D_.glif + uni2010 + uni2010.glif + uni2DEE + uni2D_E_E_.glif + uni2DEE.case + uni2D_E_E_.case.glif + uniE000 + uniE_000.glif + uniE000.alt + uniE_000.alt.glif + uniE01A + uniE_01A_.glif + uniF43A + uniF_43A_.glif + uniF43B + uniF_43B_.glif + uniF45D + uniF_45D_.glif + uniF45E + uniF_45E_.glif + uniF45F + uniF_45F_.glif + uniF475 + uniF_475.glif + uniF476 + uniF_476.glif + uniF477 + uniF_477.glif + uniF478 + uniF_478.glif + uniF479 + uniF_479.glif + uniF498 + uniF_498.glif + uniF499 + uniF_499.glif + uniF49A + uniF_49A_.glif + uniF49B + uniF_49B_.glif + uniF49C + uniF_49C_.glif + uniF49D + uniF_49D_.glif + uniF49E + uniF_49E_.glif + uniF49F + uniF_49F_.glif + uniF4C6 + uniF_4C_6.glif + uniF4C7 + uniF_4C_7.glif + uniF4CC + uniF_4C_C_.glif + uniF4CD + uniF_4C_D_.glif + uniF4D2 + uniF_4D_2.glif + uniF4D3 + uniF_4D_3.glif + uniF4D4 + uniF_4D_4.glif + uniF4D5 + uniF_4D_5.glif + uniF4D6 + uniF_4D_6.glif + uniF4D7 + uniF_4D_7.glif + uniF4D8 + uniF_4D_8.glif + uniF4D9 + uniF_4D_9.glif + uniF50E + uniF_50E_.glif + uniF50F + uniF_50F_.glif + uniF510 + uniF_510.glif + uniF511 + uniF_511.glif + uniF512 + uniF_512.glif + uniF513 + uniF_513.glif + uniF514 + uniF_514.glif + uniF515 + uniF_515.glif + uniF516 + uniF_516.glif + uniF517 + uniF_517.glif + uniF518 + uniF_518.glif + uniF519 + uniF_519.glif + uniF51A + uniF_51A_.glif + uniF51B + uniF_51B_.glif + uniF51C + uniF_51C_.glif + uniF51D + uniF_51D_.glif + uniF51E + uniF_51E_.glif + uniF51F + uniF_51F_.glif + uniF521 + uniF_521.glif + uniF522 + uniF_522.glif + uniF523 + uniF_523.glif + uniF524 + uniF_524.glif + uniF525 + uniF_525.glif + uniF526 + uniF_526.glif + uniF527 + uniF_527.glif + uniF528 + uniF_528.glif + uniF529 + uniF_529.glif + uniF52A + uniF_52A_.glif + uniF52B + uniF_52B_.glif + uniF52C + uniF_52C_.glif + uniF52D + uniF_52D_.glif + uniF52E + uniF_52E_.glif + uniF52F + uniF_52F_.glif + uniF532 + uniF_532.glif + uniF533 + uniF_533.glif + uniF536 + uniF_536.glif + uniF537 + uniF_537.glif + uniF538 + uniF_538.glif + uniF539 + uniF_539.glif + uniF830 + uniF_830.glif + uniF831 + uniF_831.glif + uniF833 + uniF_833.glif + uniF834 + uniF_834.glif + uniF839 + uniF_839.glif + uniF83A + uniF_83A_.glif + uniF86F + uniF_86F_.glif + uniF870 + uniF_870.glif + uniF872 + uniF_872.glif + uniF873 + uniF_873.glif + uniF875 + uniF_875.glif + uniF876 + uniF_876.glif + uniF878 + uniF_878.glif + uniF879 + uniF_879.glif + uniF87B + uniF_87B_.glif + uniF87C + uniF_87C_.glif + uniF87E + uniF_87E_.glif + uniF87F + uniF_87F_.glif + uogonek + uogonek.glif + uring + uring.glif + ushort-cy + ushort-cy.glif + ustraightcyr + ustraightcyr.glif + ustraightstrokecyr + ustraightstrokecyr.glif + utilde + utilde.glif + v + v.glif + ve-cy + ve-cy.glif + ve-cy.BGR + ve-cy.B_G_R_.glif + ve-cy.ss01 + ve-cy.ss01.glif + virgo + virgo.glif + vzmetcomb-cy + vzmetcomb-cy.glif + w + w.glif + wacute + wacute.glif + wcircumflex + wcircumflex.glif + wdieresis + wdieresis.glif + wecyr + wecyr.glif + wgrave + wgrave.glif + x + x.glif + xatailcyr + xatailcyr.glif + y + y.glif + yacute + yacute.glif + yaecyr + yaecyr.glif + yatIotified-cy + yatI_otified-cy.glif + yatcyr + yatcyr.glif + yatcyr.BGR + yatcyr.B_G_R_.glif + ycircumflex + ycircumflex.glif + ydieresis + ydieresis.glif + yen + yen.glif + yen.ss01 + yen.ss01.glif + yerNeutral-cy + yerN_eutral-cy.glif + yeru-cy + yeru-cy.glif + yeru-cy.accented + yeru-cy.accented.glif + yeru-cy.ss01 + yeru-cy.ss01.glif + yeruBackyer-cy + yeruB_ackyer-cy.glif + yi-cy + yi-cy.glif + yi-cy.alt + yi-cy.alt.glif + ylongdieresiscyr + ylongdieresiscyr.glif + yn-cy + yn-cy.glif + yuReversed-cy + yuR_eversed-cy.glif + yusBlended-cy + yusB_lended-cy.glif + yusClosedlittle-cy + yusC_losedlittle-cy.glif + yusbigcyr + yusbigcyr.glif + yusbigiotifiedcyr + yusbigiotifiedcyr.glif + yusbigiotifiedcyr.BGR + yusbigiotifiedcyr.B_G_R_.glif + yusiotifiedClosedLittle-cy + yusiotifiedC_losedL_ittle-cy.glif + yuslittlecyr + yuslittlecyr.glif + yuslittleiotifiedcyr + yuslittleiotifiedcyr.glif + z + z.glif + zacute + zacute.glif + zcaron + zcaron.glif + zdotaccent + zdotaccent.glif + ze-cy + ze-cy.glif + ze-cy.BGR + ze-cy.B_G_R_.glif + zedieresiscyr + zedieresiscyr.glif + zemlya-cy + zemlya-cy.glif + zero + zero.glif + zero.osf + zero.osf.glif + zero.tf + zero.tf.glif + zetailcyr + zetailcyr.glif + zetailcyr.BSH + zetailcyr.B_S_H_.glif + zhe-cy + zhe-cy.glif + zhe-cy.BGR + zhe-cy.B_G_R_.glif + zhebrevecyr + zhebrevecyr.glif + zhedieresiscyr + zhedieresiscyr.glif + zhetailcyr + zhetailcyr.glif + zhwe-cy + zhwe-cy.glif + zjekomicyr + zjekomicyr.glif + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/copyright.glif b/sources/FixelDisplay-Thin.ufo/glyphs/copyright.glif new file mode 100644 index 00000000..0b907f73 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/copyright.glif @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/crossedo-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/crossedo-cy.glif new file mode 100644 index 00000000..764d5116 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/crossedo-cy.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + com.fontlab.recipe + o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/crossedswords.glif b/sources/FixelDisplay-Thin.ufo/glyphs/crossedswords.glif new file mode 100644 index 00000000..44e8bd16 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/crossedswords.glif @@ -0,0 +1,103 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/currency.glif b/sources/FixelDisplay-Thin.ufo/glyphs/currency.glif new file mode 100644 index 00000000..129e7993 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/currency.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/d.glif b/sources/FixelDisplay-Thin.ufo/glyphs/d.glif new file mode 100644 index 00000000..29ce4d57 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/d.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/d.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/d.ss01.glif new file mode 100644 index 00000000..0f62db22 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/d.ss01.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/dagger.glif b/sources/FixelDisplay-Thin.ufo/glyphs/dagger.glif new file mode 100644 index 00000000..f85fa4e8 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/dagger.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/daggerdbl.glif b/sources/FixelDisplay-Thin.ufo/glyphs/daggerdbl.glif new file mode 100644 index 00000000..b5843a08 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/daggerdbl.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/dcaron.glif b/sources/FixelDisplay-Thin.ufo/glyphs/dcaron.glif new file mode 100644 index 00000000..e91a5f33 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/dcaron.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + d+caron.salt + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/dcaron.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/dcaron.ss01.glif new file mode 100644 index 00000000..ec37f52d --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/dcaron.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + d.ss01+caron.salt + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/dchecyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/dchecyr.glif new file mode 100644 index 00000000..9e5434d5 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/dchecyr.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + д+10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/dcroat.glif b/sources/FixelDisplay-Thin.ufo/glyphs/dcroat.glif new file mode 100644 index 00000000..4e883196 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/dcroat.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + d + com.fontlab.metricsRight + |hbar + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/dcroat.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/dcroat.ss01.glif new file mode 100644 index 00000000..864eb6d1 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/dcroat.ss01.glif @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + d.ss01 + com.fontlab.metricsRight + |hbar + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/de-cy.B_G_R_.glif b/sources/FixelDisplay-Thin.ufo/glyphs/de-cy.B_G_R_.glif new file mode 100644 index 00000000..c0c053ad --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/de-cy.B_G_R_.glif @@ -0,0 +1,77 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + q + com.fontlab.metricsRight + q + com.fontlab.recipe + uni1C81 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/de-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/de-cy.glif new file mode 100644 index 00000000..7dc79ba0 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/de-cy.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/de-cy.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/de-cy.ss01.glif new file mode 100644 index 00000000..9fd9588d --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/de-cy.ss01.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/deS_oft-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/deS_oft-cy.glif new file mode 100644 index 00000000..282eb2f0 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/deS_oft-cy.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + д + com.fontlab.metricsRight + ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/degree.glif b/sources/FixelDisplay-Thin.ufo/glyphs/degree.glif new file mode 100644 index 00000000..0e5cec66 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/degree.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/dekomicyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/dekomicyr.glif new file mode 100644 index 00000000..12d41274 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/dekomicyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + d + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/diamondwhite-misc.glif b/sources/FixelDisplay-Thin.ufo/glyphs/diamondwhite-misc.glif new file mode 100644 index 00000000..c9ddad83 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/diamondwhite-misc.glif @@ -0,0 +1,145 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/dieresis.alt.glif b/sources/FixelDisplay-Thin.ufo/glyphs/dieresis.alt.glif new file mode 100644 index 00000000..0890f476 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/dieresis.alt.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 1,0.6,0.994,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/dieresis.case.glif b/sources/FixelDisplay-Thin.ufo/glyphs/dieresis.case.glif new file mode 100644 index 00000000..9fab3b35 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/dieresis.case.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/dieresis.glif b/sources/FixelDisplay-Thin.ufo/glyphs/dieresis.glif new file mode 100644 index 00000000..7ecb0a0c --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/dieresis.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/dieresisacute.glif b/sources/FixelDisplay-Thin.ufo/glyphs/dieresisacute.glif new file mode 100644 index 00000000..5cf2d49b --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/dieresisacute.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/dieresiscase.alt.glif b/sources/FixelDisplay-Thin.ufo/glyphs/dieresiscase.alt.glif new file mode 100644 index 00000000..ca21d25a --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/dieresiscase.alt.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 1,0.6,0.994,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/divide.glif b/sources/FixelDisplay-Thin.ufo/glyphs/divide.glif new file mode 100644 index 00000000..af4f0ec7 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/divide.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/djecyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/djecyr.glif new file mode 100644 index 00000000..dcbbb922 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/djecyr.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hbar + com.fontlab.metricsRight + h + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/djekomicyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/djekomicyr.glif new file mode 100644 index 00000000..74816557 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/djekomicyr.glif @@ -0,0 +1,73 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + d + com.fontlab.metricsRight + njekomicyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/djerv-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/djerv-cy.glif new file mode 100644 index 00000000..229eb0cc --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/djerv-cy.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + r() + com.fontlab.metricsRight + п-30 + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/dollar.glif b/sources/FixelDisplay-Thin.ufo/glyphs/dollar.glif new file mode 100644 index 00000000..4d325875 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/dollar.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + S + com.fontlab.metricsRight + S + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/dotaccent.case.glif b/sources/FixelDisplay-Thin.ufo/glyphs/dotaccent.case.glif new file mode 100644 index 00000000..710db964 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/dotaccent.case.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/dotaccent.glif b/sources/FixelDisplay-Thin.ufo/glyphs/dotaccent.glif new file mode 100644 index 00000000..1c4b11ba --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/dotaccent.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/doubleo-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/doubleo-cy.glif new file mode 100644 index 00000000..c53d3035 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/doubleo-cy.glif @@ -0,0 +1,91 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + com.fontlab.recipe + o_o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/dramsignarmn.glif b/sources/FixelDisplay-Thin.ufo/glyphs/dramsignarmn.glif new file mode 100644 index 00000000..a82faf5e --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/dramsignarmn.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/dwe-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/dwe-cy.glif new file mode 100644 index 00000000..fa0d1540 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/dwe-cy.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + д + com.fontlab.metricsRight + д + com.fontlab.recipe + д + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/dze-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/dze-cy.glif new file mode 100644 index 00000000..358ffa55 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/dze-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + s + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/dzeR_eversed-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/dzeR_eversed-cy.glif new file mode 100644 index 00000000..792a9469 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/dzeR_eversed-cy.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |s + com.fontlab.metricsRight + |s + com.fontlab.recipe + s + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/dzeabkhcyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/dzeabkhcyr.glif new file mode 100644 index 00000000..2262a3ee --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/dzeabkhcyr.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + z-30 + com.fontlab.metricsRight + з-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/dzelo-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/dzelo-cy.glif new file mode 100644 index 00000000..cdc88c96 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/dzelo-cy.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/dzhecyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/dzhecyr.glif new file mode 100644 index 00000000..6625041d --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/dzhecyr.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/dzjekomicyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/dzjekomicyr.glif new file mode 100644 index 00000000..f37eb1a3 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/dzjekomicyr.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + zjekomicyr + com.fontlab.metricsRight + ц-5 + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/dzwe-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/dzwe-cy.glif new file mode 100644 index 00000000..5c210208 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/dzwe-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + s + com.fontlab.metricsRight + s + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/dzze-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/dzze-cy.glif new file mode 100644 index 00000000..74525fe2 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/dzze-cy.glif @@ -0,0 +1,84 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + д + com.fontlab.metricsRight + д-30 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/dzzhecyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/dzzhecyr.glif new file mode 100644 index 00000000..ee04e81b --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/dzzhecyr.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + д+5 + com.fontlab.metricsRight + ж+5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/e-cy.accented.glif b/sources/FixelDisplay-Thin.ufo/glyphs/e-cy.accented.glif new file mode 100644 index 00000000..18753cd5 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/e-cy.accented.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+acute + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/e-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/e-cy.glif new file mode 100644 index 00000000..3648452d --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/e-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + c + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/e-cy.hist.glif b/sources/FixelDisplay-Thin.ufo/glyphs/e-cy.hist.glif new file mode 100644 index 00000000..5777ec5f --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/e-cy.hist.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + c + com.fontlab.recipe + uni1C83 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/e.glif b/sources/FixelDisplay-Thin.ufo/glyphs/e.glif new file mode 100644 index 00000000..216c5579 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/e.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/e.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/e.ss01.glif new file mode 100644 index 00000000..2ee7de3d --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/e.ss01.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + O-5 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/eacute.glif b/sources/FixelDisplay-Thin.ufo/glyphs/eacute.glif new file mode 100644 index 00000000..3c779700 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/eacute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+acute + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/eacute.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/eacute.ss01.glif new file mode 100644 index 00000000..de76bc3a --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/eacute.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+acute + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/ebreve.glif b/sources/FixelDisplay-Thin.ufo/glyphs/ebreve.glif new file mode 100644 index 00000000..480bf542 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/ebreve.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+breve + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/ebreve.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/ebreve.ss01.glif new file mode 100644 index 00000000..16775298 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/ebreve.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+breve + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/ecaron.glif b/sources/FixelDisplay-Thin.ufo/glyphs/ecaron.glif new file mode 100644 index 00000000..1132829c --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/ecaron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+caron + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/ecaron.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/ecaron.ss01.glif new file mode 100644 index 00000000..6d91c758 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/ecaron.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+caron + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/ecircumflex.glif b/sources/FixelDisplay-Thin.ufo/glyphs/ecircumflex.glif new file mode 100644 index 00000000..552ac47c --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/ecircumflex.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+circumflex + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/ecircumflex.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/ecircumflex.ss01.glif new file mode 100644 index 00000000..7f91bbd2 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/ecircumflex.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+circumflex + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/edieresis.glif b/sources/FixelDisplay-Thin.ufo/glyphs/edieresis.glif new file mode 100644 index 00000000..ed7c7e75 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/edieresis.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsLeft + e + com.fontlab.metricsRight + e + com.fontlab.recipe + e+dieresis + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/edieresis.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/edieresis.ss01.glif new file mode 100644 index 00000000..3e957457 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/edieresis.ss01.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsLeft + e + com.fontlab.metricsRight + e + com.fontlab.recipe + e.ss01+dieresis + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/edotaccent.glif b/sources/FixelDisplay-Thin.ufo/glyphs/edotaccent.glif new file mode 100644 index 00000000..21e3f10f --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/edotaccent.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+dotaccent + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/edotaccent.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/edotaccent.ss01.glif new file mode 100644 index 00000000..afa94170 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/edotaccent.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+dotaccent + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/ef-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/ef-cy.glif new file mode 100644 index 00000000..6d30c8a1 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/ef-cy.glif @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/egrave.glif b/sources/FixelDisplay-Thin.ufo/glyphs/egrave.glif new file mode 100644 index 00000000..59554487 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/egrave.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+grave + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/egrave.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/egrave.ss01.glif new file mode 100644 index 00000000..0159ceda --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/egrave.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+grave + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/eight.glif b/sources/FixelDisplay-Thin.ufo/glyphs/eight.glif new file mode 100644 index 00000000..512c507b --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/eight.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/eight.osf.glif b/sources/FixelDisplay-Thin.ufo/glyphs/eight.osf.glif new file mode 100644 index 00000000..ab52c764 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/eight.osf.glif @@ -0,0 +1,15 @@ + + + + + + + + + com.fontlab.metricsLeft + eight + com.fontlab.metricsRight + eight + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/eight.tf.glif b/sources/FixelDisplay-Thin.ufo/glyphs/eight.tf.glif new file mode 100644 index 00000000..8319963e --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/eight.tf.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/eiotifiedcyr.B_G_R_.glif b/sources/FixelDisplay-Thin.ufo/glyphs/eiotifiedcyr.B_G_R_.glif new file mode 100644 index 00000000..1f45409a --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/eiotifiedcyr.B_G_R_.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + c + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/eiotifiedcyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/eiotifiedcyr.glif new file mode 100644 index 00000000..64acb3af --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/eiotifiedcyr.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + c + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/el-cy.B_G_R_.glif b/sources/FixelDisplay-Thin.ufo/glyphs/el-cy.B_G_R_.glif new file mode 100644 index 00000000..0de8b26a --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/el-cy.B_G_R_.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + v + com.fontlab.metricsRight + v + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/el-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/el-cy.glif new file mode 100644 index 00000000..09b4ae00 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/el-cy.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/el-cy.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/el-cy.ss01.glif new file mode 100644 index 00000000..91a2a7dd --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/el-cy.ss01.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/elS_oft-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/elS_oft-cy.glif new file mode 100644 index 00000000..46a9694c --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/elS_oft-cy.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/elhookcyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/elhookcyr.glif new file mode 100644 index 00000000..170bd743 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/elhookcyr.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + н + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/ellipsis.glif b/sources/FixelDisplay-Thin.ufo/glyphs/ellipsis.glif new file mode 100644 index 00000000..2de2605f --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/ellipsis.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/elmiddlehookcyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/elmiddlehookcyr.glif new file mode 100644 index 00000000..05421bb4 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/elmiddlehookcyr.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + enmiddlehookcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/elsharptailcyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/elsharptailcyr.glif new file mode 100644 index 00000000..1169b901 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/elsharptailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + ensharptailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/eltailcyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/eltailcyr.glif new file mode 100644 index 00000000..a863bbf0 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/eltailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/em-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/em-cy.glif new file mode 100644 index 00000000..5dce221a --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/em-cy.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/emS_oft-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/emS_oft-cy.glif new file mode 100644 index 00000000..c355c573 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/emS_oft-cy.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + м + com.fontlab.metricsRight + ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/emacron.glif b/sources/FixelDisplay-Thin.ufo/glyphs/emacron.glif new file mode 100644 index 00000000..97b82b25 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/emacron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+macron + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/emacron.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/emacron.ss01.glif new file mode 100644 index 00000000..8e5ba20e --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/emacron.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+macron + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/emdash.case.glif b/sources/FixelDisplay-Thin.ufo/glyphs/emdash.case.glif new file mode 100644 index 00000000..f8e02ee3 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/emdash.case.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/emdash.glif b/sources/FixelDisplay-Thin.ufo/glyphs/emdash.glif new file mode 100644 index 00000000..c3af9db6 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/emdash.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/emsharptailcyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/emsharptailcyr.glif new file mode 100644 index 00000000..461069e0 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/emsharptailcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + м + com.fontlab.metricsRight + ensharptailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/en-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/en-cy.glif new file mode 100644 index 00000000..6c7e44c1 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/en-cy.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/enclosingcirclecomb.glif b/sources/FixelDisplay-Thin.ufo/glyphs/enclosingcirclecomb.glif new file mode 100644 index 00000000..c28acd13 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/enclosingcirclecomb.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/endash.case.glif b/sources/FixelDisplay-Thin.ufo/glyphs/endash.case.glif new file mode 100644 index 00000000..4cb6a99f --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/endash.case.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/endash.glif b/sources/FixelDisplay-Thin.ufo/glyphs/endash.glif new file mode 100644 index 00000000..eaf9f41e --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/endash.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/eng.glif b/sources/FixelDisplay-Thin.ufo/glyphs/eng.glif new file mode 100644 index 00000000..557d6a23 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/eng.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + n + com.fontlab.metricsRight + dotlessj + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/engecyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/engecyr.glif new file mode 100644 index 00000000..c0f5f1a6 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/engecyr.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/enhookcyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/enhookcyr.glif new file mode 100644 index 00000000..82037a6a --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/enhookcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/enhookleftcyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/enhookleftcyr.glif new file mode 100644 index 00000000..89184de5 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/enhookleftcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + j + com.fontlab.metricsRight + н + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/enmiddlehookcyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/enmiddlehookcyr.glif new file mode 100644 index 00000000..17798583 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/enmiddlehookcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + softsign-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/ensharptailcyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/ensharptailcyr.glif new file mode 100644 index 00000000..ed46c48a --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/ensharptailcyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + д + com.fontlab.recipe + entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/entailcyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/entailcyr.glif new file mode 100644 index 00000000..9c3de948 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/entailcyr.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + ц + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/eogonek.glif b/sources/FixelDisplay-Thin.ufo/glyphs/eogonek.glif new file mode 100644 index 00000000..07400bde --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/eogonek.glif @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + e+ogonek + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/eogonek.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/eogonek.ss01.glif new file mode 100644 index 00000000..403b76ee --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/eogonek.ss01.glif @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + e.ss01+ogonek + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/equal.glif b/sources/FixelDisplay-Thin.ufo/glyphs/equal.glif new file mode 100644 index 00000000..29321c20 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/equal.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/er-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/er-cy.glif new file mode 100644 index 00000000..9f92baaf --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/er-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + p + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/er-cy.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/er-cy.ss01.glif new file mode 100644 index 00000000..6fd6e2b8 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/er-cy.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + p.ss01 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/ereversed-cy.accented.glif b/sources/FixelDisplay-Thin.ufo/glyphs/ereversed-cy.accented.glif new file mode 100644 index 00000000..f7ce4892 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/ereversed-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + э+acute + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/ereversed-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/ereversed-cy.glif new file mode 100644 index 00000000..e1dd389b --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/ereversed-cy.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |c + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/ereverseddieresiscyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/ereverseddieresiscyr.glif new file mode 100644 index 00000000..9ef98bcf --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/ereverseddieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ereversed-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/ertickcyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/ertickcyr.glif new file mode 100644 index 00000000..d51dc35a --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/ertickcyr.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + p + com.fontlab.metricsRight + p + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/es-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/es-cy.glif new file mode 100644 index 00000000..b5b4c173 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/es-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/estailcyr.B_S_H_.glif b/sources/FixelDisplay-Thin.ufo/glyphs/estailcyr.B_S_H_.glif new file mode 100644 index 00000000..0c090346 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/estailcyr.B_S_H_.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + c + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/estailcyr.C_H_U_.glif b/sources/FixelDisplay-Thin.ufo/glyphs/estailcyr.C_H_U_.glif new file mode 100644 index 00000000..8b47d535 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/estailcyr.C_H_U_.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+cedilla + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/estailcyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/estailcyr.glif new file mode 100644 index 00000000..1ec2240c --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/estailcyr.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + с + com.fontlab.metricsRight + с + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/estimated.glif b/sources/FixelDisplay-Thin.ufo/glyphs/estimated.glif new file mode 100644 index 00000000..442e7071 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/estimated.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/eth.glif b/sources/FixelDisplay-Thin.ufo/glyphs/eth.glif new file mode 100644 index 00000000..a386eeff --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/eth.glif @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/eturned.glif b/sources/FixelDisplay-Thin.ufo/glyphs/eturned.glif new file mode 100644 index 00000000..c446f419 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/eturned.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + schwacyr + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/euro.glif b/sources/FixelDisplay-Thin.ufo/glyphs/euro.glif new file mode 100644 index 00000000..9412e8f0 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/euro.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + C + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/exclam.glif b/sources/FixelDisplay-Thin.ufo/glyphs/exclam.glif new file mode 100644 index 00000000..2f6b224f --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/exclam.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/exclamdown.case.glif b/sources/FixelDisplay-Thin.ufo/glyphs/exclamdown.case.glif new file mode 100644 index 00000000..1622898c --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/exclamdown.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + exclamdown + com.fontlab.metricsRight + exclamdown + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/exclamdown.glif b/sources/FixelDisplay-Thin.ufo/glyphs/exclamdown.glif new file mode 100644 index 00000000..ca8d3d64 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/exclamdown.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/f.glif b/sources/FixelDisplay-Thin.ufo/glyphs/f.glif new file mode 100644 index 00000000..ffecfa50 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/f.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/f.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/f.ss01.glif new file mode 100644 index 00000000..b82f5324 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/f.ss01.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/f_f.glif b/sources/FixelDisplay-Thin.ufo/glyphs/f_f.glif new file mode 100644 index 00000000..ab2fd73d --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/f_f.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f + com.fontlab.metricsRight + f + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/f_f.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/f_f.ss01.glif new file mode 100644 index 00000000..8e489c02 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/f_f.ss01.glif @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f.ss01 + com.fontlab.metricsRight + f.ss01 + com.fontlab.recipe + f.ss01_f.ss01 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/f_f_i.glif b/sources/FixelDisplay-Thin.ufo/glyphs/f_f_i.glif new file mode 100644 index 00000000..19eb6d24 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/f_f_i.glif @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f + com.fontlab.metricsRight + i + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/f_f_i.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/f_f_i.ss01.glif new file mode 100644 index 00000000..85437eba --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/f_f_i.ss01.glif @@ -0,0 +1,88 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f.ss01 + com.fontlab.metricsRight + i + com.fontlab.recipe + f.ss01_f.ss01_i + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/f_f_l.glif b/sources/FixelDisplay-Thin.ufo/glyphs/f_f_l.glif new file mode 100644 index 00000000..2aa8492d --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/f_f_l.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f + com.fontlab.metricsRight + l + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/f_f_l.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/f_f_l.ss01.glif new file mode 100644 index 00000000..2c15695b --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/f_f_l.ss01.glif @@ -0,0 +1,86 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f.ss01 + com.fontlab.metricsRight + l.ss01 + com.fontlab.recipe + f.ss01_f.ss01_l.ss01 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/fi.glif b/sources/FixelDisplay-Thin.ufo/glyphs/fi.glif new file mode 100644 index 00000000..e997a26a --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/fi.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f + com.fontlab.metricsRight + i + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/fi.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/fi.ss01.glif new file mode 100644 index 00000000..9086d134 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/fi.ss01.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f.ss01 + com.fontlab.metricsRight + i + com.fontlab.recipe + f.ss01_i + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/fitacyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/fitacyr.glif new file mode 100644 index 00000000..ac895a31 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/fitacyr.glif @@ -0,0 +1,76 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + obarcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/five.glif b/sources/FixelDisplay-Thin.ufo/glyphs/five.glif new file mode 100644 index 00000000..e993aed4 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/five.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/five.osf.glif b/sources/FixelDisplay-Thin.ufo/glyphs/five.osf.glif new file mode 100644 index 00000000..d252747d --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/five.osf.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + five + com.fontlab.metricsRight + five + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/five.tf.glif b/sources/FixelDisplay-Thin.ufo/glyphs/five.tf.glif new file mode 100644 index 00000000..d546b4bc --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/five.tf.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/fl.glif b/sources/FixelDisplay-Thin.ufo/glyphs/fl.glif new file mode 100644 index 00000000..f9ee1132 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/fl.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f + com.fontlab.metricsRight + l + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/fl.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/fl.ss01.glif new file mode 100644 index 00000000..d15f2da3 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/fl.ss01.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f.ss01 + com.fontlab.metricsRight + l.ss01 + com.fontlab.recipe + f.ss01_l.ss01 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/floretteblack.glif b/sources/FixelDisplay-Thin.ufo/glyphs/floretteblack.glif new file mode 100644 index 00000000..f96bfb21 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/floretteblack.glif @@ -0,0 +1,522 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/floretteoutlinedpetalledblackeight.glif b/sources/FixelDisplay-Thin.ufo/glyphs/floretteoutlinedpetalledblackeight.glif new file mode 100644 index 00000000..2a5eac06 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/floretteoutlinedpetalledblackeight.glif @@ -0,0 +1,693 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/florettewhite.glif b/sources/FixelDisplay-Thin.ufo/glyphs/florettewhite.glif new file mode 100644 index 00000000..e135cdf0 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/florettewhite.glif @@ -0,0 +1,417 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/florin.glif b/sources/FixelDisplay-Thin.ufo/glyphs/florin.glif new file mode 100644 index 00000000..debf6816 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/florin.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/flower.glif b/sources/FixelDisplay-Thin.ufo/glyphs/flower.glif new file mode 100644 index 00000000..90d37008 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/flower.glif @@ -0,0 +1,278 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/four.glif b/sources/FixelDisplay-Thin.ufo/glyphs/four.glif new file mode 100644 index 00000000..93098600 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/four.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/four.osf.glif b/sources/FixelDisplay-Thin.ufo/glyphs/four.osf.glif new file mode 100644 index 00000000..b955daf8 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/four.osf.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + four + com.fontlab.metricsRight + four + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/four.tf.glif b/sources/FixelDisplay-Thin.ufo/glyphs/four.tf.glif new file mode 100644 index 00000000..417bbcb7 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/four.tf.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/fraction.glif b/sources/FixelDisplay-Thin.ufo/glyphs/fraction.glif new file mode 100644 index 00000000..e06de5bc --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/fraction.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/g.glif b/sources/FixelDisplay-Thin.ufo/glyphs/g.glif new file mode 100644 index 00000000..1d703a1b --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/g.glif @@ -0,0 +1,94 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/g.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/g.ss01.glif new file mode 100644 index 00000000..314bb6b0 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/g.ss01.glif @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/gacute.glif b/sources/FixelDisplay-Thin.ufo/glyphs/gacute.glif new file mode 100644 index 00000000..1d02636a --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/gacute.glif @@ -0,0 +1,109 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + g+acute + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/gacute.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/gacute.ss01.glif new file mode 100644 index 00000000..8a485e98 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/gacute.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + g.ss01+acute + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/gbreve.glif b/sources/FixelDisplay-Thin.ufo/glyphs/gbreve.glif new file mode 100644 index 00000000..2733ff0c --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/gbreve.glif @@ -0,0 +1,119 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + g+breve + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/gbreve.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/gbreve.ss01.glif new file mode 100644 index 00000000..7e8e92dc --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/gbreve.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + g.ss01+breve + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/gcircumflex.glif b/sources/FixelDisplay-Thin.ufo/glyphs/gcircumflex.glif new file mode 100644 index 00000000..c62be8f4 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/gcircumflex.glif @@ -0,0 +1,113 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + g+circumflex + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/gcircumflex.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/gcircumflex.ss01.glif new file mode 100644 index 00000000..7bc06e60 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/gcircumflex.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + g.ss01+circumflex + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/gcommaaccent.glif b/sources/FixelDisplay-Thin.ufo/glyphs/gcommaaccent.glif new file mode 100644 index 00000000..c06ed55c --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/gcommaaccent.glif @@ -0,0 +1,121 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + g+commaaccentcomb.salt + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/gcommaaccent.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/gcommaaccent.ss01.glif new file mode 100644 index 00000000..3416cbb3 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/gcommaaccent.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + g.ss01+commaaccentcomb.salt + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/gdotaccent.glif b/sources/FixelDisplay-Thin.ufo/glyphs/gdotaccent.glif new file mode 100644 index 00000000..97b8c698 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/gdotaccent.glif @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + g+dotaccent + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/gdotaccent.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/gdotaccent.ss01.glif new file mode 100644 index 00000000..c85cb338 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/gdotaccent.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + g.ss01+dotaccent + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/ge-cy.B_G_R_.glif b/sources/FixelDisplay-Thin.ufo/glyphs/ge-cy.B_G_R_.glif new file mode 100644 index 00000000..df7a55d9 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/ge-cy.B_G_R_.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |s+5 + com.fontlab.metricsRight + |s+5 + com.fontlab.recipe + dzeReversed-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/ge-cy.S_R_B_.glif b/sources/FixelDisplay-Thin.ufo/glyphs/ge-cy.S_R_B_.glif new file mode 100644 index 00000000..89299bbe --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/ge-cy.S_R_B_.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + iota-cy+macron + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/ge-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/ge-cy.glif new file mode 100644 index 00000000..f061b0fd --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/ge-cy.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + т + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/gehookcyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/gehookcyr.glif new file mode 100644 index 00000000..b8a8445a --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/gehookcyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + г + com.fontlab.metricsRight + enmiddlehookcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/gehookstrokecyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/gehookstrokecyr.glif new file mode 100644 index 00000000..178f80e3 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/gehookstrokecyr.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + gestrokecyr + com.fontlab.metricsRight + gestrokecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/germandbls.glif b/sources/FixelDisplay-Thin.ufo/glyphs/germandbls.glif new file mode 100644 index 00000000..199e970d --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/germandbls.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + h-5 + com.fontlab.metricsRight + з + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/germandbls.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/germandbls.ss01.glif new file mode 100644 index 00000000..546dbfda --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/germandbls.ss01.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f.ss01 + com.fontlab.metricsRight + з + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/gestrokecyr.B_S_H_.glif b/sources/FixelDisplay-Thin.ufo/glyphs/gestrokecyr.B_S_H_.glif new file mode 100644 index 00000000..b62271d6 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/gestrokecyr.B_S_H_.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + г + com.fontlab.metricsRight + gestrokecyr + com.fontlab.recipe + gestrokecyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/gestrokecyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/gestrokecyr.glif new file mode 100644 index 00000000..ebfd6c6a --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/gestrokecyr.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + г + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/getailcyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/getailcyr.glif new file mode 100644 index 00000000..336694a7 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/getailcyr.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + г + com.fontlab.metricsRight + г + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/gheupturn-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/gheupturn-cy.glif new file mode 100644 index 00000000..94080fd9 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/gheupturn-cy.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + г + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/gjecyr.S_R_B_.glif b/sources/FixelDisplay-Thin.ufo/glyphs/gjecyr.S_R_B_.glif new file mode 100644 index 00000000..4ed71d52 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/gjecyr.S_R_B_.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + iota-cy+macronacute.SRB + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/gjecyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/gjecyr.glif new file mode 100644 index 00000000..f82fb5b2 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/gjecyr.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/grave.case.glif b/sources/FixelDisplay-Thin.ufo/glyphs/grave.case.glif new file mode 100644 index 00000000..0a219d05 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/grave.case.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/grave.glif b/sources/FixelDisplay-Thin.ufo/glyphs/grave.glif new file mode 100644 index 00000000..24dbd254 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/grave.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/greater.glif b/sources/FixelDisplay-Thin.ufo/glyphs/greater.glif new file mode 100644 index 00000000..06390dfb --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/greater.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |less + com.fontlab.metricsRight + |less + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/greaterequal.glif b/sources/FixelDisplay-Thin.ufo/glyphs/greaterequal.glif new file mode 100644 index 00000000..993a5b42 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/greaterequal.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/guillemetleft.case.glif b/sources/FixelDisplay-Thin.ufo/glyphs/guillemetleft.case.glif new file mode 100644 index 00000000..9ac3d670 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/guillemetleft.case.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + guilsinglleft + com.fontlab.metricsRight + guilsinglleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/guillemetleft.glif b/sources/FixelDisplay-Thin.ufo/glyphs/guillemetleft.glif new file mode 100644 index 00000000..72f57417 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/guillemetleft.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + guilsinglleft + com.fontlab.metricsRight + guilsinglleft + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/guillemetright.case.glif b/sources/FixelDisplay-Thin.ufo/glyphs/guillemetright.case.glif new file mode 100644 index 00000000..76722d71 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/guillemetright.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |guillemetleft.case + com.fontlab.metricsRight + |guillemetleft.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/guillemetright.glif b/sources/FixelDisplay-Thin.ufo/glyphs/guillemetright.glif new file mode 100644 index 00000000..dc113eb8 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/guillemetright.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |guilsinglleft + com.fontlab.metricsRight + |guilsinglleft + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/guilsinglleft.case.glif b/sources/FixelDisplay-Thin.ufo/glyphs/guilsinglleft.case.glif new file mode 100644 index 00000000..920634f5 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/guilsinglleft.case.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/guilsinglleft.glif b/sources/FixelDisplay-Thin.ufo/glyphs/guilsinglleft.glif new file mode 100644 index 00000000..e0d8e7b9 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/guilsinglleft.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/guilsinglright.case.glif b/sources/FixelDisplay-Thin.ufo/glyphs/guilsinglright.case.glif new file mode 100644 index 00000000..662121dd --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/guilsinglright.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |guilsinglleft + com.fontlab.metricsRight + |guilsinglleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/guilsinglright.glif b/sources/FixelDisplay-Thin.ufo/glyphs/guilsinglright.glif new file mode 100644 index 00000000..1a58f570 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/guilsinglright.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + |guilsinglleft + com.fontlab.metricsRight + |guilsinglleft + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/h.glif b/sources/FixelDisplay-Thin.ufo/glyphs/h.glif new file mode 100644 index 00000000..cb86b03a --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/h.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + com.fontlab.metricsRight + n + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/ha-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/ha-cy.glif new file mode 100644 index 00000000..e9dbff99 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/ha-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + x + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/haabkhcyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/haabkhcyr.glif new file mode 100644 index 00000000..b8ba8e0d --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/haabkhcyr.glif @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + |o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/hahookcyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/hahookcyr.glif new file mode 100644 index 00000000..2608d3a6 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/hahookcyr.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + x + com.fontlab.metricsRight + x + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/hardsign-cy.B_G_R_.glif b/sources/FixelDisplay-Thin.ufo/glyphs/hardsign-cy.B_G_R_.glif new file mode 100644 index 00000000..e888ce09 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/hardsign-cy.B_G_R_.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/hardsign-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/hardsign-cy.glif new file mode 100644 index 00000000..cfd028ca --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/hardsign-cy.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/hardsign-cy.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/hardsign-cy.ss01.glif new file mode 100644 index 00000000..484c7eb7 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/hardsign-cy.ss01.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/hastrokecyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/hastrokecyr.glif new file mode 100644 index 00000000..98a00c51 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/hastrokecyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + x + com.fontlab.metricsRight + x + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/hbar.glif b/sources/FixelDisplay-Thin.ufo/glyphs/hbar.glif new file mode 100644 index 00000000..63668c23 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/hbar.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + h + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/hcircumflex.glif b/sources/FixelDisplay-Thin.ufo/glyphs/hcircumflex.glif new file mode 100644 index 00000000..00dd52fe --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/hcircumflex.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + h+circumflex.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/heart.glif b/sources/FixelDisplay-Thin.ufo/glyphs/heart.glif new file mode 100644 index 00000000..2f50e60e --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/heart.glif @@ -0,0 +1,320 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/heartwhite.glif b/sources/FixelDisplay-Thin.ufo/glyphs/heartwhite.glif new file mode 100644 index 00000000..73987819 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/heartwhite.glif @@ -0,0 +1,189 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/hryvnia.glif b/sources/FixelDisplay-Thin.ufo/glyphs/hryvnia.glif new file mode 100644 index 00000000..01852f46 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/hryvnia.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/hundredmillionscomb-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/hundredmillionscomb-cy.glif new file mode 100644 index 00000000..67d8b309 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/hundredmillionscomb-cy.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/hundredthousandscombcyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/hundredthousandscombcyr.glif new file mode 100644 index 00000000..c0f89ad9 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/hundredthousandscombcyr.glif @@ -0,0 +1,141 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/hungarumlaut.case.glif b/sources/FixelDisplay-Thin.ufo/glyphs/hungarumlaut.case.glif new file mode 100644 index 00000000..6978f7a1 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/hungarumlaut.case.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/hungarumlaut.glif b/sources/FixelDisplay-Thin.ufo/glyphs/hungarumlaut.glif new file mode 100644 index 00000000..b9ddbef6 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/hungarumlaut.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/hwe-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/hwe-cy.glif new file mode 100644 index 00000000..918a2e40 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/hwe-cy.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + h + com.fontlab.metricsRight + h + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/hyphen.case.glif b/sources/FixelDisplay-Thin.ufo/glyphs/hyphen.case.glif new file mode 100644 index 00000000..3d76024a --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/hyphen.case.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.metricsLeft + hyphen + com.fontlab.metricsRight + hyphen + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/hyphen.glif b/sources/FixelDisplay-Thin.ufo/glyphs/hyphen.glif new file mode 100644 index 00000000..f3d13cae --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/hyphen.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/i-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/i-cy.glif new file mode 100644 index 00000000..5e0f811b --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/i-cy.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + i + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/i.glif b/sources/FixelDisplay-Thin.ufo/glyphs/i.glif new file mode 100644 index 00000000..7de1f2c6 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/i.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + dotlessi+dotaccent + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/ia-cy.accented.glif b/sources/FixelDisplay-Thin.ufo/glyphs/ia-cy.accented.glif new file mode 100644 index 00000000..9b329b15 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/ia-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + я+acute + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/ia-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/ia-cy.glif new file mode 100644 index 00000000..6c7eed55 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/ia-cy.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/ia-cy.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/ia-cy.ss01.glif new file mode 100644 index 00000000..67efd382 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/ia-cy.ss01.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/iacute.glif b/sources/FixelDisplay-Thin.ufo/glyphs/iacute.glif new file mode 100644 index 00000000..972208b1 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/iacute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + dotlessi+acute + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/ibreve.glif b/sources/FixelDisplay-Thin.ufo/glyphs/ibreve.glif new file mode 100644 index 00000000..112b8c61 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/ibreve.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + dotlessi+breve + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/icircumflex.glif b/sources/FixelDisplay-Thin.ufo/glyphs/icircumflex.glif new file mode 100644 index 00000000..b3e1d95e --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/icircumflex.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + dotlessi+circumflex + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/idieresis.glif b/sources/FixelDisplay-Thin.ufo/glyphs/idieresis.glif new file mode 100644 index 00000000..14e5111f --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/idieresis.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + idotless+dieresis.alt + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/idieresiscyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/idieresiscyr.glif new file mode 100644 index 00000000..9b516c72 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/idieresiscyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ii-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/idotless.glif b/sources/FixelDisplay-Thin.ufo/glyphs/idotless.glif new file mode 100644 index 00000000..b9364dd8 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/idotless.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/ie-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/ie-cy.glif new file mode 100644 index 00000000..846ec610 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/ie-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/ie-cy.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/ie-cy.ss01.glif new file mode 100644 index 00000000..2ad86ec7 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/ie-cy.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/iebrevecyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/iebrevecyr.glif new file mode 100644 index 00000000..42cbfb54 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/iebrevecyr.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+breve + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/iegravecyr.S_R_B_.glif b/sources/FixelDisplay-Thin.ufo/glyphs/iegravecyr.S_R_B_.glif new file mode 100644 index 00000000..65eb8df5 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/iegravecyr.S_R_B_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+grave + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/iegravecyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/iegravecyr.glif new file mode 100644 index 00000000..a9d67376 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/iegravecyr.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+grave + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/igrave.glif b/sources/FixelDisplay-Thin.ufo/glyphs/igrave.glif new file mode 100644 index 00000000..6ee40188 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/igrave.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + dotlessi+grave + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/igravecyr.S_R_B_.glif b/sources/FixelDisplay-Thin.ufo/glyphs/igravecyr.S_R_B_.glif new file mode 100644 index 00000000..ce20801e --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/igravecyr.S_R_B_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+grave + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/igravecyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/igravecyr.glif new file mode 100644 index 00000000..4362ac43 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/igravecyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ii-cy+grave + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/ii-cy.B_G_R_.glif b/sources/FixelDisplay-Thin.ufo/glyphs/ii-cy.B_G_R_.glif new file mode 100644 index 00000000..128caa24 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/ii-cy.B_G_R_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/ii-cy.accented.glif b/sources/FixelDisplay-Thin.ufo/glyphs/ii-cy.accented.glif new file mode 100644 index 00000000..047c3fc4 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/ii-cy.accented.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + и+acute + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/ii-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/ii-cy.glif new file mode 100644 index 00000000..35586564 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/ii-cy.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/iishort-cy.B_G_R_.glif b/sources/FixelDisplay-Thin.ufo/glyphs/iishort-cy.B_G_R_.glif new file mode 100644 index 00000000..f100209a --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/iishort-cy.B_G_R_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/iishort-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/iishort-cy.glif new file mode 100644 index 00000000..d3bf43ab --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/iishort-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + icyr+breve + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/ij.glif b/sources/FixelDisplay-Thin.ufo/glyphs/ij.glif new file mode 100644 index 00000000..98f00172 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/ij.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + i + com.fontlab.metricsRight + j + com.fontlab.recipe + i_j + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/imacron.glif b/sources/FixelDisplay-Thin.ufo/glyphs/imacron.glif new file mode 100644 index 00000000..e5231367 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/imacron.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =5 + com.fontlab.metricsRight + =5 + com.fontlab.recipe + idotless+macron + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/imacroncyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/imacroncyr.glif new file mode 100644 index 00000000..7843efc2 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/imacroncyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ii-cy+macron + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/increment.glif b/sources/FixelDisplay-Thin.ufo/glyphs/increment.glif new file mode 100644 index 00000000..95976e04 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/increment.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/infinity.glif b/sources/FixelDisplay-Thin.ufo/glyphs/infinity.glif new file mode 100644 index 00000000..34e47696 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/infinity.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/integral.glif b/sources/FixelDisplay-Thin.ufo/glyphs/integral.glif new file mode 100644 index 00000000..06b42812 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/integral.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/io-cy.accented.glif b/sources/FixelDisplay-Thin.ufo/glyphs/io-cy.accented.glif new file mode 100644 index 00000000..bdc3249f --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/io-cy.accented.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsLeft + e + com.fontlab.metricsRight + e + com.fontlab.recipe + e+dieresisacute + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/io-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/io-cy.glif new file mode 100644 index 00000000..68f03ae7 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/io-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + edieresis + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/io-cy.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/io-cy.ss01.glif new file mode 100644 index 00000000..c64dc150 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/io-cy.ss01.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + edieresis.ss01 + com.schriftgestaltung.Glyphs.ComponentInfo + + + alignment + -1 + index + 0 + name + edieresis.ss01 + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/iogonek.glif b/sources/FixelDisplay-Thin.ufo/glyphs/iogonek.glif new file mode 100644 index 00000000..24c5a493 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/iogonek.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + i+ogonek + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/iota-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/iota-cy.glif new file mode 100644 index 00000000..0a46afc1 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/iota-cy.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l.ss01 + com.fontlab.metricsRight + l.ss01 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/iotifieda-cy.B_G_R_.glif b/sources/FixelDisplay-Thin.ufo/glyphs/iotifieda-cy.B_G_R_.glif new file mode 100644 index 00000000..0ea03de1 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/iotifieda-cy.B_G_R_.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + el-cy.BGR + com.fontlab.recipe + iotifieda-cy + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/iotifieda-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/iotifieda-cy.glif new file mode 100644 index 00000000..d11d9db3 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/iotifieda-cy.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + yusClosedlittle-cy + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/iotifieda-cy.hist.glif b/sources/FixelDisplay-Thin.ufo/glyphs/iotifieda-cy.hist.glif new file mode 100644 index 00000000..09e2128f --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/iotifieda-cy.hist.glif @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + reversedzecyr + com.fontlab.metricsRight + a + public.markColor + 0.6,0.997,1,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/ishortsharptailcyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/ishortsharptailcyr.glif new file mode 100644 index 00000000..b0a21429 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/ishortsharptailcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + й + com.fontlab.metricsRight + ensharptailcyr + com.fontlab.recipe + й + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/itilde.glif b/sources/FixelDisplay-Thin.ufo/glyphs/itilde.glif new file mode 100644 index 00000000..3215a0db --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/itilde.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + dotlessi+tilde + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/iu-cy.B_G_R_.glif b/sources/FixelDisplay-Thin.ufo/glyphs/iu-cy.B_G_R_.glif new file mode 100644 index 00000000..bf32ffab --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/iu-cy.B_G_R_.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + o + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/iu-cy.accented.glif b/sources/FixelDisplay-Thin.ufo/glyphs/iu-cy.accented.glif new file mode 100644 index 00000000..fbba9f54 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/iu-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ю+acute + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/iu-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/iu-cy.glif new file mode 100644 index 00000000..d34c65af --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/iu-cy.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/izhitsacyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/izhitsacyr.glif new file mode 100644 index 00000000..e8c3ab14 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/izhitsacyr.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + v + com.fontlab.metricsRight + + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/izhitsagravedblcyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/izhitsagravedblcyr.glif new file mode 100644 index 00000000..2c757360 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/izhitsagravedblcyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + com.fontlab.metricsLeft + izhitsacyr + com.fontlab.metricsRight + izhitsacyr + com.fontlab.recipe + izhitsacyr+hungarumlaut + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/j.glif b/sources/FixelDisplay-Thin.ufo/glyphs/j.glif new file mode 100644 index 00000000..6f30fe61 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/j.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + i + com.fontlab.recipe + dotlessj+dotaccent + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/jcircumflex.glif b/sources/FixelDisplay-Thin.ufo/glyphs/jcircumflex.glif new file mode 100644 index 00000000..789f6131 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/jcircumflex.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + dotlessj+circumflex + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/jdotless.glif b/sources/FixelDisplay-Thin.ufo/glyphs/jdotless.glif new file mode 100644 index 00000000..3df12cf0 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/jdotless.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + l + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/je-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/je-cy.glif new file mode 100644 index 00000000..291e4566 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/je-cy.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + j + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/k.glif b/sources/FixelDisplay-Thin.ufo/glyphs/k.glif new file mode 100644 index 00000000..092a6893 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/k.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/ka-cy.B_G_R_.glif b/sources/FixelDisplay-Thin.ufo/glyphs/ka-cy.B_G_R_.glif new file mode 100644 index 00000000..5b246bda --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/ka-cy.B_G_R_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + k + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/ka-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/ka-cy.glif new file mode 100644 index 00000000..cd69f758 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/ka-cy.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + k + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/kaaleutcyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/kaaleutcyr.glif new file mode 100644 index 00000000..9d2059df --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/kaaleutcyr.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + k + com.fontlab.metricsRight + k + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/kabashkcyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/kabashkcyr.glif new file mode 100644 index 00000000..690fa539 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/kabashkcyr.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hardsign-cy + com.fontlab.metricsRight + k + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/kahookcyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/kahookcyr.glif new file mode 100644 index 00000000..ca3e8bf8 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/kahookcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + n + com.fontlab.metricsRight + k+10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/kastrokecyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/kastrokecyr.glif new file mode 100644 index 00000000..89f41559 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/kastrokecyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hbar + com.fontlab.metricsRight + k + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/katailcyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/katailcyr.glif new file mode 100644 index 00000000..eb1f0ae1 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/katailcyr.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + k + com.fontlab.metricsRight + к-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/kaverticalstrokecyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/kaverticalstrokecyr.glif new file mode 100644 index 00000000..ab3b799c --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/kaverticalstrokecyr.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + k + com.fontlab.metricsRight + k + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/kcommaaccent.glif b/sources/FixelDisplay-Thin.ufo/glyphs/kcommaaccent.glif new file mode 100644 index 00000000..be3952d1 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/kcommaaccent.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsLeft + k + com.fontlab.metricsRight + k + com.fontlab.recipe + k+commaaccentcomb + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/kgreenlandic.glif b/sources/FixelDisplay-Thin.ufo/glyphs/kgreenlandic.glif new file mode 100644 index 00000000..d50bb345 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/kgreenlandic.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + kacyr + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/kjecyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/kjecyr.glif new file mode 100644 index 00000000..fb21396e --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/kjecyr.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/knightblack.glif b/sources/FixelDisplay-Thin.ufo/glyphs/knightblack.glif new file mode 100644 index 00000000..9b964042 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/knightblack.glif @@ -0,0 +1,313 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =30 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/knightwhite.glif b/sources/FixelDisplay-Thin.ufo/glyphs/knightwhite.glif new file mode 100644 index 00000000..bb1a8d7f --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/knightwhite.glif @@ -0,0 +1,320 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/koppacyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/koppacyr.glif new file mode 100644 index 00000000..0dd7563a --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/koppacyr.glif @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + c-20 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/ksicyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/ksicyr.glif new file mode 100644 index 00000000..50490867 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/ksicyr.glif @@ -0,0 +1,102 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + з-10 + com.fontlab.metricsRight + з + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/l.glif b/sources/FixelDisplay-Thin.ufo/glyphs/l.glif new file mode 100644 index 00000000..0a5a70fe --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/l.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/l.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/l.ss01.glif new file mode 100644 index 00000000..eaefcff8 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/l.ss01.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/lacute.glif b/sources/FixelDisplay-Thin.ufo/glyphs/lacute.glif new file mode 100644 index 00000000..f0a05ce4 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/lacute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l+acute.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/lacute.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/lacute.ss01.glif new file mode 100644 index 00000000..73e0c53e --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/lacute.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l.ss01+acute.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/layerinfo.plist b/sources/FixelDisplay-Thin.ufo/glyphs/layerinfo.plist new file mode 100644 index 00000000..8c198655 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/layerinfo.plist @@ -0,0 +1,21 @@ + + + + + lib + + com.fontlab.layer.name + Body + com.fontlab.layer.opacity + 1 + com.fontlab.layer.visible + + com.fontlab.layer.locked + + com.fontlab.layer.service + + com.fontlab.layer.wireframe + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/lcaron.glif b/sources/FixelDisplay-Thin.ufo/glyphs/lcaron.glif new file mode 100644 index 00000000..83a8f5b0 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/lcaron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l+caron.salt + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/lcaron.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/lcaron.ss01.glif new file mode 100644 index 00000000..96e80e0a --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/lcaron.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l.ss01+caron.salt + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/lcommaaccent.glif b/sources/FixelDisplay-Thin.ufo/glyphs/lcommaaccent.glif new file mode 100644 index 00000000..6300ea4e --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/lcommaaccent.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l+commaaccentcomb + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/lcommaaccent.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/lcommaaccent.ss01.glif new file mode 100644 index 00000000..84f2f424 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/lcommaaccent.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l.ss01+commaaccentcomb + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/ldot.glif b/sources/FixelDisplay-Thin.ufo/glyphs/ldot.glif new file mode 100644 index 00000000..dcace3b2 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/ldot.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/ldot.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/ldot.ss01.glif new file mode 100644 index 00000000..dc50954f --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/ldot.ss01.glif @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + l.ss01_periodcentered + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/leo.glif b/sources/FixelDisplay-Thin.ufo/glyphs/leo.glif new file mode 100644 index 00000000..4984a6a8 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/leo.glif @@ -0,0 +1,494 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/less.glif b/sources/FixelDisplay-Thin.ufo/glyphs/less.glif new file mode 100644 index 00000000..68ad40cb --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/less.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/lessequal.glif b/sources/FixelDisplay-Thin.ufo/glyphs/lessequal.glif new file mode 100644 index 00000000..f6c09360 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/lessequal.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/lhacyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/lhacyr.glif new file mode 100644 index 00000000..2e17ba81 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/lhacyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + х + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/ljecyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/ljecyr.glif new file mode 100644 index 00000000..16f952fe --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/ljecyr.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + ь + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/ljecyr.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/ljecyr.ss01.glif new file mode 100644 index 00000000..c30bfc0d --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/ljecyr.ss01.glif @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + ь + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/ljekomicyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/ljekomicyr.glif new file mode 100644 index 00000000..d545fffc --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/ljekomicyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + njekomicyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/longs.glif b/sources/FixelDisplay-Thin.ufo/glyphs/longs.glif new file mode 100644 index 00000000..000df06a --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/longs.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + n + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/lslash.glif b/sources/FixelDisplay-Thin.ufo/glyphs/lslash.glif new file mode 100644 index 00000000..ad13d007 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/lslash.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Lslash+12 + com.fontlab.metricsRight + |Lslash+12 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/lslash.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/lslash.ss01.glif new file mode 100644 index 00000000..fe1702b9 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/lslash.ss01.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Lslash-10 + com.fontlab.metricsRight + |Lslash + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/m.glif b/sources/FixelDisplay-Thin.ufo/glyphs/m.glif new file mode 100644 index 00000000..655dbeed --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/m.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + n + com.fontlab.metricsRight + n + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/macron-fwd.alt.glif b/sources/FixelDisplay-Thin.ufo/glyphs/macron-fwd.alt.glif new file mode 100644 index 00000000..d89af98b --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/macron-fwd.alt.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/macron-fwd.glif b/sources/FixelDisplay-Thin.ufo/glyphs/macron-fwd.glif new file mode 100644 index 00000000..5577b4fa --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/macron-fwd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/macron.case.glif b/sources/FixelDisplay-Thin.ufo/glyphs/macron.case.glif new file mode 100644 index 00000000..71d23711 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/macron.case.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/macron.glif b/sources/FixelDisplay-Thin.ufo/glyphs/macron.glif new file mode 100644 index 00000000..7c3dbab5 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/macron.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/macronacute.S_R_B_.glif b/sources/FixelDisplay-Thin.ufo/glyphs/macronacute.S_R_B_.glif new file mode 100644 index 00000000..a5c30191 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/macronacute.S_R_B_.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + macron+acute + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/millionscombcyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/millionscombcyr.glif new file mode 100644 index 00000000..1069477e --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/millionscombcyr.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/minus.glif b/sources/FixelDisplay-Thin.ufo/glyphs/minus.glif new file mode 100644 index 00000000..cf652de8 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/minus.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/minute.glif b/sources/FixelDisplay-Thin.ufo/glyphs/minute.glif new file mode 100644 index 00000000..672e7cd5 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/minute.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/mu.glif b/sources/FixelDisplay-Thin.ufo/glyphs/mu.glif new file mode 100644 index 00000000..5a36bc66 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/mu.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + p + com.fontlab.metricsRight + u + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/multiply.glif b/sources/FixelDisplay-Thin.ufo/glyphs/multiply.glif new file mode 100644 index 00000000..3151342e --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/multiply.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/n.glif b/sources/FixelDisplay-Thin.ufo/glyphs/n.glif new file mode 100644 index 00000000..b668df80 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/n.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/nacute.glif b/sources/FixelDisplay-Thin.ufo/glyphs/nacute.glif new file mode 100644 index 00000000..f3f1ef83 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/nacute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + n+acute + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/napostrophe.glif b/sources/FixelDisplay-Thin.ufo/glyphs/napostrophe.glif new file mode 100644 index 00000000..74567958 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/napostrophe.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + com.fontlab.metricsRight + n + com.schriftgestaltung.Glyphs.ComponentInfo + + + alignment + -1 + index + 0 + name + n + + + alignment + -1 + index + 1 + name + quoteright + + + com.schriftgestaltung.Glyphs.rightMetricsKey + n + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/ncaron.glif b/sources/FixelDisplay-Thin.ufo/glyphs/ncaron.glif new file mode 100644 index 00000000..1aaab0b2 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/ncaron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + n+caron + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/ncommaaccent.glif b/sources/FixelDisplay-Thin.ufo/glyphs/ncommaaccent.glif new file mode 100644 index 00000000..f6f57218 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/ncommaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + n+commaaccentcomb + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/neptune.glif b/sources/FixelDisplay-Thin.ufo/glyphs/neptune.glif new file mode 100644 index 00000000..70e22456 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/neptune.glif @@ -0,0 +1,125 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ш + com.fontlab.metricsRight + Ш + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/nine.glif b/sources/FixelDisplay-Thin.ufo/glyphs/nine.glif new file mode 100644 index 00000000..2fef0554 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/nine.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + |six + com.fontlab.metricsRight + |six + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/nine.osf.glif b/sources/FixelDisplay-Thin.ufo/glyphs/nine.osf.glif new file mode 100644 index 00000000..c93831f4 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/nine.osf.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |six + com.fontlab.metricsRight + |six + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/nine.tf.glif b/sources/FixelDisplay-Thin.ufo/glyphs/nine.tf.glif new file mode 100644 index 00000000..9f6872ec --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/nine.tf.glif @@ -0,0 +1,7 @@ + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/njecyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/njecyr.glif new file mode 100644 index 00000000..f876d90c --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/njecyr.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + ь + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/njecyr.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/njecyr.ss01.glif new file mode 100644 index 00000000..e52a2702 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/njecyr.ss01.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + ь + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/njekomicyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/njekomicyr.glif new file mode 100644 index 00000000..a654159d --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/njekomicyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + |u + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/notequal.glif b/sources/FixelDisplay-Thin.ufo/glyphs/notequal.glif new file mode 100644 index 00000000..cfce5077 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/notequal.glif @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/ntilde.glif b/sources/FixelDisplay-Thin.ufo/glyphs/ntilde.glif new file mode 100644 index 00000000..6eb8d295 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/ntilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + n+tilde + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/numbersign.glif b/sources/FixelDisplay-Thin.ufo/glyphs/numbersign.glif new file mode 100644 index 00000000..2e53951f --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/numbersign.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/numero.glif b/sources/FixelDisplay-Thin.ufo/glyphs/numero.glif new file mode 100644 index 00000000..2636d3b9 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/numero.glif @@ -0,0 +1,90 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + N + com.fontlab.recipe + N+ordmasculine + com.schriftgestaltung.Glyphs.ComponentInfo + + + alignment + -1 + index + 0 + name + N + + + alignment + -1 + index + 1 + name + ordmasculine + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/numero.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/numero.ss01.glif new file mode 100644 index 00000000..be1ef74f --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/numero.ss01.glif @@ -0,0 +1,95 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + N.ss01 + com.fontlab.metricsRight + ordmasculine + com.fontlab.recipe + N.ss01+ordmasculine + com.schriftgestaltung.Glyphs.ComponentInfo + + + alignment + -1 + index + 0 + name + ordmasculine + + + alignment + -1 + index + 1 + name + N.ss01 + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/o-cy.accented.glif b/sources/FixelDisplay-Thin.ufo/glyphs/o-cy.accented.glif new file mode 100644 index 00000000..32536fec --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/o-cy.accented.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+acute + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/o-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/o-cy.glif new file mode 100644 index 00000000..8464fea4 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/o-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/o.glif b/sources/FixelDisplay-Thin.ufo/glyphs/o.glif new file mode 100644 index 00000000..eac0a537 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/o.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/oB_inocular-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/oB_inocular-cy.glif new file mode 100644 index 00000000..ab825024 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/oB_inocular-cy.glif @@ -0,0 +1,81 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/oD_oubleM_onocular-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/oD_oubleM_onocular-cy.glif new file mode 100644 index 00000000..6d5a4585 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/oD_oubleM_onocular-cy.glif @@ -0,0 +1,121 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + com.fontlab.recipe + doubleo-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/oM_onocular-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/oM_onocular-cy.glif new file mode 100644 index 00000000..94161020 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/oM_onocular-cy.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/oacute.glif b/sources/FixelDisplay-Thin.ufo/glyphs/oacute.glif new file mode 100644 index 00000000..bb12d577 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/oacute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+acute + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/obarcyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/obarcyr.glif new file mode 100644 index 00000000..7c2e141b --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/obarcyr.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/obardieresiscyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/obardieresiscyr.glif new file mode 100644 index 00000000..843b3747 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/obardieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + obarcyr+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/obreve.glif b/sources/FixelDisplay-Thin.ufo/glyphs/obreve.glif new file mode 100644 index 00000000..468a6587 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/obreve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+breve + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/ocircumflex.glif b/sources/FixelDisplay-Thin.ufo/glyphs/ocircumflex.glif new file mode 100644 index 00000000..c5c28bbc --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/ocircumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+circumflex + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/odieresis.glif b/sources/FixelDisplay-Thin.ufo/glyphs/odieresis.glif new file mode 100644 index 00000000..1b70765a --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/odieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+dieresis + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/odieresiscyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/odieresiscyr.glif new file mode 100644 index 00000000..c3ace098 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/odieresiscyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/oe.glif b/sources/FixelDisplay-Thin.ufo/glyphs/oe.glif new file mode 100644 index 00000000..23954329 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/oe.glif @@ -0,0 +1,86 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + e + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/oe.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/oe.ss01.glif new file mode 100644 index 00000000..55d0d26b --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/oe.ss01.glif @@ -0,0 +1,95 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + e.ss01 + public.markColor + 0.6,0.997,1,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/ogonek.glif b/sources/FixelDisplay-Thin.ufo/glyphs/ogonek.glif new file mode 100644 index 00000000..b5f78069 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/ogonek.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/ograve.glif b/sources/FixelDisplay-Thin.ufo/glyphs/ograve.glif new file mode 100644 index 00000000..5d626c07 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/ograve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+grave + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/ohungarumlaut.glif b/sources/FixelDisplay-Thin.ufo/glyphs/ohungarumlaut.glif new file mode 100644 index 00000000..dc01d67c --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/ohungarumlaut.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+hungarumlaut + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/omacron.glif b/sources/FixelDisplay-Thin.ufo/glyphs/omacron.glif new file mode 100644 index 00000000..25b3c343 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/omacron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+macron + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/omegaB_road-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/omegaB_road-cy.glif new file mode 100644 index 00000000..d840e411 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/omegaB_road-cy.glif @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o+5 + com.fontlab.metricsRight + o+5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/omegacyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/omegacyr.glif new file mode 100644 index 00000000..0be14911 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/omegacyr.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + w + com.fontlab.metricsRight + w + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/omegaroundcyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/omegaroundcyr.glif new file mode 100644 index 00000000..e48da64b --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/omegaroundcyr.glif @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/omegatitlocyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/omegatitlocyr.glif new file mode 100644 index 00000000..426b7aa4 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/omegatitlocyr.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o+5 + com.fontlab.metricsRight + o+5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/omultiocular-cy.alt.glif b/sources/FixelDisplay-Thin.ufo/glyphs/omultiocular-cy.alt.glif new file mode 100644 index 00000000..05809367 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/omultiocular-cy.alt.glif @@ -0,0 +1,366 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + oMonocular-cy + com.fontlab.metricsRight + oMonocular-cy + public.markColor + 0.6,0.997,1,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/omultiocular-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/omultiocular-cy.glif new file mode 100644 index 00000000..13e98686 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/omultiocular-cy.glif @@ -0,0 +1,517 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + oMonocular-cy + com.fontlab.metricsRight + oMonocular-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/one.glif b/sources/FixelDisplay-Thin.ufo/glyphs/one.glif new file mode 100644 index 00000000..fca6af4c --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/one.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =40 + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/one.osf.glif b/sources/FixelDisplay-Thin.ufo/glyphs/one.osf.glif new file mode 100644 index 00000000..140eeaee --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/one.osf.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + one + com.fontlab.metricsRight + one + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/one.tf.glif b/sources/FixelDisplay-Thin.ufo/glyphs/one.tf.glif new file mode 100644 index 00000000..3c9cbfaa --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/one.tf.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/onehalf.glif b/sources/FixelDisplay-Thin.ufo/glyphs/onehalf.glif new file mode 100644 index 00000000..81eecbaa --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/onehalf.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/onequarter.glif b/sources/FixelDisplay-Thin.ufo/glyphs/onequarter.glif new file mode 100644 index 00000000..f8851872 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/onequarter.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/onesuperior.glif b/sources/FixelDisplay-Thin.ufo/glyphs/onesuperior.glif new file mode 100644 index 00000000..9dbfea76 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/onesuperior.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/ordfeminine.glif b/sources/FixelDisplay-Thin.ufo/glyphs/ordfeminine.glif new file mode 100644 index 00000000..1fe7106c --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/ordfeminine.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/ordmasculine.glif b/sources/FixelDisplay-Thin.ufo/glyphs/ordmasculine.glif new file mode 100644 index 00000000..739279d5 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/ordmasculine.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/oslash.glif b/sources/FixelDisplay-Thin.ufo/glyphs/oslash.glif new file mode 100644 index 00000000..712fb7c1 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/oslash.glif @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/oslashacute.glif b/sources/FixelDisplay-Thin.ufo/glyphs/oslashacute.glif new file mode 100644 index 00000000..cd7a90d6 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/oslashacute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + oslash+acute + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/otcyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/otcyr.glif new file mode 100644 index 00000000..161acb7a --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/otcyr.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsRight + w + com.fontlab.recipe + omegacyr+uni2DEE + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/otilde.glif b/sources/FixelDisplay-Thin.ufo/glyphs/otilde.glif new file mode 100644 index 00000000..48ffb502 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/otilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+tilde + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/p.glif b/sources/FixelDisplay-Thin.ufo/glyphs/p.glif new file mode 100644 index 00000000..883fe81f --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/p.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/p.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/p.ss01.glif new file mode 100644 index 00000000..8eff4f5f --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/p.ss01.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/palatcombcyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/palatcombcyr.glif new file mode 100644 index 00000000..ec9d972a --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/palatcombcyr.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/palochkacyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/palochkacyr.glif new file mode 100644 index 00000000..6f01211e --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/palochkacyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/paragraph.glif b/sources/FixelDisplay-Thin.ufo/glyphs/paragraph.glif new file mode 100644 index 00000000..b5b68610 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/paragraph.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |P + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/parenleft.case.glif b/sources/FixelDisplay-Thin.ufo/glyphs/parenleft.case.glif new file mode 100644 index 00000000..c62673f4 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/parenleft.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |parenright.case + com.fontlab.metricsRight + |parenright.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/parenleft.glif b/sources/FixelDisplay-Thin.ufo/glyphs/parenleft.glif new file mode 100644 index 00000000..2ea64441 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/parenleft.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/parenright.case.glif b/sources/FixelDisplay-Thin.ufo/glyphs/parenright.case.glif new file mode 100644 index 00000000..4b430ca8 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/parenright.case.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + parenright + com.fontlab.metricsRight + parenright + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/parenright.glif b/sources/FixelDisplay-Thin.ufo/glyphs/parenright.glif new file mode 100644 index 00000000..69778e65 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/parenright.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/partialdiff.glif b/sources/FixelDisplay-Thin.ufo/glyphs/partialdiff.glif new file mode 100644 index 00000000..068da91e --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/partialdiff.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/pe-cy.B_G_R_.glif b/sources/FixelDisplay-Thin.ufo/glyphs/pe-cy.B_G_R_.glif new file mode 100644 index 00000000..6a989936 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/pe-cy.B_G_R_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + n + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/pe-cy.S_R_B_.glif b/sources/FixelDisplay-Thin.ufo/glyphs/pe-cy.S_R_B_.glif new file mode 100644 index 00000000..94f90e9e --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/pe-cy.S_R_B_.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+macron-fwd.alt + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/pe-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/pe-cy.glif new file mode 100644 index 00000000..cea9d7c4 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/pe-cy.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/pehookcyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/pehookcyr.glif new file mode 100644 index 00000000..8163d90f --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/pehookcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + п + com.fontlab.metricsRight + enmiddlehookcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/percent.glif b/sources/FixelDisplay-Thin.ufo/glyphs/percent.glif new file mode 100644 index 00000000..37f0bf21 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/percent.glif @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/period.glif b/sources/FixelDisplay-Thin.ufo/glyphs/period.glif new file mode 100644 index 00000000..dfc6c107 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/period.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/periodcentered.glif b/sources/FixelDisplay-Thin.ufo/glyphs/periodcentered.glif new file mode 100644 index 00000000..f375801e --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/periodcentered.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/perthousand.glif b/sources/FixelDisplay-Thin.ufo/glyphs/perthousand.glif new file mode 100644 index 00000000..12f876f5 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/perthousand.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/petailcyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/petailcyr.glif new file mode 100644 index 00000000..60f9e6aa --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/petailcyr.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + п + com.fontlab.metricsRight + entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/pi.glif b/sources/FixelDisplay-Thin.ufo/glyphs/pi.glif new file mode 100644 index 00000000..e3be7dda --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/pi.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f + com.fontlab.metricsRight + t + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/plus.glif b/sources/FixelDisplay-Thin.ufo/glyphs/plus.glif new file mode 100644 index 00000000..aa3c81c0 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/plus.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/plusminus.glif b/sources/FixelDisplay-Thin.ufo/glyphs/plusminus.glif new file mode 100644 index 00000000..e31036c4 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/plusminus.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/pokrytiecombcyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/pokrytiecombcyr.glif new file mode 100644 index 00000000..2f8495b0 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/pokrytiecombcyr.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/product.glif b/sources/FixelDisplay-Thin.ufo/glyphs/product.glif new file mode 100644 index 00000000..4e842d4b --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/product.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/proportional.glif b/sources/FixelDisplay-Thin.ufo/glyphs/proportional.glif new file mode 100644 index 00000000..59d510c4 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/proportional.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/psicyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/psicyr.glif new file mode 100644 index 00000000..d59a1331 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/psicyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + u + com.fontlab.metricsRight + |u + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/q.glif b/sources/FixelDisplay-Thin.ufo/glyphs/q.glif new file mode 100644 index 00000000..47d2be10 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/q.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/q.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/q.ss01.glif new file mode 100644 index 00000000..3fed72ab --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/q.ss01.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/qacyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/qacyr.glif new file mode 100644 index 00000000..d7102908 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/qacyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + q + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/question.glif b/sources/FixelDisplay-Thin.ufo/glyphs/question.glif new file mode 100644 index 00000000..34a623b7 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/question.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/questiondown.case.glif b/sources/FixelDisplay-Thin.ufo/glyphs/questiondown.case.glif new file mode 100644 index 00000000..a86180f4 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/questiondown.case.glif @@ -0,0 +1,19 @@ + + + + + + + + + com.fontlab.metricsLeft + |question + com.fontlab.metricsRight + |question + com.fontlab.recipe + questiondown + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/questiondown.glif b/sources/FixelDisplay-Thin.ufo/glyphs/questiondown.glif new file mode 100644 index 00000000..705d1c9c --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/questiondown.glif @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |question + com.fontlab.metricsRight + |question + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/quotedbl.glif b/sources/FixelDisplay-Thin.ufo/glyphs/quotedbl.glif new file mode 100644 index 00000000..16baede6 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/quotedbl.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/quotedblbase.glif b/sources/FixelDisplay-Thin.ufo/glyphs/quotedblbase.glif new file mode 100644 index 00000000..c32b52be --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/quotedblbase.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + comma + com.fontlab.metricsRight + comma + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/quotedblleft.glif b/sources/FixelDisplay-Thin.ufo/glyphs/quotedblleft.glif new file mode 100644 index 00000000..4fe0e00d --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/quotedblleft.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + |comma + com.fontlab.metricsRight + |comma + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/quotedblright.glif b/sources/FixelDisplay-Thin.ufo/glyphs/quotedblright.glif new file mode 100644 index 00000000..f112b473 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/quotedblright.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.metricsLeft + comma+20 + com.fontlab.metricsRight + comma-20 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/quoteleft.glif b/sources/FixelDisplay-Thin.ufo/glyphs/quoteleft.glif new file mode 100644 index 00000000..0c9a9bd1 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/quoteleft.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + quotedblleft + com.fontlab.metricsRight + quotedblleft + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/quoteright.glif b/sources/FixelDisplay-Thin.ufo/glyphs/quoteright.glif new file mode 100644 index 00000000..1604d168 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/quoteright.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + com.fontlab.metricsLeft + quotedblright + com.fontlab.metricsRight + quotedblright + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/quotesinglbase.glif b/sources/FixelDisplay-Thin.ufo/glyphs/quotesinglbase.glif new file mode 100644 index 00000000..18acf2ea --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/quotesinglbase.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + com.fontlab.recipe + comma + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/quotesingle.glif b/sources/FixelDisplay-Thin.ufo/glyphs/quotesingle.glif new file mode 100644 index 00000000..426feb70 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/quotesingle.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/r.glif b/sources/FixelDisplay-Thin.ufo/glyphs/r.glif new file mode 100644 index 00000000..3525e870 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/r.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/racute.glif b/sources/FixelDisplay-Thin.ufo/glyphs/racute.glif new file mode 100644 index 00000000..5367a7bd --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/racute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + r+acute + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/radical.glif b/sources/FixelDisplay-Thin.ufo/glyphs/radical.glif new file mode 100644 index 00000000..daab7b3e --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/radical.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + V + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/rcaron.glif b/sources/FixelDisplay-Thin.ufo/glyphs/rcaron.glif new file mode 100644 index 00000000..f5160743 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/rcaron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + r+caron + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/rcommaaccent.glif b/sources/FixelDisplay-Thin.ufo/glyphs/rcommaaccent.glif new file mode 100644 index 00000000..faf36207 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/rcommaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + r+commaaccentcomb + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/registered.glif b/sources/FixelDisplay-Thin.ufo/glyphs/registered.glif new file mode 100644 index 00000000..163d64f8 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/registered.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/reversedzecyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/reversedzecyr.glif new file mode 100644 index 00000000..241fc18b --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/reversedzecyr.glif @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + + com.fontlab.metricsRight + + com.fontlab.recipe + з + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/rhacyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/rhacyr.glif new file mode 100644 index 00000000..40f19568 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/rhacyr.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + p + com.fontlab.metricsRight + x + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/ring.case.glif b/sources/FixelDisplay-Thin.ufo/glyphs/ring.case.glif new file mode 100644 index 00000000..aa73b09b --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/ring.case.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/ring.glif b/sources/FixelDisplay-Thin.ufo/glyphs/ring.glif new file mode 100644 index 00000000..525eb713 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/ring.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/rookblack.glif b/sources/FixelDisplay-Thin.ufo/glyphs/rookblack.glif new file mode 100644 index 00000000..29d14639 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/rookblack.glif @@ -0,0 +1,270 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =30 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/ruble.glif b/sources/FixelDisplay-Thin.ufo/glyphs/ruble.glif new file mode 100644 index 00000000..c709fa3b --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/ruble.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + P + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/s.glif b/sources/FixelDisplay-Thin.ufo/glyphs/s.glif new file mode 100644 index 00000000..5931ebfc --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/s.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/sacute.glif b/sources/FixelDisplay-Thin.ufo/glyphs/sacute.glif new file mode 100644 index 00000000..f023580a --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/sacute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + s+acute + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/scaron.glif b/sources/FixelDisplay-Thin.ufo/glyphs/scaron.glif new file mode 100644 index 00000000..e7133bb3 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/scaron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + s+caron + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/scedilla.glif b/sources/FixelDisplay-Thin.ufo/glyphs/scedilla.glif new file mode 100644 index 00000000..9b8db77b --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/scedilla.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + s+cedilla + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/schwacyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/schwacyr.glif new file mode 100644 index 00000000..8004063f --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/schwacyr.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |e + com.fontlab.metricsRight + o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/schwadieresiscyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/schwadieresiscyr.glif new file mode 100644 index 00000000..d5fdb362 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/schwadieresiscyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + schwacyr+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/scircumflex.glif b/sources/FixelDisplay-Thin.ufo/glyphs/scircumflex.glif new file mode 100644 index 00000000..77b37f2a --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/scircumflex.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + s+circumflex + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/scommaaccent.glif b/sources/FixelDisplay-Thin.ufo/glyphs/scommaaccent.glif new file mode 100644 index 00000000..81ae3509 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/scommaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + s+commaaccentcomb + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/second.glif b/sources/FixelDisplay-Thin.ufo/glyphs/second.glif new file mode 100644 index 00000000..d75004d8 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/second.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/section.glif b/sources/FixelDisplay-Thin.ufo/glyphs/section.glif new file mode 100644 index 00000000..793d4354 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/section.glif @@ -0,0 +1,87 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + S + com.fontlab.metricsRight + S + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/semicolon.case.glif b/sources/FixelDisplay-Thin.ufo/glyphs/semicolon.case.glif new file mode 100644 index 00000000..928c3c5d --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/semicolon.case.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.metricsLeft + semicolon + com.fontlab.metricsRight + semicolon + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/semicolon.glif b/sources/FixelDisplay-Thin.ufo/glyphs/semicolon.glif new file mode 100644 index 00000000..51c5df24 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/semicolon.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/semisoftcyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/semisoftcyr.glif new file mode 100644 index 00000000..a05c372b --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/semisoftcyr.glif @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + t + com.fontlab.metricsRight + ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/seven.glif b/sources/FixelDisplay-Thin.ufo/glyphs/seven.glif new file mode 100644 index 00000000..3a451aa0 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/seven.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/seven.osf.glif b/sources/FixelDisplay-Thin.ufo/glyphs/seven.osf.glif new file mode 100644 index 00000000..3e5c96e5 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/seven.osf.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + seven + com.fontlab.metricsRight + seven + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/seven.tf.glif b/sources/FixelDisplay-Thin.ufo/glyphs/seven.tf.glif new file mode 100644 index 00000000..025bbcee --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/seven.tf.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/sha-cy.B_G_R_.glif b/sources/FixelDisplay-Thin.ufo/glyphs/sha-cy.B_G_R_.glif new file mode 100644 index 00000000..fc705005 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/sha-cy.B_G_R_.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + u + com.fontlab.metricsRight + l + com.fontlab.recipe + m + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/sha-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/sha-cy.glif new file mode 100644 index 00000000..c15bd89a --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/sha-cy.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/shcha-cy.B_G_R_.glif b/sources/FixelDisplay-Thin.ufo/glyphs/shcha-cy.B_G_R_.glif new file mode 100644 index 00000000..27ff0c8d --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/shcha-cy.B_G_R_.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + u + com.fontlab.metricsRight + щ + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/shcha-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/shcha-cy.glif new file mode 100644 index 00000000..1aa2e8a6 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/shcha-cy.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + д + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/shhacyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/shhacyr.glif new file mode 100644 index 00000000..ec38a49a --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/shhacyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsRight + n + com.fontlab.recipe + h + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/shhatailcyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/shhatailcyr.glif new file mode 100644 index 00000000..14b4b1d6 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/shhatailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + h + com.fontlab.metricsRight + entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/shwe-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/shwe-cy.glif new file mode 100644 index 00000000..d2edb34f --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/shwe-cy.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + щ + com.fontlab.metricsRight + щ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/six.glif b/sources/FixelDisplay-Thin.ufo/glyphs/six.glif new file mode 100644 index 00000000..4ef2e069 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/six.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/six.osf.glif b/sources/FixelDisplay-Thin.ufo/glyphs/six.osf.glif new file mode 100644 index 00000000..94a14249 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/six.osf.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + six + com.fontlab.metricsRight + six + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/six.tf.glif b/sources/FixelDisplay-Thin.ufo/glyphs/six.tf.glif new file mode 100644 index 00000000..aa0892de --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/six.tf.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/sjekomicyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/sjekomicyr.glif new file mode 100644 index 00000000..994425d1 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/sjekomicyr.glif @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + e + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/slash.case.glif b/sources/FixelDisplay-Thin.ufo/glyphs/slash.case.glif new file mode 100644 index 00000000..99c15195 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/slash.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + slash + com.fontlab.metricsRight + slash + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/slash.glif b/sources/FixelDisplay-Thin.ufo/glyphs/slash.glif new file mode 100644 index 00000000..90ad86ff --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/slash.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/softsign-cy.B_G_R_.glif b/sources/FixelDisplay-Thin.ufo/glyphs/softsign-cy.B_G_R_.glif new file mode 100644 index 00000000..be5cf466 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/softsign-cy.B_G_R_.glif @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + u + com.fontlab.metricsRight + ь-5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/softsign-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/softsign-cy.glif new file mode 100644 index 00000000..9ac4e7f4 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/softsign-cy.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/softsign-cy.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/softsign-cy.ss01.glif new file mode 100644 index 00000000..15b95a84 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/softsign-cy.ss01.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/space.glif b/sources/FixelDisplay-Thin.ufo/glyphs/space.glif new file mode 100644 index 00000000..c36915b5 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/space.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/spadewhite.glif b/sources/FixelDisplay-Thin.ufo/glyphs/spadewhite.glif new file mode 100644 index 00000000..fada60e2 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/spadewhite.glif @@ -0,0 +1,453 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/sterling.glif b/sources/FixelDisplay-Thin.ufo/glyphs/sterling.glif new file mode 100644 index 00000000..36211775 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/sterling.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/summation.glif b/sources/FixelDisplay-Thin.ufo/glyphs/summation.glif new file mode 100644 index 00000000..98d5514f --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/summation.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/t.glif b/sources/FixelDisplay-Thin.ufo/glyphs/t.glif new file mode 100644 index 00000000..942d7367 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/t.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/t.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/t.ss01.glif new file mode 100644 index 00000000..7fe10137 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/t.ss01.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/tbar.glif b/sources/FixelDisplay-Thin.ufo/glyphs/tbar.glif new file mode 100644 index 00000000..e951726e --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/tbar.glif @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/tbar.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/tbar.ss01.glif new file mode 100644 index 00000000..cb1a1ccb --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/tbar.ss01.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/tcaron.glif b/sources/FixelDisplay-Thin.ufo/glyphs/tcaron.glif new file mode 100644 index 00000000..4aa673ad --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/tcaron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.metricsLeft + t + com.fontlab.metricsRight + t + com.fontlab.recipe + t+caron.salt + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/tcaron.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/tcaron.ss01.glif new file mode 100644 index 00000000..7d2cc3bd --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/tcaron.ss01.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + com.fontlab.recipe + t.ss01+caron.salt + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/tcedilla.glif b/sources/FixelDisplay-Thin.ufo/glyphs/tcedilla.glif new file mode 100644 index 00000000..84acee6d --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/tcedilla.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + t+cedilla + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/tcedilla.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/tcedilla.ss01.glif new file mode 100644 index 00000000..a616e56b --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/tcedilla.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + t.ss01+cedilla + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/tche-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/tche-cy.glif new file mode 100644 index 00000000..deb2db66 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/tche-cy.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + tetsecyr-20 + com.fontlab.metricsRight + ч + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/tcommaaccent.glif b/sources/FixelDisplay-Thin.ufo/glyphs/tcommaaccent.glif new file mode 100644 index 00000000..0aef3fa8 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/tcommaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + t+commaaccentcomb + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/tcommaaccent.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/tcommaaccent.ss01.glif new file mode 100644 index 00000000..d00ca123 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/tcommaaccent.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + t.ss01+commaaccentcomb + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/te-cy.B_G_R_.glif b/sources/FixelDisplay-Thin.ufo/glyphs/te-cy.B_G_R_.glif new file mode 100644 index 00000000..198bdcd2 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/te-cy.B_G_R_.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + m + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/te-cy.S_R_B_.glif b/sources/FixelDisplay-Thin.ufo/glyphs/te-cy.S_R_B_.glif new file mode 100644 index 00000000..19d7e222 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/te-cy.S_R_B_.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ш.BGR+macron-fwd + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/te-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/te-cy.glif new file mode 100644 index 00000000..4c51de48 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/te-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/te-cy.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/te-cy.ss01.glif new file mode 100644 index 00000000..0913a079 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/te-cy.ss01.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/tenge.glif b/sources/FixelDisplay-Thin.ufo/glyphs/tenge.glif new file mode 100644 index 00000000..239da7fa --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/tenge.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + T + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/tenmillionscomb-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/tenmillionscomb-cy.glif new file mode 100644 index 00000000..6780c3a0 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/tenmillionscomb-cy.glif @@ -0,0 +1,109 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/tetailcyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/tetailcyr.glif new file mode 100644 index 00000000..8730b65c --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/tetailcyr.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + т + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/tetsecyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/tetsecyr.glif new file mode 100644 index 00000000..b4cea0ce --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/tetsecyr.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + т + com.fontlab.metricsRight + ц + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/tewithmiddlehook-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/tewithmiddlehook-cy.glif new file mode 100644 index 00000000..444511f7 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/tewithmiddlehook-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + т + com.fontlab.metricsRight + gehookcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/thorn.glif b/sources/FixelDisplay-Thin.ufo/glyphs/thorn.glif new file mode 100644 index 00000000..03dabf3a --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/thorn.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + b + com.fontlab.metricsRight + b + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/thousandmillionscomb-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/thousandmillionscomb-cy.glif new file mode 100644 index 00000000..3ea3ef02 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/thousandmillionscomb-cy.glif @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/thousandscyr.dnom.glif b/sources/FixelDisplay-Thin.ufo/glyphs/thousandscyr.dnom.glif new file mode 100644 index 00000000..0adecb6e --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/thousandscyr.dnom.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + | + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/thousandscyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/thousandscyr.glif new file mode 100644 index 00000000..74d4b8b8 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/thousandscyr.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + | + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/three.glif b/sources/FixelDisplay-Thin.ufo/glyphs/three.glif new file mode 100644 index 00000000..b70a83c2 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/three.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/three.osf.glif b/sources/FixelDisplay-Thin.ufo/glyphs/three.osf.glif new file mode 100644 index 00000000..0a7b9256 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/three.osf.glif @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + three + com.fontlab.metricsRight + three + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/three.tf.glif b/sources/FixelDisplay-Thin.ufo/glyphs/three.tf.glif new file mode 100644 index 00000000..9d16f49f --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/three.tf.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/threequarters.glif b/sources/FixelDisplay-Thin.ufo/glyphs/threequarters.glif new file mode 100644 index 00000000..25964eca --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/threequarters.glif @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/threesuperior.glif b/sources/FixelDisplay-Thin.ufo/glyphs/threesuperior.glif new file mode 100644 index 00000000..f49e42a6 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/threesuperior.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/tilde.case.glif b/sources/FixelDisplay-Thin.ufo/glyphs/tilde.case.glif new file mode 100644 index 00000000..5d3e6db4 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/tilde.case.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/tilde.glif b/sources/FixelDisplay-Thin.ufo/glyphs/tilde.glif new file mode 100644 index 00000000..2eda6df8 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/tilde.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/titlocombcyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/titlocombcyr.glif new file mode 100644 index 00000000..fc61a3fe --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/titlocombcyr.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/tjekomicyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/tjekomicyr.glif new file mode 100644 index 00000000..9cad9e71 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/tjekomicyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + т + com.fontlab.metricsRight + njekomicyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/trademark.glif b/sources/FixelDisplay-Thin.ufo/glyphs/trademark.glif new file mode 100644 index 00000000..b25dcfd7 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/trademark.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/tse-cy.B_G_R_.glif b/sources/FixelDisplay-Thin.ufo/glyphs/tse-cy.B_G_R_.glif new file mode 100644 index 00000000..7ee4f57b --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/tse-cy.B_G_R_.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + u + com.fontlab.metricsRight + ц + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/tse-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/tse-cy.glif new file mode 100644 index 00000000..a4d51248 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/tse-cy.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + д + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/tseR_eversed-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/tseR_eversed-cy.glif new file mode 100644 index 00000000..bf8eeae9 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/tseR_eversed-cy.glif @@ -0,0 +1,20 @@ + + + + + + + + + + com.fontlab.metricsLeft + + com.fontlab.metricsRight + н + com.fontlab.recipe + ц + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/tshecyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/tshecyr.glif new file mode 100644 index 00000000..73828728 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/tshecyr.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + hbar + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/tsse-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/tsse-cy.glif new file mode 100644 index 00000000..043aac0a --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/tsse-cy.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + т + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/tswe-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/tswe-cy.glif new file mode 100644 index 00000000..b2f97f5e --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/tswe-cy.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ш + com.fontlab.metricsRight + shwe-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/twe-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/twe-cy.glif new file mode 100644 index 00000000..faecebd6 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/twe-cy.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + т.ss01 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/two.glif b/sources/FixelDisplay-Thin.ufo/glyphs/two.glif new file mode 100644 index 00000000..9b9c5509 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/two.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/two.osf.glif b/sources/FixelDisplay-Thin.ufo/glyphs/two.osf.glif new file mode 100644 index 00000000..e03134cf --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/two.osf.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + two + com.fontlab.metricsRight + two + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/two.tf.glif b/sources/FixelDisplay-Thin.ufo/glyphs/two.tf.glif new file mode 100644 index 00000000..dadf878d --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/two.tf.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/twosuperior.glif b/sources/FixelDisplay-Thin.ufo/glyphs/twosuperior.glif new file mode 100644 index 00000000..95b49b9e --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/twosuperior.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/u-cy.accented.glif b/sources/FixelDisplay-Thin.ufo/glyphs/u-cy.accented.glif new file mode 100644 index 00000000..446eeeaf --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/u-cy.accented.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + y+acute + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/u-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/u-cy.glif new file mode 100644 index 00000000..5ab50f64 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/u-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + y + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/u.glif b/sources/FixelDisplay-Thin.ufo/glyphs/u.glif new file mode 100644 index 00000000..9347e60f --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/u.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |n + com.fontlab.metricsRight + l + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/uacute.glif b/sources/FixelDisplay-Thin.ufo/glyphs/uacute.glif new file mode 100644 index 00000000..4d7d1c2b --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/uacute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+acute + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/uacutedblcyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/uacutedblcyr.glif new file mode 100644 index 00000000..71b86918 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/uacutedblcyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u-cy+hungarumlaut + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/ubreve.glif b/sources/FixelDisplay-Thin.ufo/glyphs/ubreve.glif new file mode 100644 index 00000000..8d354194 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/ubreve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+breve + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/ucircumflex.glif b/sources/FixelDisplay-Thin.ufo/glyphs/ucircumflex.glif new file mode 100644 index 00000000..91d5f500 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/ucircumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+circumflex + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/udieresis.glif b/sources/FixelDisplay-Thin.ufo/glyphs/udieresis.glif new file mode 100644 index 00000000..3f56fb60 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/udieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+dieresis + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/udieresiscyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/udieresiscyr.glif new file mode 100644 index 00000000..cc44d88b --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/udieresiscyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/ugrave.glif b/sources/FixelDisplay-Thin.ufo/glyphs/ugrave.glif new file mode 100644 index 00000000..8438f4ee --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/ugrave.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+grave + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/uhungarumlaut.glif b/sources/FixelDisplay-Thin.ufo/glyphs/uhungarumlaut.glif new file mode 100644 index 00000000..a8547605 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/uhungarumlaut.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+hungarumlaut + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/ukM_onograph-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/ukM_onograph-cy.glif new file mode 100644 index 00000000..f9dca1c9 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/ukM_onograph-cy.glif @@ -0,0 +1,78 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + y-30 + com.fontlab.metricsRight + y-20 + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/ukcyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/ukcyr.glif new file mode 100644 index 00000000..67cf14d9 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/ukcyr.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + y + com.fontlab.recipe + uni1C82_у + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/umacron.glif b/sources/FixelDisplay-Thin.ufo/glyphs/umacron.glif new file mode 100644 index 00000000..c68755a4 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/umacron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+macron + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/umacroncyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/umacroncyr.glif new file mode 100644 index 00000000..692d27c2 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/umacroncyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u-cy+macron + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/underscore.glif b/sources/FixelDisplay-Thin.ufo/glyphs/underscore.glif new file mode 100644 index 00000000..b58e1eb8 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/underscore.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/uni1C_80.glif b/sources/FixelDisplay-Thin.ufo/glyphs/uni1C_80.glif new file mode 100644 index 00000000..1209706a --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/uni1C_80.glif @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + б + com.fontlab.metricsRight + o-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/uni1C_81.glif b/sources/FixelDisplay-Thin.ufo/glyphs/uni1C_81.glif new file mode 100644 index 00000000..ec8a4824 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/uni1C_81.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + д-10 + com.fontlab.metricsRight + | + com.fontlab.recipe + д + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/uni1C_82.glif b/sources/FixelDisplay-Thin.ufo/glyphs/uni1C_82.glif new file mode 100644 index 00000000..2d4851a9 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/uni1C_82.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/uni1C_83.glif b/sources/FixelDisplay-Thin.ufo/glyphs/uni1C_83.glif new file mode 100644 index 00000000..d170e5ef --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/uni1C_83.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + c + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/uni1C_84.glif b/sources/FixelDisplay-Thin.ufo/glyphs/uni1C_84.glif new file mode 100644 index 00000000..b6f68cc3 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/uni1C_84.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/uni1C_85.glif b/sources/FixelDisplay-Thin.ufo/glyphs/uni1C_85.glif new file mode 100644 index 00000000..c4604df2 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/uni1C_85.glif @@ -0,0 +1,20 @@ + + + + + + + + + + com.fontlab.metricsLeft + ш + com.fontlab.metricsRight + l() + com.fontlab.recipe + ш + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/uni1C_86.glif b/sources/FixelDisplay-Thin.ufo/glyphs/uni1C_86.glif new file mode 100644 index 00000000..ff89f6eb --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/uni1C_86.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + uni1C84 + com.fontlab.metricsRight + ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/uni1C_87.glif b/sources/FixelDisplay-Thin.ufo/glyphs/uni1C_87.glif new file mode 100644 index 00000000..d43a0c2c --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/uni1C_87.glif @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + uni1C84-40 + com.fontlab.metricsRight + ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/uni1C_88.glif b/sources/FixelDisplay-Thin.ufo/glyphs/uni1C_88.glif new file mode 100644 index 00000000..51af4d78 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/uni1C_88.glif @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/uni1E_B_C_.glif b/sources/FixelDisplay-Thin.ufo/glyphs/uni1E_B_C_.glif new file mode 100644 index 00000000..719f0671 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/uni1E_B_C_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+tilde.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/uni1E_B_D_.glif b/sources/FixelDisplay-Thin.ufo/glyphs/uni1E_B_D_.glif new file mode 100644 index 00000000..7b37d745 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/uni1E_B_D_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+tilde + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/uni2010.glif b/sources/FixelDisplay-Thin.ufo/glyphs/uni2010.glif new file mode 100644 index 00000000..10fc5ace --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/uni2010.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + hyphen + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/uni2D_E_E_.case.glif b/sources/FixelDisplay-Thin.ufo/glyphs/uni2D_E_E_.case.glif new file mode 100644 index 00000000..14a85b4e --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/uni2D_E_E_.case.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/uni2D_E_E_.glif b/sources/FixelDisplay-Thin.ufo/glyphs/uni2D_E_E_.glif new file mode 100644 index 00000000..65f23033 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/uni2D_E_E_.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/uniE_000.alt.glif b/sources/FixelDisplay-Thin.ufo/glyphs/uniE_000.alt.glif new file mode 100644 index 00000000..26b1c6a4 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/uniE_000.alt.glif @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + ї_ї + public.markColor + 0.6,0.997,1,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/uniE_000.glif b/sources/FixelDisplay-Thin.ufo/glyphs/uniE_000.glif new file mode 100644 index 00000000..0e6a4d87 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/uniE_000.glif @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + ї_ї + public.markColor + 0.6,0.997,1,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/uniE_01A_.glif b/sources/FixelDisplay-Thin.ufo/glyphs/uniE_01A_.glif new file mode 100644 index 00000000..1d7e4b12 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/uniE_01A_.glif @@ -0,0 +1,115 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/uniF_43A_.glif b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_43A_.glif new file mode 100644 index 00000000..980693d2 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_43A_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/uniF_43B_.glif b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_43B_.glif new file mode 100644 index 00000000..fc959605 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_43B_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ustraightcyr+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/uniF_45D_.glif b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_45D_.glif new file mode 100644 index 00000000..16d79b49 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_45D_.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Є+acute.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/uniF_45E_.glif b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_45E_.glif new file mode 100644 index 00000000..890e2d3c --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_45E_.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Iacute + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/uniF_45F_.glif b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_45F_.glif new file mode 100644 index 00000000..9bf442e1 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_45F_.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + com.fontlab.recipe + I+dieresiscase.alt+acute.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/uniF_475.glif b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_475.glif new file mode 100644 index 00000000..9c350e81 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_475.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + є+acute + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/uniF_476.glif b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_476.glif new file mode 100644 index 00000000..9f6e2391 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_476.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + iacute + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/uniF_477.glif b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_477.glif new file mode 100644 index 00000000..174618ae --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_477.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + dotlessi+dieresisacute + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/uniF_478.glif b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_478.glif new file mode 100644 index 00000000..c33200af --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_478.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Yat+acute.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/uniF_479.glif b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_479.glif new file mode 100644 index 00000000..a1e2dbcf --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_479.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + yat+acute + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/uniF_498.glif b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_498.glif new file mode 100644 index 00000000..dff93253 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_498.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ю+dieresis.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/uniF_499.glif b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_499.glif new file mode 100644 index 00000000..5fcd47d3 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_499.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ю+dieresis + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/uniF_49A_.glif b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_49A_.glif new file mode 100644 index 00000000..017ae83a --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_49A_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Obarcyr+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/uniF_49B_.glif b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_49B_.glif new file mode 100644 index 00000000..f4291247 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_49B_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + obarcyr+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/uniF_49C_.glif b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_49C_.glif new file mode 100644 index 00000000..ed0ba6b5 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_49C_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Schwacyr+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/uniF_49D_.glif b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_49D_.glif new file mode 100644 index 00000000..0258f6c0 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_49D_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + schwacyr+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/uniF_49E_.glif b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_49E_.glif new file mode 100644 index 00000000..00fc73da --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_49E_.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Yatcyr + com.fontlab.metricsRight + Tshecyr + com.fontlab.recipe + Shhacyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/uniF_49F_.glif b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_49F_.glif new file mode 100644 index 00000000..0440c211 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_49F_.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + hbar + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/uniF_4C_6.glif b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_4C_6.glif new file mode 100644 index 00000000..9b726eea --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_4C_6.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ч + com.fontlab.metricsRight + Ч + com.fontlab.recipe + Ч + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/uniF_4C_7.glif b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_4C_7.glif new file mode 100644 index 00000000..f8065774 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_4C_7.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ч + com.fontlab.metricsRight + ч + com.fontlab.recipe + ч+enhookcyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/uniF_4C_C_.glif b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_4C_C_.glif new file mode 100644 index 00000000..03a3d6aa --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_4C_C_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + У+acute.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/uniF_4C_D_.glif b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_4C_D_.glif new file mode 100644 index 00000000..11b33a01 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_4C_D_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + y+acute + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/uniF_4D_2.glif b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_4D_2.glif new file mode 100644 index 00000000..4f2a55ac --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_4D_2.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+grave.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/uniF_4D_3.glif b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_4D_3.glif new file mode 100644 index 00000000..aad8fc45 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_4D_3.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+grave + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/uniF_4D_4.glif b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_4D_4.glif new file mode 100644 index 00000000..629aef09 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_4D_4.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + P+caron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/uniF_4D_5.glif b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_4D_5.glif new file mode 100644 index 00000000..52ca21b2 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_4D_5.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + p+caron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/uniF_4D_6.glif b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_4D_6.glif new file mode 100644 index 00000000..1c7031b7 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_4D_6.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Э+dotaccent.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/uniF_4D_7.glif b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_4D_7.glif new file mode 100644 index 00000000..9f494b82 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_4D_7.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + э+dotaccent + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/uniF_4D_8.glif b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_4D_8.glif new file mode 100644 index 00000000..1605f303 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_4D_8.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Я+dieresis.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/uniF_4D_9.glif b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_4D_9.glif new file mode 100644 index 00000000..3260b0d5 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_4D_9.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + я+dieresis + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/uniF_50E_.glif b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_50E_.glif new file mode 100644 index 00000000..fe22d37e --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_50E_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/uniF_50F_.glif b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_50F_.glif new file mode 100644 index 00000000..5d673720 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_50F_.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/uniF_510.glif b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_510.glif new file mode 100644 index 00000000..146af527 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_510.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/uniF_511.glif b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_511.glif new file mode 100644 index 00000000..b2dd06d8 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_511.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/uniF_512.glif b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_512.glif new file mode 100644 index 00000000..59fb207a --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_512.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + com.fontlab.metricsLeft + E + com.fontlab.metricsRight + E + com.fontlab.recipe + E+dieresis.case+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/uniF_513.glif b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_513.glif new file mode 100644 index 00000000..45e3f94d --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_513.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.recipe + e+dieresis+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/uniF_514.glif b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_514.glif new file mode 100644 index 00000000..d55ac853 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_514.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + com.fontlab.metricsLeft + E + com.fontlab.metricsRight + E + com.fontlab.recipe + E+dieresis.case+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/uniF_515.glif b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_515.glif new file mode 100644 index 00000000..9768e96b --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_515.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.recipe + e+dieresis+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/uniF_516.glif b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_516.glif new file mode 100644 index 00000000..7c440dc6 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_516.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + З+caron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/uniF_517.glif b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_517.glif new file mode 100644 index 00000000..27d11d3b --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_517.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + з+caron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/uniF_518.glif b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_518.glif new file mode 100644 index 00000000..2c3d7a35 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_518.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/uniF_519.glif b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_519.glif new file mode 100644 index 00000000..e132aaf5 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_519.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/uniF_51A_.glif b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_51A_.glif new file mode 100644 index 00000000..2482e3fa --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_51A_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/uniF_51B_.glif b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_51B_.glif new file mode 100644 index 00000000..8be9301e --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_51B_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/uniF_51C_.glif b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_51C_.glif new file mode 100644 index 00000000..ad5dc07e --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_51C_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Obarcyr+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/uniF_51D_.glif b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_51D_.glif new file mode 100644 index 00000000..4b4d06fc --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_51D_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + obarcyr+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/uniF_51E_.glif b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_51E_.glif new file mode 100644 index 00000000..4c1e493d --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_51E_.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + com.fontlab.recipe + Obarcyr+dieresis.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/uniF_51F_.glif b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_51F_.glif new file mode 100644 index 00000000..17e423b9 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_51F_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.recipe + obarcyr+dieresis+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/uniF_521.glif b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_521.glif new file mode 100644 index 00000000..0781e56a --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_521.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ы+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/uniF_522.glif b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_522.glif new file mode 100644 index 00000000..cd6d1a9d --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_522.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Э+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/uniF_523.glif b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_523.glif new file mode 100644 index 00000000..ff3596fa --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_523.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + э+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/uniF_524.glif b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_524.glif new file mode 100644 index 00000000..742309a5 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_524.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Э+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/uniF_525.glif b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_525.glif new file mode 100644 index 00000000..6c77acaf --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_525.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + э+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/uniF_526.glif b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_526.glif new file mode 100644 index 00000000..bec2b9e1 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_526.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Є+dieresis.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/uniF_527.glif b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_527.glif new file mode 100644 index 00000000..83ee491e --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_527.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + є+dieresis + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/uniF_528.glif b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_528.glif new file mode 100644 index 00000000..024067b8 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_528.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Я+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/uniF_529.glif b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_529.glif new file mode 100644 index 00000000..b233789c --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_529.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + я+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/uniF_52A_.glif b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_52A_.glif new file mode 100644 index 00000000..e38130aa --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_52A_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Я+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/uniF_52B_.glif b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_52B_.glif new file mode 100644 index 00000000..877b718b --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_52B_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + я+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/uniF_52C_.glif b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_52C_.glif new file mode 100644 index 00000000..7906be18 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_52C_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ю+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/uniF_52D_.glif b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_52D_.glif new file mode 100644 index 00000000..33212aea --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_52D_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ю+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/uniF_52E_.glif b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_52E_.glif new file mode 100644 index 00000000..664f9389 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_52E_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ю+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/uniF_52F_.glif b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_52F_.glif new file mode 100644 index 00000000..a36f01ad --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_52F_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ю+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/uniF_532.glif b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_532.glif new file mode 100644 index 00000000..082647ca --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_532.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Й + com.fontlab.metricsRight + Й + com.fontlab.recipe + Й + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/uniF_533.glif b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_533.glif new file mode 100644 index 00000000..a3b1d9d0 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_533.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + l() + com.fontlab.recipe + й+enhookcyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/uniF_536.glif b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_536.glif new file mode 100644 index 00000000..f826d62c --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_536.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ы+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/uniF_537.glif b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_537.glif new file mode 100644 index 00000000..4c17a4c8 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_537.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ы+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/uniF_538.glif b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_538.glif new file mode 100644 index 00000000..1cf157ae --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_538.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Reversedzecyr+dieresis.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/uniF_539.glif b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_539.glif new file mode 100644 index 00000000..a2a87848 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_539.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + reversedzecyr+dieresis + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/uniF_830.glif b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_830.glif new file mode 100644 index 00000000..d09f909b --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_830.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+circumflex.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/uniF_831.glif b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_831.glif new file mode 100644 index 00000000..5a64db2d --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_831.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+circumflex + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/uniF_833.glif b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_833.glif new file mode 100644 index 00000000..04677e46 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_833.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+circumflex.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/uniF_834.glif b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_834.glif new file mode 100644 index 00000000..66ca7ee8 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_834.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+circumflex + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/uniF_839.glif b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_839.glif new file mode 100644 index 00000000..6d21f766 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_839.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+circumflex.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/uniF_83A_.glif b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_83A_.glif new file mode 100644 index 00000000..77228f0e --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_83A_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+circumflex + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/uniF_86F_.glif b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_86F_.glif new file mode 100644 index 00000000..9bd5400e --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_86F_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + K+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/uniF_870.glif b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_870.glif new file mode 100644 index 00000000..965cdca4 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_870.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + к+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/uniF_872.glif b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_872.glif new file mode 100644 index 00000000..e653f326 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_872.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Л+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/uniF_873.glif b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_873.glif new file mode 100644 index 00000000..e07b3b2e --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_873.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + л+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/uniF_875.glif b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_875.glif new file mode 100644 index 00000000..0608713d --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_875.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/uniF_876.glif b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_876.glif new file mode 100644 index 00000000..4260a223 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_876.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/uniF_878.glif b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_878.glif new file mode 100644 index 00000000..dcc38c72 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_878.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + X+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/uniF_879.glif b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_879.glif new file mode 100644 index 00000000..d98c74ec --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_879.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + x+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/uniF_87B_.glif b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_87B_.glif new file mode 100644 index 00000000..e0c970d9 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_87B_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ц+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/uniF_87C_.glif b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_87C_.glif new file mode 100644 index 00000000..95afb67a --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_87C_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ц+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/uniF_87E_.glif b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_87E_.glif new file mode 100644 index 00000000..de894f02 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_87E_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ч+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/uniF_87F_.glif b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_87F_.glif new file mode 100644 index 00000000..ef63e650 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/uniF_87F_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ч+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/uogonek.glif b/sources/FixelDisplay-Thin.ufo/glyphs/uogonek.glif new file mode 100644 index 00000000..8c0fca81 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/uogonek.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+ogonek + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/uring.glif b/sources/FixelDisplay-Thin.ufo/glyphs/uring.glif new file mode 100644 index 00000000..5a9bf9ff --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/uring.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+ring + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/ushort-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/ushort-cy.glif new file mode 100644 index 00000000..e0519e3b --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/ushort-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + uni0443+breve + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/ustraightcyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/ustraightcyr.glif new file mode 100644 index 00000000..88362e0c --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/ustraightcyr.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + v + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/ustraightstrokecyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/ustraightstrokecyr.glif new file mode 100644 index 00000000..5fa44306 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/ustraightstrokecyr.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/utilde.glif b/sources/FixelDisplay-Thin.ufo/glyphs/utilde.glif new file mode 100644 index 00000000..7eb0b9ac --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/utilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+tilde + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/v.glif b/sources/FixelDisplay-Thin.ufo/glyphs/v.glif new file mode 100644 index 00000000..156666f6 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/v.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/ve-cy.B_G_R_.glif b/sources/FixelDisplay-Thin.ufo/glyphs/ve-cy.B_G_R_.glif new file mode 100644 index 00000000..d177aff5 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/ve-cy.B_G_R_.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + b-5 + com.fontlab.metricsRight + b + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/ve-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/ve-cy.glif new file mode 100644 index 00000000..6128a622 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/ve-cy.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/ve-cy.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/ve-cy.ss01.glif new file mode 100644 index 00000000..a49aa20b --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/ve-cy.ss01.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/virgo.glif b/sources/FixelDisplay-Thin.ufo/glyphs/virgo.glif new file mode 100644 index 00000000..9a32b815 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/virgo.glif @@ -0,0 +1,224 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =55 + com.fontlab.metricsRight + =35 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/vzmetcomb-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/vzmetcomb-cy.glif new file mode 100644 index 00000000..2079732f --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/vzmetcomb-cy.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/w.glif b/sources/FixelDisplay-Thin.ufo/glyphs/w.glif new file mode 100644 index 00000000..94645423 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/w.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/wacute.glif b/sources/FixelDisplay-Thin.ufo/glyphs/wacute.glif new file mode 100644 index 00000000..64ec7ba9 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/wacute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + w+acute + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/wcircumflex.glif b/sources/FixelDisplay-Thin.ufo/glyphs/wcircumflex.glif new file mode 100644 index 00000000..83d2a960 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/wcircumflex.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + w+circumflex + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/wdieresis.glif b/sources/FixelDisplay-Thin.ufo/glyphs/wdieresis.glif new file mode 100644 index 00000000..f1d42f11 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/wdieresis.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + w+dieresis + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/wecyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/wecyr.glif new file mode 100644 index 00000000..ca54da08 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/wecyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + w + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/wgrave.glif b/sources/FixelDisplay-Thin.ufo/glyphs/wgrave.glif new file mode 100644 index 00000000..06ed8357 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/wgrave.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + w+grave + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/x.glif b/sources/FixelDisplay-Thin.ufo/glyphs/x.glif new file mode 100644 index 00000000..0f10c8f7 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/x.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/xatailcyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/xatailcyr.glif new file mode 100644 index 00000000..ca046980 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/xatailcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + x + com.fontlab.metricsRight + zhetailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/y.glif b/sources/FixelDisplay-Thin.ufo/glyphs/y.glif new file mode 100644 index 00000000..c81fcb8e --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/y.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/yacute.glif b/sources/FixelDisplay-Thin.ufo/glyphs/yacute.glif new file mode 100644 index 00000000..d143bb69 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/yacute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + y+acute + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/yaecyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/yaecyr.glif new file mode 100644 index 00000000..1407d102 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/yaecyr.glif @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + я + com.fontlab.metricsRight + e + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/yatI_otified-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/yatI_otified-cy.glif new file mode 100644 index 00000000..3c09cb6c --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/yatI_otified-cy.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + com.fontlab.metricsRight + yatcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/yatcyr.B_G_R_.glif b/sources/FixelDisplay-Thin.ufo/glyphs/yatcyr.B_G_R_.glif new file mode 100644 index 00000000..a04ed3a2 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/yatcyr.B_G_R_.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hardsign-cy + com.fontlab.metricsRight + ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/yatcyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/yatcyr.glif new file mode 100644 index 00000000..c778a9ca --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/yatcyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hardsign-cy + com.fontlab.metricsRight + ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/ycircumflex.glif b/sources/FixelDisplay-Thin.ufo/glyphs/ycircumflex.glif new file mode 100644 index 00000000..ef8b8ca4 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/ycircumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + y+circumflex + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/ydieresis.glif b/sources/FixelDisplay-Thin.ufo/glyphs/ydieresis.glif new file mode 100644 index 00000000..8477e981 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/ydieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + y+dieresis + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/yen.glif b/sources/FixelDisplay-Thin.ufo/glyphs/yen.glif new file mode 100644 index 00000000..4794b641 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/yen.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/yen.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/yen.ss01.glif new file mode 100644 index 00000000..690daa05 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/yen.ss01.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/yerN_eutral-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/yerN_eutral-cy.glif new file mode 100644 index 00000000..37245068 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/yerN_eutral-cy.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hardsign-cy + com.fontlab.metricsRight + ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/yeru-cy.accented.glif b/sources/FixelDisplay-Thin.ufo/glyphs/yeru-cy.accented.glif new file mode 100644 index 00000000..d2dfe887 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/yeru-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ы+acute + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/yeru-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/yeru-cy.glif new file mode 100644 index 00000000..6ab78399 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/yeru-cy.glif @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/yeru-cy.ss01.glif b/sources/FixelDisplay-Thin.ufo/glyphs/yeru-cy.ss01.glif new file mode 100644 index 00000000..5f63705e --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/yeru-cy.ss01.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/yeruB_ackyer-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/yeruB_ackyer-cy.glif new file mode 100644 index 00000000..0d65d0a9 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/yeruB_ackyer-cy.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hardsign-cy + com.fontlab.metricsRight + dotlessi + com.fontlab.recipe + hardsign-cy_dotlessi + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/yi-cy.alt.glif b/sources/FixelDisplay-Thin.ufo/glyphs/yi-cy.alt.glif new file mode 100644 index 00000000..a4f73208 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/yi-cy.alt.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.recipe + idieresis + public.markColor + 0.6,0.997,1,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/yi-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/yi-cy.glif new file mode 100644 index 00000000..c93a8b56 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/yi-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + idieresis + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/ylongdieresiscyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/ylongdieresiscyr.glif new file mode 100644 index 00000000..a8f0ca01 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/ylongdieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + yeru-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/yn-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/yn-cy.glif new file mode 100644 index 00000000..a0de7e23 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/yn-cy.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |izhitsacyr + com.fontlab.metricsRight + |izhitsacyr + com.fontlab.recipe + izhitsa + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/yuR_eversed-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/yuR_eversed-cy.glif new file mode 100644 index 00000000..68eb3abe --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/yuR_eversed-cy.glif @@ -0,0 +1,20 @@ + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l + com.fontlab.recipe + ю + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/yusB_lended-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/yusB_lended-cy.glif new file mode 100644 index 00000000..527d9929 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/yusB_lended-cy.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + yusbigcyr + com.fontlab.metricsRight + yusbigcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/yusC_losedlittle-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/yusC_losedlittle-cy.glif new file mode 100644 index 00000000..6b842900 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/yusC_losedlittle-cy.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + yuslittlecyr + com.fontlab.metricsRight + yuslittlecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/yusbigcyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/yusbigcyr.glif new file mode 100644 index 00000000..2de69c50 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/yusbigcyr.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/yusbigiotifiedcyr.B_G_R_.glif b/sources/FixelDisplay-Thin.ufo/glyphs/yusbigiotifiedcyr.B_G_R_.glif new file mode 100644 index 00000000..6fb8f9df --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/yusbigiotifiedcyr.B_G_R_.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + com.fontlab.metricsRight + ж + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/yusbigiotifiedcyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/yusbigiotifiedcyr.glif new file mode 100644 index 00000000..f5b40751 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/yusbigiotifiedcyr.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + ж + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/yusiotifiedC_losedL_ittle-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/yusiotifiedC_losedL_ittle-cy.glif new file mode 100644 index 00000000..d7f90043 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/yusiotifiedC_losedL_ittle-cy.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + yusClosedlittle-cy + com.fontlab.recipe + yusClosedlittle-cy+н + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/yuslittlecyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/yuslittlecyr.glif new file mode 100644 index 00000000..81198593 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/yuslittlecyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + v-5 + com.fontlab.metricsRight + v-5 + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/yuslittleiotifiedcyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/yuslittleiotifiedcyr.glif new file mode 100644 index 00000000..56b45f4c --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/yuslittleiotifiedcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + v-10 + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/z.glif b/sources/FixelDisplay-Thin.ufo/glyphs/z.glif new file mode 100644 index 00000000..6fc1a3fe --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/z.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/zacute.glif b/sources/FixelDisplay-Thin.ufo/glyphs/zacute.glif new file mode 100644 index 00000000..353d1234 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/zacute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + z+acute + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/zcaron.glif b/sources/FixelDisplay-Thin.ufo/glyphs/zcaron.glif new file mode 100644 index 00000000..cca6e048 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/zcaron.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + z+caron + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/zdotaccent.glif b/sources/FixelDisplay-Thin.ufo/glyphs/zdotaccent.glif new file mode 100644 index 00000000..92d2fb61 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/zdotaccent.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + z+dotaccent + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/ze-cy.B_G_R_.glif b/sources/FixelDisplay-Thin.ufo/glyphs/ze-cy.B_G_R_.glif new file mode 100644 index 00000000..fdab58f6 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/ze-cy.B_G_R_.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |c-12 + com.fontlab.metricsRight + в-5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/ze-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/ze-cy.glif new file mode 100644 index 00000000..80c8dfb5 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/ze-cy.glif @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |c-5 + com.fontlab.metricsRight + в + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/zedieresiscyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/zedieresiscyr.glif new file mode 100644 index 00000000..842fbe49 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/zedieresiscyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ze-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/zemlya-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/zemlya-cy.glif new file mode 100644 index 00000000..b3607232 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/zemlya-cy.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + z-10 + com.fontlab.metricsRight + z + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/zero.glif b/sources/FixelDisplay-Thin.ufo/glyphs/zero.glif new file mode 100644 index 00000000..00a09cf5 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/zero.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/zero.osf.glif b/sources/FixelDisplay-Thin.ufo/glyphs/zero.osf.glif new file mode 100644 index 00000000..a0834ad5 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/zero.osf.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + zero + com.fontlab.metricsRight + zero + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/zero.tf.glif b/sources/FixelDisplay-Thin.ufo/glyphs/zero.tf.glif new file mode 100644 index 00000000..8e753c33 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/zero.tf.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/zetailcyr.B_S_H_.glif b/sources/FixelDisplay-Thin.ufo/glyphs/zetailcyr.B_S_H_.glif new file mode 100644 index 00000000..035156be --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/zetailcyr.B_S_H_.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + з + com.fontlab.metricsRight + з + com.fontlab.recipe + з + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/zetailcyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/zetailcyr.glif new file mode 100644 index 00000000..c78135e0 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/zetailcyr.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + з + com.fontlab.metricsRight + з + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/zhe-cy.B_G_R_.glif b/sources/FixelDisplay-Thin.ufo/glyphs/zhe-cy.B_G_R_.glif new file mode 100644 index 00000000..a5d73285 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/zhe-cy.B_G_R_.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |k + com.fontlab.metricsRight + k + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/zhe-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/zhe-cy.glif new file mode 100644 index 00000000..0c8ce06d --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/zhe-cy.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |k + com.fontlab.metricsRight + k + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/zhebrevecyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/zhebrevecyr.glif new file mode 100644 index 00000000..611790ab --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/zhebrevecyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + zhe-cy+breve + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/zhedieresiscyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/zhedieresiscyr.glif new file mode 100644 index 00000000..d58d011c --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/zhedieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + zhe-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/zhetailcyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/zhetailcyr.glif new file mode 100644 index 00000000..5f012fd1 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/zhetailcyr.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ж + com.fontlab.metricsRight + katailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/zhwe-cy.glif b/sources/FixelDisplay-Thin.ufo/glyphs/zhwe-cy.glif new file mode 100644 index 00000000..15fba321 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/zhwe-cy.glif @@ -0,0 +1,87 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + з + com.fontlab.metricsRight + ж + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/glyphs/zjekomicyr.glif b/sources/FixelDisplay-Thin.ufo/glyphs/zjekomicyr.glif new file mode 100644 index 00000000..e152034c --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/glyphs/zjekomicyr.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + з-20 + com.fontlab.metricsRight + njekomicyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelDisplay-Thin.ufo/groups.plist b/sources/FixelDisplay-Thin.ufo/groups.plist new file mode 100644 index 00000000..0215e532 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/groups.plist @@ -0,0 +1,2992 @@ + + + + + accent + + grave + acute.case + grave.case + acute + + case + + arrowdown.case + arrowdown.ss01.case + arrowleft.case + arrowleft.ss01.case + arrowright.case + arrowright.ss01.case + arrowup.case + arrowup.ss01.case + backslash.case + bar.case + braceleft.case + braceright.case + bracketleft.case + bracketright.case + brokenbar.case + bullet.case + colon.case + emdash.case + endash.case + exclamdown.case + guillemetleft.case + guillemetright.case + guilsinglleft.case + guilsinglright.case + hyphen.case + parenleft.case + parenright.case + questiondown.case + semicolon.case + at.case + bracketangleleft.case + bracketangleright.case + slash.case + + case_def + + arrowdown + arrowdown.ss01 + arrowleft + arrowleft.ss01 + arrowright + arrowright.ss01 + arrowup + arrowup.ss01 + backslash + bar + braceleft + braceright + bracketleft + bracketright + brokenbar + bullet + colon + emdash + endash + exclamdown + guillemetleft + guillemetright + guilsinglleft + guilsinglright + hyphen + parenleft + parenright + questiondown + semicolon + at + bracketangleleft + bracketangleright + slash + + cpsp + + 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 + Agrave + Aacute + Acircumflex + Atilde + Adieresis + Aring + AE + Ccedilla + Egrave + Eacute + Ecircumflex + Edieresis + Igrave + Iacute + Icircumflex + Idieresis + Eth + Ntilde + Ograve + Oacute + Ocircumflex + Otilde + Odieresis + Oslash + Ugrave + Uacute + Ucircumflex + Udieresis + Yacute + Thorn + Amacron + Abreve + Aogonek + Cacute + Ccircumflex + Cdotaccent + Ccaron + Dcaron + Dcroat + Emacron + Ebreve + Edotaccent + Eogonek + Ecaron + Gcircumflex + Gbreve + Gdotaccent + Gcommaaccent + Hcircumflex + Hbar + Itilde + Imacron + Ibreve + Iogonek + Idotaccent + IJ + Jcircumflex + Kcommaaccent + Lacute + Lcommaaccent + Lcaron + Ldot + Lslash + Nacute + Ncommaaccent + Ncaron + Eng + Omacron + Obreve + Ohungarumlaut + OE + Racute + Rcommaaccent + Rcaron + Sacute + Scircumflex + Scedilla + Scaron + Tcedilla + Tcaron + Tbar + Utilde + Umacron + Ubreve + Uring + Uhungarumlaut + Uogonek + Wcircumflex + Ycircumflex + Ydieresis + Zacute + Zdotaccent + Zcaron + Schwa + Acaron + Gacute + AEacute + Oslashacute + Scommaaccent + Tcommaaccent + Delta + Omega + Iegravecyr + uniF43A + A-cy.accented + E-cy.accented + Ii-cy.accented + O-cy.accented + U-cy.accented + Yeru-cy.accented + Ereversed-cy.accented + Iu-cy.accented + Ia-cy.accented + Io-cy.accented + uniF498 + uniF49A + uniF49C + uniF49E + uniF4C6 + uniF4CC + uniF4D2 + uniF4D4 + uniF4D6 + uniF4D8 + uniF50E + uniF510 + uniF512 + uniF514 + uniF516 + uniF518 + uniF51A + uniF51C + uniF51E + Yeru-cymacron + uniF522 + uniF524 + uniF526 + uniF528 + uniF52A + uniF52C + uniF52E + uniF532 + uniF536 + uniF538 + uniF830 + uniF833 + uniF839 + uniF86F + uniF872 + uniF875 + uniF878 + uniF87B + uniF87E + Io-cy + Djecyr + Gjecyr + E-cy + Dze-cy + I-cy + Yi-cy + Jecyr + Ljecyr + Njecyr + Tshecyr + Kjecyr + Igravecyr + Ushort-cy + Dzhecyr + A-cy + Be-cy + Ve-cy + Ge-cy + De-cy + Ie-cy + Zhe-cy + Ze-cy + Ii-cy + Iishort-cy + Ka-cy + El-cy + Em-cy + En-cy + O-cy + Pe-cy + Er-cy + Es-cy + Te-cy + U-cy + Ef-cy + Ha-cy + Tse-cy + Che-cy + Sha-cy + Shcha-cy + Hardsign-cy + Yeru-cy + Softsign-cy + Ereversed-cy + Iu-cy + Ia-cy + Omegacyr + Yatcyr + Eiotifiedcyr + Yuslittlecyr + Yuslittleiotifiedcyr + Yusbigcyr + Yusbigiotifiedcyr + Ksicyr + Psicyr + Fitacyr + Izhitsacyr + Izhitsagravedblcyr + Ukcyr + Omegaroundcyr + Omegatitlocyr + Otcyr + Koppacyr + Ishortsharptailcyr + Semisoftcyr + Ertickcyr + Gheupturn-cy + Gestrokecyr + Gehookcyr + Zhetailcyr + Zetailcyr + Katailcyr + Kaverticalstrokecyr + Kastrokecyr + Kabashkcyr + Entailcyr + Engecyr + Pehookcyr + Haabkhcyr + Estailcyr + Tetailcyr + Ustraightcyr + Ustraightstrokecyr + Xatailcyr + Tetsecyr + Chetailcyr + Chevertcyr + Shhacyr + Cheabkhcyr + Cheabkhtailcyr + Palochkacyr + Zhebrevecyr + Kahookcyr + Elsharptailcyr + Enhookcyr + Ensharptailcyr + Chekhakascyr + Emsharptailcyr + Abrevecyr + Adieresiscyr + Aiecyr + Iebrevecyr + Schwacyr + Schwadieresiscyr + Zhedieresiscyr + Zedieresiscyr + Dzeabkhcyr + Imacroncyr + Idieresiscyr + Odieresiscyr + Obarcyr + Obardieresiscyr + Ereverseddieresiscyr + Umacroncyr + Udieresiscyr + Uacutedblcyr + Chedieresiscyr + Getailcyr + Ylongdieresiscyr + Gehookstrokecyr + Hahookcyr + Hastrokecyr + Dekomicyr + Djekomicyr + Zjekomicyr + Dzjekomicyr + Ljekomicyr + Njekomicyr + Sjekomicyr + Tjekomicyr + Reversedzecyr + Elhookcyr + Lhacyr + Rhacyr + Yaecyr + Qacyr + Wecyr + Kaaleutcyr + Elmiddlehookcyr + Enmiddlehookcyr + Petailcyr + Shhatailcyr + Enhookleftcyr + Dzzhecyr + Dchecyr + Eltailcyr + Wgrave + Wacute + Wdieresis + Germandbls + uni1EBC + Zemlya-cy + Dzelo-cy + DzeReversed-cy + Iota-cy + Djerv-cy + UkMonograph-cy + OmegaBroad-cy + YerNeutral-cy + YeruBackYer-cy + YatIotified-cy + YuReversed-cy + IotifiedA-cy + YusClosedlittle-cy + YusBlended-cy + YusiotifiedClosedLittle-cy + Yn-cy + TseReversed-cy + DeSoft-cy + ElSoft-cy + EmSoft-cy + OMonocular-cy + OBinocular-cy + ODoubleMonocular-cy + Dwe-cy + Dzwe-cy + Zhwe-cy + Cche-cy + Dzze-cy + TeWithMiddleHook-cy + Twe-cy + Tswe-cy + Tsse-cy + Tche-cy + Hwe-cy + Shwe-cy + DoubleO-cy + CrossedO-cy + A-cy.ss01 + A.ss01 + AE.ss01 + Aacute.ss01 + Abreve.ss01 + Acircumflex.ss01 + Adieresis.ss01 + Agrave.ss01 + Amacron.ss01 + Aogonek.ss01 + Aring.ss01 + Atilde.ss01 + Em-cy.ss01 + Eng.ss01 + G.ss01 + Gacute.ss01 + Gbreve.ss01 + Gcircumflex.ss01 + Gcommaaccent.ss01 + Gdotaccent.ss01 + Ha-cy.ss01 + Ia-cy.ss01 + J.ss01 + Jcircumflex.ss01 + K.ss01 + Ka-cy.ss01 + Kcommaaccent.ss01 + M.ss01 + N.ss01 + Nacute.ss01 + Ncaron.ss01 + Ncommaaccent.ss01 + Ntilde.ss01 + Q.ss01 + U-cy.ss01 + Ushort-cy.ss01 + V.ss01 + W.ss01 + Wacute.ss01 + Wcircumflex.ss01 + Wdieresis.ss01 + Wgrave.ss01 + X.ss01 + Y.ss01 + Yacute.ss01 + Ycircumflex.ss01 + Ydieresis.ss01 + Z.ss01 + Zacute.ss01 + Zcaron.ss01 + Zdotaccent.ss01 + Zetailcyr.BSH + Gestrokecyr.BSH + Estailcyr.BSH + Estailcyr.CHU + Zhe-cy.ss01 + + locl.SRB + + be-cy.SRB + iegravecyr.SRB + igravecyr.SRB + + loclSRB_def + + be-cy + iegravecyr + igravecyr + + locl_BGR + + De-cy.BGR + Ef-cy.BGR + El-cy.BGR + de-cy.BGR + eiotifiedcyr.BGR + el-cy.BGR + ge-cy.BGR + hardsign-cy.BGR + ii-cy.BGR + iishort-cy.BGR + iotifieda-cy.BGR + iu-cy.BGR + ka-cy.BGR + pe-cy.BGR + sha-cy.BGR + shcha-cy.BGR + softsign-cy.BGR + te-cy.BGR + tse-cy.BGR + ve-cy.BGR + yatcyr.BGR + yusbigiotifiedcyr.BGR + ze-cy.BGR + zhe-cy.BGR + + locl_def + + De-cy + Ef-cy + El-cy + de-cy + eiotifiedcyr + el-cy + ge-cy + hardsign-cy + ii-cy + iishort-cy + iotifieda-cy + iu-cy + ka-cy + pe-cy + sha-cy + shcha-cy + softsign-cy + te-cy + tse-cy + ve-cy + yatcyr + yusbigiotifiedcyr + ze-cy + zhe-cy + + pics + + neptune + leo + virgo + bishopwhite + knightwhite + rookblack + bishopblack + knightblack + heartwhite + diamondwhite-misc + spadewhite + heart + clubwhite + crossedswords + flower + floretteblack + florettewhite + floretteoutlinedpetalledblackeight + + pics_def + + A + B + C + D + E + F + G + H + I + J + K + L + M + N + O + P + Q + R + + public.kern1.A.ss012 + + A-cy.ss01 + A.ss01 + Aacute.ss01 + Abreve.ss01 + Acircumflex.ss01 + Adieresis.ss01 + Agrave.ss01 + Amacron.ss01 + Aogonek.ss01 + Aring.ss01 + Atilde.ss01 + + public.kern1.A2 + + A + A-cy + A-cy.accented + Aacute + Abreve + Abrevecyr + Acaron + Acircumflex + Adieresis + Adieresiscyr + Agrave + Amacron + Aogonek + Aring + Atilde + De-cy.BGR + Delta + El-cy.BGR + IotifiedA-cy + Yn-cy + YusClosedlittle-cy + YusiotifiedClosedLittle-cy + Yuslittlecyr + Yuslittleiotifiedcyr + uniF50E + uniF830 + + public.kern1.AE + + AE + AE.ss01 + AEacute + Aiecyr + + public.kern1.C1 + + C + Cacute + Ccaron + Ccedilla + Ccircumflex + Cdotaccent + E-cy + Eiotifiedcyr + Es-cy + Estailcyr + Estailcyr.BSH + Estailcyr.CHU + Reversedzecyr + uniF45D + uniF526 + uniF538 + uniF875 + + public.kern1.Decyr + + Chetailcyr + De-cy + Dwe-cy + Dzze-cy + Elsharptailcyr + Eltailcyr + Emsharptailcyr + Ensharptailcyr + Entailcyr + Ishortsharptailcyr + Petailcyr + Shcha-cy + Shwe-cy + Tetsecyr + Tse-cy + Tswe-cy + uniF87B + + public.kern1.E1 + + E + E-cy.accented + Eacute + Ebreve + Ecaron + Ecircumflex + Edieresis + Edotaccent + Egrave + Emacron + Eogonek + Ie-cy + Iebrevecyr + Io-cy + Io-cy.accented + Yaecyr + uni1EBC + uniF510 + uniF512 + uniF514 + uniF833 + + public.kern1.G.ss01 + + G.ss01 + Gacute.ss01 + Gbreve.ss01 + Gcircumflex.ss01 + Gcommaaccent.ss01 + Gdotaccent.ss01 + + public.kern1.G1 + + G + Gacute + Gbreve + Gcircumflex + Gcommaaccent + Gdotaccent + + public.kern1.Ge-cy + + DeSoft-cy + ElSoft-cy + EmSoft-cy + Engecyr + Ge-cy + Gehookstrokecyr + Gestrokecyr + Gestrokecyr.BSH + Getailcyr + Gheupturn-cy + Gjecyr + TseReversed-cy + YeruBackYer-cy + uniF872 + + public.kern1.H + + Eng + Eng.ss01 + H + Hbar + Hcircumflex + I + Iacute + Ibreve + Icircumflex + Idieresis + Idotaccent + Igrave + Imacron + Iogonek + Itilde + J.ss01 + Jcircumflex.ss01 + M + M.ss01 + N + N.ss01 + Nacute + Nacute.ss01 + Ncaron + Ncaron.ss01 + Ncommaaccent + Ncommaaccent.ss01 + Ntilde + Ntilde.ss01 + + public.kern1.Hardcyr + + Hardsign-cy + Ljecyr + Njecyr + Semisoftcyr + Shhacyr + Softsign-cy + YatIotified-cy + Yatcyr + YerNeutral-cy + uniF478 + + public.kern1.J1 + + J + Jcircumflex + Jecyr + + public.kern1.K + + K + K.ss01 + Ka-cy + Ka-cy.ss01 + Kaaleutcyr + Kabashkcyr + Kastrokecyr + Kcommaaccent + Kcommaaccent.ss01 + Kjecyr + uniF86F + + public.kern1.L + + L + Lacute + Lcaron + Lcommaaccent + Lslash + + public.kern1.O + + Cheabkhcyr + Cheabkhtailcyr + CrossedO-cy + D + Dcaron + Dcroat + DoubleO-cy + Ef-cy + Ef-cy.BGR + Ereversed-cy + Ereversed-cy.accented + Ereverseddieresiscyr + Eth + Fitacyr + Iu-cy + Iu-cy.accented + O + O-cy + O-cy.accented + OBinocular-cy + ODoubleMonocular-cy + OMonocular-cy + Oacute + Obarcyr + Obardieresiscyr + Obreve + Ocircumflex + Odieresis + Odieresiscyr + Ograve + Ohungarumlaut + Omacron + Omega + Omegaroundcyr + Oslash + Oslashacute + Otilde + Q + Qacyr + Schwa + Schwacyr + Schwadieresiscyr + Sjekomicyr + uniF498 + uniF49A + uniF49C + uniF4D2 + uniF4D6 + uniF518 + uniF51A + uniF51C + uniF51E + uniF522 + uniF524 + uniF52C + uniF52E + uniF839 + + public.kern1.Oslash.alt + + Ha-cy + Ha-cy.ss01 + Hahookcyr + Lhacyr + Rhacyr + X + X.ss01 + uniF878 + + public.kern1.P + + Er-cy + Ertickcyr + P + uniF4D4 + + public.kern1.R + + R + Racute + Rcaron + Rcommaaccent + + public.kern1.S1 + + Dzwe-cy + S + Sacute + Scaron + Scedilla + Scircumflex + Scommaaccent + + public.kern1.T1 + + Koppacyr + T + Tcaron + Tcedilla + Tcommaaccent + Te-cy + Tetailcyr + Tsse-cy + Twe-cy + + public.kern1.U1 + + OmegaBroad-cy + Omegacyr + Omegatitlocyr + Otcyr + Psicyr + U + Uacute + Ubreve + Ucircumflex + Udieresis + Ugrave + Uhungarumlaut + Umacron + Uogonek + Uring + Utilde + + public.kern1.Ucyr1 + + U-cy + U-cy.accented + U-cy.ss01 + Uacutedblcyr + Udieresiscyr + Umacroncyr + Ushort-cy + Ushort-cy.ss01 + uniF4CC + + public.kern1.V + + Izhitsacyr + Izhitsagravedblcyr + V + V.ss01 + + public.kern1.W.ss011 + + W.ss01 + Wacute.ss01 + Wcircumflex.ss01 + Wdieresis.ss01 + Wgrave.ss01 + + public.kern1.W1 + + W + Wacute + Wcircumflex + Wdieresis + Wecyr + Wgrave + + public.kern1.Y.ss011 + + Y.ss01 + Yacute.ss01 + Ycircumflex.ss01 + Ydieresis.ss01 + + public.kern1.Y1 + + Ustraightcyr + Ustraightstrokecyr + Y + Yacute + Ycircumflex + Ydieresis + uniF43A + + public.kern1.Yacyr + + Cche-cy + Che-cy + Chedieresiscyr + Chekhakascyr + Chevertcyr + Dekomicyr + Elhookcyr + Em-cy + En-cy + Enhookcyr + Enhookleftcyr + I-cy + Ia-cy + Ia-cy.accented + Ia-cy.ss01 + Idieresiscyr + Ii-cy + Ii-cy.accented + Iishort-cy + Imacroncyr + Palochkacyr + Pe-cy + Sha-cy + Tche-cy + Yeru-cy + Yeru-cy.accented + Yeru-cymacron + Yi-cy + Ylongdieresiscyr + YuReversed-cy + palochkacyr + uniF45E + uniF45F + uniF4C6 + uniF4D8 + uniF528 + uniF52A + uniF532 + uniF536 + uniF87E + + public.kern1.Z1 + + Dzelo-cy + Z + Z.ss01 + Zacute + Zacute.ss01 + Zcaron + Zcaron.ss01 + Zdotaccent + Zdotaccent.ss01 + Zemlya-cy + + public.kern1.Ze-cy + + Dzeabkhcyr + Ksicyr + Ze-cy + Zedieresiscyr + Zetailcyr + Zetailcyr.BSH + uniF516 + + public.kern1.Zhe-cy + + Dzzhecyr + Katailcyr + Kaverticalstrokecyr + Xatailcyr + YusBlended-cy + Yusbigcyr + Yusbigiotifiedcyr + Zhe-cy + Zhebrevecyr + Zhedieresiscyr + Zhetailcyr + Zhwe-cy + + public.kern1.a1 + + a + aacute + abreve + acaron + acircumflex + adieresis + agrave + amacron + aogonek + aring + atilde + + public.kern1.c1 + + c + cacute + ccaron + ccedilla + ccircumflex + cdotaccent + e-cy + e-cy.hist + eiotifiedcyr + eiotifiedcyr.BGR + es-cy + estailcyr + estailcyr.BSH + estailcyr.CHU + koppacyr + reversedzecyr + sjekomicyr + uni1C83 + uniF475 + uniF527 + uniF539 + uniF876 + + public.kern1.comma1 + + comma + quotedblbase + quotesinglbase + + public.kern1.copyright1 + + copyright + registered + + public.kern1.dcaron + + dcaron + dcaron.ss01 + lcaron + + public.kern1.decyr1 + + chetailcyr + dchecyr + de-cy + de-cy.ss01 + dwe-cy + dzze-cy + elsharptailcyr + eltailcyr + emsharptailcyr + ensharptailcyr + entailcyr + ishortsharptailcyr + petailcyr + shcha-cy + shcha-cy.BGR + shhatailcyr + shwe-cy + tetsecyr + tse-cy + tse-cy.BGR + tswe-cy + uniF87C + + public.kern1.e.ss011 + + e.ss01 + eacute.ss01 + ebreve.ss01 + ecaron.ss01 + ecircumflex.ss01 + edieresis.ss01 + edotaccent.ss01 + egrave.ss01 + emacron.ss01 + eogonek.ss01 + oe.ss01 + + public.kern1.e1 + + ae + aeacute + aiecyr + cheabkhcyr + cheabkhtailcyr + e + e-cy.accented + eacute + ebreve + ecaron + ecircumflex + edieresis + edotaccent + egrave + emacron + eogonek + ie-cy + iebrevecyr + iegravecyr + iegravecyr.SRB + io-cy + io-cy.accented + uni1EBD + uniF511 + uniF513 + uniF515 + uniF834 + yaecyr + + public.kern1.el-cy.BGR + + el-cy.BGR + iotifieda-cy + iotifieda-cy.BGR + uni1C81 + yn-cy + yusClosedlittle-cy + yusiotifiedClosedLittle-cy + yuslittlecyr + yuslittleiotifiedcyr + + public.kern1.emdash1 + + emdash + endash + hyphen + + public.kern1.f1 + + f + f_f + + public.kern1.fi + + f_f_i + fi + + public.kern1.five1 + + five + five.tf + + public.kern1.four1 + + four + four.tf + + public.kern1.g.ss011 + + g.ss01 + gacute.ss01 + gbreve.ss01 + gcircumflex.ss01 + gcommaaccent.ss01 + gdotaccent.ss01 + + public.kern1.g1 + + g + gacute + gbreve + gcircumflex + gcommaaccent + gdotaccent + + public.kern1.gecyr + + deSoft-cy + elSoft-cy + emSoft-cy + engecyr + ge-cy + gehookstrokecyr + gestrokecyr + gestrokecyr.BSH + getailcyr + gheupturn-cy + gjecyr + + public.kern1.guillemotright1 + + guillemetright + guilsinglright + + public.kern1.hardcyr + + Tjekomicyr + djekomicyr + elmiddlehookcyr + enmiddlehookcyr + gehookcyr + hardsign-cy + hardsign-cy.BGR + hardsign-cy.ss01 + ljecyr + ljecyr.ss01 + ljekomicyr + njecyr + njecyr.ss01 + njekomicyr + pehookcyr + semisoftcyr + softsign-cy + softsign-cy.BGR + softsign-cy.ss01 + tewithmiddlehook-cy + tjekomicyr + uni1C86 + uni1C87 + uniF479 + yatIotified-cy + yatcyr + yatcyr.BGR + yerNeutral-cy + zjekomicyr + + public.kern1.i1 + + Djekomicyr + Ljekomicyr + Njekomicyr + Zjekomicyr + i + i-cy + iacute + icircumflex + igrave + imacron + iogonek + itilde + uniF476 + yi-cy.alt + + public.kern1.icyr1 + + cche-cy + che-cy + chedieresiscyr + chekhakascyr + chevertcyr + de-cy.BGR + el-cy + elhookcyr + em-cy + en-cy + enhookcyr + enhookleftcyr + ia-cy + ia-cy.accented + idieresiscyr + igravecyr + ii-cy + ii-cy.accented + iishort-cy + imacroncyr + mu + pe-cy + psicyr + q + qacyr + sha-cy + sha-cy.BGR + tche-cy + tseReversed-cy + ubreve + uni1C85 + uniF4C7 + uniF4D9 + uniF521 + uniF529 + uniF52B + uniF533 + uniF537 + uniF873 + uniF87F + utilde + yeru-cy + yeru-cy.accented + yeru-cy.ss01 + yeruBackyer-cy + ylongdieresiscyr + yuReversed-cy + + public.kern1.j1 + + ij + j + jcircumflex + jdotless + + public.kern1.k + + k + ka-cy + ka-cy.BGR + kaaleutcyr + kabashkcyr + kastrokecyr + kcommaaccent + kgreenlandic + kjecyr + uniF870 + + public.kern1.l + + f_f_l + fl + l + lacute + lcommaaccent + + public.kern1.l.ss011 + + Iota-cy + iota-cy + l.ss01 + lacute.ss01 + lcommaaccent.ss01 + + public.kern1.n + + Djecyr + Elmiddlehookcyr + Enmiddlehookcyr + Gehookcyr + Hwe-cy + Kahookcyr + Pehookcyr + Shhatailcyr + TeWithMiddleHook-cy + Tshecyr + a-cy.accented + a-cy.ss01 + a.ss01 + aacute.ss01 + abreve.ss01 + abrevecyr + acircumflex.ss01 + adieresis.ss01 + adieresiscyr + agrave.ss01 + aogonek.ss01 + aring.ss01 + atilde.ss01 + djecyr + el-cy.ss01 + h + hbar + hcircumflex + hwe-cy + ia-cy.ss01 + iotifieda-cy.hist + m + n + nacute + napostrophe + ncaron + ncommaaccent + ntilde + pe-cy.BGR + q.ss01 + shhacyr + te-cy.BGR + tshecyr + uniF49E + uniF49F + uniF50F + uniF831 + + public.kern1.numero + + numero + numero.ss01 + + public.kern1.o1 + + b + b.ss01 + be-cy.SRB + crossedo-cy + ef-cy + er-cy + er-cy.ss01 + ereversed-cy + ereversed-cy.accented + ereverseddieresiscyr + ertickcyr + eturned + fitacyr + iu-cy + iu-cy.BGR + iu-cy.accented + o + o-cy + o-cy.accented + oBinocular-cy + oDoubleMonocular-cy + oMonocular-cy + oacute + obarcyr + obardieresiscyr + obreve + ocircumflex + odieresis + odieresiscyr + ograve + ohungarumlaut + omacron + omegaBroad-cy + omegaroundcyr + omegatitlocyr + oslashacute + otilde + p + p.ss01 + schwacyr + schwadieresiscyr + thorn + uni1C82 + uniF499 + uniF49D + uniF4D3 + uniF4D5 + uniF4D7 + uniF519 + uniF51B + uniF51D + uniF51F + uniF523 + uniF525 + uniF52D + uniF52F + uniF83A + + public.kern1.period1 + + ellipsis + period + + public.kern1.quotedbl1 + + quotedbl + quotesingle + + public.kern1.quoteleft1 + + quotedblleft + quoteleft + + public.kern1.quoteright1 + + apostrophemod + minute + quotedblright + quoteright + second + + public.kern1.s1 + + dzwe-cy + s + sacute + scaron + scedilla + scircumflex + scommaaccent + + public.kern1.t.ss011 + + t.ss01 + tcedilla.ss01 + tcommaaccent.ss01 + + public.kern1.t1 + + t + tcaron + tcedilla + tcommaaccent + + public.kern1.te-cy + + te-cy + tetailcyr + tsse-cy + twe-cy + + public.kern1.u1 + + igravecyr.SRB + ii-cy.BGR + iishort-cy.BGR + pe-cy.SRB + te-cy.SRB + u + uacute + ucircumflex + udieresis + ugrave + uhungarumlaut + umacron + uogonek + uring + + public.kern1.uni0435.ss011 + + ie-cy.ss01 + io-cy.ss01 + + public.kern1.v + + izhitsacyr + izhitsagravedblcyr + v + + public.kern1.w1 + + omegacyr + otcyr + w + wacute + wcircumflex + wdieresis + wecyr + wgrave + + public.kern1.x + + ha-cy + hahookcyr + lhacyr + rhacyr + uniF879 + x + + public.kern1.y1 + + Ukcyr + u-cy + u-cy.accented + uacutedblcyr + udieresiscyr + ukcyr + umacroncyr + uniF43B + uniF4CD + ushort-cy + ustraightcyr + ustraightstrokecyr + y + yacute + ycircumflex + ydieresis + + public.kern1.z1 + + dzelo-cy + z + zacute + zcaron + zdotaccent + zemlya-cy + + public.kern1.ze-cy + + dzeabkhcyr + ksicyr + uniF517 + ze-cy + ze-cy.BGR + zedieresiscyr + zetailcyr + zetailcyr.BSH + + public.kern1.zhe-cy + + dzzhecyr + katailcyr + kaverticalstrokecyr + xatailcyr + yusBlended-cy + yusbigcyr + yusbigiotifiedcyr + yusbigiotifiedcyr.BGR + zhe-cy + zhe-cy.BGR + zhebrevecyr + zhedieresiscyr + zhetailcyr + zhwe-cy + + public.kern2.A.ss01 + + A.ss01 + AE.ss01 + Aacute.ss01 + Acircumflex.ss01 + Adieresis.ss01 + Agrave.ss01 + Amacron.ss01 + Aogonek.ss01 + Atilde.ss01 + + public.kern2.A.ss012 + + A-cy.ss01 + Abreve.ss01 + Aring.ss01 + + public.kern2.A2 + + A + A-cy + A-cy.accented + AE + AEacute + Aacute + Abreve + Abrevecyr + Acaron + Acircumflex + Adieresis + Adieresiscyr + Agrave + Aiecyr + Amacron + Aogonek + Aring + Atilde + De-cy.BGR + Delta + El-cy.BGR + Yn-cy + YusClosedlittle-cy + Yuslittlecyr + uniF50E + uniF830 + + public.kern2.B + + B + D + Dcaron + E + Eacute + Ecaron + Ecircumflex + Edieresis + Edotaccent + Egrave + Emacron + Eogonek + F + H + Hbar + Hcircumflex + I + Iacute + Ibreve + Icircumflex + Idieresis + Idotaccent + Igrave + Imacron + Iogonek + Itilde + K + K.ss01 + Kcommaaccent + Kcommaaccent.ss01 + L + Lacute + Lcaron + Lcommaaccent + Ldot + M + N + N.ss01 + Nacute + Nacute.ss01 + Ncaron + Ncaron.ss01 + Ncommaaccent + Ncommaaccent.ss01 + Ntilde + Ntilde.ss01 + P + R + Racute + Rcaron + Rcommaaccent + Thorn + uni1EBC + + public.kern2.Che-cy + + Cche-cy + Che-cy + Chedieresiscyr + Chekhakascyr + Chetailcyr + Chevertcyr + uniF4C6 + uniF87E + + public.kern2.De-cy + + Dchecyr + De-cy + DeSoft-cy + Dwe-cy + Dzze-cy + Dzzhecyr + TseReversed-cy + + public.kern2.El-cy + + El-cy + ElSoft-cy + Elhookcyr + Elmiddlehookcyr + Elsharptailcyr + Eltailcyr + Lhacyr + Ljekomicyr + uniF872 + + public.kern2.Eth + + Dcroat + Eth + Gestrokecyr + + public.kern2.G + + C + Cacute + Ccaron + Ccedilla + Ccircumflex + Cdotaccent + CrossedO-cy + DoubleO-cy + E-cy + Ef-cy.BGR + Es-cy + Estailcyr + Estailcyr.BSH + Estailcyr.CHU + Fitacyr + G + G.ss01 + Gacute + Gacute.ss01 + Gbreve + Gbreve.ss01 + Gcircumflex + Gcircumflex.ss01 + Gcommaaccent + Gcommaaccent.ss01 + Gdotaccent + Gdotaccent.ss01 + Haabkhcyr + Koppacyr + O + O-cy + O-cy.accented + OBinocular-cy + ODoubleMonocular-cy + OE + OMonocular-cy + Oacute + Obarcyr + Obardieresiscyr + Obreve + Ocircumflex + Odieresis + Odieresiscyr + Ograve + Ohungarumlaut + Omacron + Omegaroundcyr + Oslash + Otilde + Q + Q.ss01 + Qacyr + Schwacyr + Schwadieresiscyr + Sjekomicyr + Ukcyr + YuReversed-cy + uniF45D + uniF49A + uniF49C + uniF4D2 + uniF518 + uniF51A + uniF51C + uniF51E + uniF526 + uniF839 + uniF875 + + public.kern2.Gecyr + + Be-cy + E-cy.accented + Eiotifiedcyr + Em-cy + EmSoft-cy + Emsharptailcyr + En-cy + Engecyr + Enhookcyr + Enhookleftcyr + Enmiddlehookcyr + Ensharptailcyr + Entailcyr + Er-cy + Ertickcyr + Gehookcyr + Gestrokecyr.BSH + Getailcyr + Gheupturn-cy + Gjecyr + Hwe-cy + I-cy + Iebrevecyr + Ii-cy + Ii-cy.accented + Io-cy.accented + IotifiedA-cy + Iu-cy.accented + Ka-cy + Kaaleutcyr + Kahookcyr + Katailcyr + Kaverticalstrokecyr + Kjecyr + Njekomicyr + Palochkacyr + Pe-cy + Pehookcyr + Petailcyr + Rhacyr + Shhacyr + Shhatailcyr + Shwe-cy + Tswe-cy + Ve-cy + Yeru-cy.accented + Yeru-cymacron + Yi-cy + Ylongdieresiscyr + Yusbigiotifiedcyr + YusiotifiedClosedLittle-cy + Yuslittleiotifiedcyr + palochkacyr + uniF45E + uniF45F + uniF498 + uniF4D4 + uniF510 + uniF512 + uniF514 + uniF52C + uniF52E + uniF532 + uniF536 + uniF833 + uniF86F + uniF87B + + public.kern2.Ia-cy + + Ia-cy + Ia-cy.accented + Yaecyr + uniF4D8 + uniF528 + uniF52A + + public.kern2.Iishort-cy + + Idieresiscyr + Iishort-cy + Imacroncyr + Ishortsharptailcyr + + public.kern2.J + + J + Jcircumflex + Jecyr + + public.kern2.Oslash.alt + + Ha-cy.ss01 + Hahookcyr + X + X.ss01 + Xatailcyr + uniF878 + + public.kern2.S + + Dzwe-cy + S + Sacute + Scaron + Scedilla + Scircumflex + Scommaaccent + + public.kern2.T + + Djecyr + T + Tcaron + Tcedilla + Tche-cy + Tcommaaccent + Te-cy + TeWithMiddleHook-cy + Tetailcyr + Tetsecyr + Tjekomicyr + Tshecyr + Tsse-cy + Twe-cy + + public.kern2.U + + Iota-cy + OmegaBroad-cy + Omegacyr + Omegatitlocyr + Otcyr + Psicyr + U + Uacute + Ubreve + Ucircumflex + Udieresis + Ugrave + Uhungarumlaut + Umacron + Uogonek + Uring + Utilde + + public.kern2.Ucyr.ss01 + + U-cy.accented + U-cy.ss01 + Uacutedblcyr + Udieresiscyr + Umacroncyr + Ushort-cy.ss01 + uniF4CC + + public.kern2.V + + Izhitsacyr + Izhitsagravedblcyr + V + V.ss01 + + public.kern2.W + + W + W.ss01 + Wacute + Wacute.ss01 + Wcircumflex + Wcircumflex.ss01 + Wdieresis + Wdieresis.ss01 + Wecyr + Wgrave + Wgrave.ss01 + + public.kern2.Y + + Ustraightcyr + Ustraightstrokecyr + Y + Y.ss01 + Yacute + Yacute.ss01 + Ycircumflex + Ycircumflex.ss01 + Ydieresis + Ydieresis.ss01 + uniF43A + + public.kern2.Z + + Dzelo-cy + Z + Z.ss01 + Zacute + Zacute.ss01 + Zcaron + Zcaron.ss01 + Zdotaccent + Zdotaccent.ss01 + Zemlya-cy + + public.kern2.Ze-cy1 + + Dzeabkhcyr + Ksicyr + Ze-cy + Zedieresiscyr + Zetailcyr + Zetailcyr.BSH + Zhwe-cy + uniF516 + + public.kern2.Zhe-cy1 + + YusBlended-cy + Yusbigcyr + Zhe-cy + Zhebrevecyr + Zhedieresiscyr + Zhetailcyr + + public.kern2.a + + a + a-cy + a-cy.accented + aacute + abreve + abrevecyr + acaron + acircumflex + adieresis + adieresiscyr + ae + aeacute + agrave + aiecyr + amacron + aogonek + aring + atilde + uniF50F + uniF831 + + public.kern2.acute.case + + acute.case + hungarumlaut.case + + public.kern2.che-cy + + cche-cy + che-cy + chedieresiscyr + chekhakascyr + chetailcyr + chevertcyr + uniF4C7 + uniF87F + + public.kern2.comma + + comma + quotedblbase + quotesinglbase + + public.kern2.copyright + + copyright + registered + + public.kern2.decyr.ss01 + + de-cy.ss01 + deSoft-cy + dwe-cy + dzze-cy + dzzhecyr + tseReversed-cy + + public.kern2.el-cy + + el-cy + el-cy.ss01 + elSoft-cy + elhookcyr + elmiddlehookcyr + elsharptailcyr + eltailcyr + lhacyr + ljecyr.ss01 + ljekomicyr + uniF873 + + public.kern2.el-cy.BGR1 + + el-cy.BGR + uni1C81 + yn-cy + yusClosedlittle-cy + yuslittlecyr + + public.kern2.emdash + + emdash + endash + hyphen + + public.kern2.f + + f + f_f + f_f_i + f_f_l + fi + fl + gestrokecyr + + public.kern2.f_f.ss01 + + f_f.ss01 + f_f_i.ss01 + f_f_l.ss01 + + public.kern2.fi.ss01 + + fi.ss01 + fl.ss01 + + public.kern2.five + + five + five.tf + + public.kern2.four + + four + four.tf + + public.kern2.g + + g + gacute + gbreve + gcircumflex + gcommaaccent + gdotaccent + + public.kern2.g.ss01 + + g.ss01 + gacute.ss01 + gbreve.ss01 + gcircumflex.ss01 + gcommaaccent.ss01 + gdotaccent.ss01 + + public.kern2.guillemotleft + + guillemetleft + guilsinglleft + + public.kern2.guillemotright + + guillemetright + guilsinglright + + public.kern2.h + + eiotifiedcyr.BGR + h + hcircumflex + hwe-cy + iotifieda-cy.BGR + iu-cy.BGR + k + ka-cy.BGR + kcommaaccent + l + lacute + lcaron + lcommaaccent + ldot + shhacyr + shhatailcyr + ve-cy.BGR + yatcyr.BGR + yusbigiotifiedcyr.BGR + + public.kern2.i1 + + i + i-cy + iacute + icircumflex + igrave + imacron + iogonek + itilde + uniF476 + yi-cy.alt + + public.kern2.ia-cy + + ia-cy + ia-cy.accented + ia-cy.ss01 + uniF4D9 + uniF529 + uniF52B + yaecyr + + public.kern2.j + + enhookleftcyr + j + jcircumflex + jdotless + + public.kern2.l.ss01 + + l.ss01 + lacute.ss01 + lcaron.ss01 + lcommaaccent.ss01 + ldot.ss01 + + public.kern2.m + + eiotifiedcyr + em-cy + emSoft-cy + emsharptailcyr + en-cy + eng + engecyr + enhookcyr + enmiddlehookcyr + ensharptailcyr + entailcyr + er-cy + er-cy.ss01 + ertickcyr + ge-cy + gehookcyr + gehookstrokecyr + gestrokecyr.BSH + getailcyr + gheupturn-cy + gjecyr + idieresiscyr + idotless + igravecyr + ii-cy + ii-cy.accented + iishort-cy + imacroncyr + iotifieda-cy + ishortsharptailcyr + iu-cy + iu-cy.accented + ka-cy + kaaleutcyr + kahookcyr + katailcyr + kaverticalstrokecyr + kgreenlandic + kjecyr + m + mu + n + nacute + ncaron + ncommaaccent + njecyr.ss01 + njekomicyr + ntilde + p + p.ss01 + pe-cy + pe-cy.BGR + pehookcyr + petailcyr + psicyr + r + racute + rcaron + rcommaaccent + rhacyr + sha-cy + shcha-cy + shwe-cy + softsign-cy + softsign-cy.BGR + softsign-cy.ss01 + te-cy.BGR + tse-cy + tswe-cy + uni1C85 + uniF499 + uniF4D5 + uniF521 + uniF52D + uniF52F + uniF533 + uniF537 + uniF870 + uniF87C + ve-cy + ve-cy.ss01 + yatIotified-cy + yeru-cy + yeru-cy.accented + yeru-cy.ss01 + ylongdieresiscyr + yusbigiotifiedcyr + yusiotifiedClosedLittle-cy + yuslittleiotifiedcyr + + public.kern2.o + + Dekomicyr + Djekomicyr + a-cy.ss01 + a.ss01 + aacute.ss01 + abreve.ss01 + acircumflex.ss01 + adieresis.ss01 + agrave.ss01 + amacron.ss01 + aogonek.ss01 + aring.ss01 + atilde.ss01 + c + cacute + ccaron + ccedilla + ccircumflex + cdotaccent + cent + crossedo-cy + d + d.ss01 + dcaron + dcaron.ss01 + dcroat + dcroat.ss01 + de-cy.BGR + dekomicyr + djekomicyr + e + e-cy + e-cy.accented + e-cy.hist + e.ss01 + eacute + eacute.ss01 + ebreve + ebreve.ss01 + ecaron + ecaron.ss01 + ecircumflex + ecircumflex.ss01 + edieresis + edieresis.ss01 + edotaccent + edotaccent.ss01 + ef-cy + egrave + egrave.ss01 + emacron + emacron.ss01 + eogonek + eogonek.ss01 + es-cy + estailcyr + estailcyr.BSH + estailcyr.CHU + eth + eturned + fitacyr + haabkhcyr + ie-cy + ie-cy.ss01 + iebrevecyr + iegravecyr + iegravecyr.SRB + io-cy + io-cy.accented + io-cy.ss01 + koppacyr + o + o-cy + o-cy.accented + oBinocular-cy + oDoubleMonocular-cy + oMonocular-cy + oacute + obarcyr + obardieresiscyr + obreve + ocircumflex + odieresis + odieresiscyr + oe.ss01 + ograve + ohungarumlaut + omacron + omegaBroad-cy + omegaroundcyr + omegatitlocyr + oslashacute + otilde + q + q.ss01 + qacyr + schwacyr + schwadieresiscyr + sjekomicyr + ukcyr + uni1C82 + uni1C83 + uni1EBD + uniF475 + uniF49D + uniF4D3 + uniF511 + uniF513 + uniF515 + uniF519 + uniF51B + uniF51D + uniF51F + uniF527 + uniF834 + uniF83A + uniF876 + yuReversed-cy + + public.kern2.percent + + percent + perthousand + + public.kern2.period + + ellipsis + period + + public.kern2.quotedbl + + quotedbl + quotesingle + + public.kern2.quoteleft + + quotedblleft + quoteleft + + public.kern2.quoteright + + apostrophemod + minute + quotedblright + quoteright + second + + public.kern2.s + + dzwe-cy + s + sacute + scaron + scedilla + scircumflex + scommaaccent + + public.kern2.t + + t + t.ss01 + tbar.ss01 + tcaron + tcaron.ss01 + tcedilla + tcedilla.ss01 + tcommaaccent + tcommaaccent.ss01 + + public.kern2.tecyr + + tche-cy + te-cy.ss01 + tetailcyr + tetsecyr + tewithmiddlehook-cy + tjekomicyr + tsse-cy + twe-cy + + public.kern2.u + + igravecyr.SRB + ii-cy.BGR + iishort-cy.BGR + iota-cy + pe-cy.SRB + sha-cy.BGR + shcha-cy.BGR + te-cy.SRB + tse-cy.BGR + u + uacute + ubreve + ucircumflex + udieresis + ugrave + uhungarumlaut + umacron + uogonek + uring + utilde + + public.kern2.v1 + + izhitsacyr + izhitsagravedblcyr + v + + public.kern2.w + + omegacyr + otcyr + w + wacute + wcircumflex + wdieresis + wecyr + wgrave + + public.kern2.x + + ha-cy + hahookcyr + uniF879 + x + + public.kern2.y + + u-cy + u-cy.accented + uacutedblcyr + udieresiscyr + umacroncyr + uniF43B + uniF4CD + ustraightcyr + ustraightstrokecyr + y + yacute + ycircumflex + ydieresis + + public.kern2.z + + dzelo-cy + z + zacute + zcaron + zdotaccent + zemlya-cy + + public.kern2.ze-cy1 + + dzeabkhcyr + ksicyr + uniF517 + ze-cy + ze-cy.BGR + zedieresiscyr + zetailcyr + zetailcyr.BSH + zhwe-cy + + public.kern2.zero + + uni1C80 + zero + zero.tf + + public.kern2.zhe-cy1 + + xatailcyr + yusBlended-cy + yusbigcyr + zhe-cy + zhe-cy.BGR + zhebrevecyr + zhedieresiscyr + zhetailcyr + + ss01 + + A-cy.ss01 + A.ss01 + AE.ss01 + Aacute.ss01 + Abreve.ss01 + Acircumflex.ss01 + Adieresis.ss01 + Agrave.ss01 + Amacron.ss01 + Aogonek.ss01 + Aring.ss01 + Atilde.ss01 + Em-cy.ss01 + Eng.ss01 + G.ss01 + Gacute.ss01 + Gbreve.ss01 + Gcircumflex.ss01 + Gcommaaccent.ss01 + Gdotaccent.ss01 + Ha-cy.ss01 + Ia-cy.ss01 + J.ss01 + Jcircumflex.ss01 + K.ss01 + Ka-cy.ss01 + Kcommaaccent.ss01 + M.ss01 + N.ss01 + Nacute.ss01 + Ncaron.ss01 + Ncommaaccent.ss01 + Ntilde.ss01 + Q.ss01 + U-cy.ss01 + Ushort-cy.ss01 + V.ss01 + W.ss01 + Wacute.ss01 + Wcircumflex.ss01 + Wdieresis.ss01 + Wgrave.ss01 + X.ss01 + Y.ss01 + Yacute.ss01 + Ycircumflex.ss01 + Ydieresis.ss01 + Z.ss01 + Zacute.ss01 + Zcaron.ss01 + Zdotaccent.ss01 + Zhe-cy.ss01 + a-cy.ss01 + a.ss01 + aacute.ss01 + abreve.ss01 + acircumflex.ss01 + adieresis.ss01 + ae.ss01 + agrave.ss01 + amacron.ss01 + aogonek.ss01 + aring.ss01 + arrowdown.ss01 + arrowdown.ss01.case + arrowleft.ss01 + arrowleft.ss01.case + arrowright.ss01 + arrowright.ss01.case + arrowup.ss01 + arrowup.ss01.case + atilde.ss01 + b.ss01 + d.ss01 + dcaron.ss01 + dcroat.ss01 + de-cy.ss01 + e.ss01 + eacute.ss01 + ebreve.ss01 + ecaron.ss01 + ecircumflex.ss01 + edieresis.ss01 + edotaccent.ss01 + egrave.ss01 + el-cy.ss01 + emacron.ss01 + eogonek.ss01 + er-cy.ss01 + f.ss01 + f_f.ss01 + f_f_i.ss01 + f_f_l.ss01 + fi.ss01 + fl.ss01 + g.ss01 + gacute.ss01 + gbreve.ss01 + gcircumflex.ss01 + gcommaaccent.ss01 + gdotaccent.ss01 + germandbls.ss01 + hardsign-cy.ss01 + ia-cy.ss01 + ie-cy.ss01 + io-cy.ss01 + l.ss01 + lacute.ss01 + lcaron.ss01 + lcommaaccent.ss01 + ldot.ss01 + ljecyr.ss01 + lslash.ss01 + njecyr.ss01 + numero.ss01 + oe.ss01 + p.ss01 + q.ss01 + softsign-cy.ss01 + t.ss01 + tbar.ss01 + tcaron.ss01 + tcedilla.ss01 + tcommaaccent.ss01 + te-cy.ss01 + ve-cy.ss01 + yen.ss01 + yeru-cy.ss01 + + ss01_def + + A-cy + A + AE + Aacute + Abreve + Acircumflex + Adieresis + Agrave + Amacron + Aogonek + Aring + Atilde + Em-cy + Eng + G + Gacute + Gbreve + Gcircumflex + Gcommaaccent + Gdotaccent + Ha-cy + Ia-cy + J + Jcircumflex + K + Ka-cy + Kcommaaccent + M + N + Nacute + Ncaron + Ncommaaccent + Ntilde + Q + U-cy + Ushort-cy + V + W + Wacute + Wcircumflex + Wdieresis + Wgrave + X + Y + Yacute + Ycircumflex + Ydieresis + Z + Zacute + Zcaron + Zdotaccent + Zhe-cy + a-cy + a + aacute + abreve + acircumflex + adieresis + ae + agrave + amacron + aogonek + aring + arrowdown + arrowdown.case + arrowleft + arrowleft.case + arrowright + arrowright.case + arrowup + arrowup.case + atilde + b + d + dcaron + dcroat + de-cy + e + eacute + ebreve + ecaron + ecircumflex + edieresis + edotaccent + egrave + el-cy + emacron + eogonek + er-cy + f + f_f + f_f_i + f_f_l + fi + fl + g + gacute + gbreve + gcircumflex + gcommaaccent + gdotaccent + germandbls + hardsign-cy + ia-cy + ie-cy + io-cy + l + lacute + lcaron + lcommaaccent + ldot + ljecyr + lslash + njecyr + numero + oe + p + q + softsign-cy + t + tbar + tcaron + tcedilla + tcommaaccent + te-cy + ve-cy + yen + yeru-cy + + + diff --git a/sources/FixelDisplay-Thin.ufo/kerning.plist b/sources/FixelDisplay-Thin.ufo/kerning.plist new file mode 100644 index 00000000..ad26e859 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/kerning.plist @@ -0,0 +1,1924 @@ + + + + + Zhe-cy + + public.kern2.G + -20 + + space + + public.kern2.Y + -70 + + uni1C82 + + public.kern2.y + -90 + + public.kern1.A.ss012 + + public.kern2.G + -30 + public.kern2.S + -20 + public.kern2.T + -50 + public.kern2.U + -20 + public.kern2.Ucyr.ss01 + -30 + public.kern2.V + -30 + public.kern2.W + -20 + public.kern2.Y + -55 + public.kern2.Z + -10 + public.kern2.a + -30 + public.kern2.decyr.ss01 + -10 + public.kern2.j + -20 + public.kern2.o + -30 + public.kern2.quotedbl + -50 + public.kern2.quoteright + -50 + public.kern2.s + -20 + public.kern2.t + -20 + public.kern2.tecyr + -30 + public.kern2.u + -20 + public.kern2.w + -30 + public.kern2.x + -10 + public.kern2.y + -50 + public.kern2.z + -10 + + public.kern1.A2 + + public.kern2.G + -25 + public.kern2.T + -40 + public.kern2.U + -10 + public.kern2.Ucyr.ss01 + -30 + public.kern2.V + -25 + public.kern2.W + -35 + public.kern2.Y + -50 + public.kern2.a + -20 + public.kern2.comma + 10 + public.kern2.emdash + -10 + public.kern2.j + -1 + public.kern2.o + -20 + public.kern2.period + 40 + public.kern2.quotedbl + -50 + public.kern2.quoteright + -50 + public.kern2.tecyr + -30 + public.kern2.w + -20 + public.kern2.y + -30 + + public.kern1.C1 + + public.kern2.A.ss01 + 10 + public.kern2.T + -10 + public.kern2.V + 10 + public.kern2.W + -10 + public.kern2.Y + -10 + public.kern2.Z + -10 + public.kern2.j + -20 + public.kern2.o + -10 + public.kern2.quoteright + 10 + public.kern2.x + -10 + public.kern2.y + -10 + + public.kern1.Decyr + + public.kern2.G + -10 + public.kern2.T + -20 + public.kern2.Ucyr.ss01 + -20 + public.kern2.decyr.ss01 + 10 + public.kern2.emdash + -10 + public.kern2.o + -10 + public.kern2.tecyr + -20 + public.kern2.y + -20 + + public.kern1.E1 + + public.kern2.o + -10 + public.kern2.w + -10 + public.kern2.y + -10 + + public.kern1.G.ss01 + + public.kern2.A.ss01 + 10 + public.kern2.B + 10 + public.kern2.Oslash.alt + 10 + public.kern2.T + -20 + public.kern2.V + -20 + public.kern2.W + -10 + public.kern2.Y + -20 + public.kern2.h + 10 + public.kern2.l.ss01 + 10 + public.kern2.m + 10 + public.kern2.o + 10 + public.kern2.quotedbl + -20 + public.kern2.quoteright + -20 + public.kern2.y + -10 + + public.kern1.G1 + + public.kern2.T + -10 + public.kern2.V + -30 + public.kern2.W + -10 + public.kern2.Y + -20 + public.kern2.comma + 10 + public.kern2.quotedbl + -20 + public.kern2.y + -10 + + public.kern1.Ge-cy + + public.kern2.A.ss012 + -60 + public.kern2.A2 + -40 + public.kern2.G + -40 + public.kern2.T + 20 + public.kern2.a + -80 + public.kern2.comma + -70 + public.kern2.decyr.ss01 + -90 + public.kern2.emdash + -60 + public.kern2.guillemotright + -30 + public.kern2.i1 + 20 + public.kern2.m + -70 + public.kern2.o + -100 + public.kern2.period + -110 + public.kern2.tecyr + -80 + public.kern2.x + -70 + public.kern2.y + -50 + + public.kern1.H + + public.kern2.Gecyr + 1 + public.kern2.W + 10 + public.kern2.j + -40 + public.kern2.quoteright + -20 + + public.kern1.Hardcyr + + public.kern2.Oslash.alt + -10 + public.kern2.T + -110 + public.kern2.Ucyr.ss01 + -70 + public.kern2.comma + -10 + public.kern2.quotedbl + -120 + public.kern2.tecyr + -60 + public.kern2.x + -30 + public.kern2.y + -30 + + public.kern1.J1 + + public.kern2.A2 + -10 + public.kern2.period + -30 + + public.kern1.K + + public.kern2.G + -40 + public.kern2.U + -20 + public.kern2.a + -20 + public.kern2.emdash + -60 + public.kern2.j + -10 + public.kern2.o + -40 + public.kern2.quoteright + -20 + public.kern2.s + -20 + public.kern2.t + -30 + public.kern2.tecyr + -40 + public.kern2.u + -30 + public.kern2.w + -30 + public.kern2.y + -40 + + public.kern1.L + + public.kern2.G + -40 + public.kern2.S + -20 + public.kern2.T + -90 + public.kern2.U + -40 + public.kern2.V + -110 + public.kern2.W + -80 + public.kern2.Y + -120 + public.kern2.Z + -20 + public.kern2.a + -30 + public.kern2.emdash + -80 + public.kern2.guillemotleft + -30 + public.kern2.j + -10 + public.kern2.o + -40 + public.kern2.quotedbl + -80 + public.kern2.quoteright + -70 + public.kern2.t + -20 + public.kern2.u + -20 + public.kern2.w + -60 + public.kern2.y + -90 + + public.kern1.O + + Zhe-cy + -20 + public.kern2.A.ss012 + -15 + public.kern2.A2 + -30 + public.kern2.J + -40 + public.kern2.Oslash.alt + -20 + public.kern2.T + -30 + public.kern2.Ucyr.ss01 + -30 + public.kern2.V + -30 + public.kern2.W + -30 + public.kern2.Y + -50 + public.kern2.Z + -40 + public.kern2.a + -10 + public.kern2.comma + -50 + public.kern2.decyr.ss01 + -10 + public.kern2.j + -20 + public.kern2.period + -30 + public.kern2.quotedbl + -10 + public.kern2.x + -10 + public.kern2.y + -10 + public.kern2.z + -15 + + public.kern1.Oslash.alt + + public.kern2.G + -20 + public.kern2.S + -10 + public.kern2.W + -10 + public.kern2.a + -10 + public.kern2.comma + 10 + public.kern2.emdash + -20 + public.kern2.g.ss01 + -20 + public.kern2.j + -20 + public.kern2.o + -30 + public.kern2.quoteright + -30 + public.kern2.s + -30 + public.kern2.t + -10 + public.kern2.tecyr + -20 + public.kern2.u + -30 + public.kern2.w + -20 + public.kern2.y + -30 + + public.kern1.P + + public.kern2.A.ss01 + -50 + public.kern2.A.ss012 + -50 + public.kern2.A2 + -63 + public.kern2.J + -90 + public.kern2.Oslash.alt + -30 + public.kern2.T + -30 + public.kern2.Ucyr.ss01 + -20 + public.kern2.V + -10 + public.kern2.W + -10 + public.kern2.Z + -40 + public.kern2.a + -20 + public.kern2.comma + -110 + public.kern2.decyr.ss01 + -40 + public.kern2.emdash + -10 + public.kern2.g + -20 + public.kern2.g.ss01 + -30 + public.kern2.j + -40 + public.kern2.o + -30 + public.kern2.period + -170 + public.kern2.s + -20 + public.kern2.tecyr + 10 + public.kern2.x + -10 + + public.kern1.R + + public.kern2.G + -20 + public.kern2.T + -40 + public.kern2.U + -10 + public.kern2.V + -20 + public.kern2.W + -30 + public.kern2.Y + -30 + public.kern2.a + -20 + public.kern2.emdash + -20 + public.kern2.j + -30 + public.kern2.o + -20 + public.kern2.quotedbl + -20 + public.kern2.quoteright + -20 + public.kern2.s + -10 + public.kern2.t + -10 + public.kern2.u + -20 + public.kern2.w + -10 + public.kern2.y + -20 + + public.kern1.S1 + + public.kern2.A.ss01 + 10 + public.kern2.Oslash.alt + -10 + public.kern2.T + -20 + public.kern2.V + -10 + public.kern2.W + -20 + public.kern2.Y + -30 + public.kern2.Z + -10 + public.kern2.comma + -10 + public.kern2.emdash + 10 + public.kern2.j + -30 + public.kern2.quoteright + -30 + public.kern2.t + -10 + public.kern2.w + -10 + public.kern2.y + -10 + + public.kern1.T1 + + public.kern2.A.ss01 + -20 + public.kern2.A.ss012 + -45 + public.kern2.A2 + -40 + public.kern2.G + -30 + public.kern2.J + -80 + public.kern2.S + -20 + public.kern2.V + 10 + public.kern2.Y + 10 + public.kern2.a + -70 + public.kern2.comma + -60 + public.kern2.decyr.ss01 + -100 + public.kern2.emdash + -70 + public.kern2.g + -70 + public.kern2.g.ss01 + -50 + public.kern2.guillemotleft + -50 + public.kern2.guillemotright + -60 + public.kern2.i1 + 1 + public.kern2.j + -20 + public.kern2.m + -80 + public.kern2.o + -100 + public.kern2.period + -90 + public.kern2.quoteright + -20 + public.kern2.s + -70 + public.kern2.t + -10 + public.kern2.tecyr + -60 + public.kern2.u + -65 + public.kern2.w + -70 + public.kern2.x + -80 + public.kern2.y + -70 + public.kern2.z + -80 + + public.kern1.U1 + + public.kern2.A.ss01 + -10 + public.kern2.A2 + -10 + public.kern2.J + -10 + public.kern2.Y + -10 + public.kern2.Z + -40 + public.kern2.a + -10 + public.kern2.comma + -30 + public.kern2.j + -40 + public.kern2.period + -30 + public.kern2.quoteright + -20 + public.kern2.z + -10 + + public.kern1.Ucyr1 + + public.kern2.A.ss012 + -20 + public.kern2.A2 + -30 + public.kern2.G + -20 + public.kern2.a + -50 + public.kern2.comma + -70 + public.kern2.decyr.ss01 + -70 + public.kern2.emdash + -50 + public.kern2.guillemotright + -60 + public.kern2.m + -50 + public.kern2.o + -70 + public.kern2.period + -90 + public.kern2.tecyr + -20 + public.kern2.x + -30 + public.kern2.y + -30 + + public.kern1.V + + public.kern2.A.ss01 + -30 + public.kern2.A.ss012 + -20 + public.kern2.A2 + -25 + public.kern2.G + -30 + public.kern2.J + -80 + public.kern2.S + -10 + public.kern2.Z + -30 + public.kern2.a + -50 + public.kern2.comma + -100 + public.kern2.emdash + -40 + public.kern2.f + -10 + public.kern2.g + -50 + public.kern2.g.ss01 + -50 + public.kern2.guillemotleft + -40 + public.kern2.guillemotright + -30 + public.kern2.j + -30 + public.kern2.m + -50 + public.kern2.o + -60 + public.kern2.period + -90 + public.kern2.quoteright + -10 + public.kern2.s + -40 + public.kern2.t + -10 + public.kern2.u + -50 + public.kern2.w + -10 + public.kern2.x + -30 + public.kern2.y + -20 + public.kern2.z + -20 + + public.kern1.W.ss011 + + public.kern2.A.ss01 + -10 + public.kern2.A.ss012 + -40 + public.kern2.A2 + -70 + public.kern2.J + -80 + public.kern2.S + -10 + public.kern2.Z + -30 + public.kern2.a + -60 + public.kern2.comma + -80 + public.kern2.emdash + -40 + public.kern2.g + -70 + public.kern2.g.ss01 + -40 + public.kern2.guillemotright + -60 + public.kern2.i1 + 10 + public.kern2.j + -20 + public.kern2.m + -50 + public.kern2.o + -60 + public.kern2.period + -120 + public.kern2.quotedbl + 20 + public.kern2.quoteright + 20 + public.kern2.s + -50 + public.kern2.u + -60 + public.kern2.w + -20 + public.kern2.x + -20 + public.kern2.y + -20 + public.kern2.z + -40 + + public.kern1.W1 + + public.kern2.A.ss01 + -50 + public.kern2.A.ss012 + -10 + public.kern2.A2 + -35 + public.kern2.G + -20 + public.kern2.J + -70 + public.kern2.S + -20 + public.kern2.Z + -10 + public.kern2.a + -50 + public.kern2.comma + -60 + public.kern2.emdash + -20 + public.kern2.g + -40 + public.kern2.guillemotleft + -30 + public.kern2.guillemotright + -30 + public.kern2.i1 + -10 + public.kern2.j + -30 + public.kern2.m + -30 + public.kern2.o + -50 + public.kern2.period + -50 + public.kern2.quoteright + -20 + public.kern2.s + -20 + public.kern2.u + -30 + public.kern2.w + -10 + public.kern2.x + -30 + public.kern2.y + -20 + public.kern2.z + -20 + + public.kern1.Y.ss011 + + public.kern2.A.ss01 + -30 + public.kern2.A.ss012 + -30 + public.kern2.B + -10 + public.kern2.G + -30 + public.kern2.S + -10 + public.kern2.Z + -10 + public.kern2.a + -40 + public.kern2.comma + -70 + public.kern2.emdash + -40 + public.kern2.g.ss01 + -60 + public.kern2.j + -30 + public.kern2.m + -60 + public.kern2.o + -110 + public.kern2.period + -70 + public.kern2.quotedbl + 10 + public.kern2.quoteright + 10 + public.kern2.s + -80 + public.kern2.t + -20 + public.kern2.u + -50 + public.kern2.w + -30 + public.kern2.x + -40 + public.kern2.y + -30 + public.kern2.z + -40 + + public.kern1.Y1 + + public.kern2.A.ss012 + -30 + public.kern2.A2 + -50 + public.kern2.G + -50 + public.kern2.J + -90 + public.kern2.S + -30 + public.kern2.a + -70 + public.kern2.comma + -80 + public.kern2.emdash + -80 + public.kern2.f + -10 + public.kern2.g + -70 + public.kern2.guillemotleft + -70 + public.kern2.guillemotright + -60 + public.kern2.i1 + -20 + public.kern2.j + -30 + public.kern2.m + -70 + public.kern2.o + -100 + public.kern2.period + -100 + public.kern2.quoteright + -20 + public.kern2.s + -60 + public.kern2.t + -10 + public.kern2.u + -70 + public.kern2.w + -30 + public.kern2.x + -40 + public.kern2.y + -40 + public.kern2.z + -50 + + public.kern1.Z1 + + public.kern2.A.ss01 + 10 + public.kern2.G + -30 + public.kern2.W + -10 + public.kern2.a + -30 + public.kern2.comma + 30 + public.kern2.emdash + -30 + public.kern2.g.ss01 + -10 + public.kern2.j + -30 + public.kern2.o + -30 + public.kern2.period + 20 + public.kern2.quoteright + -40 + public.kern2.s + -10 + public.kern2.t + -20 + public.kern2.u + -20 + public.kern2.w + -20 + public.kern2.y + -20 + + public.kern1.a1 + + public.kern2.T + -60 + public.kern2.U + -10 + public.kern2.V + -60 + public.kern2.W + -40 + public.kern2.Y + -70 + public.kern2.f + 10 + public.kern2.j + -10 + public.kern2.quotedbl + -40 + public.kern2.quoteright + -40 + public.kern2.w + -5 + public.kern2.y + -25 + + public.kern1.c1 + + public.kern2.T + -70 + public.kern2.Ucyr.ss01 + -50 + public.kern2.V + -40 + public.kern2.W + -30 + public.kern2.Y + -70 + public.kern2.Z + -20 + public.kern2.a + -10 + public.kern2.comma + -10 + public.kern2.emdash + -10 + public.kern2.j + -20 + public.kern2.o + -10 + public.kern2.quotedbl + -40 + public.kern2.quoteright + -20 + public.kern2.x + -20 + public.kern2.y + -20 + + public.kern1.comma1 + + public.kern2.A.ss01 + 10 + public.kern2.B + -10 + public.kern2.G + -40 + public.kern2.Oslash.alt + 10 + public.kern2.S + -20 + public.kern2.T + -60 + public.kern2.U + -30 + public.kern2.V + -90 + public.kern2.W + -70 + public.kern2.Y + -110 + public.kern2.Z + -10 + public.kern2.a + -20 + public.kern2.five + -30 + public.kern2.four + -20 + public.kern2.o + -30 + public.kern2.u + -20 + public.kern2.w + -60 + public.kern2.y + -60 + public.kern2.zero + -30 + + public.kern1.dcaron + + public.kern2.B + 20 + public.kern2.Oslash.alt + 40 + public.kern2.S + 30 + public.kern2.T + 60 + public.kern2.V + 60 + public.kern2.W + 50 + public.kern2.Y + 60 + public.kern2.Z + 30 + public.kern2.a + -10 + public.kern2.f + 30 + public.kern2.fi.ss01 + 30 + public.kern2.h + 30 + public.kern2.i1 + 30 + public.kern2.t + 30 + public.kern2.w + 20 + public.kern2.y + 30 + public.kern2.z + 20 + + public.kern1.decyr1 + + public.kern2.G + -10 + public.kern2.T + -100 + public.kern2.Ucyr.ss01 + -40 + public.kern2.a + -20 + public.kern2.o + -20 + public.kern2.tecyr + -20 + public.kern2.y + -10 + + public.kern1.e.ss011 + + public.kern2.Oslash.alt + -10 + public.kern2.T + -90 + public.kern2.V + -40 + public.kern2.W + -30 + public.kern2.Y + -80 + public.kern2.Z + -30 + public.kern2.quotedbl + -40 + + public.kern1.e1 + + public.kern2.A2 + -10 + public.kern2.J + -10 + public.kern2.Oslash.alt + -20 + public.kern2.T + -80 + public.kern2.Ucyr.ss01 + -60 + public.kern2.V + -60 + public.kern2.W + -50 + public.kern2.Y + -70 + public.kern2.comma + -20 + public.kern2.j + -10 + public.kern2.period + -20 + public.kern2.quotedbl + -50 + public.kern2.quoteright + -30 + public.kern2.t + -20 + public.kern2.w + -10 + public.kern2.x + -20 + public.kern2.y + -20 + + public.kern1.emdash1 + + public.kern2.A2 + -10 + public.kern2.G + 10 + public.kern2.J + -50 + public.kern2.Oslash.alt + -20 + public.kern2.S + -60 + public.kern2.T + -70 + public.kern2.Ucyr.ss01 + -50 + public.kern2.V + -40 + public.kern2.W + -20 + public.kern2.Y + -80 + public.kern2.Z + -20 + public.kern2.a + -30 + public.kern2.decyr.ss01 + -30 + public.kern2.j + -30 + public.kern2.s + -10 + public.kern2.tecyr + -40 + public.kern2.w + -10 + public.kern2.x + -40 + public.kern2.y + -30 + public.kern2.z + -30 + + public.kern1.f1 + + public.kern2.A.ss012 + -30 + public.kern2.J + -50 + public.kern2.V + 10 + public.kern2.a + -30 + public.kern2.comma + -60 + public.kern2.emdash + -40 + public.kern2.g + -20 + public.kern2.i1 + 20 + public.kern2.j + -10 + public.kern2.o + -50 + public.kern2.period + -90 + public.kern2.s + -20 + + public.kern1.five1 + + public.kern2.comma + -30 + public.kern2.period + -50 + + public.kern1.four1 + + public.kern2.comma + -30 + public.kern2.emdash + -30 + public.kern2.five + -10 + public.kern2.period + -51 + public.kern2.quotedbl + -20 + + public.kern1.g.ss011 + + public.kern2.Oslash.alt + -20 + public.kern2.S + -10 + public.kern2.T + -60 + public.kern2.V + -30 + public.kern2.W + -20 + public.kern2.Y + -60 + public.kern2.Z + -30 + public.kern2.comma + 10 + public.kern2.emdash + -10 + public.kern2.o + -10 + public.kern2.quotedbl + -10 + + public.kern1.g1 + + public.kern2.T + -80 + public.kern2.V + -20 + public.kern2.W + -30 + public.kern2.Y + -20 + public.kern2.a + -10 + public.kern2.comma + 10 + public.kern2.quotedbl + -30 + + public.kern1.gecyr + + public.kern2.A.ss012 + -20 + public.kern2.A2 + -30 + public.kern2.Oslash.alt + -20 + public.kern2.T + -40 + public.kern2.Ucyr.ss01 + -20 + public.kern2.a + -20 + public.kern2.comma + -20 + public.kern2.decyr.ss01 + -40 + public.kern2.emdash + -60 + public.kern2.o + -30 + public.kern2.period + -80 + + public.kern1.guillemotright1 + + public.kern2.J + -60 + public.kern2.T + -50 + public.kern2.V + -40 + public.kern2.W + -30 + public.kern2.Y + -70 + + public.kern1.hardcyr + + public.kern2.A.ss012 + 10 + public.kern2.G + -20 + public.kern2.Oslash.alt + -20 + public.kern2.T + -100 + public.kern2.Ucyr.ss01 + -60 + public.kern2.quotedbl + -110 + public.kern2.tecyr + -90 + public.kern2.x + -10 + public.kern2.y + -50 + + public.kern1.i1 + + public.kern2.W + 10 + public.kern2.comma + -20 + public.kern2.i1 + 1 + public.kern2.j + -20 + public.kern2.quoteright + -20 + + public.kern1.icyr1 + + public.kern2.A.ss012 + 10 + public.kern2.T + -80 + public.kern2.Ucyr.ss01 + -60 + public.kern2.V + -50 + public.kern2.W + -30 + public.kern2.Y + -70 + + public.kern1.k + + public.kern2.A.ss01 + 10 + public.kern2.T + -60 + public.kern2.Ucyr.ss01 + -30 + public.kern2.V + -40 + public.kern2.W + -30 + public.kern2.a + -10 + public.kern2.emdash + -50 + public.kern2.o + -30 + public.kern2.quoteright + -10 + + public.kern1.l + + public.kern2.j + -10 + public.kern2.quoteright + -20 + + public.kern1.l.ss011 + + public.kern2.A.ss01 + 40 + public.kern2.B + 10 + public.kern2.G + 10 + public.kern2.Oslash.alt + 30 + public.kern2.S + 20 + public.kern2.V + -20 + public.kern2.W + -20 + public.kern2.Y + -20 + public.kern2.Z + 10 + public.kern2.comma + 10 + public.kern2.emdash + -10 + public.kern2.j + -20 + public.kern2.w + -30 + public.kern2.y + -20 + + public.kern1.n + + public.kern2.T + -80 + public.kern2.Ucyr.ss01 + -70 + public.kern2.V + -60 + public.kern2.W + -50 + public.kern2.Y + -90 + public.kern2.j + -20 + public.kern2.quotedbl + -40 + public.kern2.quoteright + -30 + public.kern2.y + -20 + + public.kern1.o1 + + public.kern2.A.ss01 + -10 + public.kern2.A.ss012 + -10 + public.kern2.A2 + -20 + public.kern2.J + -20 + public.kern2.Oslash.alt + -30 + public.kern2.S + -10 + public.kern2.T + -100 + public.kern2.Ucyr.ss01 + -80 + public.kern2.V + -60 + public.kern2.W + -50 + public.kern2.Y + -100 + public.kern2.Z + -30 + public.kern2.a + -10 + public.kern2.comma + -20 + public.kern2.g + -10 + public.kern2.j + -20 + public.kern2.period + -40 + public.kern2.quotedbl + -50 + public.kern2.quoteright + -40 + public.kern2.s + -20 + public.kern2.tecyr + -40 + public.kern2.w + -15 + public.kern2.x + -30 + public.kern2.y + -20 + public.kern2.z + -10 + + public.kern1.period1 + + public.kern2.A.ss01 + 20 + public.kern2.A.ss012 + 40 + public.kern2.A2 + 40 + public.kern2.G + -30 + public.kern2.S + -30 + public.kern2.T + -90 + public.kern2.U + -30 + public.kern2.Ucyr.ss01 + -20 + public.kern2.V + -90 + public.kern2.W + -50 + public.kern2.Y + -100 + public.kern2.Z + 10 + public.kern2.a + -30 + public.kern2.five + -40 + public.kern2.four + -30 + public.kern2.j + -40 + public.kern2.o + -40 + public.kern2.t + -20 + public.kern2.tecyr + -60 + public.kern2.u + -20 + public.kern2.w + -30 + public.kern2.y + -75 + public.kern2.zero + -50 + + public.kern1.quotedbl1 + + public.kern2.A.ss01 + -60 + public.kern2.A.ss012 + -40 + public.kern2.A2 + -50 + public.kern2.G + -10 + public.kern2.J + -100 + public.kern2.W + 20 + public.kern2.Y + 10 + public.kern2.a + -40 + public.kern2.decyr.ss01 + -40 + public.kern2.five + -10 + public.kern2.four + -70 + public.kern2.g + -50 + public.kern2.g.ss01 + -30 + public.kern2.j + -20 + public.kern2.o + -50 + public.kern2.s + -40 + public.kern2.x + -10 + + public.kern1.quoteleft1 + + public.kern2.A.ss01 + -60 + public.kern2.A2 + -70 + public.kern2.G + -20 + public.kern2.J + -50 + public.kern2.Oslash.alt + 10 + public.kern2.T + 30 + public.kern2.V + 20 + public.kern2.W + 30 + public.kern2.Y + 20 + public.kern2.a + -40 + public.kern2.f + 20 + public.kern2.g + -40 + public.kern2.g.ss01 + -10 + public.kern2.j + -20 + public.kern2.o + -40 + public.kern2.s + -30 + public.kern2.t + 20 + public.kern2.w + -10 + public.kern2.x + -20 + public.kern2.y + -10 + + public.kern1.quoteright1 + + public.kern2.A.ss01 + -60 + public.kern2.G + -20 + public.kern2.Oslash.alt + 10 + public.kern2.W + 30 + public.kern2.a + -60 + public.kern2.g + -70 + public.kern2.g.ss01 + -60 + public.kern2.j + -20 + public.kern2.m + -30 + public.kern2.o + -80 + public.kern2.s + -50 + public.kern2.u + -30 + public.kern2.w + -20 + public.kern2.x + -50 + public.kern2.y + -30 + public.kern2.z + -40 + + public.kern1.s1 + + public.kern2.A.ss01 + 20 + public.kern2.G + -10 + public.kern2.Oslash.alt + -10 + public.kern2.S + -10 + public.kern2.T + -70 + public.kern2.V + -40 + public.kern2.W + -40 + public.kern2.Y + -100 + public.kern2.Z + -30 + public.kern2.emdash + -30 + public.kern2.f + 20 + public.kern2.j + -10 + public.kern2.period + -20 + public.kern2.quotedbl + -30 + + public.kern1.t.ss011 + + public.kern2.A.ss01 + 20 + public.kern2.T + -40 + public.kern2.V + -40 + public.kern2.W + -30 + public.kern2.Y + -50 + public.kern2.comma + 10 + public.kern2.o + -30 + + public.kern1.t1 + + public.kern2.T + -50 + public.kern2.V + -20 + public.kern2.W + -20 + public.kern2.Y + -30 + public.kern2.emdash + -60 + public.kern2.o + -20 + public.kern2.y + -10 + + public.kern1.u1 + + public.kern2.T + -80 + public.kern2.V + -50 + public.kern2.W + -30 + public.kern2.Y + -70 + public.kern2.j + -20 + public.kern2.quoteright + -20 + + public.kern1.uni0435.ss011 + + public.kern2.A.ss012 + 20 + public.kern2.T + -70 + public.kern2.Ucyr.ss01 + -50 + public.kern2.V + -50 + public.kern2.W + -40 + public.kern2.Y + -60 + public.kern2.x + -10 + public.kern2.y + -10 + + public.kern1.w1 + + public.kern2.A.ss01 + -10 + public.kern2.A.ss012 + -10 + public.kern2.A2 + -20 + public.kern2.J + -50 + public.kern2.Oslash.alt + -20 + public.kern2.S + -10 + public.kern2.T + -60 + public.kern2.V + -10 + public.kern2.W + -20 + public.kern2.Y + -30 + public.kern2.Z + -40 + public.kern2.a + -15 + public.kern2.comma + -50 + public.kern2.emdash + -10 + public.kern2.g + -10 + public.kern2.j + -10 + public.kern2.o + -15 + public.kern2.period + -30 + public.kern2.z + -10 + + public.kern1.x + + public.kern2.A.ss012 + 20 + public.kern2.G + -10 + public.kern2.S + -10 + public.kern2.T + -80 + public.kern2.Ucyr.ss01 + -20 + public.kern2.V + -30 + public.kern2.W + -30 + public.kern2.Y + -40 + public.kern2.a + -20 + public.kern2.emdash + -40 + public.kern2.g + -10 + public.kern2.o + -30 + public.kern2.quotedbl + -10 + + public.kern1.y1 + + public.kern2.A.ss01 + -20 + public.kern2.A.ss012 + -20 + public.kern2.A2 + -20 + public.kern2.G + -10 + public.kern2.J + -60 + public.kern2.Oslash.alt + -30 + public.kern2.S + -10 + public.kern2.T + -70 + public.kern2.V + -20 + public.kern2.W + -30 + public.kern2.Y + -50 + public.kern2.Z + -20 + public.kern2.a + -30 + public.kern2.comma + -80 + public.kern2.decyr.ss01 + -50 + public.kern2.emdash + -30 + public.kern2.g + -20 + public.kern2.j + -10 + public.kern2.o + -20 + public.kern2.period + -80 + public.kern2.quoteright + 10 + public.kern2.z + -10 + + public.kern1.z1 + + public.kern2.T + -60 + public.kern2.V + -20 + public.kern2.W + -20 + public.kern2.Y + -50 + public.kern2.f + 20 + public.kern2.j + -10 + public.kern2.o + -10 + public.kern2.quoteright + 10 + public.kern2.s + -10 + + + diff --git a/sources/FixelDisplay-Thin.ufo/layercontents.plist b/sources/FixelDisplay-Thin.ufo/layercontents.plist new file mode 100644 index 00000000..7a35a5cf --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/layercontents.plist @@ -0,0 +1,10 @@ + + + + + + public.default + glyphs + + + diff --git a/sources/FixelDisplay-Thin.ufo/lib.plist b/sources/FixelDisplay-Thin.ufo/lib.plist new file mode 100644 index 00000000..c0069150 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/lib.plist @@ -0,0 +1,1671 @@ + + + + + com.fontlab.v2.tth + + stems + + 69 + + width + 69 + horizontal + + round + + 35 + 3 + 47 + 4 + 60 + 5 + 0 + 7 + 22 + 8 + + + 74 + + width + 74 + horizontal + + round + + 19 + 2 + 35 + 3 + 47 + 4 + 60 + 5 + 72 + 6 + 0 + 7 + 20 + 8 + + + 76 + + width + 76 + horizontal + + round + + 19 + 2 + 35 + 3 + 72 + 6 + 0 + 7 + 20 + 8 + + + 80 + + width + 80 + horizontal + + round + + 29 + 3 + 47 + 4 + 60 + 5 + 72 + 6 + 0 + 7 + 20 + 8 + + + 99 + + width + 99 + horizontal + + round + + 19 + 2 + 29 + 3 + 37 + 4 + 48 + 5 + 58 + 6 + 0 + 7 + 16 + 8 + + + 74 + + width + 74 + horizontal + + round + + 19 + 2 + 35 + 3 + 47 + 4 + 60 + 5 + 72 + 6 + 0 + 7 + 20 + 8 + + + 80 + + width + 80 + horizontal + + round + + 29 + 3 + 47 + 4 + 60 + 5 + 72 + 6 + 0 + 7 + 20 + 8 + + + 93 + + width + 93 + horizontal + + round + + 19 + 2 + 29 + 3 + 37 + 4 + 48 + 5 + 58 + 6 + 0 + 7 + 16 + 8 + + + + + com.schriftgestaltung.disablesAutomaticAlignment + + com.schriftgestaltung.fontMasterID + master01 + com.schriftgestaltung.glyphOrder + + com.schriftgestaltung.master.name + regular + com.schriftgestaltung.useNiceNames + + com.schriftgestaltung.weightValue + 400 + public.postscriptNames + + A-cy + uni0410 + A-cy.ss01 + uni0410.ss01 + Be-cy + uni0411 + Che-cy + uni0427 + De-cy + uni0414 + Dze-cy + uni0405 + E-cy + uni0404 + Ef-cy + uni0424 + El-cy + uni041B + Em-cy + uni041C + Em-cy.ss01 + uni041C.ss01 + En-cy + uni041D + Er-cy + uni0420 + Ereversed-cy + uni042D + Es-cy + uni0421 + Gacute + uni01F4 + Gacute.ss01 + uni01F4.ss01 + Gcommaaccent + uni0122 + Gcommaaccent.ss01 + uni0122.ss01 + Ge-cy + uni0413 + Germandbls + uni1E9E + Gheupturn-cy + uni0490 + Ha-cy + uni0425 + Ha-cy.ss01 + uni0425.ss01 + Hardsign-cy + uni042A + I-cy + uni0406 + Ia-cy + uni042F + Ia-cy.ss01 + uni042F.ss01 + Ie-cy + uni0415 + Ii-cy + uni0418 + Iishort-cy + uni0419 + Io-cy + uni0401 + Iu-cy + uni042E + Ka-cy + uni041A + Ka-cy.ss01 + uni041A.ss01 + Kcommaaccent + uni0136 + Kcommaaccent.ss01 + uni0136.ss01 + Lcommaaccent + uni013B + Ncommaaccent + uni0145 + Ncommaaccent.ss01 + uni0145.ss01 + O-cy + uni041E + Pe-cy + uni041F + Rcommaaccent + uni0156 + Scommaaccent + uni0218 + Sha-cy + uni0428 + Shcha-cy + uni0429 + Softsign-cy + uni042C + Tcedilla + uni0162 + Tcommaaccent + uni021A + Te-cy + uni0422 + Tse-cy + uni0426 + U-cy + uni0423 + U-cy.ss01 + uni0423.ss01 + Ushort-cy + uni040E + Ushort-cy.ss01 + uni040E.ss01 + Ve-cy + uni0412 + Yeru-cy + uni042B + Yi-cy + uni0407 + Ze-cy + uni0417 + Zhe-cy + uni0416 + Zhe-cy.ss01 + uni0416.ss01 + _perc-circule + _perccircule + a-cy + uni0430 + a-cy.ss01 + uni0430.ss01 + be-cy + uni0431 + che-cy + uni0447 + commaaccentcomb + uni0326 + commaaccentcomb.salt + uni0326.salt + de-cy + uni0434 + de-cy.ss01 + uni0434.ss01 + dze-cy + uni0455 + e-cy + uni0454 + ef-cy + uni0444 + el-cy + uni043B + el-cy.ss01 + uni043B.ss01 + em-cy + uni043C + en-cy + uni043D + er-cy + uni0440 + er-cy.ss01 + uni0440.ss01 + ereversed-cy + uni044D + es-cy + uni0441 + euro + Euro + gacute + uni01F5 + gacute.ss01 + uni01F5.ss01 + gcommaaccent + uni0123 + gcommaaccent.ss01 + uni0123.ss01 + ge-cy + uni0433 + gheupturn-cy + uni0491 + guillemetleft + guillemotleft + guillemetright + guillemotright + ha-cy + uni0445 + hardsign-cy + uni044A + hardsign-cy.ss01 + uni044A.ss01 + hryvnia + uni20B4 + i-cy + uni0456 + ia-cy + uni044F + ia-cy.ss01 + uni044F.ss01 + idotless + dotlessi + ie-cy + uni0435 + ie-cy.ss01 + uni0435.ss01 + ii-cy + uni0438 + iishort-cy + uni0439 + io-cy + uni0451 + io-cy.ss01 + uni0451.ss01 + iu-cy + uni044E + jdotless + uni0237 + je-cy + uni0458 + ka-cy + uni043A + kcommaaccent + uni0137 + lcommaaccent + uni013C + lcommaaccent.ss01 + uni013C.ss01 + ncommaaccent + uni0146 + numero + uni2116 + numero.ss01 + uni2116.ss01 + o-cy + uni043E + onesuperior + uni00B9 + pe-cy + uni043F + rcommaaccent + uni0157 + scommaaccent + uni0219 + sha-cy + uni0448 + shcha-cy + uni0449 + softsign-cy + uni044C + softsign-cy.ss01 + uni044C.ss01 + tcedilla + uni0163 + tcedilla.ss01 + uni0163.ss01 + tcommaaccent + uni021B + tcommaaccent.ss01 + uni021B.ss01 + te-cy + uni0442 + te-cy.ss01 + uni0442.ss01 + threesuperior + uni00B3 + tse-cy + uni0446 + twosuperior + uni00B2 + u-cy + uni0443 + ushort-cy + uni045E + ve-cy + uni0432 + ve-cy.ss01 + uni0432.ss01 + yeru-cy + uni044B + yeru-cy.ss01 + uni044B.ss01 + yi-cy + uni0457 + ze-cy + uni0437 + zhe-cy + uni0436 + + public.skipExportGlyphs + + Oslash.bold + oslash.bold + _perc-circule + + public.glyphOrder + + .notdef + NULL + CR + space + A + Aacute + Abreve + Acircumflex + Adieresis + Agrave + Amacron + Aogonek + Aring + Atilde + AE + B + C + Cacute + Ccaron + Ccedilla + Ccircumflex + Cdotaccent + D + Eth + Dcaron + Dcroat + E + Eacute + Ebreve + Ecaron + Ecircumflex + Edieresis + Edotaccent + Egrave + Emacron + Eogonek + F + G + Gacute + Gbreve + Gcircumflex + Gcommaaccent + Gdotaccent + H + Hbar + Hcircumflex + I + IJ + Iacute + Ibreve + Icircumflex + Idieresis + Idotaccent + Igrave + Imacron + Iogonek + Itilde + J + Jcircumflex + K + Kcommaaccent + L + Lacute + Lcaron + Lcommaaccent + Ldot + Lslash + M + N + Nacute + Ncaron + Ncommaaccent + Eng + Ntilde + O + Oacute + Obreve + Ocircumflex + Odieresis + Ograve + Ohungarumlaut + Omacron + Oslash + Otilde + OE + P + Thorn + Q + R + Racute + Rcaron + Rcommaaccent + S + Sacute + Scaron + Scedilla + Scircumflex + Scommaaccent + Germandbls + T + Tbar + Tcaron + Tcedilla + Tcommaaccent + U + Uacute + Ubreve + Ucircumflex + Udieresis + Ugrave + Uhungarumlaut + Umacron + Uogonek + Uring + Utilde + V + W + Wacute + Wcircumflex + Wdieresis + Wgrave + X + Y + Yacute + Ycircumflex + Ydieresis + Z + Zacute + Zcaron + Zdotaccent + A.ss01 + Aacute.ss01 + Abreve.ss01 + Acircumflex.ss01 + Adieresis.ss01 + Agrave.ss01 + Amacron.ss01 + Aogonek.ss01 + Aring.ss01 + Atilde.ss01 + AE.ss01 + G.ss01 + Gacute.ss01 + Gbreve.ss01 + Gcircumflex.ss01 + Gcommaaccent.ss01 + Gdotaccent.ss01 + J.ss01 + Jcircumflex.ss01 + K.ss01 + Kcommaaccent.ss01 + M.ss01 + N.ss01 + Nacute.ss01 + Ncaron.ss01 + Ncommaaccent.ss01 + Eng.ss01 + Ntilde.ss01 + Q.ss01 + V.ss01 + W.ss01 + Wacute.ss01 + Wcircumflex.ss01 + Wdieresis.ss01 + Wgrave.ss01 + X.ss01 + Y.ss01 + Yacute.ss01 + Ycircumflex.ss01 + Ydieresis.ss01 + Z.ss01 + Zacute.ss01 + Zcaron.ss01 + Zdotaccent.ss01 + a + aacute + abreve + acircumflex + adieresis + agrave + amacron + aogonek + aring + atilde + ae + b + c + cacute + ccaron + ccedilla + ccircumflex + cdotaccent + d + eth + dcaron + dcroat + e + eacute + ebreve + ecaron + ecircumflex + edieresis + edotaccent + egrave + emacron + eogonek + f + g + gacute + gbreve + gcircumflex + gcommaaccent + gdotaccent + h + hbar + hcircumflex + i + idotless + iacute + ibreve + icircumflex + idieresis + igrave + ij + imacron + iogonek + itilde + j + jdotless + jcircumflex + k + kcommaaccent + kgreenlandic + l + lacute + lcaron + lcommaaccent + ldot + lslash + m + n + nacute + napostrophe + ncaron + ncommaaccent + eng + ntilde + o + oacute + obreve + ocircumflex + odieresis + ograve + ohungarumlaut + omacron + oslash + otilde + oe + p + thorn + q + r + racute + rcaron + rcommaaccent + s + sacute + scaron + scedilla + scircumflex + scommaaccent + germandbls + t + tbar + tcaron + tcedilla + tcommaaccent + u + uacute + ubreve + ucircumflex + udieresis + ugrave + uhungarumlaut + umacron + uogonek + uring + utilde + v + w + wacute + wcircumflex + wdieresis + wgrave + x + y + yacute + ycircumflex + ydieresis + z + zacute + zcaron + zdotaccent + a.ss01 + aacute.ss01 + abreve.ss01 + acircumflex.ss01 + adieresis.ss01 + agrave.ss01 + amacron.ss01 + aogonek.ss01 + aring.ss01 + atilde.ss01 + ae.ss01 + b.ss01 + d.ss01 + dcaron.ss01 + dcroat.ss01 + e.ss01 + eacute.ss01 + ebreve.ss01 + ecaron.ss01 + ecircumflex.ss01 + edieresis.ss01 + edotaccent.ss01 + egrave.ss01 + emacron.ss01 + eogonek.ss01 + f.ss01 + g.ss01 + gacute.ss01 + gbreve.ss01 + gcircumflex.ss01 + gcommaaccent.ss01 + gdotaccent.ss01 + l.ss01 + lacute.ss01 + lcaron.ss01 + lcommaaccent.ss01 + ldot.ss01 + lslash.ss01 + oe.ss01 + p.ss01 + q.ss01 + germandbls.ss01 + t.ss01 + tbar.ss01 + tcaron.ss01 + tcedilla.ss01 + tcommaaccent.ss01 + f_f + f_f_i + f_f_l + fi + fl + f_f.ss01 + f_f_i.ss01 + f_f_l.ss01 + fi.ss01 + fl.ss01 + ordfeminine + ordmasculine + A-cy + Be-cy + Ve-cy + Ge-cy + Gheupturn-cy + De-cy + Ie-cy + Io-cy + Zhe-cy + Ze-cy + Ii-cy + Iishort-cy + Ka-cy + El-cy + Em-cy + En-cy + O-cy + Pe-cy + Er-cy + Es-cy + Te-cy + U-cy + Ushort-cy + Ef-cy + Ha-cy + Che-cy + Tse-cy + Sha-cy + Shcha-cy + Softsign-cy + Hardsign-cy + Yeru-cy + Dze-cy + E-cy + Ereversed-cy + I-cy + Yi-cy + Iu-cy + Ia-cy + A-cy.ss01 + Zhe-cy.ss01 + Ka-cy.ss01 + Em-cy.ss01 + U-cy.ss01 + Ushort-cy.ss01 + Ha-cy.ss01 + Ia-cy.ss01 + a-cy + be-cy + ve-cy + ge-cy + gheupturn-cy + de-cy + ie-cy + io-cy + zhe-cy + ze-cy + ii-cy + iishort-cy + ka-cy + el-cy + em-cy + en-cy + o-cy + pe-cy + er-cy + es-cy + te-cy + u-cy + ushort-cy + ef-cy + ha-cy + che-cy + tse-cy + sha-cy + shcha-cy + softsign-cy + hardsign-cy + yeru-cy + dze-cy + e-cy + ereversed-cy + i-cy + yi-cy + je-cy + iu-cy + ia-cy + a-cy.ss01 + ve-cy.ss01 + de-cy.ss01 + ie-cy.ss01 + io-cy.ss01 + el-cy.ss01 + er-cy.ss01 + te-cy.ss01 + softsign-cy.ss01 + hardsign-cy.ss01 + yeru-cy.ss01 + ia-cy.ss01 + zero + one + two + three + four + five + six + seven + eight + nine + zero.osf + one.osf + two.osf + three.osf + four.osf + five.osf + six.osf + seven.osf + nine.osf + zero.tf + one.tf + two.tf + three.tf + four.tf + five.tf + six.tf + seven.tf + eight.tf + nine.tf + onesuperior + twosuperior + threesuperior + period + comma + colon + semicolon + ellipsis + exclam + exclamdown + question + questiondown + periodcentered + bullet + asterisk + numbersign + slash + backslash + parenleft + parenright + braceleft + braceright + bracketleft + bracketright + hyphen + endash + emdash + underscore + quotesinglbase + quotedblbase + quotedblleft + quotedblright + quoteleft + quoteright + guillemetleft + guillemetright + guilsinglleft + guilsinglright + quotedbl + quotesingle + cent + currency + dollar + euro + hryvnia + sterling + yen + yen.ss01 + plus + minus + multiply + divide + equal + greater + less + asciitilde + asciicircum + percent + perthousand + at + ampersand + paragraph + section + copyright + registered + trademark + degree + bar + brokenbar + dagger + daggerdbl + numero + estimated + numero.ss01 + commaaccentcomb + dieresis + dotaccent + grave + acute + hungarumlaut + circumflex + caron + breve + ring + tilde + macron + cedilla + ogonek + dieresis.case + dotaccent.case + grave.case + acute.case + hungarumlaut.case + circumflex.case + caron.case + breve.case + ring.case + tilde.case + macron.case + commaaccentcomb.salt + caron.salt + uniE01A + _perc-circule + eight.osf + ruble + Ljecyr + Njecyr + Jecyr + dzhecyr + Dzhecyr + ljecyr + njecyr + Tshecyr + Djecyr + tshecyr + djecyr + tenge + ljecyr.ss01 + njecyr.ss01 + dramsignarmn + gjecyr + kjecyr + neptune + florin + plusminus + fraction + onequarter + onehalf + threequarters + mu + lessequal + greaterequal + minute + second + Schwacyr + schwacyr + Gestrokecyr + gestrokecyr + Obarcyr + obarcyr + Entailcyr + entailcyr + Katailcyr + katailcyr + Ustraightstrokecyr + ustraightstrokecyr + Shhacyr + shhacyr + ustraightcyr + Ustraightcyr + partialdiff + increment + integral + summation + radical + infinity + Omega + pi + longs + Delta + product + notequal + proportional + approxequal + Schwa + eturned + Oslashacute + oslashacute + AEacute + aeacute + uni2010 + Aiecyr + aiecyr + uni1EBC + uni1EBD + Acaron + acaron + Gjecyr + Kjecyr + uniE000 + uniE000.alt + arrowleft + arrowup + arrowright + arrowdown + arrowdown.ss01 + arrowleft.ss01 + arrowright.ss01 + arrowup.ss01 + yi-cy.alt + Omegacyr + omegacyr + Yatcyr + yatcyr + Eiotifiedcyr + eiotifiedcyr + Ksicyr + ksicyr + Shwe-cy + Fitacyr + fitacyr + Koppacyr + Iegravecyr + Igravecyr + iegravecyr + igravecyr + Zhebrevecyr + zhebrevecyr + Abrevecyr + abrevecyr + Adieresiscyr + adieresiscyr + Iebrevecyr + iebrevecyr + Schwadieresiscyr + schwadieresiscyr + Zhedieresiscyr + zhedieresiscyr + Zedieresiscyr + zedieresiscyr + Imacroncyr + imacroncyr + Idieresiscyr + idieresiscyr + Odieresiscyr + odieresiscyr + Umacroncyr + umacroncyr + Udieresiscyr + udieresiscyr + Uacutedblcyr + uacutedblcyr + Dekomicyr + dekomicyr + Wecyr + wecyr + Qacyr + qacyr + Ylongdieresiscyr + ylongdieresiscyr + Chedieresiscyr + chedieresiscyr + Obardieresiscyr + obardieresiscyr + Ereverseddieresiscyr + ereverseddieresiscyr + Zhetailcyr + zhetailcyr + Tetailcyr + tetailcyr + Xatailcyr + xatailcyr + Chetailcyr + chetailcyr + Chekhakascyr + chekhakascyr + Getailcyr + getailcyr + Petailcyr + petailcyr + Eltailcyr + eltailcyr + Shhatailcyr + shhatailcyr + Palochkacyr + palochkacyr + Dzzhecyr + Yaecyr + yaecyr + Tetsecyr + tetsecyr + Engecyr + engecyr + kabashkcyr + Kabashkcyr + semisoftcyr + Semisoftcyr + Reversedzecyr + reversedzecyr + Elmiddlehookcyr + Enmiddlehookcyr + Enhookcyr + Kahookcyr + Pehookcyr + Gehookcyr + parenleft.case + parenright.case + hyphen.case + bracketleft.case + bracketright.case + braceleft.case + braceright.case + exclamdown.case + guillemetleft.case + guillemetright.case + endash.case + emdash.case + bullet.case + guilsinglleft.case + guilsinglright.case + arrowleft.case + arrowup.case + arrowright.case + arrowdown.case + arrowdown.ss01.case + arrowleft.ss01.case + arrowright.ss01.case + arrowup.ss01.case + Enhookleftcyr + enhookleftcyr + enhookcyr + gehookcyr + pehookcyr + kahookcyr + enmiddlehookcyr + elmiddlehookcyr + kastrokecyr + Kastrokecyr + Chevertcyr + chevertcyr + Kaverticalstrokecyr + kaverticalstrokecyr + Elhookcyr + elhookcyr + zetailcyr + Zetailcyr + Estailcyr + estailcyr + Haabkhcyr + koppacyr + ukcyr + Ukcyr + omegaroundcyr + Izhitsagravedblcyr + izhitsagravedblcyr + izhitsacyr + Izhitsacyr + Yusbigcyr + yusbigcyr + Psicyr + psicyr + Omegaroundcyr + Yuslittlecyr + yuslittlecyr + yuslittleiotifiedcyr + Yuslittleiotifiedcyr + Yusbigiotifiedcyr + yusbigiotifiedcyr + Omegatitlocyr + omegatitlocyr + Otcyr + otcyr + uni2DEE + uni2DEE.case + ertickcyr + Ertickcyr + Lhacyr + lhacyr + ensharptailcyr + Ensharptailcyr + emsharptailcyr + elsharptailcyr + ishortsharptailcyr + Ishortsharptailcyr + Emsharptailcyr + Elsharptailcyr + njekomicyr + Njekomicyr + ljekomicyr + tjekomicyr + djekomicyr + zjekomicyr + colon.case + questiondown.case + slash.case + semicolon.case + backslash.case + bar.case + brokenbar.case + dzjekomicyr + Cheabkhcyr + cheabkhcyr + cheabkhtailcyr + sjekomicyr + Sjekomicyr + Ljekomicyr + Tjekomicyr + Djekomicyr + kaaleutcyr + dzzhecyr + haabkhcyr + Dchecyr + dchecyr + dzeabkhcyr + Dzeabkhcyr + palatcombcyr + Cheabkhtailcyr + Dzjekomicyr + Zjekomicyr + rhacyr + Rhacyr + Kaaleutcyr + thousandscyr + titlocombcyr + pokrytiecombcyr + hundredthousandscombcyr + millionscombcyr + Gehookstrokecyr + gehookstrokecyr + Hahookcyr + hahookcyr + Hastrokecyr + uni1C80 + uni1C81 + uni1C82 + uni1C83 + uni1C84 + uni1C85 + uni1C86 + uni1C87 + Zemlya-cy + zemlya-cy + Dzelo-cy + dzelo-cy + DzeReversed-cy + dzeReversed-cy + Iota-cy + iota-cy + Djerv-cy + djerv-cy + UkMonograph-cy + ukMonograph-cy + OmegaBroad-cy + omegaBroad-cy + YerNeutral-cy + yerNeutral-cy + YeruBackYer-cy + yeruBackyer-cy + YatIotified-cy + yatIotified-cy + YuReversed-cy + yuReversed-cy + IotifiedA-cy + iotifieda-cy + YusClosedlittle-cy + yusClosedlittle-cy + YusBlended-cy + yusBlended-cy + YusiotifiedClosedLittle-cy + yusiotifiedClosedLittle-cy + Yn-cy + yn-cy + TseReversed-cy + tseReversed-cy + DeSoft-cy + deSoft-cy + ElSoft-cy + elSoft-cy + EmSoft-cy + emSoft-cy + OMonocular-cy + oMonocular-cy + OBinocular-cy + oBinocular-cy + ODoubleMonocular-cy + oDoubleMonocular-cy + omultiocular-cy + vzmetcomb-cy + tenmillionscomb-cy + hundredmillionscomb-cy + thousandmillionscomb-cy + Dwe-cy + dwe-cy + Dzwe-cy + dzwe-cy + Zhwe-cy + zhwe-cy + Cche-cy + cche-cy + Dzze-cy + dzze-cy + TeWithMiddleHook-cy + tewithmiddlehook-cy + Twe-cy + twe-cy + Tswe-cy + tswe-cy + Tsse-cy + tsse-cy + Tche-cy + tche-cy + Hwe-cy + hwe-cy + shwe-cy + DoubleO-cy + doubleo-cy + CrossedO-cy + crossedo-cy + hastrokecyr + uniF43A + A-cy.accented + E-cy.accented + Ii-cy.accented + O-cy.accented + U-cy.accented + Yeru-cy.accented + Ereversed-cy.accented + Iu-cy.accented + Ia-cy.accented + Io-cy.accented + uniF498 + uniF49A + uniF49C + uniF49E + uniF4C6 + uniF4CC + uniF4D2 + uniF4D4 + uniF4D6 + uniF4D8 + Zetailcyr.BSH + Estailcyr.CHU + uniF50E + uniF510 + uniF512 + uniF514 + uniF516 + uniF518 + uniF51A + uniF51C + uniF51E + Yeru-cymacron + uniF522 + uniF524 + uniF526 + uniF528 + uniF52A + uniF52C + uniF52E + uniF532 + uniF536 + uniF538 + Gestrokecyr.BSH + Estailcyr.BSH + uniF830 + uniF833 + uniF839 + uniF86F + uniF872 + uniF875 + uniF878 + uniF87B + uniF87E + apostrophemod + colontriangularmod + uni1C88 + uniF87F + uniF87C + uniF879 + uniF876 + uniF873 + uniF870 + uniF83A + uniF834 + uniF831 + zetailcyr.BSH + estailcyr.CHU + uniF50F + uniF511 + uniF513 + uniF515 + uniF517 + uniF519 + uniF51B + uniF51D + uniF51F + uniF521 + uniF523 + uniF525 + uniF527 + uniF529 + uniF52B + uniF52D + uniF52F + uniF533 + uniF537 + uniF539 + gestrokecyr.BSH + estailcyr.BSH + uniF499 + uniF49B + uniF49D + uniF49F + uniF4C7 + uniF4CD + uniF4D3 + uniF4D5 + uniF4D7 + uniF4D9 + a-cy.accented + e-cy.accented + ii-cy.accented + o-cy.accented + u-cy.accented + yeru-cy.accented + ereversed-cy.accented + iu-cy.accented + ia-cy.accented + io-cy.accented + uniF43B + at.case + dieresis.alt + dieresiscase.alt + e-cy.hist + omultiocular-cy.alt + iotifieda-cy.hist + be-cy.SRB + ve-cy.BGR + ge-cy.BGR + de-cy.BGR + zhe-cy.BGR + ze-cy.BGR + ii-cy.BGR + iishort-cy.BGR + ka-cy.BGR + el-cy.BGR + pe-cy.BGR + te-cy.BGR + tse-cy.BGR + sha-cy.BGR + shcha-cy.BGR + hardsign-cy.BGR + softsign-cy.BGR + iu-cy.BGR + yatcyr.BGR + eiotifiedcyr.BGR + yusbigiotifiedcyr.BGR + iotifieda-cy.BGR + De-cy.BGR + El-cy.BGR + Ef-cy.BGR + dieresisacute + uniF45D + uniF45E + uniF45F + uniF475 + uniF476 + uniF477 + uniF478 + uniF479 + Elsmallcyr + enclosingcirclecomb + ge-cy.SRB + pe-cy.SRB + te-cy.SRB + gjecyr.SRB + macron-fwd + macron-fwd.alt + macronacute.SRB + iegravecyr.SRB + igravecyr.SRB + flower + knightwhite + knightblack + floretteblack + florettewhite + floretteoutlinedpetalledblackeight + rookblack + bishopblack + leo + heartwhite + diamondwhite-misc + spadewhite + clubwhite + bishopwhite + heart + crossedswords + virgo + thousandscyr.dnom + bracketangleleft + bracketangleright + bracketangleleft.case + bracketangleright.case + + + diff --git a/sources/FixelDisplay-Thin.ufo/metainfo.plist b/sources/FixelDisplay-Thin.ufo/metainfo.plist new file mode 100644 index 00000000..10582b84 --- /dev/null +++ b/sources/FixelDisplay-Thin.ufo/metainfo.plist @@ -0,0 +1,10 @@ + + + + + creator + com.fontlab.ufoLib + formatVersion + 3 + + diff --git a/sources/FixelText-Black.ufo/features.fea b/sources/FixelText-Black.ufo/features.fea new file mode 100644 index 00000000..302ade93 --- /dev/null +++ b/sources/FixelText-Black.ufo/features.fea @@ -0,0 +1,573 @@ +#> classes +#/> otclasses +@ss01_def = [A-cy A AE Aacute Abreve Acircumflex Adieresis Agrave Amacron Aogonek Aring Atilde Em-cy Eng G Gacute Gbreve Gcircumflex Gcommaaccent Gdotaccent Ha-cy Ia-cy J Jcircumflex K Ka-cy Kcommaaccent M N Nacute Ncaron Ncommaaccent Ntilde Q U-cy Ushort-cy V W Wacute Wcircumflex Wdieresis Wgrave X Y Yacute Ycircumflex Ydieresis Z Zacute Zcaron Zdotaccent Zhe-cy a-cy a aacute abreve acircumflex adieresis ae agrave amacron aogonek aring arrowdown arrowdown.case arrowleft arrowleft.case arrowright arrowright.case arrowup arrowup.case atilde b d dcaron dcroat de-cy e eacute ebreve ecaron ecircumflex edieresis edotaccent egrave el-cy emacron eogonek er-cy f f_f f_f_i f_f_l fi fl g gacute gbreve gcircumflex gcommaaccent gdotaccent germandbls hardsign-cy ia-cy ie-cy io-cy l lacute lcaron lcommaaccent ldot ljecyr lslash njecyr numero oe p q softsign-cy t tbar tcaron tcedilla tcommaaccent te-cy ve-cy yen yeru-cy]; +@ss01 = [A-cy.ss01 A.ss01 AE.ss01 Aacute.ss01 Abreve.ss01 Acircumflex.ss01 Adieresis.ss01 Agrave.ss01 Amacron.ss01 Aogonek.ss01 Aring.ss01 Atilde.ss01 Em-cy.ss01 Eng.ss01 G.ss01 Gacute.ss01 Gbreve.ss01 Gcircumflex.ss01 Gcommaaccent.ss01 Gdotaccent.ss01 Ha-cy.ss01 Ia-cy.ss01 J.ss01 Jcircumflex.ss01 K.ss01 Ka-cy.ss01 Kcommaaccent.ss01 M.ss01 N.ss01 Nacute.ss01 Ncaron.ss01 Ncommaaccent.ss01 Ntilde.ss01 Q.ss01 U-cy.ss01 Ushort-cy.ss01 V.ss01 W.ss01 Wacute.ss01 Wcircumflex.ss01 Wdieresis.ss01 Wgrave.ss01 X.ss01 Y.ss01 Yacute.ss01 Ycircumflex.ss01 Ydieresis.ss01 Z.ss01 Zacute.ss01 Zcaron.ss01 Zdotaccent.ss01 Zhe-cy.ss01 a-cy.ss01 a.ss01 aacute.ss01 abreve.ss01 acircumflex.ss01 adieresis.ss01 ae.ss01 agrave.ss01 amacron.ss01 aogonek.ss01 aring.ss01 arrowdown.ss01 arrowdown.ss01.case arrowleft.ss01 arrowleft.ss01.case arrowright.ss01 arrowright.ss01.case arrowup.ss01 arrowup.ss01.case atilde.ss01 b.ss01 d.ss01 dcaron.ss01 dcroat.ss01 de-cy.ss01 e.ss01 eacute.ss01 ebreve.ss01 ecaron.ss01 ecircumflex.ss01 edieresis.ss01 edotaccent.ss01 egrave.ss01 el-cy.ss01 emacron.ss01 eogonek.ss01 er-cy.ss01 f.ss01 f_f.ss01 f_f_i.ss01 f_f_l.ss01 fi.ss01 fl.ss01 g.ss01 gacute.ss01 gbreve.ss01 gcircumflex.ss01 gcommaaccent.ss01 gdotaccent.ss01 germandbls.ss01 hardsign-cy.ss01 ia-cy.ss01 ie-cy.ss01 io-cy.ss01 l.ss01 lacute.ss01 lcaron.ss01 lcommaaccent.ss01 ldot.ss01 ljecyr.ss01 lslash.ss01 njecyr.ss01 numero.ss01 oe.ss01 p.ss01 q.ss01 softsign-cy.ss01 t.ss01 tbar.ss01 tcaron.ss01 tcedilla.ss01 tcommaaccent.ss01 te-cy.ss01 ve-cy.ss01 yen.ss01 yeru-cy.ss01]; +@case = [arrowdown.case arrowdown.ss01.case arrowleft.case arrowleft.ss01.case arrowright.case arrowright.ss01.case arrowup.case arrowup.ss01.case backslash.case bar.case braceleft.case braceright.case bracketleft.case bracketright.case brokenbar.case bullet.case colon.case emdash.case endash.case exclamdown.case guillemetleft.case guillemetright.case guilsinglleft.case guilsinglright.case hyphen.case parenleft.case parenright.case questiondown.case semicolon.case at.case bracketangleleft.case bracketangleright.case slash.case]; +@case_def = [arrowdown arrowdown.ss01 arrowleft arrowleft.ss01 arrowright arrowright.ss01 arrowup arrowup.ss01 backslash bar braceleft braceright bracketleft bracketright brokenbar bullet colon emdash endash exclamdown guillemetleft guillemetright guilsinglleft guilsinglright hyphen parenleft parenright questiondown semicolon at bracketangleleft bracketangleright slash]; +@cpsp = [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 Agrave Aacute Acircumflex Atilde Adieresis Aring AE Ccedilla Egrave Eacute Ecircumflex Edieresis Igrave Iacute Icircumflex Idieresis Eth Ntilde Ograve Oacute Ocircumflex Otilde Odieresis Oslash Ugrave Uacute Ucircumflex Udieresis Yacute Thorn Amacron Abreve Aogonek Cacute Ccircumflex Cdotaccent Ccaron Dcaron Dcroat Emacron Ebreve Edotaccent Eogonek Ecaron Gcircumflex Gbreve Gdotaccent Gcommaaccent Hcircumflex Hbar Itilde Imacron Ibreve Iogonek Idotaccent IJ Jcircumflex Kcommaaccent Lacute Lcommaaccent Lcaron Ldot Lslash Nacute Ncommaaccent Ncaron Eng Omacron Obreve Ohungarumlaut OE Racute Rcommaaccent Rcaron Sacute Scircumflex Scedilla Scaron Tcedilla Tcaron Tbar Utilde Umacron Ubreve Uring Uhungarumlaut Uogonek Wcircumflex Ycircumflex Ydieresis Zacute Zdotaccent Zcaron Schwa Acaron Gacute AEacute Oslashacute Scommaaccent Tcommaaccent Delta Omega Iegravecyr uniF43A A-cy.accented E-cy.accented Ii-cy.accented O-cy.accented U-cy.accented Yeru-cy.accented Ereversed-cy.accented Iu-cy.accented Ia-cy.accented Io-cy.accented uniF498 uniF49A uniF49C uniF49E uniF4C6 uniF4CC uniF4D2 uniF4D4 uniF4D6 uniF4D8 uniF50E uniF510 uniF512 uniF514 uniF516 uniF518 uniF51A uniF51C uniF51E Yeru-cymacron uniF522 uniF524 uniF526 uniF528 uniF52A uniF52C uniF52E uniF532 uniF536 uniF538 uniF830 uniF833 uniF839 uniF86F uniF872 uniF875 uniF878 uniF87B uniF87E Io-cy Djecyr Gjecyr E-cy Dze-cy I-cy Yi-cy Jecyr Ljecyr Njecyr Tshecyr Kjecyr Igravecyr Ushort-cy Dzhecyr A-cy Be-cy Ve-cy Ge-cy De-cy Ie-cy Zhe-cy Ze-cy Ii-cy Iishort-cy Ka-cy El-cy Em-cy En-cy O-cy Pe-cy Er-cy Es-cy Te-cy U-cy Ef-cy Ha-cy Tse-cy Che-cy Sha-cy Shcha-cy Hardsign-cy Yeru-cy Softsign-cy Ereversed-cy Iu-cy Ia-cy Omegacyr Yatcyr Eiotifiedcyr Yuslittlecyr Yuslittleiotifiedcyr Yusbigcyr Yusbigiotifiedcyr Ksicyr Psicyr Fitacyr Izhitsacyr Izhitsagravedblcyr Ukcyr Omegaroundcyr Omegatitlocyr Otcyr Koppacyr Ishortsharptailcyr Semisoftcyr Ertickcyr Gheupturn-cy Gestrokecyr Gehookcyr Zhetailcyr Zetailcyr Katailcyr Kaverticalstrokecyr Kastrokecyr Kabashkcyr Entailcyr Engecyr Pehookcyr Haabkhcyr Estailcyr Tetailcyr Ustraightcyr Ustraightstrokecyr Xatailcyr Tetsecyr Chetailcyr Chevertcyr Shhacyr Cheabkhcyr Cheabkhtailcyr Palochkacyr Zhebrevecyr Kahookcyr Elsharptailcyr Enhookcyr Ensharptailcyr Chekhakascyr Emsharptailcyr Abrevecyr Adieresiscyr Aiecyr Iebrevecyr Schwacyr Schwadieresiscyr Zhedieresiscyr Zedieresiscyr Dzeabkhcyr Imacroncyr Idieresiscyr Odieresiscyr Obarcyr Obardieresiscyr Ereverseddieresiscyr Umacroncyr Udieresiscyr Uacutedblcyr Chedieresiscyr Getailcyr Ylongdieresiscyr Gehookstrokecyr Hahookcyr Hastrokecyr Dekomicyr Djekomicyr Zjekomicyr Dzjekomicyr Ljekomicyr Njekomicyr Sjekomicyr Tjekomicyr Reversedzecyr Elhookcyr Lhacyr Rhacyr Yaecyr Qacyr Wecyr Kaaleutcyr Elmiddlehookcyr Enmiddlehookcyr Petailcyr Shhatailcyr Enhookleftcyr Dzzhecyr Dchecyr Eltailcyr Wgrave Wacute Wdieresis Germandbls uni1EBC Zemlya-cy Dzelo-cy DzeReversed-cy Iota-cy Djerv-cy UkMonograph-cy OmegaBroad-cy YerNeutral-cy YeruBackYer-cy YatIotified-cy YuReversed-cy IotifiedA-cy YusClosedlittle-cy YusBlended-cy YusiotifiedClosedLittle-cy Yn-cy TseReversed-cy DeSoft-cy ElSoft-cy EmSoft-cy OMonocular-cy OBinocular-cy ODoubleMonocular-cy Dwe-cy Dzwe-cy Zhwe-cy Cche-cy Dzze-cy TeWithMiddleHook-cy Twe-cy Tswe-cy Tsse-cy Tche-cy Hwe-cy Shwe-cy DoubleO-cy CrossedO-cy A-cy.ss01 A.ss01 AE.ss01 Aacute.ss01 Abreve.ss01 Acircumflex.ss01 Adieresis.ss01 Agrave.ss01 Amacron.ss01 Aogonek.ss01 Aring.ss01 Atilde.ss01 Em-cy.ss01 Eng.ss01 G.ss01 Gacute.ss01 Gbreve.ss01 Gcircumflex.ss01 Gcommaaccent.ss01 Gdotaccent.ss01 Ha-cy.ss01 Ia-cy.ss01 J.ss01 Jcircumflex.ss01 K.ss01 Ka-cy.ss01 Kcommaaccent.ss01 M.ss01 N.ss01 Nacute.ss01 Ncaron.ss01 Ncommaaccent.ss01 Ntilde.ss01 Q.ss01 U-cy.ss01 Ushort-cy.ss01 V.ss01 W.ss01 Wacute.ss01 Wcircumflex.ss01 Wdieresis.ss01 Wgrave.ss01 X.ss01 Y.ss01 Yacute.ss01 Ycircumflex.ss01 Ydieresis.ss01 Z.ss01 Zacute.ss01 Zcaron.ss01 Zdotaccent.ss01 Zetailcyr.BSH Gestrokecyr.BSH Estailcyr.BSH Estailcyr.CHU Zhe-cy.ss01]; +@locl_BGR = [De-cy.BGR Ef-cy.BGR El-cy.BGR de-cy.BGR eiotifiedcyr.BGR el-cy.BGR ge-cy.BGR hardsign-cy.BGR ii-cy.BGR iishort-cy.BGR iotifieda-cy.BGR iu-cy.BGR ka-cy.BGR pe-cy.BGR sha-cy.BGR shcha-cy.BGR softsign-cy.BGR te-cy.BGR tse-cy.BGR ve-cy.BGR yatcyr.BGR yusbigiotifiedcyr.BGR ze-cy.BGR zhe-cy.BGR]; +@locl_def = [De-cy Ef-cy El-cy de-cy eiotifiedcyr el-cy ge-cy hardsign-cy ii-cy iishort-cy iotifieda-cy iu-cy ka-cy pe-cy sha-cy shcha-cy softsign-cy te-cy tse-cy ve-cy yatcyr yusbigiotifiedcyr ze-cy zhe-cy]; +@locl.SRB = [be-cy.SRB iegravecyr.SRB igravecyr.SRB]; +@loclSRB_def = [be-cy iegravecyr igravecyr]; +@accent = [grave acute.case grave.case acute]; +@pics = [neptune leo virgo bishopwhite knightwhite rookblack bishopblack knightblack heartwhite diamondwhite-misc spadewhite heart clubwhite crossedswords flower floretteblack florettewhite floretteoutlinedpetalledblackeight]; +@pics_def = [A B C D E F G H I J K L M N O P Q R]; +#/< otclasses + +#/> tags +@tag.omultiocular-cy.alt = [omultiocular-cy]; +@tag.yi-cy_yi-cy.alt = [uniE000]; +#/< tags +#< classes + +# automatic +@Uppercase = [ A Aacute Abreve Acircumflex Adieresis Agrave Amacron Aogonek Aring Atilde AE B C Cacute Ccaron Ccedilla Ccircumflex Cdotaccent D Eth Dcaron Dcroat E Eacute Ebreve Ecaron Ecircumflex Edieresis Edotaccent Egrave Emacron Eogonek F G Gacute Gbreve Gcircumflex Gcommaaccent Gdotaccent H Hbar Hcircumflex I IJ Iacute Ibreve Icircumflex Idieresis Idotaccent Igrave Imacron Iogonek Itilde J Jcircumflex K Kcommaaccent L Lacute Lcaron Lcommaaccent Ldot Lslash M N Nacute Ncaron Ncommaaccent Eng Ntilde O Oacute Obreve Ocircumflex Odieresis Ograve Ohungarumlaut Omacron Oslash Otilde OE P Thorn Q R Racute Rcaron Rcommaaccent S Sacute Scaron Scedilla Scircumflex Scommaaccent Germandbls T Tbar Tcaron Tcedilla Tcommaaccent U Uacute Ubreve Ucircumflex Udieresis Ugrave Uhungarumlaut Umacron Uogonek Uring Utilde V W Wacute Wcircumflex Wdieresis Wgrave X Y Yacute Ycircumflex Ydieresis Z Zacute Zcaron Zdotaccent A.ss01 Aacute.ss01 Abreve.ss01 Acircumflex.ss01 Adieresis.ss01 Agrave.ss01 Amacron.ss01 Aogonek.ss01 Aring.ss01 Atilde.ss01 AE.ss01 G.ss01 Gacute.ss01 Gbreve.ss01 Gcircumflex.ss01 Gcommaaccent.ss01 Gdotaccent.ss01 J.ss01 Jcircumflex.ss01 K.ss01 Kcommaaccent.ss01 M.ss01 N.ss01 Nacute.ss01 Ncaron.ss01 Ncommaaccent.ss01 Eng.ss01 Ntilde.ss01 Q.ss01 V.ss01 W.ss01 Wacute.ss01 Wcircumflex.ss01 Wdieresis.ss01 Wgrave.ss01 X.ss01 Y.ss01 Yacute.ss01 Ycircumflex.ss01 Ydieresis.ss01 Z.ss01 Zacute.ss01 Zcaron.ss01 Zdotaccent.ss01 A-cy Be-cy Ve-cy Ge-cy Gheupturn-cy De-cy Ie-cy Io-cy Zhe-cy Ze-cy Ii-cy Iishort-cy Ka-cy El-cy Em-cy En-cy O-cy Pe-cy Er-cy Es-cy Te-cy U-cy Ushort-cy Ef-cy Ha-cy Che-cy Tse-cy Sha-cy Shcha-cy Softsign-cy Hardsign-cy Yeru-cy Dze-cy E-cy Ereversed-cy I-cy Yi-cy Iu-cy Ia-cy A-cy.ss01 Zhe-cy.ss01 Ka-cy.ss01 Em-cy.ss01 U-cy.ss01 Ushort-cy.ss01 Ha-cy.ss01 Ia-cy.ss01 ]; + +# Prefix: Languagesystems +# automatic +languagesystem DFLT dflt; + +languagesystem latn dflt; +languagesystem latn ROM; +languagesystem latn MOL; +languagesystem latn CAT; +languagesystem cyrl dflt; +languagesystem cyrl BGR; +languagesystem cyrl BSH; +languagesystem cyrl CHU; +languagesystem cyrl SRB; +languagesystem cyrl MKD; + +lookup liga_accent { + sub @accent by [grave grave grave grave]; +} liga_accent; +feature aalt { +# Access All Alternates + +#> feature + feature locl; + feature sups; + feature case; + feature lnum; + feature pnum; + feature tnum; + feature onum; + feature salt; + feature ss01; + feature hist; +#< feature +} aalt; +feature ccmp { +# automatic +lookup ccmp_Other_1 { + @Markscomb = [dieresis dotaccent grave acute hungarumlaut circumflex caron breve ring tilde macron]; + @MarkscombCase = [dieresis.case dotaccent.case grave.case acute.case hungarumlaut.case circumflex.case caron.case breve.case ring.case tilde.case macron.case]; + sub @Markscomb @Markscomb' by @MarkscombCase; + sub @cpsp @Markscomb' by @MarkscombCase; +} ccmp_Other_1; + +lookup ccmp_Other_2 { + sub @Markscomb' @MarkscombCase by @MarkscombCase; + sub @MarkscombCase @Markscomb' by @MarkscombCase; +} ccmp_Other_2; +} ccmp; + +feature locl { +# automatic + +script latn; + language ROM; + language MOL; + sub Scedilla by Scommaaccent; + sub scedilla by scommaaccent; + sub Tcedilla by Tcommaaccent; + sub tcedilla by tcommaaccent; + +script latn; + language CAT; + sub l' periodcentered' l by ldot; + sub L' periodcentered' L by Ldot; + +script cyrl; # Cyrillic + language SRB ; # Serbian + + lookup locl_SRB_MCD { + # GSUB lookup 20, type 11 (Single) + sub @loclSRB_def by @locl.SRB; + } locl_SRB_MCD; + + language MKD ; # Serbian + lookup locl_SRB_MCD; + + language BSH ; # Bashkir + sub [Gestrokecyr gestrokecyr Zetailcyr zetailcyr] by [Gestrokecyr.BSH gestrokecyr.BSH Zetailcyr.BSH zetailcyr.BSH]; + sub [Estailcyr estailcyr] by [Estailcyr.BSH estailcyr.BSH]; + + language CHU ; # Chuvash + sub [Estailcyr estailcyr] by [Estailcyr.CHU estailcyr.CHU]; + + language BGR ; # Bulgarian + sub @locl_def by @locl_BGR; + +} locl; + +feature sups { +# Superscript + +#> feature + sub one by onesuperior; + sub three by threesuperior; + sub two by twosuperior; +#< feature +} sups; +feature ordn { +# Ordinals + +#> feature + sub [zero one two three four five six seven eight nine] [A a]' by ordfeminine; + sub [zero one two three four five six seven eight nine] [O o]' by ordmasculine; + sub N o period by numero; +#< feature +} ordn; +feature case { +# Case Sensitive Forms + +#> feature + + sub @case_def by @case; + +#< feature +} case; +feature liga { +# Standard Ligatures + +#> feature +sub f f i by f_f_i; +sub f f l by f_f_l; +sub f f by f_f; +sub f i by fi; +sub f l by fl; +sub yi-cy yi-cy by uniE000; +sub hyphen greater by arrowright; +sub less hyphen by arrowleft; +sub backslash bar slash by arrowdown; +sub slash bar backslash by arrowup; + + lookup accent_2 { + sub E-cy @accent' lookup liga_accent; + sub I-cy @accent' lookup liga_accent; + sub Yi-cy @accent' lookup liga_accent; + sub A-cy @accent' lookup liga_accent; + sub Ie-cy @accent' lookup liga_accent; + sub Ii-cy @accent' lookup liga_accent; + sub O-cy @accent' lookup liga_accent; + sub U-cy @accent' lookup liga_accent; + sub Yeru-cy @accent' lookup liga_accent; + sub Ereversed-cy @accent' lookup liga_accent; + sub Iu-cy @accent' lookup liga_accent; + sub Ia-cy @accent' lookup liga_accent; + sub Io-cy @accent' lookup liga_accent; + sub Yatcyr @accent' lookup liga_accent; + + sub e-cy @accent' lookup liga_accent; + sub i-cy @accent' lookup liga_accent; + sub yi-cy @accent' lookup liga_accent; + sub a-cy @accent' lookup liga_accent; + sub ie-cy @accent' lookup liga_accent; + sub ii-cy @accent' lookup liga_accent; + sub o-cy @accent' lookup liga_accent; + sub u-cy @accent' lookup liga_accent; + sub yeru-cy @accent' lookup liga_accent; + sub ereversed-cy @accent' lookup liga_accent; + sub iu-cy @accent' lookup liga_accent; + sub ia-cy @accent' lookup liga_accent; + sub io-cy @accent' lookup liga_accent; + sub yatcyr @accent' lookup liga_accent; + } accent_2; + + lookup accent_3 { + sub E-cy grave by uniF45D; + sub I-cy grave by uniF45E; + sub Yi-cy grave by uniF45F; + sub A-cy grave by A-cy.accented; + sub Ie-cy grave by E-cy.accented; + sub Ii-cy grave by Ii-cy.accented; + sub O-cy grave by O-cy.accented; + sub U-cy grave by U-cy.accented; + sub Yeru-cy grave by Yeru-cy.accented; + sub Ereversed-cy grave by Ereversed-cy.accented; + sub Iu-cy grave by Iu-cy.accented; + sub Ia-cy grave by Ia-cy.accented; + sub Io-cy grave by Io-cy.accented; + sub Yatcyr grave by uniF478; + + sub e-cy grave by uniF475; + sub i-cy grave by uniF476; + sub yi-cy grave by uniF477; + sub a-cy grave by a-cy.accented; + sub ie-cy grave by e-cy.accented; + sub ii-cy grave by ii-cy.accented; + sub o-cy grave by o-cy.accented; + sub u-cy grave by u-cy.accented; + sub yeru-cy grave by yeru-cy.accented; + sub ereversed-cy grave by ereversed-cy.accented; + sub iu-cy grave by iu-cy.accented; + sub ia-cy grave by ia-cy.accented; + sub io-cy grave by io-cy.accented; + sub yatcyr grave by uniF479; + } accent_3; + +#< feature +} liga; +feature dlig { +# Discretionary Ligatures + +#> feature + +sub M a c P a w l o g o by uniE01A; +sub M P a w l o g o by uniE01A; +sub M P l o g o by uniE01A; +sub M A C P A W L O G O by uniE01A; +sub m a c p a w l o g o by uniE01A; +sub t r i d e n t by neptune; +sub t r y z u b by neptune; +sub u k r a i n e s i g n by neptune; +sub T R I D E N T by neptune; +sub T R Y Z U B by neptune; +sub U k r a i n e S i g n by neptune; +sub T r y z u b by neptune; +sub T r i d e n t by neptune; +sub Te-cy Er-cy Ii-cy Ze-cy U-cy Be-cy by neptune; + +#< feature +} dlig; +feature lnum { +# Lining Figures + +#> feature + sub eight.osf by eight.tf; + sub eight by eight.tf; + sub five.osf by five.tf; + sub five by five.tf; + sub four.osf by four.tf; + sub four by four.tf; + sub nine.osf by nine.tf; + sub nine by nine.tf; + sub one.osf by one.tf; + sub one by one.tf; + sub seven.osf by seven.tf; + sub seven by seven.tf; + sub six.osf by six.tf; + sub six by six.tf; + sub three.osf by three.tf; + sub three by three.tf; + sub two.osf by two.tf; + sub two by two.tf; + sub zero.osf by zero.tf; + sub zero by zero.tf; +#< feature +} lnum; +feature pnum { +# Proportional Figures + +#> feature + sub eight.tf by eight.osf; + sub eight by eight.osf; + sub five.tf by five.osf; + sub five by five.osf; + sub four.tf by four.osf; + sub four by four.osf; + sub nine.tf by nine.osf; + sub nine by nine.osf; + sub one.tf by one.osf; + sub one by one.osf; + sub seven.tf by seven.osf; + sub seven by seven.osf; + sub six.tf by six.osf; + sub six by six.osf; + sub three.tf by three.osf; + sub three by three.osf; + sub two.tf by two.osf; + sub two by two.osf; + sub zero.tf by zero.osf; + sub zero by zero.osf; +#< feature +} pnum; +feature tnum { +# Tabular Figures + +#> feature + sub eight by eight.tf; + sub eight.osf by eight.tf; + sub five by five.tf; + sub five.osf by five.tf; + sub four by four.tf; + sub four.osf by four.tf; + sub nine by nine.tf; + sub nine.osf by nine.tf; + sub one by one.tf; + sub one.osf by one.tf; + sub seven by seven.tf; + sub seven.osf by seven.tf; + sub six by six.tf; + sub six.osf by six.tf; + sub three by three.tf; + sub three.osf by three.tf; + sub two by two.tf; + sub two.osf by two.tf; + sub zero by zero.tf; + sub zero.osf by zero.tf; +#< feature +} tnum; +feature onum { +# Oldstyle Figures + +#> feature + sub eight by eight.osf; + sub eight.tf by eight.osf; + sub five by five.osf; + sub five.tf by five.osf; + sub four by four.osf; + sub four.tf by four.osf; + sub nine by nine.osf; + sub nine.tf by nine.osf; + sub one by one.osf; + sub one.tf by one.osf; + sub seven by seven.osf; + sub seven.tf by seven.osf; + sub six by six.osf; + sub six.tf by six.osf; + sub three by three.osf; + sub three.tf by three.osf; + sub two by two.osf; + sub two.tf by two.osf; + sub zero by zero.osf; + sub zero.tf by zero.osf; +#< feature +} onum; +feature salt { +# Stylistic Alternates + +#> feature + sub A from [A.ss01]; + sub A-cy from [A-cy.ss01]; + sub AE from [AE.ss01]; + sub Aacute from [Aacute.ss01]; + sub Abreve from [Abreve.ss01]; + sub Acircumflex from [Acircumflex.ss01]; + sub Adieresis from [Adieresis.ss01]; + sub Agrave from [Agrave.ss01]; + sub Amacron from [Amacron.ss01]; + sub Aogonek from [Aogonek.ss01]; + sub Aring from [Aring.ss01]; + sub Atilde from [Atilde.ss01]; + sub Em-cy from [Em-cy.ss01]; + sub Eng from [Eng.ss01]; + sub G from [G.ss01]; + sub Gacute from [Gacute.ss01]; + sub Gbreve from [Gbreve.ss01]; + sub Gcircumflex from [Gcircumflex.ss01]; + sub Gcommaaccent from [Gcommaaccent.ss01]; + sub Gdotaccent from [Gdotaccent.ss01]; + sub Ha-cy from [Ha-cy.ss01]; + sub Ia-cy from [Ia-cy.ss01]; + sub J from [J.ss01]; + sub Jcircumflex from [Jcircumflex.ss01]; + sub K from [K.ss01]; + sub Ka-cy from [Ka-cy.ss01]; + sub Kcommaaccent from [Kcommaaccent.ss01]; + sub M from [M.ss01]; + sub N from [N.ss01]; + sub Nacute from [Nacute.ss01]; + sub Ncaron from [Ncaron.ss01]; + sub Ncommaaccent from [Ncommaaccent.ss01]; + sub Ntilde from [Ntilde.ss01]; + sub Q from [Q.ss01]; + sub U-cy from [U-cy.ss01]; + sub Ushort-cy from [Ushort-cy.ss01]; + sub V from [V.ss01]; + sub W from [W.ss01]; + sub Wacute from [Wacute.ss01]; + sub Wcircumflex from [Wcircumflex.ss01]; + sub Wdieresis from [Wdieresis.ss01]; + sub Wgrave from [Wgrave.ss01]; + sub X from [X.ss01]; + sub Y from [Y.ss01]; + sub Yacute from [Yacute.ss01]; + sub Ycircumflex from [Ycircumflex.ss01]; + sub Ydieresis from [Ydieresis.ss01]; + sub Z from [Z.ss01]; + sub Zacute from [Zacute.ss01]; + sub Zcaron from [Zcaron.ss01]; + sub Zdotaccent from [Zdotaccent.ss01]; + sub Zhe-cy from [Zhe-cy.ss01]; + sub a from [a.ss01]; + sub a-cy from [a-cy.ss01]; + sub aacute from [aacute.ss01]; + sub abreve from [abreve.ss01]; + sub acircumflex from [acircumflex.ss01]; + sub adieresis from [adieresis.ss01]; + sub ae from [ae.ss01]; + sub agrave from [agrave.ss01]; + sub amacron from [amacron.ss01]; + sub aogonek from [aogonek.ss01]; + sub aring from [aring.ss01]; + sub arrowdown from [arrowdown.ss01]; + sub arrowleft from [arrowleft.ss01]; + sub arrowright from [arrowright.ss01]; + sub arrowup from [arrowup.ss01]; + sub atilde from [atilde.ss01]; + sub b from [b.ss01]; + sub caron from [caron.salt]; + sub commaaccentcomb from [commaaccentcomb.salt]; + sub d from [d.ss01]; + sub dcaron from [dcaron.ss01]; + sub dcroat from [dcroat.ss01]; + sub de-cy from [de-cy.ss01]; + sub e from [e.ss01]; + sub eacute from [eacute.ss01]; + sub ebreve from [ebreve.ss01]; + sub ecaron from [ecaron.ss01]; + sub ecircumflex from [ecircumflex.ss01]; + sub edieresis from [edieresis.ss01]; + sub edotaccent from [edotaccent.ss01]; + sub egrave from [egrave.ss01]; + sub el-cy from [el-cy.ss01]; + sub emacron from [emacron.ss01]; + sub eogonek from [eogonek.ss01]; + sub er-cy from [er-cy.ss01]; + sub f from [f.ss01]; + sub f_f from [f_f.ss01]; + sub f_f_i from [f_f_i.ss01]; + sub f_f_l from [f_f_l.ss01]; + sub fi from [fi.ss01]; + sub fl from [fl.ss01]; + sub g from [g.ss01]; + sub gacute from [gacute.ss01]; + sub gbreve from [gbreve.ss01]; + sub gcircumflex from [gcircumflex.ss01]; + sub gcommaaccent from [gcommaaccent.ss01]; + sub gdotaccent from [gdotaccent.ss01]; + sub germandbls from [germandbls.ss01]; + sub hardsign-cy from [hardsign-cy.ss01]; + sub ia-cy from [ia-cy.ss01]; + sub ie-cy from [ie-cy.ss01]; + sub io-cy from [io-cy.ss01]; + sub l from [l.ss01]; + sub lacute from [lacute.ss01]; + sub lcaron from [lcaron.ss01]; + sub lcommaaccent from [lcommaaccent.ss01]; + sub ldot from [ldot.ss01]; + sub ljecyr from [ljecyr.ss01]; + sub lslash from [lslash.ss01]; + sub njecyr from [njecyr.ss01]; + sub numero from [numero.ss01]; + sub oe from [oe.ss01]; + sub p from [p.ss01]; + sub q from [q.ss01]; + sub softsign-cy from [softsign-cy.ss01]; + sub t from [t.ss01]; + sub tbar from [tbar.ss01]; + sub tcaron from [tcaron.ss01]; + sub tcedilla from [tcedilla.ss01]; + sub tcommaaccent from [tcommaaccent.ss01]; + sub te-cy from [te-cy.ss01]; + sub uniE000 from [uniE000.alt]; + sub ve-cy from [ve-cy.ss01]; + sub yen from [yen.ss01]; + sub yeru-cy from [yeru-cy.ss01]; +#< feature +} salt; +feature ss03 { +# Stylistic Set 01–20 + +#> feature + featureNames { + name "Bulgarian forms"; + name 1 "Bulgarian forms"; + }; + + sub @locl_def by @locl_BGR; + +#< feature +} ss03; +feature ss04 { +# Stylistic Set 01–20 + +#> feature + featureNames { + name "Serbian/Macedonian forms"; + name 1 "Serbian/Macedonian forms"; + }; + + sub @loclSRB_def by @locl.SRB; + +#< feature +} ss04; +feature ss01 { +# Stylistic Set 01–20 + +#> feature + + featureNames { + name "Humanistic forms"; + name 1 "Humanistic forms"; + }; + + sub @ss01_def by @ss01; + +#< feature +} ss01; +feature ss05 { +# Stylistic Set 01–20 + +#> feature + + featureNames { + name "Ukrainian pictograms"; + name 1 "Ukrainian pictograms"; + }; + + sub @pics_def by @pics; + +#< feature +} ss05; +feature hist { +# Historical Forms + +#> feature + sub e-cy by e-cy.hist; + sub s by longs; +#< feature +} hist; +feature frac { +# Fractions + +#> feature +lookup frac_precomposed { + + sub one slash four by onequarter; + sub one slash two by onehalf; + sub three slash four by threequarters; + sub one fraction four by onequarter; + sub one fraction two by onehalf; + sub three fraction four by threequarters; +} frac_precomposed; +#< feature +} frac; +feature cpsp { +# Capital Spacing + +#> feature + + pos @cpsp <5 0 10 0>; + +#< feature +} cpsp; +feature dnom { +# Denominator + +#> feature + sub thousandscyr by thousandscyr.dnom; +#< feature +} dnom; diff --git a/sources/FixelText-Black.ufo/fontinfo.plist b/sources/FixelText-Black.ufo/fontinfo.plist new file mode 100644 index 00000000..e0fc8dd7 --- /dev/null +++ b/sources/FixelText-Black.ufo/fontinfo.plist @@ -0,0 +1,207 @@ + + + + + ascender + 720 + capHeight + 700 + descender + -200 + familyName + Fixel Text + guidelines + + + angle + 0 + name + m + x + 0 + y + -438 + + + angle + 0 + name + m + x + 0 + y + 189 + + + italicAngle + 0 + openTypeGaspRangeRecords + + + rangeGaspBehavior + + 0 + 1 + 2 + 3 + + rangeMaxPPEM + 65535 + + + openTypeHeadCreated + 2023/09/05 09:25:28 + openTypeHeadFlags + + + openTypeHheaAscender + 720 + openTypeHheaCaretOffset + -0 + openTypeHheaDescender + -190 + openTypeHheaLineGap + 100 + openTypeNameDesigner + AlfaBravo + openTypeNameDesignerURL + https://alfabravo.design/ + openTypeNameManufacturer + Kyrylo Tkachov, Marchela Mozhyna, Serhii Makarenko, Maria Weinstein, Zakhar Kryvoshyya + + openTypeNameManufacturerURL + https://macpaw.com/ + openTypeNamePreferredFamilyName + Fixel Text + openTypeNamePreferredSubfamilyName + Black + openTypeNameVersion + Version 1.200 + openTypeOS2CodePageRanges + + 0 + 1 + 2 + 4 + 7 + 29 + + openTypeOS2Panose + + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + + openTypeOS2Selection + + + openTypeOS2StrikeoutPosition + 300 + openTypeOS2StrikeoutSize + 50 + openTypeOS2SubscriptXOffset + -0 + openTypeOS2SubscriptXSize + 650 + openTypeOS2SubscriptYOffset + 75 + openTypeOS2SubscriptYSize + 600 + openTypeOS2SuperscriptXOffset + -0 + openTypeOS2SuperscriptXSize + 650 + openTypeOS2SuperscriptYOffset + 350 + openTypeOS2SuperscriptYSize + 600 + openTypeOS2Type + + 2 + + openTypeOS2TypoAscender + 720 + openTypeOS2TypoDescender + -200 + openTypeOS2TypoLineGap + 290 + openTypeOS2UnicodeRanges + + 0 + 1 + 2 + 9 + 31 + 33 + 60 + + openTypeOS2WeightClass + 900 + openTypeOS2WidthClass + 4 + openTypeOS2WinAscent + 750 + openTypeOS2WinDescent + 250 + postscriptBlueFuzz + 1 + postscriptBlueScale + 0.039625 + postscriptBlueShift + 7 + postscriptBlueValues + + -20 + 0 + + postscriptFontName + FixelText-Black + postscriptForceBold + + postscriptFullName + Fixel Text Black + postscriptIsFixedPitch + + postscriptStemSnapH + + 69 + 74 + 76 + 80 + 99 + + postscriptStemSnapV + + 74 + 80 + 93 + + postscriptUnderlinePosition + -100 + postscriptUnderlineThickness + 50 + postscriptWeightName + Black + styleMapFamilyName + Fixel Text Black + styleMapStyleName + regular + styleName + Black + unitsPerEm + 1000 + versionMajor + 1 + versionMinor + 200 + xHeight + 520 + + diff --git a/sources/FixelText-Black.ufo/glyphs/A_-cy.accented.glif b/sources/FixelText-Black.ufo/glyphs/A_-cy.accented.glif new file mode 100644 index 00000000..e0218f00 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/A_-cy.accented.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+acute.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/A_-cy.glif b/sources/FixelText-Black.ufo/glyphs/A_-cy.glif new file mode 100644 index 00000000..8876cc85 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/A_-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A + + + diff --git a/sources/FixelText-Black.ufo/glyphs/A_-cy.ss01.glif b/sources/FixelText-Black.ufo/glyphs/A_-cy.ss01.glif new file mode 100644 index 00000000..ac5cb6d9 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/A_-cy.ss01.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + com.fontlab.recipe + A + + + diff --git a/sources/FixelText-Black.ufo/glyphs/A_.glif b/sources/FixelText-Black.ufo/glyphs/A_.glif new file mode 100644 index 00000000..d5669fbc --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/A_.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/A_.ss01.glif b/sources/FixelText-Black.ufo/glyphs/A_.ss01.glif new file mode 100644 index 00000000..e076e741 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/A_.ss01.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/A_E_.glif b/sources/FixelText-Black.ufo/glyphs/A_E_.glif new file mode 100644 index 00000000..99ecf5b4 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/A_E_.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + A + com.fontlab.metricsRight + E + + + diff --git a/sources/FixelText-Black.ufo/glyphs/A_E_.ss01.glif b/sources/FixelText-Black.ufo/glyphs/A_E_.ss01.glif new file mode 100644 index 00000000..f56791fa --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/A_E_.ss01.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + A.ss01 + com.fontlab.metricsRight + E + + + diff --git a/sources/FixelText-Black.ufo/glyphs/A_E_acute.glif b/sources/FixelText-Black.ufo/glyphs/A_E_acute.glif new file mode 100644 index 00000000..01f9cc17 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/A_E_acute.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + AE+acute.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/A_acute.glif b/sources/FixelText-Black.ufo/glyphs/A_acute.glif new file mode 100644 index 00000000..6065d00a --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/A_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+acute.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/A_acute.ss01.glif b/sources/FixelText-Black.ufo/glyphs/A_acute.ss01.glif new file mode 100644 index 00000000..a2f69d6f --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/A_acute.ss01.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + A.ss01+acute.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/A_breve.glif b/sources/FixelText-Black.ufo/glyphs/A_breve.glif new file mode 100644 index 00000000..626e4354 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/A_breve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+breve.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/A_breve.ss01.glif b/sources/FixelText-Black.ufo/glyphs/A_breve.ss01.glif new file mode 100644 index 00000000..115ff44a --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/A_breve.ss01.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + A.ss01+breve.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/A_brevecyr.glif b/sources/FixelText-Black.ufo/glyphs/A_brevecyr.glif new file mode 100644 index 00000000..96327fae --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/A_brevecyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+breve.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/A_caron.glif b/sources/FixelText-Black.ufo/glyphs/A_caron.glif new file mode 100644 index 00000000..2deaf573 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/A_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+caron.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/A_circumflex.glif b/sources/FixelText-Black.ufo/glyphs/A_circumflex.glif new file mode 100644 index 00000000..862f6c43 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/A_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+circumflex.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/A_circumflex.ss01.glif b/sources/FixelText-Black.ufo/glyphs/A_circumflex.ss01.glif new file mode 100644 index 00000000..28982b2a --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/A_circumflex.ss01.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + A.ss01+circumflex.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/A_dieresis.glif b/sources/FixelText-Black.ufo/glyphs/A_dieresis.glif new file mode 100644 index 00000000..e4980c42 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/A_dieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+dieresis.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/A_dieresis.ss01.glif b/sources/FixelText-Black.ufo/glyphs/A_dieresis.ss01.glif new file mode 100644 index 00000000..4f7e9e43 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/A_dieresis.ss01.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + A.ss01+dieresis.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/A_dieresiscyr.glif b/sources/FixelText-Black.ufo/glyphs/A_dieresiscyr.glif new file mode 100644 index 00000000..82a01388 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/A_dieresiscyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/A_grave.glif b/sources/FixelText-Black.ufo/glyphs/A_grave.glif new file mode 100644 index 00000000..307a23e9 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/A_grave.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+grave.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/A_grave.ss01.glif b/sources/FixelText-Black.ufo/glyphs/A_grave.ss01.glif new file mode 100644 index 00000000..6c6f2c23 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/A_grave.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A.ss01+grave.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/A_iecyr.glif b/sources/FixelText-Black.ufo/glyphs/A_iecyr.glif new file mode 100644 index 00000000..4945786d --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/A_iecyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + AE + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/A_macron.glif b/sources/FixelText-Black.ufo/glyphs/A_macron.glif new file mode 100644 index 00000000..197cdc99 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/A_macron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+macron.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/A_macron.ss01.glif b/sources/FixelText-Black.ufo/glyphs/A_macron.ss01.glif new file mode 100644 index 00000000..c6a3cfea --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/A_macron.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A.ss01+macron.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/A_ogonek.glif b/sources/FixelText-Black.ufo/glyphs/A_ogonek.glif new file mode 100644 index 00000000..3652c0ea --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/A_ogonek.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+ogonek + + + diff --git a/sources/FixelText-Black.ufo/glyphs/A_ogonek.ss01.glif b/sources/FixelText-Black.ufo/glyphs/A_ogonek.ss01.glif new file mode 100644 index 00000000..877ffdbb --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/A_ogonek.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A.ss01+ogonek + + + diff --git a/sources/FixelText-Black.ufo/glyphs/A_ring.glif b/sources/FixelText-Black.ufo/glyphs/A_ring.glif new file mode 100644 index 00000000..e8043da3 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/A_ring.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+ring.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/A_ring.ss01.glif b/sources/FixelText-Black.ufo/glyphs/A_ring.ss01.glif new file mode 100644 index 00000000..7dee2969 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/A_ring.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A.ss01+ring.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/A_tilde.glif b/sources/FixelText-Black.ufo/glyphs/A_tilde.glif new file mode 100644 index 00000000..a307b5db --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/A_tilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+tilde.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/A_tilde.ss01.glif b/sources/FixelText-Black.ufo/glyphs/A_tilde.ss01.glif new file mode 100644 index 00000000..1f84c32d --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/A_tilde.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A.ss01+tilde.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/B_.glif b/sources/FixelText-Black.ufo/glyphs/B_.glif new file mode 100644 index 00000000..0227c666 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/B_.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + + + diff --git a/sources/FixelText-Black.ufo/glyphs/B_e-cy.glif b/sources/FixelText-Black.ufo/glyphs/B_e-cy.glif new file mode 100644 index 00000000..6402d86c --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/B_e-cy.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + B-10 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/C_.glif b/sources/FixelText-Black.ufo/glyphs/C_.glif new file mode 100644 index 00000000..677e91e3 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/C_.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + + + diff --git a/sources/FixelText-Black.ufo/glyphs/C_R_.glif b/sources/FixelText-Black.ufo/glyphs/C_R_.glif new file mode 100644 index 00000000..a38a285e --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/C_R_.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/C_acute.glif b/sources/FixelText-Black.ufo/glyphs/C_acute.glif new file mode 100644 index 00000000..2fa966a8 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/C_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+acute.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/C_caron.glif b/sources/FixelText-Black.ufo/glyphs/C_caron.glif new file mode 100644 index 00000000..45ab309a --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/C_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+caron.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/C_cedilla.glif b/sources/FixelText-Black.ufo/glyphs/C_cedilla.glif new file mode 100644 index 00000000..21cf2b2d --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/C_cedilla.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+cedilla + + + diff --git a/sources/FixelText-Black.ufo/glyphs/C_che-cy.glif b/sources/FixelText-Black.ufo/glyphs/C_che-cy.glif new file mode 100644 index 00000000..ae27db03 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/C_che-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ч + com.fontlab.metricsRight + Ч + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/C_circumflex.glif b/sources/FixelText-Black.ufo/glyphs/C_circumflex.glif new file mode 100644 index 00000000..545fd9ec --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/C_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+circumflex.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/C_dotaccent.glif b/sources/FixelText-Black.ufo/glyphs/C_dotaccent.glif new file mode 100644 index 00000000..99e033c8 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/C_dotaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+dotaccent.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/C_he-cy.glif b/sources/FixelText-Black.ufo/glyphs/C_he-cy.glif new file mode 100644 index 00000000..43409509 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/C_he-cy.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-Black.ufo/glyphs/C_heabkhcyr.glif b/sources/FixelText-Black.ufo/glyphs/C_heabkhcyr.glif new file mode 100644 index 00000000..57819189 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/C_heabkhcyr.glif @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + |Schwa + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/C_heabkhtailcyr.glif b/sources/FixelText-Black.ufo/glyphs/C_heabkhtailcyr.glif new file mode 100644 index 00000000..f694dc90 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/C_heabkhtailcyr.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Cheabkhcyr + com.fontlab.metricsRight + Cheabkhcyr + com.fontlab.recipe + Cheabkhcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/C_hedieresiscyr.glif b/sources/FixelText-Black.ufo/glyphs/C_hedieresiscyr.glif new file mode 100644 index 00000000..f5647f7a --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/C_hedieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Che-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/C_hekhakascyr.glif b/sources/FixelText-Black.ufo/glyphs/C_hekhakascyr.glif new file mode 100644 index 00000000..97e77b7c --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/C_hekhakascyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ч + com.fontlab.metricsRight + H + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/C_hetailcyr.glif b/sources/FixelText-Black.ufo/glyphs/C_hetailcyr.glif new file mode 100644 index 00000000..ef4a8653 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/C_hetailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ч + com.fontlab.metricsRight + Entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/C_hevertcyr.glif b/sources/FixelText-Black.ufo/glyphs/C_hevertcyr.glif new file mode 100644 index 00000000..a827e0f9 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/C_hevertcyr.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ч + com.fontlab.metricsRight + Н + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/C_rossedO_-cy.glif b/sources/FixelText-Black.ufo/glyphs/C_rossedO_-cy.glif new file mode 100644 index 00000000..bc5a1a84 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/C_rossedO_-cy.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + com.fontlab.recipe + O + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/D_.glif b/sources/FixelText-Black.ufo/glyphs/D_.glif new file mode 100644 index 00000000..46ac6bd9 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/D_.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-Black.ufo/glyphs/D_caron.glif b/sources/FixelText-Black.ufo/glyphs/D_caron.glif new file mode 100644 index 00000000..58c00a35 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/D_caron.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + D+caron.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/D_checyr.glif b/sources/FixelText-Black.ufo/glyphs/D_checyr.glif new file mode 100644 index 00000000..401fdd30 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/D_checyr.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Д+10 + com.fontlab.metricsRight + Д + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/D_croat.glif b/sources/FixelText-Black.ufo/glyphs/D_croat.glif new file mode 100644 index 00000000..f7082a01 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/D_croat.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + D + com.fontlab.recipe + Eth + + + diff --git a/sources/FixelText-Black.ufo/glyphs/D_e-cy.B_G_R_.glif b/sources/FixelText-Black.ufo/glyphs/D_e-cy.B_G_R_.glif new file mode 100644 index 00000000..bd37d428 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/D_e-cy.B_G_R_.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + l() + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/D_e-cy.glif b/sources/FixelText-Black.ufo/glyphs/D_e-cy.glif new file mode 100644 index 00000000..80ed23b5 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/D_e-cy.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/D_eS_oft-cy.glif b/sources/FixelText-Black.ufo/glyphs/D_eS_oft-cy.glif new file mode 100644 index 00000000..74d2bfcc --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/D_eS_oft-cy.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Д + com.fontlab.metricsRight + Ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/D_ekomicyr.glif b/sources/FixelText-Black.ufo/glyphs/D_ekomicyr.glif new file mode 100644 index 00000000..c2ed3581 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/D_ekomicyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.metricsLeft + |P + com.fontlab.metricsRight + H + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/D_elta.glif b/sources/FixelText-Black.ufo/glyphs/D_elta.glif new file mode 100644 index 00000000..e072fa45 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/D_elta.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + A + + + diff --git a/sources/FixelText-Black.ufo/glyphs/D_jecyr.glif b/sources/FixelText-Black.ufo/glyphs/D_jecyr.glif new file mode 100644 index 00000000..cd501222 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/D_jecyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelText-Black.ufo/glyphs/D_jekomicyr.glif b/sources/FixelText-Black.ufo/glyphs/D_jekomicyr.glif new file mode 100644 index 00000000..bccb9a05 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/D_jekomicyr.glif @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Dekomicyr + com.fontlab.metricsRight + Njekomicyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/D_jerv-cy.glif b/sources/FixelText-Black.ufo/glyphs/D_jerv-cy.glif new file mode 100644 index 00000000..df781148 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/D_jerv-cy.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + r() + com.fontlab.metricsRight + O + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/D_oubleO_-cy.glif b/sources/FixelText-Black.ufo/glyphs/D_oubleO_-cy.glif new file mode 100644 index 00000000..eaf32b9a --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/D_oubleO_-cy.glif @@ -0,0 +1,91 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + com.fontlab.recipe + O_O + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/D_we-cy.glif b/sources/FixelText-Black.ufo/glyphs/D_we-cy.glif new file mode 100644 index 00000000..906040f7 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/D_we-cy.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Д + com.fontlab.metricsRight + Д + com.fontlab.recipe + Д + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/D_ze-cy.glif b/sources/FixelText-Black.ufo/glyphs/D_ze-cy.glif new file mode 100644 index 00000000..2956cda4 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/D_ze-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + S + + + diff --git a/sources/FixelText-Black.ufo/glyphs/D_zeR_eversed-cy.glif b/sources/FixelText-Black.ufo/glyphs/D_zeR_eversed-cy.glif new file mode 100644 index 00000000..58afd825 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/D_zeR_eversed-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + S + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/D_zeabkhcyr.glif b/sources/FixelText-Black.ufo/glyphs/D_zeabkhcyr.glif new file mode 100644 index 00000000..5c28abc4 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/D_zeabkhcyr.glif @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + З-10 + com.fontlab.metricsRight + З-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/D_zelo-cy.glif b/sources/FixelText-Black.ufo/glyphs/D_zelo-cy.glif new file mode 100644 index 00000000..18093bae --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/D_zelo-cy.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/D_zhecyr.glif b/sources/FixelText-Black.ufo/glyphs/D_zhecyr.glif new file mode 100644 index 00000000..1f5acee5 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/D_zhecyr.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-Black.ufo/glyphs/D_zjekomicyr.glif b/sources/FixelText-Black.ufo/glyphs/D_zjekomicyr.glif new file mode 100644 index 00000000..541407de --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/D_zjekomicyr.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + З-10 + com.fontlab.metricsRight + Ц-5 + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/D_zwe-cy.glif b/sources/FixelText-Black.ufo/glyphs/D_zwe-cy.glif new file mode 100644 index 00000000..221d8f6b --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/D_zwe-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + S + com.fontlab.metricsRight + S + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/D_zze-cy.glif b/sources/FixelText-Black.ufo/glyphs/D_zze-cy.glif new file mode 100644 index 00000000..3175d572 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/D_zze-cy.glif @@ -0,0 +1,84 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Д + com.fontlab.metricsRight + Д-20 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/D_zzhecyr.glif b/sources/FixelText-Black.ufo/glyphs/D_zzhecyr.glif new file mode 100644 index 00000000..e92a17a4 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/D_zzhecyr.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Д + com.fontlab.metricsRight + Ж + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/E_-cy.accented.glif b/sources/FixelText-Black.ufo/glyphs/E_-cy.accented.glif new file mode 100644 index 00000000..bed598cf --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/E_-cy.accented.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+acute.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/E_-cy.glif b/sources/FixelText-Black.ufo/glyphs/E_-cy.glif new file mode 100644 index 00000000..cf9e2913 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/E_-cy.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + C + com.fontlab.metricsRight + C + + + diff --git a/sources/FixelText-Black.ufo/glyphs/E_.glif b/sources/FixelText-Black.ufo/glyphs/E_.glif new file mode 100644 index 00000000..02abe501 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/E_.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + com.fontlab.metricsRight + F+10 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/E_acute.glif b/sources/FixelText-Black.ufo/glyphs/E_acute.glif new file mode 100644 index 00000000..98c1ffb2 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/E_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+acute.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/E_breve.glif b/sources/FixelText-Black.ufo/glyphs/E_breve.glif new file mode 100644 index 00000000..574d8910 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/E_breve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+breve.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/E_caron.glif b/sources/FixelText-Black.ufo/glyphs/E_caron.glif new file mode 100644 index 00000000..af764afd --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/E_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+caron.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/E_circumflex.glif b/sources/FixelText-Black.ufo/glyphs/E_circumflex.glif new file mode 100644 index 00000000..c9e232ad --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/E_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+circumflex.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/E_dieresis.glif b/sources/FixelText-Black.ufo/glyphs/E_dieresis.glif new file mode 100644 index 00000000..d6137f59 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/E_dieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+dieresiscase.alt + + + diff --git a/sources/FixelText-Black.ufo/glyphs/E_dotaccent.glif b/sources/FixelText-Black.ufo/glyphs/E_dotaccent.glif new file mode 100644 index 00000000..2bc0db27 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/E_dotaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+dotaccent.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/E_f-cy.B_G_R_.glif b/sources/FixelText-Black.ufo/glyphs/E_f-cy.B_G_R_.glif new file mode 100644 index 00000000..9f7f1dfe --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/E_f-cy.B_G_R_.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/E_f-cy.glif b/sources/FixelText-Black.ufo/glyphs/E_f-cy.glif new file mode 100644 index 00000000..3450ceba --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/E_f-cy.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-Black.ufo/glyphs/E_grave.glif b/sources/FixelText-Black.ufo/glyphs/E_grave.glif new file mode 100644 index 00000000..15c1d175 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/E_grave.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+grave.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/E_iotifiedcyr.glif b/sources/FixelText-Black.ufo/glyphs/E_iotifiedcyr.glif new file mode 100644 index 00000000..eb6b8221 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/E_iotifiedcyr.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + C + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/E_l-cy.B_G_R_.glif b/sources/FixelText-Black.ufo/glyphs/E_l-cy.B_G_R_.glif new file mode 100644 index 00000000..ddaad45e --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/E_l-cy.B_G_R_.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + A + com.fontlab.metricsRight + l() + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/E_l-cy.glif b/sources/FixelText-Black.ufo/glyphs/E_l-cy.glif new file mode 100644 index 00000000..9639f1ca --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/E_l-cy.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-Black.ufo/glyphs/E_lS_oft-cy.glif b/sources/FixelText-Black.ufo/glyphs/E_lS_oft-cy.glif new file mode 100644 index 00000000..e48c2690 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/E_lS_oft-cy.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/E_lhookcyr.glif b/sources/FixelText-Black.ufo/glyphs/E_lhookcyr.glif new file mode 100644 index 00000000..640befe7 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/E_lhookcyr.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Л + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/E_lmiddlehookcyr.glif b/sources/FixelText-Black.ufo/glyphs/E_lmiddlehookcyr.glif new file mode 100644 index 00000000..938c537c --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/E_lmiddlehookcyr.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Shhacyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/E_lsharptailcyr.glif b/sources/FixelText-Black.ufo/glyphs/E_lsharptailcyr.glif new file mode 100644 index 00000000..250a27a7 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/E_lsharptailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Ensharptailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/E_lsmallcyr.glif b/sources/FixelText-Black.ufo/glyphs/E_lsmallcyr.glif new file mode 100644 index 00000000..fc15f8dc --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/E_lsmallcyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + el-cy.BGR + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/E_ltailcyr.glif b/sources/FixelText-Black.ufo/glyphs/E_ltailcyr.glif new file mode 100644 index 00000000..6d88ed9d --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/E_ltailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/E_m-cy.glif b/sources/FixelText-Black.ufo/glyphs/E_m-cy.glif new file mode 100644 index 00000000..e8372d8f --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/E_m-cy.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + M + + + diff --git a/sources/FixelText-Black.ufo/glyphs/E_m-cy.ss01.glif b/sources/FixelText-Black.ufo/glyphs/E_m-cy.ss01.glif new file mode 100644 index 00000000..84202f03 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/E_m-cy.ss01.glif @@ -0,0 +1,13 @@ + + + + + + + + + com.fontlab.recipe + M + + + diff --git a/sources/FixelText-Black.ufo/glyphs/E_mS_oft-cy.glif b/sources/FixelText-Black.ufo/glyphs/E_mS_oft-cy.glif new file mode 100644 index 00000000..a045cae1 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/E_mS_oft-cy.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + M + com.fontlab.metricsRight + Ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/E_macron.glif b/sources/FixelText-Black.ufo/glyphs/E_macron.glif new file mode 100644 index 00000000..f7f2fb7c --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/E_macron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+macron.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/E_msharptailcyr.glif b/sources/FixelText-Black.ufo/glyphs/E_msharptailcyr.glif new file mode 100644 index 00000000..e5f6c3c1 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/E_msharptailcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Н + com.fontlab.metricsRight + Ensharptailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/E_n-cy.glif b/sources/FixelText-Black.ufo/glyphs/E_n-cy.glif new file mode 100644 index 00000000..08955b35 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/E_n-cy.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + H + + + diff --git a/sources/FixelText-Black.ufo/glyphs/E_ng.glif b/sources/FixelText-Black.ufo/glyphs/E_ng.glif new file mode 100644 index 00000000..ab2b88a0 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/E_ng.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + N + com.fontlab.metricsRight + l() + + + diff --git a/sources/FixelText-Black.ufo/glyphs/E_ng.ss01.glif b/sources/FixelText-Black.ufo/glyphs/E_ng.ss01.glif new file mode 100644 index 00000000..7a76ba23 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/E_ng.ss01.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + N.ss01 + com.fontlab.metricsRight + J.ss01 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/E_ngecyr.glif b/sources/FixelText-Black.ufo/glyphs/E_ngecyr.glif new file mode 100644 index 00000000..84c0f5f9 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/E_ngecyr.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/E_nhookcyr.glif b/sources/FixelText-Black.ufo/glyphs/E_nhookcyr.glif new file mode 100644 index 00000000..d3f30e22 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/E_nhookcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/E_nhookleftcyr.glif b/sources/FixelText-Black.ufo/glyphs/E_nhookleftcyr.glif new file mode 100644 index 00000000..a210b04a --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/E_nhookleftcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + r()-159 + com.fontlab.metricsRight + H + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/E_nmiddlehookcyr.glif b/sources/FixelText-Black.ufo/glyphs/E_nmiddlehookcyr.glif new file mode 100644 index 00000000..48778f04 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/E_nmiddlehookcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Shhacyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/E_nsharptailcyr.glif b/sources/FixelText-Black.ufo/glyphs/E_nsharptailcyr.glif new file mode 100644 index 00000000..4d9411b7 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/E_nsharptailcyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Н + com.fontlab.metricsRight + Д + com.fontlab.recipe + Entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/E_ntailcyr.glif b/sources/FixelText-Black.ufo/glyphs/E_ntailcyr.glif new file mode 100644 index 00000000..692115d0 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/E_ntailcyr.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Ц + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/E_ogonek.glif b/sources/FixelText-Black.ufo/glyphs/E_ogonek.glif new file mode 100644 index 00000000..a0873493 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/E_ogonek.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+ogonek + + + diff --git a/sources/FixelText-Black.ufo/glyphs/E_r-cy.glif b/sources/FixelText-Black.ufo/glyphs/E_r-cy.glif new file mode 100644 index 00000000..fb225d22 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/E_r-cy.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + P + + + diff --git a/sources/FixelText-Black.ufo/glyphs/E_reversed-cy.accented.glif b/sources/FixelText-Black.ufo/glyphs/E_reversed-cy.accented.glif new file mode 100644 index 00000000..97b400fa --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/E_reversed-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Э+acute.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/E_reversed-cy.glif b/sources/FixelText-Black.ufo/glyphs/E_reversed-cy.glif new file mode 100644 index 00000000..1eb49abf --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/E_reversed-cy.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |C + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-Black.ufo/glyphs/E_reverseddieresiscyr.glif b/sources/FixelText-Black.ufo/glyphs/E_reverseddieresiscyr.glif new file mode 100644 index 00000000..8a9fc168 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/E_reverseddieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ereversed-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/E_rtickcyr.glif b/sources/FixelText-Black.ufo/glyphs/E_rtickcyr.glif new file mode 100644 index 00000000..42237af8 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/E_rtickcyr.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + P + com.fontlab.metricsRight + P + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/E_s-cy.glif b/sources/FixelText-Black.ufo/glyphs/E_s-cy.glif new file mode 100644 index 00000000..19a547c7 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/E_s-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C + + + diff --git a/sources/FixelText-Black.ufo/glyphs/E_stailcyr.B_S_H_.glif b/sources/FixelText-Black.ufo/glyphs/E_stailcyr.B_S_H_.glif new file mode 100644 index 00000000..cdb017ab --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/E_stailcyr.B_S_H_.glif @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + C + com.fontlab.metricsRight + C + com.fontlab.recipe + C + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/E_stailcyr.C_H_U_.glif b/sources/FixelText-Black.ufo/glyphs/E_stailcyr.C_H_U_.glif new file mode 100644 index 00000000..80cf451b --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/E_stailcyr.C_H_U_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+cedilla.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/E_stailcyr.glif b/sources/FixelText-Black.ufo/glyphs/E_stailcyr.glif new file mode 100644 index 00000000..ac2fffd2 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/E_stailcyr.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + С + com.fontlab.metricsRight + С + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/E_th.glif b/sources/FixelText-Black.ufo/glyphs/E_th.glif new file mode 100644 index 00000000..6aa30558 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/E_th.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + D + + + diff --git a/sources/FixelText-Black.ufo/glyphs/F_.glif b/sources/FixelText-Black.ufo/glyphs/F_.glif new file mode 100644 index 00000000..4c0e51a8 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/F_.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + + + diff --git a/sources/FixelText-Black.ufo/glyphs/F_itacyr.glif b/sources/FixelText-Black.ufo/glyphs/F_itacyr.glif new file mode 100644 index 00000000..5e3e0a23 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/F_itacyr.glif @@ -0,0 +1,78 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + com.fontlab.recipe + Obarcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/G_.glif b/sources/FixelText-Black.ufo/glyphs/G_.glif new file mode 100644 index 00000000..fb7be8b7 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/G_.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O+18 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/G_.ss01.glif b/sources/FixelText-Black.ufo/glyphs/G_.ss01.glif new file mode 100644 index 00000000..23b7f6a8 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/G_.ss01.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O+10 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/G_acute.glif b/sources/FixelText-Black.ufo/glyphs/G_acute.glif new file mode 100644 index 00000000..a3ecc41e --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/G_acute.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + G+acute.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/G_acute.ss01.glif b/sources/FixelText-Black.ufo/glyphs/G_acute.ss01.glif new file mode 100644 index 00000000..13353d02 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/G_acute.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G.ss01+acute.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/G_breve.glif b/sources/FixelText-Black.ufo/glyphs/G_breve.glif new file mode 100644 index 00000000..5180f61f --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/G_breve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G+breve.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/G_breve.ss01.glif b/sources/FixelText-Black.ufo/glyphs/G_breve.ss01.glif new file mode 100644 index 00000000..841b70a5 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/G_breve.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G.ss01+breve.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/G_circumflex.glif b/sources/FixelText-Black.ufo/glyphs/G_circumflex.glif new file mode 100644 index 00000000..3820eb5d --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/G_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G+circumflex.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/G_circumflex.ss01.glif b/sources/FixelText-Black.ufo/glyphs/G_circumflex.ss01.glif new file mode 100644 index 00000000..b54a3c6a --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/G_circumflex.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G.ss01+circumflex.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/G_commaaccent.glif b/sources/FixelText-Black.ufo/glyphs/G_commaaccent.glif new file mode 100644 index 00000000..e7e2df2a --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/G_commaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G+commaaccentcomb + + + diff --git a/sources/FixelText-Black.ufo/glyphs/G_commaaccent.ss01.glif b/sources/FixelText-Black.ufo/glyphs/G_commaaccent.ss01.glif new file mode 100644 index 00000000..6a499c06 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/G_commaaccent.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G.ss01+commaaccentcomb + + + diff --git a/sources/FixelText-Black.ufo/glyphs/G_dotaccent.glif b/sources/FixelText-Black.ufo/glyphs/G_dotaccent.glif new file mode 100644 index 00000000..0bf36f3e --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/G_dotaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G+dotaccent.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/G_dotaccent.ss01.glif b/sources/FixelText-Black.ufo/glyphs/G_dotaccent.ss01.glif new file mode 100644 index 00000000..fb3f5edd --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/G_dotaccent.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G.ss01+dotaccent.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/G_e-cy.glif b/sources/FixelText-Black.ufo/glyphs/G_e-cy.glif new file mode 100644 index 00000000..f6d593b3 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/G_e-cy.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + T + + + diff --git a/sources/FixelText-Black.ufo/glyphs/G_ehookcyr.glif b/sources/FixelText-Black.ufo/glyphs/G_ehookcyr.glif new file mode 100644 index 00000000..c67021ca --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/G_ehookcyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Г + com.fontlab.metricsRight + Tshecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/G_ehookstrokecyr.glif b/sources/FixelText-Black.ufo/glyphs/G_ehookstrokecyr.glif new file mode 100644 index 00000000..4d3dc923 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/G_ehookstrokecyr.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Gestrokecyr + com.fontlab.metricsRight + Gestrokecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/G_ermandbls.glif b/sources/FixelText-Black.ufo/glyphs/G_ermandbls.glif new file mode 100644 index 00000000..b1d6c607 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/G_ermandbls.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + U + com.fontlab.metricsRight + B-5 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/G_estrokecyr.B_S_H_.glif b/sources/FixelText-Black.ufo/glyphs/G_estrokecyr.B_S_H_.glif new file mode 100644 index 00000000..f615f770 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/G_estrokecyr.B_S_H_.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + F + com.fontlab.metricsRight + Gestrokecyr + com.fontlab.recipe + Gestrokecyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/G_estrokecyr.glif b/sources/FixelText-Black.ufo/glyphs/G_estrokecyr.glif new file mode 100644 index 00000000..54152621 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/G_estrokecyr.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + Г + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/G_etailcyr.glif b/sources/FixelText-Black.ufo/glyphs/G_etailcyr.glif new file mode 100644 index 00000000..a92a5ffa --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/G_etailcyr.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Г + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/G_heupturn-cy.glif b/sources/FixelText-Black.ufo/glyphs/G_heupturn-cy.glif new file mode 100644 index 00000000..00c92efb --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/G_heupturn-cy.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Г + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/G_jecyr.glif b/sources/FixelText-Black.ufo/glyphs/G_jecyr.glif new file mode 100644 index 00000000..74d760c3 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/G_jecyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ge-cy+acute.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/H_.glif b/sources/FixelText-Black.ufo/glyphs/H_.glif new file mode 100644 index 00000000..731d35ad --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/H_.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + com.fontlab.metricsRight + I + + + diff --git a/sources/FixelText-Black.ufo/glyphs/H_a-cy.glif b/sources/FixelText-Black.ufo/glyphs/H_a-cy.glif new file mode 100644 index 00000000..b1f59efc --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/H_a-cy.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + X + + + diff --git a/sources/FixelText-Black.ufo/glyphs/H_a-cy.ss01.glif b/sources/FixelText-Black.ufo/glyphs/H_a-cy.ss01.glif new file mode 100644 index 00000000..362abaaa --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/H_a-cy.ss01.glif @@ -0,0 +1,14 @@ + + + + + + + + + + com.fontlab.recipe + X + + + diff --git a/sources/FixelText-Black.ufo/glyphs/H_aabkhcyr.glif b/sources/FixelText-Black.ufo/glyphs/H_aabkhcyr.glif new file mode 100644 index 00000000..b98bac3d --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/H_aabkhcyr.glif @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/H_ahookcyr.glif b/sources/FixelText-Black.ufo/glyphs/H_ahookcyr.glif new file mode 100644 index 00000000..15354944 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/H_ahookcyr.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + X + com.fontlab.metricsRight + X + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/H_ardsign-cy.glif b/sources/FixelText-Black.ufo/glyphs/H_ardsign-cy.glif new file mode 100644 index 00000000..c7351fe5 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/H_ardsign-cy.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + Ь + + + diff --git a/sources/FixelText-Black.ufo/glyphs/H_astrokecyr.glif b/sources/FixelText-Black.ufo/glyphs/H_astrokecyr.glif new file mode 100644 index 00000000..762001c3 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/H_astrokecyr.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + X + com.fontlab.metricsRight + X + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/H_bar.glif b/sources/FixelText-Black.ufo/glyphs/H_bar.glif new file mode 100644 index 00000000..9ef422de --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/H_bar.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + r() + com.fontlab.metricsRight + H + com.schriftgestaltung.Glyphs.rightMetricsKey + H + + + diff --git a/sources/FixelText-Black.ufo/glyphs/H_circumflex.glif b/sources/FixelText-Black.ufo/glyphs/H_circumflex.glif new file mode 100644 index 00000000..5197a832 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/H_circumflex.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + H+circumflex.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/H_we-cy.glif b/sources/FixelText-Black.ufo/glyphs/H_we-cy.glif new file mode 100644 index 00000000..7e268eab --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/H_we-cy.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Iota-cy + com.fontlab.metricsRight + Tshecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/I_-cy.glif b/sources/FixelText-Black.ufo/glyphs/I_-cy.glif new file mode 100644 index 00000000..2d8a5880 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/I_-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I + + + diff --git a/sources/FixelText-Black.ufo/glyphs/I_.glif b/sources/FixelText-Black.ufo/glyphs/I_.glif new file mode 100644 index 00000000..ce1aa2d9 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/I_.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/I_J_.glif b/sources/FixelText-Black.ufo/glyphs/I_J_.glif new file mode 100644 index 00000000..678c4a45 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/I_J_.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + I_J + + + diff --git a/sources/FixelText-Black.ufo/glyphs/I_a-cy.accented.glif b/sources/FixelText-Black.ufo/glyphs/I_a-cy.accented.glif new file mode 100644 index 00000000..0a2c56b3 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/I_a-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Я+acute.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/I_a-cy.glif b/sources/FixelText-Black.ufo/glyphs/I_a-cy.glif new file mode 100644 index 00000000..5dc72131 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/I_a-cy.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |R+10 + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-Black.ufo/glyphs/I_a-cy.ss01.glif b/sources/FixelText-Black.ufo/glyphs/I_a-cy.ss01.glif new file mode 100644 index 00000000..1daaaaa0 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/I_a-cy.ss01.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-Black.ufo/glyphs/I_acute.glif b/sources/FixelText-Black.ufo/glyphs/I_acute.glif new file mode 100644 index 00000000..47e8b315 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/I_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+acute.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/I_breve.glif b/sources/FixelText-Black.ufo/glyphs/I_breve.glif new file mode 100644 index 00000000..0574fe5a --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/I_breve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+breve.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/I_circumflex.glif b/sources/FixelText-Black.ufo/glyphs/I_circumflex.glif new file mode 100644 index 00000000..5ba92399 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/I_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+circumflex.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/I_dieresis.glif b/sources/FixelText-Black.ufo/glyphs/I_dieresis.glif new file mode 100644 index 00000000..ea9d6278 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/I_dieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+dieresiscase.alt + + + diff --git a/sources/FixelText-Black.ufo/glyphs/I_dieresiscyr.glif b/sources/FixelText-Black.ufo/glyphs/I_dieresiscyr.glif new file mode 100644 index 00000000..6fab5455 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/I_dieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ii-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/I_dotaccent.glif b/sources/FixelText-Black.ufo/glyphs/I_dotaccent.glif new file mode 100644 index 00000000..612d8cc0 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/I_dotaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+dotaccent.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/I_e-cy.glif b/sources/FixelText-Black.ufo/glyphs/I_e-cy.glif new file mode 100644 index 00000000..6c99f752 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/I_e-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E + + + diff --git a/sources/FixelText-Black.ufo/glyphs/I_ebrevecyr.glif b/sources/FixelText-Black.ufo/glyphs/I_ebrevecyr.glif new file mode 100644 index 00000000..09431b3c --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/I_ebrevecyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+breve.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/I_egravecyr.glif b/sources/FixelText-Black.ufo/glyphs/I_egravecyr.glif new file mode 100644 index 00000000..77ea1f34 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/I_egravecyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+grave.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/I_grave.glif b/sources/FixelText-Black.ufo/glyphs/I_grave.glif new file mode 100644 index 00000000..980275c7 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/I_grave.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+grave.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/I_gravecyr.glif b/sources/FixelText-Black.ufo/glyphs/I_gravecyr.glif new file mode 100644 index 00000000..c00a7744 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/I_gravecyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ii-cy+grave.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/I_i-cy.accented.glif b/sources/FixelText-Black.ufo/glyphs/I_i-cy.accented.glif new file mode 100644 index 00000000..2080eba2 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/I_i-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + И+acute.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/I_i-cy.glif b/sources/FixelText-Black.ufo/glyphs/I_i-cy.glif new file mode 100644 index 00000000..fc22bf6b --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/I_i-cy.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-Black.ufo/glyphs/I_ishort-cy.glif b/sources/FixelText-Black.ufo/glyphs/I_ishort-cy.glif new file mode 100644 index 00000000..ed3c8d72 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/I_ishort-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + uni0418+breve.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/I_macron.glif b/sources/FixelText-Black.ufo/glyphs/I_macron.glif new file mode 100644 index 00000000..d00027e9 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/I_macron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+macron.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/I_macroncyr.glif b/sources/FixelText-Black.ufo/glyphs/I_macroncyr.glif new file mode 100644 index 00000000..64d89d66 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/I_macroncyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ii-cy+macron.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/I_o-cy.accented.glif b/sources/FixelText-Black.ufo/glyphs/I_o-cy.accented.glif new file mode 100644 index 00000000..0d0fbba7 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/I_o-cy.accented.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + com.fontlab.recipe + E+dieresis.case+acute.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/I_o-cy.glif b/sources/FixelText-Black.ufo/glyphs/I_o-cy.glif new file mode 100644 index 00000000..7586a2c6 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/I_o-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Edieresis + + + diff --git a/sources/FixelText-Black.ufo/glyphs/I_ogonek.glif b/sources/FixelText-Black.ufo/glyphs/I_ogonek.glif new file mode 100644 index 00000000..fd9e20f1 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/I_ogonek.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+ogonek + + + diff --git a/sources/FixelText-Black.ufo/glyphs/I_ota-cy.glif b/sources/FixelText-Black.ufo/glyphs/I_ota-cy.glif new file mode 100644 index 00000000..a6bf945d --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/I_ota-cy.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |J + com.fontlab.metricsRight + |J + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/I_otifiedA_-cy.glif b/sources/FixelText-Black.ufo/glyphs/I_otifiedA_-cy.glif new file mode 100644 index 00000000..1eaac620 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/I_otifiedA_-cy.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + com.fontlab.metricsRight + A + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/I_shortsharptailcyr.glif b/sources/FixelText-Black.ufo/glyphs/I_shortsharptailcyr.glif new file mode 100644 index 00000000..5864f99b --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/I_shortsharptailcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Й + com.fontlab.metricsRight + Ensharptailcyr + com.fontlab.recipe + Й + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/I_tilde.glif b/sources/FixelText-Black.ufo/glyphs/I_tilde.glif new file mode 100644 index 00000000..df352a3c --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/I_tilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+tilde.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/I_u-cy.accented.glif b/sources/FixelText-Black.ufo/glyphs/I_u-cy.accented.glif new file mode 100644 index 00000000..59f20934 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/I_u-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ю+acute.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/I_u-cy.glif b/sources/FixelText-Black.ufo/glyphs/I_u-cy.glif new file mode 100644 index 00000000..fc62fd93 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/I_u-cy.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-Black.ufo/glyphs/I_zhitsacyr.glif b/sources/FixelText-Black.ufo/glyphs/I_zhitsacyr.glif new file mode 100644 index 00000000..de1842fa --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/I_zhitsacyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + V + com.fontlab.metricsRight + + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/I_zhitsagravedblcyr.glif b/sources/FixelText-Black.ufo/glyphs/I_zhitsagravedblcyr.glif new file mode 100644 index 00000000..4c868ea2 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/I_zhitsagravedblcyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + com.fontlab.metricsLeft + Izhitsacyr + com.fontlab.metricsRight + Izhitsacyr + com.fontlab.recipe + Izhitsacyr+hungarumlaut.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/J_.glif b/sources/FixelText-Black.ufo/glyphs/J_.glif new file mode 100644 index 00000000..2bb0fc5f --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/J_.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + U + + + diff --git a/sources/FixelText-Black.ufo/glyphs/J_.ss01.glif b/sources/FixelText-Black.ufo/glyphs/J_.ss01.glif new file mode 100644 index 00000000..2a472fcf --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/J_.ss01.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + U + + + diff --git a/sources/FixelText-Black.ufo/glyphs/J_circumflex.glif b/sources/FixelText-Black.ufo/glyphs/J_circumflex.glif new file mode 100644 index 00000000..f51b13cd --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/J_circumflex.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + J+circumflex.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/J_circumflex.ss01.glif b/sources/FixelText-Black.ufo/glyphs/J_circumflex.ss01.glif new file mode 100644 index 00000000..f899d7be --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/J_circumflex.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + J.ss01+circumflex.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/J_ecyr.glif b/sources/FixelText-Black.ufo/glyphs/J_ecyr.glif new file mode 100644 index 00000000..37db126a --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/J_ecyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsLeft + J + com.fontlab.metricsRight + J + com.fontlab.recipe + J + + + diff --git a/sources/FixelText-Black.ufo/glyphs/K_.glif b/sources/FixelText-Black.ufo/glyphs/K_.glif new file mode 100644 index 00000000..be303432 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/K_.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + + + diff --git a/sources/FixelText-Black.ufo/glyphs/K_.ss01.glif b/sources/FixelText-Black.ufo/glyphs/K_.ss01.glif new file mode 100644 index 00000000..56c46372 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/K_.ss01.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + + + diff --git a/sources/FixelText-Black.ufo/glyphs/K_a-cy.glif b/sources/FixelText-Black.ufo/glyphs/K_a-cy.glif new file mode 100644 index 00000000..aa3998ab --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/K_a-cy.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.recipe + K + + + diff --git a/sources/FixelText-Black.ufo/glyphs/K_a-cy.ss01.glif b/sources/FixelText-Black.ufo/glyphs/K_a-cy.ss01.glif new file mode 100644 index 00000000..2eb07136 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/K_a-cy.ss01.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.recipe + K + + + diff --git a/sources/FixelText-Black.ufo/glyphs/K_aaleutcyr.glif b/sources/FixelText-Black.ufo/glyphs/K_aaleutcyr.glif new file mode 100644 index 00000000..d79a3754 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/K_aaleutcyr.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + K + com.fontlab.metricsRight + K + com.fontlab.recipe + K + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/K_abashkcyr.glif b/sources/FixelText-Black.ufo/glyphs/K_abashkcyr.glif new file mode 100644 index 00000000..ad39de93 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/K_abashkcyr.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Hardsign-cy + com.fontlab.metricsRight + K + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/K_ahookcyr.glif b/sources/FixelText-Black.ufo/glyphs/K_ahookcyr.glif new file mode 100644 index 00000000..92400dcd --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/K_ahookcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + K + com.fontlab.metricsRight + Djecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/K_astrokecyr.glif b/sources/FixelText-Black.ufo/glyphs/K_astrokecyr.glif new file mode 100644 index 00000000..c01454cf --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/K_astrokecyr.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Yatcyr + com.fontlab.metricsRight + K + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/K_atailcyr.glif b/sources/FixelText-Black.ufo/glyphs/K_atailcyr.glif new file mode 100644 index 00000000..86ad6f0e --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/K_atailcyr.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + К-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/K_averticalstrokecyr.glif b/sources/FixelText-Black.ufo/glyphs/K_averticalstrokecyr.glif new file mode 100644 index 00000000..6f5ba549 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/K_averticalstrokecyr.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + K + com.fontlab.metricsRight + Ж + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/K_commaaccent.glif b/sources/FixelText-Black.ufo/glyphs/K_commaaccent.glif new file mode 100644 index 00000000..cba89bf4 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/K_commaaccent.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + K+commaaccentcomb + + + diff --git a/sources/FixelText-Black.ufo/glyphs/K_commaaccent.ss01.glif b/sources/FixelText-Black.ufo/glyphs/K_commaaccent.ss01.glif new file mode 100644 index 00000000..1ceb71db --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/K_commaaccent.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + K.ss01+commaaccentcomb + + + diff --git a/sources/FixelText-Black.ufo/glyphs/K_jecyr.glif b/sources/FixelText-Black.ufo/glyphs/K_jecyr.glif new file mode 100644 index 00000000..258a7a50 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/K_jecyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ka-cy+acute.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/K_oppacyr.glif b/sources/FixelText-Black.ufo/glyphs/K_oppacyr.glif new file mode 100644 index 00000000..e88f45bd --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/K_oppacyr.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + C-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/K_sicyr.glif b/sources/FixelText-Black.ufo/glyphs/K_sicyr.glif new file mode 100644 index 00000000..53911eea --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/K_sicyr.glif @@ -0,0 +1,98 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + З-10 + com.fontlab.metricsRight + З + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/L_.glif b/sources/FixelText-Black.ufo/glyphs/L_.glif new file mode 100644 index 00000000..52b4330f --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/L_.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + + + diff --git a/sources/FixelText-Black.ufo/glyphs/L_acute.glif b/sources/FixelText-Black.ufo/glyphs/L_acute.glif new file mode 100644 index 00000000..4409f5fc --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/L_acute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + L+acute.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/L_caron.glif b/sources/FixelText-Black.ufo/glyphs/L_caron.glif new file mode 100644 index 00000000..f3a6eae6 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/L_caron.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + com.fontlab.recipe + L+caron.salt + + + diff --git a/sources/FixelText-Black.ufo/glyphs/L_commaaccent.glif b/sources/FixelText-Black.ufo/glyphs/L_commaaccent.glif new file mode 100644 index 00000000..ab395f47 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/L_commaaccent.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + L+commaaccentcomb + + + diff --git a/sources/FixelText-Black.ufo/glyphs/L_dot.glif b/sources/FixelText-Black.ufo/glyphs/L_dot.glif new file mode 100644 index 00000000..9ad893be --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/L_dot.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + com.fontlab.metricsRight + L + + + diff --git a/sources/FixelText-Black.ufo/glyphs/L_hacyr.glif b/sources/FixelText-Black.ufo/glyphs/L_hacyr.glif new file mode 100644 index 00000000..05744102 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/L_hacyr.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + X + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/L_jecyr.glif b/sources/FixelText-Black.ufo/glyphs/L_jecyr.glif new file mode 100644 index 00000000..c6e744f4 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/L_jecyr.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Ь + + + diff --git a/sources/FixelText-Black.ufo/glyphs/L_jekomicyr.glif b/sources/FixelText-Black.ufo/glyphs/L_jekomicyr.glif new file mode 100644 index 00000000..596cb494 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/L_jekomicyr.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Njekomicyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/L_slash.glif b/sources/FixelText-Black.ufo/glyphs/L_slash.glif new file mode 100644 index 00000000..eaad2cb4 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/L_slash.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + L-80 + com.fontlab.metricsRight + L + + + diff --git a/sources/FixelText-Black.ufo/glyphs/M_.glif b/sources/FixelText-Black.ufo/glyphs/M_.glif new file mode 100644 index 00000000..bb6fcee0 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/M_.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-Black.ufo/glyphs/M_.ss01.glif b/sources/FixelText-Black.ufo/glyphs/M_.ss01.glif new file mode 100644 index 00000000..8a2de87b --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/M_.ss01.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H-25 + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-Black.ufo/glyphs/N_.glif b/sources/FixelText-Black.ufo/glyphs/N_.glif new file mode 100644 index 00000000..350b4a3c --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/N_.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-Black.ufo/glyphs/N_.ss01.glif b/sources/FixelText-Black.ufo/glyphs/N_.ss01.glif new file mode 100644 index 00000000..bea5dfdb --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/N_.ss01.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H-10 + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-Black.ufo/glyphs/N_U_L_L_.glif b/sources/FixelText-Black.ufo/glyphs/N_U_L_L_.glif new file mode 100644 index 00000000..1ad177ae --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/N_U_L_L_.glif @@ -0,0 +1,4 @@ + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/N_acute.glif b/sources/FixelText-Black.ufo/glyphs/N_acute.glif new file mode 100644 index 00000000..559a7182 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/N_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N+acute.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/N_acute.ss01.glif b/sources/FixelText-Black.ufo/glyphs/N_acute.ss01.glif new file mode 100644 index 00000000..3b31d51a --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/N_acute.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N.ss01+acute.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/N_caron.glif b/sources/FixelText-Black.ufo/glyphs/N_caron.glif new file mode 100644 index 00000000..8d37b241 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/N_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N+caron.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/N_caron.ss01.glif b/sources/FixelText-Black.ufo/glyphs/N_caron.ss01.glif new file mode 100644 index 00000000..63bdaa9e --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/N_caron.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N.ss01+caron.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/N_commaaccent.glif b/sources/FixelText-Black.ufo/glyphs/N_commaaccent.glif new file mode 100644 index 00000000..93907ec6 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/N_commaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N+commaaccentcomb + + + diff --git a/sources/FixelText-Black.ufo/glyphs/N_commaaccent.ss01.glif b/sources/FixelText-Black.ufo/glyphs/N_commaaccent.ss01.glif new file mode 100644 index 00000000..a2d00951 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/N_commaaccent.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N.ss01+commaaccentcomb + + + diff --git a/sources/FixelText-Black.ufo/glyphs/N_jecyr.glif b/sources/FixelText-Black.ufo/glyphs/N_jecyr.glif new file mode 100644 index 00000000..e9a9e435 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/N_jecyr.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Н + com.fontlab.metricsRight + Ь + + + diff --git a/sources/FixelText-Black.ufo/glyphs/N_jekomicyr.glif b/sources/FixelText-Black.ufo/glyphs/N_jekomicyr.glif new file mode 100644 index 00000000..8182ceba --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/N_jekomicyr.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + |u + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/N_tilde.glif b/sources/FixelText-Black.ufo/glyphs/N_tilde.glif new file mode 100644 index 00000000..c2ea94ba --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/N_tilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N+tilde.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/N_tilde.ss01.glif b/sources/FixelText-Black.ufo/glyphs/N_tilde.ss01.glif new file mode 100644 index 00000000..61618752 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/N_tilde.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N.ss01+tilde.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/O_-cy.accented.glif b/sources/FixelText-Black.ufo/glyphs/O_-cy.accented.glif new file mode 100644 index 00000000..1d7e39cd --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/O_-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+acute.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/O_-cy.glif b/sources/FixelText-Black.ufo/glyphs/O_-cy.glif new file mode 100644 index 00000000..d2362d2d --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/O_-cy.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O + + + diff --git a/sources/FixelText-Black.ufo/glyphs/O_.glif b/sources/FixelText-Black.ufo/glyphs/O_.glif new file mode 100644 index 00000000..df136e2d --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/O_.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/O_B_inocular-cy.glif b/sources/FixelText-Black.ufo/glyphs/O_B_inocular-cy.glif new file mode 100644 index 00000000..69509e60 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/O_B_inocular-cy.glif @@ -0,0 +1,81 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/O_D_oubleM_onocular-cy.glif b/sources/FixelText-Black.ufo/glyphs/O_D_oubleM_onocular-cy.glif new file mode 100644 index 00000000..8039218d --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/O_D_oubleM_onocular-cy.glif @@ -0,0 +1,119 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + com.fontlab.recipe + DoubleO-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/O_E_.glif b/sources/FixelText-Black.ufo/glyphs/O_E_.glif new file mode 100644 index 00000000..548991a8 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/O_E_.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + E + + + diff --git a/sources/FixelText-Black.ufo/glyphs/O_M_onocular-cy.glif b/sources/FixelText-Black.ufo/glyphs/O_M_onocular-cy.glif new file mode 100644 index 00000000..2f7f07cf --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/O_M_onocular-cy.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/O_acute.glif b/sources/FixelText-Black.ufo/glyphs/O_acute.glif new file mode 100644 index 00000000..8d62cb31 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/O_acute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+acute.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/O_barcyr.glif b/sources/FixelText-Black.ufo/glyphs/O_barcyr.glif new file mode 100644 index 00000000..c4c7e19a --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/O_barcyr.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + r() + com.fontlab.metricsRight + O + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/O_bardieresiscyr.glif b/sources/FixelText-Black.ufo/glyphs/O_bardieresiscyr.glif new file mode 100644 index 00000000..33c4a04f --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/O_bardieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Obarcyr+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/O_breve.glif b/sources/FixelText-Black.ufo/glyphs/O_breve.glif new file mode 100644 index 00000000..355d60e6 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/O_breve.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+breve.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/O_circumflex.glif b/sources/FixelText-Black.ufo/glyphs/O_circumflex.glif new file mode 100644 index 00000000..036f3a9f --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/O_circumflex.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+circumflex.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/O_dieresis.glif b/sources/FixelText-Black.ufo/glyphs/O_dieresis.glif new file mode 100644 index 00000000..dde1ed26 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/O_dieresis.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+dieresis.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/O_dieresiscyr.glif b/sources/FixelText-Black.ufo/glyphs/O_dieresiscyr.glif new file mode 100644 index 00000000..0c80c3e4 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/O_dieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/O_grave.glif b/sources/FixelText-Black.ufo/glyphs/O_grave.glif new file mode 100644 index 00000000..e1ffd731 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/O_grave.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+grave.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/O_hungarumlaut.glif b/sources/FixelText-Black.ufo/glyphs/O_hungarumlaut.glif new file mode 100644 index 00000000..cd3cda0a --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/O_hungarumlaut.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+hungarumlaut.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/O_macron.glif b/sources/FixelText-Black.ufo/glyphs/O_macron.glif new file mode 100644 index 00000000..b8856f30 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/O_macron.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+macron.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/O_mega.glif b/sources/FixelText-Black.ufo/glyphs/O_mega.glif new file mode 100644 index 00000000..4254d56d --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/O_mega.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O+10 + com.fontlab.metricsRight + O+10 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/O_megaB_road-cy.glif b/sources/FixelText-Black.ufo/glyphs/O_megaB_road-cy.glif new file mode 100644 index 00000000..0d0ce892 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/O_megaB_road-cy.glif @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O+10 + com.fontlab.metricsRight + O+10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/O_megacyr.glif b/sources/FixelText-Black.ufo/glyphs/O_megacyr.glif new file mode 100644 index 00000000..acddd4ee --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/O_megacyr.glif @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O+10 + com.fontlab.metricsRight + O+10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/O_megaroundcyr.glif b/sources/FixelText-Black.ufo/glyphs/O_megaroundcyr.glif new file mode 100644 index 00000000..1000ab3a --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/O_megaroundcyr.glif @@ -0,0 +1,81 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/O_megatitlocyr.glif b/sources/FixelText-Black.ufo/glyphs/O_megatitlocyr.glif new file mode 100644 index 00000000..a98235d5 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/O_megatitlocyr.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O+10 + com.fontlab.metricsRight + O+10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/O_slash.glif b/sources/FixelText-Black.ufo/glyphs/O_slash.glif new file mode 100644 index 00000000..732805a6 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/O_slash.glif @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-Black.ufo/glyphs/O_slashacute.glif b/sources/FixelText-Black.ufo/glyphs/O_slashacute.glif new file mode 100644 index 00000000..47c8d77e --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/O_slashacute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Oslash+acute.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/O_tcyr.glif b/sources/FixelText-Black.ufo/glyphs/O_tcyr.glif new file mode 100644 index 00000000..d661bb41 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/O_tcyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Omegacyr+uni2DEE.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/O_tilde.glif b/sources/FixelText-Black.ufo/glyphs/O_tilde.glif new file mode 100644 index 00000000..ba8d8323 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/O_tilde.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+tilde.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/P_.glif b/sources/FixelText-Black.ufo/glyphs/P_.glif new file mode 100644 index 00000000..0c158389 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/P_.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + + + diff --git a/sources/FixelText-Black.ufo/glyphs/P_alochkacyr.glif b/sources/FixelText-Black.ufo/glyphs/P_alochkacyr.glif new file mode 100644 index 00000000..c888ae7a --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/P_alochkacyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/P_e-cy.glif b/sources/FixelText-Black.ufo/glyphs/P_e-cy.glif new file mode 100644 index 00000000..bdb2403e --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/P_e-cy.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-Black.ufo/glyphs/P_ehookcyr.glif b/sources/FixelText-Black.ufo/glyphs/P_ehookcyr.glif new file mode 100644 index 00000000..8ad7f212 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/P_ehookcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + П + com.fontlab.metricsRight + Shhacyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/P_etailcyr.glif b/sources/FixelText-Black.ufo/glyphs/P_etailcyr.glif new file mode 100644 index 00000000..27d8a2fd --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/P_etailcyr.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/P_sicyr.glif b/sources/FixelText-Black.ufo/glyphs/P_sicyr.glif new file mode 100644 index 00000000..167234ea --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/P_sicyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + U-20 + com.fontlab.metricsRight + U-20 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/Q_.glif b/sources/FixelText-Black.ufo/glyphs/Q_.glif new file mode 100644 index 00000000..3d3f5d18 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/Q_.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-Black.ufo/glyphs/Q_.ss01.glif b/sources/FixelText-Black.ufo/glyphs/Q_.ss01.glif new file mode 100644 index 00000000..33118b16 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/Q_.ss01.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-Black.ufo/glyphs/Q_acyr.glif b/sources/FixelText-Black.ufo/glyphs/Q_acyr.glif new file mode 100644 index 00000000..25c193aa --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/Q_acyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Q + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/R_.glif b/sources/FixelText-Black.ufo/glyphs/R_.glif new file mode 100644 index 00000000..ca46701c --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/R_.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + + + diff --git a/sources/FixelText-Black.ufo/glyphs/R_acute.glif b/sources/FixelText-Black.ufo/glyphs/R_acute.glif new file mode 100644 index 00000000..b3e73c72 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/R_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + R+acute.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/R_caron.glif b/sources/FixelText-Black.ufo/glyphs/R_caron.glif new file mode 100644 index 00000000..5f1b9346 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/R_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + R+caron.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/R_commaaccent.glif b/sources/FixelText-Black.ufo/glyphs/R_commaaccent.glif new file mode 100644 index 00000000..3931b484 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/R_commaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + R+commaaccentcomb + + + diff --git a/sources/FixelText-Black.ufo/glyphs/R_eversedzecyr.glif b/sources/FixelText-Black.ufo/glyphs/R_eversedzecyr.glif new file mode 100644 index 00000000..a9ac5c60 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/R_eversedzecyr.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + + com.fontlab.metricsRight + + com.fontlab.recipe + З + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/R_hacyr.glif b/sources/FixelText-Black.ufo/glyphs/R_hacyr.glif new file mode 100644 index 00000000..5fd825e5 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/R_hacyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + P + com.fontlab.metricsRight + X + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/S_.glif b/sources/FixelText-Black.ufo/glyphs/S_.glif new file mode 100644 index 00000000..e48f2b82 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/S_.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/S_acute.glif b/sources/FixelText-Black.ufo/glyphs/S_acute.glif new file mode 100644 index 00000000..b3abf1c5 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/S_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + S+acute.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/S_caron.glif b/sources/FixelText-Black.ufo/glyphs/S_caron.glif new file mode 100644 index 00000000..78f96d0c --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/S_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + S+caron.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/S_cedilla.glif b/sources/FixelText-Black.ufo/glyphs/S_cedilla.glif new file mode 100644 index 00000000..fd1f19c4 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/S_cedilla.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + S+cedilla + + + diff --git a/sources/FixelText-Black.ufo/glyphs/S_chwa.glif b/sources/FixelText-Black.ufo/glyphs/S_chwa.glif new file mode 100644 index 00000000..91a24a74 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/S_chwa.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Schwacyr + + + diff --git a/sources/FixelText-Black.ufo/glyphs/S_chwacyr.glif b/sources/FixelText-Black.ufo/glyphs/S_chwacyr.glif new file mode 100644 index 00000000..3f29e5ec --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/S_chwacyr.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O-10 + com.fontlab.metricsRight + O + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/S_chwadieresiscyr.glif b/sources/FixelText-Black.ufo/glyphs/S_chwadieresiscyr.glif new file mode 100644 index 00000000..de319d35 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/S_chwadieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Schwacyr+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/S_circumflex.glif b/sources/FixelText-Black.ufo/glyphs/S_circumflex.glif new file mode 100644 index 00000000..dc941092 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/S_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + S+circumflex.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/S_commaaccent.glif b/sources/FixelText-Black.ufo/glyphs/S_commaaccent.glif new file mode 100644 index 00000000..9ceab9a8 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/S_commaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + S+commaaccentcomb + + + diff --git a/sources/FixelText-Black.ufo/glyphs/S_emisoftcyr.glif b/sources/FixelText-Black.ufo/glyphs/S_emisoftcyr.glif new file mode 100644 index 00000000..5f700036 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/S_emisoftcyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Yat + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/S_ha-cy.glif b/sources/FixelText-Black.ufo/glyphs/S_ha-cy.glif new file mode 100644 index 00000000..bb733d78 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/S_ha-cy.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-Black.ufo/glyphs/S_hcha-cy.glif b/sources/FixelText-Black.ufo/glyphs/S_hcha-cy.glif new file mode 100644 index 00000000..a3e7234f --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/S_hcha-cy.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Д + + + diff --git a/sources/FixelText-Black.ufo/glyphs/S_hhacyr.glif b/sources/FixelText-Black.ufo/glyphs/S_hhacyr.glif new file mode 100644 index 00000000..1c1ceeb7 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/S_hhacyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.metricsLeft + Н + com.fontlab.metricsRight + Tshecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/S_hhatailcyr.glif b/sources/FixelText-Black.ufo/glyphs/S_hhatailcyr.glif new file mode 100644 index 00000000..8df8ae15 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/S_hhatailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/S_hwe-cy.glif b/sources/FixelText-Black.ufo/glyphs/S_hwe-cy.glif new file mode 100644 index 00000000..8cb58cde --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/S_hwe-cy.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Щ + com.fontlab.metricsRight + Щ-20 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/S_jekomicyr.glif b/sources/FixelText-Black.ufo/glyphs/S_jekomicyr.glif new file mode 100644 index 00000000..de981812 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/S_jekomicyr.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + |Schwa + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/S_oftsign-cy.glif b/sources/FixelText-Black.ufo/glyphs/S_oftsign-cy.glif new file mode 100644 index 00000000..1f3254f3 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/S_oftsign-cy.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + P + + + diff --git a/sources/FixelText-Black.ufo/glyphs/T_.glif b/sources/FixelText-Black.ufo/glyphs/T_.glif new file mode 100644 index 00000000..0518cebc --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/T_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/T_bar.glif b/sources/FixelText-Black.ufo/glyphs/T_bar.glif new file mode 100644 index 00000000..d59e25d5 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/T_bar.glif @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/T_caron.glif b/sources/FixelText-Black.ufo/glyphs/T_caron.glif new file mode 100644 index 00000000..1857f7e0 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/T_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + T+caron.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/T_cedilla.glif b/sources/FixelText-Black.ufo/glyphs/T_cedilla.glif new file mode 100644 index 00000000..b0f265e2 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/T_cedilla.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + T+cedilla + + + diff --git a/sources/FixelText-Black.ufo/glyphs/T_che-cy.glif b/sources/FixelText-Black.ufo/glyphs/T_che-cy.glif new file mode 100644 index 00000000..4880aac7 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/T_che-cy.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Tetsecyr-20 + com.fontlab.metricsRight + Ч + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/T_commaaccent.glif b/sources/FixelText-Black.ufo/glyphs/T_commaaccent.glif new file mode 100644 index 00000000..b9d1ccb2 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/T_commaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + T+commaaccentcomb + + + diff --git a/sources/FixelText-Black.ufo/glyphs/T_e-cy.glif b/sources/FixelText-Black.ufo/glyphs/T_e-cy.glif new file mode 100644 index 00000000..a0296f3a --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/T_e-cy.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + com.fontlab.recipe + T + + + diff --git a/sources/FixelText-Black.ufo/glyphs/T_eW_ithM_iddleH_ook-cy.glif b/sources/FixelText-Black.ufo/glyphs/T_eW_ithM_iddleH_ook-cy.glif new file mode 100644 index 00000000..93d9eea9 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/T_eW_ithM_iddleH_ook-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Djecyr + com.fontlab.metricsRight + Gehookcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/T_etailcyr.glif b/sources/FixelText-Black.ufo/glyphs/T_etailcyr.glif new file mode 100644 index 00000000..cd102903 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/T_etailcyr.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/T_etsecyr.glif b/sources/FixelText-Black.ufo/glyphs/T_etsecyr.glif new file mode 100644 index 00000000..1b6a9cbe --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/T_etsecyr.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Tshecyr + com.fontlab.metricsRight + Ц + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/T_horn.glif b/sources/FixelText-Black.ufo/glyphs/T_horn.glif new file mode 100644 index 00000000..a5115f00 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/T_horn.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + P + + + diff --git a/sources/FixelText-Black.ufo/glyphs/T_jekomicyr.glif b/sources/FixelText-Black.ufo/glyphs/T_jekomicyr.glif new file mode 100644 index 00000000..fa52bd88 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/T_jekomicyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + Njekomicyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/T_se-cy.glif b/sources/FixelText-Black.ufo/glyphs/T_se-cy.glif new file mode 100644 index 00000000..63a1fc27 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/T_se-cy.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Д + + + diff --git a/sources/FixelText-Black.ufo/glyphs/T_seR_eversed-cy.glif b/sources/FixelText-Black.ufo/glyphs/T_seR_eversed-cy.glif new file mode 100644 index 00000000..26014332 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/T_seR_eversed-cy.glif @@ -0,0 +1,20 @@ + + + + + + + + + + com.fontlab.metricsLeft + + com.fontlab.metricsRight + H + com.fontlab.recipe + Ц + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/T_shecyr.glif b/sources/FixelText-Black.ufo/glyphs/T_shecyr.glif new file mode 100644 index 00000000..372e92b6 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/T_shecyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + n + + + diff --git a/sources/FixelText-Black.ufo/glyphs/T_sse-cy.glif b/sources/FixelText-Black.ufo/glyphs/T_sse-cy.glif new file mode 100644 index 00000000..f3bb3d64 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/T_sse-cy.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + T + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/T_swe-cy.glif b/sources/FixelText-Black.ufo/glyphs/T_swe-cy.glif new file mode 100644 index 00000000..b1a61a6b --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/T_swe-cy.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Shwe-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/T_we-cy.glif b/sources/FixelText-Black.ufo/glyphs/T_we-cy.glif new file mode 100644 index 00000000..85cf1bd3 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/T_we-cy.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + T + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/U_-cy.accented.glif b/sources/FixelText-Black.ufo/glyphs/U_-cy.accented.glif new file mode 100644 index 00000000..59748a39 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/U_-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + У+acute.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/U_-cy.glif b/sources/FixelText-Black.ufo/glyphs/U_-cy.glif new file mode 100644 index 00000000..74828f19 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/U_-cy.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Y+10 + com.fontlab.metricsRight + Y+5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/U_-cy.ss01.glif b/sources/FixelText-Black.ufo/glyphs/U_-cy.ss01.glif new file mode 100644 index 00000000..fbccf6f1 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/U_-cy.ss01.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/U_.glif b/sources/FixelText-Black.ufo/glyphs/U_.glif new file mode 100644 index 00000000..729875df --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/U_.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H-10 + com.fontlab.metricsRight + H-10 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/U_acute.glif b/sources/FixelText-Black.ufo/glyphs/U_acute.glif new file mode 100644 index 00000000..bcad838f --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/U_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+acute.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/U_acutedblcyr.glif b/sources/FixelText-Black.ufo/glyphs/U_acutedblcyr.glif new file mode 100644 index 00000000..eba39f6e --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/U_acutedblcyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U-cy+hungarumlaut.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/U_breve.glif b/sources/FixelText-Black.ufo/glyphs/U_breve.glif new file mode 100644 index 00000000..e9ab2a82 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/U_breve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+breve.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/U_circumflex.glif b/sources/FixelText-Black.ufo/glyphs/U_circumflex.glif new file mode 100644 index 00000000..597ebbef --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/U_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+circumflex.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/U_dieresis.glif b/sources/FixelText-Black.ufo/glyphs/U_dieresis.glif new file mode 100644 index 00000000..d7ae9ac9 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/U_dieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+dieresis.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/U_dieresiscyr.glif b/sources/FixelText-Black.ufo/glyphs/U_dieresiscyr.glif new file mode 100644 index 00000000..08c866eb --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/U_dieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/U_grave.glif b/sources/FixelText-Black.ufo/glyphs/U_grave.glif new file mode 100644 index 00000000..6f8b7287 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/U_grave.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+grave.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/U_hungarumlaut.glif b/sources/FixelText-Black.ufo/glyphs/U_hungarumlaut.glif new file mode 100644 index 00000000..4800a352 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/U_hungarumlaut.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+hungarumlaut.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/U_kM_onograph-cy.glif b/sources/FixelText-Black.ufo/glyphs/U_kM_onograph-cy.glif new file mode 100644 index 00000000..ab5b10cb --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/U_kM_onograph-cy.glif @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/U_kcyr.glif b/sources/FixelText-Black.ufo/glyphs/U_kcyr.glif new file mode 100644 index 00000000..3d8fdc9a --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/U_kcyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + y + com.fontlab.recipe + О_у + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/U_macron.glif b/sources/FixelText-Black.ufo/glyphs/U_macron.glif new file mode 100644 index 00000000..6ce45b93 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/U_macron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+macron.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/U_macroncyr.glif b/sources/FixelText-Black.ufo/glyphs/U_macroncyr.glif new file mode 100644 index 00000000..1afbf056 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/U_macroncyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U-cy+macron.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/U_ogonek.glif b/sources/FixelText-Black.ufo/glyphs/U_ogonek.glif new file mode 100644 index 00000000..606d272e --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/U_ogonek.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + U+ogonek + + + diff --git a/sources/FixelText-Black.ufo/glyphs/U_ring.glif b/sources/FixelText-Black.ufo/glyphs/U_ring.glif new file mode 100644 index 00000000..db2899ea --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/U_ring.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+ring.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/U_short-cy.glif b/sources/FixelText-Black.ufo/glyphs/U_short-cy.glif new file mode 100644 index 00000000..b42a99fa --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/U_short-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ucyr+breve.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/U_short-cy.ss01.glif b/sources/FixelText-Black.ufo/glyphs/U_short-cy.ss01.glif new file mode 100644 index 00000000..53139933 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/U_short-cy.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ucyr.ss01+breve.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/U_straightcyr.glif b/sources/FixelText-Black.ufo/glyphs/U_straightcyr.glif new file mode 100644 index 00000000..5c7ddc1e --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/U_straightcyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsRight + Y + com.fontlab.recipe + Y + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/U_straightstrokecyr.glif b/sources/FixelText-Black.ufo/glyphs/U_straightstrokecyr.glif new file mode 100644 index 00000000..6344d91a --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/U_straightstrokecyr.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/U_tilde.glif b/sources/FixelText-Black.ufo/glyphs/U_tilde.glif new file mode 100644 index 00000000..c58c5e29 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/U_tilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+tilde.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/V_.glif b/sources/FixelText-Black.ufo/glyphs/V_.glif new file mode 100644 index 00000000..019cdbed --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/V_.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/V_.ss01.glif b/sources/FixelText-Black.ufo/glyphs/V_.ss01.glif new file mode 100644 index 00000000..3463dda9 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/V_.ss01.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/V_e-cy.glif b/sources/FixelText-Black.ufo/glyphs/V_e-cy.glif new file mode 100644 index 00000000..e80de5b4 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/V_e-cy.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + B + + + diff --git a/sources/FixelText-Black.ufo/glyphs/W_.glif b/sources/FixelText-Black.ufo/glyphs/W_.glif new file mode 100644 index 00000000..eebddb59 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/W_.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/W_.ss01.glif b/sources/FixelText-Black.ufo/glyphs/W_.ss01.glif new file mode 100644 index 00000000..e258924f --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/W_.ss01.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |A + com.fontlab.metricsRight + |A + + + diff --git a/sources/FixelText-Black.ufo/glyphs/W_acute.glif b/sources/FixelText-Black.ufo/glyphs/W_acute.glif new file mode 100644 index 00000000..4c3f9f90 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/W_acute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W+acute.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/W_acute.ss01.glif b/sources/FixelText-Black.ufo/glyphs/W_acute.ss01.glif new file mode 100644 index 00000000..0a36c7b3 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/W_acute.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W.ss01+acute.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/W_circumflex.glif b/sources/FixelText-Black.ufo/glyphs/W_circumflex.glif new file mode 100644 index 00000000..2f8a444f --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/W_circumflex.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W+circumflex.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/W_circumflex.ss01.glif b/sources/FixelText-Black.ufo/glyphs/W_circumflex.ss01.glif new file mode 100644 index 00000000..545f9bdc --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/W_circumflex.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W.ss01+circumflex.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/W_dieresis.glif b/sources/FixelText-Black.ufo/glyphs/W_dieresis.glif new file mode 100644 index 00000000..fe9c5bec --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/W_dieresis.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + W+dieresis.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/W_dieresis.ss01.glif b/sources/FixelText-Black.ufo/glyphs/W_dieresis.ss01.glif new file mode 100644 index 00000000..8c5a50e8 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/W_dieresis.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W.ss01+dieresis.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/W_ecyr.glif b/sources/FixelText-Black.ufo/glyphs/W_ecyr.glif new file mode 100644 index 00000000..66cb9a55 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/W_ecyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/W_grave.glif b/sources/FixelText-Black.ufo/glyphs/W_grave.glif new file mode 100644 index 00000000..4b16136f --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/W_grave.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W+grave.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/W_grave.ss01.glif b/sources/FixelText-Black.ufo/glyphs/W_grave.ss01.glif new file mode 100644 index 00000000..2f06b5e9 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/W_grave.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W.ss01+grave.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/X_.glif b/sources/FixelText-Black.ufo/glyphs/X_.glif new file mode 100644 index 00000000..fb580735 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/X_.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/X_.ss01.glif b/sources/FixelText-Black.ufo/glyphs/X_.ss01.glif new file mode 100644 index 00000000..a92bca50 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/X_.ss01.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/X_atailcyr.glif b/sources/FixelText-Black.ufo/glyphs/X_atailcyr.glif new file mode 100644 index 00000000..5e163b4c --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/X_atailcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + X + com.fontlab.metricsRight + Katailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/Y_.glif b/sources/FixelText-Black.ufo/glyphs/Y_.glif new file mode 100644 index 00000000..9a2a8a45 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/Y_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/Y_.ss01.glif b/sources/FixelText-Black.ufo/glyphs/Y_.ss01.glif new file mode 100644 index 00000000..d574c0ae --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/Y_.ss01.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/Y_acute.glif b/sources/FixelText-Black.ufo/glyphs/Y_acute.glif new file mode 100644 index 00000000..7d778c67 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/Y_acute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y+acute.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/Y_acute.ss01.glif b/sources/FixelText-Black.ufo/glyphs/Y_acute.ss01.glif new file mode 100644 index 00000000..75113ab4 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/Y_acute.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y.ss01+acute.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/Y_aecyr.glif b/sources/FixelText-Black.ufo/glyphs/Y_aecyr.glif new file mode 100644 index 00000000..412df6d2 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/Y_aecyr.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Я + com.fontlab.metricsRight + E + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/Y_atI_otified-cy.glif b/sources/FixelText-Black.ufo/glyphs/Y_atI_otified-cy.glif new file mode 100644 index 00000000..282adb46 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/Y_atI_otified-cy.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + com.fontlab.metricsRight + Yatcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/Y_atcyr.glif b/sources/FixelText-Black.ufo/glyphs/Y_atcyr.glif new file mode 100644 index 00000000..ffdddee6 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/Y_atcyr.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Т + com.fontlab.metricsRight + Ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/Y_circumflex.glif b/sources/FixelText-Black.ufo/glyphs/Y_circumflex.glif new file mode 100644 index 00000000..ebf2d804 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/Y_circumflex.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y+circumflex.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/Y_circumflex.ss01.glif b/sources/FixelText-Black.ufo/glyphs/Y_circumflex.ss01.glif new file mode 100644 index 00000000..405f44c8 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/Y_circumflex.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y.ss01+circumflex.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/Y_dieresis.glif b/sources/FixelText-Black.ufo/glyphs/Y_dieresis.glif new file mode 100644 index 00000000..6be64397 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/Y_dieresis.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y+dieresis.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/Y_dieresis.ss01.glif b/sources/FixelText-Black.ufo/glyphs/Y_dieresis.ss01.glif new file mode 100644 index 00000000..e36a1cfd --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/Y_dieresis.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y.ss01+dieresis.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/Y_erN_eutral-cy.glif b/sources/FixelText-Black.ufo/glyphs/Y_erN_eutral-cy.glif new file mode 100644 index 00000000..2b9cc5d5 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/Y_erN_eutral-cy.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Hardsign-cy + com.fontlab.metricsRight + Ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/Y_eru-cy.accented.glif b/sources/FixelText-Black.ufo/glyphs/Y_eru-cy.accented.glif new file mode 100644 index 00000000..b8090355 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/Y_eru-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ы+acute.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/Y_eru-cy.glif b/sources/FixelText-Black.ufo/glyphs/Y_eru-cy.glif new file mode 100644 index 00000000..a181248d --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/Y_eru-cy.glif @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-Black.ufo/glyphs/Y_eru-cymacron.glif b/sources/FixelText-Black.ufo/glyphs/Y_eru-cymacron.glif new file mode 100644 index 00000000..6c7f77f1 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/Y_eru-cymacron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ы+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/Y_eruB_ackY_er-cy.glif b/sources/FixelText-Black.ufo/glyphs/Y_eruB_ackY_er-cy.glif new file mode 100644 index 00000000..e57d2730 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/Y_eruB_ackY_er-cy.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Hardsign + com.fontlab.metricsRight + I + com.fontlab.recipe + Hardsign-cy_I + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/Y_i-cy.glif b/sources/FixelText-Black.ufo/glyphs/Y_i-cy.glif new file mode 100644 index 00000000..c323ce4c --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/Y_i-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Idieresis + + + diff --git a/sources/FixelText-Black.ufo/glyphs/Y_longdieresiscyr.glif b/sources/FixelText-Black.ufo/glyphs/Y_longdieresiscyr.glif new file mode 100644 index 00000000..e4c73991 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/Y_longdieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Yeru-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/Y_n-cy.glif b/sources/FixelText-Black.ufo/glyphs/Y_n-cy.glif new file mode 100644 index 00000000..9ab6ba59 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/Y_n-cy.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |Izhitsa + com.fontlab.metricsRight + |Izhitsa + com.fontlab.recipe + Izhitsa + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/Y_uR_eversed-cy.glif b/sources/FixelText-Black.ufo/glyphs/Y_uR_eversed-cy.glif new file mode 100644 index 00000000..97cc34e8 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/Y_uR_eversed-cy.glif @@ -0,0 +1,20 @@ + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + H + com.fontlab.recipe + Ю + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/Y_usB_lended-cy.glif b/sources/FixelText-Black.ufo/glyphs/Y_usB_lended-cy.glif new file mode 100644 index 00000000..19d4c1d4 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/Y_usB_lended-cy.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Yusbigcyr + com.fontlab.metricsRight + Yusbigcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/Y_usC_losedlittle-cy.glif b/sources/FixelText-Black.ufo/glyphs/Y_usC_losedlittle-cy.glif new file mode 100644 index 00000000..6ee38904 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/Y_usC_losedlittle-cy.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + A + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/Y_usbigcyr.glif b/sources/FixelText-Black.ufo/glyphs/Y_usbigcyr.glif new file mode 100644 index 00000000..eff3c62b --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/Y_usbigcyr.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ж + com.fontlab.metricsRight + Ж + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/Y_usbigiotifiedcyr.glif b/sources/FixelText-Black.ufo/glyphs/Y_usbigiotifiedcyr.glif new file mode 100644 index 00000000..9dbc8f43 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/Y_usbigiotifiedcyr.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + Ж + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/Y_usiotifiedC_losedL_ittle-cy.glif b/sources/FixelText-Black.ufo/glyphs/Y_usiotifiedC_losedL_ittle-cy.glif new file mode 100644 index 00000000..e76d369d --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/Y_usiotifiedC_losedL_ittle-cy.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + A + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/Y_uslittlecyr.glif b/sources/FixelText-Black.ufo/glyphs/Y_uslittlecyr.glif new file mode 100644 index 00000000..5ad7ed00 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/Y_uslittlecyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + А-5 + com.fontlab.metricsRight + А-5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/Y_uslittleiotifiedcyr.glif b/sources/FixelText-Black.ufo/glyphs/Y_uslittleiotifiedcyr.glif new file mode 100644 index 00000000..94b5e2a8 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/Y_uslittleiotifiedcyr.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + А-5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/Z_.glif b/sources/FixelText-Black.ufo/glyphs/Z_.glif new file mode 100644 index 00000000..4b1578fb --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/Z_.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/Z_.ss01.glif b/sources/FixelText-Black.ufo/glyphs/Z_.ss01.glif new file mode 100644 index 00000000..d2db309b --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/Z_.ss01.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/Z_acute.glif b/sources/FixelText-Black.ufo/glyphs/Z_acute.glif new file mode 100644 index 00000000..d587450c --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/Z_acute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Z+acute.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/Z_acute.ss01.glif b/sources/FixelText-Black.ufo/glyphs/Z_acute.ss01.glif new file mode 100644 index 00000000..4b5880ff --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/Z_acute.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Z.ss01+acute.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/Z_caron.glif b/sources/FixelText-Black.ufo/glyphs/Z_caron.glif new file mode 100644 index 00000000..8139172a --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/Z_caron.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Z+caron.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/Z_caron.ss01.glif b/sources/FixelText-Black.ufo/glyphs/Z_caron.ss01.glif new file mode 100644 index 00000000..81aa2cc5 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/Z_caron.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Z.ss01+caron.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/Z_dotaccent.glif b/sources/FixelText-Black.ufo/glyphs/Z_dotaccent.glif new file mode 100644 index 00000000..f0ddf355 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/Z_dotaccent.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Z+dotaccent.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/Z_dotaccent.ss01.glif b/sources/FixelText-Black.ufo/glyphs/Z_dotaccent.ss01.glif new file mode 100644 index 00000000..d2790a63 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/Z_dotaccent.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Z.ss01+dotaccent.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/Z_e-cy.glif b/sources/FixelText-Black.ufo/glyphs/Z_e-cy.glif new file mode 100644 index 00000000..910bc866 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/Z_e-cy.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |C + com.fontlab.metricsRight + B + + + diff --git a/sources/FixelText-Black.ufo/glyphs/Z_edieresiscyr.glif b/sources/FixelText-Black.ufo/glyphs/Z_edieresiscyr.glif new file mode 100644 index 00000000..efda3a70 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/Z_edieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ze-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/Z_emlya-cy.glif b/sources/FixelText-Black.ufo/glyphs/Z_emlya-cy.glif new file mode 100644 index 00000000..626eddbb --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/Z_emlya-cy.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Z-10 + com.fontlab.metricsRight + Z + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/Z_etailcyr.B_S_H_.glif b/sources/FixelText-Black.ufo/glyphs/Z_etailcyr.B_S_H_.glif new file mode 100644 index 00000000..744c8274 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/Z_etailcyr.B_S_H_.glif @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + З + com.fontlab.metricsRight + З + com.fontlab.recipe + Zetailcyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/Z_etailcyr.glif b/sources/FixelText-Black.ufo/glyphs/Z_etailcyr.glif new file mode 100644 index 00000000..cff67d41 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/Z_etailcyr.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + З + com.fontlab.metricsRight + З + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/Z_he-cy.glif b/sources/FixelText-Black.ufo/glyphs/Z_he-cy.glif new file mode 100644 index 00000000..01b45b4c --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/Z_he-cy.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |K + com.fontlab.metricsRight + K + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/Z_he-cy.ss01.glif b/sources/FixelText-Black.ufo/glyphs/Z_he-cy.ss01.glif new file mode 100644 index 00000000..2a490302 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/Z_he-cy.ss01.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |K + com.fontlab.metricsRight + K + + + diff --git a/sources/FixelText-Black.ufo/glyphs/Z_hebrevecyr.glif b/sources/FixelText-Black.ufo/glyphs/Z_hebrevecyr.glif new file mode 100644 index 00000000..cf0a7c92 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/Z_hebrevecyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Zhe-cy+breve.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/Z_hedieresiscyr.glif b/sources/FixelText-Black.ufo/glyphs/Z_hedieresiscyr.glif new file mode 100644 index 00000000..b9061f96 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/Z_hedieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Zhe-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/Z_hetailcyr.glif b/sources/FixelText-Black.ufo/glyphs/Z_hetailcyr.glif new file mode 100644 index 00000000..5adcc295 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/Z_hetailcyr.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ж + com.fontlab.metricsRight + Katailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/Z_hwe-cy.glif b/sources/FixelText-Black.ufo/glyphs/Z_hwe-cy.glif new file mode 100644 index 00000000..fbb2afbb --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/Z_hwe-cy.glif @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + З + com.fontlab.metricsRight + Ж + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/Z_jekomicyr.glif b/sources/FixelText-Black.ufo/glyphs/Z_jekomicyr.glif new file mode 100644 index 00000000..13c9c204 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/Z_jekomicyr.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Dzjekomicyr + com.fontlab.metricsRight + Njekomicyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/_notdef.glif b/sources/FixelText-Black.ufo/glyphs/_notdef.glif new file mode 100644 index 00000000..7261060b --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/_notdef.glif @@ -0,0 +1,178 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + =55 + com.schriftgestaltung.Glyphs.rightMetricsKey + =55 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/_perc-circule.glif b/sources/FixelText-Black.ufo/glyphs/_perc-circule.glif new file mode 100644 index 00000000..422d01ab --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/_perc-circule.glif @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.schriftgestaltung.Glyphs.Export + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/a-cy.accented.glif b/sources/FixelText-Black.ufo/glyphs/a-cy.accented.glif new file mode 100644 index 00000000..b0b399e6 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/a-cy.accented.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+acute + + + diff --git a/sources/FixelText-Black.ufo/glyphs/a-cy.glif b/sources/FixelText-Black.ufo/glyphs/a-cy.glif new file mode 100644 index 00000000..7297818c --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/a-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a + + + diff --git a/sources/FixelText-Black.ufo/glyphs/a-cy.ss01.glif b/sources/FixelText-Black.ufo/glyphs/a-cy.ss01.glif new file mode 100644 index 00000000..70a8b1db --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/a-cy.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/a.glif b/sources/FixelText-Black.ufo/glyphs/a.glif new file mode 100644 index 00000000..8d7ce535 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/a.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + n-10 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/a.ss01.glif b/sources/FixelText-Black.ufo/glyphs/a.ss01.glif new file mode 100644 index 00000000..a7a5343e --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/a.ss01.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/aacute.glif b/sources/FixelText-Black.ufo/glyphs/aacute.glif new file mode 100644 index 00000000..a90fdb83 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/aacute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+acute + + + diff --git a/sources/FixelText-Black.ufo/glyphs/aacute.ss01.glif b/sources/FixelText-Black.ufo/glyphs/aacute.ss01.glif new file mode 100644 index 00000000..1164c116 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/aacute.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+acute + + + diff --git a/sources/FixelText-Black.ufo/glyphs/abreve.glif b/sources/FixelText-Black.ufo/glyphs/abreve.glif new file mode 100644 index 00000000..07c6bc2c --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/abreve.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+breve + + + diff --git a/sources/FixelText-Black.ufo/glyphs/abreve.ss01.glif b/sources/FixelText-Black.ufo/glyphs/abreve.ss01.glif new file mode 100644 index 00000000..833a0900 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/abreve.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+breve + + + diff --git a/sources/FixelText-Black.ufo/glyphs/abrevecyr.glif b/sources/FixelText-Black.ufo/glyphs/abrevecyr.glif new file mode 100644 index 00000000..2d3116a4 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/abrevecyr.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+breve + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/acaron.glif b/sources/FixelText-Black.ufo/glyphs/acaron.glif new file mode 100644 index 00000000..0d380300 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/acaron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+caron + + + diff --git a/sources/FixelText-Black.ufo/glyphs/acircumflex.glif b/sources/FixelText-Black.ufo/glyphs/acircumflex.glif new file mode 100644 index 00000000..e274320a --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/acircumflex.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+circumflex + + + diff --git a/sources/FixelText-Black.ufo/glyphs/acircumflex.ss01.glif b/sources/FixelText-Black.ufo/glyphs/acircumflex.ss01.glif new file mode 100644 index 00000000..a6459b73 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/acircumflex.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+circumflex + + + diff --git a/sources/FixelText-Black.ufo/glyphs/acute.case.glif b/sources/FixelText-Black.ufo/glyphs/acute.case.glif new file mode 100644 index 00000000..e16fdd30 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/acute.case.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/acute.glif b/sources/FixelText-Black.ufo/glyphs/acute.glif new file mode 100644 index 00000000..c930b461 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/acute.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/adieresis.glif b/sources/FixelText-Black.ufo/glyphs/adieresis.glif new file mode 100644 index 00000000..75c96349 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/adieresis.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+dieresis + + + diff --git a/sources/FixelText-Black.ufo/glyphs/adieresis.ss01.glif b/sources/FixelText-Black.ufo/glyphs/adieresis.ss01.glif new file mode 100644 index 00000000..5a8b51bf --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/adieresis.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+dieresis + + + diff --git a/sources/FixelText-Black.ufo/glyphs/adieresiscyr.glif b/sources/FixelText-Black.ufo/glyphs/adieresiscyr.glif new file mode 100644 index 00000000..79a8d81d --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/adieresiscyr.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/ae.glif b/sources/FixelText-Black.ufo/glyphs/ae.glif new file mode 100644 index 00000000..35b0b53e --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/ae.glif @@ -0,0 +1,101 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + a + com.fontlab.metricsRight + e + + + diff --git a/sources/FixelText-Black.ufo/glyphs/ae.ss01.glif b/sources/FixelText-Black.ufo/glyphs/ae.ss01.glif new file mode 100644 index 00000000..30ee12d5 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/ae.ss01.glif @@ -0,0 +1,96 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + a + com.fontlab.metricsRight + e.ss01 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/aeacute.glif b/sources/FixelText-Black.ufo/glyphs/aeacute.glif new file mode 100644 index 00000000..30421915 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/aeacute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ae+acute + + + diff --git a/sources/FixelText-Black.ufo/glyphs/agrave.glif b/sources/FixelText-Black.ufo/glyphs/agrave.glif new file mode 100644 index 00000000..e17171f6 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/agrave.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+grave + + + diff --git a/sources/FixelText-Black.ufo/glyphs/agrave.ss01.glif b/sources/FixelText-Black.ufo/glyphs/agrave.ss01.glif new file mode 100644 index 00000000..2037334c --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/agrave.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+grave + + + diff --git a/sources/FixelText-Black.ufo/glyphs/aiecyr.glif b/sources/FixelText-Black.ufo/glyphs/aiecyr.glif new file mode 100644 index 00000000..112647f5 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/aiecyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ae + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/amacron.glif b/sources/FixelText-Black.ufo/glyphs/amacron.glif new file mode 100644 index 00000000..2405b250 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/amacron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+macron + + + diff --git a/sources/FixelText-Black.ufo/glyphs/amacron.ss01.glif b/sources/FixelText-Black.ufo/glyphs/amacron.ss01.glif new file mode 100644 index 00000000..65171f1b --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/amacron.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+macron + + + diff --git a/sources/FixelText-Black.ufo/glyphs/ampersand.glif b/sources/FixelText-Black.ufo/glyphs/ampersand.glif new file mode 100644 index 00000000..d5225f36 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/ampersand.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/aogonek.glif b/sources/FixelText-Black.ufo/glyphs/aogonek.glif new file mode 100644 index 00000000..2cd1b96d --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/aogonek.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+ogonek + + + diff --git a/sources/FixelText-Black.ufo/glyphs/aogonek.ss01.glif b/sources/FixelText-Black.ufo/glyphs/aogonek.ss01.glif new file mode 100644 index 00000000..8ca11b77 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/aogonek.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+ogonek + + + diff --git a/sources/FixelText-Black.ufo/glyphs/apostrophemod.glif b/sources/FixelText-Black.ufo/glyphs/apostrophemod.glif new file mode 100644 index 00000000..53445d3e --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/apostrophemod.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + apostrophe + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/approxequal.glif b/sources/FixelText-Black.ufo/glyphs/approxequal.glif new file mode 100644 index 00000000..a747acdc --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/approxequal.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/aring.glif b/sources/FixelText-Black.ufo/glyphs/aring.glif new file mode 100644 index 00000000..b5b24fa3 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/aring.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+ring + + + diff --git a/sources/FixelText-Black.ufo/glyphs/aring.ss01.glif b/sources/FixelText-Black.ufo/glyphs/aring.ss01.glif new file mode 100644 index 00000000..214bc55c --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/aring.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+ring + + + diff --git a/sources/FixelText-Black.ufo/glyphs/arrowdown.case.glif b/sources/FixelText-Black.ufo/glyphs/arrowdown.case.glif new file mode 100644 index 00000000..10624cf2 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/arrowdown.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + arrowup + com.fontlab.metricsRight + arrowup + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/arrowdown.glif b/sources/FixelText-Black.ufo/glyphs/arrowdown.glif new file mode 100644 index 00000000..d32a0dd5 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/arrowdown.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + arrowup + com.fontlab.metricsRight + arrowup + + + diff --git a/sources/FixelText-Black.ufo/glyphs/arrowdown.ss01.case.glif b/sources/FixelText-Black.ufo/glyphs/arrowdown.ss01.case.glif new file mode 100644 index 00000000..473aa67d --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/arrowdown.ss01.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + arrowup + com.fontlab.metricsRight + arrowup + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/arrowdown.ss01.glif b/sources/FixelText-Black.ufo/glyphs/arrowdown.ss01.glif new file mode 100644 index 00000000..3fb2a14d --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/arrowdown.ss01.glif @@ -0,0 +1,15 @@ + + + + + + + + + com.fontlab.metricsLeft + arrowup + com.fontlab.metricsRight + arrowup + + + diff --git a/sources/FixelText-Black.ufo/glyphs/arrowleft.case.glif b/sources/FixelText-Black.ufo/glyphs/arrowleft.case.glif new file mode 100644 index 00000000..d7ca9fb6 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/arrowleft.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + arrowleft + com.fontlab.metricsRight + arrowleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/arrowleft.glif b/sources/FixelText-Black.ufo/glyphs/arrowleft.glif new file mode 100644 index 00000000..33617960 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/arrowleft.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/arrowleft.ss01.case.glif b/sources/FixelText-Black.ufo/glyphs/arrowleft.ss01.case.glif new file mode 100644 index 00000000..eec0ce17 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/arrowleft.ss01.case.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + arrowleft + com.fontlab.metricsRight + arrowleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/arrowleft.ss01.glif b/sources/FixelText-Black.ufo/glyphs/arrowleft.ss01.glif new file mode 100644 index 00000000..9fbc5da0 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/arrowleft.ss01.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + arrowleft + com.fontlab.metricsRight + arrowleft + + + diff --git a/sources/FixelText-Black.ufo/glyphs/arrowright.case.glif b/sources/FixelText-Black.ufo/glyphs/arrowright.case.glif new file mode 100644 index 00000000..77a1c560 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/arrowright.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |arrowleft + com.fontlab.metricsRight + |arrowleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/arrowright.glif b/sources/FixelText-Black.ufo/glyphs/arrowright.glif new file mode 100644 index 00000000..4f05acc0 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/arrowright.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + |arrowleft + com.fontlab.metricsRight + |arrowleft + + + diff --git a/sources/FixelText-Black.ufo/glyphs/arrowright.ss01.case.glif b/sources/FixelText-Black.ufo/glyphs/arrowright.ss01.case.glif new file mode 100644 index 00000000..d0913253 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/arrowright.ss01.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |arrowleft + com.fontlab.metricsRight + |arrowleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/arrowright.ss01.glif b/sources/FixelText-Black.ufo/glyphs/arrowright.ss01.glif new file mode 100644 index 00000000..81669a7f --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/arrowright.ss01.glif @@ -0,0 +1,15 @@ + + + + + + + + + com.fontlab.metricsLeft + |arrowleft + com.fontlab.metricsRight + |arrowleft + + + diff --git a/sources/FixelText-Black.ufo/glyphs/arrowup.case.glif b/sources/FixelText-Black.ufo/glyphs/arrowup.case.glif new file mode 100644 index 00000000..d13e6cc9 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/arrowup.case.glif @@ -0,0 +1,15 @@ + + + + + + + + + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/arrowup.glif b/sources/FixelText-Black.ufo/glyphs/arrowup.glif new file mode 100644 index 00000000..c14891ff --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/arrowup.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + l() + + + diff --git a/sources/FixelText-Black.ufo/glyphs/arrowup.ss01.case.glif b/sources/FixelText-Black.ufo/glyphs/arrowup.ss01.case.glif new file mode 100644 index 00000000..c346477d --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/arrowup.ss01.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + arrowup + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/arrowup.ss01.glif b/sources/FixelText-Black.ufo/glyphs/arrowup.ss01.glif new file mode 100644 index 00000000..253b9e69 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/arrowup.ss01.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + arrowup + com.fontlab.metricsRight + l() + + + diff --git a/sources/FixelText-Black.ufo/glyphs/asciicircum.glif b/sources/FixelText-Black.ufo/glyphs/asciicircum.glif new file mode 100644 index 00000000..00851eef --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/asciicircum.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/asciitilde.glif b/sources/FixelText-Black.ufo/glyphs/asciitilde.glif new file mode 100644 index 00000000..76683871 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/asciitilde.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/asterisk.glif b/sources/FixelText-Black.ufo/glyphs/asterisk.glif new file mode 100644 index 00000000..8878ee26 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/asterisk.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/at.case.glif b/sources/FixelText-Black.ufo/glyphs/at.case.glif new file mode 100644 index 00000000..68187a18 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/at.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/at.glif b/sources/FixelText-Black.ufo/glyphs/at.glif new file mode 100644 index 00000000..974bcc0c --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/at.glif @@ -0,0 +1,92 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-Black.ufo/glyphs/atilde.glif b/sources/FixelText-Black.ufo/glyphs/atilde.glif new file mode 100644 index 00000000..36eccbfd --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/atilde.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+tilde + + + diff --git a/sources/FixelText-Black.ufo/glyphs/atilde.ss01.glif b/sources/FixelText-Black.ufo/glyphs/atilde.ss01.glif new file mode 100644 index 00000000..5731ae1b --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/atilde.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+tilde + + + diff --git a/sources/FixelText-Black.ufo/glyphs/b.glif b/sources/FixelText-Black.ufo/glyphs/b.glif new file mode 100644 index 00000000..944f97cc --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/b.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelText-Black.ufo/glyphs/b.ss01.glif b/sources/FixelText-Black.ufo/glyphs/b.ss01.glif new file mode 100644 index 00000000..4b80db42 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/b.ss01.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/backslash.case.glif b/sources/FixelText-Black.ufo/glyphs/backslash.case.glif new file mode 100644 index 00000000..c0b73dbc --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/backslash.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + backslash + com.fontlab.metricsRight + backslash + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/backslash.glif b/sources/FixelText-Black.ufo/glyphs/backslash.glif new file mode 100644 index 00000000..762b0d2f --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/backslash.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/bar.case.glif b/sources/FixelText-Black.ufo/glyphs/bar.case.glif new file mode 100644 index 00000000..880f8fe0 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/bar.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + H-10 + com.fontlab.metricsRight + H-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/bar.glif b/sources/FixelText-Black.ufo/glyphs/bar.glif new file mode 100644 index 00000000..5b70caf6 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/bar.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H-10 + com.fontlab.metricsRight + H-10 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/be-cy.S_R_B_.glif b/sources/FixelText-Black.ufo/glyphs/be-cy.S_R_B_.glif new file mode 100644 index 00000000..07c29878 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/be-cy.S_R_B_.glif @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/be-cy.glif b/sources/FixelText-Black.ufo/glyphs/be-cy.glif new file mode 100644 index 00000000..f0eaa67c --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/be-cy.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelText-Black.ufo/glyphs/bishopblack.glif b/sources/FixelText-Black.ufo/glyphs/bishopblack.glif new file mode 100644 index 00000000..38979586 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/bishopblack.glif @@ -0,0 +1,241 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =10 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/bishopwhite.glif b/sources/FixelText-Black.ufo/glyphs/bishopwhite.glif new file mode 100644 index 00000000..e98b8712 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/bishopwhite.glif @@ -0,0 +1,331 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/braceleft.case.glif b/sources/FixelText-Black.ufo/glyphs/braceleft.case.glif new file mode 100644 index 00000000..ed6776e6 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/braceleft.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |braceright.case + com.fontlab.metricsRight + |braceright.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/braceleft.glif b/sources/FixelText-Black.ufo/glyphs/braceleft.glif new file mode 100644 index 00000000..f1527d5a --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/braceleft.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/braceright.case.glif b/sources/FixelText-Black.ufo/glyphs/braceright.case.glif new file mode 100644 index 00000000..1172bc75 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/braceright.case.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/braceright.glif b/sources/FixelText-Black.ufo/glyphs/braceright.glif new file mode 100644 index 00000000..3997f4d4 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/braceright.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/bracketangleleft.case.glif b/sources/FixelText-Black.ufo/glyphs/bracketangleleft.case.glif new file mode 100644 index 00000000..f3d23533 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/bracketangleleft.case.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + parenleft.case + com.fontlab.metricsRight + parenleft.case + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/bracketangleleft.glif b/sources/FixelText-Black.ufo/glyphs/bracketangleleft.glif new file mode 100644 index 00000000..c6cee164 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/bracketangleleft.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + parenleft + com.fontlab.metricsRight + parenleft + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/bracketangleright.case.glif b/sources/FixelText-Black.ufo/glyphs/bracketangleright.case.glif new file mode 100644 index 00000000..4f859cb4 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/bracketangleright.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |bracketangleleft.case + com.fontlab.metricsRight + |bracketangleleft.case + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/bracketangleright.glif b/sources/FixelText-Black.ufo/glyphs/bracketangleright.glif new file mode 100644 index 00000000..c5b03783 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/bracketangleright.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.metricsLeft + |bracketangleleft + com.fontlab.metricsRight + |bracketangleleft + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/bracketleft.case.glif b/sources/FixelText-Black.ufo/glyphs/bracketleft.case.glif new file mode 100644 index 00000000..a8d9ef61 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/bracketleft.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |bracketright.case + com.fontlab.metricsRight + |bracketright.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/bracketleft.glif b/sources/FixelText-Black.ufo/glyphs/bracketleft.glif new file mode 100644 index 00000000..48a42484 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/bracketleft.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + + + diff --git a/sources/FixelText-Black.ufo/glyphs/bracketright.case.glif b/sources/FixelText-Black.ufo/glyphs/bracketright.case.glif new file mode 100644 index 00000000..61c24823 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/bracketright.case.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |bracketleft + com.fontlab.metricsRight + |bracketleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/bracketright.glif b/sources/FixelText-Black.ufo/glyphs/bracketright.glif new file mode 100644 index 00000000..6e77df42 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/bracketright.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |bracketleft + com.fontlab.metricsRight + |bracketleft + + + diff --git a/sources/FixelText-Black.ufo/glyphs/breve.case.glif b/sources/FixelText-Black.ufo/glyphs/breve.case.glif new file mode 100644 index 00000000..c375f71b --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/breve.case.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/breve.glif b/sources/FixelText-Black.ufo/glyphs/breve.glif new file mode 100644 index 00000000..8e17c203 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/breve.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/brokenbar.case.glif b/sources/FixelText-Black.ufo/glyphs/brokenbar.case.glif new file mode 100644 index 00000000..761cc977 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/brokenbar.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + bar + com.fontlab.metricsRight + bar + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/brokenbar.glif b/sources/FixelText-Black.ufo/glyphs/brokenbar.glif new file mode 100644 index 00000000..2c2e33c3 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/brokenbar.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + bar + com.fontlab.metricsRight + bar + + + diff --git a/sources/FixelText-Black.ufo/glyphs/bullet.case.glif b/sources/FixelText-Black.ufo/glyphs/bullet.case.glif new file mode 100644 index 00000000..2af784e9 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/bullet.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + period + com.fontlab.metricsRight + period + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/bullet.glif b/sources/FixelText-Black.ufo/glyphs/bullet.glif new file mode 100644 index 00000000..de9e45b0 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/bullet.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + period + com.fontlab.metricsRight + period + + + diff --git a/sources/FixelText-Black.ufo/glyphs/c.glif b/sources/FixelText-Black.ufo/glyphs/c.glif new file mode 100644 index 00000000..50eade2d --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/c.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + + + diff --git a/sources/FixelText-Black.ufo/glyphs/cacute.glif b/sources/FixelText-Black.ufo/glyphs/cacute.glif new file mode 100644 index 00000000..48a8fac4 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/cacute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+acute + + + diff --git a/sources/FixelText-Black.ufo/glyphs/caron.case.glif b/sources/FixelText-Black.ufo/glyphs/caron.case.glif new file mode 100644 index 00000000..a55f8a60 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/caron.case.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/caron.glif b/sources/FixelText-Black.ufo/glyphs/caron.glif new file mode 100644 index 00000000..77af8e25 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/caron.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/caron.salt.glif b/sources/FixelText-Black.ufo/glyphs/caron.salt.glif new file mode 100644 index 00000000..5f304916 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/caron.salt.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/ccaron.glif b/sources/FixelText-Black.ufo/glyphs/ccaron.glif new file mode 100644 index 00000000..ad627d6c --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/ccaron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+caron + + + diff --git a/sources/FixelText-Black.ufo/glyphs/ccedilla.glif b/sources/FixelText-Black.ufo/glyphs/ccedilla.glif new file mode 100644 index 00000000..904106f1 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/ccedilla.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+cedilla + + + diff --git a/sources/FixelText-Black.ufo/glyphs/cche-cy.glif b/sources/FixelText-Black.ufo/glyphs/cche-cy.glif new file mode 100644 index 00000000..b4564358 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/cche-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ч + com.fontlab.metricsRight + ч + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/ccircumflex.glif b/sources/FixelText-Black.ufo/glyphs/ccircumflex.glif new file mode 100644 index 00000000..3f6332de --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/ccircumflex.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+circumflex + + + diff --git a/sources/FixelText-Black.ufo/glyphs/cdotaccent.glif b/sources/FixelText-Black.ufo/glyphs/cdotaccent.glif new file mode 100644 index 00000000..6a35deee --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/cdotaccent.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+dotaccent + + + diff --git a/sources/FixelText-Black.ufo/glyphs/cedilla.glif b/sources/FixelText-Black.ufo/glyphs/cedilla.glif new file mode 100644 index 00000000..ea416b78 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/cedilla.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/cent.glif b/sources/FixelText-Black.ufo/glyphs/cent.glif new file mode 100644 index 00000000..317d6b3b --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/cent.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + c + com.fontlab.metricsRight + c + + + diff --git a/sources/FixelText-Black.ufo/glyphs/che-cy.glif b/sources/FixelText-Black.ufo/glyphs/che-cy.glif new file mode 100644 index 00000000..dcc9b8bd --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/che-cy.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + u-10 + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelText-Black.ufo/glyphs/cheabkhcyr.glif b/sources/FixelText-Black.ufo/glyphs/cheabkhcyr.glif new file mode 100644 index 00000000..607ce2ed --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/cheabkhcyr.glif @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + e + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/cheabkhtailcyr.glif b/sources/FixelText-Black.ufo/glyphs/cheabkhtailcyr.glif new file mode 100644 index 00000000..9f93b93c --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/cheabkhtailcyr.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + cheabkhcyr + com.fontlab.metricsRight + cheabkhcyr + com.fontlab.recipe + cheabkhcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/chedieresiscyr.glif b/sources/FixelText-Black.ufo/glyphs/chedieresiscyr.glif new file mode 100644 index 00000000..44448c43 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/chedieresiscyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + che-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/chekhakascyr.glif b/sources/FixelText-Black.ufo/glyphs/chekhakascyr.glif new file mode 100644 index 00000000..c5274d85 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/chekhakascyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ч + com.fontlab.metricsRight + н + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/chetailcyr.glif b/sources/FixelText-Black.ufo/glyphs/chetailcyr.glif new file mode 100644 index 00000000..9780090f --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/chetailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ч + com.fontlab.metricsRight + entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/chevertcyr.glif b/sources/FixelText-Black.ufo/glyphs/chevertcyr.glif new file mode 100644 index 00000000..5765322d --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/chevertcyr.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ч + com.fontlab.metricsRight + н + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/circumflex.case.glif b/sources/FixelText-Black.ufo/glyphs/circumflex.case.glif new file mode 100644 index 00000000..f7aeabdb --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/circumflex.case.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/circumflex.glif b/sources/FixelText-Black.ufo/glyphs/circumflex.glif new file mode 100644 index 00000000..54db7e82 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/circumflex.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/clubwhite.glif b/sources/FixelText-Black.ufo/glyphs/clubwhite.glif new file mode 100644 index 00000000..87514281 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/clubwhite.glif @@ -0,0 +1,155 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/colon.case.glif b/sources/FixelText-Black.ufo/glyphs/colon.case.glif new file mode 100644 index 00000000..4a826308 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/colon.case.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/colon.glif b/sources/FixelText-Black.ufo/glyphs/colon.glif new file mode 100644 index 00000000..9f9b4d62 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/colon.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/colontriangularmod.glif b/sources/FixelText-Black.ufo/glyphs/colontriangularmod.glif new file mode 100644 index 00000000..7bf772a1 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/colontriangularmod.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + colon + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/comma.glif b/sources/FixelText-Black.ufo/glyphs/comma.glif new file mode 100644 index 00000000..d7cf447a --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/comma.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/commaaccentcomb.glif b/sources/FixelText-Black.ufo/glyphs/commaaccentcomb.glif new file mode 100644 index 00000000..7eae388f --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/commaaccentcomb.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/commaaccentcomb.salt.glif b/sources/FixelText-Black.ufo/glyphs/commaaccentcomb.salt.glif new file mode 100644 index 00000000..bcc717fb --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/commaaccentcomb.salt.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/contents.plist b/sources/FixelText-Black.ufo/glyphs/contents.plist new file mode 100644 index 00000000..2830b2de --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/contents.plist @@ -0,0 +1,2352 @@ + + + + + .notdef + _notdef.glif + A + A_.glif + A-cy + A_-cy.glif + A-cy.accented + A_-cy.accented.glif + A-cy.ss01 + A_-cy.ss01.glif + A.ss01 + A_.ss01.glif + AE + A_E_.glif + AE.ss01 + A_E_.ss01.glif + AEacute + A_E_acute.glif + Aacute + A_acute.glif + Aacute.ss01 + A_acute.ss01.glif + Abreve + A_breve.glif + Abreve.ss01 + A_breve.ss01.glif + Abrevecyr + A_brevecyr.glif + Acaron + A_caron.glif + Acircumflex + A_circumflex.glif + Acircumflex.ss01 + A_circumflex.ss01.glif + Adieresis + A_dieresis.glif + Adieresis.ss01 + A_dieresis.ss01.glif + Adieresiscyr + A_dieresiscyr.glif + Agrave + A_grave.glif + Agrave.ss01 + A_grave.ss01.glif + Aiecyr + A_iecyr.glif + Amacron + A_macron.glif + Amacron.ss01 + A_macron.ss01.glif + Aogonek + A_ogonek.glif + Aogonek.ss01 + A_ogonek.ss01.glif + Aring + A_ring.glif + Aring.ss01 + A_ring.ss01.glif + Atilde + A_tilde.glif + Atilde.ss01 + A_tilde.ss01.glif + B + B_.glif + Be-cy + B_e-cy.glif + C + C_.glif + CR + C_R_.glif + Cacute + C_acute.glif + Ccaron + C_caron.glif + Ccedilla + C_cedilla.glif + Cche-cy + C_che-cy.glif + Ccircumflex + C_circumflex.glif + Cdotaccent + C_dotaccent.glif + Che-cy + C_he-cy.glif + Cheabkhcyr + C_heabkhcyr.glif + Cheabkhtailcyr + C_heabkhtailcyr.glif + Chedieresiscyr + C_hedieresiscyr.glif + Chekhakascyr + C_hekhakascyr.glif + Chetailcyr + C_hetailcyr.glif + Chevertcyr + C_hevertcyr.glif + CrossedO-cy + C_rossedO_-cy.glif + D + D_.glif + Dcaron + D_caron.glif + Dchecyr + D_checyr.glif + Dcroat + D_croat.glif + De-cy + D_e-cy.glif + De-cy.BGR + D_e-cy.B_G_R_.glif + DeSoft-cy + D_eS_oft-cy.glif + Dekomicyr + D_ekomicyr.glif + Delta + D_elta.glif + Djecyr + D_jecyr.glif + Djekomicyr + D_jekomicyr.glif + Djerv-cy + D_jerv-cy.glif + DoubleO-cy + D_oubleO_-cy.glif + Dwe-cy + D_we-cy.glif + Dze-cy + D_ze-cy.glif + DzeReversed-cy + D_zeR_eversed-cy.glif + Dzeabkhcyr + D_zeabkhcyr.glif + Dzelo-cy + D_zelo-cy.glif + Dzhecyr + D_zhecyr.glif + Dzjekomicyr + D_zjekomicyr.glif + Dzwe-cy + D_zwe-cy.glif + Dzze-cy + D_zze-cy.glif + Dzzhecyr + D_zzhecyr.glif + E + E_.glif + E-cy + E_-cy.glif + E-cy.accented + E_-cy.accented.glif + Eacute + E_acute.glif + Ebreve + E_breve.glif + Ecaron + E_caron.glif + Ecircumflex + E_circumflex.glif + Edieresis + E_dieresis.glif + Edotaccent + E_dotaccent.glif + Ef-cy + E_f-cy.glif + Ef-cy.BGR + E_f-cy.B_G_R_.glif + Egrave + E_grave.glif + Eiotifiedcyr + E_iotifiedcyr.glif + El-cy + E_l-cy.glif + El-cy.BGR + E_l-cy.B_G_R_.glif + ElSoft-cy + E_lS_oft-cy.glif + Elhookcyr + E_lhookcyr.glif + Elmiddlehookcyr + E_lmiddlehookcyr.glif + Elsharptailcyr + E_lsharptailcyr.glif + Elsmallcyr + E_lsmallcyr.glif + Eltailcyr + E_ltailcyr.glif + Em-cy + E_m-cy.glif + Em-cy.ss01 + E_m-cy.ss01.glif + EmSoft-cy + E_mS_oft-cy.glif + Emacron + E_macron.glif + Emsharptailcyr + E_msharptailcyr.glif + En-cy + E_n-cy.glif + Eng + E_ng.glif + Eng.ss01 + E_ng.ss01.glif + Engecyr + E_ngecyr.glif + Enhookcyr + E_nhookcyr.glif + Enhookleftcyr + E_nhookleftcyr.glif + Enmiddlehookcyr + E_nmiddlehookcyr.glif + Ensharptailcyr + E_nsharptailcyr.glif + Entailcyr + E_ntailcyr.glif + Eogonek + E_ogonek.glif + Er-cy + E_r-cy.glif + Ereversed-cy + E_reversed-cy.glif + Ereversed-cy.accented + E_reversed-cy.accented.glif + Ereverseddieresiscyr + E_reverseddieresiscyr.glif + Ertickcyr + E_rtickcyr.glif + Es-cy + E_s-cy.glif + Estailcyr + E_stailcyr.glif + Estailcyr.BSH + E_stailcyr.B_S_H_.glif + Estailcyr.CHU + E_stailcyr.C_H_U_.glif + Eth + E_th.glif + F + F_.glif + Fitacyr + F_itacyr.glif + G + G_.glif + G.ss01 + G_.ss01.glif + Gacute + G_acute.glif + Gacute.ss01 + G_acute.ss01.glif + Gbreve + G_breve.glif + Gbreve.ss01 + G_breve.ss01.glif + Gcircumflex + G_circumflex.glif + Gcircumflex.ss01 + G_circumflex.ss01.glif + Gcommaaccent + G_commaaccent.glif + Gcommaaccent.ss01 + G_commaaccent.ss01.glif + Gdotaccent + G_dotaccent.glif + Gdotaccent.ss01 + G_dotaccent.ss01.glif + Ge-cy + G_e-cy.glif + Gehookcyr + G_ehookcyr.glif + Gehookstrokecyr + G_ehookstrokecyr.glif + Germandbls + G_ermandbls.glif + Gestrokecyr + G_estrokecyr.glif + Gestrokecyr.BSH + G_estrokecyr.B_S_H_.glif + Getailcyr + G_etailcyr.glif + Gheupturn-cy + G_heupturn-cy.glif + Gjecyr + G_jecyr.glif + H + H_.glif + Ha-cy + H_a-cy.glif + Ha-cy.ss01 + H_a-cy.ss01.glif + Haabkhcyr + H_aabkhcyr.glif + Hahookcyr + H_ahookcyr.glif + Hardsign-cy + H_ardsign-cy.glif + Hastrokecyr + H_astrokecyr.glif + Hbar + H_bar.glif + Hcircumflex + H_circumflex.glif + Hwe-cy + H_we-cy.glif + I + I_.glif + I-cy + I_-cy.glif + IJ + I_J_.glif + Ia-cy + I_a-cy.glif + Ia-cy.accented + I_a-cy.accented.glif + Ia-cy.ss01 + I_a-cy.ss01.glif + Iacute + I_acute.glif + Ibreve + I_breve.glif + Icircumflex + I_circumflex.glif + Idieresis + I_dieresis.glif + Idieresiscyr + I_dieresiscyr.glif + Idotaccent + I_dotaccent.glif + Ie-cy + I_e-cy.glif + Iebrevecyr + I_ebrevecyr.glif + Iegravecyr + I_egravecyr.glif + Igrave + I_grave.glif + Igravecyr + I_gravecyr.glif + Ii-cy + I_i-cy.glif + Ii-cy.accented + I_i-cy.accented.glif + Iishort-cy + I_ishort-cy.glif + Imacron + I_macron.glif + Imacroncyr + I_macroncyr.glif + Io-cy + I_o-cy.glif + Io-cy.accented + I_o-cy.accented.glif + Iogonek + I_ogonek.glif + Iota-cy + I_ota-cy.glif + IotifiedA-cy + I_otifiedA_-cy.glif + Ishortsharptailcyr + I_shortsharptailcyr.glif + Itilde + I_tilde.glif + Iu-cy + I_u-cy.glif + Iu-cy.accented + I_u-cy.accented.glif + Izhitsacyr + I_zhitsacyr.glif + Izhitsagravedblcyr + I_zhitsagravedblcyr.glif + J + J_.glif + J.ss01 + J_.ss01.glif + Jcircumflex + J_circumflex.glif + Jcircumflex.ss01 + J_circumflex.ss01.glif + Jecyr + J_ecyr.glif + K + K_.glif + K.ss01 + K_.ss01.glif + Ka-cy + K_a-cy.glif + Ka-cy.ss01 + K_a-cy.ss01.glif + Kaaleutcyr + K_aaleutcyr.glif + Kabashkcyr + K_abashkcyr.glif + Kahookcyr + K_ahookcyr.glif + Kastrokecyr + K_astrokecyr.glif + Katailcyr + K_atailcyr.glif + Kaverticalstrokecyr + K_averticalstrokecyr.glif + Kcommaaccent + K_commaaccent.glif + Kcommaaccent.ss01 + K_commaaccent.ss01.glif + Kjecyr + K_jecyr.glif + Koppacyr + K_oppacyr.glif + Ksicyr + K_sicyr.glif + L + L_.glif + Lacute + L_acute.glif + Lcaron + L_caron.glif + Lcommaaccent + L_commaaccent.glif + Ldot + L_dot.glif + Lhacyr + L_hacyr.glif + Ljecyr + L_jecyr.glif + Ljekomicyr + L_jekomicyr.glif + Lslash + L_slash.glif + M + M_.glif + M.ss01 + M_.ss01.glif + N + N_.glif + N.ss01 + N_.ss01.glif + NULL + N_U_L_L_.glif + Nacute + N_acute.glif + Nacute.ss01 + N_acute.ss01.glif + Ncaron + N_caron.glif + Ncaron.ss01 + N_caron.ss01.glif + Ncommaaccent + N_commaaccent.glif + Ncommaaccent.ss01 + N_commaaccent.ss01.glif + Njecyr + N_jecyr.glif + Njekomicyr + N_jekomicyr.glif + Ntilde + N_tilde.glif + Ntilde.ss01 + N_tilde.ss01.glif + O + O_.glif + O-cy + O_-cy.glif + O-cy.accented + O_-cy.accented.glif + OBinocular-cy + O_B_inocular-cy.glif + ODoubleMonocular-cy + O_D_oubleM_onocular-cy.glif + OE + O_E_.glif + OMonocular-cy + O_M_onocular-cy.glif + Oacute + O_acute.glif + Obarcyr + O_barcyr.glif + Obardieresiscyr + O_bardieresiscyr.glif + Obreve + O_breve.glif + Ocircumflex + O_circumflex.glif + Odieresis + O_dieresis.glif + Odieresiscyr + O_dieresiscyr.glif + Ograve + O_grave.glif + Ohungarumlaut + O_hungarumlaut.glif + Omacron + O_macron.glif + Omega + O_mega.glif + OmegaBroad-cy + O_megaB_road-cy.glif + Omegacyr + O_megacyr.glif + Omegaroundcyr + O_megaroundcyr.glif + Omegatitlocyr + O_megatitlocyr.glif + Oslash + O_slash.glif + Oslashacute + O_slashacute.glif + Otcyr + O_tcyr.glif + Otilde + O_tilde.glif + P + P_.glif + Palochkacyr + P_alochkacyr.glif + Pe-cy + P_e-cy.glif + Pehookcyr + P_ehookcyr.glif + Petailcyr + P_etailcyr.glif + Psicyr + P_sicyr.glif + Q + Q_.glif + Q.ss01 + Q_.ss01.glif + Qacyr + Q_acyr.glif + R + R_.glif + Racute + R_acute.glif + Rcaron + R_caron.glif + Rcommaaccent + R_commaaccent.glif + Reversedzecyr + R_eversedzecyr.glif + Rhacyr + R_hacyr.glif + S + S_.glif + Sacute + S_acute.glif + Scaron + S_caron.glif + Scedilla + S_cedilla.glif + Schwa + S_chwa.glif + Schwacyr + S_chwacyr.glif + Schwadieresiscyr + S_chwadieresiscyr.glif + Scircumflex + S_circumflex.glif + Scommaaccent + S_commaaccent.glif + Semisoftcyr + S_emisoftcyr.glif + Sha-cy + S_ha-cy.glif + Shcha-cy + S_hcha-cy.glif + Shhacyr + S_hhacyr.glif + Shhatailcyr + S_hhatailcyr.glif + Shwe-cy + S_hwe-cy.glif + Sjekomicyr + S_jekomicyr.glif + Softsign-cy + S_oftsign-cy.glif + T + T_.glif + Tbar + T_bar.glif + Tcaron + T_caron.glif + Tcedilla + T_cedilla.glif + Tche-cy + T_che-cy.glif + Tcommaaccent + T_commaaccent.glif + Te-cy + T_e-cy.glif + TeWithMiddleHook-cy + T_eW_ithM_iddleH_ook-cy.glif + Tetailcyr + T_etailcyr.glif + Tetsecyr + T_etsecyr.glif + Thorn + T_horn.glif + Tjekomicyr + T_jekomicyr.glif + Tse-cy + T_se-cy.glif + TseReversed-cy + T_seR_eversed-cy.glif + Tshecyr + T_shecyr.glif + Tsse-cy + T_sse-cy.glif + Tswe-cy + T_swe-cy.glif + Twe-cy + T_we-cy.glif + U + U_.glif + U-cy + U_-cy.glif + U-cy.accented + U_-cy.accented.glif + U-cy.ss01 + U_-cy.ss01.glif + Uacute + U_acute.glif + Uacutedblcyr + U_acutedblcyr.glif + Ubreve + U_breve.glif + Ucircumflex + U_circumflex.glif + Udieresis + U_dieresis.glif + Udieresiscyr + U_dieresiscyr.glif + Ugrave + U_grave.glif + Uhungarumlaut + U_hungarumlaut.glif + UkMonograph-cy + U_kM_onograph-cy.glif + Ukcyr + U_kcyr.glif + Umacron + U_macron.glif + Umacroncyr + U_macroncyr.glif + Uogonek + U_ogonek.glif + Uring + U_ring.glif + Ushort-cy + U_short-cy.glif + Ushort-cy.ss01 + U_short-cy.ss01.glif + Ustraightcyr + U_straightcyr.glif + Ustraightstrokecyr + U_straightstrokecyr.glif + Utilde + U_tilde.glif + V + V_.glif + V.ss01 + V_.ss01.glif + Ve-cy + V_e-cy.glif + W + W_.glif + W.ss01 + W_.ss01.glif + Wacute + W_acute.glif + Wacute.ss01 + W_acute.ss01.glif + Wcircumflex + W_circumflex.glif + Wcircumflex.ss01 + W_circumflex.ss01.glif + Wdieresis + W_dieresis.glif + Wdieresis.ss01 + W_dieresis.ss01.glif + Wecyr + W_ecyr.glif + Wgrave + W_grave.glif + Wgrave.ss01 + W_grave.ss01.glif + X + X_.glif + X.ss01 + X_.ss01.glif + Xatailcyr + X_atailcyr.glif + Y + Y_.glif + Y.ss01 + Y_.ss01.glif + Yacute + Y_acute.glif + Yacute.ss01 + Y_acute.ss01.glif + Yaecyr + Y_aecyr.glif + YatIotified-cy + Y_atI_otified-cy.glif + Yatcyr + Y_atcyr.glif + Ycircumflex + Y_circumflex.glif + Ycircumflex.ss01 + Y_circumflex.ss01.glif + Ydieresis + Y_dieresis.glif + Ydieresis.ss01 + Y_dieresis.ss01.glif + YerNeutral-cy + Y_erN_eutral-cy.glif + Yeru-cy + Y_eru-cy.glif + Yeru-cy.accented + Y_eru-cy.accented.glif + Yeru-cymacron + Y_eru-cymacron.glif + YeruBackYer-cy + Y_eruB_ackY_er-cy.glif + Yi-cy + Y_i-cy.glif + Ylongdieresiscyr + Y_longdieresiscyr.glif + Yn-cy + Y_n-cy.glif + YuReversed-cy + Y_uR_eversed-cy.glif + YusBlended-cy + Y_usB_lended-cy.glif + YusClosedlittle-cy + Y_usC_losedlittle-cy.glif + Yusbigcyr + Y_usbigcyr.glif + Yusbigiotifiedcyr + Y_usbigiotifiedcyr.glif + YusiotifiedClosedLittle-cy + Y_usiotifiedC_losedL_ittle-cy.glif + Yuslittlecyr + Y_uslittlecyr.glif + Yuslittleiotifiedcyr + Y_uslittleiotifiedcyr.glif + Z + Z_.glif + Z.ss01 + Z_.ss01.glif + Zacute + Z_acute.glif + Zacute.ss01 + Z_acute.ss01.glif + Zcaron + Z_caron.glif + Zcaron.ss01 + Z_caron.ss01.glif + Zdotaccent + Z_dotaccent.glif + Zdotaccent.ss01 + Z_dotaccent.ss01.glif + Ze-cy + Z_e-cy.glif + Zedieresiscyr + Z_edieresiscyr.glif + Zemlya-cy + Z_emlya-cy.glif + Zetailcyr + Z_etailcyr.glif + Zetailcyr.BSH + Z_etailcyr.B_S_H_.glif + Zhe-cy + Z_he-cy.glif + Zhe-cy.ss01 + Z_he-cy.ss01.glif + Zhebrevecyr + Z_hebrevecyr.glif + Zhedieresiscyr + Z_hedieresiscyr.glif + Zhetailcyr + Z_hetailcyr.glif + Zhwe-cy + Z_hwe-cy.glif + Zjekomicyr + Z_jekomicyr.glif + _perc-circule + _perc-circule.glif + a + a.glif + a-cy + a-cy.glif + a-cy.accented + a-cy.accented.glif + a-cy.ss01 + a-cy.ss01.glif + a.ss01 + a.ss01.glif + aacute + aacute.glif + aacute.ss01 + aacute.ss01.glif + abreve + abreve.glif + abreve.ss01 + abreve.ss01.glif + abrevecyr + abrevecyr.glif + acaron + acaron.glif + acircumflex + acircumflex.glif + acircumflex.ss01 + acircumflex.ss01.glif + acute + acute.glif + acute.case + acute.case.glif + adieresis + adieresis.glif + adieresis.ss01 + adieresis.ss01.glif + adieresiscyr + adieresiscyr.glif + ae + ae.glif + ae.ss01 + ae.ss01.glif + aeacute + aeacute.glif + agrave + agrave.glif + agrave.ss01 + agrave.ss01.glif + aiecyr + aiecyr.glif + amacron + amacron.glif + amacron.ss01 + amacron.ss01.glif + ampersand + ampersand.glif + aogonek + aogonek.glif + aogonek.ss01 + aogonek.ss01.glif + apostrophemod + apostrophemod.glif + approxequal + approxequal.glif + aring + aring.glif + aring.ss01 + aring.ss01.glif + arrowdown + arrowdown.glif + arrowdown.case + arrowdown.case.glif + arrowdown.ss01 + arrowdown.ss01.glif + arrowdown.ss01.case + arrowdown.ss01.case.glif + arrowleft + arrowleft.glif + arrowleft.case + arrowleft.case.glif + arrowleft.ss01 + arrowleft.ss01.glif + arrowleft.ss01.case + arrowleft.ss01.case.glif + arrowright + arrowright.glif + arrowright.case + arrowright.case.glif + arrowright.ss01 + arrowright.ss01.glif + arrowright.ss01.case + arrowright.ss01.case.glif + arrowup + arrowup.glif + arrowup.case + arrowup.case.glif + arrowup.ss01 + arrowup.ss01.glif + arrowup.ss01.case + arrowup.ss01.case.glif + asciicircum + asciicircum.glif + asciitilde + asciitilde.glif + asterisk + asterisk.glif + at + at.glif + at.case + at.case.glif + atilde + atilde.glif + atilde.ss01 + atilde.ss01.glif + b + b.glif + b.ss01 + b.ss01.glif + backslash + backslash.glif + backslash.case + backslash.case.glif + bar + bar.glif + bar.case + bar.case.glif + be-cy + be-cy.glif + be-cy.SRB + be-cy.S_R_B_.glif + bishopblack + bishopblack.glif + bishopwhite + bishopwhite.glif + braceleft + braceleft.glif + braceleft.case + braceleft.case.glif + braceright + braceright.glif + braceright.case + braceright.case.glif + bracketangleleft + bracketangleleft.glif + bracketangleleft.case + bracketangleleft.case.glif + bracketangleright + bracketangleright.glif + bracketangleright.case + bracketangleright.case.glif + bracketleft + bracketleft.glif + bracketleft.case + bracketleft.case.glif + bracketright + bracketright.glif + bracketright.case + bracketright.case.glif + breve + breve.glif + breve.case + breve.case.glif + brokenbar + brokenbar.glif + brokenbar.case + brokenbar.case.glif + bullet + bullet.glif + bullet.case + bullet.case.glif + c + c.glif + cacute + cacute.glif + caron + caron.glif + caron.case + caron.case.glif + caron.salt + caron.salt.glif + ccaron + ccaron.glif + ccedilla + ccedilla.glif + cche-cy + cche-cy.glif + ccircumflex + ccircumflex.glif + cdotaccent + cdotaccent.glif + cedilla + cedilla.glif + cent + cent.glif + che-cy + che-cy.glif + cheabkhcyr + cheabkhcyr.glif + cheabkhtailcyr + cheabkhtailcyr.glif + chedieresiscyr + chedieresiscyr.glif + chekhakascyr + chekhakascyr.glif + chetailcyr + chetailcyr.glif + chevertcyr + chevertcyr.glif + circumflex + circumflex.glif + circumflex.case + circumflex.case.glif + clubwhite + clubwhite.glif + colon + colon.glif + colon.case + colon.case.glif + colontriangularmod + colontriangularmod.glif + comma + comma.glif + commaaccentcomb + commaaccentcomb.glif + commaaccentcomb.salt + commaaccentcomb.salt.glif + copyright + copyright.glif + crossedo-cy + crossedo-cy.glif + crossedswords + crossedswords.glif + currency + currency.glif + d + d.glif + d.ss01 + d.ss01.glif + dagger + dagger.glif + daggerdbl + daggerdbl.glif + dcaron + dcaron.glif + dcaron.ss01 + dcaron.ss01.glif + dchecyr + dchecyr.glif + dcroat + dcroat.glif + dcroat.ss01 + dcroat.ss01.glif + de-cy + de-cy.glif + de-cy.BGR + de-cy.B_G_R_.glif + de-cy.ss01 + de-cy.ss01.glif + deSoft-cy + deS_oft-cy.glif + degree + degree.glif + dekomicyr + dekomicyr.glif + diamondwhite-misc + diamondwhite-misc.glif + dieresis + dieresis.glif + dieresis.alt + dieresis.alt.glif + dieresis.case + dieresis.case.glif + dieresisacute + dieresisacute.glif + dieresiscase.alt + dieresiscase.alt.glif + divide + divide.glif + djecyr + djecyr.glif + djekomicyr + djekomicyr.glif + djerv-cy + djerv-cy.glif + dollar + dollar.glif + dotaccent + dotaccent.glif + dotaccent.case + dotaccent.case.glif + doubleo-cy + doubleo-cy.glif + dramsignarmn + dramsignarmn.glif + dwe-cy + dwe-cy.glif + dze-cy + dze-cy.glif + dzeReversed-cy + dzeR_eversed-cy.glif + dzeabkhcyr + dzeabkhcyr.glif + dzelo-cy + dzelo-cy.glif + dzhecyr + dzhecyr.glif + dzjekomicyr + dzjekomicyr.glif + dzwe-cy + dzwe-cy.glif + dzze-cy + dzze-cy.glif + dzzhecyr + dzzhecyr.glif + e + e.glif + e-cy + e-cy.glif + e-cy.accented + e-cy.accented.glif + e-cy.hist + e-cy.hist.glif + e.ss01 + e.ss01.glif + eacute + eacute.glif + eacute.ss01 + eacute.ss01.glif + ebreve + ebreve.glif + ebreve.ss01 + ebreve.ss01.glif + ecaron + ecaron.glif + ecaron.ss01 + ecaron.ss01.glif + ecircumflex + ecircumflex.glif + ecircumflex.ss01 + ecircumflex.ss01.glif + edieresis + edieresis.glif + edieresis.ss01 + edieresis.ss01.glif + edotaccent + edotaccent.glif + edotaccent.ss01 + edotaccent.ss01.glif + ef-cy + ef-cy.glif + egrave + egrave.glif + egrave.ss01 + egrave.ss01.glif + eight + eight.glif + eight.osf + eight.osf.glif + eight.tf + eight.tf.glif + eiotifiedcyr + eiotifiedcyr.glif + eiotifiedcyr.BGR + eiotifiedcyr.B_G_R_.glif + el-cy + el-cy.glif + el-cy.BGR + el-cy.B_G_R_.glif + el-cy.ss01 + el-cy.ss01.glif + elSoft-cy + elS_oft-cy.glif + elhookcyr + elhookcyr.glif + ellipsis + ellipsis.glif + elmiddlehookcyr + elmiddlehookcyr.glif + elsharptailcyr + elsharptailcyr.glif + eltailcyr + eltailcyr.glif + em-cy + em-cy.glif + emSoft-cy + emS_oft-cy.glif + emacron + emacron.glif + emacron.ss01 + emacron.ss01.glif + emdash + emdash.glif + emdash.case + emdash.case.glif + emsharptailcyr + emsharptailcyr.glif + en-cy + en-cy.glif + enclosingcirclecomb + enclosingcirclecomb.glif + endash + endash.glif + endash.case + endash.case.glif + eng + eng.glif + engecyr + engecyr.glif + enhookcyr + enhookcyr.glif + enhookleftcyr + enhookleftcyr.glif + enmiddlehookcyr + enmiddlehookcyr.glif + ensharptailcyr + ensharptailcyr.glif + entailcyr + entailcyr.glif + eogonek + eogonek.glif + eogonek.ss01 + eogonek.ss01.glif + equal + equal.glif + er-cy + er-cy.glif + er-cy.ss01 + er-cy.ss01.glif + ereversed-cy + ereversed-cy.glif + ereversed-cy.accented + ereversed-cy.accented.glif + ereverseddieresiscyr + ereverseddieresiscyr.glif + ertickcyr + ertickcyr.glif + es-cy + es-cy.glif + estailcyr + estailcyr.glif + estailcyr.BSH + estailcyr.B_S_H_.glif + estailcyr.CHU + estailcyr.C_H_U_.glif + estimated + estimated.glif + eth + eth.glif + eturned + eturned.glif + euro + euro.glif + exclam + exclam.glif + exclamdown + exclamdown.glif + exclamdown.case + exclamdown.case.glif + f + f.glif + f.ss01 + f.ss01.glif + f_f + f_f.glif + f_f.ss01 + f_f.ss01.glif + f_f_i + f_f_i.glif + f_f_i.ss01 + f_f_i.ss01.glif + f_f_l + f_f_l.glif + f_f_l.ss01 + f_f_l.ss01.glif + fi + fi.glif + fi.ss01 + fi.ss01.glif + fitacyr + fitacyr.glif + five + five.glif + five.osf + five.osf.glif + five.tf + five.tf.glif + fl + fl.glif + fl.ss01 + fl.ss01.glif + floretteblack + floretteblack.glif + floretteoutlinedpetalledblackeight + floretteoutlinedpetalledblackeight.glif + florettewhite + florettewhite.glif + florin + florin.glif + flower + flower.glif + four + four.glif + four.osf + four.osf.glif + four.tf + four.tf.glif + fraction + fraction.glif + g + g.glif + g.ss01 + g.ss01.glif + gacute + gacute.glif + gacute.ss01 + gacute.ss01.glif + gbreve + gbreve.glif + gbreve.ss01 + gbreve.ss01.glif + gcircumflex + gcircumflex.glif + gcircumflex.ss01 + gcircumflex.ss01.glif + gcommaaccent + gcommaaccent.glif + gcommaaccent.ss01 + gcommaaccent.ss01.glif + gdotaccent + gdotaccent.glif + gdotaccent.ss01 + gdotaccent.ss01.glif + ge-cy + ge-cy.glif + ge-cy.BGR + ge-cy.B_G_R_.glif + ge-cy.SRB + ge-cy.S_R_B_.glif + gehookcyr + gehookcyr.glif + gehookstrokecyr + gehookstrokecyr.glif + germandbls + germandbls.glif + germandbls.ss01 + germandbls.ss01.glif + gestrokecyr + gestrokecyr.glif + gestrokecyr.BSH + gestrokecyr.B_S_H_.glif + getailcyr + getailcyr.glif + gheupturn-cy + gheupturn-cy.glif + gjecyr + gjecyr.glif + gjecyr.SRB + gjecyr.S_R_B_.glif + grave + grave.glif + grave.case + grave.case.glif + greater + greater.glif + greaterequal + greaterequal.glif + guillemetleft + guillemetleft.glif + guillemetleft.case + guillemetleft.case.glif + guillemetright + guillemetright.glif + guillemetright.case + guillemetright.case.glif + guilsinglleft + guilsinglleft.glif + guilsinglleft.case + guilsinglleft.case.glif + guilsinglright + guilsinglright.glif + guilsinglright.case + guilsinglright.case.glif + h + h.glif + ha-cy + ha-cy.glif + haabkhcyr + haabkhcyr.glif + hahookcyr + hahookcyr.glif + hardsign-cy + hardsign-cy.glif + hardsign-cy.BGR + hardsign-cy.B_G_R_.glif + hardsign-cy.ss01 + hardsign-cy.ss01.glif + hastrokecyr + hastrokecyr.glif + hbar + hbar.glif + hcircumflex + hcircumflex.glif + heart + heart.glif + heartwhite + heartwhite.glif + hryvnia + hryvnia.glif + hundredmillionscomb-cy + hundredmillionscomb-cy.glif + hundredthousandscombcyr + hundredthousandscombcyr.glif + hungarumlaut + hungarumlaut.glif + hungarumlaut.case + hungarumlaut.case.glif + hwe-cy + hwe-cy.glif + hyphen + hyphen.glif + hyphen.case + hyphen.case.glif + i + i.glif + i-cy + i-cy.glif + ia-cy + ia-cy.glif + ia-cy.accented + ia-cy.accented.glif + ia-cy.ss01 + ia-cy.ss01.glif + iacute + iacute.glif + ibreve + ibreve.glif + icircumflex + icircumflex.glif + idieresis + idieresis.glif + idieresiscyr + idieresiscyr.glif + idotless + idotless.glif + ie-cy + ie-cy.glif + ie-cy.ss01 + ie-cy.ss01.glif + iebrevecyr + iebrevecyr.glif + iegravecyr + iegravecyr.glif + iegravecyr.SRB + iegravecyr.S_R_B_.glif + igrave + igrave.glif + igravecyr + igravecyr.glif + igravecyr.SRB + igravecyr.S_R_B_.glif + ii-cy + ii-cy.glif + ii-cy.BGR + ii-cy.B_G_R_.glif + ii-cy.accented + ii-cy.accented.glif + iishort-cy + iishort-cy.glif + iishort-cy.BGR + iishort-cy.B_G_R_.glif + ij + ij.glif + imacron + imacron.glif + imacroncyr + imacroncyr.glif + increment + increment.glif + infinity + infinity.glif + integral + integral.glif + io-cy + io-cy.glif + io-cy.accented + io-cy.accented.glif + io-cy.ss01 + io-cy.ss01.glif + iogonek + iogonek.glif + iota-cy + iota-cy.glif + iotifieda-cy + iotifieda-cy.glif + iotifieda-cy.BGR + iotifieda-cy.B_G_R_.glif + iotifieda-cy.hist + iotifieda-cy.hist.glif + ishortsharptailcyr + ishortsharptailcyr.glif + itilde + itilde.glif + iu-cy + iu-cy.glif + iu-cy.BGR + iu-cy.B_G_R_.glif + iu-cy.accented + iu-cy.accented.glif + izhitsacyr + izhitsacyr.glif + izhitsagravedblcyr + izhitsagravedblcyr.glif + j + j.glif + jcircumflex + jcircumflex.glif + jdotless + jdotless.glif + je-cy + je-cy.glif + k + k.glif + ka-cy + ka-cy.glif + ka-cy.BGR + ka-cy.B_G_R_.glif + kaaleutcyr + kaaleutcyr.glif + kabashkcyr + kabashkcyr.glif + kahookcyr + kahookcyr.glif + kastrokecyr + kastrokecyr.glif + katailcyr + katailcyr.glif + kaverticalstrokecyr + kaverticalstrokecyr.glif + kcommaaccent + kcommaaccent.glif + kgreenlandic + kgreenlandic.glif + kjecyr + kjecyr.glif + knightblack + knightblack.glif + knightwhite + knightwhite.glif + koppacyr + koppacyr.glif + ksicyr + ksicyr.glif + l + l.glif + l.ss01 + l.ss01.glif + lacute + lacute.glif + lacute.ss01 + lacute.ss01.glif + lcaron + lcaron.glif + lcaron.ss01 + lcaron.ss01.glif + lcommaaccent + lcommaaccent.glif + lcommaaccent.ss01 + lcommaaccent.ss01.glif + ldot + ldot.glif + ldot.ss01 + ldot.ss01.glif + leo + leo.glif + less + less.glif + lessequal + lessequal.glif + lhacyr + lhacyr.glif + ljecyr + ljecyr.glif + ljecyr.ss01 + ljecyr.ss01.glif + ljekomicyr + ljekomicyr.glif + longs + longs.glif + lslash + lslash.glif + lslash.ss01 + lslash.ss01.glif + m + m.glif + macron + macron.glif + macron-fwd + macron-fwd.glif + macron-fwd.alt + macron-fwd.alt.glif + macron.case + macron.case.glif + macronacute.SRB + macronacute.S_R_B_.glif + millionscombcyr + millionscombcyr.glif + minus + minus.glif + minute + minute.glif + mu + mu.glif + multiply + multiply.glif + n + n.glif + nacute + nacute.glif + napostrophe + napostrophe.glif + ncaron + ncaron.glif + ncommaaccent + ncommaaccent.glif + neptune + neptune.glif + nine + nine.glif + nine.osf + nine.osf.glif + nine.tf + nine.tf.glif + njecyr + njecyr.glif + njecyr.ss01 + njecyr.ss01.glif + njekomicyr + njekomicyr.glif + notequal + notequal.glif + ntilde + ntilde.glif + numbersign + numbersign.glif + numero + numero.glif + numero.ss01 + numero.ss01.glif + o + o.glif + o-cy + o-cy.glif + o-cy.accented + o-cy.accented.glif + oBinocular-cy + oB_inocular-cy.glif + oDoubleMonocular-cy + oD_oubleM_onocular-cy.glif + oMonocular-cy + oM_onocular-cy.glif + oacute + oacute.glif + obarcyr + obarcyr.glif + obardieresiscyr + obardieresiscyr.glif + obreve + obreve.glif + ocircumflex + ocircumflex.glif + odieresis + odieresis.glif + odieresiscyr + odieresiscyr.glif + oe + oe.glif + oe.ss01 + oe.ss01.glif + ogonek + ogonek.glif + ograve + ograve.glif + ohungarumlaut + ohungarumlaut.glif + omacron + omacron.glif + omegaBroad-cy + omegaB_road-cy.glif + omegacyr + omegacyr.glif + omegaroundcyr + omegaroundcyr.glif + omegatitlocyr + omegatitlocyr.glif + omultiocular-cy + omultiocular-cy.glif + omultiocular-cy.alt + omultiocular-cy.alt.glif + one + one.glif + one.osf + one.osf.glif + one.tf + one.tf.glif + onehalf + onehalf.glif + onequarter + onequarter.glif + onesuperior + onesuperior.glif + ordfeminine + ordfeminine.glif + ordmasculine + ordmasculine.glif + oslash + oslash.glif + oslashacute + oslashacute.glif + otcyr + otcyr.glif + otilde + otilde.glif + p + p.glif + p.ss01 + p.ss01.glif + palatcombcyr + palatcombcyr.glif + palochkacyr + palochkacyr.glif + paragraph + paragraph.glif + parenleft + parenleft.glif + parenleft.case + parenleft.case.glif + parenright + parenright.glif + parenright.case + parenright.case.glif + partialdiff + partialdiff.glif + pe-cy + pe-cy.glif + pe-cy.BGR + pe-cy.B_G_R_.glif + pe-cy.SRB + pe-cy.S_R_B_.glif + pehookcyr + pehookcyr.glif + percent + percent.glif + period + period.glif + periodcentered + periodcentered.glif + perthousand + perthousand.glif + petailcyr + petailcyr.glif + pi + pi.glif + plus + plus.glif + plusminus + plusminus.glif + pokrytiecombcyr + pokrytiecombcyr.glif + product + product.glif + proportional + proportional.glif + psicyr + psicyr.glif + q + q.glif + q.ss01 + q.ss01.glif + qacyr + qacyr.glif + question + question.glif + questiondown + questiondown.glif + questiondown.case + questiondown.case.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 + radical + radical.glif + rcaron + rcaron.glif + rcommaaccent + rcommaaccent.glif + registered + registered.glif + reversedzecyr + reversedzecyr.glif + rhacyr + rhacyr.glif + ring + ring.glif + ring.case + ring.case.glif + rookblack + rookblack.glif + ruble + ruble.glif + s + s.glif + sacute + sacute.glif + scaron + scaron.glif + scedilla + scedilla.glif + schwacyr + schwacyr.glif + schwadieresiscyr + schwadieresiscyr.glif + scircumflex + scircumflex.glif + scommaaccent + scommaaccent.glif + second + second.glif + section + section.glif + semicolon + semicolon.glif + semicolon.case + semicolon.case.glif + semisoftcyr + semisoftcyr.glif + seven + seven.glif + seven.osf + seven.osf.glif + seven.tf + seven.tf.glif + sha-cy + sha-cy.glif + sha-cy.BGR + sha-cy.B_G_R_.glif + shcha-cy + shcha-cy.glif + shcha-cy.BGR + shcha-cy.B_G_R_.glif + shhacyr + shhacyr.glif + shhatailcyr + shhatailcyr.glif + shwe-cy + shwe-cy.glif + six + six.glif + six.osf + six.osf.glif + six.tf + six.tf.glif + sjekomicyr + sjekomicyr.glif + slash + slash.glif + slash.case + slash.case.glif + softsign-cy + softsign-cy.glif + softsign-cy.BGR + softsign-cy.B_G_R_.glif + softsign-cy.ss01 + softsign-cy.ss01.glif + space + space.glif + spadewhite + spadewhite.glif + sterling + sterling.glif + summation + summation.glif + t + t.glif + t.ss01 + t.ss01.glif + tbar + tbar.glif + tbar.ss01 + tbar.ss01.glif + tcaron + tcaron.glif + tcaron.ss01 + tcaron.ss01.glif + tcedilla + tcedilla.glif + tcedilla.ss01 + tcedilla.ss01.glif + tche-cy + tche-cy.glif + tcommaaccent + tcommaaccent.glif + tcommaaccent.ss01 + tcommaaccent.ss01.glif + te-cy + te-cy.glif + te-cy.BGR + te-cy.B_G_R_.glif + te-cy.SRB + te-cy.S_R_B_.glif + te-cy.ss01 + te-cy.ss01.glif + tenge + tenge.glif + tenmillionscomb-cy + tenmillionscomb-cy.glif + tetailcyr + tetailcyr.glif + tetsecyr + tetsecyr.glif + tewithmiddlehook-cy + tewithmiddlehook-cy.glif + thorn + thorn.glif + thousandmillionscomb-cy + thousandmillionscomb-cy.glif + thousandscyr + thousandscyr.glif + thousandscyr.dnom + thousandscyr.dnom.glif + three + three.glif + three.osf + three.osf.glif + three.tf + three.tf.glif + threequarters + threequarters.glif + threesuperior + threesuperior.glif + tilde + tilde.glif + tilde.case + tilde.case.glif + titlocombcyr + titlocombcyr.glif + tjekomicyr + tjekomicyr.glif + trademark + trademark.glif + tse-cy + tse-cy.glif + tse-cy.BGR + tse-cy.B_G_R_.glif + tseReversed-cy + tseR_eversed-cy.glif + tshecyr + tshecyr.glif + tsse-cy + tsse-cy.glif + tswe-cy + tswe-cy.glif + twe-cy + twe-cy.glif + two + two.glif + two.osf + two.osf.glif + two.tf + two.tf.glif + twosuperior + twosuperior.glif + u + u.glif + u-cy + u-cy.glif + u-cy.accented + u-cy.accented.glif + uacute + uacute.glif + uacutedblcyr + uacutedblcyr.glif + ubreve + ubreve.glif + ucircumflex + ucircumflex.glif + udieresis + udieresis.glif + udieresiscyr + udieresiscyr.glif + ugrave + ugrave.glif + uhungarumlaut + uhungarumlaut.glif + ukMonograph-cy + ukM_onograph-cy.glif + ukcyr + ukcyr.glif + umacron + umacron.glif + umacroncyr + umacroncyr.glif + underscore + underscore.glif + uni1C80 + uni1C_80.glif + uni1C81 + uni1C_81.glif + uni1C82 + uni1C_82.glif + uni1C83 + uni1C_83.glif + uni1C84 + uni1C_84.glif + uni1C85 + uni1C_85.glif + uni1C86 + uni1C_86.glif + uni1C87 + uni1C_87.glif + uni1C88 + uni1C_88.glif + uni1EBC + uni1E_B_C_.glif + uni1EBD + uni1E_B_D_.glif + uni2010 + uni2010.glif + uni2DEE + uni2D_E_E_.glif + uni2DEE.case + uni2D_E_E_.case.glif + uniE000 + uniE_000.glif + uniE000.alt + uniE_000.alt.glif + uniE01A + uniE_01A_.glif + uniF43A + uniF_43A_.glif + uniF43B + uniF_43B_.glif + uniF45D + uniF_45D_.glif + uniF45E + uniF_45E_.glif + uniF45F + uniF_45F_.glif + uniF475 + uniF_475.glif + uniF476 + uniF_476.glif + uniF477 + uniF_477.glif + uniF478 + uniF_478.glif + uniF479 + uniF_479.glif + uniF498 + uniF_498.glif + uniF499 + uniF_499.glif + uniF49A + uniF_49A_.glif + uniF49B + uniF_49B_.glif + uniF49C + uniF_49C_.glif + uniF49D + uniF_49D_.glif + uniF49E + uniF_49E_.glif + uniF49F + uniF_49F_.glif + uniF4C6 + uniF_4C_6.glif + uniF4C7 + uniF_4C_7.glif + uniF4CC + uniF_4C_C_.glif + uniF4CD + uniF_4C_D_.glif + uniF4D2 + uniF_4D_2.glif + uniF4D3 + uniF_4D_3.glif + uniF4D4 + uniF_4D_4.glif + uniF4D5 + uniF_4D_5.glif + uniF4D6 + uniF_4D_6.glif + uniF4D7 + uniF_4D_7.glif + uniF4D8 + uniF_4D_8.glif + uniF4D9 + uniF_4D_9.glif + uniF50E + uniF_50E_.glif + uniF50F + uniF_50F_.glif + uniF510 + uniF_510.glif + uniF511 + uniF_511.glif + uniF512 + uniF_512.glif + uniF513 + uniF_513.glif + uniF514 + uniF_514.glif + uniF515 + uniF_515.glif + uniF516 + uniF_516.glif + uniF517 + uniF_517.glif + uniF518 + uniF_518.glif + uniF519 + uniF_519.glif + uniF51A + uniF_51A_.glif + uniF51B + uniF_51B_.glif + uniF51C + uniF_51C_.glif + uniF51D + uniF_51D_.glif + uniF51E + uniF_51E_.glif + uniF51F + uniF_51F_.glif + uniF521 + uniF_521.glif + uniF522 + uniF_522.glif + uniF523 + uniF_523.glif + uniF524 + uniF_524.glif + uniF525 + uniF_525.glif + uniF526 + uniF_526.glif + uniF527 + uniF_527.glif + uniF528 + uniF_528.glif + uniF529 + uniF_529.glif + uniF52A + uniF_52A_.glif + uniF52B + uniF_52B_.glif + uniF52C + uniF_52C_.glif + uniF52D + uniF_52D_.glif + uniF52E + uniF_52E_.glif + uniF52F + uniF_52F_.glif + uniF532 + uniF_532.glif + uniF533 + uniF_533.glif + uniF536 + uniF_536.glif + uniF537 + uniF_537.glif + uniF538 + uniF_538.glif + uniF539 + uniF_539.glif + uniF830 + uniF_830.glif + uniF831 + uniF_831.glif + uniF833 + uniF_833.glif + uniF834 + uniF_834.glif + uniF839 + uniF_839.glif + uniF83A + uniF_83A_.glif + uniF86F + uniF_86F_.glif + uniF870 + uniF_870.glif + uniF872 + uniF_872.glif + uniF873 + uniF_873.glif + uniF875 + uniF_875.glif + uniF876 + uniF_876.glif + uniF878 + uniF_878.glif + uniF879 + uniF_879.glif + uniF87B + uniF_87B_.glif + uniF87C + uniF_87C_.glif + uniF87E + uniF_87E_.glif + uniF87F + uniF_87F_.glif + uogonek + uogonek.glif + uring + uring.glif + ushort-cy + ushort-cy.glif + ustraightcyr + ustraightcyr.glif + ustraightstrokecyr + ustraightstrokecyr.glif + utilde + utilde.glif + v + v.glif + ve-cy + ve-cy.glif + ve-cy.BGR + ve-cy.B_G_R_.glif + ve-cy.ss01 + ve-cy.ss01.glif + virgo + virgo.glif + vzmetcomb-cy + vzmetcomb-cy.glif + w + w.glif + wacute + wacute.glif + wcircumflex + wcircumflex.glif + wdieresis + wdieresis.glif + wecyr + wecyr.glif + wgrave + wgrave.glif + x + x.glif + xatailcyr + xatailcyr.glif + y + y.glif + yacute + yacute.glif + yaecyr + yaecyr.glif + yatIotified-cy + yatI_otified-cy.glif + yatcyr + yatcyr.glif + yatcyr.BGR + yatcyr.B_G_R_.glif + ycircumflex + ycircumflex.glif + ydieresis + ydieresis.glif + yen + yen.glif + yen.ss01 + yen.ss01.glif + yerNeutral-cy + yerN_eutral-cy.glif + yeru-cy + yeru-cy.glif + yeru-cy.accented + yeru-cy.accented.glif + yeru-cy.ss01 + yeru-cy.ss01.glif + yeruBackyer-cy + yeruB_ackyer-cy.glif + yi-cy + yi-cy.glif + yi-cy.alt + yi-cy.alt.glif + ylongdieresiscyr + ylongdieresiscyr.glif + yn-cy + yn-cy.glif + yuReversed-cy + yuR_eversed-cy.glif + yusBlended-cy + yusB_lended-cy.glif + yusClosedlittle-cy + yusC_losedlittle-cy.glif + yusbigcyr + yusbigcyr.glif + yusbigiotifiedcyr + yusbigiotifiedcyr.glif + yusbigiotifiedcyr.BGR + yusbigiotifiedcyr.B_G_R_.glif + yusiotifiedClosedLittle-cy + yusiotifiedC_losedL_ittle-cy.glif + yuslittlecyr + yuslittlecyr.glif + yuslittleiotifiedcyr + yuslittleiotifiedcyr.glif + z + z.glif + zacute + zacute.glif + zcaron + zcaron.glif + zdotaccent + zdotaccent.glif + ze-cy + ze-cy.glif + ze-cy.BGR + ze-cy.B_G_R_.glif + zedieresiscyr + zedieresiscyr.glif + zemlya-cy + zemlya-cy.glif + zero + zero.glif + zero.osf + zero.osf.glif + zero.tf + zero.tf.glif + zetailcyr + zetailcyr.glif + zetailcyr.BSH + zetailcyr.B_S_H_.glif + zhe-cy + zhe-cy.glif + zhe-cy.BGR + zhe-cy.B_G_R_.glif + zhebrevecyr + zhebrevecyr.glif + zhedieresiscyr + zhedieresiscyr.glif + zhetailcyr + zhetailcyr.glif + zhwe-cy + zhwe-cy.glif + zjekomicyr + zjekomicyr.glif + + diff --git a/sources/FixelText-Black.ufo/glyphs/copyright.glif b/sources/FixelText-Black.ufo/glyphs/copyright.glif new file mode 100644 index 00000000..afcdaaae --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/copyright.glif @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-Black.ufo/glyphs/crossedo-cy.glif b/sources/FixelText-Black.ufo/glyphs/crossedo-cy.glif new file mode 100644 index 00000000..9c11f690 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/crossedo-cy.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + com.fontlab.recipe + o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/crossedswords.glif b/sources/FixelText-Black.ufo/glyphs/crossedswords.glif new file mode 100644 index 00000000..86508b4e --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/crossedswords.glif @@ -0,0 +1,103 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/currency.glif b/sources/FixelText-Black.ufo/glyphs/currency.glif new file mode 100644 index 00000000..147e63f7 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/currency.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/d.glif b/sources/FixelText-Black.ufo/glyphs/d.glif new file mode 100644 index 00000000..e88b20f0 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/d.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l + + + diff --git a/sources/FixelText-Black.ufo/glyphs/d.ss01.glif b/sources/FixelText-Black.ufo/glyphs/d.ss01.glif new file mode 100644 index 00000000..a8e88de5 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/d.ss01.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/dagger.glif b/sources/FixelText-Black.ufo/glyphs/dagger.glif new file mode 100644 index 00000000..c041eddb --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/dagger.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/daggerdbl.glif b/sources/FixelText-Black.ufo/glyphs/daggerdbl.glif new file mode 100644 index 00000000..bd0b5982 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/daggerdbl.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/dcaron.glif b/sources/FixelText-Black.ufo/glyphs/dcaron.glif new file mode 100644 index 00000000..254d70ab --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/dcaron.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + d+caron.salt + + + diff --git a/sources/FixelText-Black.ufo/glyphs/dcaron.ss01.glif b/sources/FixelText-Black.ufo/glyphs/dcaron.ss01.glif new file mode 100644 index 00000000..eb22a2b9 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/dcaron.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + d.ss01+caron.salt + + + diff --git a/sources/FixelText-Black.ufo/glyphs/dchecyr.glif b/sources/FixelText-Black.ufo/glyphs/dchecyr.glif new file mode 100644 index 00000000..58e7bcac --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/dchecyr.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + д+10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/dcroat.glif b/sources/FixelText-Black.ufo/glyphs/dcroat.glif new file mode 100644 index 00000000..8d125f37 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/dcroat.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + d + com.fontlab.metricsRight + |hbar + + + diff --git a/sources/FixelText-Black.ufo/glyphs/dcroat.ss01.glif b/sources/FixelText-Black.ufo/glyphs/dcroat.ss01.glif new file mode 100644 index 00000000..7d1894be --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/dcroat.ss01.glif @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + d.ss01 + com.fontlab.metricsRight + |hbar + + + diff --git a/sources/FixelText-Black.ufo/glyphs/de-cy.B_G_R_.glif b/sources/FixelText-Black.ufo/glyphs/de-cy.B_G_R_.glif new file mode 100644 index 00000000..8b4acbdb --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/de-cy.B_G_R_.glif @@ -0,0 +1,77 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + q + com.fontlab.metricsRight + q + com.fontlab.recipe + uni1C81 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/de-cy.glif b/sources/FixelText-Black.ufo/glyphs/de-cy.glif new file mode 100644 index 00000000..e9c2d388 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/de-cy.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/de-cy.ss01.glif b/sources/FixelText-Black.ufo/glyphs/de-cy.ss01.glif new file mode 100644 index 00000000..4a9b2047 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/de-cy.ss01.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/deS_oft-cy.glif b/sources/FixelText-Black.ufo/glyphs/deS_oft-cy.glif new file mode 100644 index 00000000..4991f4d9 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/deS_oft-cy.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + д + com.fontlab.metricsRight + ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/degree.glif b/sources/FixelText-Black.ufo/glyphs/degree.glif new file mode 100644 index 00000000..a28e991e --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/degree.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/dekomicyr.glif b/sources/FixelText-Black.ufo/glyphs/dekomicyr.glif new file mode 100644 index 00000000..74b17485 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/dekomicyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + d + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/diamondwhite-misc.glif b/sources/FixelText-Black.ufo/glyphs/diamondwhite-misc.glif new file mode 100644 index 00000000..f0baee62 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/diamondwhite-misc.glif @@ -0,0 +1,145 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =30 + com.fontlab.metricsRight + =30 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/dieresis.alt.glif b/sources/FixelText-Black.ufo/glyphs/dieresis.alt.glif new file mode 100644 index 00000000..283390ca --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/dieresis.alt.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 1,0.6,0.994,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/dieresis.case.glif b/sources/FixelText-Black.ufo/glyphs/dieresis.case.glif new file mode 100644 index 00000000..2bfb9eca --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/dieresis.case.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/dieresis.glif b/sources/FixelText-Black.ufo/glyphs/dieresis.glif new file mode 100644 index 00000000..7c399a7c --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/dieresis.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/dieresisacute.glif b/sources/FixelText-Black.ufo/glyphs/dieresisacute.glif new file mode 100644 index 00000000..9abb6dd2 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/dieresisacute.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/dieresiscase.alt.glif b/sources/FixelText-Black.ufo/glyphs/dieresiscase.alt.glif new file mode 100644 index 00000000..dc0dc5f3 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/dieresiscase.alt.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 1,0.6,0.994,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/divide.glif b/sources/FixelText-Black.ufo/glyphs/divide.glif new file mode 100644 index 00000000..c347f1e6 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/divide.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/djecyr.glif b/sources/FixelText-Black.ufo/glyphs/djecyr.glif new file mode 100644 index 00000000..a555e56d --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/djecyr.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hbar + com.fontlab.metricsRight + h + + + diff --git a/sources/FixelText-Black.ufo/glyphs/djekomicyr.glif b/sources/FixelText-Black.ufo/glyphs/djekomicyr.glif new file mode 100644 index 00000000..683def3f --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/djekomicyr.glif @@ -0,0 +1,73 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + d + com.fontlab.metricsRight + njekomicyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/djerv-cy.glif b/sources/FixelText-Black.ufo/glyphs/djerv-cy.glif new file mode 100644 index 00000000..edfd9a28 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/djerv-cy.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + r() + com.fontlab.metricsRight + п-30 + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/dollar.glif b/sources/FixelText-Black.ufo/glyphs/dollar.glif new file mode 100644 index 00000000..8acb6d4b --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/dollar.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + S + com.fontlab.metricsRight + S + + + diff --git a/sources/FixelText-Black.ufo/glyphs/dotaccent.case.glif b/sources/FixelText-Black.ufo/glyphs/dotaccent.case.glif new file mode 100644 index 00000000..5d3ba298 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/dotaccent.case.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/dotaccent.glif b/sources/FixelText-Black.ufo/glyphs/dotaccent.glif new file mode 100644 index 00000000..07ca5f31 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/dotaccent.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/doubleo-cy.glif b/sources/FixelText-Black.ufo/glyphs/doubleo-cy.glif new file mode 100644 index 00000000..f77f979f --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/doubleo-cy.glif @@ -0,0 +1,91 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + com.fontlab.recipe + o_o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/dramsignarmn.glif b/sources/FixelText-Black.ufo/glyphs/dramsignarmn.glif new file mode 100644 index 00000000..735e6508 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/dramsignarmn.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/dwe-cy.glif b/sources/FixelText-Black.ufo/glyphs/dwe-cy.glif new file mode 100644 index 00000000..bddaec75 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/dwe-cy.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + д + com.fontlab.metricsRight + д + com.fontlab.recipe + д + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/dze-cy.glif b/sources/FixelText-Black.ufo/glyphs/dze-cy.glif new file mode 100644 index 00000000..f5e0cc3a --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/dze-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + s + + + diff --git a/sources/FixelText-Black.ufo/glyphs/dzeR_eversed-cy.glif b/sources/FixelText-Black.ufo/glyphs/dzeR_eversed-cy.glif new file mode 100644 index 00000000..3f5f7d00 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/dzeR_eversed-cy.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |s + com.fontlab.metricsRight + |s + com.fontlab.recipe + s + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/dzeabkhcyr.glif b/sources/FixelText-Black.ufo/glyphs/dzeabkhcyr.glif new file mode 100644 index 00000000..489e61b0 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/dzeabkhcyr.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + z-30 + com.fontlab.metricsRight + з-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/dzelo-cy.glif b/sources/FixelText-Black.ufo/glyphs/dzelo-cy.glif new file mode 100644 index 00000000..86112ac9 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/dzelo-cy.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/dzhecyr.glif b/sources/FixelText-Black.ufo/glyphs/dzhecyr.glif new file mode 100644 index 00000000..a3da01c0 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/dzhecyr.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelText-Black.ufo/glyphs/dzjekomicyr.glif b/sources/FixelText-Black.ufo/glyphs/dzjekomicyr.glif new file mode 100644 index 00000000..217ceabb --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/dzjekomicyr.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + zjekomicyr + com.fontlab.metricsRight + ц-5 + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/dzwe-cy.glif b/sources/FixelText-Black.ufo/glyphs/dzwe-cy.glif new file mode 100644 index 00000000..26e1d537 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/dzwe-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + s + com.fontlab.metricsRight + s + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/dzze-cy.glif b/sources/FixelText-Black.ufo/glyphs/dzze-cy.glif new file mode 100644 index 00000000..bbb8903f --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/dzze-cy.glif @@ -0,0 +1,84 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + д + com.fontlab.metricsRight + д-30 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/dzzhecyr.glif b/sources/FixelText-Black.ufo/glyphs/dzzhecyr.glif new file mode 100644 index 00000000..b90685e9 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/dzzhecyr.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + д+5 + com.fontlab.metricsRight + ж+5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/e-cy.accented.glif b/sources/FixelText-Black.ufo/glyphs/e-cy.accented.glif new file mode 100644 index 00000000..d3627a04 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/e-cy.accented.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+acute + + + diff --git a/sources/FixelText-Black.ufo/glyphs/e-cy.glif b/sources/FixelText-Black.ufo/glyphs/e-cy.glif new file mode 100644 index 00000000..d6b9d5c6 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/e-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + c + + + diff --git a/sources/FixelText-Black.ufo/glyphs/e-cy.hist.glif b/sources/FixelText-Black.ufo/glyphs/e-cy.hist.glif new file mode 100644 index 00000000..dbeb3a4e --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/e-cy.hist.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + c + com.fontlab.recipe + uni1C83 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/e.glif b/sources/FixelText-Black.ufo/glyphs/e.glif new file mode 100644 index 00000000..2523d5ce --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/e.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + + + diff --git a/sources/FixelText-Black.ufo/glyphs/e.ss01.glif b/sources/FixelText-Black.ufo/glyphs/e.ss01.glif new file mode 100644 index 00000000..d3fb4536 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/e.ss01.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + O-5 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/eacute.glif b/sources/FixelText-Black.ufo/glyphs/eacute.glif new file mode 100644 index 00000000..cfe8d054 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/eacute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+acute + + + diff --git a/sources/FixelText-Black.ufo/glyphs/eacute.ss01.glif b/sources/FixelText-Black.ufo/glyphs/eacute.ss01.glif new file mode 100644 index 00000000..363d86a2 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/eacute.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+acute + + + diff --git a/sources/FixelText-Black.ufo/glyphs/ebreve.glif b/sources/FixelText-Black.ufo/glyphs/ebreve.glif new file mode 100644 index 00000000..d3b0dde0 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/ebreve.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+breve + + + diff --git a/sources/FixelText-Black.ufo/glyphs/ebreve.ss01.glif b/sources/FixelText-Black.ufo/glyphs/ebreve.ss01.glif new file mode 100644 index 00000000..719a2136 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/ebreve.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+breve + + + diff --git a/sources/FixelText-Black.ufo/glyphs/ecaron.glif b/sources/FixelText-Black.ufo/glyphs/ecaron.glif new file mode 100644 index 00000000..d740c19a --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/ecaron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+caron + + + diff --git a/sources/FixelText-Black.ufo/glyphs/ecaron.ss01.glif b/sources/FixelText-Black.ufo/glyphs/ecaron.ss01.glif new file mode 100644 index 00000000..aa488e56 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/ecaron.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+caron + + + diff --git a/sources/FixelText-Black.ufo/glyphs/ecircumflex.glif b/sources/FixelText-Black.ufo/glyphs/ecircumflex.glif new file mode 100644 index 00000000..c2a5313c --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/ecircumflex.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+circumflex + + + diff --git a/sources/FixelText-Black.ufo/glyphs/ecircumflex.ss01.glif b/sources/FixelText-Black.ufo/glyphs/ecircumflex.ss01.glif new file mode 100644 index 00000000..61ea4eb2 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/ecircumflex.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+circumflex + + + diff --git a/sources/FixelText-Black.ufo/glyphs/edieresis.glif b/sources/FixelText-Black.ufo/glyphs/edieresis.glif new file mode 100644 index 00000000..af097cd4 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/edieresis.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsLeft + e + com.fontlab.metricsRight + e + com.fontlab.recipe + e+dieresis + + + diff --git a/sources/FixelText-Black.ufo/glyphs/edieresis.ss01.glif b/sources/FixelText-Black.ufo/glyphs/edieresis.ss01.glif new file mode 100644 index 00000000..baed6764 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/edieresis.ss01.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsLeft + e + com.fontlab.metricsRight + e + com.fontlab.recipe + e.ss01+dieresis + + + diff --git a/sources/FixelText-Black.ufo/glyphs/edotaccent.glif b/sources/FixelText-Black.ufo/glyphs/edotaccent.glif new file mode 100644 index 00000000..d1936a4d --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/edotaccent.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+dotaccent + + + diff --git a/sources/FixelText-Black.ufo/glyphs/edotaccent.ss01.glif b/sources/FixelText-Black.ufo/glyphs/edotaccent.ss01.glif new file mode 100644 index 00000000..f0cf1fe0 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/edotaccent.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+dotaccent + + + diff --git a/sources/FixelText-Black.ufo/glyphs/ef-cy.glif b/sources/FixelText-Black.ufo/glyphs/ef-cy.glif new file mode 100644 index 00000000..68c09e19 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/ef-cy.glif @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/egrave.glif b/sources/FixelText-Black.ufo/glyphs/egrave.glif new file mode 100644 index 00000000..c334fb5e --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/egrave.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+grave + + + diff --git a/sources/FixelText-Black.ufo/glyphs/egrave.ss01.glif b/sources/FixelText-Black.ufo/glyphs/egrave.ss01.glif new file mode 100644 index 00000000..938a2755 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/egrave.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+grave + + + diff --git a/sources/FixelText-Black.ufo/glyphs/eight.glif b/sources/FixelText-Black.ufo/glyphs/eight.glif new file mode 100644 index 00000000..da5cd4b0 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/eight.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/eight.osf.glif b/sources/FixelText-Black.ufo/glyphs/eight.osf.glif new file mode 100644 index 00000000..7bd30d18 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/eight.osf.glif @@ -0,0 +1,15 @@ + + + + + + + + + com.fontlab.metricsLeft + eight + com.fontlab.metricsRight + eight + + + diff --git a/sources/FixelText-Black.ufo/glyphs/eight.tf.glif b/sources/FixelText-Black.ufo/glyphs/eight.tf.glif new file mode 100644 index 00000000..efc5331f --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/eight.tf.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/eiotifiedcyr.B_G_R_.glif b/sources/FixelText-Black.ufo/glyphs/eiotifiedcyr.B_G_R_.glif new file mode 100644 index 00000000..2838002d --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/eiotifiedcyr.B_G_R_.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + c + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/eiotifiedcyr.glif b/sources/FixelText-Black.ufo/glyphs/eiotifiedcyr.glif new file mode 100644 index 00000000..cac30c74 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/eiotifiedcyr.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + c + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/el-cy.B_G_R_.glif b/sources/FixelText-Black.ufo/glyphs/el-cy.B_G_R_.glif new file mode 100644 index 00000000..47d87cbd --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/el-cy.B_G_R_.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + v + com.fontlab.metricsRight + v + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/el-cy.glif b/sources/FixelText-Black.ufo/glyphs/el-cy.glif new file mode 100644 index 00000000..429424ac --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/el-cy.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelText-Black.ufo/glyphs/el-cy.ss01.glif b/sources/FixelText-Black.ufo/glyphs/el-cy.ss01.glif new file mode 100644 index 00000000..c46399d5 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/el-cy.ss01.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelText-Black.ufo/glyphs/elS_oft-cy.glif b/sources/FixelText-Black.ufo/glyphs/elS_oft-cy.glif new file mode 100644 index 00000000..07e2cf48 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/elS_oft-cy.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/elhookcyr.glif b/sources/FixelText-Black.ufo/glyphs/elhookcyr.glif new file mode 100644 index 00000000..27829148 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/elhookcyr.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + н + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/ellipsis.glif b/sources/FixelText-Black.ufo/glyphs/ellipsis.glif new file mode 100644 index 00000000..1c4eae69 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/ellipsis.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/elmiddlehookcyr.glif b/sources/FixelText-Black.ufo/glyphs/elmiddlehookcyr.glif new file mode 100644 index 00000000..e4670ec2 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/elmiddlehookcyr.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + enmiddlehookcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/elsharptailcyr.glif b/sources/FixelText-Black.ufo/glyphs/elsharptailcyr.glif new file mode 100644 index 00000000..c1c7259a --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/elsharptailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + ensharptailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/eltailcyr.glif b/sources/FixelText-Black.ufo/glyphs/eltailcyr.glif new file mode 100644 index 00000000..57681ba9 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/eltailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/em-cy.glif b/sources/FixelText-Black.ufo/glyphs/em-cy.glif new file mode 100644 index 00000000..77cf0fcd --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/em-cy.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelText-Black.ufo/glyphs/emS_oft-cy.glif b/sources/FixelText-Black.ufo/glyphs/emS_oft-cy.glif new file mode 100644 index 00000000..8d030d48 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/emS_oft-cy.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + м + com.fontlab.metricsRight + ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/emacron.glif b/sources/FixelText-Black.ufo/glyphs/emacron.glif new file mode 100644 index 00000000..0db77936 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/emacron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+macron + + + diff --git a/sources/FixelText-Black.ufo/glyphs/emacron.ss01.glif b/sources/FixelText-Black.ufo/glyphs/emacron.ss01.glif new file mode 100644 index 00000000..4c4c9219 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/emacron.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+macron + + + diff --git a/sources/FixelText-Black.ufo/glyphs/emdash.case.glif b/sources/FixelText-Black.ufo/glyphs/emdash.case.glif new file mode 100644 index 00000000..47a733cc --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/emdash.case.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/emdash.glif b/sources/FixelText-Black.ufo/glyphs/emdash.glif new file mode 100644 index 00000000..185af936 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/emdash.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/emsharptailcyr.glif b/sources/FixelText-Black.ufo/glyphs/emsharptailcyr.glif new file mode 100644 index 00000000..f0b7f843 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/emsharptailcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + м + com.fontlab.metricsRight + ensharptailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/en-cy.glif b/sources/FixelText-Black.ufo/glyphs/en-cy.glif new file mode 100644 index 00000000..79b15426 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/en-cy.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/enclosingcirclecomb.glif b/sources/FixelText-Black.ufo/glyphs/enclosingcirclecomb.glif new file mode 100644 index 00000000..168cfeed --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/enclosingcirclecomb.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/endash.case.glif b/sources/FixelText-Black.ufo/glyphs/endash.case.glif new file mode 100644 index 00000000..197842bf --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/endash.case.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/endash.glif b/sources/FixelText-Black.ufo/glyphs/endash.glif new file mode 100644 index 00000000..889bf4b4 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/endash.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/eng.glif b/sources/FixelText-Black.ufo/glyphs/eng.glif new file mode 100644 index 00000000..ce4ca8d5 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/eng.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + n + com.fontlab.metricsRight + dotlessj + + + diff --git a/sources/FixelText-Black.ufo/glyphs/engecyr.glif b/sources/FixelText-Black.ufo/glyphs/engecyr.glif new file mode 100644 index 00000000..7a94d123 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/engecyr.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/enhookcyr.glif b/sources/FixelText-Black.ufo/glyphs/enhookcyr.glif new file mode 100644 index 00000000..190bfda1 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/enhookcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/enhookleftcyr.glif b/sources/FixelText-Black.ufo/glyphs/enhookleftcyr.glif new file mode 100644 index 00000000..4b5008f8 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/enhookleftcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + j + com.fontlab.metricsRight + н + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/enmiddlehookcyr.glif b/sources/FixelText-Black.ufo/glyphs/enmiddlehookcyr.glif new file mode 100644 index 00000000..f5b031b7 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/enmiddlehookcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + softsign-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/ensharptailcyr.glif b/sources/FixelText-Black.ufo/glyphs/ensharptailcyr.glif new file mode 100644 index 00000000..bb19302f --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/ensharptailcyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + д + com.fontlab.recipe + entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/entailcyr.glif b/sources/FixelText-Black.ufo/glyphs/entailcyr.glif new file mode 100644 index 00000000..a7a3a3d9 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/entailcyr.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + ц + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/eogonek.glif b/sources/FixelText-Black.ufo/glyphs/eogonek.glif new file mode 100644 index 00000000..6b79cbfe --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/eogonek.glif @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + e+ogonek + + + diff --git a/sources/FixelText-Black.ufo/glyphs/eogonek.ss01.glif b/sources/FixelText-Black.ufo/glyphs/eogonek.ss01.glif new file mode 100644 index 00000000..b1234e03 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/eogonek.ss01.glif @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + e.ss01+ogonek + + + diff --git a/sources/FixelText-Black.ufo/glyphs/equal.glif b/sources/FixelText-Black.ufo/glyphs/equal.glif new file mode 100644 index 00000000..41b11ecc --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/equal.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/er-cy.glif b/sources/FixelText-Black.ufo/glyphs/er-cy.glif new file mode 100644 index 00000000..38e61b1b --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/er-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + p + + + diff --git a/sources/FixelText-Black.ufo/glyphs/er-cy.ss01.glif b/sources/FixelText-Black.ufo/glyphs/er-cy.ss01.glif new file mode 100644 index 00000000..a993720a --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/er-cy.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + p.ss01 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/ereversed-cy.accented.glif b/sources/FixelText-Black.ufo/glyphs/ereversed-cy.accented.glif new file mode 100644 index 00000000..d8a43d95 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/ereversed-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + э+acute + + + diff --git a/sources/FixelText-Black.ufo/glyphs/ereversed-cy.glif b/sources/FixelText-Black.ufo/glyphs/ereversed-cy.glif new file mode 100644 index 00000000..99752cf5 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/ereversed-cy.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |c + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelText-Black.ufo/glyphs/ereverseddieresiscyr.glif b/sources/FixelText-Black.ufo/glyphs/ereverseddieresiscyr.glif new file mode 100644 index 00000000..1c02e509 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/ereverseddieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ereversed-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/ertickcyr.glif b/sources/FixelText-Black.ufo/glyphs/ertickcyr.glif new file mode 100644 index 00000000..a01916cd --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/ertickcyr.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + p + com.fontlab.metricsRight + p + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/es-cy.glif b/sources/FixelText-Black.ufo/glyphs/es-cy.glif new file mode 100644 index 00000000..e38aa1f5 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/es-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c + + + diff --git a/sources/FixelText-Black.ufo/glyphs/estailcyr.B_S_H_.glif b/sources/FixelText-Black.ufo/glyphs/estailcyr.B_S_H_.glif new file mode 100644 index 00000000..86a225f3 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/estailcyr.B_S_H_.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + c + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/estailcyr.C_H_U_.glif b/sources/FixelText-Black.ufo/glyphs/estailcyr.C_H_U_.glif new file mode 100644 index 00000000..2b465374 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/estailcyr.C_H_U_.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+cedilla + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/estailcyr.glif b/sources/FixelText-Black.ufo/glyphs/estailcyr.glif new file mode 100644 index 00000000..98e37203 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/estailcyr.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + с + com.fontlab.metricsRight + с + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/estimated.glif b/sources/FixelText-Black.ufo/glyphs/estimated.glif new file mode 100644 index 00000000..96f23954 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/estimated.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-Black.ufo/glyphs/eth.glif b/sources/FixelText-Black.ufo/glyphs/eth.glif new file mode 100644 index 00000000..763ad22a --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/eth.glif @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelText-Black.ufo/glyphs/eturned.glif b/sources/FixelText-Black.ufo/glyphs/eturned.glif new file mode 100644 index 00000000..2d92ede2 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/eturned.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + schwacyr + + + diff --git a/sources/FixelText-Black.ufo/glyphs/euro.glif b/sources/FixelText-Black.ufo/glyphs/euro.glif new file mode 100644 index 00000000..436732ac --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/euro.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + C + + + diff --git a/sources/FixelText-Black.ufo/glyphs/exclam.glif b/sources/FixelText-Black.ufo/glyphs/exclam.glif new file mode 100644 index 00000000..ac83f253 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/exclam.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/exclamdown.case.glif b/sources/FixelText-Black.ufo/glyphs/exclamdown.case.glif new file mode 100644 index 00000000..63c08fd4 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/exclamdown.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + exclamdown + com.fontlab.metricsRight + exclamdown + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/exclamdown.glif b/sources/FixelText-Black.ufo/glyphs/exclamdown.glif new file mode 100644 index 00000000..865eb095 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/exclamdown.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/f.glif b/sources/FixelText-Black.ufo/glyphs/f.glif new file mode 100644 index 00000000..2d2ba96e --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/f.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/f.ss01.glif b/sources/FixelText-Black.ufo/glyphs/f.ss01.glif new file mode 100644 index 00000000..8b0c8b2d --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/f.ss01.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/f_f.glif b/sources/FixelText-Black.ufo/glyphs/f_f.glif new file mode 100644 index 00000000..7a38e315 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/f_f.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f + com.fontlab.metricsRight + f + + + diff --git a/sources/FixelText-Black.ufo/glyphs/f_f.ss01.glif b/sources/FixelText-Black.ufo/glyphs/f_f.ss01.glif new file mode 100644 index 00000000..a6597873 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/f_f.ss01.glif @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f.ss01 + com.fontlab.metricsRight + f.ss01 + com.fontlab.recipe + f.ss01_f.ss01 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/f_f_i.glif b/sources/FixelText-Black.ufo/glyphs/f_f_i.glif new file mode 100644 index 00000000..7ec73ad7 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/f_f_i.glif @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f + com.fontlab.metricsRight + i + + + diff --git a/sources/FixelText-Black.ufo/glyphs/f_f_i.ss01.glif b/sources/FixelText-Black.ufo/glyphs/f_f_i.ss01.glif new file mode 100644 index 00000000..37a71fd2 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/f_f_i.ss01.glif @@ -0,0 +1,88 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f.ss01 + com.fontlab.metricsRight + i + com.fontlab.recipe + f.ss01_f.ss01_i + + + diff --git a/sources/FixelText-Black.ufo/glyphs/f_f_l.glif b/sources/FixelText-Black.ufo/glyphs/f_f_l.glif new file mode 100644 index 00000000..0d474691 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/f_f_l.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f + com.fontlab.metricsRight + l + + + diff --git a/sources/FixelText-Black.ufo/glyphs/f_f_l.ss01.glif b/sources/FixelText-Black.ufo/glyphs/f_f_l.ss01.glif new file mode 100644 index 00000000..c5c3e55d --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/f_f_l.ss01.glif @@ -0,0 +1,86 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f.ss01 + com.fontlab.metricsRight + l.ss01 + com.fontlab.recipe + f.ss01_f.ss01_l.ss01 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/fi.glif b/sources/FixelText-Black.ufo/glyphs/fi.glif new file mode 100644 index 00000000..d881340d --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/fi.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f + com.fontlab.metricsRight + i + + + diff --git a/sources/FixelText-Black.ufo/glyphs/fi.ss01.glif b/sources/FixelText-Black.ufo/glyphs/fi.ss01.glif new file mode 100644 index 00000000..753f1fff --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/fi.ss01.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f.ss01 + com.fontlab.metricsRight + i + com.fontlab.recipe + f.ss01_i + + + diff --git a/sources/FixelText-Black.ufo/glyphs/fitacyr.glif b/sources/FixelText-Black.ufo/glyphs/fitacyr.glif new file mode 100644 index 00000000..f8e53320 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/fitacyr.glif @@ -0,0 +1,76 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + obarcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/five.glif b/sources/FixelText-Black.ufo/glyphs/five.glif new file mode 100644 index 00000000..f1f45d26 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/five.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/five.osf.glif b/sources/FixelText-Black.ufo/glyphs/five.osf.glif new file mode 100644 index 00000000..b22a24aa --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/five.osf.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + five + com.fontlab.metricsRight + five + + + diff --git a/sources/FixelText-Black.ufo/glyphs/five.tf.glif b/sources/FixelText-Black.ufo/glyphs/five.tf.glif new file mode 100644 index 00000000..6bfca1f7 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/five.tf.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/fl.glif b/sources/FixelText-Black.ufo/glyphs/fl.glif new file mode 100644 index 00000000..43e34d10 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/fl.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f + com.fontlab.metricsRight + l + + + diff --git a/sources/FixelText-Black.ufo/glyphs/fl.ss01.glif b/sources/FixelText-Black.ufo/glyphs/fl.ss01.glif new file mode 100644 index 00000000..fb8d7832 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/fl.ss01.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f.ss01 + com.fontlab.metricsRight + l.ss01 + com.fontlab.recipe + f.ss01_l.ss01 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/floretteblack.glif b/sources/FixelText-Black.ufo/glyphs/floretteblack.glif new file mode 100644 index 00000000..97a6ae0c --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/floretteblack.glif @@ -0,0 +1,522 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/floretteoutlinedpetalledblackeight.glif b/sources/FixelText-Black.ufo/glyphs/floretteoutlinedpetalledblackeight.glif new file mode 100644 index 00000000..6faec902 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/floretteoutlinedpetalledblackeight.glif @@ -0,0 +1,693 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/florettewhite.glif b/sources/FixelText-Black.ufo/glyphs/florettewhite.glif new file mode 100644 index 00000000..60726d03 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/florettewhite.glif @@ -0,0 +1,417 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/florin.glif b/sources/FixelText-Black.ufo/glyphs/florin.glif new file mode 100644 index 00000000..abe843e7 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/florin.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/flower.glif b/sources/FixelText-Black.ufo/glyphs/flower.glif new file mode 100644 index 00000000..2cb319f0 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/flower.glif @@ -0,0 +1,278 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/four.glif b/sources/FixelText-Black.ufo/glyphs/four.glif new file mode 100644 index 00000000..0d1da2a0 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/four.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/four.osf.glif b/sources/FixelText-Black.ufo/glyphs/four.osf.glif new file mode 100644 index 00000000..a02cfd84 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/four.osf.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + four + com.fontlab.metricsRight + four + + + diff --git a/sources/FixelText-Black.ufo/glyphs/four.tf.glif b/sources/FixelText-Black.ufo/glyphs/four.tf.glif new file mode 100644 index 00000000..a467ed9e --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/four.tf.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/fraction.glif b/sources/FixelText-Black.ufo/glyphs/fraction.glif new file mode 100644 index 00000000..c37bddf5 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/fraction.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/g.glif b/sources/FixelText-Black.ufo/glyphs/g.glif new file mode 100644 index 00000000..3bbc1c3b --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/g.glif @@ -0,0 +1,94 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/g.ss01.glif b/sources/FixelText-Black.ufo/glyphs/g.ss01.glif new file mode 100644 index 00000000..128862c4 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/g.ss01.glif @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/gacute.glif b/sources/FixelText-Black.ufo/glyphs/gacute.glif new file mode 100644 index 00000000..c6706482 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/gacute.glif @@ -0,0 +1,109 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + g+acute + + + diff --git a/sources/FixelText-Black.ufo/glyphs/gacute.ss01.glif b/sources/FixelText-Black.ufo/glyphs/gacute.ss01.glif new file mode 100644 index 00000000..47a4ae13 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/gacute.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + g.ss01+acute + + + diff --git a/sources/FixelText-Black.ufo/glyphs/gbreve.glif b/sources/FixelText-Black.ufo/glyphs/gbreve.glif new file mode 100644 index 00000000..40f73cd8 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/gbreve.glif @@ -0,0 +1,119 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + g+breve + + + diff --git a/sources/FixelText-Black.ufo/glyphs/gbreve.ss01.glif b/sources/FixelText-Black.ufo/glyphs/gbreve.ss01.glif new file mode 100644 index 00000000..9be68df6 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/gbreve.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + g.ss01+breve + + + diff --git a/sources/FixelText-Black.ufo/glyphs/gcircumflex.glif b/sources/FixelText-Black.ufo/glyphs/gcircumflex.glif new file mode 100644 index 00000000..eb462a98 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/gcircumflex.glif @@ -0,0 +1,113 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + g+circumflex + + + diff --git a/sources/FixelText-Black.ufo/glyphs/gcircumflex.ss01.glif b/sources/FixelText-Black.ufo/glyphs/gcircumflex.ss01.glif new file mode 100644 index 00000000..ae81de7f --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/gcircumflex.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + g.ss01+circumflex + + + diff --git a/sources/FixelText-Black.ufo/glyphs/gcommaaccent.glif b/sources/FixelText-Black.ufo/glyphs/gcommaaccent.glif new file mode 100644 index 00000000..8c01e0ac --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/gcommaaccent.glif @@ -0,0 +1,121 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + g+commaaccentcomb.salt + + + diff --git a/sources/FixelText-Black.ufo/glyphs/gcommaaccent.ss01.glif b/sources/FixelText-Black.ufo/glyphs/gcommaaccent.ss01.glif new file mode 100644 index 00000000..b8c43d2a --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/gcommaaccent.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + g.ss01+commaaccentcomb.salt + + + diff --git a/sources/FixelText-Black.ufo/glyphs/gdotaccent.glif b/sources/FixelText-Black.ufo/glyphs/gdotaccent.glif new file mode 100644 index 00000000..5b36cfdd --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/gdotaccent.glif @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + g+dotaccent + + + diff --git a/sources/FixelText-Black.ufo/glyphs/gdotaccent.ss01.glif b/sources/FixelText-Black.ufo/glyphs/gdotaccent.ss01.glif new file mode 100644 index 00000000..8af297fc --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/gdotaccent.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + g.ss01+dotaccent + + + diff --git a/sources/FixelText-Black.ufo/glyphs/ge-cy.B_G_R_.glif b/sources/FixelText-Black.ufo/glyphs/ge-cy.B_G_R_.glif new file mode 100644 index 00000000..3c4181f4 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/ge-cy.B_G_R_.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |s+5 + com.fontlab.metricsRight + |s+5 + com.fontlab.recipe + dzeReversed-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/ge-cy.S_R_B_.glif b/sources/FixelText-Black.ufo/glyphs/ge-cy.S_R_B_.glif new file mode 100644 index 00000000..413ccc29 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/ge-cy.S_R_B_.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + iota-cy+macron + + + diff --git a/sources/FixelText-Black.ufo/glyphs/ge-cy.glif b/sources/FixelText-Black.ufo/glyphs/ge-cy.glif new file mode 100644 index 00000000..a5333d0e --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/ge-cy.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + т + + + diff --git a/sources/FixelText-Black.ufo/glyphs/gehookcyr.glif b/sources/FixelText-Black.ufo/glyphs/gehookcyr.glif new file mode 100644 index 00000000..a9377d53 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/gehookcyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + г + com.fontlab.metricsRight + enmiddlehookcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/gehookstrokecyr.glif b/sources/FixelText-Black.ufo/glyphs/gehookstrokecyr.glif new file mode 100644 index 00000000..6e2eab89 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/gehookstrokecyr.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + gestrokecyr + com.fontlab.metricsRight + gestrokecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/germandbls.glif b/sources/FixelText-Black.ufo/glyphs/germandbls.glif new file mode 100644 index 00000000..e9f8a7d0 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/germandbls.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + h-5 + com.fontlab.metricsRight + з + + + diff --git a/sources/FixelText-Black.ufo/glyphs/germandbls.ss01.glif b/sources/FixelText-Black.ufo/glyphs/germandbls.ss01.glif new file mode 100644 index 00000000..78c85aff --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/germandbls.ss01.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f.ss01 + com.fontlab.metricsRight + з + + + diff --git a/sources/FixelText-Black.ufo/glyphs/gestrokecyr.B_S_H_.glif b/sources/FixelText-Black.ufo/glyphs/gestrokecyr.B_S_H_.glif new file mode 100644 index 00000000..d4f32d57 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/gestrokecyr.B_S_H_.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + г + com.fontlab.metricsRight + gestrokecyr + com.fontlab.recipe + gestrokecyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/gestrokecyr.glif b/sources/FixelText-Black.ufo/glyphs/gestrokecyr.glif new file mode 100644 index 00000000..91fc0920 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/gestrokecyr.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + г + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/getailcyr.glif b/sources/FixelText-Black.ufo/glyphs/getailcyr.glif new file mode 100644 index 00000000..74d3e1a1 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/getailcyr.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + г + com.fontlab.metricsRight + г + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/gheupturn-cy.glif b/sources/FixelText-Black.ufo/glyphs/gheupturn-cy.glif new file mode 100644 index 00000000..4918e0db --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/gheupturn-cy.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + г + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/gjecyr.S_R_B_.glif b/sources/FixelText-Black.ufo/glyphs/gjecyr.S_R_B_.glif new file mode 100644 index 00000000..09b74bd1 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/gjecyr.S_R_B_.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + iota-cy+macronacute.SRB + + + diff --git a/sources/FixelText-Black.ufo/glyphs/gjecyr.glif b/sources/FixelText-Black.ufo/glyphs/gjecyr.glif new file mode 100644 index 00000000..c03317a9 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/gjecyr.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/grave.case.glif b/sources/FixelText-Black.ufo/glyphs/grave.case.glif new file mode 100644 index 00000000..b3fc1724 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/grave.case.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/grave.glif b/sources/FixelText-Black.ufo/glyphs/grave.glif new file mode 100644 index 00000000..8f2feba1 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/grave.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/greater.glif b/sources/FixelText-Black.ufo/glyphs/greater.glif new file mode 100644 index 00000000..7ec84e7b --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/greater.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |less + com.fontlab.metricsRight + |less + + + diff --git a/sources/FixelText-Black.ufo/glyphs/greaterequal.glif b/sources/FixelText-Black.ufo/glyphs/greaterequal.glif new file mode 100644 index 00000000..d7ff0632 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/greaterequal.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/guillemetleft.case.glif b/sources/FixelText-Black.ufo/glyphs/guillemetleft.case.glif new file mode 100644 index 00000000..f5a9e589 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/guillemetleft.case.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + guilsinglleft + com.fontlab.metricsRight + guilsinglleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/guillemetleft.glif b/sources/FixelText-Black.ufo/glyphs/guillemetleft.glif new file mode 100644 index 00000000..518455a6 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/guillemetleft.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + guilsinglleft + com.fontlab.metricsRight + guilsinglleft + + + diff --git a/sources/FixelText-Black.ufo/glyphs/guillemetright.case.glif b/sources/FixelText-Black.ufo/glyphs/guillemetright.case.glif new file mode 100644 index 00000000..e647345f --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/guillemetright.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |guillemetleft.case + com.fontlab.metricsRight + |guillemetleft.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/guillemetright.glif b/sources/FixelText-Black.ufo/glyphs/guillemetright.glif new file mode 100644 index 00000000..3271603d --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/guillemetright.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |guilsinglleft + com.fontlab.metricsRight + |guilsinglleft + + + diff --git a/sources/FixelText-Black.ufo/glyphs/guilsinglleft.case.glif b/sources/FixelText-Black.ufo/glyphs/guilsinglleft.case.glif new file mode 100644 index 00000000..4fdc91d8 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/guilsinglleft.case.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/guilsinglleft.glif b/sources/FixelText-Black.ufo/glyphs/guilsinglleft.glif new file mode 100644 index 00000000..023a3957 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/guilsinglleft.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/guilsinglright.case.glif b/sources/FixelText-Black.ufo/glyphs/guilsinglright.case.glif new file mode 100644 index 00000000..18888e60 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/guilsinglright.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |guilsinglleft + com.fontlab.metricsRight + |guilsinglleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/guilsinglright.glif b/sources/FixelText-Black.ufo/glyphs/guilsinglright.glif new file mode 100644 index 00000000..e412aacd --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/guilsinglright.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + |guilsinglleft + com.fontlab.metricsRight + |guilsinglleft + + + diff --git a/sources/FixelText-Black.ufo/glyphs/h.glif b/sources/FixelText-Black.ufo/glyphs/h.glif new file mode 100644 index 00000000..4b75619a --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/h.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + com.fontlab.metricsRight + n + + + diff --git a/sources/FixelText-Black.ufo/glyphs/ha-cy.glif b/sources/FixelText-Black.ufo/glyphs/ha-cy.glif new file mode 100644 index 00000000..449e6dd2 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/ha-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + x + + + diff --git a/sources/FixelText-Black.ufo/glyphs/haabkhcyr.glif b/sources/FixelText-Black.ufo/glyphs/haabkhcyr.glif new file mode 100644 index 00000000..74516774 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/haabkhcyr.glif @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + |o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/hahookcyr.glif b/sources/FixelText-Black.ufo/glyphs/hahookcyr.glif new file mode 100644 index 00000000..5d201035 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/hahookcyr.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + x + com.fontlab.metricsRight + x + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/hardsign-cy.B_G_R_.glif b/sources/FixelText-Black.ufo/glyphs/hardsign-cy.B_G_R_.glif new file mode 100644 index 00000000..7dd5869d --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/hardsign-cy.B_G_R_.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/hardsign-cy.glif b/sources/FixelText-Black.ufo/glyphs/hardsign-cy.glif new file mode 100644 index 00000000..e2e55212 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/hardsign-cy.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/hardsign-cy.ss01.glif b/sources/FixelText-Black.ufo/glyphs/hardsign-cy.ss01.glif new file mode 100644 index 00000000..2481ea57 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/hardsign-cy.ss01.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/hastrokecyr.glif b/sources/FixelText-Black.ufo/glyphs/hastrokecyr.glif new file mode 100644 index 00000000..44907e35 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/hastrokecyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + x + com.fontlab.metricsRight + x + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/hbar.glif b/sources/FixelText-Black.ufo/glyphs/hbar.glif new file mode 100644 index 00000000..ab531945 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/hbar.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + h + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/hcircumflex.glif b/sources/FixelText-Black.ufo/glyphs/hcircumflex.glif new file mode 100644 index 00000000..dc4bc14c --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/hcircumflex.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + h+circumflex.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/heart.glif b/sources/FixelText-Black.ufo/glyphs/heart.glif new file mode 100644 index 00000000..0dc7f70d --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/heart.glif @@ -0,0 +1,320 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/heartwhite.glif b/sources/FixelText-Black.ufo/glyphs/heartwhite.glif new file mode 100644 index 00000000..ccd05f9e --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/heartwhite.glif @@ -0,0 +1,189 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/hryvnia.glif b/sources/FixelText-Black.ufo/glyphs/hryvnia.glif new file mode 100644 index 00000000..a262c323 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/hryvnia.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/hundredmillionscomb-cy.glif b/sources/FixelText-Black.ufo/glyphs/hundredmillionscomb-cy.glif new file mode 100644 index 00000000..162cc824 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/hundredmillionscomb-cy.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/hundredthousandscombcyr.glif b/sources/FixelText-Black.ufo/glyphs/hundredthousandscombcyr.glif new file mode 100644 index 00000000..97d61e96 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/hundredthousandscombcyr.glif @@ -0,0 +1,141 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/hungarumlaut.case.glif b/sources/FixelText-Black.ufo/glyphs/hungarumlaut.case.glif new file mode 100644 index 00000000..fd0761f0 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/hungarumlaut.case.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/hungarumlaut.glif b/sources/FixelText-Black.ufo/glyphs/hungarumlaut.glif new file mode 100644 index 00000000..eb1ceb0b --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/hungarumlaut.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/hwe-cy.glif b/sources/FixelText-Black.ufo/glyphs/hwe-cy.glif new file mode 100644 index 00000000..96d53938 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/hwe-cy.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + h + com.fontlab.metricsRight + h + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/hyphen.case.glif b/sources/FixelText-Black.ufo/glyphs/hyphen.case.glif new file mode 100644 index 00000000..04dab01f --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/hyphen.case.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.metricsLeft + hyphen + com.fontlab.metricsRight + hyphen + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/hyphen.glif b/sources/FixelText-Black.ufo/glyphs/hyphen.glif new file mode 100644 index 00000000..c25960f8 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/hyphen.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/i-cy.glif b/sources/FixelText-Black.ufo/glyphs/i-cy.glif new file mode 100644 index 00000000..b30a2f3a --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/i-cy.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + i + + + diff --git a/sources/FixelText-Black.ufo/glyphs/i.glif b/sources/FixelText-Black.ufo/glyphs/i.glif new file mode 100644 index 00000000..b59e5fc9 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/i.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + dotlessi+dotaccent + + + diff --git a/sources/FixelText-Black.ufo/glyphs/ia-cy.accented.glif b/sources/FixelText-Black.ufo/glyphs/ia-cy.accented.glif new file mode 100644 index 00000000..89f8b26b --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/ia-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + я+acute + + + diff --git a/sources/FixelText-Black.ufo/glyphs/ia-cy.glif b/sources/FixelText-Black.ufo/glyphs/ia-cy.glif new file mode 100644 index 00000000..e6e675a5 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/ia-cy.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelText-Black.ufo/glyphs/ia-cy.ss01.glif b/sources/FixelText-Black.ufo/glyphs/ia-cy.ss01.glif new file mode 100644 index 00000000..5c05115a --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/ia-cy.ss01.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/iacute.glif b/sources/FixelText-Black.ufo/glyphs/iacute.glif new file mode 100644 index 00000000..fbe184c2 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/iacute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + dotlessi+acute + + + diff --git a/sources/FixelText-Black.ufo/glyphs/ibreve.glif b/sources/FixelText-Black.ufo/glyphs/ibreve.glif new file mode 100644 index 00000000..27b5471b --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/ibreve.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + dotlessi+breve + + + diff --git a/sources/FixelText-Black.ufo/glyphs/icircumflex.glif b/sources/FixelText-Black.ufo/glyphs/icircumflex.glif new file mode 100644 index 00000000..e5b2fe98 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/icircumflex.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + dotlessi+circumflex + + + diff --git a/sources/FixelText-Black.ufo/glyphs/idieresis.glif b/sources/FixelText-Black.ufo/glyphs/idieresis.glif new file mode 100644 index 00000000..be30ce53 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/idieresis.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + idotless+dieresis.alt + + + diff --git a/sources/FixelText-Black.ufo/glyphs/idieresiscyr.glif b/sources/FixelText-Black.ufo/glyphs/idieresiscyr.glif new file mode 100644 index 00000000..b1a12ddd --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/idieresiscyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ii-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/idotless.glif b/sources/FixelText-Black.ufo/glyphs/idotless.glif new file mode 100644 index 00000000..b5df03b6 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/idotless.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/ie-cy.glif b/sources/FixelText-Black.ufo/glyphs/ie-cy.glif new file mode 100644 index 00000000..a57c3cb2 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/ie-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e + + + diff --git a/sources/FixelText-Black.ufo/glyphs/ie-cy.ss01.glif b/sources/FixelText-Black.ufo/glyphs/ie-cy.ss01.glif new file mode 100644 index 00000000..54c0d1c8 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/ie-cy.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/iebrevecyr.glif b/sources/FixelText-Black.ufo/glyphs/iebrevecyr.glif new file mode 100644 index 00000000..fb4b6791 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/iebrevecyr.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+breve + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/iegravecyr.S_R_B_.glif b/sources/FixelText-Black.ufo/glyphs/iegravecyr.S_R_B_.glif new file mode 100644 index 00000000..b7e3b42f --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/iegravecyr.S_R_B_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+grave + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/iegravecyr.glif b/sources/FixelText-Black.ufo/glyphs/iegravecyr.glif new file mode 100644 index 00000000..7d9348ab --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/iegravecyr.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+grave + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/igrave.glif b/sources/FixelText-Black.ufo/glyphs/igrave.glif new file mode 100644 index 00000000..0bb7417d --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/igrave.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + dotlessi+grave + + + diff --git a/sources/FixelText-Black.ufo/glyphs/igravecyr.S_R_B_.glif b/sources/FixelText-Black.ufo/glyphs/igravecyr.S_R_B_.glif new file mode 100644 index 00000000..522d7f98 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/igravecyr.S_R_B_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+grave + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/igravecyr.glif b/sources/FixelText-Black.ufo/glyphs/igravecyr.glif new file mode 100644 index 00000000..1efc78e4 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/igravecyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ii-cy+grave + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/ii-cy.B_G_R_.glif b/sources/FixelText-Black.ufo/glyphs/ii-cy.B_G_R_.glif new file mode 100644 index 00000000..4476ed2c --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/ii-cy.B_G_R_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/ii-cy.accented.glif b/sources/FixelText-Black.ufo/glyphs/ii-cy.accented.glif new file mode 100644 index 00000000..2242ef2e --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/ii-cy.accented.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + и+acute + + + diff --git a/sources/FixelText-Black.ufo/glyphs/ii-cy.glif b/sources/FixelText-Black.ufo/glyphs/ii-cy.glif new file mode 100644 index 00000000..9e093159 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/ii-cy.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelText-Black.ufo/glyphs/iishort-cy.B_G_R_.glif b/sources/FixelText-Black.ufo/glyphs/iishort-cy.B_G_R_.glif new file mode 100644 index 00000000..abbc4889 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/iishort-cy.B_G_R_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/iishort-cy.glif b/sources/FixelText-Black.ufo/glyphs/iishort-cy.glif new file mode 100644 index 00000000..8644c708 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/iishort-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + icyr+breve + + + diff --git a/sources/FixelText-Black.ufo/glyphs/ij.glif b/sources/FixelText-Black.ufo/glyphs/ij.glif new file mode 100644 index 00000000..c4d85b00 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/ij.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + i + com.fontlab.metricsRight + j + com.fontlab.recipe + i_j + + + diff --git a/sources/FixelText-Black.ufo/glyphs/imacron.glif b/sources/FixelText-Black.ufo/glyphs/imacron.glif new file mode 100644 index 00000000..2ecd39a4 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/imacron.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =5 + com.fontlab.metricsRight + =5 + com.fontlab.recipe + idotless+macron + + + diff --git a/sources/FixelText-Black.ufo/glyphs/imacroncyr.glif b/sources/FixelText-Black.ufo/glyphs/imacroncyr.glif new file mode 100644 index 00000000..1e08a89d --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/imacroncyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ii-cy+macron + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/increment.glif b/sources/FixelText-Black.ufo/glyphs/increment.glif new file mode 100644 index 00000000..8759970c --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/increment.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/infinity.glif b/sources/FixelText-Black.ufo/glyphs/infinity.glif new file mode 100644 index 00000000..c9af1165 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/infinity.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/integral.glif b/sources/FixelText-Black.ufo/glyphs/integral.glif new file mode 100644 index 00000000..f28d6bba --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/integral.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/io-cy.accented.glif b/sources/FixelText-Black.ufo/glyphs/io-cy.accented.glif new file mode 100644 index 00000000..06da77e7 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/io-cy.accented.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsLeft + e + com.fontlab.metricsRight + e + com.fontlab.recipe + e+dieresisacute + + + diff --git a/sources/FixelText-Black.ufo/glyphs/io-cy.glif b/sources/FixelText-Black.ufo/glyphs/io-cy.glif new file mode 100644 index 00000000..2572e618 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/io-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + edieresis + + + diff --git a/sources/FixelText-Black.ufo/glyphs/io-cy.ss01.glif b/sources/FixelText-Black.ufo/glyphs/io-cy.ss01.glif new file mode 100644 index 00000000..0df28def --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/io-cy.ss01.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + edieresis.ss01 + com.schriftgestaltung.Glyphs.ComponentInfo + + + alignment + -1 + index + 0 + name + edieresis.ss01 + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/iogonek.glif b/sources/FixelText-Black.ufo/glyphs/iogonek.glif new file mode 100644 index 00000000..520c9826 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/iogonek.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + i+ogonek + + + diff --git a/sources/FixelText-Black.ufo/glyphs/iota-cy.glif b/sources/FixelText-Black.ufo/glyphs/iota-cy.glif new file mode 100644 index 00000000..695a6317 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/iota-cy.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l.ss01 + com.fontlab.metricsRight + l.ss01 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/iotifieda-cy.B_G_R_.glif b/sources/FixelText-Black.ufo/glyphs/iotifieda-cy.B_G_R_.glif new file mode 100644 index 00000000..b450fd0c --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/iotifieda-cy.B_G_R_.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + el-cy.BGR + com.fontlab.recipe + iotifieda-cy + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/iotifieda-cy.glif b/sources/FixelText-Black.ufo/glyphs/iotifieda-cy.glif new file mode 100644 index 00000000..780a68bd --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/iotifieda-cy.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + yusClosedlittle-cy + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/iotifieda-cy.hist.glif b/sources/FixelText-Black.ufo/glyphs/iotifieda-cy.hist.glif new file mode 100644 index 00000000..df3ee2fd --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/iotifieda-cy.hist.glif @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + reversedzecyr + com.fontlab.metricsRight + a + public.markColor + 0.6,0.997,1,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/ishortsharptailcyr.glif b/sources/FixelText-Black.ufo/glyphs/ishortsharptailcyr.glif new file mode 100644 index 00000000..caf9ae8e --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/ishortsharptailcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + й + com.fontlab.metricsRight + ensharptailcyr + com.fontlab.recipe + й + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/itilde.glif b/sources/FixelText-Black.ufo/glyphs/itilde.glif new file mode 100644 index 00000000..e4148fb9 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/itilde.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + dotlessi+tilde + + + diff --git a/sources/FixelText-Black.ufo/glyphs/iu-cy.B_G_R_.glif b/sources/FixelText-Black.ufo/glyphs/iu-cy.B_G_R_.glif new file mode 100644 index 00000000..a8e86a19 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/iu-cy.B_G_R_.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + o + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/iu-cy.accented.glif b/sources/FixelText-Black.ufo/glyphs/iu-cy.accented.glif new file mode 100644 index 00000000..8180b09e --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/iu-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ю+acute + + + diff --git a/sources/FixelText-Black.ufo/glyphs/iu-cy.glif b/sources/FixelText-Black.ufo/glyphs/iu-cy.glif new file mode 100644 index 00000000..d38a1ec2 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/iu-cy.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelText-Black.ufo/glyphs/izhitsacyr.glif b/sources/FixelText-Black.ufo/glyphs/izhitsacyr.glif new file mode 100644 index 00000000..96e22914 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/izhitsacyr.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + v + com.fontlab.metricsRight + + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/izhitsagravedblcyr.glif b/sources/FixelText-Black.ufo/glyphs/izhitsagravedblcyr.glif new file mode 100644 index 00000000..6d32c22f --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/izhitsagravedblcyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + com.fontlab.metricsLeft + izhitsacyr + com.fontlab.metricsRight + izhitsacyr + com.fontlab.recipe + izhitsacyr+hungarumlaut + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/j.glif b/sources/FixelText-Black.ufo/glyphs/j.glif new file mode 100644 index 00000000..780c30d6 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/j.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + i + com.fontlab.recipe + dotlessj+dotaccent + + + diff --git a/sources/FixelText-Black.ufo/glyphs/jcircumflex.glif b/sources/FixelText-Black.ufo/glyphs/jcircumflex.glif new file mode 100644 index 00000000..cfcb49d0 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/jcircumflex.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + dotlessj+circumflex + + + diff --git a/sources/FixelText-Black.ufo/glyphs/jdotless.glif b/sources/FixelText-Black.ufo/glyphs/jdotless.glif new file mode 100644 index 00000000..d4cc83dc --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/jdotless.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + l + + + diff --git a/sources/FixelText-Black.ufo/glyphs/je-cy.glif b/sources/FixelText-Black.ufo/glyphs/je-cy.glif new file mode 100644 index 00000000..b306f493 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/je-cy.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + j + + + diff --git a/sources/FixelText-Black.ufo/glyphs/k.glif b/sources/FixelText-Black.ufo/glyphs/k.glif new file mode 100644 index 00000000..fccf7765 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/k.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + + + diff --git a/sources/FixelText-Black.ufo/glyphs/ka-cy.B_G_R_.glif b/sources/FixelText-Black.ufo/glyphs/ka-cy.B_G_R_.glif new file mode 100644 index 00000000..e562ffe7 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/ka-cy.B_G_R_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + k + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/ka-cy.glif b/sources/FixelText-Black.ufo/glyphs/ka-cy.glif new file mode 100644 index 00000000..55f5deda --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/ka-cy.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + k + + + diff --git a/sources/FixelText-Black.ufo/glyphs/kaaleutcyr.glif b/sources/FixelText-Black.ufo/glyphs/kaaleutcyr.glif new file mode 100644 index 00000000..a17f54dd --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/kaaleutcyr.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + k + com.fontlab.metricsRight + k + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/kabashkcyr.glif b/sources/FixelText-Black.ufo/glyphs/kabashkcyr.glif new file mode 100644 index 00000000..9ec6cf4b --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/kabashkcyr.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hardsign-cy + com.fontlab.metricsRight + k + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/kahookcyr.glif b/sources/FixelText-Black.ufo/glyphs/kahookcyr.glif new file mode 100644 index 00000000..a53f7381 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/kahookcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + n + com.fontlab.metricsRight + k+10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/kastrokecyr.glif b/sources/FixelText-Black.ufo/glyphs/kastrokecyr.glif new file mode 100644 index 00000000..9b0ec58a --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/kastrokecyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hbar + com.fontlab.metricsRight + k + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/katailcyr.glif b/sources/FixelText-Black.ufo/glyphs/katailcyr.glif new file mode 100644 index 00000000..53079f5a --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/katailcyr.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + k + com.fontlab.metricsRight + к-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/kaverticalstrokecyr.glif b/sources/FixelText-Black.ufo/glyphs/kaverticalstrokecyr.glif new file mode 100644 index 00000000..9880030e --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/kaverticalstrokecyr.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + k + com.fontlab.metricsRight + k + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/kcommaaccent.glif b/sources/FixelText-Black.ufo/glyphs/kcommaaccent.glif new file mode 100644 index 00000000..7ced08d5 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/kcommaaccent.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsLeft + k + com.fontlab.metricsRight + k + com.fontlab.recipe + k+commaaccentcomb + + + diff --git a/sources/FixelText-Black.ufo/glyphs/kgreenlandic.glif b/sources/FixelText-Black.ufo/glyphs/kgreenlandic.glif new file mode 100644 index 00000000..6a1a9ac4 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/kgreenlandic.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + kacyr + + + diff --git a/sources/FixelText-Black.ufo/glyphs/kjecyr.glif b/sources/FixelText-Black.ufo/glyphs/kjecyr.glif new file mode 100644 index 00000000..e08a45ab --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/kjecyr.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/knightblack.glif b/sources/FixelText-Black.ufo/glyphs/knightblack.glif new file mode 100644 index 00000000..abec33a7 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/knightblack.glif @@ -0,0 +1,313 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/knightwhite.glif b/sources/FixelText-Black.ufo/glyphs/knightwhite.glif new file mode 100644 index 00000000..a152a44d --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/knightwhite.glif @@ -0,0 +1,320 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/koppacyr.glif b/sources/FixelText-Black.ufo/glyphs/koppacyr.glif new file mode 100644 index 00000000..71d6b938 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/koppacyr.glif @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + c-20 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/ksicyr.glif b/sources/FixelText-Black.ufo/glyphs/ksicyr.glif new file mode 100644 index 00000000..5c861c33 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/ksicyr.glif @@ -0,0 +1,102 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + з-10 + com.fontlab.metricsRight + з + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/l.glif b/sources/FixelText-Black.ufo/glyphs/l.glif new file mode 100644 index 00000000..487f01cb --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/l.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/l.ss01.glif b/sources/FixelText-Black.ufo/glyphs/l.ss01.glif new file mode 100644 index 00000000..31e26d0d --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/l.ss01.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/lacute.glif b/sources/FixelText-Black.ufo/glyphs/lacute.glif new file mode 100644 index 00000000..6fb16e8e --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/lacute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l+acute.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/lacute.ss01.glif b/sources/FixelText-Black.ufo/glyphs/lacute.ss01.glif new file mode 100644 index 00000000..06dfe5cc --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/lacute.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l.ss01+acute.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/layerinfo.plist b/sources/FixelText-Black.ufo/glyphs/layerinfo.plist new file mode 100644 index 00000000..8c198655 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/layerinfo.plist @@ -0,0 +1,21 @@ + + + + + lib + + com.fontlab.layer.name + Body + com.fontlab.layer.opacity + 1 + com.fontlab.layer.visible + + com.fontlab.layer.locked + + com.fontlab.layer.service + + com.fontlab.layer.wireframe + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/lcaron.glif b/sources/FixelText-Black.ufo/glyphs/lcaron.glif new file mode 100644 index 00000000..a4e9a689 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/lcaron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l+caron.salt + + + diff --git a/sources/FixelText-Black.ufo/glyphs/lcaron.ss01.glif b/sources/FixelText-Black.ufo/glyphs/lcaron.ss01.glif new file mode 100644 index 00000000..1b12981e --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/lcaron.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l.ss01+caron.salt + + + diff --git a/sources/FixelText-Black.ufo/glyphs/lcommaaccent.glif b/sources/FixelText-Black.ufo/glyphs/lcommaaccent.glif new file mode 100644 index 00000000..4ad66576 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/lcommaaccent.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l+commaaccentcomb + + + diff --git a/sources/FixelText-Black.ufo/glyphs/lcommaaccent.ss01.glif b/sources/FixelText-Black.ufo/glyphs/lcommaaccent.ss01.glif new file mode 100644 index 00000000..4fdb7429 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/lcommaaccent.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l.ss01+commaaccentcomb + + + diff --git a/sources/FixelText-Black.ufo/glyphs/ldot.glif b/sources/FixelText-Black.ufo/glyphs/ldot.glif new file mode 100644 index 00000000..58d19425 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/ldot.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/ldot.ss01.glif b/sources/FixelText-Black.ufo/glyphs/ldot.ss01.glif new file mode 100644 index 00000000..6f48b053 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/ldot.ss01.glif @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + l.ss01_periodcentered + + + diff --git a/sources/FixelText-Black.ufo/glyphs/leo.glif b/sources/FixelText-Black.ufo/glyphs/leo.glif new file mode 100644 index 00000000..de5c4cf7 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/leo.glif @@ -0,0 +1,494 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/less.glif b/sources/FixelText-Black.ufo/glyphs/less.glif new file mode 100644 index 00000000..d2d564d5 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/less.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/lessequal.glif b/sources/FixelText-Black.ufo/glyphs/lessequal.glif new file mode 100644 index 00000000..0ab5c53e --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/lessequal.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/lhacyr.glif b/sources/FixelText-Black.ufo/glyphs/lhacyr.glif new file mode 100644 index 00000000..0300b482 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/lhacyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + х + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/ljecyr.glif b/sources/FixelText-Black.ufo/glyphs/ljecyr.glif new file mode 100644 index 00000000..8bb01e00 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/ljecyr.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + ь + + + diff --git a/sources/FixelText-Black.ufo/glyphs/ljecyr.ss01.glif b/sources/FixelText-Black.ufo/glyphs/ljecyr.ss01.glif new file mode 100644 index 00000000..9de1f4b7 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/ljecyr.ss01.glif @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + ь + + + diff --git a/sources/FixelText-Black.ufo/glyphs/ljekomicyr.glif b/sources/FixelText-Black.ufo/glyphs/ljekomicyr.glif new file mode 100644 index 00000000..f4092ee8 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/ljekomicyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + njekomicyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/longs.glif b/sources/FixelText-Black.ufo/glyphs/longs.glif new file mode 100644 index 00000000..bfa330b5 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/longs.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + n + + + diff --git a/sources/FixelText-Black.ufo/glyphs/lslash.glif b/sources/FixelText-Black.ufo/glyphs/lslash.glif new file mode 100644 index 00000000..e03cdc2c --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/lslash.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Lslash+12 + com.fontlab.metricsRight + |Lslash+12 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/lslash.ss01.glif b/sources/FixelText-Black.ufo/glyphs/lslash.ss01.glif new file mode 100644 index 00000000..21f188f6 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/lslash.ss01.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Lslash-10 + com.fontlab.metricsRight + |Lslash + + + diff --git a/sources/FixelText-Black.ufo/glyphs/m.glif b/sources/FixelText-Black.ufo/glyphs/m.glif new file mode 100644 index 00000000..1ae3dc65 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/m.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + n + com.fontlab.metricsRight + n + + + diff --git a/sources/FixelText-Black.ufo/glyphs/macron-fwd.alt.glif b/sources/FixelText-Black.ufo/glyphs/macron-fwd.alt.glif new file mode 100644 index 00000000..2deb25d2 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/macron-fwd.alt.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/macron-fwd.glif b/sources/FixelText-Black.ufo/glyphs/macron-fwd.glif new file mode 100644 index 00000000..bcfefbd2 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/macron-fwd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/macron.case.glif b/sources/FixelText-Black.ufo/glyphs/macron.case.glif new file mode 100644 index 00000000..97b15490 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/macron.case.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/macron.glif b/sources/FixelText-Black.ufo/glyphs/macron.glif new file mode 100644 index 00000000..2b7b9b7f --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/macron.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/macronacute.S_R_B_.glif b/sources/FixelText-Black.ufo/glyphs/macronacute.S_R_B_.glif new file mode 100644 index 00000000..a9f1e696 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/macronacute.S_R_B_.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + macron+acute + + + diff --git a/sources/FixelText-Black.ufo/glyphs/millionscombcyr.glif b/sources/FixelText-Black.ufo/glyphs/millionscombcyr.glif new file mode 100644 index 00000000..fd19b169 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/millionscombcyr.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/minus.glif b/sources/FixelText-Black.ufo/glyphs/minus.glif new file mode 100644 index 00000000..73823a23 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/minus.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/minute.glif b/sources/FixelText-Black.ufo/glyphs/minute.glif new file mode 100644 index 00000000..b3d7d704 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/minute.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/mu.glif b/sources/FixelText-Black.ufo/glyphs/mu.glif new file mode 100644 index 00000000..be45af76 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/mu.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + p + com.fontlab.metricsRight + u + + + diff --git a/sources/FixelText-Black.ufo/glyphs/multiply.glif b/sources/FixelText-Black.ufo/glyphs/multiply.glif new file mode 100644 index 00000000..bcaa8268 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/multiply.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/n.glif b/sources/FixelText-Black.ufo/glyphs/n.glif new file mode 100644 index 00000000..be69f2ad --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/n.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/nacute.glif b/sources/FixelText-Black.ufo/glyphs/nacute.glif new file mode 100644 index 00000000..f19d45d4 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/nacute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + n+acute + + + diff --git a/sources/FixelText-Black.ufo/glyphs/napostrophe.glif b/sources/FixelText-Black.ufo/glyphs/napostrophe.glif new file mode 100644 index 00000000..09affcd6 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/napostrophe.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + com.fontlab.metricsRight + n + com.schriftgestaltung.Glyphs.ComponentInfo + + + alignment + -1 + index + 0 + name + n + + + alignment + -1 + index + 1 + name + quoteright + + + com.schriftgestaltung.Glyphs.rightMetricsKey + n + + + diff --git a/sources/FixelText-Black.ufo/glyphs/ncaron.glif b/sources/FixelText-Black.ufo/glyphs/ncaron.glif new file mode 100644 index 00000000..c0665b04 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/ncaron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + n+caron + + + diff --git a/sources/FixelText-Black.ufo/glyphs/ncommaaccent.glif b/sources/FixelText-Black.ufo/glyphs/ncommaaccent.glif new file mode 100644 index 00000000..e33a35c7 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/ncommaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + n+commaaccentcomb + + + diff --git a/sources/FixelText-Black.ufo/glyphs/neptune.glif b/sources/FixelText-Black.ufo/glyphs/neptune.glif new file mode 100644 index 00000000..0b1be012 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/neptune.glif @@ -0,0 +1,125 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ш + com.fontlab.metricsRight + Ш + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/nine.glif b/sources/FixelText-Black.ufo/glyphs/nine.glif new file mode 100644 index 00000000..54b2bf38 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/nine.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + |six + com.fontlab.metricsRight + |six + + + diff --git a/sources/FixelText-Black.ufo/glyphs/nine.osf.glif b/sources/FixelText-Black.ufo/glyphs/nine.osf.glif new file mode 100644 index 00000000..f6c5c58c --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/nine.osf.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |six + com.fontlab.metricsRight + |six + + + diff --git a/sources/FixelText-Black.ufo/glyphs/nine.tf.glif b/sources/FixelText-Black.ufo/glyphs/nine.tf.glif new file mode 100644 index 00000000..7cbcb23a --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/nine.tf.glif @@ -0,0 +1,7 @@ + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/njecyr.glif b/sources/FixelText-Black.ufo/glyphs/njecyr.glif new file mode 100644 index 00000000..6f3af3c7 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/njecyr.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + ь + + + diff --git a/sources/FixelText-Black.ufo/glyphs/njecyr.ss01.glif b/sources/FixelText-Black.ufo/glyphs/njecyr.ss01.glif new file mode 100644 index 00000000..f014f8f3 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/njecyr.ss01.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + ь + + + diff --git a/sources/FixelText-Black.ufo/glyphs/njekomicyr.glif b/sources/FixelText-Black.ufo/glyphs/njekomicyr.glif new file mode 100644 index 00000000..9ba6dabe --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/njekomicyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + |u + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/notequal.glif b/sources/FixelText-Black.ufo/glyphs/notequal.glif new file mode 100644 index 00000000..2ed63552 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/notequal.glif @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/ntilde.glif b/sources/FixelText-Black.ufo/glyphs/ntilde.glif new file mode 100644 index 00000000..725306b8 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/ntilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + n+tilde + + + diff --git a/sources/FixelText-Black.ufo/glyphs/numbersign.glif b/sources/FixelText-Black.ufo/glyphs/numbersign.glif new file mode 100644 index 00000000..17d0e70c --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/numbersign.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/numero.glif b/sources/FixelText-Black.ufo/glyphs/numero.glif new file mode 100644 index 00000000..6e9c63e3 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/numero.glif @@ -0,0 +1,90 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + N + com.fontlab.recipe + N+ordmasculine + com.schriftgestaltung.Glyphs.ComponentInfo + + + alignment + -1 + index + 0 + name + N + + + alignment + -1 + index + 1 + name + ordmasculine + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/numero.ss01.glif b/sources/FixelText-Black.ufo/glyphs/numero.ss01.glif new file mode 100644 index 00000000..34faacc5 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/numero.ss01.glif @@ -0,0 +1,95 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + N.ss01 + com.fontlab.metricsRight + ordmasculine + com.fontlab.recipe + N.ss01+ordmasculine + com.schriftgestaltung.Glyphs.ComponentInfo + + + alignment + -1 + index + 0 + name + ordmasculine + + + alignment + -1 + index + 1 + name + N.ss01 + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/o-cy.accented.glif b/sources/FixelText-Black.ufo/glyphs/o-cy.accented.glif new file mode 100644 index 00000000..15eea0e2 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/o-cy.accented.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+acute + + + diff --git a/sources/FixelText-Black.ufo/glyphs/o-cy.glif b/sources/FixelText-Black.ufo/glyphs/o-cy.glif new file mode 100644 index 00000000..1e512f77 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/o-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o + + + diff --git a/sources/FixelText-Black.ufo/glyphs/o.glif b/sources/FixelText-Black.ufo/glyphs/o.glif new file mode 100644 index 00000000..05d47f3a --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/o.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/oB_inocular-cy.glif b/sources/FixelText-Black.ufo/glyphs/oB_inocular-cy.glif new file mode 100644 index 00000000..b48afe70 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/oB_inocular-cy.glif @@ -0,0 +1,81 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/oD_oubleM_onocular-cy.glif b/sources/FixelText-Black.ufo/glyphs/oD_oubleM_onocular-cy.glif new file mode 100644 index 00000000..ede15e80 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/oD_oubleM_onocular-cy.glif @@ -0,0 +1,121 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + com.fontlab.recipe + doubleo-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/oM_onocular-cy.glif b/sources/FixelText-Black.ufo/glyphs/oM_onocular-cy.glif new file mode 100644 index 00000000..8bff2117 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/oM_onocular-cy.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/oacute.glif b/sources/FixelText-Black.ufo/glyphs/oacute.glif new file mode 100644 index 00000000..7da216c0 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/oacute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+acute + + + diff --git a/sources/FixelText-Black.ufo/glyphs/obarcyr.glif b/sources/FixelText-Black.ufo/glyphs/obarcyr.glif new file mode 100644 index 00000000..9243fb6c --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/obarcyr.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/obardieresiscyr.glif b/sources/FixelText-Black.ufo/glyphs/obardieresiscyr.glif new file mode 100644 index 00000000..a469c5e4 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/obardieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + obarcyr+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/obreve.glif b/sources/FixelText-Black.ufo/glyphs/obreve.glif new file mode 100644 index 00000000..33a14389 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/obreve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+breve + + + diff --git a/sources/FixelText-Black.ufo/glyphs/ocircumflex.glif b/sources/FixelText-Black.ufo/glyphs/ocircumflex.glif new file mode 100644 index 00000000..53bfd555 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/ocircumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+circumflex + + + diff --git a/sources/FixelText-Black.ufo/glyphs/odieresis.glif b/sources/FixelText-Black.ufo/glyphs/odieresis.glif new file mode 100644 index 00000000..b702d797 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/odieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+dieresis + + + diff --git a/sources/FixelText-Black.ufo/glyphs/odieresiscyr.glif b/sources/FixelText-Black.ufo/glyphs/odieresiscyr.glif new file mode 100644 index 00000000..3e025ff2 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/odieresiscyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/oe.glif b/sources/FixelText-Black.ufo/glyphs/oe.glif new file mode 100644 index 00000000..4f442dfd --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/oe.glif @@ -0,0 +1,86 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + e + + + diff --git a/sources/FixelText-Black.ufo/glyphs/oe.ss01.glif b/sources/FixelText-Black.ufo/glyphs/oe.ss01.glif new file mode 100644 index 00000000..9f07ece6 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/oe.ss01.glif @@ -0,0 +1,95 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + e.ss01 + public.markColor + 0.6,0.997,1,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/ogonek.glif b/sources/FixelText-Black.ufo/glyphs/ogonek.glif new file mode 100644 index 00000000..c2a38078 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/ogonek.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/ograve.glif b/sources/FixelText-Black.ufo/glyphs/ograve.glif new file mode 100644 index 00000000..f8cad982 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/ograve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+grave + + + diff --git a/sources/FixelText-Black.ufo/glyphs/ohungarumlaut.glif b/sources/FixelText-Black.ufo/glyphs/ohungarumlaut.glif new file mode 100644 index 00000000..d2813d0b --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/ohungarumlaut.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+hungarumlaut + + + diff --git a/sources/FixelText-Black.ufo/glyphs/omacron.glif b/sources/FixelText-Black.ufo/glyphs/omacron.glif new file mode 100644 index 00000000..e6e476bb --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/omacron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+macron + + + diff --git a/sources/FixelText-Black.ufo/glyphs/omegaB_road-cy.glif b/sources/FixelText-Black.ufo/glyphs/omegaB_road-cy.glif new file mode 100644 index 00000000..97a86ab7 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/omegaB_road-cy.glif @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o+5 + com.fontlab.metricsRight + o+5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/omegacyr.glif b/sources/FixelText-Black.ufo/glyphs/omegacyr.glif new file mode 100644 index 00000000..b8a9cae3 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/omegacyr.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + w + com.fontlab.metricsRight + w + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/omegaroundcyr.glif b/sources/FixelText-Black.ufo/glyphs/omegaroundcyr.glif new file mode 100644 index 00000000..712a5c48 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/omegaroundcyr.glif @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/omegatitlocyr.glif b/sources/FixelText-Black.ufo/glyphs/omegatitlocyr.glif new file mode 100644 index 00000000..a720a1f8 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/omegatitlocyr.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o+5 + com.fontlab.metricsRight + o+5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/omultiocular-cy.alt.glif b/sources/FixelText-Black.ufo/glyphs/omultiocular-cy.alt.glif new file mode 100644 index 00000000..f2f86739 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/omultiocular-cy.alt.glif @@ -0,0 +1,367 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + oMonocular-cy + com.fontlab.metricsRight + oMonocular-cy + public.markColor + 0.6,0.997,1,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/omultiocular-cy.glif b/sources/FixelText-Black.ufo/glyphs/omultiocular-cy.glif new file mode 100644 index 00000000..4b525f40 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/omultiocular-cy.glif @@ -0,0 +1,516 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + oMonocular-cy + com.fontlab.metricsRight + oMonocular-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/one.glif b/sources/FixelText-Black.ufo/glyphs/one.glif new file mode 100644 index 00000000..05b7e56c --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/one.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =40 + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-Black.ufo/glyphs/one.osf.glif b/sources/FixelText-Black.ufo/glyphs/one.osf.glif new file mode 100644 index 00000000..d87346cc --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/one.osf.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + one + com.fontlab.metricsRight + one + + + diff --git a/sources/FixelText-Black.ufo/glyphs/one.tf.glif b/sources/FixelText-Black.ufo/glyphs/one.tf.glif new file mode 100644 index 00000000..4c092077 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/one.tf.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/onehalf.glif b/sources/FixelText-Black.ufo/glyphs/onehalf.glif new file mode 100644 index 00000000..dca503b8 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/onehalf.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/onequarter.glif b/sources/FixelText-Black.ufo/glyphs/onequarter.glif new file mode 100644 index 00000000..033c4167 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/onequarter.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/onesuperior.glif b/sources/FixelText-Black.ufo/glyphs/onesuperior.glif new file mode 100644 index 00000000..b6cc3431 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/onesuperior.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/ordfeminine.glif b/sources/FixelText-Black.ufo/glyphs/ordfeminine.glif new file mode 100644 index 00000000..dce1b2c3 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/ordfeminine.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/ordmasculine.glif b/sources/FixelText-Black.ufo/glyphs/ordmasculine.glif new file mode 100644 index 00000000..b853bfd1 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/ordmasculine.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/oslash.glif b/sources/FixelText-Black.ufo/glyphs/oslash.glif new file mode 100644 index 00000000..583d1b06 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/oslash.glif @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelText-Black.ufo/glyphs/oslashacute.glif b/sources/FixelText-Black.ufo/glyphs/oslashacute.glif new file mode 100644 index 00000000..56c3f0f0 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/oslashacute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + oslash+acute + + + diff --git a/sources/FixelText-Black.ufo/glyphs/otcyr.glif b/sources/FixelText-Black.ufo/glyphs/otcyr.glif new file mode 100644 index 00000000..05dddc1a --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/otcyr.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsRight + w + com.fontlab.recipe + omegacyr+uni2DEE + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/otilde.glif b/sources/FixelText-Black.ufo/glyphs/otilde.glif new file mode 100644 index 00000000..028cb069 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/otilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+tilde + + + diff --git a/sources/FixelText-Black.ufo/glyphs/p.glif b/sources/FixelText-Black.ufo/glyphs/p.glif new file mode 100644 index 00000000..27d7729a --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/p.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelText-Black.ufo/glyphs/p.ss01.glif b/sources/FixelText-Black.ufo/glyphs/p.ss01.glif new file mode 100644 index 00000000..7a2c3bab --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/p.ss01.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/palatcombcyr.glif b/sources/FixelText-Black.ufo/glyphs/palatcombcyr.glif new file mode 100644 index 00000000..f69a5295 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/palatcombcyr.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/palochkacyr.glif b/sources/FixelText-Black.ufo/glyphs/palochkacyr.glif new file mode 100644 index 00000000..75b172d3 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/palochkacyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/paragraph.glif b/sources/FixelText-Black.ufo/glyphs/paragraph.glif new file mode 100644 index 00000000..07c9751c --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/paragraph.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |P + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-Black.ufo/glyphs/parenleft.case.glif b/sources/FixelText-Black.ufo/glyphs/parenleft.case.glif new file mode 100644 index 00000000..eb372781 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/parenleft.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |parenright.case + com.fontlab.metricsRight + |parenright.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/parenleft.glif b/sources/FixelText-Black.ufo/glyphs/parenleft.glif new file mode 100644 index 00000000..98960915 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/parenleft.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/parenright.case.glif b/sources/FixelText-Black.ufo/glyphs/parenright.case.glif new file mode 100644 index 00000000..cd214830 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/parenright.case.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + parenright + com.fontlab.metricsRight + parenright + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/parenright.glif b/sources/FixelText-Black.ufo/glyphs/parenright.glif new file mode 100644 index 00000000..4e2b2fa8 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/parenright.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/partialdiff.glif b/sources/FixelText-Black.ufo/glyphs/partialdiff.glif new file mode 100644 index 00000000..085d4cc4 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/partialdiff.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-Black.ufo/glyphs/pe-cy.B_G_R_.glif b/sources/FixelText-Black.ufo/glyphs/pe-cy.B_G_R_.glif new file mode 100644 index 00000000..f2afb1b2 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/pe-cy.B_G_R_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + n + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/pe-cy.S_R_B_.glif b/sources/FixelText-Black.ufo/glyphs/pe-cy.S_R_B_.glif new file mode 100644 index 00000000..733bf7a7 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/pe-cy.S_R_B_.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+macron-fwd.alt + + + diff --git a/sources/FixelText-Black.ufo/glyphs/pe-cy.glif b/sources/FixelText-Black.ufo/glyphs/pe-cy.glif new file mode 100644 index 00000000..de112102 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/pe-cy.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelText-Black.ufo/glyphs/pehookcyr.glif b/sources/FixelText-Black.ufo/glyphs/pehookcyr.glif new file mode 100644 index 00000000..386f41c4 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/pehookcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + п + com.fontlab.metricsRight + enmiddlehookcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/percent.glif b/sources/FixelText-Black.ufo/glyphs/percent.glif new file mode 100644 index 00000000..51d692f7 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/percent.glif @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/period.glif b/sources/FixelText-Black.ufo/glyphs/period.glif new file mode 100644 index 00000000..7bb6a310 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/period.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/periodcentered.glif b/sources/FixelText-Black.ufo/glyphs/periodcentered.glif new file mode 100644 index 00000000..6daa1b86 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/periodcentered.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/perthousand.glif b/sources/FixelText-Black.ufo/glyphs/perthousand.glif new file mode 100644 index 00000000..dfe887fc --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/perthousand.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/petailcyr.glif b/sources/FixelText-Black.ufo/glyphs/petailcyr.glif new file mode 100644 index 00000000..be222f98 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/petailcyr.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + п + com.fontlab.metricsRight + entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/pi.glif b/sources/FixelText-Black.ufo/glyphs/pi.glif new file mode 100644 index 00000000..0cdb1ce5 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/pi.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f + com.fontlab.metricsRight + t + + + diff --git a/sources/FixelText-Black.ufo/glyphs/plus.glif b/sources/FixelText-Black.ufo/glyphs/plus.glif new file mode 100644 index 00000000..4d67ac09 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/plus.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/plusminus.glif b/sources/FixelText-Black.ufo/glyphs/plusminus.glif new file mode 100644 index 00000000..cdc81bf5 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/plusminus.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/pokrytiecombcyr.glif b/sources/FixelText-Black.ufo/glyphs/pokrytiecombcyr.glif new file mode 100644 index 00000000..003e1ba5 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/pokrytiecombcyr.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/product.glif b/sources/FixelText-Black.ufo/glyphs/product.glif new file mode 100644 index 00000000..6573353d --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/product.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/proportional.glif b/sources/FixelText-Black.ufo/glyphs/proportional.glif new file mode 100644 index 00000000..e86796cd --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/proportional.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/psicyr.glif b/sources/FixelText-Black.ufo/glyphs/psicyr.glif new file mode 100644 index 00000000..a0ca5e56 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/psicyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + u + com.fontlab.metricsRight + |u + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/q.glif b/sources/FixelText-Black.ufo/glyphs/q.glif new file mode 100644 index 00000000..14c7f507 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/q.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l + + + diff --git a/sources/FixelText-Black.ufo/glyphs/q.ss01.glif b/sources/FixelText-Black.ufo/glyphs/q.ss01.glif new file mode 100644 index 00000000..7953234b --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/q.ss01.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/qacyr.glif b/sources/FixelText-Black.ufo/glyphs/qacyr.glif new file mode 100644 index 00000000..369f5640 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/qacyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + q + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/question.glif b/sources/FixelText-Black.ufo/glyphs/question.glif new file mode 100644 index 00000000..94a15c79 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/question.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/questiondown.case.glif b/sources/FixelText-Black.ufo/glyphs/questiondown.case.glif new file mode 100644 index 00000000..850d0a68 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/questiondown.case.glif @@ -0,0 +1,19 @@ + + + + + + + + + com.fontlab.metricsLeft + |question + com.fontlab.metricsRight + |question + com.fontlab.recipe + questiondown + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/questiondown.glif b/sources/FixelText-Black.ufo/glyphs/questiondown.glif new file mode 100644 index 00000000..53b609f4 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/questiondown.glif @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |question + com.fontlab.metricsRight + |question + + + diff --git a/sources/FixelText-Black.ufo/glyphs/quotedbl.glif b/sources/FixelText-Black.ufo/glyphs/quotedbl.glif new file mode 100644 index 00000000..c55d2d45 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/quotedbl.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/quotedblbase.glif b/sources/FixelText-Black.ufo/glyphs/quotedblbase.glif new file mode 100644 index 00000000..5747166c --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/quotedblbase.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + comma + com.fontlab.metricsRight + comma + + + diff --git a/sources/FixelText-Black.ufo/glyphs/quotedblleft.glif b/sources/FixelText-Black.ufo/glyphs/quotedblleft.glif new file mode 100644 index 00000000..64ff1605 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/quotedblleft.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + |comma + com.fontlab.metricsRight + |comma + + + diff --git a/sources/FixelText-Black.ufo/glyphs/quotedblright.glif b/sources/FixelText-Black.ufo/glyphs/quotedblright.glif new file mode 100644 index 00000000..be96bfcc --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/quotedblright.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.metricsLeft + comma+20 + com.fontlab.metricsRight + comma-20 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/quoteleft.glif b/sources/FixelText-Black.ufo/glyphs/quoteleft.glif new file mode 100644 index 00000000..2c739a86 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/quoteleft.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + quotedblleft + com.fontlab.metricsRight + quotedblleft + + + diff --git a/sources/FixelText-Black.ufo/glyphs/quoteright.glif b/sources/FixelText-Black.ufo/glyphs/quoteright.glif new file mode 100644 index 00000000..ace20332 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/quoteright.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + com.fontlab.metricsLeft + quotedblright + com.fontlab.metricsRight + quotedblright + + + diff --git a/sources/FixelText-Black.ufo/glyphs/quotesinglbase.glif b/sources/FixelText-Black.ufo/glyphs/quotesinglbase.glif new file mode 100644 index 00000000..b51c19ea --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/quotesinglbase.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + com.fontlab.recipe + comma + + + diff --git a/sources/FixelText-Black.ufo/glyphs/quotesingle.glif b/sources/FixelText-Black.ufo/glyphs/quotesingle.glif new file mode 100644 index 00000000..4a9bc6fc --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/quotesingle.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/r.glif b/sources/FixelText-Black.ufo/glyphs/r.glif new file mode 100644 index 00000000..03ca4702 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/r.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + + + diff --git a/sources/FixelText-Black.ufo/glyphs/racute.glif b/sources/FixelText-Black.ufo/glyphs/racute.glif new file mode 100644 index 00000000..b6e68c91 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/racute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + r+acute + + + diff --git a/sources/FixelText-Black.ufo/glyphs/radical.glif b/sources/FixelText-Black.ufo/glyphs/radical.glif new file mode 100644 index 00000000..2a1b506f --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/radical.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + V + + + diff --git a/sources/FixelText-Black.ufo/glyphs/rcaron.glif b/sources/FixelText-Black.ufo/glyphs/rcaron.glif new file mode 100644 index 00000000..3f1e125e --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/rcaron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + r+caron + + + diff --git a/sources/FixelText-Black.ufo/glyphs/rcommaaccent.glif b/sources/FixelText-Black.ufo/glyphs/rcommaaccent.glif new file mode 100644 index 00000000..76333e87 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/rcommaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + r+commaaccentcomb + + + diff --git a/sources/FixelText-Black.ufo/glyphs/registered.glif b/sources/FixelText-Black.ufo/glyphs/registered.glif new file mode 100644 index 00000000..512361a0 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/registered.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-Black.ufo/glyphs/reversedzecyr.glif b/sources/FixelText-Black.ufo/glyphs/reversedzecyr.glif new file mode 100644 index 00000000..7f844231 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/reversedzecyr.glif @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + + com.fontlab.metricsRight + + com.fontlab.recipe + з + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/rhacyr.glif b/sources/FixelText-Black.ufo/glyphs/rhacyr.glif new file mode 100644 index 00000000..c9cc3304 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/rhacyr.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + p + com.fontlab.metricsRight + x + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/ring.case.glif b/sources/FixelText-Black.ufo/glyphs/ring.case.glif new file mode 100644 index 00000000..23a3f5fc --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/ring.case.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/ring.glif b/sources/FixelText-Black.ufo/glyphs/ring.glif new file mode 100644 index 00000000..e9b3ba86 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/ring.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/rookblack.glif b/sources/FixelText-Black.ufo/glyphs/rookblack.glif new file mode 100644 index 00000000..6b8d3241 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/rookblack.glif @@ -0,0 +1,270 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/ruble.glif b/sources/FixelText-Black.ufo/glyphs/ruble.glif new file mode 100644 index 00000000..be312bc1 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/ruble.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + P + + + diff --git a/sources/FixelText-Black.ufo/glyphs/s.glif b/sources/FixelText-Black.ufo/glyphs/s.glif new file mode 100644 index 00000000..46a293c0 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/s.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/sacute.glif b/sources/FixelText-Black.ufo/glyphs/sacute.glif new file mode 100644 index 00000000..86151329 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/sacute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + s+acute + + + diff --git a/sources/FixelText-Black.ufo/glyphs/scaron.glif b/sources/FixelText-Black.ufo/glyphs/scaron.glif new file mode 100644 index 00000000..390f79be --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/scaron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + s+caron + + + diff --git a/sources/FixelText-Black.ufo/glyphs/scedilla.glif b/sources/FixelText-Black.ufo/glyphs/scedilla.glif new file mode 100644 index 00000000..77017726 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/scedilla.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + s+cedilla + + + diff --git a/sources/FixelText-Black.ufo/glyphs/schwacyr.glif b/sources/FixelText-Black.ufo/glyphs/schwacyr.glif new file mode 100644 index 00000000..651cbdc7 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/schwacyr.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |e + com.fontlab.metricsRight + o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/schwadieresiscyr.glif b/sources/FixelText-Black.ufo/glyphs/schwadieresiscyr.glif new file mode 100644 index 00000000..5f0c172f --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/schwadieresiscyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + schwacyr+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/scircumflex.glif b/sources/FixelText-Black.ufo/glyphs/scircumflex.glif new file mode 100644 index 00000000..ee126d99 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/scircumflex.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + s+circumflex + + + diff --git a/sources/FixelText-Black.ufo/glyphs/scommaaccent.glif b/sources/FixelText-Black.ufo/glyphs/scommaaccent.glif new file mode 100644 index 00000000..9069a601 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/scommaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + s+commaaccentcomb + + + diff --git a/sources/FixelText-Black.ufo/glyphs/second.glif b/sources/FixelText-Black.ufo/glyphs/second.glif new file mode 100644 index 00000000..d45498db --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/second.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/section.glif b/sources/FixelText-Black.ufo/glyphs/section.glif new file mode 100644 index 00000000..7178c695 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/section.glif @@ -0,0 +1,87 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + S + com.fontlab.metricsRight + S + + + diff --git a/sources/FixelText-Black.ufo/glyphs/semicolon.case.glif b/sources/FixelText-Black.ufo/glyphs/semicolon.case.glif new file mode 100644 index 00000000..9043b49c --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/semicolon.case.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.metricsLeft + semicolon + com.fontlab.metricsRight + semicolon + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/semicolon.glif b/sources/FixelText-Black.ufo/glyphs/semicolon.glif new file mode 100644 index 00000000..cb4c6061 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/semicolon.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/semisoftcyr.glif b/sources/FixelText-Black.ufo/glyphs/semisoftcyr.glif new file mode 100644 index 00000000..364766dc --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/semisoftcyr.glif @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + t + com.fontlab.metricsRight + ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/seven.glif b/sources/FixelText-Black.ufo/glyphs/seven.glif new file mode 100644 index 00000000..3e6699f2 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/seven.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/seven.osf.glif b/sources/FixelText-Black.ufo/glyphs/seven.osf.glif new file mode 100644 index 00000000..7548e9d7 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/seven.osf.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + seven + com.fontlab.metricsRight + seven + + + diff --git a/sources/FixelText-Black.ufo/glyphs/seven.tf.glif b/sources/FixelText-Black.ufo/glyphs/seven.tf.glif new file mode 100644 index 00000000..1b8e7093 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/seven.tf.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/sha-cy.B_G_R_.glif b/sources/FixelText-Black.ufo/glyphs/sha-cy.B_G_R_.glif new file mode 100644 index 00000000..21d20c9c --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/sha-cy.B_G_R_.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + u + com.fontlab.metricsRight + l + com.fontlab.recipe + m + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/sha-cy.glif b/sources/FixelText-Black.ufo/glyphs/sha-cy.glif new file mode 100644 index 00000000..68a29ce6 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/sha-cy.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelText-Black.ufo/glyphs/shcha-cy.B_G_R_.glif b/sources/FixelText-Black.ufo/glyphs/shcha-cy.B_G_R_.glif new file mode 100644 index 00000000..055d0d79 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/shcha-cy.B_G_R_.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + u + com.fontlab.metricsRight + щ + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/shcha-cy.glif b/sources/FixelText-Black.ufo/glyphs/shcha-cy.glif new file mode 100644 index 00000000..d7acf949 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/shcha-cy.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + д + + + diff --git a/sources/FixelText-Black.ufo/glyphs/shhacyr.glif b/sources/FixelText-Black.ufo/glyphs/shhacyr.glif new file mode 100644 index 00000000..81c15bd0 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/shhacyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsRight + n + com.fontlab.recipe + h + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/shhatailcyr.glif b/sources/FixelText-Black.ufo/glyphs/shhatailcyr.glif new file mode 100644 index 00000000..7ecad5de --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/shhatailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + h + com.fontlab.metricsRight + entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/shwe-cy.glif b/sources/FixelText-Black.ufo/glyphs/shwe-cy.glif new file mode 100644 index 00000000..dd99b82a --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/shwe-cy.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + щ + com.fontlab.metricsRight + щ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/six.glif b/sources/FixelText-Black.ufo/glyphs/six.glif new file mode 100644 index 00000000..7be597bc --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/six.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/six.osf.glif b/sources/FixelText-Black.ufo/glyphs/six.osf.glif new file mode 100644 index 00000000..09266ea4 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/six.osf.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + six + com.fontlab.metricsRight + six + + + diff --git a/sources/FixelText-Black.ufo/glyphs/six.tf.glif b/sources/FixelText-Black.ufo/glyphs/six.tf.glif new file mode 100644 index 00000000..b90d3de5 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/six.tf.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/sjekomicyr.glif b/sources/FixelText-Black.ufo/glyphs/sjekomicyr.glif new file mode 100644 index 00000000..9dbaae47 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/sjekomicyr.glif @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + e + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/slash.case.glif b/sources/FixelText-Black.ufo/glyphs/slash.case.glif new file mode 100644 index 00000000..56ee6c9e --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/slash.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + slash + com.fontlab.metricsRight + slash + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/slash.glif b/sources/FixelText-Black.ufo/glyphs/slash.glif new file mode 100644 index 00000000..f296506e --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/slash.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/softsign-cy.B_G_R_.glif b/sources/FixelText-Black.ufo/glyphs/softsign-cy.B_G_R_.glif new file mode 100644 index 00000000..c21f34bc --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/softsign-cy.B_G_R_.glif @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + u + com.fontlab.metricsRight + ь-5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/softsign-cy.glif b/sources/FixelText-Black.ufo/glyphs/softsign-cy.glif new file mode 100644 index 00000000..b35c660a --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/softsign-cy.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + + + diff --git a/sources/FixelText-Black.ufo/glyphs/softsign-cy.ss01.glif b/sources/FixelText-Black.ufo/glyphs/softsign-cy.ss01.glif new file mode 100644 index 00000000..4162f69b --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/softsign-cy.ss01.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/space.glif b/sources/FixelText-Black.ufo/glyphs/space.glif new file mode 100644 index 00000000..ef81d74c --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/space.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/spadewhite.glif b/sources/FixelText-Black.ufo/glyphs/spadewhite.glif new file mode 100644 index 00000000..639d2d6f --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/spadewhite.glif @@ -0,0 +1,453 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/sterling.glif b/sources/FixelText-Black.ufo/glyphs/sterling.glif new file mode 100644 index 00000000..c1a1c329 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/sterling.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/summation.glif b/sources/FixelText-Black.ufo/glyphs/summation.glif new file mode 100644 index 00000000..8b856c9f --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/summation.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/t.glif b/sources/FixelText-Black.ufo/glyphs/t.glif new file mode 100644 index 00000000..287bdc13 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/t.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/t.ss01.glif b/sources/FixelText-Black.ufo/glyphs/t.ss01.glif new file mode 100644 index 00000000..59d5832c --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/t.ss01.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/tbar.glif b/sources/FixelText-Black.ufo/glyphs/tbar.glif new file mode 100644 index 00000000..a33e4953 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/tbar.glif @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/tbar.ss01.glif b/sources/FixelText-Black.ufo/glyphs/tbar.ss01.glif new file mode 100644 index 00000000..90a5cc99 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/tbar.ss01.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/tcaron.glif b/sources/FixelText-Black.ufo/glyphs/tcaron.glif new file mode 100644 index 00000000..d7898726 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/tcaron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.metricsLeft + t + com.fontlab.metricsRight + t + com.fontlab.recipe + t+caron.salt + + + diff --git a/sources/FixelText-Black.ufo/glyphs/tcaron.ss01.glif b/sources/FixelText-Black.ufo/glyphs/tcaron.ss01.glif new file mode 100644 index 00000000..62f80b29 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/tcaron.ss01.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + com.fontlab.recipe + t.ss01+caron.salt + + + diff --git a/sources/FixelText-Black.ufo/glyphs/tcedilla.glif b/sources/FixelText-Black.ufo/glyphs/tcedilla.glif new file mode 100644 index 00000000..c35da704 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/tcedilla.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + t+cedilla + + + diff --git a/sources/FixelText-Black.ufo/glyphs/tcedilla.ss01.glif b/sources/FixelText-Black.ufo/glyphs/tcedilla.ss01.glif new file mode 100644 index 00000000..f8975388 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/tcedilla.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + t.ss01+cedilla + + + diff --git a/sources/FixelText-Black.ufo/glyphs/tche-cy.glif b/sources/FixelText-Black.ufo/glyphs/tche-cy.glif new file mode 100644 index 00000000..a9160a48 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/tche-cy.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + tetsecyr-20 + com.fontlab.metricsRight + ч + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/tcommaaccent.glif b/sources/FixelText-Black.ufo/glyphs/tcommaaccent.glif new file mode 100644 index 00000000..47d123a8 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/tcommaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + t+commaaccentcomb + + + diff --git a/sources/FixelText-Black.ufo/glyphs/tcommaaccent.ss01.glif b/sources/FixelText-Black.ufo/glyphs/tcommaaccent.ss01.glif new file mode 100644 index 00000000..9fa2b255 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/tcommaaccent.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + t.ss01+commaaccentcomb + + + diff --git a/sources/FixelText-Black.ufo/glyphs/te-cy.B_G_R_.glif b/sources/FixelText-Black.ufo/glyphs/te-cy.B_G_R_.glif new file mode 100644 index 00000000..3c9e8b16 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/te-cy.B_G_R_.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + m + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/te-cy.S_R_B_.glif b/sources/FixelText-Black.ufo/glyphs/te-cy.S_R_B_.glif new file mode 100644 index 00000000..1868579d --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/te-cy.S_R_B_.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ш.BGR+macron-fwd + + + diff --git a/sources/FixelText-Black.ufo/glyphs/te-cy.glif b/sources/FixelText-Black.ufo/glyphs/te-cy.glif new file mode 100644 index 00000000..4b2d956a --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/te-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/te-cy.ss01.glif b/sources/FixelText-Black.ufo/glyphs/te-cy.ss01.glif new file mode 100644 index 00000000..d4962545 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/te-cy.ss01.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/tenge.glif b/sources/FixelText-Black.ufo/glyphs/tenge.glif new file mode 100644 index 00000000..e6aa912c --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/tenge.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + T + + + diff --git a/sources/FixelText-Black.ufo/glyphs/tenmillionscomb-cy.glif b/sources/FixelText-Black.ufo/glyphs/tenmillionscomb-cy.glif new file mode 100644 index 00000000..446c0cc4 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/tenmillionscomb-cy.glif @@ -0,0 +1,109 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/tetailcyr.glif b/sources/FixelText-Black.ufo/glyphs/tetailcyr.glif new file mode 100644 index 00000000..b9a41f18 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/tetailcyr.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + т + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/tetsecyr.glif b/sources/FixelText-Black.ufo/glyphs/tetsecyr.glif new file mode 100644 index 00000000..933cefc2 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/tetsecyr.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + т + com.fontlab.metricsRight + ц + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/tewithmiddlehook-cy.glif b/sources/FixelText-Black.ufo/glyphs/tewithmiddlehook-cy.glif new file mode 100644 index 00000000..36cd3b5a --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/tewithmiddlehook-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + т + com.fontlab.metricsRight + gehookcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/thorn.glif b/sources/FixelText-Black.ufo/glyphs/thorn.glif new file mode 100644 index 00000000..ac74e7fe --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/thorn.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + b + com.fontlab.metricsRight + b + + + diff --git a/sources/FixelText-Black.ufo/glyphs/thousandmillionscomb-cy.glif b/sources/FixelText-Black.ufo/glyphs/thousandmillionscomb-cy.glif new file mode 100644 index 00000000..f4afdcf8 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/thousandmillionscomb-cy.glif @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/thousandscyr.dnom.glif b/sources/FixelText-Black.ufo/glyphs/thousandscyr.dnom.glif new file mode 100644 index 00000000..38e44fd6 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/thousandscyr.dnom.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + | + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/thousandscyr.glif b/sources/FixelText-Black.ufo/glyphs/thousandscyr.glif new file mode 100644 index 00000000..b7652057 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/thousandscyr.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + | + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/three.glif b/sources/FixelText-Black.ufo/glyphs/three.glif new file mode 100644 index 00000000..071b8067 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/three.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/three.osf.glif b/sources/FixelText-Black.ufo/glyphs/three.osf.glif new file mode 100644 index 00000000..94c2ed08 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/three.osf.glif @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + three + com.fontlab.metricsRight + three + + + diff --git a/sources/FixelText-Black.ufo/glyphs/three.tf.glif b/sources/FixelText-Black.ufo/glyphs/three.tf.glif new file mode 100644 index 00000000..23669707 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/three.tf.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/threequarters.glif b/sources/FixelText-Black.ufo/glyphs/threequarters.glif new file mode 100644 index 00000000..3af52abd --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/threequarters.glif @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/threesuperior.glif b/sources/FixelText-Black.ufo/glyphs/threesuperior.glif new file mode 100644 index 00000000..fcd39461 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/threesuperior.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/tilde.case.glif b/sources/FixelText-Black.ufo/glyphs/tilde.case.glif new file mode 100644 index 00000000..e5eee60c --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/tilde.case.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/tilde.glif b/sources/FixelText-Black.ufo/glyphs/tilde.glif new file mode 100644 index 00000000..f24a4cb1 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/tilde.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/titlocombcyr.glif b/sources/FixelText-Black.ufo/glyphs/titlocombcyr.glif new file mode 100644 index 00000000..8ba0399f --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/titlocombcyr.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/tjekomicyr.glif b/sources/FixelText-Black.ufo/glyphs/tjekomicyr.glif new file mode 100644 index 00000000..dfbd5ba0 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/tjekomicyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + т + com.fontlab.metricsRight + njekomicyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/trademark.glif b/sources/FixelText-Black.ufo/glyphs/trademark.glif new file mode 100644 index 00000000..7e246e18 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/trademark.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/tse-cy.B_G_R_.glif b/sources/FixelText-Black.ufo/glyphs/tse-cy.B_G_R_.glif new file mode 100644 index 00000000..a849e233 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/tse-cy.B_G_R_.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + u + com.fontlab.metricsRight + ц + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/tse-cy.glif b/sources/FixelText-Black.ufo/glyphs/tse-cy.glif new file mode 100644 index 00000000..9ac8c1e8 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/tse-cy.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + д + + + diff --git a/sources/FixelText-Black.ufo/glyphs/tseR_eversed-cy.glif b/sources/FixelText-Black.ufo/glyphs/tseR_eversed-cy.glif new file mode 100644 index 00000000..bfcbb750 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/tseR_eversed-cy.glif @@ -0,0 +1,20 @@ + + + + + + + + + + com.fontlab.metricsLeft + + com.fontlab.metricsRight + н + com.fontlab.recipe + ц + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/tshecyr.glif b/sources/FixelText-Black.ufo/glyphs/tshecyr.glif new file mode 100644 index 00000000..2b4a7750 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/tshecyr.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + hbar + + + diff --git a/sources/FixelText-Black.ufo/glyphs/tsse-cy.glif b/sources/FixelText-Black.ufo/glyphs/tsse-cy.glif new file mode 100644 index 00000000..76f86c8e --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/tsse-cy.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + т + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/tswe-cy.glif b/sources/FixelText-Black.ufo/glyphs/tswe-cy.glif new file mode 100644 index 00000000..edcfaae2 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/tswe-cy.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ш + com.fontlab.metricsRight + shwe-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/twe-cy.glif b/sources/FixelText-Black.ufo/glyphs/twe-cy.glif new file mode 100644 index 00000000..cc32108b --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/twe-cy.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + т.ss01 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/two.glif b/sources/FixelText-Black.ufo/glyphs/two.glif new file mode 100644 index 00000000..38b0606d --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/two.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/two.osf.glif b/sources/FixelText-Black.ufo/glyphs/two.osf.glif new file mode 100644 index 00000000..ad38f0b9 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/two.osf.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + two + com.fontlab.metricsRight + two + + + diff --git a/sources/FixelText-Black.ufo/glyphs/two.tf.glif b/sources/FixelText-Black.ufo/glyphs/two.tf.glif new file mode 100644 index 00000000..ce2eafe9 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/two.tf.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/twosuperior.glif b/sources/FixelText-Black.ufo/glyphs/twosuperior.glif new file mode 100644 index 00000000..85dbb7d0 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/twosuperior.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/u-cy.accented.glif b/sources/FixelText-Black.ufo/glyphs/u-cy.accented.glif new file mode 100644 index 00000000..64d80eeb --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/u-cy.accented.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + y+acute + + + diff --git a/sources/FixelText-Black.ufo/glyphs/u-cy.glif b/sources/FixelText-Black.ufo/glyphs/u-cy.glif new file mode 100644 index 00000000..3728027f --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/u-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + y + + + diff --git a/sources/FixelText-Black.ufo/glyphs/u.glif b/sources/FixelText-Black.ufo/glyphs/u.glif new file mode 100644 index 00000000..b5c04882 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/u.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |n + com.fontlab.metricsRight + l + + + diff --git a/sources/FixelText-Black.ufo/glyphs/uacute.glif b/sources/FixelText-Black.ufo/glyphs/uacute.glif new file mode 100644 index 00000000..9b81be31 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/uacute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+acute + + + diff --git a/sources/FixelText-Black.ufo/glyphs/uacutedblcyr.glif b/sources/FixelText-Black.ufo/glyphs/uacutedblcyr.glif new file mode 100644 index 00000000..344e9b0d --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/uacutedblcyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u-cy+hungarumlaut + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/ubreve.glif b/sources/FixelText-Black.ufo/glyphs/ubreve.glif new file mode 100644 index 00000000..6b339d17 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/ubreve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+breve + + + diff --git a/sources/FixelText-Black.ufo/glyphs/ucircumflex.glif b/sources/FixelText-Black.ufo/glyphs/ucircumflex.glif new file mode 100644 index 00000000..d5a3d37b --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/ucircumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+circumflex + + + diff --git a/sources/FixelText-Black.ufo/glyphs/udieresis.glif b/sources/FixelText-Black.ufo/glyphs/udieresis.glif new file mode 100644 index 00000000..91d4e322 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/udieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+dieresis + + + diff --git a/sources/FixelText-Black.ufo/glyphs/udieresiscyr.glif b/sources/FixelText-Black.ufo/glyphs/udieresiscyr.glif new file mode 100644 index 00000000..225f1af7 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/udieresiscyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/ugrave.glif b/sources/FixelText-Black.ufo/glyphs/ugrave.glif new file mode 100644 index 00000000..e72fcaea --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/ugrave.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+grave + + + diff --git a/sources/FixelText-Black.ufo/glyphs/uhungarumlaut.glif b/sources/FixelText-Black.ufo/glyphs/uhungarumlaut.glif new file mode 100644 index 00000000..198d6c55 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/uhungarumlaut.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+hungarumlaut + + + diff --git a/sources/FixelText-Black.ufo/glyphs/ukM_onograph-cy.glif b/sources/FixelText-Black.ufo/glyphs/ukM_onograph-cy.glif new file mode 100644 index 00000000..61bf555b --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/ukM_onograph-cy.glif @@ -0,0 +1,78 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + y-30 + com.fontlab.metricsRight + y-20 + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/ukcyr.glif b/sources/FixelText-Black.ufo/glyphs/ukcyr.glif new file mode 100644 index 00000000..945f383f --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/ukcyr.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + y + com.fontlab.recipe + uni1C82_у + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/umacron.glif b/sources/FixelText-Black.ufo/glyphs/umacron.glif new file mode 100644 index 00000000..34cbcf0f --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/umacron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+macron + + + diff --git a/sources/FixelText-Black.ufo/glyphs/umacroncyr.glif b/sources/FixelText-Black.ufo/glyphs/umacroncyr.glif new file mode 100644 index 00000000..f78868ce --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/umacroncyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u-cy+macron + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/underscore.glif b/sources/FixelText-Black.ufo/glyphs/underscore.glif new file mode 100644 index 00000000..734ba305 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/underscore.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/uni1C_80.glif b/sources/FixelText-Black.ufo/glyphs/uni1C_80.glif new file mode 100644 index 00000000..8c4ec361 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/uni1C_80.glif @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + б + com.fontlab.metricsRight + o-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/uni1C_81.glif b/sources/FixelText-Black.ufo/glyphs/uni1C_81.glif new file mode 100644 index 00000000..025c9c3b --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/uni1C_81.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + д-10 + com.fontlab.metricsRight + | + com.fontlab.recipe + д + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/uni1C_82.glif b/sources/FixelText-Black.ufo/glyphs/uni1C_82.glif new file mode 100644 index 00000000..722dd09e --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/uni1C_82.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/uni1C_83.glif b/sources/FixelText-Black.ufo/glyphs/uni1C_83.glif new file mode 100644 index 00000000..f5e5f77f --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/uni1C_83.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + c + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/uni1C_84.glif b/sources/FixelText-Black.ufo/glyphs/uni1C_84.glif new file mode 100644 index 00000000..698acbda --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/uni1C_84.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/uni1C_85.glif b/sources/FixelText-Black.ufo/glyphs/uni1C_85.glif new file mode 100644 index 00000000..c90703a2 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/uni1C_85.glif @@ -0,0 +1,20 @@ + + + + + + + + + + com.fontlab.metricsLeft + ш + com.fontlab.metricsRight + l() + com.fontlab.recipe + ш + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/uni1C_86.glif b/sources/FixelText-Black.ufo/glyphs/uni1C_86.glif new file mode 100644 index 00000000..d337597c --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/uni1C_86.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + uni1C84 + com.fontlab.metricsRight + ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/uni1C_87.glif b/sources/FixelText-Black.ufo/glyphs/uni1C_87.glif new file mode 100644 index 00000000..00e86452 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/uni1C_87.glif @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + uni1C84-40 + com.fontlab.metricsRight + ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/uni1C_88.glif b/sources/FixelText-Black.ufo/glyphs/uni1C_88.glif new file mode 100644 index 00000000..a891d780 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/uni1C_88.glif @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/uni1E_B_C_.glif b/sources/FixelText-Black.ufo/glyphs/uni1E_B_C_.glif new file mode 100644 index 00000000..4c781dac --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/uni1E_B_C_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+tilde.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/uni1E_B_D_.glif b/sources/FixelText-Black.ufo/glyphs/uni1E_B_D_.glif new file mode 100644 index 00000000..214d07ea --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/uni1E_B_D_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+tilde + + + diff --git a/sources/FixelText-Black.ufo/glyphs/uni2010.glif b/sources/FixelText-Black.ufo/glyphs/uni2010.glif new file mode 100644 index 00000000..10fc5ace --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/uni2010.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + hyphen + + + diff --git a/sources/FixelText-Black.ufo/glyphs/uni2D_E_E_.case.glif b/sources/FixelText-Black.ufo/glyphs/uni2D_E_E_.case.glif new file mode 100644 index 00000000..6ecc8c7a --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/uni2D_E_E_.case.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/uni2D_E_E_.glif b/sources/FixelText-Black.ufo/glyphs/uni2D_E_E_.glif new file mode 100644 index 00000000..5ad453db --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/uni2D_E_E_.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/uniE_000.alt.glif b/sources/FixelText-Black.ufo/glyphs/uniE_000.alt.glif new file mode 100644 index 00000000..8e442b8f --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/uniE_000.alt.glif @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + ї_ї + public.markColor + 0.6,0.997,1,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/uniE_000.glif b/sources/FixelText-Black.ufo/glyphs/uniE_000.glif new file mode 100644 index 00000000..99caeeb5 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/uniE_000.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + ї_ї + public.markColor + 0.6,0.997,1,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/uniE_01A_.glif b/sources/FixelText-Black.ufo/glyphs/uniE_01A_.glif new file mode 100644 index 00000000..5d0f21e1 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/uniE_01A_.glif @@ -0,0 +1,115 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-Black.ufo/glyphs/uniF_43A_.glif b/sources/FixelText-Black.ufo/glyphs/uniF_43A_.glif new file mode 100644 index 00000000..8dd36b99 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/uniF_43A_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/uniF_43B_.glif b/sources/FixelText-Black.ufo/glyphs/uniF_43B_.glif new file mode 100644 index 00000000..db48f7ff --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/uniF_43B_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ustraightcyr+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/uniF_45D_.glif b/sources/FixelText-Black.ufo/glyphs/uniF_45D_.glif new file mode 100644 index 00000000..5f673b9e --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/uniF_45D_.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Є+acute.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/uniF_45E_.glif b/sources/FixelText-Black.ufo/glyphs/uniF_45E_.glif new file mode 100644 index 00000000..e1087729 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/uniF_45E_.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Iacute + + + diff --git a/sources/FixelText-Black.ufo/glyphs/uniF_45F_.glif b/sources/FixelText-Black.ufo/glyphs/uniF_45F_.glif new file mode 100644 index 00000000..1e6c6c71 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/uniF_45F_.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + com.fontlab.recipe + I+dieresiscase.alt+acute.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/uniF_475.glif b/sources/FixelText-Black.ufo/glyphs/uniF_475.glif new file mode 100644 index 00000000..07c0fef4 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/uniF_475.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + є+acute + + + diff --git a/sources/FixelText-Black.ufo/glyphs/uniF_476.glif b/sources/FixelText-Black.ufo/glyphs/uniF_476.glif new file mode 100644 index 00000000..294f68ef --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/uniF_476.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + iacute + + + diff --git a/sources/FixelText-Black.ufo/glyphs/uniF_477.glif b/sources/FixelText-Black.ufo/glyphs/uniF_477.glif new file mode 100644 index 00000000..cdf47052 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/uniF_477.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + dotlessi+dieresisacute + + + diff --git a/sources/FixelText-Black.ufo/glyphs/uniF_478.glif b/sources/FixelText-Black.ufo/glyphs/uniF_478.glif new file mode 100644 index 00000000..737e8389 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/uniF_478.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Yat+acute.case + + + diff --git a/sources/FixelText-Black.ufo/glyphs/uniF_479.glif b/sources/FixelText-Black.ufo/glyphs/uniF_479.glif new file mode 100644 index 00000000..811e3c52 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/uniF_479.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + yat+acute + + + diff --git a/sources/FixelText-Black.ufo/glyphs/uniF_498.glif b/sources/FixelText-Black.ufo/glyphs/uniF_498.glif new file mode 100644 index 00000000..681c6d4b --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/uniF_498.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ю+dieresis.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/uniF_499.glif b/sources/FixelText-Black.ufo/glyphs/uniF_499.glif new file mode 100644 index 00000000..273e1248 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/uniF_499.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ю+dieresis + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/uniF_49A_.glif b/sources/FixelText-Black.ufo/glyphs/uniF_49A_.glif new file mode 100644 index 00000000..829547fe --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/uniF_49A_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Obarcyr+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/uniF_49B_.glif b/sources/FixelText-Black.ufo/glyphs/uniF_49B_.glif new file mode 100644 index 00000000..2b2efe0d --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/uniF_49B_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + obarcyr+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/uniF_49C_.glif b/sources/FixelText-Black.ufo/glyphs/uniF_49C_.glif new file mode 100644 index 00000000..bb1954ed --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/uniF_49C_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Schwacyr+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/uniF_49D_.glif b/sources/FixelText-Black.ufo/glyphs/uniF_49D_.glif new file mode 100644 index 00000000..78508f7c --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/uniF_49D_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + schwacyr+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/uniF_49E_.glif b/sources/FixelText-Black.ufo/glyphs/uniF_49E_.glif new file mode 100644 index 00000000..d42d2d5c --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/uniF_49E_.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Yatcyr + com.fontlab.metricsRight + Tshecyr + com.fontlab.recipe + Shhacyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/uniF_49F_.glif b/sources/FixelText-Black.ufo/glyphs/uniF_49F_.glif new file mode 100644 index 00000000..fec28c35 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/uniF_49F_.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + hbar + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/uniF_4C_6.glif b/sources/FixelText-Black.ufo/glyphs/uniF_4C_6.glif new file mode 100644 index 00000000..7b241175 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/uniF_4C_6.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ч + com.fontlab.metricsRight + Ч + com.fontlab.recipe + Ч + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/uniF_4C_7.glif b/sources/FixelText-Black.ufo/glyphs/uniF_4C_7.glif new file mode 100644 index 00000000..b87e24df --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/uniF_4C_7.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ч + com.fontlab.metricsRight + ч + com.fontlab.recipe + ч+enhookcyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/uniF_4C_C_.glif b/sources/FixelText-Black.ufo/glyphs/uniF_4C_C_.glif new file mode 100644 index 00000000..75a0088b --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/uniF_4C_C_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + У+acute.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/uniF_4C_D_.glif b/sources/FixelText-Black.ufo/glyphs/uniF_4C_D_.glif new file mode 100644 index 00000000..50d2ffb9 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/uniF_4C_D_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + y+acute + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/uniF_4D_2.glif b/sources/FixelText-Black.ufo/glyphs/uniF_4D_2.glif new file mode 100644 index 00000000..fd253690 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/uniF_4D_2.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+grave.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/uniF_4D_3.glif b/sources/FixelText-Black.ufo/glyphs/uniF_4D_3.glif new file mode 100644 index 00000000..e6341e6d --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/uniF_4D_3.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+grave + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/uniF_4D_4.glif b/sources/FixelText-Black.ufo/glyphs/uniF_4D_4.glif new file mode 100644 index 00000000..f289504d --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/uniF_4D_4.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + P+caron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/uniF_4D_5.glif b/sources/FixelText-Black.ufo/glyphs/uniF_4D_5.glif new file mode 100644 index 00000000..3f3e5cc7 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/uniF_4D_5.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + p+caron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/uniF_4D_6.glif b/sources/FixelText-Black.ufo/glyphs/uniF_4D_6.glif new file mode 100644 index 00000000..93a365bf --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/uniF_4D_6.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Э+dotaccent.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/uniF_4D_7.glif b/sources/FixelText-Black.ufo/glyphs/uniF_4D_7.glif new file mode 100644 index 00000000..77f0dbbd --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/uniF_4D_7.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + э+dotaccent + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/uniF_4D_8.glif b/sources/FixelText-Black.ufo/glyphs/uniF_4D_8.glif new file mode 100644 index 00000000..22039fe4 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/uniF_4D_8.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Я+dieresis.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/uniF_4D_9.glif b/sources/FixelText-Black.ufo/glyphs/uniF_4D_9.glif new file mode 100644 index 00000000..0c21d698 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/uniF_4D_9.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + я+dieresis + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/uniF_50E_.glif b/sources/FixelText-Black.ufo/glyphs/uniF_50E_.glif new file mode 100644 index 00000000..24a04af2 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/uniF_50E_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/uniF_50F_.glif b/sources/FixelText-Black.ufo/glyphs/uniF_50F_.glif new file mode 100644 index 00000000..99431380 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/uniF_50F_.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/uniF_510.glif b/sources/FixelText-Black.ufo/glyphs/uniF_510.glif new file mode 100644 index 00000000..42924716 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/uniF_510.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/uniF_511.glif b/sources/FixelText-Black.ufo/glyphs/uniF_511.glif new file mode 100644 index 00000000..e812996b --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/uniF_511.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/uniF_512.glif b/sources/FixelText-Black.ufo/glyphs/uniF_512.glif new file mode 100644 index 00000000..e60e7e69 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/uniF_512.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + com.fontlab.metricsLeft + E + com.fontlab.metricsRight + E + com.fontlab.recipe + E+dieresis.case+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/uniF_513.glif b/sources/FixelText-Black.ufo/glyphs/uniF_513.glif new file mode 100644 index 00000000..46b8d504 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/uniF_513.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.recipe + e+dieresis+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/uniF_514.glif b/sources/FixelText-Black.ufo/glyphs/uniF_514.glif new file mode 100644 index 00000000..d0508866 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/uniF_514.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + com.fontlab.metricsLeft + E + com.fontlab.metricsRight + E + com.fontlab.recipe + E+dieresis.case+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/uniF_515.glif b/sources/FixelText-Black.ufo/glyphs/uniF_515.glif new file mode 100644 index 00000000..13c8d85c --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/uniF_515.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.recipe + e+dieresis+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/uniF_516.glif b/sources/FixelText-Black.ufo/glyphs/uniF_516.glif new file mode 100644 index 00000000..adc15fd2 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/uniF_516.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + З+caron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/uniF_517.glif b/sources/FixelText-Black.ufo/glyphs/uniF_517.glif new file mode 100644 index 00000000..eda7fad7 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/uniF_517.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + з+caron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/uniF_518.glif b/sources/FixelText-Black.ufo/glyphs/uniF_518.glif new file mode 100644 index 00000000..ebe31fc8 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/uniF_518.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/uniF_519.glif b/sources/FixelText-Black.ufo/glyphs/uniF_519.glif new file mode 100644 index 00000000..47b83b51 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/uniF_519.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/uniF_51A_.glif b/sources/FixelText-Black.ufo/glyphs/uniF_51A_.glif new file mode 100644 index 00000000..b228ff20 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/uniF_51A_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/uniF_51B_.glif b/sources/FixelText-Black.ufo/glyphs/uniF_51B_.glif new file mode 100644 index 00000000..ea2b9ff7 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/uniF_51B_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/uniF_51C_.glif b/sources/FixelText-Black.ufo/glyphs/uniF_51C_.glif new file mode 100644 index 00000000..64669d19 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/uniF_51C_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Obarcyr+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/uniF_51D_.glif b/sources/FixelText-Black.ufo/glyphs/uniF_51D_.glif new file mode 100644 index 00000000..23f6072c --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/uniF_51D_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + obarcyr+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/uniF_51E_.glif b/sources/FixelText-Black.ufo/glyphs/uniF_51E_.glif new file mode 100644 index 00000000..04304424 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/uniF_51E_.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + com.fontlab.recipe + Obarcyr+dieresis.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/uniF_51F_.glif b/sources/FixelText-Black.ufo/glyphs/uniF_51F_.glif new file mode 100644 index 00000000..46c57ecd --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/uniF_51F_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.recipe + obarcyr+dieresis+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/uniF_521.glif b/sources/FixelText-Black.ufo/glyphs/uniF_521.glif new file mode 100644 index 00000000..19d6bbb7 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/uniF_521.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ы+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/uniF_522.glif b/sources/FixelText-Black.ufo/glyphs/uniF_522.glif new file mode 100644 index 00000000..bc9eed65 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/uniF_522.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Э+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/uniF_523.glif b/sources/FixelText-Black.ufo/glyphs/uniF_523.glif new file mode 100644 index 00000000..db900a39 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/uniF_523.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + э+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/uniF_524.glif b/sources/FixelText-Black.ufo/glyphs/uniF_524.glif new file mode 100644 index 00000000..158d6f01 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/uniF_524.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Э+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/uniF_525.glif b/sources/FixelText-Black.ufo/glyphs/uniF_525.glif new file mode 100644 index 00000000..a82d449c --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/uniF_525.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + э+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/uniF_526.glif b/sources/FixelText-Black.ufo/glyphs/uniF_526.glif new file mode 100644 index 00000000..12e6fe96 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/uniF_526.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Є+dieresis.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/uniF_527.glif b/sources/FixelText-Black.ufo/glyphs/uniF_527.glif new file mode 100644 index 00000000..31b25ae9 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/uniF_527.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + є+dieresis + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/uniF_528.glif b/sources/FixelText-Black.ufo/glyphs/uniF_528.glif new file mode 100644 index 00000000..d57a6994 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/uniF_528.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Я+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/uniF_529.glif b/sources/FixelText-Black.ufo/glyphs/uniF_529.glif new file mode 100644 index 00000000..8ac0223d --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/uniF_529.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + я+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/uniF_52A_.glif b/sources/FixelText-Black.ufo/glyphs/uniF_52A_.glif new file mode 100644 index 00000000..2039891a --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/uniF_52A_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Я+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/uniF_52B_.glif b/sources/FixelText-Black.ufo/glyphs/uniF_52B_.glif new file mode 100644 index 00000000..416293ef --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/uniF_52B_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + я+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/uniF_52C_.glif b/sources/FixelText-Black.ufo/glyphs/uniF_52C_.glif new file mode 100644 index 00000000..3a693092 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/uniF_52C_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ю+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/uniF_52D_.glif b/sources/FixelText-Black.ufo/glyphs/uniF_52D_.glif new file mode 100644 index 00000000..674d62b7 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/uniF_52D_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ю+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/uniF_52E_.glif b/sources/FixelText-Black.ufo/glyphs/uniF_52E_.glif new file mode 100644 index 00000000..a5891b4a --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/uniF_52E_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ю+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/uniF_52F_.glif b/sources/FixelText-Black.ufo/glyphs/uniF_52F_.glif new file mode 100644 index 00000000..4835e075 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/uniF_52F_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ю+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/uniF_532.glif b/sources/FixelText-Black.ufo/glyphs/uniF_532.glif new file mode 100644 index 00000000..d10fdf7f --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/uniF_532.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Й + com.fontlab.metricsRight + Й + com.fontlab.recipe + Й + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/uniF_533.glif b/sources/FixelText-Black.ufo/glyphs/uniF_533.glif new file mode 100644 index 00000000..e4ea89c0 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/uniF_533.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + l() + com.fontlab.recipe + й+enhookcyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/uniF_536.glif b/sources/FixelText-Black.ufo/glyphs/uniF_536.glif new file mode 100644 index 00000000..42f6a14b --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/uniF_536.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ы+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/uniF_537.glif b/sources/FixelText-Black.ufo/glyphs/uniF_537.glif new file mode 100644 index 00000000..b3e8b91a --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/uniF_537.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ы+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/uniF_538.glif b/sources/FixelText-Black.ufo/glyphs/uniF_538.glif new file mode 100644 index 00000000..c4931037 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/uniF_538.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Reversedzecyr+dieresis.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/uniF_539.glif b/sources/FixelText-Black.ufo/glyphs/uniF_539.glif new file mode 100644 index 00000000..fe35bf4d --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/uniF_539.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + reversedzecyr+dieresis + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/uniF_830.glif b/sources/FixelText-Black.ufo/glyphs/uniF_830.glif new file mode 100644 index 00000000..139b540c --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/uniF_830.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+circumflex.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/uniF_831.glif b/sources/FixelText-Black.ufo/glyphs/uniF_831.glif new file mode 100644 index 00000000..a20fef2a --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/uniF_831.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+circumflex + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/uniF_833.glif b/sources/FixelText-Black.ufo/glyphs/uniF_833.glif new file mode 100644 index 00000000..e705b967 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/uniF_833.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+circumflex.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/uniF_834.glif b/sources/FixelText-Black.ufo/glyphs/uniF_834.glif new file mode 100644 index 00000000..0a58906b --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/uniF_834.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+circumflex + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/uniF_839.glif b/sources/FixelText-Black.ufo/glyphs/uniF_839.glif new file mode 100644 index 00000000..75e6030f --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/uniF_839.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+circumflex.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/uniF_83A_.glif b/sources/FixelText-Black.ufo/glyphs/uniF_83A_.glif new file mode 100644 index 00000000..4cfca465 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/uniF_83A_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+circumflex + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/uniF_86F_.glif b/sources/FixelText-Black.ufo/glyphs/uniF_86F_.glif new file mode 100644 index 00000000..b9b8d4f5 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/uniF_86F_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + K+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/uniF_870.glif b/sources/FixelText-Black.ufo/glyphs/uniF_870.glif new file mode 100644 index 00000000..ac680f33 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/uniF_870.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + к+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/uniF_872.glif b/sources/FixelText-Black.ufo/glyphs/uniF_872.glif new file mode 100644 index 00000000..5681bf2f --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/uniF_872.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Л+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/uniF_873.glif b/sources/FixelText-Black.ufo/glyphs/uniF_873.glif new file mode 100644 index 00000000..176b0214 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/uniF_873.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + л+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/uniF_875.glif b/sources/FixelText-Black.ufo/glyphs/uniF_875.glif new file mode 100644 index 00000000..cb153192 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/uniF_875.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/uniF_876.glif b/sources/FixelText-Black.ufo/glyphs/uniF_876.glif new file mode 100644 index 00000000..4872f1b9 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/uniF_876.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/uniF_878.glif b/sources/FixelText-Black.ufo/glyphs/uniF_878.glif new file mode 100644 index 00000000..9c4856df --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/uniF_878.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + X+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/uniF_879.glif b/sources/FixelText-Black.ufo/glyphs/uniF_879.glif new file mode 100644 index 00000000..8cddd80a --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/uniF_879.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + x+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/uniF_87B_.glif b/sources/FixelText-Black.ufo/glyphs/uniF_87B_.glif new file mode 100644 index 00000000..d4f0e9fe --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/uniF_87B_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ц+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/uniF_87C_.glif b/sources/FixelText-Black.ufo/glyphs/uniF_87C_.glif new file mode 100644 index 00000000..90e9eb1a --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/uniF_87C_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ц+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/uniF_87E_.glif b/sources/FixelText-Black.ufo/glyphs/uniF_87E_.glif new file mode 100644 index 00000000..b6be387f --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/uniF_87E_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ч+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/uniF_87F_.glif b/sources/FixelText-Black.ufo/glyphs/uniF_87F_.glif new file mode 100644 index 00000000..7d7b56a9 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/uniF_87F_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ч+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/uogonek.glif b/sources/FixelText-Black.ufo/glyphs/uogonek.glif new file mode 100644 index 00000000..886f0e75 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/uogonek.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+ogonek + + + diff --git a/sources/FixelText-Black.ufo/glyphs/uring.glif b/sources/FixelText-Black.ufo/glyphs/uring.glif new file mode 100644 index 00000000..e15933c9 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/uring.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+ring + + + diff --git a/sources/FixelText-Black.ufo/glyphs/ushort-cy.glif b/sources/FixelText-Black.ufo/glyphs/ushort-cy.glif new file mode 100644 index 00000000..9d0600f5 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/ushort-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + uni0443+breve + + + diff --git a/sources/FixelText-Black.ufo/glyphs/ustraightcyr.glif b/sources/FixelText-Black.ufo/glyphs/ustraightcyr.glif new file mode 100644 index 00000000..ff3a9a92 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/ustraightcyr.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + v + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/ustraightstrokecyr.glif b/sources/FixelText-Black.ufo/glyphs/ustraightstrokecyr.glif new file mode 100644 index 00000000..65db5180 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/ustraightstrokecyr.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/utilde.glif b/sources/FixelText-Black.ufo/glyphs/utilde.glif new file mode 100644 index 00000000..04d8990d --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/utilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+tilde + + + diff --git a/sources/FixelText-Black.ufo/glyphs/v.glif b/sources/FixelText-Black.ufo/glyphs/v.glif new file mode 100644 index 00000000..fb699381 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/v.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/ve-cy.B_G_R_.glif b/sources/FixelText-Black.ufo/glyphs/ve-cy.B_G_R_.glif new file mode 100644 index 00000000..645abd9c --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/ve-cy.B_G_R_.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + b-5 + com.fontlab.metricsRight + b + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/ve-cy.glif b/sources/FixelText-Black.ufo/glyphs/ve-cy.glif new file mode 100644 index 00000000..dacc85bd --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/ve-cy.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + + + diff --git a/sources/FixelText-Black.ufo/glyphs/ve-cy.ss01.glif b/sources/FixelText-Black.ufo/glyphs/ve-cy.ss01.glif new file mode 100644 index 00000000..4fb2f461 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/ve-cy.ss01.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/virgo.glif b/sources/FixelText-Black.ufo/glyphs/virgo.glif new file mode 100644 index 00000000..be98f8a6 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/virgo.glif @@ -0,0 +1,224 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =55 + com.fontlab.metricsRight + =35 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/vzmetcomb-cy.glif b/sources/FixelText-Black.ufo/glyphs/vzmetcomb-cy.glif new file mode 100644 index 00000000..c8022d56 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/vzmetcomb-cy.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/w.glif b/sources/FixelText-Black.ufo/glyphs/w.glif new file mode 100644 index 00000000..c5e50cee --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/w.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/wacute.glif b/sources/FixelText-Black.ufo/glyphs/wacute.glif new file mode 100644 index 00000000..80eac09c --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/wacute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + w+acute + + + diff --git a/sources/FixelText-Black.ufo/glyphs/wcircumflex.glif b/sources/FixelText-Black.ufo/glyphs/wcircumflex.glif new file mode 100644 index 00000000..d2b70abc --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/wcircumflex.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + w+circumflex + + + diff --git a/sources/FixelText-Black.ufo/glyphs/wdieresis.glif b/sources/FixelText-Black.ufo/glyphs/wdieresis.glif new file mode 100644 index 00000000..446a5072 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/wdieresis.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + w+dieresis + + + diff --git a/sources/FixelText-Black.ufo/glyphs/wecyr.glif b/sources/FixelText-Black.ufo/glyphs/wecyr.glif new file mode 100644 index 00000000..d78bc37f --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/wecyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + w + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/wgrave.glif b/sources/FixelText-Black.ufo/glyphs/wgrave.glif new file mode 100644 index 00000000..80018833 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/wgrave.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + w+grave + + + diff --git a/sources/FixelText-Black.ufo/glyphs/x.glif b/sources/FixelText-Black.ufo/glyphs/x.glif new file mode 100644 index 00000000..5cef58e6 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/x.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/xatailcyr.glif b/sources/FixelText-Black.ufo/glyphs/xatailcyr.glif new file mode 100644 index 00000000..460eca76 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/xatailcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + x + com.fontlab.metricsRight + zhetailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/y.glif b/sources/FixelText-Black.ufo/glyphs/y.glif new file mode 100644 index 00000000..78238f78 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/y.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/yacute.glif b/sources/FixelText-Black.ufo/glyphs/yacute.glif new file mode 100644 index 00000000..098b3f03 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/yacute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + y+acute + + + diff --git a/sources/FixelText-Black.ufo/glyphs/yaecyr.glif b/sources/FixelText-Black.ufo/glyphs/yaecyr.glif new file mode 100644 index 00000000..a71321b7 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/yaecyr.glif @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + я + com.fontlab.metricsRight + e + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/yatI_otified-cy.glif b/sources/FixelText-Black.ufo/glyphs/yatI_otified-cy.glif new file mode 100644 index 00000000..198d38d2 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/yatI_otified-cy.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + com.fontlab.metricsRight + yatcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/yatcyr.B_G_R_.glif b/sources/FixelText-Black.ufo/glyphs/yatcyr.B_G_R_.glif new file mode 100644 index 00000000..e2548ec3 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/yatcyr.B_G_R_.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hardsign-cy + com.fontlab.metricsRight + ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/yatcyr.glif b/sources/FixelText-Black.ufo/glyphs/yatcyr.glif new file mode 100644 index 00000000..fc10f9b9 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/yatcyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hardsign-cy + com.fontlab.metricsRight + ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/ycircumflex.glif b/sources/FixelText-Black.ufo/glyphs/ycircumflex.glif new file mode 100644 index 00000000..7cbe2d42 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/ycircumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + y+circumflex + + + diff --git a/sources/FixelText-Black.ufo/glyphs/ydieresis.glif b/sources/FixelText-Black.ufo/glyphs/ydieresis.glif new file mode 100644 index 00000000..9b5c31b3 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/ydieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + y+dieresis + + + diff --git a/sources/FixelText-Black.ufo/glyphs/yen.glif b/sources/FixelText-Black.ufo/glyphs/yen.glif new file mode 100644 index 00000000..efba6f21 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/yen.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/yen.ss01.glif b/sources/FixelText-Black.ufo/glyphs/yen.ss01.glif new file mode 100644 index 00000000..89ccfe6d --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/yen.ss01.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/yerN_eutral-cy.glif b/sources/FixelText-Black.ufo/glyphs/yerN_eutral-cy.glif new file mode 100644 index 00000000..e27bb8b0 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/yerN_eutral-cy.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hardsign-cy + com.fontlab.metricsRight + ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/yeru-cy.accented.glif b/sources/FixelText-Black.ufo/glyphs/yeru-cy.accented.glif new file mode 100644 index 00000000..7742f023 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/yeru-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ы+acute + + + diff --git a/sources/FixelText-Black.ufo/glyphs/yeru-cy.glif b/sources/FixelText-Black.ufo/glyphs/yeru-cy.glif new file mode 100644 index 00000000..f84d230b --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/yeru-cy.glif @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelText-Black.ufo/glyphs/yeru-cy.ss01.glif b/sources/FixelText-Black.ufo/glyphs/yeru-cy.ss01.glif new file mode 100644 index 00000000..6763004a --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/yeru-cy.ss01.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/yeruB_ackyer-cy.glif b/sources/FixelText-Black.ufo/glyphs/yeruB_ackyer-cy.glif new file mode 100644 index 00000000..13441577 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/yeruB_ackyer-cy.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hardsign-cy + com.fontlab.metricsRight + dotlessi + com.fontlab.recipe + hardsign-cy_dotlessi + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/yi-cy.alt.glif b/sources/FixelText-Black.ufo/glyphs/yi-cy.alt.glif new file mode 100644 index 00000000..2aa8735e --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/yi-cy.alt.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.recipe + idieresis + public.markColor + 0.6,0.997,1,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/yi-cy.glif b/sources/FixelText-Black.ufo/glyphs/yi-cy.glif new file mode 100644 index 00000000..65d68a3b --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/yi-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + idieresis + + + diff --git a/sources/FixelText-Black.ufo/glyphs/ylongdieresiscyr.glif b/sources/FixelText-Black.ufo/glyphs/ylongdieresiscyr.glif new file mode 100644 index 00000000..56765c94 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/ylongdieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + yeru-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/yn-cy.glif b/sources/FixelText-Black.ufo/glyphs/yn-cy.glif new file mode 100644 index 00000000..401f94fd --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/yn-cy.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |izhitsacyr + com.fontlab.metricsRight + |izhitsacyr + com.fontlab.recipe + izhitsa + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/yuR_eversed-cy.glif b/sources/FixelText-Black.ufo/glyphs/yuR_eversed-cy.glif new file mode 100644 index 00000000..2ed060a3 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/yuR_eversed-cy.glif @@ -0,0 +1,20 @@ + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l + com.fontlab.recipe + ю + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/yusB_lended-cy.glif b/sources/FixelText-Black.ufo/glyphs/yusB_lended-cy.glif new file mode 100644 index 00000000..9dc201b5 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/yusB_lended-cy.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + yusbigcyr + com.fontlab.metricsRight + yusbigcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/yusC_losedlittle-cy.glif b/sources/FixelText-Black.ufo/glyphs/yusC_losedlittle-cy.glif new file mode 100644 index 00000000..0305bce1 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/yusC_losedlittle-cy.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + yuslittlecyr + com.fontlab.metricsRight + yuslittlecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/yusbigcyr.glif b/sources/FixelText-Black.ufo/glyphs/yusbigcyr.glif new file mode 100644 index 00000000..0f3f2130 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/yusbigcyr.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/yusbigiotifiedcyr.B_G_R_.glif b/sources/FixelText-Black.ufo/glyphs/yusbigiotifiedcyr.B_G_R_.glif new file mode 100644 index 00000000..23188ebe --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/yusbigiotifiedcyr.B_G_R_.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + com.fontlab.metricsRight + ж + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/yusbigiotifiedcyr.glif b/sources/FixelText-Black.ufo/glyphs/yusbigiotifiedcyr.glif new file mode 100644 index 00000000..b6115057 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/yusbigiotifiedcyr.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + ж + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/yusiotifiedC_losedL_ittle-cy.glif b/sources/FixelText-Black.ufo/glyphs/yusiotifiedC_losedL_ittle-cy.glif new file mode 100644 index 00000000..d13756b8 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/yusiotifiedC_losedL_ittle-cy.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + yusClosedlittle-cy + com.fontlab.recipe + yusClosedlittle-cy+н + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/yuslittlecyr.glif b/sources/FixelText-Black.ufo/glyphs/yuslittlecyr.glif new file mode 100644 index 00000000..7f1d5ebe --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/yuslittlecyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + v-5 + com.fontlab.metricsRight + v-5 + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/yuslittleiotifiedcyr.glif b/sources/FixelText-Black.ufo/glyphs/yuslittleiotifiedcyr.glif new file mode 100644 index 00000000..59ff6fa5 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/yuslittleiotifiedcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + v-10 + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/z.glif b/sources/FixelText-Black.ufo/glyphs/z.glif new file mode 100644 index 00000000..c5f33d6c --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/z.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/zacute.glif b/sources/FixelText-Black.ufo/glyphs/zacute.glif new file mode 100644 index 00000000..18ed9cb7 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/zacute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + z+acute + + + diff --git a/sources/FixelText-Black.ufo/glyphs/zcaron.glif b/sources/FixelText-Black.ufo/glyphs/zcaron.glif new file mode 100644 index 00000000..ad53107e --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/zcaron.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + z+caron + + + diff --git a/sources/FixelText-Black.ufo/glyphs/zdotaccent.glif b/sources/FixelText-Black.ufo/glyphs/zdotaccent.glif new file mode 100644 index 00000000..13130b34 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/zdotaccent.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + z+dotaccent + + + diff --git a/sources/FixelText-Black.ufo/glyphs/ze-cy.B_G_R_.glif b/sources/FixelText-Black.ufo/glyphs/ze-cy.B_G_R_.glif new file mode 100644 index 00000000..94b6aa64 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/ze-cy.B_G_R_.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |c-12 + com.fontlab.metricsRight + в-5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/ze-cy.glif b/sources/FixelText-Black.ufo/glyphs/ze-cy.glif new file mode 100644 index 00000000..575f5d79 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/ze-cy.glif @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |c-5 + com.fontlab.metricsRight + в + + + diff --git a/sources/FixelText-Black.ufo/glyphs/zedieresiscyr.glif b/sources/FixelText-Black.ufo/glyphs/zedieresiscyr.glif new file mode 100644 index 00000000..1f1a7bf0 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/zedieresiscyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ze-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/zemlya-cy.glif b/sources/FixelText-Black.ufo/glyphs/zemlya-cy.glif new file mode 100644 index 00000000..0ce2c000 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/zemlya-cy.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + z-10 + com.fontlab.metricsRight + z + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/zero.glif b/sources/FixelText-Black.ufo/glyphs/zero.glif new file mode 100644 index 00000000..25684c01 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/zero.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/zero.osf.glif b/sources/FixelText-Black.ufo/glyphs/zero.osf.glif new file mode 100644 index 00000000..12a86e8a --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/zero.osf.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + zero + com.fontlab.metricsRight + zero + + + diff --git a/sources/FixelText-Black.ufo/glyphs/zero.tf.glif b/sources/FixelText-Black.ufo/glyphs/zero.tf.glif new file mode 100644 index 00000000..34d1bc52 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/zero.tf.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Black.ufo/glyphs/zetailcyr.B_S_H_.glif b/sources/FixelText-Black.ufo/glyphs/zetailcyr.B_S_H_.glif new file mode 100644 index 00000000..e758fb07 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/zetailcyr.B_S_H_.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + з + com.fontlab.metricsRight + з + com.fontlab.recipe + з + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/zetailcyr.glif b/sources/FixelText-Black.ufo/glyphs/zetailcyr.glif new file mode 100644 index 00000000..33265bdc --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/zetailcyr.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + з + com.fontlab.metricsRight + з + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/zhe-cy.B_G_R_.glif b/sources/FixelText-Black.ufo/glyphs/zhe-cy.B_G_R_.glif new file mode 100644 index 00000000..a08c88b6 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/zhe-cy.B_G_R_.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |k + com.fontlab.metricsRight + k + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/zhe-cy.glif b/sources/FixelText-Black.ufo/glyphs/zhe-cy.glif new file mode 100644 index 00000000..cd056121 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/zhe-cy.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |k + com.fontlab.metricsRight + k + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/zhebrevecyr.glif b/sources/FixelText-Black.ufo/glyphs/zhebrevecyr.glif new file mode 100644 index 00000000..c9c4aa20 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/zhebrevecyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + zhe-cy+breve + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/zhedieresiscyr.glif b/sources/FixelText-Black.ufo/glyphs/zhedieresiscyr.glif new file mode 100644 index 00000000..93c2250e --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/zhedieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + zhe-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/zhetailcyr.glif b/sources/FixelText-Black.ufo/glyphs/zhetailcyr.glif new file mode 100644 index 00000000..f573b895 --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/zhetailcyr.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ж + com.fontlab.metricsRight + katailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/zhwe-cy.glif b/sources/FixelText-Black.ufo/glyphs/zhwe-cy.glif new file mode 100644 index 00000000..58221eda --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/zhwe-cy.glif @@ -0,0 +1,87 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + з + com.fontlab.metricsRight + ж + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Black.ufo/glyphs/zjekomicyr.glif b/sources/FixelText-Black.ufo/glyphs/zjekomicyr.glif new file mode 100644 index 00000000..e4579ead --- /dev/null +++ b/sources/FixelText-Black.ufo/glyphs/zjekomicyr.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + з-20 + com.fontlab.metricsRight + njekomicyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Black.ufo/groups.plist b/sources/FixelText-Black.ufo/groups.plist new file mode 100644 index 00000000..0215e532 --- /dev/null +++ b/sources/FixelText-Black.ufo/groups.plist @@ -0,0 +1,2992 @@ + + + + + accent + + grave + acute.case + grave.case + acute + + case + + arrowdown.case + arrowdown.ss01.case + arrowleft.case + arrowleft.ss01.case + arrowright.case + arrowright.ss01.case + arrowup.case + arrowup.ss01.case + backslash.case + bar.case + braceleft.case + braceright.case + bracketleft.case + bracketright.case + brokenbar.case + bullet.case + colon.case + emdash.case + endash.case + exclamdown.case + guillemetleft.case + guillemetright.case + guilsinglleft.case + guilsinglright.case + hyphen.case + parenleft.case + parenright.case + questiondown.case + semicolon.case + at.case + bracketangleleft.case + bracketangleright.case + slash.case + + case_def + + arrowdown + arrowdown.ss01 + arrowleft + arrowleft.ss01 + arrowright + arrowright.ss01 + arrowup + arrowup.ss01 + backslash + bar + braceleft + braceright + bracketleft + bracketright + brokenbar + bullet + colon + emdash + endash + exclamdown + guillemetleft + guillemetright + guilsinglleft + guilsinglright + hyphen + parenleft + parenright + questiondown + semicolon + at + bracketangleleft + bracketangleright + slash + + cpsp + + 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 + Agrave + Aacute + Acircumflex + Atilde + Adieresis + Aring + AE + Ccedilla + Egrave + Eacute + Ecircumflex + Edieresis + Igrave + Iacute + Icircumflex + Idieresis + Eth + Ntilde + Ograve + Oacute + Ocircumflex + Otilde + Odieresis + Oslash + Ugrave + Uacute + Ucircumflex + Udieresis + Yacute + Thorn + Amacron + Abreve + Aogonek + Cacute + Ccircumflex + Cdotaccent + Ccaron + Dcaron + Dcroat + Emacron + Ebreve + Edotaccent + Eogonek + Ecaron + Gcircumflex + Gbreve + Gdotaccent + Gcommaaccent + Hcircumflex + Hbar + Itilde + Imacron + Ibreve + Iogonek + Idotaccent + IJ + Jcircumflex + Kcommaaccent + Lacute + Lcommaaccent + Lcaron + Ldot + Lslash + Nacute + Ncommaaccent + Ncaron + Eng + Omacron + Obreve + Ohungarumlaut + OE + Racute + Rcommaaccent + Rcaron + Sacute + Scircumflex + Scedilla + Scaron + Tcedilla + Tcaron + Tbar + Utilde + Umacron + Ubreve + Uring + Uhungarumlaut + Uogonek + Wcircumflex + Ycircumflex + Ydieresis + Zacute + Zdotaccent + Zcaron + Schwa + Acaron + Gacute + AEacute + Oslashacute + Scommaaccent + Tcommaaccent + Delta + Omega + Iegravecyr + uniF43A + A-cy.accented + E-cy.accented + Ii-cy.accented + O-cy.accented + U-cy.accented + Yeru-cy.accented + Ereversed-cy.accented + Iu-cy.accented + Ia-cy.accented + Io-cy.accented + uniF498 + uniF49A + uniF49C + uniF49E + uniF4C6 + uniF4CC + uniF4D2 + uniF4D4 + uniF4D6 + uniF4D8 + uniF50E + uniF510 + uniF512 + uniF514 + uniF516 + uniF518 + uniF51A + uniF51C + uniF51E + Yeru-cymacron + uniF522 + uniF524 + uniF526 + uniF528 + uniF52A + uniF52C + uniF52E + uniF532 + uniF536 + uniF538 + uniF830 + uniF833 + uniF839 + uniF86F + uniF872 + uniF875 + uniF878 + uniF87B + uniF87E + Io-cy + Djecyr + Gjecyr + E-cy + Dze-cy + I-cy + Yi-cy + Jecyr + Ljecyr + Njecyr + Tshecyr + Kjecyr + Igravecyr + Ushort-cy + Dzhecyr + A-cy + Be-cy + Ve-cy + Ge-cy + De-cy + Ie-cy + Zhe-cy + Ze-cy + Ii-cy + Iishort-cy + Ka-cy + El-cy + Em-cy + En-cy + O-cy + Pe-cy + Er-cy + Es-cy + Te-cy + U-cy + Ef-cy + Ha-cy + Tse-cy + Che-cy + Sha-cy + Shcha-cy + Hardsign-cy + Yeru-cy + Softsign-cy + Ereversed-cy + Iu-cy + Ia-cy + Omegacyr + Yatcyr + Eiotifiedcyr + Yuslittlecyr + Yuslittleiotifiedcyr + Yusbigcyr + Yusbigiotifiedcyr + Ksicyr + Psicyr + Fitacyr + Izhitsacyr + Izhitsagravedblcyr + Ukcyr + Omegaroundcyr + Omegatitlocyr + Otcyr + Koppacyr + Ishortsharptailcyr + Semisoftcyr + Ertickcyr + Gheupturn-cy + Gestrokecyr + Gehookcyr + Zhetailcyr + Zetailcyr + Katailcyr + Kaverticalstrokecyr + Kastrokecyr + Kabashkcyr + Entailcyr + Engecyr + Pehookcyr + Haabkhcyr + Estailcyr + Tetailcyr + Ustraightcyr + Ustraightstrokecyr + Xatailcyr + Tetsecyr + Chetailcyr + Chevertcyr + Shhacyr + Cheabkhcyr + Cheabkhtailcyr + Palochkacyr + Zhebrevecyr + Kahookcyr + Elsharptailcyr + Enhookcyr + Ensharptailcyr + Chekhakascyr + Emsharptailcyr + Abrevecyr + Adieresiscyr + Aiecyr + Iebrevecyr + Schwacyr + Schwadieresiscyr + Zhedieresiscyr + Zedieresiscyr + Dzeabkhcyr + Imacroncyr + Idieresiscyr + Odieresiscyr + Obarcyr + Obardieresiscyr + Ereverseddieresiscyr + Umacroncyr + Udieresiscyr + Uacutedblcyr + Chedieresiscyr + Getailcyr + Ylongdieresiscyr + Gehookstrokecyr + Hahookcyr + Hastrokecyr + Dekomicyr + Djekomicyr + Zjekomicyr + Dzjekomicyr + Ljekomicyr + Njekomicyr + Sjekomicyr + Tjekomicyr + Reversedzecyr + Elhookcyr + Lhacyr + Rhacyr + Yaecyr + Qacyr + Wecyr + Kaaleutcyr + Elmiddlehookcyr + Enmiddlehookcyr + Petailcyr + Shhatailcyr + Enhookleftcyr + Dzzhecyr + Dchecyr + Eltailcyr + Wgrave + Wacute + Wdieresis + Germandbls + uni1EBC + Zemlya-cy + Dzelo-cy + DzeReversed-cy + Iota-cy + Djerv-cy + UkMonograph-cy + OmegaBroad-cy + YerNeutral-cy + YeruBackYer-cy + YatIotified-cy + YuReversed-cy + IotifiedA-cy + YusClosedlittle-cy + YusBlended-cy + YusiotifiedClosedLittle-cy + Yn-cy + TseReversed-cy + DeSoft-cy + ElSoft-cy + EmSoft-cy + OMonocular-cy + OBinocular-cy + ODoubleMonocular-cy + Dwe-cy + Dzwe-cy + Zhwe-cy + Cche-cy + Dzze-cy + TeWithMiddleHook-cy + Twe-cy + Tswe-cy + Tsse-cy + Tche-cy + Hwe-cy + Shwe-cy + DoubleO-cy + CrossedO-cy + A-cy.ss01 + A.ss01 + AE.ss01 + Aacute.ss01 + Abreve.ss01 + Acircumflex.ss01 + Adieresis.ss01 + Agrave.ss01 + Amacron.ss01 + Aogonek.ss01 + Aring.ss01 + Atilde.ss01 + Em-cy.ss01 + Eng.ss01 + G.ss01 + Gacute.ss01 + Gbreve.ss01 + Gcircumflex.ss01 + Gcommaaccent.ss01 + Gdotaccent.ss01 + Ha-cy.ss01 + Ia-cy.ss01 + J.ss01 + Jcircumflex.ss01 + K.ss01 + Ka-cy.ss01 + Kcommaaccent.ss01 + M.ss01 + N.ss01 + Nacute.ss01 + Ncaron.ss01 + Ncommaaccent.ss01 + Ntilde.ss01 + Q.ss01 + U-cy.ss01 + Ushort-cy.ss01 + V.ss01 + W.ss01 + Wacute.ss01 + Wcircumflex.ss01 + Wdieresis.ss01 + Wgrave.ss01 + X.ss01 + Y.ss01 + Yacute.ss01 + Ycircumflex.ss01 + Ydieresis.ss01 + Z.ss01 + Zacute.ss01 + Zcaron.ss01 + Zdotaccent.ss01 + Zetailcyr.BSH + Gestrokecyr.BSH + Estailcyr.BSH + Estailcyr.CHU + Zhe-cy.ss01 + + locl.SRB + + be-cy.SRB + iegravecyr.SRB + igravecyr.SRB + + loclSRB_def + + be-cy + iegravecyr + igravecyr + + locl_BGR + + De-cy.BGR + Ef-cy.BGR + El-cy.BGR + de-cy.BGR + eiotifiedcyr.BGR + el-cy.BGR + ge-cy.BGR + hardsign-cy.BGR + ii-cy.BGR + iishort-cy.BGR + iotifieda-cy.BGR + iu-cy.BGR + ka-cy.BGR + pe-cy.BGR + sha-cy.BGR + shcha-cy.BGR + softsign-cy.BGR + te-cy.BGR + tse-cy.BGR + ve-cy.BGR + yatcyr.BGR + yusbigiotifiedcyr.BGR + ze-cy.BGR + zhe-cy.BGR + + locl_def + + De-cy + Ef-cy + El-cy + de-cy + eiotifiedcyr + el-cy + ge-cy + hardsign-cy + ii-cy + iishort-cy + iotifieda-cy + iu-cy + ka-cy + pe-cy + sha-cy + shcha-cy + softsign-cy + te-cy + tse-cy + ve-cy + yatcyr + yusbigiotifiedcyr + ze-cy + zhe-cy + + pics + + neptune + leo + virgo + bishopwhite + knightwhite + rookblack + bishopblack + knightblack + heartwhite + diamondwhite-misc + spadewhite + heart + clubwhite + crossedswords + flower + floretteblack + florettewhite + floretteoutlinedpetalledblackeight + + pics_def + + A + B + C + D + E + F + G + H + I + J + K + L + M + N + O + P + Q + R + + public.kern1.A.ss012 + + A-cy.ss01 + A.ss01 + Aacute.ss01 + Abreve.ss01 + Acircumflex.ss01 + Adieresis.ss01 + Agrave.ss01 + Amacron.ss01 + Aogonek.ss01 + Aring.ss01 + Atilde.ss01 + + public.kern1.A2 + + A + A-cy + A-cy.accented + Aacute + Abreve + Abrevecyr + Acaron + Acircumflex + Adieresis + Adieresiscyr + Agrave + Amacron + Aogonek + Aring + Atilde + De-cy.BGR + Delta + El-cy.BGR + IotifiedA-cy + Yn-cy + YusClosedlittle-cy + YusiotifiedClosedLittle-cy + Yuslittlecyr + Yuslittleiotifiedcyr + uniF50E + uniF830 + + public.kern1.AE + + AE + AE.ss01 + AEacute + Aiecyr + + public.kern1.C1 + + C + Cacute + Ccaron + Ccedilla + Ccircumflex + Cdotaccent + E-cy + Eiotifiedcyr + Es-cy + Estailcyr + Estailcyr.BSH + Estailcyr.CHU + Reversedzecyr + uniF45D + uniF526 + uniF538 + uniF875 + + public.kern1.Decyr + + Chetailcyr + De-cy + Dwe-cy + Dzze-cy + Elsharptailcyr + Eltailcyr + Emsharptailcyr + Ensharptailcyr + Entailcyr + Ishortsharptailcyr + Petailcyr + Shcha-cy + Shwe-cy + Tetsecyr + Tse-cy + Tswe-cy + uniF87B + + public.kern1.E1 + + E + E-cy.accented + Eacute + Ebreve + Ecaron + Ecircumflex + Edieresis + Edotaccent + Egrave + Emacron + Eogonek + Ie-cy + Iebrevecyr + Io-cy + Io-cy.accented + Yaecyr + uni1EBC + uniF510 + uniF512 + uniF514 + uniF833 + + public.kern1.G.ss01 + + G.ss01 + Gacute.ss01 + Gbreve.ss01 + Gcircumflex.ss01 + Gcommaaccent.ss01 + Gdotaccent.ss01 + + public.kern1.G1 + + G + Gacute + Gbreve + Gcircumflex + Gcommaaccent + Gdotaccent + + public.kern1.Ge-cy + + DeSoft-cy + ElSoft-cy + EmSoft-cy + Engecyr + Ge-cy + Gehookstrokecyr + Gestrokecyr + Gestrokecyr.BSH + Getailcyr + Gheupturn-cy + Gjecyr + TseReversed-cy + YeruBackYer-cy + uniF872 + + public.kern1.H + + Eng + Eng.ss01 + H + Hbar + Hcircumflex + I + Iacute + Ibreve + Icircumflex + Idieresis + Idotaccent + Igrave + Imacron + Iogonek + Itilde + J.ss01 + Jcircumflex.ss01 + M + M.ss01 + N + N.ss01 + Nacute + Nacute.ss01 + Ncaron + Ncaron.ss01 + Ncommaaccent + Ncommaaccent.ss01 + Ntilde + Ntilde.ss01 + + public.kern1.Hardcyr + + Hardsign-cy + Ljecyr + Njecyr + Semisoftcyr + Shhacyr + Softsign-cy + YatIotified-cy + Yatcyr + YerNeutral-cy + uniF478 + + public.kern1.J1 + + J + Jcircumflex + Jecyr + + public.kern1.K + + K + K.ss01 + Ka-cy + Ka-cy.ss01 + Kaaleutcyr + Kabashkcyr + Kastrokecyr + Kcommaaccent + Kcommaaccent.ss01 + Kjecyr + uniF86F + + public.kern1.L + + L + Lacute + Lcaron + Lcommaaccent + Lslash + + public.kern1.O + + Cheabkhcyr + Cheabkhtailcyr + CrossedO-cy + D + Dcaron + Dcroat + DoubleO-cy + Ef-cy + Ef-cy.BGR + Ereversed-cy + Ereversed-cy.accented + Ereverseddieresiscyr + Eth + Fitacyr + Iu-cy + Iu-cy.accented + O + O-cy + O-cy.accented + OBinocular-cy + ODoubleMonocular-cy + OMonocular-cy + Oacute + Obarcyr + Obardieresiscyr + Obreve + Ocircumflex + Odieresis + Odieresiscyr + Ograve + Ohungarumlaut + Omacron + Omega + Omegaroundcyr + Oslash + Oslashacute + Otilde + Q + Qacyr + Schwa + Schwacyr + Schwadieresiscyr + Sjekomicyr + uniF498 + uniF49A + uniF49C + uniF4D2 + uniF4D6 + uniF518 + uniF51A + uniF51C + uniF51E + uniF522 + uniF524 + uniF52C + uniF52E + uniF839 + + public.kern1.Oslash.alt + + Ha-cy + Ha-cy.ss01 + Hahookcyr + Lhacyr + Rhacyr + X + X.ss01 + uniF878 + + public.kern1.P + + Er-cy + Ertickcyr + P + uniF4D4 + + public.kern1.R + + R + Racute + Rcaron + Rcommaaccent + + public.kern1.S1 + + Dzwe-cy + S + Sacute + Scaron + Scedilla + Scircumflex + Scommaaccent + + public.kern1.T1 + + Koppacyr + T + Tcaron + Tcedilla + Tcommaaccent + Te-cy + Tetailcyr + Tsse-cy + Twe-cy + + public.kern1.U1 + + OmegaBroad-cy + Omegacyr + Omegatitlocyr + Otcyr + Psicyr + U + Uacute + Ubreve + Ucircumflex + Udieresis + Ugrave + Uhungarumlaut + Umacron + Uogonek + Uring + Utilde + + public.kern1.Ucyr1 + + U-cy + U-cy.accented + U-cy.ss01 + Uacutedblcyr + Udieresiscyr + Umacroncyr + Ushort-cy + Ushort-cy.ss01 + uniF4CC + + public.kern1.V + + Izhitsacyr + Izhitsagravedblcyr + V + V.ss01 + + public.kern1.W.ss011 + + W.ss01 + Wacute.ss01 + Wcircumflex.ss01 + Wdieresis.ss01 + Wgrave.ss01 + + public.kern1.W1 + + W + Wacute + Wcircumflex + Wdieresis + Wecyr + Wgrave + + public.kern1.Y.ss011 + + Y.ss01 + Yacute.ss01 + Ycircumflex.ss01 + Ydieresis.ss01 + + public.kern1.Y1 + + Ustraightcyr + Ustraightstrokecyr + Y + Yacute + Ycircumflex + Ydieresis + uniF43A + + public.kern1.Yacyr + + Cche-cy + Che-cy + Chedieresiscyr + Chekhakascyr + Chevertcyr + Dekomicyr + Elhookcyr + Em-cy + En-cy + Enhookcyr + Enhookleftcyr + I-cy + Ia-cy + Ia-cy.accented + Ia-cy.ss01 + Idieresiscyr + Ii-cy + Ii-cy.accented + Iishort-cy + Imacroncyr + Palochkacyr + Pe-cy + Sha-cy + Tche-cy + Yeru-cy + Yeru-cy.accented + Yeru-cymacron + Yi-cy + Ylongdieresiscyr + YuReversed-cy + palochkacyr + uniF45E + uniF45F + uniF4C6 + uniF4D8 + uniF528 + uniF52A + uniF532 + uniF536 + uniF87E + + public.kern1.Z1 + + Dzelo-cy + Z + Z.ss01 + Zacute + Zacute.ss01 + Zcaron + Zcaron.ss01 + Zdotaccent + Zdotaccent.ss01 + Zemlya-cy + + public.kern1.Ze-cy + + Dzeabkhcyr + Ksicyr + Ze-cy + Zedieresiscyr + Zetailcyr + Zetailcyr.BSH + uniF516 + + public.kern1.Zhe-cy + + Dzzhecyr + Katailcyr + Kaverticalstrokecyr + Xatailcyr + YusBlended-cy + Yusbigcyr + Yusbigiotifiedcyr + Zhe-cy + Zhebrevecyr + Zhedieresiscyr + Zhetailcyr + Zhwe-cy + + public.kern1.a1 + + a + aacute + abreve + acaron + acircumflex + adieresis + agrave + amacron + aogonek + aring + atilde + + public.kern1.c1 + + c + cacute + ccaron + ccedilla + ccircumflex + cdotaccent + e-cy + e-cy.hist + eiotifiedcyr + eiotifiedcyr.BGR + es-cy + estailcyr + estailcyr.BSH + estailcyr.CHU + koppacyr + reversedzecyr + sjekomicyr + uni1C83 + uniF475 + uniF527 + uniF539 + uniF876 + + public.kern1.comma1 + + comma + quotedblbase + quotesinglbase + + public.kern1.copyright1 + + copyright + registered + + public.kern1.dcaron + + dcaron + dcaron.ss01 + lcaron + + public.kern1.decyr1 + + chetailcyr + dchecyr + de-cy + de-cy.ss01 + dwe-cy + dzze-cy + elsharptailcyr + eltailcyr + emsharptailcyr + ensharptailcyr + entailcyr + ishortsharptailcyr + petailcyr + shcha-cy + shcha-cy.BGR + shhatailcyr + shwe-cy + tetsecyr + tse-cy + tse-cy.BGR + tswe-cy + uniF87C + + public.kern1.e.ss011 + + e.ss01 + eacute.ss01 + ebreve.ss01 + ecaron.ss01 + ecircumflex.ss01 + edieresis.ss01 + edotaccent.ss01 + egrave.ss01 + emacron.ss01 + eogonek.ss01 + oe.ss01 + + public.kern1.e1 + + ae + aeacute + aiecyr + cheabkhcyr + cheabkhtailcyr + e + e-cy.accented + eacute + ebreve + ecaron + ecircumflex + edieresis + edotaccent + egrave + emacron + eogonek + ie-cy + iebrevecyr + iegravecyr + iegravecyr.SRB + io-cy + io-cy.accented + uni1EBD + uniF511 + uniF513 + uniF515 + uniF834 + yaecyr + + public.kern1.el-cy.BGR + + el-cy.BGR + iotifieda-cy + iotifieda-cy.BGR + uni1C81 + yn-cy + yusClosedlittle-cy + yusiotifiedClosedLittle-cy + yuslittlecyr + yuslittleiotifiedcyr + + public.kern1.emdash1 + + emdash + endash + hyphen + + public.kern1.f1 + + f + f_f + + public.kern1.fi + + f_f_i + fi + + public.kern1.five1 + + five + five.tf + + public.kern1.four1 + + four + four.tf + + public.kern1.g.ss011 + + g.ss01 + gacute.ss01 + gbreve.ss01 + gcircumflex.ss01 + gcommaaccent.ss01 + gdotaccent.ss01 + + public.kern1.g1 + + g + gacute + gbreve + gcircumflex + gcommaaccent + gdotaccent + + public.kern1.gecyr + + deSoft-cy + elSoft-cy + emSoft-cy + engecyr + ge-cy + gehookstrokecyr + gestrokecyr + gestrokecyr.BSH + getailcyr + gheupturn-cy + gjecyr + + public.kern1.guillemotright1 + + guillemetright + guilsinglright + + public.kern1.hardcyr + + Tjekomicyr + djekomicyr + elmiddlehookcyr + enmiddlehookcyr + gehookcyr + hardsign-cy + hardsign-cy.BGR + hardsign-cy.ss01 + ljecyr + ljecyr.ss01 + ljekomicyr + njecyr + njecyr.ss01 + njekomicyr + pehookcyr + semisoftcyr + softsign-cy + softsign-cy.BGR + softsign-cy.ss01 + tewithmiddlehook-cy + tjekomicyr + uni1C86 + uni1C87 + uniF479 + yatIotified-cy + yatcyr + yatcyr.BGR + yerNeutral-cy + zjekomicyr + + public.kern1.i1 + + Djekomicyr + Ljekomicyr + Njekomicyr + Zjekomicyr + i + i-cy + iacute + icircumflex + igrave + imacron + iogonek + itilde + uniF476 + yi-cy.alt + + public.kern1.icyr1 + + cche-cy + che-cy + chedieresiscyr + chekhakascyr + chevertcyr + de-cy.BGR + el-cy + elhookcyr + em-cy + en-cy + enhookcyr + enhookleftcyr + ia-cy + ia-cy.accented + idieresiscyr + igravecyr + ii-cy + ii-cy.accented + iishort-cy + imacroncyr + mu + pe-cy + psicyr + q + qacyr + sha-cy + sha-cy.BGR + tche-cy + tseReversed-cy + ubreve + uni1C85 + uniF4C7 + uniF4D9 + uniF521 + uniF529 + uniF52B + uniF533 + uniF537 + uniF873 + uniF87F + utilde + yeru-cy + yeru-cy.accented + yeru-cy.ss01 + yeruBackyer-cy + ylongdieresiscyr + yuReversed-cy + + public.kern1.j1 + + ij + j + jcircumflex + jdotless + + public.kern1.k + + k + ka-cy + ka-cy.BGR + kaaleutcyr + kabashkcyr + kastrokecyr + kcommaaccent + kgreenlandic + kjecyr + uniF870 + + public.kern1.l + + f_f_l + fl + l + lacute + lcommaaccent + + public.kern1.l.ss011 + + Iota-cy + iota-cy + l.ss01 + lacute.ss01 + lcommaaccent.ss01 + + public.kern1.n + + Djecyr + Elmiddlehookcyr + Enmiddlehookcyr + Gehookcyr + Hwe-cy + Kahookcyr + Pehookcyr + Shhatailcyr + TeWithMiddleHook-cy + Tshecyr + a-cy.accented + a-cy.ss01 + a.ss01 + aacute.ss01 + abreve.ss01 + abrevecyr + acircumflex.ss01 + adieresis.ss01 + adieresiscyr + agrave.ss01 + aogonek.ss01 + aring.ss01 + atilde.ss01 + djecyr + el-cy.ss01 + h + hbar + hcircumflex + hwe-cy + ia-cy.ss01 + iotifieda-cy.hist + m + n + nacute + napostrophe + ncaron + ncommaaccent + ntilde + pe-cy.BGR + q.ss01 + shhacyr + te-cy.BGR + tshecyr + uniF49E + uniF49F + uniF50F + uniF831 + + public.kern1.numero + + numero + numero.ss01 + + public.kern1.o1 + + b + b.ss01 + be-cy.SRB + crossedo-cy + ef-cy + er-cy + er-cy.ss01 + ereversed-cy + ereversed-cy.accented + ereverseddieresiscyr + ertickcyr + eturned + fitacyr + iu-cy + iu-cy.BGR + iu-cy.accented + o + o-cy + o-cy.accented + oBinocular-cy + oDoubleMonocular-cy + oMonocular-cy + oacute + obarcyr + obardieresiscyr + obreve + ocircumflex + odieresis + odieresiscyr + ograve + ohungarumlaut + omacron + omegaBroad-cy + omegaroundcyr + omegatitlocyr + oslashacute + otilde + p + p.ss01 + schwacyr + schwadieresiscyr + thorn + uni1C82 + uniF499 + uniF49D + uniF4D3 + uniF4D5 + uniF4D7 + uniF519 + uniF51B + uniF51D + uniF51F + uniF523 + uniF525 + uniF52D + uniF52F + uniF83A + + public.kern1.period1 + + ellipsis + period + + public.kern1.quotedbl1 + + quotedbl + quotesingle + + public.kern1.quoteleft1 + + quotedblleft + quoteleft + + public.kern1.quoteright1 + + apostrophemod + minute + quotedblright + quoteright + second + + public.kern1.s1 + + dzwe-cy + s + sacute + scaron + scedilla + scircumflex + scommaaccent + + public.kern1.t.ss011 + + t.ss01 + tcedilla.ss01 + tcommaaccent.ss01 + + public.kern1.t1 + + t + tcaron + tcedilla + tcommaaccent + + public.kern1.te-cy + + te-cy + tetailcyr + tsse-cy + twe-cy + + public.kern1.u1 + + igravecyr.SRB + ii-cy.BGR + iishort-cy.BGR + pe-cy.SRB + te-cy.SRB + u + uacute + ucircumflex + udieresis + ugrave + uhungarumlaut + umacron + uogonek + uring + + public.kern1.uni0435.ss011 + + ie-cy.ss01 + io-cy.ss01 + + public.kern1.v + + izhitsacyr + izhitsagravedblcyr + v + + public.kern1.w1 + + omegacyr + otcyr + w + wacute + wcircumflex + wdieresis + wecyr + wgrave + + public.kern1.x + + ha-cy + hahookcyr + lhacyr + rhacyr + uniF879 + x + + public.kern1.y1 + + Ukcyr + u-cy + u-cy.accented + uacutedblcyr + udieresiscyr + ukcyr + umacroncyr + uniF43B + uniF4CD + ushort-cy + ustraightcyr + ustraightstrokecyr + y + yacute + ycircumflex + ydieresis + + public.kern1.z1 + + dzelo-cy + z + zacute + zcaron + zdotaccent + zemlya-cy + + public.kern1.ze-cy + + dzeabkhcyr + ksicyr + uniF517 + ze-cy + ze-cy.BGR + zedieresiscyr + zetailcyr + zetailcyr.BSH + + public.kern1.zhe-cy + + dzzhecyr + katailcyr + kaverticalstrokecyr + xatailcyr + yusBlended-cy + yusbigcyr + yusbigiotifiedcyr + yusbigiotifiedcyr.BGR + zhe-cy + zhe-cy.BGR + zhebrevecyr + zhedieresiscyr + zhetailcyr + zhwe-cy + + public.kern2.A.ss01 + + A.ss01 + AE.ss01 + Aacute.ss01 + Acircumflex.ss01 + Adieresis.ss01 + Agrave.ss01 + Amacron.ss01 + Aogonek.ss01 + Atilde.ss01 + + public.kern2.A.ss012 + + A-cy.ss01 + Abreve.ss01 + Aring.ss01 + + public.kern2.A2 + + A + A-cy + A-cy.accented + AE + AEacute + Aacute + Abreve + Abrevecyr + Acaron + Acircumflex + Adieresis + Adieresiscyr + Agrave + Aiecyr + Amacron + Aogonek + Aring + Atilde + De-cy.BGR + Delta + El-cy.BGR + Yn-cy + YusClosedlittle-cy + Yuslittlecyr + uniF50E + uniF830 + + public.kern2.B + + B + D + Dcaron + E + Eacute + Ecaron + Ecircumflex + Edieresis + Edotaccent + Egrave + Emacron + Eogonek + F + H + Hbar + Hcircumflex + I + Iacute + Ibreve + Icircumflex + Idieresis + Idotaccent + Igrave + Imacron + Iogonek + Itilde + K + K.ss01 + Kcommaaccent + Kcommaaccent.ss01 + L + Lacute + Lcaron + Lcommaaccent + Ldot + M + N + N.ss01 + Nacute + Nacute.ss01 + Ncaron + Ncaron.ss01 + Ncommaaccent + Ncommaaccent.ss01 + Ntilde + Ntilde.ss01 + P + R + Racute + Rcaron + Rcommaaccent + Thorn + uni1EBC + + public.kern2.Che-cy + + Cche-cy + Che-cy + Chedieresiscyr + Chekhakascyr + Chetailcyr + Chevertcyr + uniF4C6 + uniF87E + + public.kern2.De-cy + + Dchecyr + De-cy + DeSoft-cy + Dwe-cy + Dzze-cy + Dzzhecyr + TseReversed-cy + + public.kern2.El-cy + + El-cy + ElSoft-cy + Elhookcyr + Elmiddlehookcyr + Elsharptailcyr + Eltailcyr + Lhacyr + Ljekomicyr + uniF872 + + public.kern2.Eth + + Dcroat + Eth + Gestrokecyr + + public.kern2.G + + C + Cacute + Ccaron + Ccedilla + Ccircumflex + Cdotaccent + CrossedO-cy + DoubleO-cy + E-cy + Ef-cy.BGR + Es-cy + Estailcyr + Estailcyr.BSH + Estailcyr.CHU + Fitacyr + G + G.ss01 + Gacute + Gacute.ss01 + Gbreve + Gbreve.ss01 + Gcircumflex + Gcircumflex.ss01 + Gcommaaccent + Gcommaaccent.ss01 + Gdotaccent + Gdotaccent.ss01 + Haabkhcyr + Koppacyr + O + O-cy + O-cy.accented + OBinocular-cy + ODoubleMonocular-cy + OE + OMonocular-cy + Oacute + Obarcyr + Obardieresiscyr + Obreve + Ocircumflex + Odieresis + Odieresiscyr + Ograve + Ohungarumlaut + Omacron + Omegaroundcyr + Oslash + Otilde + Q + Q.ss01 + Qacyr + Schwacyr + Schwadieresiscyr + Sjekomicyr + Ukcyr + YuReversed-cy + uniF45D + uniF49A + uniF49C + uniF4D2 + uniF518 + uniF51A + uniF51C + uniF51E + uniF526 + uniF839 + uniF875 + + public.kern2.Gecyr + + Be-cy + E-cy.accented + Eiotifiedcyr + Em-cy + EmSoft-cy + Emsharptailcyr + En-cy + Engecyr + Enhookcyr + Enhookleftcyr + Enmiddlehookcyr + Ensharptailcyr + Entailcyr + Er-cy + Ertickcyr + Gehookcyr + Gestrokecyr.BSH + Getailcyr + Gheupturn-cy + Gjecyr + Hwe-cy + I-cy + Iebrevecyr + Ii-cy + Ii-cy.accented + Io-cy.accented + IotifiedA-cy + Iu-cy.accented + Ka-cy + Kaaleutcyr + Kahookcyr + Katailcyr + Kaverticalstrokecyr + Kjecyr + Njekomicyr + Palochkacyr + Pe-cy + Pehookcyr + Petailcyr + Rhacyr + Shhacyr + Shhatailcyr + Shwe-cy + Tswe-cy + Ve-cy + Yeru-cy.accented + Yeru-cymacron + Yi-cy + Ylongdieresiscyr + Yusbigiotifiedcyr + YusiotifiedClosedLittle-cy + Yuslittleiotifiedcyr + palochkacyr + uniF45E + uniF45F + uniF498 + uniF4D4 + uniF510 + uniF512 + uniF514 + uniF52C + uniF52E + uniF532 + uniF536 + uniF833 + uniF86F + uniF87B + + public.kern2.Ia-cy + + Ia-cy + Ia-cy.accented + Yaecyr + uniF4D8 + uniF528 + uniF52A + + public.kern2.Iishort-cy + + Idieresiscyr + Iishort-cy + Imacroncyr + Ishortsharptailcyr + + public.kern2.J + + J + Jcircumflex + Jecyr + + public.kern2.Oslash.alt + + Ha-cy.ss01 + Hahookcyr + X + X.ss01 + Xatailcyr + uniF878 + + public.kern2.S + + Dzwe-cy + S + Sacute + Scaron + Scedilla + Scircumflex + Scommaaccent + + public.kern2.T + + Djecyr + T + Tcaron + Tcedilla + Tche-cy + Tcommaaccent + Te-cy + TeWithMiddleHook-cy + Tetailcyr + Tetsecyr + Tjekomicyr + Tshecyr + Tsse-cy + Twe-cy + + public.kern2.U + + Iota-cy + OmegaBroad-cy + Omegacyr + Omegatitlocyr + Otcyr + Psicyr + U + Uacute + Ubreve + Ucircumflex + Udieresis + Ugrave + Uhungarumlaut + Umacron + Uogonek + Uring + Utilde + + public.kern2.Ucyr.ss01 + + U-cy.accented + U-cy.ss01 + Uacutedblcyr + Udieresiscyr + Umacroncyr + Ushort-cy.ss01 + uniF4CC + + public.kern2.V + + Izhitsacyr + Izhitsagravedblcyr + V + V.ss01 + + public.kern2.W + + W + W.ss01 + Wacute + Wacute.ss01 + Wcircumflex + Wcircumflex.ss01 + Wdieresis + Wdieresis.ss01 + Wecyr + Wgrave + Wgrave.ss01 + + public.kern2.Y + + Ustraightcyr + Ustraightstrokecyr + Y + Y.ss01 + Yacute + Yacute.ss01 + Ycircumflex + Ycircumflex.ss01 + Ydieresis + Ydieresis.ss01 + uniF43A + + public.kern2.Z + + Dzelo-cy + Z + Z.ss01 + Zacute + Zacute.ss01 + Zcaron + Zcaron.ss01 + Zdotaccent + Zdotaccent.ss01 + Zemlya-cy + + public.kern2.Ze-cy1 + + Dzeabkhcyr + Ksicyr + Ze-cy + Zedieresiscyr + Zetailcyr + Zetailcyr.BSH + Zhwe-cy + uniF516 + + public.kern2.Zhe-cy1 + + YusBlended-cy + Yusbigcyr + Zhe-cy + Zhebrevecyr + Zhedieresiscyr + Zhetailcyr + + public.kern2.a + + a + a-cy + a-cy.accented + aacute + abreve + abrevecyr + acaron + acircumflex + adieresis + adieresiscyr + ae + aeacute + agrave + aiecyr + amacron + aogonek + aring + atilde + uniF50F + uniF831 + + public.kern2.acute.case + + acute.case + hungarumlaut.case + + public.kern2.che-cy + + cche-cy + che-cy + chedieresiscyr + chekhakascyr + chetailcyr + chevertcyr + uniF4C7 + uniF87F + + public.kern2.comma + + comma + quotedblbase + quotesinglbase + + public.kern2.copyright + + copyright + registered + + public.kern2.decyr.ss01 + + de-cy.ss01 + deSoft-cy + dwe-cy + dzze-cy + dzzhecyr + tseReversed-cy + + public.kern2.el-cy + + el-cy + el-cy.ss01 + elSoft-cy + elhookcyr + elmiddlehookcyr + elsharptailcyr + eltailcyr + lhacyr + ljecyr.ss01 + ljekomicyr + uniF873 + + public.kern2.el-cy.BGR1 + + el-cy.BGR + uni1C81 + yn-cy + yusClosedlittle-cy + yuslittlecyr + + public.kern2.emdash + + emdash + endash + hyphen + + public.kern2.f + + f + f_f + f_f_i + f_f_l + fi + fl + gestrokecyr + + public.kern2.f_f.ss01 + + f_f.ss01 + f_f_i.ss01 + f_f_l.ss01 + + public.kern2.fi.ss01 + + fi.ss01 + fl.ss01 + + public.kern2.five + + five + five.tf + + public.kern2.four + + four + four.tf + + public.kern2.g + + g + gacute + gbreve + gcircumflex + gcommaaccent + gdotaccent + + public.kern2.g.ss01 + + g.ss01 + gacute.ss01 + gbreve.ss01 + gcircumflex.ss01 + gcommaaccent.ss01 + gdotaccent.ss01 + + public.kern2.guillemotleft + + guillemetleft + guilsinglleft + + public.kern2.guillemotright + + guillemetright + guilsinglright + + public.kern2.h + + eiotifiedcyr.BGR + h + hcircumflex + hwe-cy + iotifieda-cy.BGR + iu-cy.BGR + k + ka-cy.BGR + kcommaaccent + l + lacute + lcaron + lcommaaccent + ldot + shhacyr + shhatailcyr + ve-cy.BGR + yatcyr.BGR + yusbigiotifiedcyr.BGR + + public.kern2.i1 + + i + i-cy + iacute + icircumflex + igrave + imacron + iogonek + itilde + uniF476 + yi-cy.alt + + public.kern2.ia-cy + + ia-cy + ia-cy.accented + ia-cy.ss01 + uniF4D9 + uniF529 + uniF52B + yaecyr + + public.kern2.j + + enhookleftcyr + j + jcircumflex + jdotless + + public.kern2.l.ss01 + + l.ss01 + lacute.ss01 + lcaron.ss01 + lcommaaccent.ss01 + ldot.ss01 + + public.kern2.m + + eiotifiedcyr + em-cy + emSoft-cy + emsharptailcyr + en-cy + eng + engecyr + enhookcyr + enmiddlehookcyr + ensharptailcyr + entailcyr + er-cy + er-cy.ss01 + ertickcyr + ge-cy + gehookcyr + gehookstrokecyr + gestrokecyr.BSH + getailcyr + gheupturn-cy + gjecyr + idieresiscyr + idotless + igravecyr + ii-cy + ii-cy.accented + iishort-cy + imacroncyr + iotifieda-cy + ishortsharptailcyr + iu-cy + iu-cy.accented + ka-cy + kaaleutcyr + kahookcyr + katailcyr + kaverticalstrokecyr + kgreenlandic + kjecyr + m + mu + n + nacute + ncaron + ncommaaccent + njecyr.ss01 + njekomicyr + ntilde + p + p.ss01 + pe-cy + pe-cy.BGR + pehookcyr + petailcyr + psicyr + r + racute + rcaron + rcommaaccent + rhacyr + sha-cy + shcha-cy + shwe-cy + softsign-cy + softsign-cy.BGR + softsign-cy.ss01 + te-cy.BGR + tse-cy + tswe-cy + uni1C85 + uniF499 + uniF4D5 + uniF521 + uniF52D + uniF52F + uniF533 + uniF537 + uniF870 + uniF87C + ve-cy + ve-cy.ss01 + yatIotified-cy + yeru-cy + yeru-cy.accented + yeru-cy.ss01 + ylongdieresiscyr + yusbigiotifiedcyr + yusiotifiedClosedLittle-cy + yuslittleiotifiedcyr + + public.kern2.o + + Dekomicyr + Djekomicyr + a-cy.ss01 + a.ss01 + aacute.ss01 + abreve.ss01 + acircumflex.ss01 + adieresis.ss01 + agrave.ss01 + amacron.ss01 + aogonek.ss01 + aring.ss01 + atilde.ss01 + c + cacute + ccaron + ccedilla + ccircumflex + cdotaccent + cent + crossedo-cy + d + d.ss01 + dcaron + dcaron.ss01 + dcroat + dcroat.ss01 + de-cy.BGR + dekomicyr + djekomicyr + e + e-cy + e-cy.accented + e-cy.hist + e.ss01 + eacute + eacute.ss01 + ebreve + ebreve.ss01 + ecaron + ecaron.ss01 + ecircumflex + ecircumflex.ss01 + edieresis + edieresis.ss01 + edotaccent + edotaccent.ss01 + ef-cy + egrave + egrave.ss01 + emacron + emacron.ss01 + eogonek + eogonek.ss01 + es-cy + estailcyr + estailcyr.BSH + estailcyr.CHU + eth + eturned + fitacyr + haabkhcyr + ie-cy + ie-cy.ss01 + iebrevecyr + iegravecyr + iegravecyr.SRB + io-cy + io-cy.accented + io-cy.ss01 + koppacyr + o + o-cy + o-cy.accented + oBinocular-cy + oDoubleMonocular-cy + oMonocular-cy + oacute + obarcyr + obardieresiscyr + obreve + ocircumflex + odieresis + odieresiscyr + oe.ss01 + ograve + ohungarumlaut + omacron + omegaBroad-cy + omegaroundcyr + omegatitlocyr + oslashacute + otilde + q + q.ss01 + qacyr + schwacyr + schwadieresiscyr + sjekomicyr + ukcyr + uni1C82 + uni1C83 + uni1EBD + uniF475 + uniF49D + uniF4D3 + uniF511 + uniF513 + uniF515 + uniF519 + uniF51B + uniF51D + uniF51F + uniF527 + uniF834 + uniF83A + uniF876 + yuReversed-cy + + public.kern2.percent + + percent + perthousand + + public.kern2.period + + ellipsis + period + + public.kern2.quotedbl + + quotedbl + quotesingle + + public.kern2.quoteleft + + quotedblleft + quoteleft + + public.kern2.quoteright + + apostrophemod + minute + quotedblright + quoteright + second + + public.kern2.s + + dzwe-cy + s + sacute + scaron + scedilla + scircumflex + scommaaccent + + public.kern2.t + + t + t.ss01 + tbar.ss01 + tcaron + tcaron.ss01 + tcedilla + tcedilla.ss01 + tcommaaccent + tcommaaccent.ss01 + + public.kern2.tecyr + + tche-cy + te-cy.ss01 + tetailcyr + tetsecyr + tewithmiddlehook-cy + tjekomicyr + tsse-cy + twe-cy + + public.kern2.u + + igravecyr.SRB + ii-cy.BGR + iishort-cy.BGR + iota-cy + pe-cy.SRB + sha-cy.BGR + shcha-cy.BGR + te-cy.SRB + tse-cy.BGR + u + uacute + ubreve + ucircumflex + udieresis + ugrave + uhungarumlaut + umacron + uogonek + uring + utilde + + public.kern2.v1 + + izhitsacyr + izhitsagravedblcyr + v + + public.kern2.w + + omegacyr + otcyr + w + wacute + wcircumflex + wdieresis + wecyr + wgrave + + public.kern2.x + + ha-cy + hahookcyr + uniF879 + x + + public.kern2.y + + u-cy + u-cy.accented + uacutedblcyr + udieresiscyr + umacroncyr + uniF43B + uniF4CD + ustraightcyr + ustraightstrokecyr + y + yacute + ycircumflex + ydieresis + + public.kern2.z + + dzelo-cy + z + zacute + zcaron + zdotaccent + zemlya-cy + + public.kern2.ze-cy1 + + dzeabkhcyr + ksicyr + uniF517 + ze-cy + ze-cy.BGR + zedieresiscyr + zetailcyr + zetailcyr.BSH + zhwe-cy + + public.kern2.zero + + uni1C80 + zero + zero.tf + + public.kern2.zhe-cy1 + + xatailcyr + yusBlended-cy + yusbigcyr + zhe-cy + zhe-cy.BGR + zhebrevecyr + zhedieresiscyr + zhetailcyr + + ss01 + + A-cy.ss01 + A.ss01 + AE.ss01 + Aacute.ss01 + Abreve.ss01 + Acircumflex.ss01 + Adieresis.ss01 + Agrave.ss01 + Amacron.ss01 + Aogonek.ss01 + Aring.ss01 + Atilde.ss01 + Em-cy.ss01 + Eng.ss01 + G.ss01 + Gacute.ss01 + Gbreve.ss01 + Gcircumflex.ss01 + Gcommaaccent.ss01 + Gdotaccent.ss01 + Ha-cy.ss01 + Ia-cy.ss01 + J.ss01 + Jcircumflex.ss01 + K.ss01 + Ka-cy.ss01 + Kcommaaccent.ss01 + M.ss01 + N.ss01 + Nacute.ss01 + Ncaron.ss01 + Ncommaaccent.ss01 + Ntilde.ss01 + Q.ss01 + U-cy.ss01 + Ushort-cy.ss01 + V.ss01 + W.ss01 + Wacute.ss01 + Wcircumflex.ss01 + Wdieresis.ss01 + Wgrave.ss01 + X.ss01 + Y.ss01 + Yacute.ss01 + Ycircumflex.ss01 + Ydieresis.ss01 + Z.ss01 + Zacute.ss01 + Zcaron.ss01 + Zdotaccent.ss01 + Zhe-cy.ss01 + a-cy.ss01 + a.ss01 + aacute.ss01 + abreve.ss01 + acircumflex.ss01 + adieresis.ss01 + ae.ss01 + agrave.ss01 + amacron.ss01 + aogonek.ss01 + aring.ss01 + arrowdown.ss01 + arrowdown.ss01.case + arrowleft.ss01 + arrowleft.ss01.case + arrowright.ss01 + arrowright.ss01.case + arrowup.ss01 + arrowup.ss01.case + atilde.ss01 + b.ss01 + d.ss01 + dcaron.ss01 + dcroat.ss01 + de-cy.ss01 + e.ss01 + eacute.ss01 + ebreve.ss01 + ecaron.ss01 + ecircumflex.ss01 + edieresis.ss01 + edotaccent.ss01 + egrave.ss01 + el-cy.ss01 + emacron.ss01 + eogonek.ss01 + er-cy.ss01 + f.ss01 + f_f.ss01 + f_f_i.ss01 + f_f_l.ss01 + fi.ss01 + fl.ss01 + g.ss01 + gacute.ss01 + gbreve.ss01 + gcircumflex.ss01 + gcommaaccent.ss01 + gdotaccent.ss01 + germandbls.ss01 + hardsign-cy.ss01 + ia-cy.ss01 + ie-cy.ss01 + io-cy.ss01 + l.ss01 + lacute.ss01 + lcaron.ss01 + lcommaaccent.ss01 + ldot.ss01 + ljecyr.ss01 + lslash.ss01 + njecyr.ss01 + numero.ss01 + oe.ss01 + p.ss01 + q.ss01 + softsign-cy.ss01 + t.ss01 + tbar.ss01 + tcaron.ss01 + tcedilla.ss01 + tcommaaccent.ss01 + te-cy.ss01 + ve-cy.ss01 + yen.ss01 + yeru-cy.ss01 + + ss01_def + + A-cy + A + AE + Aacute + Abreve + Acircumflex + Adieresis + Agrave + Amacron + Aogonek + Aring + Atilde + Em-cy + Eng + G + Gacute + Gbreve + Gcircumflex + Gcommaaccent + Gdotaccent + Ha-cy + Ia-cy + J + Jcircumflex + K + Ka-cy + Kcommaaccent + M + N + Nacute + Ncaron + Ncommaaccent + Ntilde + Q + U-cy + Ushort-cy + V + W + Wacute + Wcircumflex + Wdieresis + Wgrave + X + Y + Yacute + Ycircumflex + Ydieresis + Z + Zacute + Zcaron + Zdotaccent + Zhe-cy + a-cy + a + aacute + abreve + acircumflex + adieresis + ae + agrave + amacron + aogonek + aring + arrowdown + arrowdown.case + arrowleft + arrowleft.case + arrowright + arrowright.case + arrowup + arrowup.case + atilde + b + d + dcaron + dcroat + de-cy + e + eacute + ebreve + ecaron + ecircumflex + edieresis + edotaccent + egrave + el-cy + emacron + eogonek + er-cy + f + f_f + f_f_i + f_f_l + fi + fl + g + gacute + gbreve + gcircumflex + gcommaaccent + gdotaccent + germandbls + hardsign-cy + ia-cy + ie-cy + io-cy + l + lacute + lcaron + lcommaaccent + ldot + ljecyr + lslash + njecyr + numero + oe + p + q + softsign-cy + t + tbar + tcaron + tcedilla + tcommaaccent + te-cy + ve-cy + yen + yeru-cy + + + diff --git a/sources/FixelText-Black.ufo/kerning.plist b/sources/FixelText-Black.ufo/kerning.plist new file mode 100644 index 00000000..f783484c --- /dev/null +++ b/sources/FixelText-Black.ufo/kerning.plist @@ -0,0 +1,2421 @@ + + + + + Zhe-cy + + public.kern2.G + -50 + + space + + public.kern2.Y + -120 + + uni1C82 + + public.kern2.y + -40 + + public.kern1.A.ss012 + + public.kern2.G + -30 + public.kern2.T + -70 + public.kern2.U + -20 + public.kern2.Ucyr.ss01 + -60 + public.kern2.V + -60 + public.kern2.W + -50 + public.kern2.Y + -90 + public.kern2.a + -20 + public.kern2.decyr.ss01 + 10 + public.kern2.emdash + -20 + public.kern2.l.ss01 + -20 + public.kern2.m + -10 + public.kern2.o + -20 + public.kern2.quotedbl + -50 + public.kern2.quoteright + -50 + public.kern2.t + -40 + public.kern2.tecyr + -50 + public.kern2.u + -10 + public.kern2.w + -20 + public.kern2.x + 10 + public.kern2.y + -50 + + public.kern1.A2 + + public.kern2.A2 + 30 + public.kern2.G + -30 + public.kern2.J + 40 + public.kern2.Oslash.alt + 20 + public.kern2.S + 15 + public.kern2.T + -70 + public.kern2.U + -20 + public.kern2.Ucyr.ss01 + -50 + public.kern2.V + -54 + public.kern2.W + -55 + public.kern2.Y + -90 + public.kern2.Z + 40 + public.kern2.comma + 20 + public.kern2.g + 20 + public.kern2.j + 10 + public.kern2.o + -10 + public.kern2.period + 40 + public.kern2.quotedbl + -50 + public.kern2.quoteright + -50 + public.kern2.t + -20 + public.kern2.tecyr + -30 + public.kern2.w + -20 + public.kern2.x + 10 + public.kern2.y + -30 + public.kern2.z + 10 + + public.kern1.C1 + + public.kern2.A2 + -10 + public.kern2.B + -10 + public.kern2.G + -35 + public.kern2.J + 20 + public.kern2.Oslash.alt + -20 + public.kern2.S + -10 + public.kern2.U + -10 + public.kern2.Ucyr.ss01 + -20 + public.kern2.V + -20 + public.kern2.W + -20 + public.kern2.Y + -20 + public.kern2.Z + 10 + public.kern2.comma + -10 + public.kern2.emdash + -30 + public.kern2.f + -10 + public.kern2.g + -20 + public.kern2.g.ss01 + -20 + public.kern2.o + -20 + public.kern2.quoteright + -30 + public.kern2.s + -10 + public.kern2.t + -10 + public.kern2.tecyr + -10 + public.kern2.u + -10 + public.kern2.w + -20 + public.kern2.x + -20 + public.kern2.y + -30 + + public.kern1.Decyr + + public.kern2.A.ss012 + 20 + public.kern2.A2 + 10 + public.kern2.G + -10 + public.kern2.T + -35 + public.kern2.Ucyr.ss01 + -30 + public.kern2.comma + 40 + public.kern2.decyr.ss01 + 40 + public.kern2.emdash + -20 + public.kern2.o + -10 + public.kern2.period + 20 + public.kern2.quoteright + -30 + public.kern2.tecyr + -30 + public.kern2.y + -20 + + public.kern1.E1 + + public.kern2.G + -10 + public.kern2.J + 10 + public.kern2.a + -10 + public.kern2.f + -20 + public.kern2.g.ss01 + -10 + public.kern2.i1 + 10 + public.kern2.j + -10 + public.kern2.o + -20 + public.kern2.quoteright + -10 + public.kern2.s + -10 + public.kern2.t + -10 + public.kern2.w + -30 + public.kern2.y + -30 + + public.kern1.G.ss01 + + public.kern2.A.ss01 + 10 + public.kern2.G + -20 + public.kern2.Oslash.alt + -10 + public.kern2.T + -20 + public.kern2.V + -50 + public.kern2.W + -40 + public.kern2.Y + -60 + public.kern2.Z + -10 + public.kern2.comma + -20 + public.kern2.emdash + -10 + public.kern2.o + -10 + public.kern2.quoteright + -30 + public.kern2.t + -10 + public.kern2.w + -30 + public.kern2.y + -30 + + public.kern1.G1 + + public.kern2.B + 10 + public.kern2.J + 20 + public.kern2.T + -20 + public.kern2.V + -50 + public.kern2.W + -40 + public.kern2.Y + -50 + public.kern2.period + 10 + public.kern2.quotedbl + -20 + public.kern2.quoteright + -10 + public.kern2.w + -10 + public.kern2.y + -20 + + public.kern1.Ge-cy + + public.kern2.A.ss012 + -60 + public.kern2.A2 + -70 + public.kern2.G + -20 + public.kern2.T + 10 + public.kern2.a + -100 + public.kern2.comma + -80 + public.kern2.decyr.ss01 + -40 + public.kern2.emdash + -70 + public.kern2.guillemotright + -40 + public.kern2.i1 + 40 + public.kern2.m + -40 + public.kern2.o + -100 + public.kern2.period + -120 + + public.kern1.H + + public.kern2.B + 1 + public.kern2.Gecyr + 1 + public.kern2.i1 + 10 + public.kern2.j + 10 + + public.kern1.Hardcyr + + public.kern2.A.ss012 + 20 + public.kern2.Oslash.alt + -20 + public.kern2.T + -90 + public.kern2.Ucyr.ss01 + -70 + public.kern2.comma + -30 + public.kern2.quotedbl + -120 + public.kern2.quoteright + -20 + public.kern2.tecyr + -20 + public.kern2.x + -30 + public.kern2.y + -30 + + public.kern1.J1 + + public.kern2.A.ss012 + 10 + public.kern2.A2 + -10 + public.kern2.J + 10 + public.kern2.S + 5 + public.kern2.comma + -30 + public.kern2.i1 + 10 + public.kern2.s + -10 + + public.kern1.K + + public.kern2.A2 + 20 + public.kern2.G + -70 + public.kern2.J + 10 + public.kern2.S + -10 + public.kern2.a + -10 + public.kern2.comma + 10 + public.kern2.emdash + -40 + public.kern2.f + -30 + public.kern2.i1 + 40 + public.kern2.l.ss01 + -10 + public.kern2.o + -40 + public.kern2.quoteright + -40 + public.kern2.t + -40 + public.kern2.tecyr + -80 + public.kern2.u + -30 + public.kern2.w + -30 + public.kern2.y + -40 + + public.kern1.L + + public.kern2.A.ss01 + 20 + public.kern2.A2 + 30 + public.kern2.G + -30 + public.kern2.J + 20 + public.kern2.T + -100 + public.kern2.U + -20 + public.kern2.V + -100 + public.kern2.W + -50 + public.kern2.Y + -130 + public.kern2.Z + 10 + public.kern2.a + -10 + public.kern2.emdash + -20 + public.kern2.guillemotleft + -30 + public.kern2.j + 10 + public.kern2.o + -10 + public.kern2.period + 20 + public.kern2.quotedbl + -90 + public.kern2.quoteright + -90 + public.kern2.t + -30 + public.kern2.u + -10 + public.kern2.w + -50 + public.kern2.x + -10 + public.kern2.y + -70 + public.kern2.z + 10 + + public.kern1.O + + Zhe-cy + -50 + public.kern2.A.ss01 + -10 + public.kern2.A.ss012 + -15 + public.kern2.A2 + -30 + public.kern2.J + -20 + public.kern2.Oslash.alt + -50 + public.kern2.S + -10 + public.kern2.T + -30 + public.kern2.Ucyr.ss01 + -30 + public.kern2.V + -40 + public.kern2.W + -20 + public.kern2.Y + -70 + public.kern2.Z + -30 + public.kern2.a + -10 + public.kern2.comma + -50 + public.kern2.decyr.ss01 + -10 + public.kern2.period + -40 + public.kern2.quotedbl + -10 + public.kern2.quoteright + 10 + public.kern2.s + -10 + public.kern2.tecyr + 10 + public.kern2.w + -10 + public.kern2.x + -20 + public.kern2.y + -10 + + public.kern1.Oslash.alt + + public.kern2.A.ss01 + 10 + public.kern2.A.ss012 + 10 + public.kern2.A2 + 20 + public.kern2.G + -50 + public.kern2.J + 30 + public.kern2.S + -10 + public.kern2.Ucyr.ss01 + 10 + public.kern2.W + 10 + public.kern2.a + -10 + public.kern2.comma + 10 + public.kern2.decyr.ss01 + 10 + public.kern2.emdash + -30 + public.kern2.i1 + 40 + public.kern2.o + -30 + public.kern2.quotedbl + 10 + public.kern2.quoteright + -60 + public.kern2.t + -20 + public.kern2.tecyr + -50 + public.kern2.u + -10 + public.kern2.w + -20 + public.kern2.x + 10 + public.kern2.y + -30 + + public.kern1.P + + public.kern2.A.ss01 + -40 + public.kern2.A.ss012 + -40 + public.kern2.A2 + -53 + public.kern2.J + -55 + public.kern2.Oslash.alt + -50 + public.kern2.T + -5 + public.kern2.Ucyr.ss01 + -30 + public.kern2.V + -10 + public.kern2.Y + -30 + public.kern2.Z + -20 + public.kern2.a + -20 + public.kern2.comma + -100 + public.kern2.decyr.ss01 + -40 + public.kern2.emdash + -20 + public.kern2.g + -10 + public.kern2.g.ss01 + -10 + public.kern2.j + -10 + public.kern2.o + -20 + public.kern2.period + -150 + public.kern2.quoteright + 10 + public.kern2.s + -10 + public.kern2.t + 20 + public.kern2.tecyr + 10 + + public.kern1.R + + public.kern2.A.ss01 + 12 + public.kern2.G + -30 + public.kern2.S + -20 + public.kern2.T + -30 + public.kern2.U + -10 + public.kern2.V + -30 + public.kern2.W + -10 + public.kern2.Y + -40 + public.kern2.emdash + -30 + public.kern2.f + -10 + public.kern2.m + -10 + public.kern2.o + -20 + public.kern2.period + 10 + public.kern2.quoteright + -10 + public.kern2.t + -10 + public.kern2.u + -10 + public.kern2.w + -10 + + public.kern1.S1 + + public.kern2.A.ss01 + 20 + public.kern2.G + -1 + public.kern2.J + 20 + public.kern2.Oslash.alt + -20 + public.kern2.T + -20 + public.kern2.V + -20 + public.kern2.W + -20 + public.kern2.Y + -30 + public.kern2.emdash + 10 + public.kern2.f + -20 + public.kern2.i1 + 10 + public.kern2.j + -10 + public.kern2.o + 10 + public.kern2.quotedbl + -20 + public.kern2.quoteright + -10 + public.kern2.w + -15 + public.kern2.x + -20 + public.kern2.y + -25 + + public.kern1.T1 + + public.kern2.A.ss01 + -50 + public.kern2.A.ss012 + -60 + public.kern2.A2 + -70 + public.kern2.G + -30 + public.kern2.J + -60 + public.kern2.T + 20 + public.kern2.Ucyr.ss01 + 10 + public.kern2.W + 10 + public.kern2.a + -60 + public.kern2.comma + -80 + public.kern2.decyr.ss01 + -60 + public.kern2.emdash + -90 + public.kern2.f + -10 + public.kern2.g + -70 + public.kern2.g.ss01 + -70 + public.kern2.guillemotleft + -60 + public.kern2.guillemotright + -60 + public.kern2.i1 + -15 + public.kern2.j + -20 + public.kern2.m + -30 + public.kern2.o + -80 + public.kern2.period + -110 + public.kern2.quotedbl + 30 + public.kern2.quoteright + -30 + public.kern2.s + -55 + public.kern2.tecyr + -20 + public.kern2.u + -20 + public.kern2.z + -10 + + public.kern1.U1 + + public.kern2.A.ss01 + -10 + public.kern2.A2 + -20 + public.kern2.J + -10 + public.kern2.Z + -10 + public.kern2.comma + -30 + public.kern2.i1 + 10 + public.kern2.period + -10 + public.kern2.quoteright + -10 + public.kern2.z + -10 + + public.kern1.Ucyr1 + + public.kern2.A.ss012 + -60 + public.kern2.A2 + -70 + public.kern2.G + -30 + public.kern2.T + 10 + public.kern2.a + -60 + public.kern2.comma + -80 + public.kern2.decyr.ss01 + -50 + public.kern2.emdash + -50 + public.kern2.guillemotright + -60 + public.kern2.i1 + 50 + public.kern2.m + -40 + public.kern2.o + -60 + public.kern2.period + -110 + public.kern2.tecyr + -10 + public.kern2.x + -30 + public.kern2.y + -30 + + public.kern1.V + + public.kern2.A.ss01 + -50 + public.kern2.A.ss012 + -60 + public.kern2.A2 + -65 + public.kern2.G + -40 + public.kern2.J + -60 + public.kern2.S + -10 + public.kern2.W + 10 + public.kern2.Y + 10 + public.kern2.a + -50 + public.kern2.comma + -80 + public.kern2.emdash + -80 + public.kern2.g + -30 + public.kern2.g.ss01 + -60 + public.kern2.guillemotleft + -50 + public.kern2.guillemotright + -30 + public.kern2.i1 + 50 + public.kern2.j + -10 + public.kern2.m + -50 + public.kern2.o + -65 + public.kern2.period + -110 + public.kern2.quotedbl + 20 + public.kern2.quoteright + -10 + public.kern2.s + -40 + public.kern2.t + -10 + public.kern2.u + -50 + public.kern2.w + -20 + public.kern2.x + -20 + public.kern2.y + -20 + public.kern2.z + -20 + + public.kern1.W.ss011 + + public.kern2.A.ss01 + -40 + public.kern2.A.ss012 + -40 + public.kern2.A2 + -120 + public.kern2.G + -20 + public.kern2.J + -50 + public.kern2.Oslash.alt + 10 + public.kern2.S + -10 + public.kern2.T + 20 + public.kern2.V + 10 + public.kern2.W + 30 + public.kern2.Y + 20 + public.kern2.Z + -10 + public.kern2.a + -50 + public.kern2.comma + -80 + public.kern2.emdash + -40 + public.kern2.g + -20 + public.kern2.g.ss01 + -40 + public.kern2.guillemotright + -10 + public.kern2.i1 + 70 + public.kern2.m + -20 + public.kern2.o + -30 + public.kern2.period + -90 + public.kern2.quotedbl + 30 + public.kern2.s + -30 + public.kern2.u + -30 + public.kern2.w + -30 + public.kern2.y + 10 + public.kern2.z + -20 + + public.kern1.W1 + + public.kern2.A.ss01 + -30 + public.kern2.A.ss012 + -40 + public.kern2.A2 + -55 + public.kern2.G + -20 + public.kern2.J + -40 + public.kern2.S + -10 + public.kern2.V + 10 + public.kern2.Y + 10 + public.kern2.Z + -10 + public.kern2.a + -50 + public.kern2.comma + -40 + public.kern2.emdash + -20 + public.kern2.g + -20 + public.kern2.guillemotleft + -30 + public.kern2.guillemotright + -10 + public.kern2.i1 + -5 + public.kern2.m + -30 + public.kern2.o + -40 + public.kern2.period + -70 + public.kern2.quotedbl + 20 + public.kern2.quoteright + -10 + public.kern2.s + -20 + public.kern2.u + -30 + public.kern2.w + -10 + public.kern2.y + -10 + public.kern2.z + -30 + + public.kern1.Y.ss011 + + public.kern2.A.ss01 + -80 + public.kern2.A.ss012 + -100 + public.kern2.B + -20 + public.kern2.G + -60 + public.kern2.S + -30 + public.kern2.W + 20 + public.kern2.Y + 30 + public.kern2.a + -40 + public.kern2.comma + -110 + public.kern2.emdash + -120 + public.kern2.g.ss01 + -110 + public.kern2.i1 + 60 + public.kern2.m + -90 + public.kern2.o + -120 + public.kern2.period + -140 + public.kern2.quotedbl + 20 + public.kern2.quoteright + -30 + public.kern2.s + -90 + public.kern2.t + -30 + public.kern2.u + -60 + public.kern2.w + -40 + public.kern2.x + -40 + public.kern2.y + -30 + public.kern2.z + -40 + + public.kern1.Y1 + + public.kern2.A.ss012 + -110 + public.kern2.A2 + -90 + public.kern2.B + -10 + public.kern2.G + -70 + public.kern2.J + -50 + public.kern2.S + -40 + public.kern2.T + 10 + public.kern2.V + 17 + public.kern2.W + 10 + public.kern2.Y + 31 + public.kern2.a + -80 + public.kern2.comma + -100 + public.kern2.emdash + -120 + public.kern2.f + -30 + public.kern2.g + -80 + public.kern2.guillemotleft + -100 + public.kern2.guillemotright + -70 + public.kern2.i1 + 60 + public.kern2.m + -90 + public.kern2.o + -110 + public.kern2.period + -160 + public.kern2.quotedbl + 30 + public.kern2.quoteright + -40 + public.kern2.s + -90 + public.kern2.t + -20 + public.kern2.u + -70 + public.kern2.w + -60 + public.kern2.x + -50 + public.kern2.y + -50 + public.kern2.z + -50 + + public.kern1.Yacyr + + public.kern2.A.ss012 + 10 + public.kern2.B + 1 + public.kern2.Gecyr + 1 + public.kern2.i1 + 10 + + public.kern1.Z1 + + public.kern2.A.ss01 + 40 + public.kern2.A.ss012 + 30 + public.kern2.A2 + 20 + public.kern2.B + 10 + public.kern2.G + -30 + public.kern2.J + 40 + public.kern2.Oslash.alt + -10 + public.kern2.S + 20 + public.kern2.V + 10 + public.kern2.Z + 20 + public.kern2.a + 10 + public.kern2.comma + 30 + public.kern2.emdash + -30 + public.kern2.h + 10 + public.kern2.i1 + 40 + public.kern2.j + 20 + public.kern2.o + 4 + public.kern2.period + 30 + public.kern2.quoteright + -30 + public.kern2.s + 10 + public.kern2.u + -10 + public.kern2.w + -10 + public.kern2.x + 10 + public.kern2.y + -10 + public.kern2.z + 30 + + public.kern1.a1 + + public.kern2.A.ss012 + 20 + public.kern2.J + 10 + public.kern2.T + -70 + public.kern2.U + -10 + public.kern2.V + -64 + public.kern2.W + -40 + public.kern2.Y + -100 + public.kern2.f + -6 + public.kern2.quotedbl + -34 + public.kern2.quoteright + -20 + public.kern2.t + -10 + public.kern2.u + -10 + public.kern2.w + -30 + public.kern2.y + -20 + public.kern2.z + 5 + + public.kern1.c1 + + public.kern2.A.ss012 + 20 + public.kern2.A2 + 10 + public.kern2.J + 20 + public.kern2.Oslash.alt + -10 + public.kern2.T + -50 + public.kern2.Ucyr.ss01 + -30 + public.kern2.V + -40 + public.kern2.W + -20 + public.kern2.Y + -50 + public.kern2.Z + 10 + public.kern2.emdash + -30 + public.kern2.h + -10 + public.kern2.o + -10 + public.kern2.period + 10 + public.kern2.t + 10 + public.kern2.tecyr + 10 + public.kern2.x + -10 + public.kern2.y + -5 + + public.kern1.comma1 + + public.kern2.A.ss012 + 10 + public.kern2.G + -20 + public.kern2.J + 30 + public.kern2.T + -80 + public.kern2.Ucyr.ss01 + -30 + public.kern2.V + -70 + public.kern2.W + -40 + public.kern2.Y + -110 + public.kern2.Z + 30 + public.kern2.decyr.ss01 + 10 + public.kern2.f + -20 + public.kern2.j + 10 + public.kern2.m + -10 + public.kern2.o + -10 + public.kern2.t + -30 + public.kern2.tecyr + -70 + public.kern2.w + -10 + public.kern2.x + -10 + public.kern2.y + -20 + public.kern2.z + 10 + + public.kern1.dcaron + + public.kern2.A2 + 10 + public.kern2.B + 110 + public.kern2.G + 40 + public.kern2.J + 20 + public.kern2.Oslash.alt + 140 + public.kern2.S + 90 + public.kern2.T + 140 + public.kern2.U + 110 + public.kern2.V + 160 + public.kern2.W + 150 + public.kern2.Y + 160 + public.kern2.Z + 130 + public.kern2.a + 10 + public.kern2.f + 80 + public.kern2.fi.ss01 + 100 + public.kern2.g + 10 + public.kern2.g.ss01 + 10 + public.kern2.h + 130 + public.kern2.i1 + 140 + public.kern2.j + 140 + public.kern2.l.ss01 + 130 + public.kern2.m + 30 + public.kern2.o + 25 + public.kern2.s + 20 + public.kern2.t + 90 + public.kern2.u + 20 + public.kern2.w + 30 + public.kern2.x + 30 + public.kern2.y + 30 + public.kern2.z + 40 + + public.kern1.decyr1 + + public.kern2.A.ss012 + 30 + public.kern2.A2 + 20 + public.kern2.G + -20 + public.kern2.Oslash.alt + 10 + public.kern2.T + -50 + public.kern2.Ucyr.ss01 + -20 + public.kern2.comma + 40 + public.kern2.decyr.ss01 + 20 + public.kern2.emdash + -10 + public.kern2.o + -10 + public.kern2.period + 20 + public.kern2.quoteright + -20 + public.kern2.tecyr + -30 + public.kern2.x + 10 + public.kern2.y + -10 + + public.kern1.e.ss011 + + public.kern2.Oslash.alt + -10 + public.kern2.T + -80 + public.kern2.V + -50 + public.kern2.W + -30 + public.kern2.Y + -100 + public.kern2.comma + -10 + public.kern2.l.ss01 + -10 + public.kern2.o + -10 + public.kern2.quotedbl + -40 + public.kern2.w + -20 + public.kern2.y + -20 + + public.kern1.e1 + + public.kern2.A.ss012 + 20 + public.kern2.G + 10 + public.kern2.Oslash.alt + -20 + public.kern2.T + -60 + public.kern2.Ucyr.ss01 + -50 + public.kern2.V + -60 + public.kern2.W + -30 + public.kern2.Y + -90 + public.kern2.Z + -10 + public.kern2.emdash + 5 + public.kern2.o + 10 + public.kern2.quotedbl + -20 + public.kern2.w + -20 + public.kern2.x + -20 + public.kern2.y + -30 + + public.kern1.emdash1 + + public.kern2.A.ss01 + 20 + public.kern2.J + 30 + public.kern2.Oslash.alt + -30 + public.kern2.S + -10 + public.kern2.T + -90 + public.kern2.Ucyr.ss01 + -50 + public.kern2.V + -60 + public.kern2.W + -20 + public.kern2.Y + -120 + public.kern2.Z + -10 + public.kern2.decyr.ss01 + -10 + public.kern2.f + -30 + public.kern2.five + -20 + public.kern2.g.ss01 + 10 + public.kern2.o + 10 + public.kern2.s + -10 + public.kern2.t + -20 + public.kern2.tecyr + -40 + public.kern2.w + -10 + public.kern2.x + -40 + public.kern2.y + -30 + + public.kern1.f1 + + public.kern2.A.ss012 + -10 + public.kern2.A2 + -40 + public.kern2.J + -30 + public.kern2.S + 10 + public.kern2.T + 20 + public.kern2.Y + 10 + public.kern2.a + -20 + public.kern2.comma + -50 + public.kern2.emdash + -30 + public.kern2.f + 10 + public.kern2.h + 15 + public.kern2.i1 + 1 + public.kern2.o + -10 + public.kern2.period + -50 + public.kern2.quotedbl + 40 + public.kern2.quoteright + 20 + public.kern2.t + 30 + public.kern2.w + 10 + public.kern2.x + 10 + public.kern2.y + 10 + + public.kern1.five1 + + public.kern2.comma + -30 + public.kern2.five + -20 + public.kern2.four + 10 + public.kern2.i1 + 20 + + public.kern1.four1 + + public.kern2.five + 20 + public.kern2.four + 20 + public.kern2.period + 20 + public.kern2.quotedbl + -20 + + public.kern1.g.ss011 + + public.kern2.A.ss01 + 20 + public.kern2.W + 20 + public.kern2.Y + -30 + public.kern2.g.ss01 + 20 + public.kern2.h + 10 + public.kern2.i1 + 10 + public.kern2.j + 71 + public.kern2.l.ss01 + 20 + public.kern2.m + 10 + public.kern2.o + 10 + public.kern2.quotedbl + 40 + public.kern2.quoteright + 40 + public.kern2.s + 10 + public.kern2.t + 40 + public.kern2.w + 20 + public.kern2.x + 20 + public.kern2.y + 30 + public.kern2.z + 30 + + public.kern1.g1 + + public.kern2.A2 + 20 + public.kern2.V + -20 + public.kern2.Y + -30 + public.kern2.a + -10 + public.kern2.comma + 20 + public.kern2.f + 5 + public.kern2.i1 + 10 + public.kern2.j + 60 + public.kern2.m + -10 + public.kern2.s + -10 + public.kern2.w + -10 + public.kern2.y + -10 + + public.kern1.gecyr + + public.kern2.A.ss012 + -10 + public.kern2.A2 + -30 + public.kern2.G + 10 + public.kern2.Oslash.alt + -20 + public.kern2.T + -20 + public.kern2.Ucyr.ss01 + -40 + public.kern2.a + -20 + public.kern2.comma + -50 + public.kern2.decyr.ss01 + -30 + public.kern2.emdash + -50 + public.kern2.i1 + 40 + public.kern2.o + -15 + public.kern2.period + -100 + public.kern2.quoteright + 30 + + public.kern1.guillemotright1 + + public.kern2.J + -30 + public.kern2.T + -60 + public.kern2.V + -50 + public.kern2.W + -30 + public.kern2.Y + -100 + + public.kern1.hardcyr + + public.kern2.Oslash.alt + -10 + public.kern2.T + -80 + public.kern2.Ucyr.ss01 + -40 + public.kern2.comma + -10 + public.kern2.quotedbl + -77 + public.kern2.quoteright + -20 + public.kern2.tecyr + -70 + public.kern2.x + -20 + public.kern2.y + -60 + + public.kern1.i1 + + public.kern2.B + 10 + public.kern2.Gecyr + 10 + public.kern2.Oslash.alt + 40 + public.kern2.T + -20 + public.kern2.U + 10 + public.kern2.Ucyr.ss01 + 50 + public.kern2.V + 50 + public.kern2.W + 60 + public.kern2.Y + 60 + public.kern2.Z + 30 + public.kern2.h + 10 + public.kern2.i1 + 10 + public.kern2.j + 10 + public.kern2.percent + 30 + public.kern2.quotedbl + 10 + public.kern2.quoteright + -10 + + public.kern1.icyr1 + + public.kern2.A.ss012 + 10 + public.kern2.J + 10 + public.kern2.T + -20 + public.kern2.Ucyr.ss01 + -40 + public.kern2.W + -20 + public.kern2.Y + -80 + public.kern2.comma + -10 + public.kern2.j + 30 + + public.kern1.j1 + + public.kern2.T + -20 + public.kern2.i1 + 10 + public.kern2.j + 30 + public.kern2.quotedbl + 10 + public.kern2.z + 10 + + public.kern1.k + + public.kern2.A.ss01 + 20 + public.kern2.A.ss012 + 20 + public.kern2.A2 + 20 + public.kern2.G + -20 + public.kern2.J + 20 + public.kern2.Ucyr.ss01 + -20 + public.kern2.V + -30 + public.kern2.W + -20 + public.kern2.Y + -50 + public.kern2.a + -10 + public.kern2.emdash + -50 + public.kern2.l.ss01 + -10 + public.kern2.o + -30 + public.kern2.quoteright + -10 + public.kern2.x + 15 + public.kern2.z + 10 + + public.kern1.l + + public.kern2.guillemotright + 10 + public.kern2.h + 2 + public.kern2.i1 + 10 + public.kern2.m + 1 + public.kern2.o + 1 + public.kern2.s + 5 + public.kern2.t + 1 + + public.kern1.l.ss011 + + public.kern2.A.ss01 + 20 + public.kern2.G + -10 + public.kern2.T + -70 + public.kern2.U + -10 + public.kern2.V + -50 + public.kern2.W + -40 + public.kern2.Y + -50 + public.kern2.emdash + -10 + public.kern2.f + -40 + public.kern2.fi.ss01 + -10 + public.kern2.h + 1 + public.kern2.o + -10 + public.kern2.period + 10 + public.kern2.quotedbl + -30 + public.kern2.quoteright + -30 + public.kern2.t + -40 + public.kern2.w + -50 + public.kern2.y + -60 + public.kern2.z + 10 + + public.kern1.n + + public.kern2.A.ss01 + 10 + public.kern2.A.ss012 + 10 + public.kern2.G + -10 + public.kern2.J + 20 + public.kern2.T + -60 + public.kern2.Ucyr.ss01 + -50 + public.kern2.V + -60 + public.kern2.W + -40 + public.kern2.Y + -100 + public.kern2.emdash + 10 + public.kern2.guillemotright + 10 + public.kern2.quotedbl + -27 + public.kern2.t + -10 + public.kern2.w + -20 + public.kern2.y + -25 + + public.kern1.numero + + public.kern2.i1 + 40 + + public.kern1.o1 + + public.kern2.A.ss01 + 10 + public.kern2.A.ss012 + 10 + public.kern2.A2 + -10 + public.kern2.J + 10 + public.kern2.Oslash.alt + -30 + public.kern2.S + -20 + public.kern2.T + -80 + public.kern2.Ucyr.ss01 + -40 + public.kern2.V + -65 + public.kern2.W + -40 + public.kern2.Y + -110 + public.kern2.Z + -20 + public.kern2.comma + -20 + public.kern2.emdash + 10 + public.kern2.period + -10 + public.kern2.quotedbl + -20 + public.kern2.quoteright + -10 + public.kern2.s + -10 + public.kern2.tecyr + -10 + public.kern2.w + -20 + public.kern2.x + -25 + public.kern2.y + -30 + public.kern2.z + -10 + + public.kern1.period1 + + public.kern2.A.ss01 + 30 + public.kern2.A.ss012 + 30 + public.kern2.A2 + 40 + public.kern2.G + -40 + public.kern2.J + 50 + public.kern2.Oslash.alt + 10 + public.kern2.T + -110 + public.kern2.U + -10 + public.kern2.Ucyr.ss01 + -20 + public.kern2.V + -110 + public.kern2.W + -70 + public.kern2.Y + -160 + public.kern2.Z + 20 + public.kern2.decyr.ss01 + 20 + public.kern2.f + -30 + public.kern2.g.ss01 + 10 + public.kern2.j + 10 + public.kern2.o + -10 + public.kern2.quotedbl + -40 + public.kern2.t + -30 + public.kern2.tecyr + -70 + public.kern2.w + -40 + public.kern2.y + -75 + public.kern2.z + 10 + public.kern2.zero + -20 + + public.kern1.quotedbl1 + + public.kern2.A.ss01 + -70 + public.kern2.A.ss012 + -50 + public.kern2.A2 + -50 + public.kern2.G + -10 + public.kern2.J + -50 + public.kern2.Oslash.alt + 20 + public.kern2.T + 30 + public.kern2.V + 20 + public.kern2.W + 30 + public.kern2.Y + 30 + public.kern2.Z + 10 + public.kern2.a + -11 + public.kern2.decyr.ss01 + -40 + public.kern2.four + -70 + public.kern2.g + -20 + public.kern2.g.ss01 + -30 + public.kern2.h + 10 + public.kern2.i1 + 10 + public.kern2.l.ss01 + 10 + public.kern2.o + -20 + public.kern2.period + -40 + public.kern2.s + -20 + public.kern2.t + 20 + public.kern2.w + 10 + public.kern2.y + 10 + public.kern2.zero + -10 + + public.kern1.quoteleft1 + + public.kern2.A.ss01 + -50 + public.kern2.A.ss012 + -50 + public.kern2.A2 + -30 + public.kern2.B + 10 + public.kern2.G + -20 + public.kern2.Gecyr + 10 + public.kern2.Oslash.alt + 30 + public.kern2.T + 20 + public.kern2.Ucyr.ss01 + 50 + public.kern2.V + 30 + public.kern2.W + 30 + public.kern2.Y + 40 + public.kern2.Z + 10 + public.kern2.a + -30 + public.kern2.decyr.ss01 + -10 + public.kern2.g + -40 + public.kern2.g.ss01 + -30 + public.kern2.i1 + 50 + public.kern2.m + -20 + public.kern2.o + -40 + public.kern2.s + -20 + public.kern2.u + -20 + public.kern2.x + -20 + public.kern2.y + -10 + public.kern2.z + -20 + + public.kern1.quoteright1 + + public.kern2.A.ss01 + -60 + public.kern2.A2 + -60 + public.kern2.G + -30 + public.kern2.J + -40 + public.kern2.Oslash.alt + 10 + public.kern2.S + -10 + public.kern2.T + 20 + public.kern2.V + 30 + public.kern2.W + 30 + public.kern2.Y + 40 + public.kern2.a + -60 + public.kern2.f + -10 + public.kern2.g + -70 + public.kern2.g.ss01 + -40 + public.kern2.h + -10 + public.kern2.i1 + 21 + public.kern2.m + -20 + public.kern2.o + -70 + public.kern2.s + -70 + public.kern2.u + -20 + public.kern2.y + -30 + public.kern2.z + -30 + + public.kern1.s1 + + public.kern2.A.ss01 + 10 + public.kern2.G + -10 + public.kern2.J + 10 + public.kern2.T + -55 + public.kern2.V + -40 + public.kern2.W + -30 + public.kern2.Y + -80 + public.kern2.a + 5 + public.kern2.f + -10 + public.kern2.g.ss01 + -10 + public.kern2.guillemotright + 20 + public.kern2.quotedbl + -30 + public.kern2.quoteright + -10 + public.kern2.t + -10 + public.kern2.w + -25 + public.kern2.x + -10 + public.kern2.y + -30 + + public.kern1.t.ss011 + + public.kern2.A.ss01 + 30 + public.kern2.B + 10 + public.kern2.G + 10 + public.kern2.Y + -40 + public.kern2.Z + 10 + public.kern2.h + 10 + public.kern2.j + 1 + public.kern2.l.ss01 + 10 + public.kern2.m + 10 + public.kern2.o + 10 + public.kern2.period + 20 + public.kern2.quotedbl + 1 + public.kern2.quoteright + 10 + public.kern2.t + 30 + public.kern2.z + 30 + + public.kern1.t1 + + public.kern2.J + 30 + public.kern2.V + -20 + public.kern2.Y + -20 + public.kern2.Z + 10 + public.kern2.f + 20 + public.kern2.g + 10 + public.kern2.h + 5 + public.kern2.i1 + 10 + public.kern2.j + 11 + public.kern2.l.ss01 + 10 + public.kern2.period + 10 + public.kern2.quotedbl + 20 + public.kern2.quoteright + 10 + public.kern2.t + 20 + public.kern2.x + 10 + public.kern2.z + 10 + + public.kern1.u1 + + public.kern2.A.ss01 + 10 + public.kern2.J + 10 + public.kern2.T + -40 + public.kern2.V + -50 + public.kern2.W + -20 + public.kern2.Y + -80 + + public.kern1.uni0435.ss011 + + public.kern2.A.ss012 + 20 + public.kern2.T + -60 + public.kern2.Ucyr.ss01 + -30 + public.kern2.V + -50 + public.kern2.W + -10 + public.kern2.Y + -80 + public.kern2.period + 10 + public.kern2.quoteright + 20 + public.kern2.w + -10 + public.kern2.y + -10 + + public.kern1.w1 + + public.kern2.A.ss01 + -20 + public.kern2.A.ss012 + -10 + public.kern2.A2 + -20 + public.kern2.J + -10 + public.kern2.Oslash.alt + -20 + public.kern2.V + -20 + public.kern2.W + -10 + public.kern2.Y + -60 + public.kern2.Z + -30 + public.kern2.a + -20 + public.kern2.comma + -40 + public.kern2.emdash + -10 + public.kern2.f + 10 + public.kern2.g + -10 + public.kern2.g.ss01 + -10 + public.kern2.j + -10 + public.kern2.o + -20 + public.kern2.period + -40 + public.kern2.quotedbl + 10 + public.kern2.quoteright + 10 + public.kern2.s + -24 + public.kern2.w + -10 + + public.kern1.x + + public.kern2.A.ss01 + 20 + public.kern2.A2 + 10 + public.kern2.G + -20 + public.kern2.J + 20 + public.kern2.Ucyr.ss01 + -10 + public.kern2.V + -20 + public.kern2.Y + -50 + public.kern2.a + -10 + public.kern2.emdash + -40 + public.kern2.o + -25 + public.kern2.quoteright + -10 + + public.kern1.y1 + + public.kern2.A.ss01 + -20 + public.kern2.A.ss012 + -20 + public.kern2.A2 + -20 + public.kern2.G + -10 + public.kern2.J + -20 + public.kern2.Oslash.alt + -30 + public.kern2.Ucyr.ss01 + -30 + public.kern2.V + -20 + public.kern2.W + -10 + public.kern2.Y + -50 + public.kern2.Z + -20 + public.kern2.a + -15 + public.kern2.comma + -60 + public.kern2.decyr.ss01 + -30 + public.kern2.emdash + -30 + public.kern2.f + 10 + public.kern2.g + -10 + public.kern2.h + -10 + public.kern2.j + -10 + public.kern2.o + -20 + public.kern2.period + -70 + public.kern2.quotedbl + 10 + public.kern2.quoteright + 10 + public.kern2.s + -20 + public.kern2.t + 10 + public.kern2.x + 10 + public.kern2.y + 10 + + public.kern1.z1 + + public.kern2.A.ss012 + 20 + public.kern2.A2 + 20 + public.kern2.J + 30 + public.kern2.T + -10 + public.kern2.V + -20 + public.kern2.W + -30 + public.kern2.Y + -50 + public.kern2.comma + 10 + public.kern2.g + 10 + public.kern2.j + 10 + public.kern2.o + -10 + public.kern2.period + 10 + public.kern2.s + 5 + public.kern2.t + 10 + public.kern2.x + 10 + public.kern2.z + 10 + + + diff --git a/sources/FixelText-Black.ufo/layercontents.plist b/sources/FixelText-Black.ufo/layercontents.plist new file mode 100644 index 00000000..7a35a5cf --- /dev/null +++ b/sources/FixelText-Black.ufo/layercontents.plist @@ -0,0 +1,10 @@ + + + + + + public.default + glyphs + + + diff --git a/sources/FixelText-Black.ufo/lib.plist b/sources/FixelText-Black.ufo/lib.plist new file mode 100644 index 00000000..c0069150 --- /dev/null +++ b/sources/FixelText-Black.ufo/lib.plist @@ -0,0 +1,1671 @@ + + + + + com.fontlab.v2.tth + + stems + + 69 + + width + 69 + horizontal + + round + + 35 + 3 + 47 + 4 + 60 + 5 + 0 + 7 + 22 + 8 + + + 74 + + width + 74 + horizontal + + round + + 19 + 2 + 35 + 3 + 47 + 4 + 60 + 5 + 72 + 6 + 0 + 7 + 20 + 8 + + + 76 + + width + 76 + horizontal + + round + + 19 + 2 + 35 + 3 + 72 + 6 + 0 + 7 + 20 + 8 + + + 80 + + width + 80 + horizontal + + round + + 29 + 3 + 47 + 4 + 60 + 5 + 72 + 6 + 0 + 7 + 20 + 8 + + + 99 + + width + 99 + horizontal + + round + + 19 + 2 + 29 + 3 + 37 + 4 + 48 + 5 + 58 + 6 + 0 + 7 + 16 + 8 + + + 74 + + width + 74 + horizontal + + round + + 19 + 2 + 35 + 3 + 47 + 4 + 60 + 5 + 72 + 6 + 0 + 7 + 20 + 8 + + + 80 + + width + 80 + horizontal + + round + + 29 + 3 + 47 + 4 + 60 + 5 + 72 + 6 + 0 + 7 + 20 + 8 + + + 93 + + width + 93 + horizontal + + round + + 19 + 2 + 29 + 3 + 37 + 4 + 48 + 5 + 58 + 6 + 0 + 7 + 16 + 8 + + + + + com.schriftgestaltung.disablesAutomaticAlignment + + com.schriftgestaltung.fontMasterID + master01 + com.schriftgestaltung.glyphOrder + + com.schriftgestaltung.master.name + regular + com.schriftgestaltung.useNiceNames + + com.schriftgestaltung.weightValue + 400 + public.postscriptNames + + A-cy + uni0410 + A-cy.ss01 + uni0410.ss01 + Be-cy + uni0411 + Che-cy + uni0427 + De-cy + uni0414 + Dze-cy + uni0405 + E-cy + uni0404 + Ef-cy + uni0424 + El-cy + uni041B + Em-cy + uni041C + Em-cy.ss01 + uni041C.ss01 + En-cy + uni041D + Er-cy + uni0420 + Ereversed-cy + uni042D + Es-cy + uni0421 + Gacute + uni01F4 + Gacute.ss01 + uni01F4.ss01 + Gcommaaccent + uni0122 + Gcommaaccent.ss01 + uni0122.ss01 + Ge-cy + uni0413 + Germandbls + uni1E9E + Gheupturn-cy + uni0490 + Ha-cy + uni0425 + Ha-cy.ss01 + uni0425.ss01 + Hardsign-cy + uni042A + I-cy + uni0406 + Ia-cy + uni042F + Ia-cy.ss01 + uni042F.ss01 + Ie-cy + uni0415 + Ii-cy + uni0418 + Iishort-cy + uni0419 + Io-cy + uni0401 + Iu-cy + uni042E + Ka-cy + uni041A + Ka-cy.ss01 + uni041A.ss01 + Kcommaaccent + uni0136 + Kcommaaccent.ss01 + uni0136.ss01 + Lcommaaccent + uni013B + Ncommaaccent + uni0145 + Ncommaaccent.ss01 + uni0145.ss01 + O-cy + uni041E + Pe-cy + uni041F + Rcommaaccent + uni0156 + Scommaaccent + uni0218 + Sha-cy + uni0428 + Shcha-cy + uni0429 + Softsign-cy + uni042C + Tcedilla + uni0162 + Tcommaaccent + uni021A + Te-cy + uni0422 + Tse-cy + uni0426 + U-cy + uni0423 + U-cy.ss01 + uni0423.ss01 + Ushort-cy + uni040E + Ushort-cy.ss01 + uni040E.ss01 + Ve-cy + uni0412 + Yeru-cy + uni042B + Yi-cy + uni0407 + Ze-cy + uni0417 + Zhe-cy + uni0416 + Zhe-cy.ss01 + uni0416.ss01 + _perc-circule + _perccircule + a-cy + uni0430 + a-cy.ss01 + uni0430.ss01 + be-cy + uni0431 + che-cy + uni0447 + commaaccentcomb + uni0326 + commaaccentcomb.salt + uni0326.salt + de-cy + uni0434 + de-cy.ss01 + uni0434.ss01 + dze-cy + uni0455 + e-cy + uni0454 + ef-cy + uni0444 + el-cy + uni043B + el-cy.ss01 + uni043B.ss01 + em-cy + uni043C + en-cy + uni043D + er-cy + uni0440 + er-cy.ss01 + uni0440.ss01 + ereversed-cy + uni044D + es-cy + uni0441 + euro + Euro + gacute + uni01F5 + gacute.ss01 + uni01F5.ss01 + gcommaaccent + uni0123 + gcommaaccent.ss01 + uni0123.ss01 + ge-cy + uni0433 + gheupturn-cy + uni0491 + guillemetleft + guillemotleft + guillemetright + guillemotright + ha-cy + uni0445 + hardsign-cy + uni044A + hardsign-cy.ss01 + uni044A.ss01 + hryvnia + uni20B4 + i-cy + uni0456 + ia-cy + uni044F + ia-cy.ss01 + uni044F.ss01 + idotless + dotlessi + ie-cy + uni0435 + ie-cy.ss01 + uni0435.ss01 + ii-cy + uni0438 + iishort-cy + uni0439 + io-cy + uni0451 + io-cy.ss01 + uni0451.ss01 + iu-cy + uni044E + jdotless + uni0237 + je-cy + uni0458 + ka-cy + uni043A + kcommaaccent + uni0137 + lcommaaccent + uni013C + lcommaaccent.ss01 + uni013C.ss01 + ncommaaccent + uni0146 + numero + uni2116 + numero.ss01 + uni2116.ss01 + o-cy + uni043E + onesuperior + uni00B9 + pe-cy + uni043F + rcommaaccent + uni0157 + scommaaccent + uni0219 + sha-cy + uni0448 + shcha-cy + uni0449 + softsign-cy + uni044C + softsign-cy.ss01 + uni044C.ss01 + tcedilla + uni0163 + tcedilla.ss01 + uni0163.ss01 + tcommaaccent + uni021B + tcommaaccent.ss01 + uni021B.ss01 + te-cy + uni0442 + te-cy.ss01 + uni0442.ss01 + threesuperior + uni00B3 + tse-cy + uni0446 + twosuperior + uni00B2 + u-cy + uni0443 + ushort-cy + uni045E + ve-cy + uni0432 + ve-cy.ss01 + uni0432.ss01 + yeru-cy + uni044B + yeru-cy.ss01 + uni044B.ss01 + yi-cy + uni0457 + ze-cy + uni0437 + zhe-cy + uni0436 + + public.skipExportGlyphs + + Oslash.bold + oslash.bold + _perc-circule + + public.glyphOrder + + .notdef + NULL + CR + space + A + Aacute + Abreve + Acircumflex + Adieresis + Agrave + Amacron + Aogonek + Aring + Atilde + AE + B + C + Cacute + Ccaron + Ccedilla + Ccircumflex + Cdotaccent + D + Eth + Dcaron + Dcroat + E + Eacute + Ebreve + Ecaron + Ecircumflex + Edieresis + Edotaccent + Egrave + Emacron + Eogonek + F + G + Gacute + Gbreve + Gcircumflex + Gcommaaccent + Gdotaccent + H + Hbar + Hcircumflex + I + IJ + Iacute + Ibreve + Icircumflex + Idieresis + Idotaccent + Igrave + Imacron + Iogonek + Itilde + J + Jcircumflex + K + Kcommaaccent + L + Lacute + Lcaron + Lcommaaccent + Ldot + Lslash + M + N + Nacute + Ncaron + Ncommaaccent + Eng + Ntilde + O + Oacute + Obreve + Ocircumflex + Odieresis + Ograve + Ohungarumlaut + Omacron + Oslash + Otilde + OE + P + Thorn + Q + R + Racute + Rcaron + Rcommaaccent + S + Sacute + Scaron + Scedilla + Scircumflex + Scommaaccent + Germandbls + T + Tbar + Tcaron + Tcedilla + Tcommaaccent + U + Uacute + Ubreve + Ucircumflex + Udieresis + Ugrave + Uhungarumlaut + Umacron + Uogonek + Uring + Utilde + V + W + Wacute + Wcircumflex + Wdieresis + Wgrave + X + Y + Yacute + Ycircumflex + Ydieresis + Z + Zacute + Zcaron + Zdotaccent + A.ss01 + Aacute.ss01 + Abreve.ss01 + Acircumflex.ss01 + Adieresis.ss01 + Agrave.ss01 + Amacron.ss01 + Aogonek.ss01 + Aring.ss01 + Atilde.ss01 + AE.ss01 + G.ss01 + Gacute.ss01 + Gbreve.ss01 + Gcircumflex.ss01 + Gcommaaccent.ss01 + Gdotaccent.ss01 + J.ss01 + Jcircumflex.ss01 + K.ss01 + Kcommaaccent.ss01 + M.ss01 + N.ss01 + Nacute.ss01 + Ncaron.ss01 + Ncommaaccent.ss01 + Eng.ss01 + Ntilde.ss01 + Q.ss01 + V.ss01 + W.ss01 + Wacute.ss01 + Wcircumflex.ss01 + Wdieresis.ss01 + Wgrave.ss01 + X.ss01 + Y.ss01 + Yacute.ss01 + Ycircumflex.ss01 + Ydieresis.ss01 + Z.ss01 + Zacute.ss01 + Zcaron.ss01 + Zdotaccent.ss01 + a + aacute + abreve + acircumflex + adieresis + agrave + amacron + aogonek + aring + atilde + ae + b + c + cacute + ccaron + ccedilla + ccircumflex + cdotaccent + d + eth + dcaron + dcroat + e + eacute + ebreve + ecaron + ecircumflex + edieresis + edotaccent + egrave + emacron + eogonek + f + g + gacute + gbreve + gcircumflex + gcommaaccent + gdotaccent + h + hbar + hcircumflex + i + idotless + iacute + ibreve + icircumflex + idieresis + igrave + ij + imacron + iogonek + itilde + j + jdotless + jcircumflex + k + kcommaaccent + kgreenlandic + l + lacute + lcaron + lcommaaccent + ldot + lslash + m + n + nacute + napostrophe + ncaron + ncommaaccent + eng + ntilde + o + oacute + obreve + ocircumflex + odieresis + ograve + ohungarumlaut + omacron + oslash + otilde + oe + p + thorn + q + r + racute + rcaron + rcommaaccent + s + sacute + scaron + scedilla + scircumflex + scommaaccent + germandbls + t + tbar + tcaron + tcedilla + tcommaaccent + u + uacute + ubreve + ucircumflex + udieresis + ugrave + uhungarumlaut + umacron + uogonek + uring + utilde + v + w + wacute + wcircumflex + wdieresis + wgrave + x + y + yacute + ycircumflex + ydieresis + z + zacute + zcaron + zdotaccent + a.ss01 + aacute.ss01 + abreve.ss01 + acircumflex.ss01 + adieresis.ss01 + agrave.ss01 + amacron.ss01 + aogonek.ss01 + aring.ss01 + atilde.ss01 + ae.ss01 + b.ss01 + d.ss01 + dcaron.ss01 + dcroat.ss01 + e.ss01 + eacute.ss01 + ebreve.ss01 + ecaron.ss01 + ecircumflex.ss01 + edieresis.ss01 + edotaccent.ss01 + egrave.ss01 + emacron.ss01 + eogonek.ss01 + f.ss01 + g.ss01 + gacute.ss01 + gbreve.ss01 + gcircumflex.ss01 + gcommaaccent.ss01 + gdotaccent.ss01 + l.ss01 + lacute.ss01 + lcaron.ss01 + lcommaaccent.ss01 + ldot.ss01 + lslash.ss01 + oe.ss01 + p.ss01 + q.ss01 + germandbls.ss01 + t.ss01 + tbar.ss01 + tcaron.ss01 + tcedilla.ss01 + tcommaaccent.ss01 + f_f + f_f_i + f_f_l + fi + fl + f_f.ss01 + f_f_i.ss01 + f_f_l.ss01 + fi.ss01 + fl.ss01 + ordfeminine + ordmasculine + A-cy + Be-cy + Ve-cy + Ge-cy + Gheupturn-cy + De-cy + Ie-cy + Io-cy + Zhe-cy + Ze-cy + Ii-cy + Iishort-cy + Ka-cy + El-cy + Em-cy + En-cy + O-cy + Pe-cy + Er-cy + Es-cy + Te-cy + U-cy + Ushort-cy + Ef-cy + Ha-cy + Che-cy + Tse-cy + Sha-cy + Shcha-cy + Softsign-cy + Hardsign-cy + Yeru-cy + Dze-cy + E-cy + Ereversed-cy + I-cy + Yi-cy + Iu-cy + Ia-cy + A-cy.ss01 + Zhe-cy.ss01 + Ka-cy.ss01 + Em-cy.ss01 + U-cy.ss01 + Ushort-cy.ss01 + Ha-cy.ss01 + Ia-cy.ss01 + a-cy + be-cy + ve-cy + ge-cy + gheupturn-cy + de-cy + ie-cy + io-cy + zhe-cy + ze-cy + ii-cy + iishort-cy + ka-cy + el-cy + em-cy + en-cy + o-cy + pe-cy + er-cy + es-cy + te-cy + u-cy + ushort-cy + ef-cy + ha-cy + che-cy + tse-cy + sha-cy + shcha-cy + softsign-cy + hardsign-cy + yeru-cy + dze-cy + e-cy + ereversed-cy + i-cy + yi-cy + je-cy + iu-cy + ia-cy + a-cy.ss01 + ve-cy.ss01 + de-cy.ss01 + ie-cy.ss01 + io-cy.ss01 + el-cy.ss01 + er-cy.ss01 + te-cy.ss01 + softsign-cy.ss01 + hardsign-cy.ss01 + yeru-cy.ss01 + ia-cy.ss01 + zero + one + two + three + four + five + six + seven + eight + nine + zero.osf + one.osf + two.osf + three.osf + four.osf + five.osf + six.osf + seven.osf + nine.osf + zero.tf + one.tf + two.tf + three.tf + four.tf + five.tf + six.tf + seven.tf + eight.tf + nine.tf + onesuperior + twosuperior + threesuperior + period + comma + colon + semicolon + ellipsis + exclam + exclamdown + question + questiondown + periodcentered + bullet + asterisk + numbersign + slash + backslash + parenleft + parenright + braceleft + braceright + bracketleft + bracketright + hyphen + endash + emdash + underscore + quotesinglbase + quotedblbase + quotedblleft + quotedblright + quoteleft + quoteright + guillemetleft + guillemetright + guilsinglleft + guilsinglright + quotedbl + quotesingle + cent + currency + dollar + euro + hryvnia + sterling + yen + yen.ss01 + plus + minus + multiply + divide + equal + greater + less + asciitilde + asciicircum + percent + perthousand + at + ampersand + paragraph + section + copyright + registered + trademark + degree + bar + brokenbar + dagger + daggerdbl + numero + estimated + numero.ss01 + commaaccentcomb + dieresis + dotaccent + grave + acute + hungarumlaut + circumflex + caron + breve + ring + tilde + macron + cedilla + ogonek + dieresis.case + dotaccent.case + grave.case + acute.case + hungarumlaut.case + circumflex.case + caron.case + breve.case + ring.case + tilde.case + macron.case + commaaccentcomb.salt + caron.salt + uniE01A + _perc-circule + eight.osf + ruble + Ljecyr + Njecyr + Jecyr + dzhecyr + Dzhecyr + ljecyr + njecyr + Tshecyr + Djecyr + tshecyr + djecyr + tenge + ljecyr.ss01 + njecyr.ss01 + dramsignarmn + gjecyr + kjecyr + neptune + florin + plusminus + fraction + onequarter + onehalf + threequarters + mu + lessequal + greaterequal + minute + second + Schwacyr + schwacyr + Gestrokecyr + gestrokecyr + Obarcyr + obarcyr + Entailcyr + entailcyr + Katailcyr + katailcyr + Ustraightstrokecyr + ustraightstrokecyr + Shhacyr + shhacyr + ustraightcyr + Ustraightcyr + partialdiff + increment + integral + summation + radical + infinity + Omega + pi + longs + Delta + product + notequal + proportional + approxequal + Schwa + eturned + Oslashacute + oslashacute + AEacute + aeacute + uni2010 + Aiecyr + aiecyr + uni1EBC + uni1EBD + Acaron + acaron + Gjecyr + Kjecyr + uniE000 + uniE000.alt + arrowleft + arrowup + arrowright + arrowdown + arrowdown.ss01 + arrowleft.ss01 + arrowright.ss01 + arrowup.ss01 + yi-cy.alt + Omegacyr + omegacyr + Yatcyr + yatcyr + Eiotifiedcyr + eiotifiedcyr + Ksicyr + ksicyr + Shwe-cy + Fitacyr + fitacyr + Koppacyr + Iegravecyr + Igravecyr + iegravecyr + igravecyr + Zhebrevecyr + zhebrevecyr + Abrevecyr + abrevecyr + Adieresiscyr + adieresiscyr + Iebrevecyr + iebrevecyr + Schwadieresiscyr + schwadieresiscyr + Zhedieresiscyr + zhedieresiscyr + Zedieresiscyr + zedieresiscyr + Imacroncyr + imacroncyr + Idieresiscyr + idieresiscyr + Odieresiscyr + odieresiscyr + Umacroncyr + umacroncyr + Udieresiscyr + udieresiscyr + Uacutedblcyr + uacutedblcyr + Dekomicyr + dekomicyr + Wecyr + wecyr + Qacyr + qacyr + Ylongdieresiscyr + ylongdieresiscyr + Chedieresiscyr + chedieresiscyr + Obardieresiscyr + obardieresiscyr + Ereverseddieresiscyr + ereverseddieresiscyr + Zhetailcyr + zhetailcyr + Tetailcyr + tetailcyr + Xatailcyr + xatailcyr + Chetailcyr + chetailcyr + Chekhakascyr + chekhakascyr + Getailcyr + getailcyr + Petailcyr + petailcyr + Eltailcyr + eltailcyr + Shhatailcyr + shhatailcyr + Palochkacyr + palochkacyr + Dzzhecyr + Yaecyr + yaecyr + Tetsecyr + tetsecyr + Engecyr + engecyr + kabashkcyr + Kabashkcyr + semisoftcyr + Semisoftcyr + Reversedzecyr + reversedzecyr + Elmiddlehookcyr + Enmiddlehookcyr + Enhookcyr + Kahookcyr + Pehookcyr + Gehookcyr + parenleft.case + parenright.case + hyphen.case + bracketleft.case + bracketright.case + braceleft.case + braceright.case + exclamdown.case + guillemetleft.case + guillemetright.case + endash.case + emdash.case + bullet.case + guilsinglleft.case + guilsinglright.case + arrowleft.case + arrowup.case + arrowright.case + arrowdown.case + arrowdown.ss01.case + arrowleft.ss01.case + arrowright.ss01.case + arrowup.ss01.case + Enhookleftcyr + enhookleftcyr + enhookcyr + gehookcyr + pehookcyr + kahookcyr + enmiddlehookcyr + elmiddlehookcyr + kastrokecyr + Kastrokecyr + Chevertcyr + chevertcyr + Kaverticalstrokecyr + kaverticalstrokecyr + Elhookcyr + elhookcyr + zetailcyr + Zetailcyr + Estailcyr + estailcyr + Haabkhcyr + koppacyr + ukcyr + Ukcyr + omegaroundcyr + Izhitsagravedblcyr + izhitsagravedblcyr + izhitsacyr + Izhitsacyr + Yusbigcyr + yusbigcyr + Psicyr + psicyr + Omegaroundcyr + Yuslittlecyr + yuslittlecyr + yuslittleiotifiedcyr + Yuslittleiotifiedcyr + Yusbigiotifiedcyr + yusbigiotifiedcyr + Omegatitlocyr + omegatitlocyr + Otcyr + otcyr + uni2DEE + uni2DEE.case + ertickcyr + Ertickcyr + Lhacyr + lhacyr + ensharptailcyr + Ensharptailcyr + emsharptailcyr + elsharptailcyr + ishortsharptailcyr + Ishortsharptailcyr + Emsharptailcyr + Elsharptailcyr + njekomicyr + Njekomicyr + ljekomicyr + tjekomicyr + djekomicyr + zjekomicyr + colon.case + questiondown.case + slash.case + semicolon.case + backslash.case + bar.case + brokenbar.case + dzjekomicyr + Cheabkhcyr + cheabkhcyr + cheabkhtailcyr + sjekomicyr + Sjekomicyr + Ljekomicyr + Tjekomicyr + Djekomicyr + kaaleutcyr + dzzhecyr + haabkhcyr + Dchecyr + dchecyr + dzeabkhcyr + Dzeabkhcyr + palatcombcyr + Cheabkhtailcyr + Dzjekomicyr + Zjekomicyr + rhacyr + Rhacyr + Kaaleutcyr + thousandscyr + titlocombcyr + pokrytiecombcyr + hundredthousandscombcyr + millionscombcyr + Gehookstrokecyr + gehookstrokecyr + Hahookcyr + hahookcyr + Hastrokecyr + uni1C80 + uni1C81 + uni1C82 + uni1C83 + uni1C84 + uni1C85 + uni1C86 + uni1C87 + Zemlya-cy + zemlya-cy + Dzelo-cy + dzelo-cy + DzeReversed-cy + dzeReversed-cy + Iota-cy + iota-cy + Djerv-cy + djerv-cy + UkMonograph-cy + ukMonograph-cy + OmegaBroad-cy + omegaBroad-cy + YerNeutral-cy + yerNeutral-cy + YeruBackYer-cy + yeruBackyer-cy + YatIotified-cy + yatIotified-cy + YuReversed-cy + yuReversed-cy + IotifiedA-cy + iotifieda-cy + YusClosedlittle-cy + yusClosedlittle-cy + YusBlended-cy + yusBlended-cy + YusiotifiedClosedLittle-cy + yusiotifiedClosedLittle-cy + Yn-cy + yn-cy + TseReversed-cy + tseReversed-cy + DeSoft-cy + deSoft-cy + ElSoft-cy + elSoft-cy + EmSoft-cy + emSoft-cy + OMonocular-cy + oMonocular-cy + OBinocular-cy + oBinocular-cy + ODoubleMonocular-cy + oDoubleMonocular-cy + omultiocular-cy + vzmetcomb-cy + tenmillionscomb-cy + hundredmillionscomb-cy + thousandmillionscomb-cy + Dwe-cy + dwe-cy + Dzwe-cy + dzwe-cy + Zhwe-cy + zhwe-cy + Cche-cy + cche-cy + Dzze-cy + dzze-cy + TeWithMiddleHook-cy + tewithmiddlehook-cy + Twe-cy + twe-cy + Tswe-cy + tswe-cy + Tsse-cy + tsse-cy + Tche-cy + tche-cy + Hwe-cy + hwe-cy + shwe-cy + DoubleO-cy + doubleo-cy + CrossedO-cy + crossedo-cy + hastrokecyr + uniF43A + A-cy.accented + E-cy.accented + Ii-cy.accented + O-cy.accented + U-cy.accented + Yeru-cy.accented + Ereversed-cy.accented + Iu-cy.accented + Ia-cy.accented + Io-cy.accented + uniF498 + uniF49A + uniF49C + uniF49E + uniF4C6 + uniF4CC + uniF4D2 + uniF4D4 + uniF4D6 + uniF4D8 + Zetailcyr.BSH + Estailcyr.CHU + uniF50E + uniF510 + uniF512 + uniF514 + uniF516 + uniF518 + uniF51A + uniF51C + uniF51E + Yeru-cymacron + uniF522 + uniF524 + uniF526 + uniF528 + uniF52A + uniF52C + uniF52E + uniF532 + uniF536 + uniF538 + Gestrokecyr.BSH + Estailcyr.BSH + uniF830 + uniF833 + uniF839 + uniF86F + uniF872 + uniF875 + uniF878 + uniF87B + uniF87E + apostrophemod + colontriangularmod + uni1C88 + uniF87F + uniF87C + uniF879 + uniF876 + uniF873 + uniF870 + uniF83A + uniF834 + uniF831 + zetailcyr.BSH + estailcyr.CHU + uniF50F + uniF511 + uniF513 + uniF515 + uniF517 + uniF519 + uniF51B + uniF51D + uniF51F + uniF521 + uniF523 + uniF525 + uniF527 + uniF529 + uniF52B + uniF52D + uniF52F + uniF533 + uniF537 + uniF539 + gestrokecyr.BSH + estailcyr.BSH + uniF499 + uniF49B + uniF49D + uniF49F + uniF4C7 + uniF4CD + uniF4D3 + uniF4D5 + uniF4D7 + uniF4D9 + a-cy.accented + e-cy.accented + ii-cy.accented + o-cy.accented + u-cy.accented + yeru-cy.accented + ereversed-cy.accented + iu-cy.accented + ia-cy.accented + io-cy.accented + uniF43B + at.case + dieresis.alt + dieresiscase.alt + e-cy.hist + omultiocular-cy.alt + iotifieda-cy.hist + be-cy.SRB + ve-cy.BGR + ge-cy.BGR + de-cy.BGR + zhe-cy.BGR + ze-cy.BGR + ii-cy.BGR + iishort-cy.BGR + ka-cy.BGR + el-cy.BGR + pe-cy.BGR + te-cy.BGR + tse-cy.BGR + sha-cy.BGR + shcha-cy.BGR + hardsign-cy.BGR + softsign-cy.BGR + iu-cy.BGR + yatcyr.BGR + eiotifiedcyr.BGR + yusbigiotifiedcyr.BGR + iotifieda-cy.BGR + De-cy.BGR + El-cy.BGR + Ef-cy.BGR + dieresisacute + uniF45D + uniF45E + uniF45F + uniF475 + uniF476 + uniF477 + uniF478 + uniF479 + Elsmallcyr + enclosingcirclecomb + ge-cy.SRB + pe-cy.SRB + te-cy.SRB + gjecyr.SRB + macron-fwd + macron-fwd.alt + macronacute.SRB + iegravecyr.SRB + igravecyr.SRB + flower + knightwhite + knightblack + floretteblack + florettewhite + floretteoutlinedpetalledblackeight + rookblack + bishopblack + leo + heartwhite + diamondwhite-misc + spadewhite + clubwhite + bishopwhite + heart + crossedswords + virgo + thousandscyr.dnom + bracketangleleft + bracketangleright + bracketangleleft.case + bracketangleright.case + + + diff --git a/sources/FixelText-Black.ufo/metainfo.plist b/sources/FixelText-Black.ufo/metainfo.plist new file mode 100644 index 00000000..10582b84 --- /dev/null +++ b/sources/FixelText-Black.ufo/metainfo.plist @@ -0,0 +1,10 @@ + + + + + creator + com.fontlab.ufoLib + formatVersion + 3 + + diff --git a/sources/FixelText-Bold.ufo/features.fea b/sources/FixelText-Bold.ufo/features.fea new file mode 100644 index 00000000..302ade93 --- /dev/null +++ b/sources/FixelText-Bold.ufo/features.fea @@ -0,0 +1,573 @@ +#> classes +#/> otclasses +@ss01_def = [A-cy A AE Aacute Abreve Acircumflex Adieresis Agrave Amacron Aogonek Aring Atilde Em-cy Eng G Gacute Gbreve Gcircumflex Gcommaaccent Gdotaccent Ha-cy Ia-cy J Jcircumflex K Ka-cy Kcommaaccent M N Nacute Ncaron Ncommaaccent Ntilde Q U-cy Ushort-cy V W Wacute Wcircumflex Wdieresis Wgrave X Y Yacute Ycircumflex Ydieresis Z Zacute Zcaron Zdotaccent Zhe-cy a-cy a aacute abreve acircumflex adieresis ae agrave amacron aogonek aring arrowdown arrowdown.case arrowleft arrowleft.case arrowright arrowright.case arrowup arrowup.case atilde b d dcaron dcroat de-cy e eacute ebreve ecaron ecircumflex edieresis edotaccent egrave el-cy emacron eogonek er-cy f f_f f_f_i f_f_l fi fl g gacute gbreve gcircumflex gcommaaccent gdotaccent germandbls hardsign-cy ia-cy ie-cy io-cy l lacute lcaron lcommaaccent ldot ljecyr lslash njecyr numero oe p q softsign-cy t tbar tcaron tcedilla tcommaaccent te-cy ve-cy yen yeru-cy]; +@ss01 = [A-cy.ss01 A.ss01 AE.ss01 Aacute.ss01 Abreve.ss01 Acircumflex.ss01 Adieresis.ss01 Agrave.ss01 Amacron.ss01 Aogonek.ss01 Aring.ss01 Atilde.ss01 Em-cy.ss01 Eng.ss01 G.ss01 Gacute.ss01 Gbreve.ss01 Gcircumflex.ss01 Gcommaaccent.ss01 Gdotaccent.ss01 Ha-cy.ss01 Ia-cy.ss01 J.ss01 Jcircumflex.ss01 K.ss01 Ka-cy.ss01 Kcommaaccent.ss01 M.ss01 N.ss01 Nacute.ss01 Ncaron.ss01 Ncommaaccent.ss01 Ntilde.ss01 Q.ss01 U-cy.ss01 Ushort-cy.ss01 V.ss01 W.ss01 Wacute.ss01 Wcircumflex.ss01 Wdieresis.ss01 Wgrave.ss01 X.ss01 Y.ss01 Yacute.ss01 Ycircumflex.ss01 Ydieresis.ss01 Z.ss01 Zacute.ss01 Zcaron.ss01 Zdotaccent.ss01 Zhe-cy.ss01 a-cy.ss01 a.ss01 aacute.ss01 abreve.ss01 acircumflex.ss01 adieresis.ss01 ae.ss01 agrave.ss01 amacron.ss01 aogonek.ss01 aring.ss01 arrowdown.ss01 arrowdown.ss01.case arrowleft.ss01 arrowleft.ss01.case arrowright.ss01 arrowright.ss01.case arrowup.ss01 arrowup.ss01.case atilde.ss01 b.ss01 d.ss01 dcaron.ss01 dcroat.ss01 de-cy.ss01 e.ss01 eacute.ss01 ebreve.ss01 ecaron.ss01 ecircumflex.ss01 edieresis.ss01 edotaccent.ss01 egrave.ss01 el-cy.ss01 emacron.ss01 eogonek.ss01 er-cy.ss01 f.ss01 f_f.ss01 f_f_i.ss01 f_f_l.ss01 fi.ss01 fl.ss01 g.ss01 gacute.ss01 gbreve.ss01 gcircumflex.ss01 gcommaaccent.ss01 gdotaccent.ss01 germandbls.ss01 hardsign-cy.ss01 ia-cy.ss01 ie-cy.ss01 io-cy.ss01 l.ss01 lacute.ss01 lcaron.ss01 lcommaaccent.ss01 ldot.ss01 ljecyr.ss01 lslash.ss01 njecyr.ss01 numero.ss01 oe.ss01 p.ss01 q.ss01 softsign-cy.ss01 t.ss01 tbar.ss01 tcaron.ss01 tcedilla.ss01 tcommaaccent.ss01 te-cy.ss01 ve-cy.ss01 yen.ss01 yeru-cy.ss01]; +@case = [arrowdown.case arrowdown.ss01.case arrowleft.case arrowleft.ss01.case arrowright.case arrowright.ss01.case arrowup.case arrowup.ss01.case backslash.case bar.case braceleft.case braceright.case bracketleft.case bracketright.case brokenbar.case bullet.case colon.case emdash.case endash.case exclamdown.case guillemetleft.case guillemetright.case guilsinglleft.case guilsinglright.case hyphen.case parenleft.case parenright.case questiondown.case semicolon.case at.case bracketangleleft.case bracketangleright.case slash.case]; +@case_def = [arrowdown arrowdown.ss01 arrowleft arrowleft.ss01 arrowright arrowright.ss01 arrowup arrowup.ss01 backslash bar braceleft braceright bracketleft bracketright brokenbar bullet colon emdash endash exclamdown guillemetleft guillemetright guilsinglleft guilsinglright hyphen parenleft parenright questiondown semicolon at bracketangleleft bracketangleright slash]; +@cpsp = [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 Agrave Aacute Acircumflex Atilde Adieresis Aring AE Ccedilla Egrave Eacute Ecircumflex Edieresis Igrave Iacute Icircumflex Idieresis Eth Ntilde Ograve Oacute Ocircumflex Otilde Odieresis Oslash Ugrave Uacute Ucircumflex Udieresis Yacute Thorn Amacron Abreve Aogonek Cacute Ccircumflex Cdotaccent Ccaron Dcaron Dcroat Emacron Ebreve Edotaccent Eogonek Ecaron Gcircumflex Gbreve Gdotaccent Gcommaaccent Hcircumflex Hbar Itilde Imacron Ibreve Iogonek Idotaccent IJ Jcircumflex Kcommaaccent Lacute Lcommaaccent Lcaron Ldot Lslash Nacute Ncommaaccent Ncaron Eng Omacron Obreve Ohungarumlaut OE Racute Rcommaaccent Rcaron Sacute Scircumflex Scedilla Scaron Tcedilla Tcaron Tbar Utilde Umacron Ubreve Uring Uhungarumlaut Uogonek Wcircumflex Ycircumflex Ydieresis Zacute Zdotaccent Zcaron Schwa Acaron Gacute AEacute Oslashacute Scommaaccent Tcommaaccent Delta Omega Iegravecyr uniF43A A-cy.accented E-cy.accented Ii-cy.accented O-cy.accented U-cy.accented Yeru-cy.accented Ereversed-cy.accented Iu-cy.accented Ia-cy.accented Io-cy.accented uniF498 uniF49A uniF49C uniF49E uniF4C6 uniF4CC uniF4D2 uniF4D4 uniF4D6 uniF4D8 uniF50E uniF510 uniF512 uniF514 uniF516 uniF518 uniF51A uniF51C uniF51E Yeru-cymacron uniF522 uniF524 uniF526 uniF528 uniF52A uniF52C uniF52E uniF532 uniF536 uniF538 uniF830 uniF833 uniF839 uniF86F uniF872 uniF875 uniF878 uniF87B uniF87E Io-cy Djecyr Gjecyr E-cy Dze-cy I-cy Yi-cy Jecyr Ljecyr Njecyr Tshecyr Kjecyr Igravecyr Ushort-cy Dzhecyr A-cy Be-cy Ve-cy Ge-cy De-cy Ie-cy Zhe-cy Ze-cy Ii-cy Iishort-cy Ka-cy El-cy Em-cy En-cy O-cy Pe-cy Er-cy Es-cy Te-cy U-cy Ef-cy Ha-cy Tse-cy Che-cy Sha-cy Shcha-cy Hardsign-cy Yeru-cy Softsign-cy Ereversed-cy Iu-cy Ia-cy Omegacyr Yatcyr Eiotifiedcyr Yuslittlecyr Yuslittleiotifiedcyr Yusbigcyr Yusbigiotifiedcyr Ksicyr Psicyr Fitacyr Izhitsacyr Izhitsagravedblcyr Ukcyr Omegaroundcyr Omegatitlocyr Otcyr Koppacyr Ishortsharptailcyr Semisoftcyr Ertickcyr Gheupturn-cy Gestrokecyr Gehookcyr Zhetailcyr Zetailcyr Katailcyr Kaverticalstrokecyr Kastrokecyr Kabashkcyr Entailcyr Engecyr Pehookcyr Haabkhcyr Estailcyr Tetailcyr Ustraightcyr Ustraightstrokecyr Xatailcyr Tetsecyr Chetailcyr Chevertcyr Shhacyr Cheabkhcyr Cheabkhtailcyr Palochkacyr Zhebrevecyr Kahookcyr Elsharptailcyr Enhookcyr Ensharptailcyr Chekhakascyr Emsharptailcyr Abrevecyr Adieresiscyr Aiecyr Iebrevecyr Schwacyr Schwadieresiscyr Zhedieresiscyr Zedieresiscyr Dzeabkhcyr Imacroncyr Idieresiscyr Odieresiscyr Obarcyr Obardieresiscyr Ereverseddieresiscyr Umacroncyr Udieresiscyr Uacutedblcyr Chedieresiscyr Getailcyr Ylongdieresiscyr Gehookstrokecyr Hahookcyr Hastrokecyr Dekomicyr Djekomicyr Zjekomicyr Dzjekomicyr Ljekomicyr Njekomicyr Sjekomicyr Tjekomicyr Reversedzecyr Elhookcyr Lhacyr Rhacyr Yaecyr Qacyr Wecyr Kaaleutcyr Elmiddlehookcyr Enmiddlehookcyr Petailcyr Shhatailcyr Enhookleftcyr Dzzhecyr Dchecyr Eltailcyr Wgrave Wacute Wdieresis Germandbls uni1EBC Zemlya-cy Dzelo-cy DzeReversed-cy Iota-cy Djerv-cy UkMonograph-cy OmegaBroad-cy YerNeutral-cy YeruBackYer-cy YatIotified-cy YuReversed-cy IotifiedA-cy YusClosedlittle-cy YusBlended-cy YusiotifiedClosedLittle-cy Yn-cy TseReversed-cy DeSoft-cy ElSoft-cy EmSoft-cy OMonocular-cy OBinocular-cy ODoubleMonocular-cy Dwe-cy Dzwe-cy Zhwe-cy Cche-cy Dzze-cy TeWithMiddleHook-cy Twe-cy Tswe-cy Tsse-cy Tche-cy Hwe-cy Shwe-cy DoubleO-cy CrossedO-cy A-cy.ss01 A.ss01 AE.ss01 Aacute.ss01 Abreve.ss01 Acircumflex.ss01 Adieresis.ss01 Agrave.ss01 Amacron.ss01 Aogonek.ss01 Aring.ss01 Atilde.ss01 Em-cy.ss01 Eng.ss01 G.ss01 Gacute.ss01 Gbreve.ss01 Gcircumflex.ss01 Gcommaaccent.ss01 Gdotaccent.ss01 Ha-cy.ss01 Ia-cy.ss01 J.ss01 Jcircumflex.ss01 K.ss01 Ka-cy.ss01 Kcommaaccent.ss01 M.ss01 N.ss01 Nacute.ss01 Ncaron.ss01 Ncommaaccent.ss01 Ntilde.ss01 Q.ss01 U-cy.ss01 Ushort-cy.ss01 V.ss01 W.ss01 Wacute.ss01 Wcircumflex.ss01 Wdieresis.ss01 Wgrave.ss01 X.ss01 Y.ss01 Yacute.ss01 Ycircumflex.ss01 Ydieresis.ss01 Z.ss01 Zacute.ss01 Zcaron.ss01 Zdotaccent.ss01 Zetailcyr.BSH Gestrokecyr.BSH Estailcyr.BSH Estailcyr.CHU Zhe-cy.ss01]; +@locl_BGR = [De-cy.BGR Ef-cy.BGR El-cy.BGR de-cy.BGR eiotifiedcyr.BGR el-cy.BGR ge-cy.BGR hardsign-cy.BGR ii-cy.BGR iishort-cy.BGR iotifieda-cy.BGR iu-cy.BGR ka-cy.BGR pe-cy.BGR sha-cy.BGR shcha-cy.BGR softsign-cy.BGR te-cy.BGR tse-cy.BGR ve-cy.BGR yatcyr.BGR yusbigiotifiedcyr.BGR ze-cy.BGR zhe-cy.BGR]; +@locl_def = [De-cy Ef-cy El-cy de-cy eiotifiedcyr el-cy ge-cy hardsign-cy ii-cy iishort-cy iotifieda-cy iu-cy ka-cy pe-cy sha-cy shcha-cy softsign-cy te-cy tse-cy ve-cy yatcyr yusbigiotifiedcyr ze-cy zhe-cy]; +@locl.SRB = [be-cy.SRB iegravecyr.SRB igravecyr.SRB]; +@loclSRB_def = [be-cy iegravecyr igravecyr]; +@accent = [grave acute.case grave.case acute]; +@pics = [neptune leo virgo bishopwhite knightwhite rookblack bishopblack knightblack heartwhite diamondwhite-misc spadewhite heart clubwhite crossedswords flower floretteblack florettewhite floretteoutlinedpetalledblackeight]; +@pics_def = [A B C D E F G H I J K L M N O P Q R]; +#/< otclasses + +#/> tags +@tag.omultiocular-cy.alt = [omultiocular-cy]; +@tag.yi-cy_yi-cy.alt = [uniE000]; +#/< tags +#< classes + +# automatic +@Uppercase = [ A Aacute Abreve Acircumflex Adieresis Agrave Amacron Aogonek Aring Atilde AE B C Cacute Ccaron Ccedilla Ccircumflex Cdotaccent D Eth Dcaron Dcroat E Eacute Ebreve Ecaron Ecircumflex Edieresis Edotaccent Egrave Emacron Eogonek F G Gacute Gbreve Gcircumflex Gcommaaccent Gdotaccent H Hbar Hcircumflex I IJ Iacute Ibreve Icircumflex Idieresis Idotaccent Igrave Imacron Iogonek Itilde J Jcircumflex K Kcommaaccent L Lacute Lcaron Lcommaaccent Ldot Lslash M N Nacute Ncaron Ncommaaccent Eng Ntilde O Oacute Obreve Ocircumflex Odieresis Ograve Ohungarumlaut Omacron Oslash Otilde OE P Thorn Q R Racute Rcaron Rcommaaccent S Sacute Scaron Scedilla Scircumflex Scommaaccent Germandbls T Tbar Tcaron Tcedilla Tcommaaccent U Uacute Ubreve Ucircumflex Udieresis Ugrave Uhungarumlaut Umacron Uogonek Uring Utilde V W Wacute Wcircumflex Wdieresis Wgrave X Y Yacute Ycircumflex Ydieresis Z Zacute Zcaron Zdotaccent A.ss01 Aacute.ss01 Abreve.ss01 Acircumflex.ss01 Adieresis.ss01 Agrave.ss01 Amacron.ss01 Aogonek.ss01 Aring.ss01 Atilde.ss01 AE.ss01 G.ss01 Gacute.ss01 Gbreve.ss01 Gcircumflex.ss01 Gcommaaccent.ss01 Gdotaccent.ss01 J.ss01 Jcircumflex.ss01 K.ss01 Kcommaaccent.ss01 M.ss01 N.ss01 Nacute.ss01 Ncaron.ss01 Ncommaaccent.ss01 Eng.ss01 Ntilde.ss01 Q.ss01 V.ss01 W.ss01 Wacute.ss01 Wcircumflex.ss01 Wdieresis.ss01 Wgrave.ss01 X.ss01 Y.ss01 Yacute.ss01 Ycircumflex.ss01 Ydieresis.ss01 Z.ss01 Zacute.ss01 Zcaron.ss01 Zdotaccent.ss01 A-cy Be-cy Ve-cy Ge-cy Gheupturn-cy De-cy Ie-cy Io-cy Zhe-cy Ze-cy Ii-cy Iishort-cy Ka-cy El-cy Em-cy En-cy O-cy Pe-cy Er-cy Es-cy Te-cy U-cy Ushort-cy Ef-cy Ha-cy Che-cy Tse-cy Sha-cy Shcha-cy Softsign-cy Hardsign-cy Yeru-cy Dze-cy E-cy Ereversed-cy I-cy Yi-cy Iu-cy Ia-cy A-cy.ss01 Zhe-cy.ss01 Ka-cy.ss01 Em-cy.ss01 U-cy.ss01 Ushort-cy.ss01 Ha-cy.ss01 Ia-cy.ss01 ]; + +# Prefix: Languagesystems +# automatic +languagesystem DFLT dflt; + +languagesystem latn dflt; +languagesystem latn ROM; +languagesystem latn MOL; +languagesystem latn CAT; +languagesystem cyrl dflt; +languagesystem cyrl BGR; +languagesystem cyrl BSH; +languagesystem cyrl CHU; +languagesystem cyrl SRB; +languagesystem cyrl MKD; + +lookup liga_accent { + sub @accent by [grave grave grave grave]; +} liga_accent; +feature aalt { +# Access All Alternates + +#> feature + feature locl; + feature sups; + feature case; + feature lnum; + feature pnum; + feature tnum; + feature onum; + feature salt; + feature ss01; + feature hist; +#< feature +} aalt; +feature ccmp { +# automatic +lookup ccmp_Other_1 { + @Markscomb = [dieresis dotaccent grave acute hungarumlaut circumflex caron breve ring tilde macron]; + @MarkscombCase = [dieresis.case dotaccent.case grave.case acute.case hungarumlaut.case circumflex.case caron.case breve.case ring.case tilde.case macron.case]; + sub @Markscomb @Markscomb' by @MarkscombCase; + sub @cpsp @Markscomb' by @MarkscombCase; +} ccmp_Other_1; + +lookup ccmp_Other_2 { + sub @Markscomb' @MarkscombCase by @MarkscombCase; + sub @MarkscombCase @Markscomb' by @MarkscombCase; +} ccmp_Other_2; +} ccmp; + +feature locl { +# automatic + +script latn; + language ROM; + language MOL; + sub Scedilla by Scommaaccent; + sub scedilla by scommaaccent; + sub Tcedilla by Tcommaaccent; + sub tcedilla by tcommaaccent; + +script latn; + language CAT; + sub l' periodcentered' l by ldot; + sub L' periodcentered' L by Ldot; + +script cyrl; # Cyrillic + language SRB ; # Serbian + + lookup locl_SRB_MCD { + # GSUB lookup 20, type 11 (Single) + sub @loclSRB_def by @locl.SRB; + } locl_SRB_MCD; + + language MKD ; # Serbian + lookup locl_SRB_MCD; + + language BSH ; # Bashkir + sub [Gestrokecyr gestrokecyr Zetailcyr zetailcyr] by [Gestrokecyr.BSH gestrokecyr.BSH Zetailcyr.BSH zetailcyr.BSH]; + sub [Estailcyr estailcyr] by [Estailcyr.BSH estailcyr.BSH]; + + language CHU ; # Chuvash + sub [Estailcyr estailcyr] by [Estailcyr.CHU estailcyr.CHU]; + + language BGR ; # Bulgarian + sub @locl_def by @locl_BGR; + +} locl; + +feature sups { +# Superscript + +#> feature + sub one by onesuperior; + sub three by threesuperior; + sub two by twosuperior; +#< feature +} sups; +feature ordn { +# Ordinals + +#> feature + sub [zero one two three four five six seven eight nine] [A a]' by ordfeminine; + sub [zero one two three four five six seven eight nine] [O o]' by ordmasculine; + sub N o period by numero; +#< feature +} ordn; +feature case { +# Case Sensitive Forms + +#> feature + + sub @case_def by @case; + +#< feature +} case; +feature liga { +# Standard Ligatures + +#> feature +sub f f i by f_f_i; +sub f f l by f_f_l; +sub f f by f_f; +sub f i by fi; +sub f l by fl; +sub yi-cy yi-cy by uniE000; +sub hyphen greater by arrowright; +sub less hyphen by arrowleft; +sub backslash bar slash by arrowdown; +sub slash bar backslash by arrowup; + + lookup accent_2 { + sub E-cy @accent' lookup liga_accent; + sub I-cy @accent' lookup liga_accent; + sub Yi-cy @accent' lookup liga_accent; + sub A-cy @accent' lookup liga_accent; + sub Ie-cy @accent' lookup liga_accent; + sub Ii-cy @accent' lookup liga_accent; + sub O-cy @accent' lookup liga_accent; + sub U-cy @accent' lookup liga_accent; + sub Yeru-cy @accent' lookup liga_accent; + sub Ereversed-cy @accent' lookup liga_accent; + sub Iu-cy @accent' lookup liga_accent; + sub Ia-cy @accent' lookup liga_accent; + sub Io-cy @accent' lookup liga_accent; + sub Yatcyr @accent' lookup liga_accent; + + sub e-cy @accent' lookup liga_accent; + sub i-cy @accent' lookup liga_accent; + sub yi-cy @accent' lookup liga_accent; + sub a-cy @accent' lookup liga_accent; + sub ie-cy @accent' lookup liga_accent; + sub ii-cy @accent' lookup liga_accent; + sub o-cy @accent' lookup liga_accent; + sub u-cy @accent' lookup liga_accent; + sub yeru-cy @accent' lookup liga_accent; + sub ereversed-cy @accent' lookup liga_accent; + sub iu-cy @accent' lookup liga_accent; + sub ia-cy @accent' lookup liga_accent; + sub io-cy @accent' lookup liga_accent; + sub yatcyr @accent' lookup liga_accent; + } accent_2; + + lookup accent_3 { + sub E-cy grave by uniF45D; + sub I-cy grave by uniF45E; + sub Yi-cy grave by uniF45F; + sub A-cy grave by A-cy.accented; + sub Ie-cy grave by E-cy.accented; + sub Ii-cy grave by Ii-cy.accented; + sub O-cy grave by O-cy.accented; + sub U-cy grave by U-cy.accented; + sub Yeru-cy grave by Yeru-cy.accented; + sub Ereversed-cy grave by Ereversed-cy.accented; + sub Iu-cy grave by Iu-cy.accented; + sub Ia-cy grave by Ia-cy.accented; + sub Io-cy grave by Io-cy.accented; + sub Yatcyr grave by uniF478; + + sub e-cy grave by uniF475; + sub i-cy grave by uniF476; + sub yi-cy grave by uniF477; + sub a-cy grave by a-cy.accented; + sub ie-cy grave by e-cy.accented; + sub ii-cy grave by ii-cy.accented; + sub o-cy grave by o-cy.accented; + sub u-cy grave by u-cy.accented; + sub yeru-cy grave by yeru-cy.accented; + sub ereversed-cy grave by ereversed-cy.accented; + sub iu-cy grave by iu-cy.accented; + sub ia-cy grave by ia-cy.accented; + sub io-cy grave by io-cy.accented; + sub yatcyr grave by uniF479; + } accent_3; + +#< feature +} liga; +feature dlig { +# Discretionary Ligatures + +#> feature + +sub M a c P a w l o g o by uniE01A; +sub M P a w l o g o by uniE01A; +sub M P l o g o by uniE01A; +sub M A C P A W L O G O by uniE01A; +sub m a c p a w l o g o by uniE01A; +sub t r i d e n t by neptune; +sub t r y z u b by neptune; +sub u k r a i n e s i g n by neptune; +sub T R I D E N T by neptune; +sub T R Y Z U B by neptune; +sub U k r a i n e S i g n by neptune; +sub T r y z u b by neptune; +sub T r i d e n t by neptune; +sub Te-cy Er-cy Ii-cy Ze-cy U-cy Be-cy by neptune; + +#< feature +} dlig; +feature lnum { +# Lining Figures + +#> feature + sub eight.osf by eight.tf; + sub eight by eight.tf; + sub five.osf by five.tf; + sub five by five.tf; + sub four.osf by four.tf; + sub four by four.tf; + sub nine.osf by nine.tf; + sub nine by nine.tf; + sub one.osf by one.tf; + sub one by one.tf; + sub seven.osf by seven.tf; + sub seven by seven.tf; + sub six.osf by six.tf; + sub six by six.tf; + sub three.osf by three.tf; + sub three by three.tf; + sub two.osf by two.tf; + sub two by two.tf; + sub zero.osf by zero.tf; + sub zero by zero.tf; +#< feature +} lnum; +feature pnum { +# Proportional Figures + +#> feature + sub eight.tf by eight.osf; + sub eight by eight.osf; + sub five.tf by five.osf; + sub five by five.osf; + sub four.tf by four.osf; + sub four by four.osf; + sub nine.tf by nine.osf; + sub nine by nine.osf; + sub one.tf by one.osf; + sub one by one.osf; + sub seven.tf by seven.osf; + sub seven by seven.osf; + sub six.tf by six.osf; + sub six by six.osf; + sub three.tf by three.osf; + sub three by three.osf; + sub two.tf by two.osf; + sub two by two.osf; + sub zero.tf by zero.osf; + sub zero by zero.osf; +#< feature +} pnum; +feature tnum { +# Tabular Figures + +#> feature + sub eight by eight.tf; + sub eight.osf by eight.tf; + sub five by five.tf; + sub five.osf by five.tf; + sub four by four.tf; + sub four.osf by four.tf; + sub nine by nine.tf; + sub nine.osf by nine.tf; + sub one by one.tf; + sub one.osf by one.tf; + sub seven by seven.tf; + sub seven.osf by seven.tf; + sub six by six.tf; + sub six.osf by six.tf; + sub three by three.tf; + sub three.osf by three.tf; + sub two by two.tf; + sub two.osf by two.tf; + sub zero by zero.tf; + sub zero.osf by zero.tf; +#< feature +} tnum; +feature onum { +# Oldstyle Figures + +#> feature + sub eight by eight.osf; + sub eight.tf by eight.osf; + sub five by five.osf; + sub five.tf by five.osf; + sub four by four.osf; + sub four.tf by four.osf; + sub nine by nine.osf; + sub nine.tf by nine.osf; + sub one by one.osf; + sub one.tf by one.osf; + sub seven by seven.osf; + sub seven.tf by seven.osf; + sub six by six.osf; + sub six.tf by six.osf; + sub three by three.osf; + sub three.tf by three.osf; + sub two by two.osf; + sub two.tf by two.osf; + sub zero by zero.osf; + sub zero.tf by zero.osf; +#< feature +} onum; +feature salt { +# Stylistic Alternates + +#> feature + sub A from [A.ss01]; + sub A-cy from [A-cy.ss01]; + sub AE from [AE.ss01]; + sub Aacute from [Aacute.ss01]; + sub Abreve from [Abreve.ss01]; + sub Acircumflex from [Acircumflex.ss01]; + sub Adieresis from [Adieresis.ss01]; + sub Agrave from [Agrave.ss01]; + sub Amacron from [Amacron.ss01]; + sub Aogonek from [Aogonek.ss01]; + sub Aring from [Aring.ss01]; + sub Atilde from [Atilde.ss01]; + sub Em-cy from [Em-cy.ss01]; + sub Eng from [Eng.ss01]; + sub G from [G.ss01]; + sub Gacute from [Gacute.ss01]; + sub Gbreve from [Gbreve.ss01]; + sub Gcircumflex from [Gcircumflex.ss01]; + sub Gcommaaccent from [Gcommaaccent.ss01]; + sub Gdotaccent from [Gdotaccent.ss01]; + sub Ha-cy from [Ha-cy.ss01]; + sub Ia-cy from [Ia-cy.ss01]; + sub J from [J.ss01]; + sub Jcircumflex from [Jcircumflex.ss01]; + sub K from [K.ss01]; + sub Ka-cy from [Ka-cy.ss01]; + sub Kcommaaccent from [Kcommaaccent.ss01]; + sub M from [M.ss01]; + sub N from [N.ss01]; + sub Nacute from [Nacute.ss01]; + sub Ncaron from [Ncaron.ss01]; + sub Ncommaaccent from [Ncommaaccent.ss01]; + sub Ntilde from [Ntilde.ss01]; + sub Q from [Q.ss01]; + sub U-cy from [U-cy.ss01]; + sub Ushort-cy from [Ushort-cy.ss01]; + sub V from [V.ss01]; + sub W from [W.ss01]; + sub Wacute from [Wacute.ss01]; + sub Wcircumflex from [Wcircumflex.ss01]; + sub Wdieresis from [Wdieresis.ss01]; + sub Wgrave from [Wgrave.ss01]; + sub X from [X.ss01]; + sub Y from [Y.ss01]; + sub Yacute from [Yacute.ss01]; + sub Ycircumflex from [Ycircumflex.ss01]; + sub Ydieresis from [Ydieresis.ss01]; + sub Z from [Z.ss01]; + sub Zacute from [Zacute.ss01]; + sub Zcaron from [Zcaron.ss01]; + sub Zdotaccent from [Zdotaccent.ss01]; + sub Zhe-cy from [Zhe-cy.ss01]; + sub a from [a.ss01]; + sub a-cy from [a-cy.ss01]; + sub aacute from [aacute.ss01]; + sub abreve from [abreve.ss01]; + sub acircumflex from [acircumflex.ss01]; + sub adieresis from [adieresis.ss01]; + sub ae from [ae.ss01]; + sub agrave from [agrave.ss01]; + sub amacron from [amacron.ss01]; + sub aogonek from [aogonek.ss01]; + sub aring from [aring.ss01]; + sub arrowdown from [arrowdown.ss01]; + sub arrowleft from [arrowleft.ss01]; + sub arrowright from [arrowright.ss01]; + sub arrowup from [arrowup.ss01]; + sub atilde from [atilde.ss01]; + sub b from [b.ss01]; + sub caron from [caron.salt]; + sub commaaccentcomb from [commaaccentcomb.salt]; + sub d from [d.ss01]; + sub dcaron from [dcaron.ss01]; + sub dcroat from [dcroat.ss01]; + sub de-cy from [de-cy.ss01]; + sub e from [e.ss01]; + sub eacute from [eacute.ss01]; + sub ebreve from [ebreve.ss01]; + sub ecaron from [ecaron.ss01]; + sub ecircumflex from [ecircumflex.ss01]; + sub edieresis from [edieresis.ss01]; + sub edotaccent from [edotaccent.ss01]; + sub egrave from [egrave.ss01]; + sub el-cy from [el-cy.ss01]; + sub emacron from [emacron.ss01]; + sub eogonek from [eogonek.ss01]; + sub er-cy from [er-cy.ss01]; + sub f from [f.ss01]; + sub f_f from [f_f.ss01]; + sub f_f_i from [f_f_i.ss01]; + sub f_f_l from [f_f_l.ss01]; + sub fi from [fi.ss01]; + sub fl from [fl.ss01]; + sub g from [g.ss01]; + sub gacute from [gacute.ss01]; + sub gbreve from [gbreve.ss01]; + sub gcircumflex from [gcircumflex.ss01]; + sub gcommaaccent from [gcommaaccent.ss01]; + sub gdotaccent from [gdotaccent.ss01]; + sub germandbls from [germandbls.ss01]; + sub hardsign-cy from [hardsign-cy.ss01]; + sub ia-cy from [ia-cy.ss01]; + sub ie-cy from [ie-cy.ss01]; + sub io-cy from [io-cy.ss01]; + sub l from [l.ss01]; + sub lacute from [lacute.ss01]; + sub lcaron from [lcaron.ss01]; + sub lcommaaccent from [lcommaaccent.ss01]; + sub ldot from [ldot.ss01]; + sub ljecyr from [ljecyr.ss01]; + sub lslash from [lslash.ss01]; + sub njecyr from [njecyr.ss01]; + sub numero from [numero.ss01]; + sub oe from [oe.ss01]; + sub p from [p.ss01]; + sub q from [q.ss01]; + sub softsign-cy from [softsign-cy.ss01]; + sub t from [t.ss01]; + sub tbar from [tbar.ss01]; + sub tcaron from [tcaron.ss01]; + sub tcedilla from [tcedilla.ss01]; + sub tcommaaccent from [tcommaaccent.ss01]; + sub te-cy from [te-cy.ss01]; + sub uniE000 from [uniE000.alt]; + sub ve-cy from [ve-cy.ss01]; + sub yen from [yen.ss01]; + sub yeru-cy from [yeru-cy.ss01]; +#< feature +} salt; +feature ss03 { +# Stylistic Set 01–20 + +#> feature + featureNames { + name "Bulgarian forms"; + name 1 "Bulgarian forms"; + }; + + sub @locl_def by @locl_BGR; + +#< feature +} ss03; +feature ss04 { +# Stylistic Set 01–20 + +#> feature + featureNames { + name "Serbian/Macedonian forms"; + name 1 "Serbian/Macedonian forms"; + }; + + sub @loclSRB_def by @locl.SRB; + +#< feature +} ss04; +feature ss01 { +# Stylistic Set 01–20 + +#> feature + + featureNames { + name "Humanistic forms"; + name 1 "Humanistic forms"; + }; + + sub @ss01_def by @ss01; + +#< feature +} ss01; +feature ss05 { +# Stylistic Set 01–20 + +#> feature + + featureNames { + name "Ukrainian pictograms"; + name 1 "Ukrainian pictograms"; + }; + + sub @pics_def by @pics; + +#< feature +} ss05; +feature hist { +# Historical Forms + +#> feature + sub e-cy by e-cy.hist; + sub s by longs; +#< feature +} hist; +feature frac { +# Fractions + +#> feature +lookup frac_precomposed { + + sub one slash four by onequarter; + sub one slash two by onehalf; + sub three slash four by threequarters; + sub one fraction four by onequarter; + sub one fraction two by onehalf; + sub three fraction four by threequarters; +} frac_precomposed; +#< feature +} frac; +feature cpsp { +# Capital Spacing + +#> feature + + pos @cpsp <5 0 10 0>; + +#< feature +} cpsp; +feature dnom { +# Denominator + +#> feature + sub thousandscyr by thousandscyr.dnom; +#< feature +} dnom; diff --git a/sources/FixelText-Bold.ufo/fontinfo.plist b/sources/FixelText-Bold.ufo/fontinfo.plist new file mode 100644 index 00000000..2ec30770 --- /dev/null +++ b/sources/FixelText-Bold.ufo/fontinfo.plist @@ -0,0 +1,207 @@ + + + + + ascender + 720 + capHeight + 700 + descender + -200 + familyName + Fixel Text + guidelines + + + angle + 0 + name + m + x + 0 + y + -234.8 + + + angle + 0 + name + m + x + 0 + y + 189 + + + italicAngle + 0 + openTypeGaspRangeRecords + + + rangeGaspBehavior + + 0 + 1 + 2 + 3 + + rangeMaxPPEM + 65535 + + + openTypeHeadCreated + 2023/09/05 09:25:23 + openTypeHeadFlags + + + openTypeHheaAscender + 720 + openTypeHheaCaretOffset + -0 + openTypeHheaDescender + -190 + openTypeHheaLineGap + 100 + openTypeNameDesigner + AlfaBravo + openTypeNameDesignerURL + https://alfabravo.design/ + openTypeNameManufacturer + Kyrylo Tkachov, Marchela Mozhyna, Serhii Makarenko, Maria Weinstein, Zakhar Kryvoshyya + + openTypeNameManufacturerURL + https://macpaw.com/ + openTypeNamePreferredFamilyName + Fixel Text + openTypeNamePreferredSubfamilyName + Bold + openTypeNameVersion + Version 1.200 + openTypeOS2CodePageRanges + + 0 + 1 + 2 + 4 + 7 + 29 + + openTypeOS2Panose + + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + + openTypeOS2Selection + + + openTypeOS2StrikeoutPosition + 300 + openTypeOS2StrikeoutSize + 50 + openTypeOS2SubscriptXOffset + -0 + openTypeOS2SubscriptXSize + 650 + openTypeOS2SubscriptYOffset + 75 + openTypeOS2SubscriptYSize + 600 + openTypeOS2SuperscriptXOffset + -0 + openTypeOS2SuperscriptXSize + 650 + openTypeOS2SuperscriptYOffset + 350 + openTypeOS2SuperscriptYSize + 600 + openTypeOS2Type + + 2 + + openTypeOS2TypoAscender + 720 + openTypeOS2TypoDescender + -200 + openTypeOS2TypoLineGap + 290 + openTypeOS2UnicodeRanges + + 0 + 1 + 2 + 9 + 31 + 33 + 60 + + openTypeOS2WeightClass + 700 + openTypeOS2WidthClass + 4 + openTypeOS2WinAscent + 750 + openTypeOS2WinDescent + 250 + postscriptBlueFuzz + 1 + postscriptBlueScale + 0.039625 + postscriptBlueShift + 7 + postscriptBlueValues + + -20 + 0 + + postscriptFontName + FixelText-Bold + postscriptForceBold + + postscriptFullName + Fixel Text Bold + postscriptIsFixedPitch + + postscriptStemSnapH + + 69 + 74 + 76 + 80 + 99 + + postscriptStemSnapV + + 74 + 80 + 93 + + postscriptUnderlinePosition + -100 + postscriptUnderlineThickness + 50 + postscriptWeightName + Bold + styleMapFamilyName + Fixel Text Bold + styleMapStyleName + bold + styleName + Bold + unitsPerEm + 1000 + versionMajor + 1 + versionMinor + 200 + xHeight + 520 + + diff --git a/sources/FixelText-Bold.ufo/glyphs/A_-cy.accented.glif b/sources/FixelText-Bold.ufo/glyphs/A_-cy.accented.glif new file mode 100644 index 00000000..87389401 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/A_-cy.accented.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+acute.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/A_-cy.glif b/sources/FixelText-Bold.ufo/glyphs/A_-cy.glif new file mode 100644 index 00000000..6e92c7b4 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/A_-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/A_-cy.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/A_-cy.ss01.glif new file mode 100644 index 00000000..15f0bae9 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/A_-cy.ss01.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + com.fontlab.recipe + A + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/A_.glif b/sources/FixelText-Bold.ufo/glyphs/A_.glif new file mode 100644 index 00000000..5157e490 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/A_.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/A_.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/A_.ss01.glif new file mode 100644 index 00000000..20d72434 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/A_.ss01.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/A_E_.glif b/sources/FixelText-Bold.ufo/glyphs/A_E_.glif new file mode 100644 index 00000000..1ed61c36 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/A_E_.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + A + com.fontlab.metricsRight + E + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/A_E_.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/A_E_.ss01.glif new file mode 100644 index 00000000..af5e96af --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/A_E_.ss01.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + A.ss01 + com.fontlab.metricsRight + E + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/A_E_acute.glif b/sources/FixelText-Bold.ufo/glyphs/A_E_acute.glif new file mode 100644 index 00000000..b78c353c --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/A_E_acute.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + AE+acute.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/A_acute.glif b/sources/FixelText-Bold.ufo/glyphs/A_acute.glif new file mode 100644 index 00000000..ad742a93 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/A_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+acute.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/A_acute.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/A_acute.ss01.glif new file mode 100644 index 00000000..c6ae2d65 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/A_acute.ss01.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + A.ss01+acute.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/A_breve.glif b/sources/FixelText-Bold.ufo/glyphs/A_breve.glif new file mode 100644 index 00000000..6b8f43be --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/A_breve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+breve.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/A_breve.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/A_breve.ss01.glif new file mode 100644 index 00000000..44e027a4 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/A_breve.ss01.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + A.ss01+breve.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/A_brevecyr.glif b/sources/FixelText-Bold.ufo/glyphs/A_brevecyr.glif new file mode 100644 index 00000000..a800eca0 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/A_brevecyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+breve.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/A_caron.glif b/sources/FixelText-Bold.ufo/glyphs/A_caron.glif new file mode 100644 index 00000000..db60713d --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/A_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+caron.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/A_circumflex.glif b/sources/FixelText-Bold.ufo/glyphs/A_circumflex.glif new file mode 100644 index 00000000..56f64a2c --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/A_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+circumflex.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/A_circumflex.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/A_circumflex.ss01.glif new file mode 100644 index 00000000..0929b3d3 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/A_circumflex.ss01.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + A.ss01+circumflex.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/A_dieresis.glif b/sources/FixelText-Bold.ufo/glyphs/A_dieresis.glif new file mode 100644 index 00000000..ef879fbb --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/A_dieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+dieresis.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/A_dieresis.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/A_dieresis.ss01.glif new file mode 100644 index 00000000..86af33e6 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/A_dieresis.ss01.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + A.ss01+dieresis.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/A_dieresiscyr.glif b/sources/FixelText-Bold.ufo/glyphs/A_dieresiscyr.glif new file mode 100644 index 00000000..6c487bd5 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/A_dieresiscyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/A_grave.glif b/sources/FixelText-Bold.ufo/glyphs/A_grave.glif new file mode 100644 index 00000000..c5c22dea --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/A_grave.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+grave.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/A_grave.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/A_grave.ss01.glif new file mode 100644 index 00000000..2dea1770 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/A_grave.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A.ss01+grave.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/A_iecyr.glif b/sources/FixelText-Bold.ufo/glyphs/A_iecyr.glif new file mode 100644 index 00000000..4486a1ef --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/A_iecyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + AE + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/A_macron.glif b/sources/FixelText-Bold.ufo/glyphs/A_macron.glif new file mode 100644 index 00000000..9d4a1cd3 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/A_macron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+macron.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/A_macron.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/A_macron.ss01.glif new file mode 100644 index 00000000..38e0f929 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/A_macron.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A.ss01+macron.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/A_ogonek.glif b/sources/FixelText-Bold.ufo/glyphs/A_ogonek.glif new file mode 100644 index 00000000..f8cf6e88 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/A_ogonek.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+ogonek + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/A_ogonek.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/A_ogonek.ss01.glif new file mode 100644 index 00000000..4b577f0a --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/A_ogonek.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A.ss01+ogonek + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/A_ring.glif b/sources/FixelText-Bold.ufo/glyphs/A_ring.glif new file mode 100644 index 00000000..4ff6a3f9 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/A_ring.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+ring.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/A_ring.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/A_ring.ss01.glif new file mode 100644 index 00000000..d5ce2750 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/A_ring.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A.ss01+ring.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/A_tilde.glif b/sources/FixelText-Bold.ufo/glyphs/A_tilde.glif new file mode 100644 index 00000000..0dbcf72b --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/A_tilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+tilde.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/A_tilde.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/A_tilde.ss01.glif new file mode 100644 index 00000000..7b38846b --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/A_tilde.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A.ss01+tilde.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/B_.glif b/sources/FixelText-Bold.ufo/glyphs/B_.glif new file mode 100644 index 00000000..2ca973af --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/B_.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/B_e-cy.glif b/sources/FixelText-Bold.ufo/glyphs/B_e-cy.glif new file mode 100644 index 00000000..745dc8d3 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/B_e-cy.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + B-10 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/C_.glif b/sources/FixelText-Bold.ufo/glyphs/C_.glif new file mode 100644 index 00000000..028dbf2f --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/C_.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/C_R_.glif b/sources/FixelText-Bold.ufo/glyphs/C_R_.glif new file mode 100644 index 00000000..a38a285e --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/C_R_.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/C_acute.glif b/sources/FixelText-Bold.ufo/glyphs/C_acute.glif new file mode 100644 index 00000000..58f99516 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/C_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+acute.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/C_caron.glif b/sources/FixelText-Bold.ufo/glyphs/C_caron.glif new file mode 100644 index 00000000..7cf34faf --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/C_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+caron.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/C_cedilla.glif b/sources/FixelText-Bold.ufo/glyphs/C_cedilla.glif new file mode 100644 index 00000000..582d5b5c --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/C_cedilla.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+cedilla + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/C_che-cy.glif b/sources/FixelText-Bold.ufo/glyphs/C_che-cy.glif new file mode 100644 index 00000000..a45575d9 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/C_che-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ч + com.fontlab.metricsRight + Ч + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/C_circumflex.glif b/sources/FixelText-Bold.ufo/glyphs/C_circumflex.glif new file mode 100644 index 00000000..ecff278e --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/C_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+circumflex.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/C_dotaccent.glif b/sources/FixelText-Bold.ufo/glyphs/C_dotaccent.glif new file mode 100644 index 00000000..e40bd110 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/C_dotaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+dotaccent.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/C_he-cy.glif b/sources/FixelText-Bold.ufo/glyphs/C_he-cy.glif new file mode 100644 index 00000000..4085aaa2 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/C_he-cy.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/C_heabkhcyr.glif b/sources/FixelText-Bold.ufo/glyphs/C_heabkhcyr.glif new file mode 100644 index 00000000..bb483173 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/C_heabkhcyr.glif @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + |Schwa + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/C_heabkhtailcyr.glif b/sources/FixelText-Bold.ufo/glyphs/C_heabkhtailcyr.glif new file mode 100644 index 00000000..4418a2c5 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/C_heabkhtailcyr.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Cheabkhcyr + com.fontlab.metricsRight + Cheabkhcyr + com.fontlab.recipe + Cheabkhcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/C_hedieresiscyr.glif b/sources/FixelText-Bold.ufo/glyphs/C_hedieresiscyr.glif new file mode 100644 index 00000000..396f2257 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/C_hedieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Che-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/C_hekhakascyr.glif b/sources/FixelText-Bold.ufo/glyphs/C_hekhakascyr.glif new file mode 100644 index 00000000..c81e8d7e --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/C_hekhakascyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ч + com.fontlab.metricsRight + H + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/C_hetailcyr.glif b/sources/FixelText-Bold.ufo/glyphs/C_hetailcyr.glif new file mode 100644 index 00000000..2e1f223d --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/C_hetailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ч + com.fontlab.metricsRight + Entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/C_hevertcyr.glif b/sources/FixelText-Bold.ufo/glyphs/C_hevertcyr.glif new file mode 100644 index 00000000..50e6985c --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/C_hevertcyr.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ч + com.fontlab.metricsRight + Н + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/C_rossedO_-cy.glif b/sources/FixelText-Bold.ufo/glyphs/C_rossedO_-cy.glif new file mode 100644 index 00000000..b41f71c5 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/C_rossedO_-cy.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + com.fontlab.recipe + O + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/D_.glif b/sources/FixelText-Bold.ufo/glyphs/D_.glif new file mode 100644 index 00000000..dea0176a --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/D_.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/D_caron.glif b/sources/FixelText-Bold.ufo/glyphs/D_caron.glif new file mode 100644 index 00000000..6b3c41e5 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/D_caron.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + D+caron.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/D_checyr.glif b/sources/FixelText-Bold.ufo/glyphs/D_checyr.glif new file mode 100644 index 00000000..2a3eae11 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/D_checyr.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Д+10 + com.fontlab.metricsRight + Д + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/D_croat.glif b/sources/FixelText-Bold.ufo/glyphs/D_croat.glif new file mode 100644 index 00000000..c389611f --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/D_croat.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + D + com.fontlab.recipe + Eth + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/D_e-cy.B_G_R_.glif b/sources/FixelText-Bold.ufo/glyphs/D_e-cy.B_G_R_.glif new file mode 100644 index 00000000..2fc9a06c --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/D_e-cy.B_G_R_.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + l() + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/D_e-cy.glif b/sources/FixelText-Bold.ufo/glyphs/D_e-cy.glif new file mode 100644 index 00000000..78c67abc --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/D_e-cy.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/D_eS_oft-cy.glif b/sources/FixelText-Bold.ufo/glyphs/D_eS_oft-cy.glif new file mode 100644 index 00000000..db7d07f1 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/D_eS_oft-cy.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Д + com.fontlab.metricsRight + Ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/D_ekomicyr.glif b/sources/FixelText-Bold.ufo/glyphs/D_ekomicyr.glif new file mode 100644 index 00000000..699f75ff --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/D_ekomicyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.metricsLeft + |P + com.fontlab.metricsRight + H + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/D_elta.glif b/sources/FixelText-Bold.ufo/glyphs/D_elta.glif new file mode 100644 index 00000000..d51a5c2f --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/D_elta.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + A + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/D_jecyr.glif b/sources/FixelText-Bold.ufo/glyphs/D_jecyr.glif new file mode 100644 index 00000000..621cd706 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/D_jecyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/D_jekomicyr.glif b/sources/FixelText-Bold.ufo/glyphs/D_jekomicyr.glif new file mode 100644 index 00000000..21337b41 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/D_jekomicyr.glif @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Dekomicyr + com.fontlab.metricsRight + Njekomicyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/D_jerv-cy.glif b/sources/FixelText-Bold.ufo/glyphs/D_jerv-cy.glif new file mode 100644 index 00000000..06cc0627 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/D_jerv-cy.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + r() + com.fontlab.metricsRight + O + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/D_oubleO_-cy.glif b/sources/FixelText-Bold.ufo/glyphs/D_oubleO_-cy.glif new file mode 100644 index 00000000..2d41057b --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/D_oubleO_-cy.glif @@ -0,0 +1,91 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + com.fontlab.recipe + O_O + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/D_we-cy.glif b/sources/FixelText-Bold.ufo/glyphs/D_we-cy.glif new file mode 100644 index 00000000..27ae005e --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/D_we-cy.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Д + com.fontlab.metricsRight + Д + com.fontlab.recipe + Д + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/D_ze-cy.glif b/sources/FixelText-Bold.ufo/glyphs/D_ze-cy.glif new file mode 100644 index 00000000..72f2033d --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/D_ze-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + S + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/D_zeR_eversed-cy.glif b/sources/FixelText-Bold.ufo/glyphs/D_zeR_eversed-cy.glif new file mode 100644 index 00000000..2c5fdeab --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/D_zeR_eversed-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + S + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/D_zeabkhcyr.glif b/sources/FixelText-Bold.ufo/glyphs/D_zeabkhcyr.glif new file mode 100644 index 00000000..f00394c7 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/D_zeabkhcyr.glif @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + З-10 + com.fontlab.metricsRight + З-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/D_zelo-cy.glif b/sources/FixelText-Bold.ufo/glyphs/D_zelo-cy.glif new file mode 100644 index 00000000..7a657357 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/D_zelo-cy.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/D_zhecyr.glif b/sources/FixelText-Bold.ufo/glyphs/D_zhecyr.glif new file mode 100644 index 00000000..68f270a8 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/D_zhecyr.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/D_zjekomicyr.glif b/sources/FixelText-Bold.ufo/glyphs/D_zjekomicyr.glif new file mode 100644 index 00000000..c5e7b73d --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/D_zjekomicyr.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + З-10 + com.fontlab.metricsRight + Ц-5 + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/D_zwe-cy.glif b/sources/FixelText-Bold.ufo/glyphs/D_zwe-cy.glif new file mode 100644 index 00000000..b02a9cfd --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/D_zwe-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + S + com.fontlab.metricsRight + S + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/D_zze-cy.glif b/sources/FixelText-Bold.ufo/glyphs/D_zze-cy.glif new file mode 100644 index 00000000..256f44ad --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/D_zze-cy.glif @@ -0,0 +1,84 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Д + com.fontlab.metricsRight + Д-20 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/D_zzhecyr.glif b/sources/FixelText-Bold.ufo/glyphs/D_zzhecyr.glif new file mode 100644 index 00000000..7eb23091 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/D_zzhecyr.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Д + com.fontlab.metricsRight + Ж + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/E_-cy.accented.glif b/sources/FixelText-Bold.ufo/glyphs/E_-cy.accented.glif new file mode 100644 index 00000000..fd397540 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/E_-cy.accented.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+acute.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/E_-cy.glif b/sources/FixelText-Bold.ufo/glyphs/E_-cy.glif new file mode 100644 index 00000000..abc55138 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/E_-cy.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + C + com.fontlab.metricsRight + C + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/E_.glif b/sources/FixelText-Bold.ufo/glyphs/E_.glif new file mode 100644 index 00000000..1b4b3ac6 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/E_.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + com.fontlab.metricsRight + F+10 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/E_acute.glif b/sources/FixelText-Bold.ufo/glyphs/E_acute.glif new file mode 100644 index 00000000..8f28c59b --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/E_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+acute.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/E_breve.glif b/sources/FixelText-Bold.ufo/glyphs/E_breve.glif new file mode 100644 index 00000000..d3209176 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/E_breve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+breve.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/E_caron.glif b/sources/FixelText-Bold.ufo/glyphs/E_caron.glif new file mode 100644 index 00000000..2a642c7b --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/E_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+caron.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/E_circumflex.glif b/sources/FixelText-Bold.ufo/glyphs/E_circumflex.glif new file mode 100644 index 00000000..d70ddfa9 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/E_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+circumflex.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/E_dieresis.glif b/sources/FixelText-Bold.ufo/glyphs/E_dieresis.glif new file mode 100644 index 00000000..221899d4 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/E_dieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+dieresiscase.alt + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/E_dotaccent.glif b/sources/FixelText-Bold.ufo/glyphs/E_dotaccent.glif new file mode 100644 index 00000000..ed23f06e --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/E_dotaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+dotaccent.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/E_f-cy.B_G_R_.glif b/sources/FixelText-Bold.ufo/glyphs/E_f-cy.B_G_R_.glif new file mode 100644 index 00000000..dc6137ed --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/E_f-cy.B_G_R_.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/E_f-cy.glif b/sources/FixelText-Bold.ufo/glyphs/E_f-cy.glif new file mode 100644 index 00000000..01ea2d2b --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/E_f-cy.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/E_grave.glif b/sources/FixelText-Bold.ufo/glyphs/E_grave.glif new file mode 100644 index 00000000..4732c882 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/E_grave.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+grave.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/E_iotifiedcyr.glif b/sources/FixelText-Bold.ufo/glyphs/E_iotifiedcyr.glif new file mode 100644 index 00000000..608f885d --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/E_iotifiedcyr.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + C + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/E_l-cy.B_G_R_.glif b/sources/FixelText-Bold.ufo/glyphs/E_l-cy.B_G_R_.glif new file mode 100644 index 00000000..1199343e --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/E_l-cy.B_G_R_.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + A + com.fontlab.metricsRight + l() + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/E_l-cy.glif b/sources/FixelText-Bold.ufo/glyphs/E_l-cy.glif new file mode 100644 index 00000000..aaac993e --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/E_l-cy.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/E_lS_oft-cy.glif b/sources/FixelText-Bold.ufo/glyphs/E_lS_oft-cy.glif new file mode 100644 index 00000000..beed9690 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/E_lS_oft-cy.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/E_lhookcyr.glif b/sources/FixelText-Bold.ufo/glyphs/E_lhookcyr.glif new file mode 100644 index 00000000..f87dd2e7 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/E_lhookcyr.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Л + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/E_lmiddlehookcyr.glif b/sources/FixelText-Bold.ufo/glyphs/E_lmiddlehookcyr.glif new file mode 100644 index 00000000..ae1218a4 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/E_lmiddlehookcyr.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Shhacyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/E_lsharptailcyr.glif b/sources/FixelText-Bold.ufo/glyphs/E_lsharptailcyr.glif new file mode 100644 index 00000000..d8f499fc --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/E_lsharptailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Ensharptailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/E_lsmallcyr.glif b/sources/FixelText-Bold.ufo/glyphs/E_lsmallcyr.glif new file mode 100644 index 00000000..e0d1cdd2 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/E_lsmallcyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + el-cy.BGR + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/E_ltailcyr.glif b/sources/FixelText-Bold.ufo/glyphs/E_ltailcyr.glif new file mode 100644 index 00000000..ec41d9d2 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/E_ltailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/E_m-cy.glif b/sources/FixelText-Bold.ufo/glyphs/E_m-cy.glif new file mode 100644 index 00000000..285eac04 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/E_m-cy.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + M + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/E_m-cy.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/E_m-cy.ss01.glif new file mode 100644 index 00000000..70060bfe --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/E_m-cy.ss01.glif @@ -0,0 +1,13 @@ + + + + + + + + + com.fontlab.recipe + M + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/E_mS_oft-cy.glif b/sources/FixelText-Bold.ufo/glyphs/E_mS_oft-cy.glif new file mode 100644 index 00000000..38f64e70 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/E_mS_oft-cy.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + M + com.fontlab.metricsRight + Ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/E_macron.glif b/sources/FixelText-Bold.ufo/glyphs/E_macron.glif new file mode 100644 index 00000000..1d2f53f6 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/E_macron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+macron.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/E_msharptailcyr.glif b/sources/FixelText-Bold.ufo/glyphs/E_msharptailcyr.glif new file mode 100644 index 00000000..c65378b0 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/E_msharptailcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Н + com.fontlab.metricsRight + Ensharptailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/E_n-cy.glif b/sources/FixelText-Bold.ufo/glyphs/E_n-cy.glif new file mode 100644 index 00000000..910b82ba --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/E_n-cy.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + H + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/E_ng.glif b/sources/FixelText-Bold.ufo/glyphs/E_ng.glif new file mode 100644 index 00000000..2ce3efce --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/E_ng.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + N + com.fontlab.metricsRight + l() + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/E_ng.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/E_ng.ss01.glif new file mode 100644 index 00000000..0ef1ae74 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/E_ng.ss01.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + N.ss01 + com.fontlab.metricsRight + J.ss01 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/E_ngecyr.glif b/sources/FixelText-Bold.ufo/glyphs/E_ngecyr.glif new file mode 100644 index 00000000..6d769b74 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/E_ngecyr.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/E_nhookcyr.glif b/sources/FixelText-Bold.ufo/glyphs/E_nhookcyr.glif new file mode 100644 index 00000000..dc2dd663 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/E_nhookcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/E_nhookleftcyr.glif b/sources/FixelText-Bold.ufo/glyphs/E_nhookleftcyr.glif new file mode 100644 index 00000000..c2f986fd --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/E_nhookleftcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + r()-159 + com.fontlab.metricsRight + H + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/E_nmiddlehookcyr.glif b/sources/FixelText-Bold.ufo/glyphs/E_nmiddlehookcyr.glif new file mode 100644 index 00000000..3abb3969 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/E_nmiddlehookcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Shhacyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/E_nsharptailcyr.glif b/sources/FixelText-Bold.ufo/glyphs/E_nsharptailcyr.glif new file mode 100644 index 00000000..a66dd78f --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/E_nsharptailcyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Н + com.fontlab.metricsRight + Д + com.fontlab.recipe + Entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/E_ntailcyr.glif b/sources/FixelText-Bold.ufo/glyphs/E_ntailcyr.glif new file mode 100644 index 00000000..0456d1c8 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/E_ntailcyr.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Ц + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/E_ogonek.glif b/sources/FixelText-Bold.ufo/glyphs/E_ogonek.glif new file mode 100644 index 00000000..42ce891c --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/E_ogonek.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+ogonek + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/E_r-cy.glif b/sources/FixelText-Bold.ufo/glyphs/E_r-cy.glif new file mode 100644 index 00000000..edf41b98 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/E_r-cy.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + P + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/E_reversed-cy.accented.glif b/sources/FixelText-Bold.ufo/glyphs/E_reversed-cy.accented.glif new file mode 100644 index 00000000..6d37a9a2 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/E_reversed-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Э+acute.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/E_reversed-cy.glif b/sources/FixelText-Bold.ufo/glyphs/E_reversed-cy.glif new file mode 100644 index 00000000..33cc6389 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/E_reversed-cy.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |C + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/E_reverseddieresiscyr.glif b/sources/FixelText-Bold.ufo/glyphs/E_reverseddieresiscyr.glif new file mode 100644 index 00000000..1f4ab49f --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/E_reverseddieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ereversed-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/E_rtickcyr.glif b/sources/FixelText-Bold.ufo/glyphs/E_rtickcyr.glif new file mode 100644 index 00000000..429dd023 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/E_rtickcyr.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + P + com.fontlab.metricsRight + P + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/E_s-cy.glif b/sources/FixelText-Bold.ufo/glyphs/E_s-cy.glif new file mode 100644 index 00000000..cf9bb5a9 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/E_s-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/E_stailcyr.B_S_H_.glif b/sources/FixelText-Bold.ufo/glyphs/E_stailcyr.B_S_H_.glif new file mode 100644 index 00000000..100c300d --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/E_stailcyr.B_S_H_.glif @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + C + com.fontlab.metricsRight + C + com.fontlab.recipe + C + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/E_stailcyr.C_H_U_.glif b/sources/FixelText-Bold.ufo/glyphs/E_stailcyr.C_H_U_.glif new file mode 100644 index 00000000..d3455791 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/E_stailcyr.C_H_U_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+cedilla.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/E_stailcyr.glif b/sources/FixelText-Bold.ufo/glyphs/E_stailcyr.glif new file mode 100644 index 00000000..01e641a1 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/E_stailcyr.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + С + com.fontlab.metricsRight + С + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/E_th.glif b/sources/FixelText-Bold.ufo/glyphs/E_th.glif new file mode 100644 index 00000000..36e9bf98 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/E_th.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + D + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/F_.glif b/sources/FixelText-Bold.ufo/glyphs/F_.glif new file mode 100644 index 00000000..00032510 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/F_.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/F_itacyr.glif b/sources/FixelText-Bold.ufo/glyphs/F_itacyr.glif new file mode 100644 index 00000000..ea8d1512 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/F_itacyr.glif @@ -0,0 +1,78 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + com.fontlab.recipe + Obarcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/G_.glif b/sources/FixelText-Bold.ufo/glyphs/G_.glif new file mode 100644 index 00000000..8b88ec84 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/G_.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O+18 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/G_.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/G_.ss01.glif new file mode 100644 index 00000000..233ad9a1 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/G_.ss01.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O+10 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/G_acute.glif b/sources/FixelText-Bold.ufo/glyphs/G_acute.glif new file mode 100644 index 00000000..33899762 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/G_acute.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + G+acute.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/G_acute.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/G_acute.ss01.glif new file mode 100644 index 00000000..9cad4f89 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/G_acute.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G.ss01+acute.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/G_breve.glif b/sources/FixelText-Bold.ufo/glyphs/G_breve.glif new file mode 100644 index 00000000..5af657e6 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/G_breve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G+breve.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/G_breve.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/G_breve.ss01.glif new file mode 100644 index 00000000..d1afb88d --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/G_breve.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G.ss01+breve.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/G_circumflex.glif b/sources/FixelText-Bold.ufo/glyphs/G_circumflex.glif new file mode 100644 index 00000000..cc281ee8 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/G_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G+circumflex.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/G_circumflex.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/G_circumflex.ss01.glif new file mode 100644 index 00000000..5d93e6ce --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/G_circumflex.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G.ss01+circumflex.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/G_commaaccent.glif b/sources/FixelText-Bold.ufo/glyphs/G_commaaccent.glif new file mode 100644 index 00000000..3ae7337f --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/G_commaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G+commaaccentcomb + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/G_commaaccent.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/G_commaaccent.ss01.glif new file mode 100644 index 00000000..f99e8e00 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/G_commaaccent.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G.ss01+commaaccentcomb + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/G_dotaccent.glif b/sources/FixelText-Bold.ufo/glyphs/G_dotaccent.glif new file mode 100644 index 00000000..66c43545 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/G_dotaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G+dotaccent.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/G_dotaccent.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/G_dotaccent.ss01.glif new file mode 100644 index 00000000..97c7be86 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/G_dotaccent.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G.ss01+dotaccent.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/G_e-cy.glif b/sources/FixelText-Bold.ufo/glyphs/G_e-cy.glif new file mode 100644 index 00000000..97385aa8 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/G_e-cy.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + T + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/G_ehookcyr.glif b/sources/FixelText-Bold.ufo/glyphs/G_ehookcyr.glif new file mode 100644 index 00000000..7510800d --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/G_ehookcyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Г + com.fontlab.metricsRight + Tshecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/G_ehookstrokecyr.glif b/sources/FixelText-Bold.ufo/glyphs/G_ehookstrokecyr.glif new file mode 100644 index 00000000..94a33bbf --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/G_ehookstrokecyr.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Gestrokecyr + com.fontlab.metricsRight + Gestrokecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/G_ermandbls.glif b/sources/FixelText-Bold.ufo/glyphs/G_ermandbls.glif new file mode 100644 index 00000000..3d2740e2 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/G_ermandbls.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + U + com.fontlab.metricsRight + B-5 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/G_estrokecyr.B_S_H_.glif b/sources/FixelText-Bold.ufo/glyphs/G_estrokecyr.B_S_H_.glif new file mode 100644 index 00000000..ea6b2c1f --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/G_estrokecyr.B_S_H_.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + F + com.fontlab.metricsRight + Gestrokecyr + com.fontlab.recipe + Gestrokecyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/G_estrokecyr.glif b/sources/FixelText-Bold.ufo/glyphs/G_estrokecyr.glif new file mode 100644 index 00000000..4f0b1ec6 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/G_estrokecyr.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + Г + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/G_etailcyr.glif b/sources/FixelText-Bold.ufo/glyphs/G_etailcyr.glif new file mode 100644 index 00000000..c19be2c5 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/G_etailcyr.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Г + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/G_heupturn-cy.glif b/sources/FixelText-Bold.ufo/glyphs/G_heupturn-cy.glif new file mode 100644 index 00000000..0f26ded0 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/G_heupturn-cy.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Г + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/G_jecyr.glif b/sources/FixelText-Bold.ufo/glyphs/G_jecyr.glif new file mode 100644 index 00000000..a9f2dbdb --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/G_jecyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ge-cy+acute.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/H_.glif b/sources/FixelText-Bold.ufo/glyphs/H_.glif new file mode 100644 index 00000000..4275603f --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/H_.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + com.fontlab.metricsRight + I + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/H_a-cy.glif b/sources/FixelText-Bold.ufo/glyphs/H_a-cy.glif new file mode 100644 index 00000000..d0c15679 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/H_a-cy.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + X + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/H_a-cy.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/H_a-cy.ss01.glif new file mode 100644 index 00000000..2b37a8c2 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/H_a-cy.ss01.glif @@ -0,0 +1,14 @@ + + + + + + + + + + com.fontlab.recipe + X + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/H_aabkhcyr.glif b/sources/FixelText-Bold.ufo/glyphs/H_aabkhcyr.glif new file mode 100644 index 00000000..21ea0091 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/H_aabkhcyr.glif @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/H_ahookcyr.glif b/sources/FixelText-Bold.ufo/glyphs/H_ahookcyr.glif new file mode 100644 index 00000000..d58761ec --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/H_ahookcyr.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + X + com.fontlab.metricsRight + X + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/H_ardsign-cy.glif b/sources/FixelText-Bold.ufo/glyphs/H_ardsign-cy.glif new file mode 100644 index 00000000..e429ec88 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/H_ardsign-cy.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + Ь + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/H_astrokecyr.glif b/sources/FixelText-Bold.ufo/glyphs/H_astrokecyr.glif new file mode 100644 index 00000000..20dd5176 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/H_astrokecyr.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + X + com.fontlab.metricsRight + X + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/H_bar.glif b/sources/FixelText-Bold.ufo/glyphs/H_bar.glif new file mode 100644 index 00000000..8d3df570 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/H_bar.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + r() + com.fontlab.metricsRight + H + com.schriftgestaltung.Glyphs.rightMetricsKey + H + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/H_circumflex.glif b/sources/FixelText-Bold.ufo/glyphs/H_circumflex.glif new file mode 100644 index 00000000..a1cb842e --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/H_circumflex.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + H+circumflex.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/H_we-cy.glif b/sources/FixelText-Bold.ufo/glyphs/H_we-cy.glif new file mode 100644 index 00000000..4e509706 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/H_we-cy.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Iota-cy + com.fontlab.metricsRight + Tshecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/I_-cy.glif b/sources/FixelText-Bold.ufo/glyphs/I_-cy.glif new file mode 100644 index 00000000..2ad17b71 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/I_-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/I_.glif b/sources/FixelText-Bold.ufo/glyphs/I_.glif new file mode 100644 index 00000000..d2f16994 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/I_.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/I_J_.glif b/sources/FixelText-Bold.ufo/glyphs/I_J_.glif new file mode 100644 index 00000000..fd297af4 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/I_J_.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + I_J + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/I_a-cy.accented.glif b/sources/FixelText-Bold.ufo/glyphs/I_a-cy.accented.glif new file mode 100644 index 00000000..28c09d46 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/I_a-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Я+acute.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/I_a-cy.glif b/sources/FixelText-Bold.ufo/glyphs/I_a-cy.glif new file mode 100644 index 00000000..185aeb4c --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/I_a-cy.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |R+10 + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/I_a-cy.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/I_a-cy.ss01.glif new file mode 100644 index 00000000..4e278846 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/I_a-cy.ss01.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/I_acute.glif b/sources/FixelText-Bold.ufo/glyphs/I_acute.glif new file mode 100644 index 00000000..b5ec83f3 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/I_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+acute.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/I_breve.glif b/sources/FixelText-Bold.ufo/glyphs/I_breve.glif new file mode 100644 index 00000000..d39dfbed --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/I_breve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+breve.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/I_circumflex.glif b/sources/FixelText-Bold.ufo/glyphs/I_circumflex.glif new file mode 100644 index 00000000..6e8e1128 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/I_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+circumflex.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/I_dieresis.glif b/sources/FixelText-Bold.ufo/glyphs/I_dieresis.glif new file mode 100644 index 00000000..608ff11e --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/I_dieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+dieresiscase.alt + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/I_dieresiscyr.glif b/sources/FixelText-Bold.ufo/glyphs/I_dieresiscyr.glif new file mode 100644 index 00000000..9a387c09 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/I_dieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ii-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/I_dotaccent.glif b/sources/FixelText-Bold.ufo/glyphs/I_dotaccent.glif new file mode 100644 index 00000000..b9f642df --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/I_dotaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+dotaccent.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/I_e-cy.glif b/sources/FixelText-Bold.ufo/glyphs/I_e-cy.glif new file mode 100644 index 00000000..6ff57943 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/I_e-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/I_ebrevecyr.glif b/sources/FixelText-Bold.ufo/glyphs/I_ebrevecyr.glif new file mode 100644 index 00000000..979d28f2 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/I_ebrevecyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+breve.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/I_egravecyr.glif b/sources/FixelText-Bold.ufo/glyphs/I_egravecyr.glif new file mode 100644 index 00000000..041e682f --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/I_egravecyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+grave.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/I_grave.glif b/sources/FixelText-Bold.ufo/glyphs/I_grave.glif new file mode 100644 index 00000000..73a22416 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/I_grave.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+grave.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/I_gravecyr.glif b/sources/FixelText-Bold.ufo/glyphs/I_gravecyr.glif new file mode 100644 index 00000000..af15a454 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/I_gravecyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ii-cy+grave.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/I_i-cy.accented.glif b/sources/FixelText-Bold.ufo/glyphs/I_i-cy.accented.glif new file mode 100644 index 00000000..89aa5734 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/I_i-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + И+acute.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/I_i-cy.glif b/sources/FixelText-Bold.ufo/glyphs/I_i-cy.glif new file mode 100644 index 00000000..dcc909ca --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/I_i-cy.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/I_ishort-cy.glif b/sources/FixelText-Bold.ufo/glyphs/I_ishort-cy.glif new file mode 100644 index 00000000..6e6dd82b --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/I_ishort-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + uni0418+breve.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/I_macron.glif b/sources/FixelText-Bold.ufo/glyphs/I_macron.glif new file mode 100644 index 00000000..0f681b5e --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/I_macron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+macron.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/I_macroncyr.glif b/sources/FixelText-Bold.ufo/glyphs/I_macroncyr.glif new file mode 100644 index 00000000..efe98801 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/I_macroncyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ii-cy+macron.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/I_o-cy.accented.glif b/sources/FixelText-Bold.ufo/glyphs/I_o-cy.accented.glif new file mode 100644 index 00000000..b858d546 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/I_o-cy.accented.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + com.fontlab.recipe + E+dieresis.case+acute.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/I_o-cy.glif b/sources/FixelText-Bold.ufo/glyphs/I_o-cy.glif new file mode 100644 index 00000000..c6b03e58 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/I_o-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Edieresis + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/I_ogonek.glif b/sources/FixelText-Bold.ufo/glyphs/I_ogonek.glif new file mode 100644 index 00000000..a9e0fc33 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/I_ogonek.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+ogonek + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/I_ota-cy.glif b/sources/FixelText-Bold.ufo/glyphs/I_ota-cy.glif new file mode 100644 index 00000000..b2dbe481 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/I_ota-cy.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |J + com.fontlab.metricsRight + |J + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/I_otifiedA_-cy.glif b/sources/FixelText-Bold.ufo/glyphs/I_otifiedA_-cy.glif new file mode 100644 index 00000000..fea47a0c --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/I_otifiedA_-cy.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + com.fontlab.metricsRight + A + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/I_shortsharptailcyr.glif b/sources/FixelText-Bold.ufo/glyphs/I_shortsharptailcyr.glif new file mode 100644 index 00000000..98a5093a --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/I_shortsharptailcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Й + com.fontlab.metricsRight + Ensharptailcyr + com.fontlab.recipe + Й + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/I_tilde.glif b/sources/FixelText-Bold.ufo/glyphs/I_tilde.glif new file mode 100644 index 00000000..e38dcd09 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/I_tilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+tilde.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/I_u-cy.accented.glif b/sources/FixelText-Bold.ufo/glyphs/I_u-cy.accented.glif new file mode 100644 index 00000000..7b0c1843 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/I_u-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ю+acute.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/I_u-cy.glif b/sources/FixelText-Bold.ufo/glyphs/I_u-cy.glif new file mode 100644 index 00000000..5d18620e --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/I_u-cy.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/I_zhitsacyr.glif b/sources/FixelText-Bold.ufo/glyphs/I_zhitsacyr.glif new file mode 100644 index 00000000..161c8d54 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/I_zhitsacyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + V + com.fontlab.metricsRight + + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/I_zhitsagravedblcyr.glif b/sources/FixelText-Bold.ufo/glyphs/I_zhitsagravedblcyr.glif new file mode 100644 index 00000000..fb266f3f --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/I_zhitsagravedblcyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + com.fontlab.metricsLeft + Izhitsacyr + com.fontlab.metricsRight + Izhitsacyr + com.fontlab.recipe + Izhitsacyr+hungarumlaut.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/J_.glif b/sources/FixelText-Bold.ufo/glyphs/J_.glif new file mode 100644 index 00000000..416fa0c6 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/J_.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + U + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/J_.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/J_.ss01.glif new file mode 100644 index 00000000..1208d3fe --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/J_.ss01.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + U + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/J_circumflex.glif b/sources/FixelText-Bold.ufo/glyphs/J_circumflex.glif new file mode 100644 index 00000000..ae775db6 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/J_circumflex.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + J+circumflex.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/J_circumflex.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/J_circumflex.ss01.glif new file mode 100644 index 00000000..86ef6e86 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/J_circumflex.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + J.ss01+circumflex.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/J_ecyr.glif b/sources/FixelText-Bold.ufo/glyphs/J_ecyr.glif new file mode 100644 index 00000000..cc460a2d --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/J_ecyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsLeft + J + com.fontlab.metricsRight + J + com.fontlab.recipe + J + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/K_.glif b/sources/FixelText-Bold.ufo/glyphs/K_.glif new file mode 100644 index 00000000..862e343b --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/K_.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/K_.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/K_.ss01.glif new file mode 100644 index 00000000..1c9deece --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/K_.ss01.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/K_a-cy.glif b/sources/FixelText-Bold.ufo/glyphs/K_a-cy.glif new file mode 100644 index 00000000..82c3c576 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/K_a-cy.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.recipe + K + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/K_a-cy.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/K_a-cy.ss01.glif new file mode 100644 index 00000000..5a89bb71 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/K_a-cy.ss01.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.recipe + K + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/K_aaleutcyr.glif b/sources/FixelText-Bold.ufo/glyphs/K_aaleutcyr.glif new file mode 100644 index 00000000..81a07bc9 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/K_aaleutcyr.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + K + com.fontlab.metricsRight + K + com.fontlab.recipe + K + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/K_abashkcyr.glif b/sources/FixelText-Bold.ufo/glyphs/K_abashkcyr.glif new file mode 100644 index 00000000..110c4ad4 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/K_abashkcyr.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Hardsign-cy + com.fontlab.metricsRight + K + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/K_ahookcyr.glif b/sources/FixelText-Bold.ufo/glyphs/K_ahookcyr.glif new file mode 100644 index 00000000..459206b0 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/K_ahookcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + K + com.fontlab.metricsRight + Djecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/K_astrokecyr.glif b/sources/FixelText-Bold.ufo/glyphs/K_astrokecyr.glif new file mode 100644 index 00000000..2676fe76 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/K_astrokecyr.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Yatcyr + com.fontlab.metricsRight + K + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/K_atailcyr.glif b/sources/FixelText-Bold.ufo/glyphs/K_atailcyr.glif new file mode 100644 index 00000000..0980ec36 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/K_atailcyr.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + К-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/K_averticalstrokecyr.glif b/sources/FixelText-Bold.ufo/glyphs/K_averticalstrokecyr.glif new file mode 100644 index 00000000..cbc420db --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/K_averticalstrokecyr.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + K + com.fontlab.metricsRight + Ж + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/K_commaaccent.glif b/sources/FixelText-Bold.ufo/glyphs/K_commaaccent.glif new file mode 100644 index 00000000..ea29cb9b --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/K_commaaccent.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + K+commaaccentcomb + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/K_commaaccent.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/K_commaaccent.ss01.glif new file mode 100644 index 00000000..82dd37d8 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/K_commaaccent.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + K.ss01+commaaccentcomb + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/K_jecyr.glif b/sources/FixelText-Bold.ufo/glyphs/K_jecyr.glif new file mode 100644 index 00000000..88b2ee91 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/K_jecyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ka-cy+acute.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/K_oppacyr.glif b/sources/FixelText-Bold.ufo/glyphs/K_oppacyr.glif new file mode 100644 index 00000000..0644f26a --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/K_oppacyr.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + C-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/K_sicyr.glif b/sources/FixelText-Bold.ufo/glyphs/K_sicyr.glif new file mode 100644 index 00000000..5cb6b82c --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/K_sicyr.glif @@ -0,0 +1,98 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + З-10 + com.fontlab.metricsRight + З + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/L_.glif b/sources/FixelText-Bold.ufo/glyphs/L_.glif new file mode 100644 index 00000000..28a3d492 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/L_.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/L_acute.glif b/sources/FixelText-Bold.ufo/glyphs/L_acute.glif new file mode 100644 index 00000000..be75d469 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/L_acute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + L+acute.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/L_caron.glif b/sources/FixelText-Bold.ufo/glyphs/L_caron.glif new file mode 100644 index 00000000..53c7746e --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/L_caron.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + com.fontlab.recipe + L+caron.salt + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/L_commaaccent.glif b/sources/FixelText-Bold.ufo/glyphs/L_commaaccent.glif new file mode 100644 index 00000000..045f0410 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/L_commaaccent.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + L+commaaccentcomb + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/L_dot.glif b/sources/FixelText-Bold.ufo/glyphs/L_dot.glif new file mode 100644 index 00000000..7b9cb46e --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/L_dot.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + com.fontlab.metricsRight + L + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/L_hacyr.glif b/sources/FixelText-Bold.ufo/glyphs/L_hacyr.glif new file mode 100644 index 00000000..b84e3a6a --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/L_hacyr.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + X + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/L_jecyr.glif b/sources/FixelText-Bold.ufo/glyphs/L_jecyr.glif new file mode 100644 index 00000000..9c5c3acd --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/L_jecyr.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Ь + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/L_jekomicyr.glif b/sources/FixelText-Bold.ufo/glyphs/L_jekomicyr.glif new file mode 100644 index 00000000..fb29c1a9 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/L_jekomicyr.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Njekomicyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/L_slash.glif b/sources/FixelText-Bold.ufo/glyphs/L_slash.glif new file mode 100644 index 00000000..9d2ab3bc --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/L_slash.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + L-80 + com.fontlab.metricsRight + L + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/M_.glif b/sources/FixelText-Bold.ufo/glyphs/M_.glif new file mode 100644 index 00000000..6335ecf4 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/M_.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/M_.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/M_.ss01.glif new file mode 100644 index 00000000..6b1f5aa0 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/M_.ss01.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H-25 + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/N_.glif b/sources/FixelText-Bold.ufo/glyphs/N_.glif new file mode 100644 index 00000000..7ccb201d --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/N_.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/N_.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/N_.ss01.glif new file mode 100644 index 00000000..0fe29184 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/N_.ss01.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H-10 + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/N_U_L_L_.glif b/sources/FixelText-Bold.ufo/glyphs/N_U_L_L_.glif new file mode 100644 index 00000000..1ad177ae --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/N_U_L_L_.glif @@ -0,0 +1,4 @@ + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/N_acute.glif b/sources/FixelText-Bold.ufo/glyphs/N_acute.glif new file mode 100644 index 00000000..11a64eed --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/N_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N+acute.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/N_acute.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/N_acute.ss01.glif new file mode 100644 index 00000000..7fcf9d70 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/N_acute.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N.ss01+acute.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/N_caron.glif b/sources/FixelText-Bold.ufo/glyphs/N_caron.glif new file mode 100644 index 00000000..c468b3e0 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/N_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N+caron.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/N_caron.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/N_caron.ss01.glif new file mode 100644 index 00000000..dd2ac7e3 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/N_caron.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N.ss01+caron.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/N_commaaccent.glif b/sources/FixelText-Bold.ufo/glyphs/N_commaaccent.glif new file mode 100644 index 00000000..3949af83 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/N_commaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N+commaaccentcomb + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/N_commaaccent.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/N_commaaccent.ss01.glif new file mode 100644 index 00000000..e43c4011 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/N_commaaccent.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N.ss01+commaaccentcomb + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/N_jecyr.glif b/sources/FixelText-Bold.ufo/glyphs/N_jecyr.glif new file mode 100644 index 00000000..e8b01cdc --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/N_jecyr.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Н + com.fontlab.metricsRight + Ь + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/N_jekomicyr.glif b/sources/FixelText-Bold.ufo/glyphs/N_jekomicyr.glif new file mode 100644 index 00000000..38d2625f --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/N_jekomicyr.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + |u + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/N_tilde.glif b/sources/FixelText-Bold.ufo/glyphs/N_tilde.glif new file mode 100644 index 00000000..dd51af93 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/N_tilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N+tilde.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/N_tilde.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/N_tilde.ss01.glif new file mode 100644 index 00000000..f766df2d --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/N_tilde.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N.ss01+tilde.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/O_-cy.accented.glif b/sources/FixelText-Bold.ufo/glyphs/O_-cy.accented.glif new file mode 100644 index 00000000..fb4e5924 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/O_-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+acute.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/O_-cy.glif b/sources/FixelText-Bold.ufo/glyphs/O_-cy.glif new file mode 100644 index 00000000..d40f6bf4 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/O_-cy.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/O_.glif b/sources/FixelText-Bold.ufo/glyphs/O_.glif new file mode 100644 index 00000000..6034630f --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/O_.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/O_B_inocular-cy.glif b/sources/FixelText-Bold.ufo/glyphs/O_B_inocular-cy.glif new file mode 100644 index 00000000..99b2a13e --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/O_B_inocular-cy.glif @@ -0,0 +1,81 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/O_D_oubleM_onocular-cy.glif b/sources/FixelText-Bold.ufo/glyphs/O_D_oubleM_onocular-cy.glif new file mode 100644 index 00000000..97ed222c --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/O_D_oubleM_onocular-cy.glif @@ -0,0 +1,119 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + com.fontlab.recipe + DoubleO-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/O_E_.glif b/sources/FixelText-Bold.ufo/glyphs/O_E_.glif new file mode 100644 index 00000000..3010910f --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/O_E_.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + E + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/O_M_onocular-cy.glif b/sources/FixelText-Bold.ufo/glyphs/O_M_onocular-cy.glif new file mode 100644 index 00000000..4b622fdd --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/O_M_onocular-cy.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/O_acute.glif b/sources/FixelText-Bold.ufo/glyphs/O_acute.glif new file mode 100644 index 00000000..16e9d2d1 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/O_acute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+acute.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/O_barcyr.glif b/sources/FixelText-Bold.ufo/glyphs/O_barcyr.glif new file mode 100644 index 00000000..e8d08671 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/O_barcyr.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + r() + com.fontlab.metricsRight + O + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/O_bardieresiscyr.glif b/sources/FixelText-Bold.ufo/glyphs/O_bardieresiscyr.glif new file mode 100644 index 00000000..6715397f --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/O_bardieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Obarcyr+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/O_breve.glif b/sources/FixelText-Bold.ufo/glyphs/O_breve.glif new file mode 100644 index 00000000..dc227303 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/O_breve.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+breve.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/O_circumflex.glif b/sources/FixelText-Bold.ufo/glyphs/O_circumflex.glif new file mode 100644 index 00000000..6e730605 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/O_circumflex.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+circumflex.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/O_dieresis.glif b/sources/FixelText-Bold.ufo/glyphs/O_dieresis.glif new file mode 100644 index 00000000..25cfa96b --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/O_dieresis.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+dieresis.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/O_dieresiscyr.glif b/sources/FixelText-Bold.ufo/glyphs/O_dieresiscyr.glif new file mode 100644 index 00000000..08836cf4 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/O_dieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/O_grave.glif b/sources/FixelText-Bold.ufo/glyphs/O_grave.glif new file mode 100644 index 00000000..a2b09db1 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/O_grave.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+grave.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/O_hungarumlaut.glif b/sources/FixelText-Bold.ufo/glyphs/O_hungarumlaut.glif new file mode 100644 index 00000000..8dfba08e --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/O_hungarumlaut.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+hungarumlaut.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/O_macron.glif b/sources/FixelText-Bold.ufo/glyphs/O_macron.glif new file mode 100644 index 00000000..f6998aaf --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/O_macron.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+macron.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/O_mega.glif b/sources/FixelText-Bold.ufo/glyphs/O_mega.glif new file mode 100644 index 00000000..8d2a605e --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/O_mega.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O+10 + com.fontlab.metricsRight + O+10 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/O_megaB_road-cy.glif b/sources/FixelText-Bold.ufo/glyphs/O_megaB_road-cy.glif new file mode 100644 index 00000000..630ac1fd --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/O_megaB_road-cy.glif @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O+10 + com.fontlab.metricsRight + O+10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/O_megacyr.glif b/sources/FixelText-Bold.ufo/glyphs/O_megacyr.glif new file mode 100644 index 00000000..8591eed4 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/O_megacyr.glif @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O+10 + com.fontlab.metricsRight + O+10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/O_megaroundcyr.glif b/sources/FixelText-Bold.ufo/glyphs/O_megaroundcyr.glif new file mode 100644 index 00000000..fcedaefc --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/O_megaroundcyr.glif @@ -0,0 +1,81 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/O_megatitlocyr.glif b/sources/FixelText-Bold.ufo/glyphs/O_megatitlocyr.glif new file mode 100644 index 00000000..01771403 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/O_megatitlocyr.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O+10 + com.fontlab.metricsRight + O+10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/O_slash.glif b/sources/FixelText-Bold.ufo/glyphs/O_slash.glif new file mode 100644 index 00000000..17a001b2 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/O_slash.glif @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/O_slashacute.glif b/sources/FixelText-Bold.ufo/glyphs/O_slashacute.glif new file mode 100644 index 00000000..0f0c7165 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/O_slashacute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Oslash+acute.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/O_tcyr.glif b/sources/FixelText-Bold.ufo/glyphs/O_tcyr.glif new file mode 100644 index 00000000..4a9381ee --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/O_tcyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Omegacyr+uni2DEE.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/O_tilde.glif b/sources/FixelText-Bold.ufo/glyphs/O_tilde.glif new file mode 100644 index 00000000..94b3e6aa --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/O_tilde.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+tilde.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/P_.glif b/sources/FixelText-Bold.ufo/glyphs/P_.glif new file mode 100644 index 00000000..76826990 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/P_.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/P_alochkacyr.glif b/sources/FixelText-Bold.ufo/glyphs/P_alochkacyr.glif new file mode 100644 index 00000000..ed01d866 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/P_alochkacyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/P_e-cy.glif b/sources/FixelText-Bold.ufo/glyphs/P_e-cy.glif new file mode 100644 index 00000000..9c86dac5 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/P_e-cy.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/P_ehookcyr.glif b/sources/FixelText-Bold.ufo/glyphs/P_ehookcyr.glif new file mode 100644 index 00000000..bf7323af --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/P_ehookcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + П + com.fontlab.metricsRight + Shhacyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/P_etailcyr.glif b/sources/FixelText-Bold.ufo/glyphs/P_etailcyr.glif new file mode 100644 index 00000000..599c54c4 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/P_etailcyr.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/P_sicyr.glif b/sources/FixelText-Bold.ufo/glyphs/P_sicyr.glif new file mode 100644 index 00000000..89ed3f28 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/P_sicyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + U-20 + com.fontlab.metricsRight + U-20 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/Q_.glif b/sources/FixelText-Bold.ufo/glyphs/Q_.glif new file mode 100644 index 00000000..1125e21b --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/Q_.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/Q_.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/Q_.ss01.glif new file mode 100644 index 00000000..32b78860 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/Q_.ss01.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/Q_acyr.glif b/sources/FixelText-Bold.ufo/glyphs/Q_acyr.glif new file mode 100644 index 00000000..3f6149ab --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/Q_acyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Q + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/R_.glif b/sources/FixelText-Bold.ufo/glyphs/R_.glif new file mode 100644 index 00000000..cc7de617 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/R_.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/R_acute.glif b/sources/FixelText-Bold.ufo/glyphs/R_acute.glif new file mode 100644 index 00000000..a0c2da33 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/R_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + R+acute.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/R_caron.glif b/sources/FixelText-Bold.ufo/glyphs/R_caron.glif new file mode 100644 index 00000000..40dfa53b --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/R_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + R+caron.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/R_commaaccent.glif b/sources/FixelText-Bold.ufo/glyphs/R_commaaccent.glif new file mode 100644 index 00000000..57e50c49 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/R_commaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + R+commaaccentcomb + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/R_eversedzecyr.glif b/sources/FixelText-Bold.ufo/glyphs/R_eversedzecyr.glif new file mode 100644 index 00000000..5fd75f6a --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/R_eversedzecyr.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + + com.fontlab.metricsRight + + com.fontlab.recipe + З + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/R_hacyr.glif b/sources/FixelText-Bold.ufo/glyphs/R_hacyr.glif new file mode 100644 index 00000000..83aebc20 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/R_hacyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + P + com.fontlab.metricsRight + X + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/S_.glif b/sources/FixelText-Bold.ufo/glyphs/S_.glif new file mode 100644 index 00000000..6b079696 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/S_.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/S_acute.glif b/sources/FixelText-Bold.ufo/glyphs/S_acute.glif new file mode 100644 index 00000000..c8ca32b6 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/S_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + S+acute.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/S_caron.glif b/sources/FixelText-Bold.ufo/glyphs/S_caron.glif new file mode 100644 index 00000000..629b24d7 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/S_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + S+caron.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/S_cedilla.glif b/sources/FixelText-Bold.ufo/glyphs/S_cedilla.glif new file mode 100644 index 00000000..5de21ce2 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/S_cedilla.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + S+cedilla + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/S_chwa.glif b/sources/FixelText-Bold.ufo/glyphs/S_chwa.glif new file mode 100644 index 00000000..e36ece7d --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/S_chwa.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Schwacyr + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/S_chwacyr.glif b/sources/FixelText-Bold.ufo/glyphs/S_chwacyr.glif new file mode 100644 index 00000000..368f68a1 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/S_chwacyr.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O-10 + com.fontlab.metricsRight + O + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/S_chwadieresiscyr.glif b/sources/FixelText-Bold.ufo/glyphs/S_chwadieresiscyr.glif new file mode 100644 index 00000000..9145bea1 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/S_chwadieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Schwacyr+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/S_circumflex.glif b/sources/FixelText-Bold.ufo/glyphs/S_circumflex.glif new file mode 100644 index 00000000..3d23119f --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/S_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + S+circumflex.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/S_commaaccent.glif b/sources/FixelText-Bold.ufo/glyphs/S_commaaccent.glif new file mode 100644 index 00000000..3df72804 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/S_commaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + S+commaaccentcomb + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/S_emisoftcyr.glif b/sources/FixelText-Bold.ufo/glyphs/S_emisoftcyr.glif new file mode 100644 index 00000000..4bcb322e --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/S_emisoftcyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Yat + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/S_ha-cy.glif b/sources/FixelText-Bold.ufo/glyphs/S_ha-cy.glif new file mode 100644 index 00000000..8b70cf0d --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/S_ha-cy.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/S_hcha-cy.glif b/sources/FixelText-Bold.ufo/glyphs/S_hcha-cy.glif new file mode 100644 index 00000000..952b72c2 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/S_hcha-cy.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Д + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/S_hhacyr.glif b/sources/FixelText-Bold.ufo/glyphs/S_hhacyr.glif new file mode 100644 index 00000000..ae895c86 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/S_hhacyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.metricsLeft + Н + com.fontlab.metricsRight + Tshecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/S_hhatailcyr.glif b/sources/FixelText-Bold.ufo/glyphs/S_hhatailcyr.glif new file mode 100644 index 00000000..5c11a942 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/S_hhatailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/S_hwe-cy.glif b/sources/FixelText-Bold.ufo/glyphs/S_hwe-cy.glif new file mode 100644 index 00000000..c8bc704a --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/S_hwe-cy.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Щ + com.fontlab.metricsRight + Щ-20 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/S_jekomicyr.glif b/sources/FixelText-Bold.ufo/glyphs/S_jekomicyr.glif new file mode 100644 index 00000000..11fa7a9b --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/S_jekomicyr.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + |Schwa + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/S_oftsign-cy.glif b/sources/FixelText-Bold.ufo/glyphs/S_oftsign-cy.glif new file mode 100644 index 00000000..23a17139 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/S_oftsign-cy.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + P + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/T_.glif b/sources/FixelText-Bold.ufo/glyphs/T_.glif new file mode 100644 index 00000000..ed577816 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/T_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/T_bar.glif b/sources/FixelText-Bold.ufo/glyphs/T_bar.glif new file mode 100644 index 00000000..61b7bc65 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/T_bar.glif @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/T_caron.glif b/sources/FixelText-Bold.ufo/glyphs/T_caron.glif new file mode 100644 index 00000000..65ef84ce --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/T_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + T+caron.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/T_cedilla.glif b/sources/FixelText-Bold.ufo/glyphs/T_cedilla.glif new file mode 100644 index 00000000..693dd61a --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/T_cedilla.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + T+cedilla + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/T_che-cy.glif b/sources/FixelText-Bold.ufo/glyphs/T_che-cy.glif new file mode 100644 index 00000000..6c1d81ed --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/T_che-cy.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Tetsecyr-20 + com.fontlab.metricsRight + Ч + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/T_commaaccent.glif b/sources/FixelText-Bold.ufo/glyphs/T_commaaccent.glif new file mode 100644 index 00000000..8bf012a8 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/T_commaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + T+commaaccentcomb + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/T_e-cy.glif b/sources/FixelText-Bold.ufo/glyphs/T_e-cy.glif new file mode 100644 index 00000000..e57a5267 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/T_e-cy.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + com.fontlab.recipe + T + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/T_eW_ithM_iddleH_ook-cy.glif b/sources/FixelText-Bold.ufo/glyphs/T_eW_ithM_iddleH_ook-cy.glif new file mode 100644 index 00000000..9c18d53d --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/T_eW_ithM_iddleH_ook-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Djecyr + com.fontlab.metricsRight + Gehookcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/T_etailcyr.glif b/sources/FixelText-Bold.ufo/glyphs/T_etailcyr.glif new file mode 100644 index 00000000..1fe3d922 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/T_etailcyr.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/T_etsecyr.glif b/sources/FixelText-Bold.ufo/glyphs/T_etsecyr.glif new file mode 100644 index 00000000..0d1cfa38 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/T_etsecyr.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Tshecyr + com.fontlab.metricsRight + Ц + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/T_horn.glif b/sources/FixelText-Bold.ufo/glyphs/T_horn.glif new file mode 100644 index 00000000..6132099b --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/T_horn.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + P + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/T_jekomicyr.glif b/sources/FixelText-Bold.ufo/glyphs/T_jekomicyr.glif new file mode 100644 index 00000000..5398142c --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/T_jekomicyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + Njekomicyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/T_se-cy.glif b/sources/FixelText-Bold.ufo/glyphs/T_se-cy.glif new file mode 100644 index 00000000..6e00b34a --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/T_se-cy.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Д + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/T_seR_eversed-cy.glif b/sources/FixelText-Bold.ufo/glyphs/T_seR_eversed-cy.glif new file mode 100644 index 00000000..d6a0bcb0 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/T_seR_eversed-cy.glif @@ -0,0 +1,20 @@ + + + + + + + + + + com.fontlab.metricsLeft + + com.fontlab.metricsRight + H + com.fontlab.recipe + Ц + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/T_shecyr.glif b/sources/FixelText-Bold.ufo/glyphs/T_shecyr.glif new file mode 100644 index 00000000..c4613228 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/T_shecyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + n + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/T_sse-cy.glif b/sources/FixelText-Bold.ufo/glyphs/T_sse-cy.glif new file mode 100644 index 00000000..9c4f9509 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/T_sse-cy.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + T + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/T_swe-cy.glif b/sources/FixelText-Bold.ufo/glyphs/T_swe-cy.glif new file mode 100644 index 00000000..3c24e4c4 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/T_swe-cy.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Shwe-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/T_we-cy.glif b/sources/FixelText-Bold.ufo/glyphs/T_we-cy.glif new file mode 100644 index 00000000..484a4106 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/T_we-cy.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + T + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/U_-cy.accented.glif b/sources/FixelText-Bold.ufo/glyphs/U_-cy.accented.glif new file mode 100644 index 00000000..261b7c90 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/U_-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + У+acute.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/U_-cy.glif b/sources/FixelText-Bold.ufo/glyphs/U_-cy.glif new file mode 100644 index 00000000..e4f2d996 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/U_-cy.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Y+10 + com.fontlab.metricsRight + Y+5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/U_-cy.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/U_-cy.ss01.glif new file mode 100644 index 00000000..9972b7e4 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/U_-cy.ss01.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/U_.glif b/sources/FixelText-Bold.ufo/glyphs/U_.glif new file mode 100644 index 00000000..606f4e11 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/U_.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H-10 + com.fontlab.metricsRight + H-10 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/U_acute.glif b/sources/FixelText-Bold.ufo/glyphs/U_acute.glif new file mode 100644 index 00000000..c258dfdd --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/U_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+acute.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/U_acutedblcyr.glif b/sources/FixelText-Bold.ufo/glyphs/U_acutedblcyr.glif new file mode 100644 index 00000000..9bd747bc --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/U_acutedblcyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U-cy+hungarumlaut.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/U_breve.glif b/sources/FixelText-Bold.ufo/glyphs/U_breve.glif new file mode 100644 index 00000000..0aad93ac --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/U_breve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+breve.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/U_circumflex.glif b/sources/FixelText-Bold.ufo/glyphs/U_circumflex.glif new file mode 100644 index 00000000..dac8b18f --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/U_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+circumflex.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/U_dieresis.glif b/sources/FixelText-Bold.ufo/glyphs/U_dieresis.glif new file mode 100644 index 00000000..fb991852 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/U_dieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+dieresis.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/U_dieresiscyr.glif b/sources/FixelText-Bold.ufo/glyphs/U_dieresiscyr.glif new file mode 100644 index 00000000..31336338 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/U_dieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/U_grave.glif b/sources/FixelText-Bold.ufo/glyphs/U_grave.glif new file mode 100644 index 00000000..99cd060d --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/U_grave.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+grave.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/U_hungarumlaut.glif b/sources/FixelText-Bold.ufo/glyphs/U_hungarumlaut.glif new file mode 100644 index 00000000..76d13d80 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/U_hungarumlaut.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+hungarumlaut.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/U_kM_onograph-cy.glif b/sources/FixelText-Bold.ufo/glyphs/U_kM_onograph-cy.glif new file mode 100644 index 00000000..5a5fb691 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/U_kM_onograph-cy.glif @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/U_kcyr.glif b/sources/FixelText-Bold.ufo/glyphs/U_kcyr.glif new file mode 100644 index 00000000..dbe61ecd --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/U_kcyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + y + com.fontlab.recipe + О_у + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/U_macron.glif b/sources/FixelText-Bold.ufo/glyphs/U_macron.glif new file mode 100644 index 00000000..6b83b274 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/U_macron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+macron.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/U_macroncyr.glif b/sources/FixelText-Bold.ufo/glyphs/U_macroncyr.glif new file mode 100644 index 00000000..8e7ae726 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/U_macroncyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U-cy+macron.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/U_ogonek.glif b/sources/FixelText-Bold.ufo/glyphs/U_ogonek.glif new file mode 100644 index 00000000..6a737b49 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/U_ogonek.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + U+ogonek + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/U_ring.glif b/sources/FixelText-Bold.ufo/glyphs/U_ring.glif new file mode 100644 index 00000000..02456d07 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/U_ring.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+ring.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/U_short-cy.glif b/sources/FixelText-Bold.ufo/glyphs/U_short-cy.glif new file mode 100644 index 00000000..85928f91 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/U_short-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ucyr+breve.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/U_short-cy.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/U_short-cy.ss01.glif new file mode 100644 index 00000000..8633a939 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/U_short-cy.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ucyr.ss01+breve.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/U_straightcyr.glif b/sources/FixelText-Bold.ufo/glyphs/U_straightcyr.glif new file mode 100644 index 00000000..b2fafead --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/U_straightcyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsRight + Y + com.fontlab.recipe + Y + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/U_straightstrokecyr.glif b/sources/FixelText-Bold.ufo/glyphs/U_straightstrokecyr.glif new file mode 100644 index 00000000..a31206aa --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/U_straightstrokecyr.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/U_tilde.glif b/sources/FixelText-Bold.ufo/glyphs/U_tilde.glif new file mode 100644 index 00000000..cf30a1cf --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/U_tilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+tilde.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/V_.glif b/sources/FixelText-Bold.ufo/glyphs/V_.glif new file mode 100644 index 00000000..5e47f5c7 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/V_.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/V_.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/V_.ss01.glif new file mode 100644 index 00000000..5160d2fa --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/V_.ss01.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/V_e-cy.glif b/sources/FixelText-Bold.ufo/glyphs/V_e-cy.glif new file mode 100644 index 00000000..9f8acd66 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/V_e-cy.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + B + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/W_.glif b/sources/FixelText-Bold.ufo/glyphs/W_.glif new file mode 100644 index 00000000..48b95d3a --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/W_.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/W_.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/W_.ss01.glif new file mode 100644 index 00000000..b1fa6395 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/W_.ss01.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |A + com.fontlab.metricsRight + |A + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/W_acute.glif b/sources/FixelText-Bold.ufo/glyphs/W_acute.glif new file mode 100644 index 00000000..7f6a0eda --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/W_acute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W+acute.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/W_acute.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/W_acute.ss01.glif new file mode 100644 index 00000000..de3634a1 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/W_acute.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W.ss01+acute.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/W_circumflex.glif b/sources/FixelText-Bold.ufo/glyphs/W_circumflex.glif new file mode 100644 index 00000000..5b30a61f --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/W_circumflex.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W+circumflex.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/W_circumflex.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/W_circumflex.ss01.glif new file mode 100644 index 00000000..12e3afe1 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/W_circumflex.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W.ss01+circumflex.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/W_dieresis.glif b/sources/FixelText-Bold.ufo/glyphs/W_dieresis.glif new file mode 100644 index 00000000..51b021e2 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/W_dieresis.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + W+dieresis.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/W_dieresis.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/W_dieresis.ss01.glif new file mode 100644 index 00000000..6b4fc614 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/W_dieresis.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W.ss01+dieresis.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/W_ecyr.glif b/sources/FixelText-Bold.ufo/glyphs/W_ecyr.glif new file mode 100644 index 00000000..a1a9f912 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/W_ecyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/W_grave.glif b/sources/FixelText-Bold.ufo/glyphs/W_grave.glif new file mode 100644 index 00000000..b2710838 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/W_grave.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W+grave.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/W_grave.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/W_grave.ss01.glif new file mode 100644 index 00000000..3e97e3c1 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/W_grave.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W.ss01+grave.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/X_.glif b/sources/FixelText-Bold.ufo/glyphs/X_.glif new file mode 100644 index 00000000..137ef6b4 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/X_.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/X_.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/X_.ss01.glif new file mode 100644 index 00000000..0c4a6b41 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/X_.ss01.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/X_atailcyr.glif b/sources/FixelText-Bold.ufo/glyphs/X_atailcyr.glif new file mode 100644 index 00000000..bd6965f3 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/X_atailcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + X + com.fontlab.metricsRight + Katailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/Y_.glif b/sources/FixelText-Bold.ufo/glyphs/Y_.glif new file mode 100644 index 00000000..10418410 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/Y_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/Y_.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/Y_.ss01.glif new file mode 100644 index 00000000..bea25ce1 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/Y_.ss01.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/Y_acute.glif b/sources/FixelText-Bold.ufo/glyphs/Y_acute.glif new file mode 100644 index 00000000..45aea8cb --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/Y_acute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y+acute.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/Y_acute.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/Y_acute.ss01.glif new file mode 100644 index 00000000..752fafad --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/Y_acute.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y.ss01+acute.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/Y_aecyr.glif b/sources/FixelText-Bold.ufo/glyphs/Y_aecyr.glif new file mode 100644 index 00000000..cd1ddef7 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/Y_aecyr.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Я + com.fontlab.metricsRight + E + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/Y_atI_otified-cy.glif b/sources/FixelText-Bold.ufo/glyphs/Y_atI_otified-cy.glif new file mode 100644 index 00000000..94a9c069 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/Y_atI_otified-cy.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + com.fontlab.metricsRight + Yatcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/Y_atcyr.glif b/sources/FixelText-Bold.ufo/glyphs/Y_atcyr.glif new file mode 100644 index 00000000..27279ade --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/Y_atcyr.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Т + com.fontlab.metricsRight + Ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/Y_circumflex.glif b/sources/FixelText-Bold.ufo/glyphs/Y_circumflex.glif new file mode 100644 index 00000000..2f00b67f --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/Y_circumflex.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y+circumflex.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/Y_circumflex.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/Y_circumflex.ss01.glif new file mode 100644 index 00000000..da204deb --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/Y_circumflex.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y.ss01+circumflex.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/Y_dieresis.glif b/sources/FixelText-Bold.ufo/glyphs/Y_dieresis.glif new file mode 100644 index 00000000..e6262dd3 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/Y_dieresis.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y+dieresis.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/Y_dieresis.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/Y_dieresis.ss01.glif new file mode 100644 index 00000000..fa4c6566 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/Y_dieresis.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y.ss01+dieresis.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/Y_erN_eutral-cy.glif b/sources/FixelText-Bold.ufo/glyphs/Y_erN_eutral-cy.glif new file mode 100644 index 00000000..19c7c822 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/Y_erN_eutral-cy.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Hardsign-cy + com.fontlab.metricsRight + Ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/Y_eru-cy.accented.glif b/sources/FixelText-Bold.ufo/glyphs/Y_eru-cy.accented.glif new file mode 100644 index 00000000..5c5e869f --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/Y_eru-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ы+acute.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/Y_eru-cy.glif b/sources/FixelText-Bold.ufo/glyphs/Y_eru-cy.glif new file mode 100644 index 00000000..b99f9f0b --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/Y_eru-cy.glif @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/Y_eru-cymacron.glif b/sources/FixelText-Bold.ufo/glyphs/Y_eru-cymacron.glif new file mode 100644 index 00000000..ec5acf36 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/Y_eru-cymacron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ы+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/Y_eruB_ackY_er-cy.glif b/sources/FixelText-Bold.ufo/glyphs/Y_eruB_ackY_er-cy.glif new file mode 100644 index 00000000..43f42fbc --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/Y_eruB_ackY_er-cy.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Hardsign + com.fontlab.metricsRight + I + com.fontlab.recipe + Hardsign-cy_I + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/Y_i-cy.glif b/sources/FixelText-Bold.ufo/glyphs/Y_i-cy.glif new file mode 100644 index 00000000..73649ec7 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/Y_i-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Idieresis + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/Y_longdieresiscyr.glif b/sources/FixelText-Bold.ufo/glyphs/Y_longdieresiscyr.glif new file mode 100644 index 00000000..2c89987e --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/Y_longdieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Yeru-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/Y_n-cy.glif b/sources/FixelText-Bold.ufo/glyphs/Y_n-cy.glif new file mode 100644 index 00000000..6bb9effa --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/Y_n-cy.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |Izhitsa + com.fontlab.metricsRight + |Izhitsa + com.fontlab.recipe + Izhitsa + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/Y_uR_eversed-cy.glif b/sources/FixelText-Bold.ufo/glyphs/Y_uR_eversed-cy.glif new file mode 100644 index 00000000..ddd40591 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/Y_uR_eversed-cy.glif @@ -0,0 +1,20 @@ + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + H + com.fontlab.recipe + Ю + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/Y_usB_lended-cy.glif b/sources/FixelText-Bold.ufo/glyphs/Y_usB_lended-cy.glif new file mode 100644 index 00000000..972123a9 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/Y_usB_lended-cy.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Yusbigcyr + com.fontlab.metricsRight + Yusbigcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/Y_usC_losedlittle-cy.glif b/sources/FixelText-Bold.ufo/glyphs/Y_usC_losedlittle-cy.glif new file mode 100644 index 00000000..cca407f3 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/Y_usC_losedlittle-cy.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + A + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/Y_usbigcyr.glif b/sources/FixelText-Bold.ufo/glyphs/Y_usbigcyr.glif new file mode 100644 index 00000000..48f1249d --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/Y_usbigcyr.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ж + com.fontlab.metricsRight + Ж + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/Y_usbigiotifiedcyr.glif b/sources/FixelText-Bold.ufo/glyphs/Y_usbigiotifiedcyr.glif new file mode 100644 index 00000000..af749d1e --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/Y_usbigiotifiedcyr.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + Ж + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/Y_usiotifiedC_losedL_ittle-cy.glif b/sources/FixelText-Bold.ufo/glyphs/Y_usiotifiedC_losedL_ittle-cy.glif new file mode 100644 index 00000000..25949e82 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/Y_usiotifiedC_losedL_ittle-cy.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + A + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/Y_uslittlecyr.glif b/sources/FixelText-Bold.ufo/glyphs/Y_uslittlecyr.glif new file mode 100644 index 00000000..0fe45b77 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/Y_uslittlecyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + А-5 + com.fontlab.metricsRight + А-5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/Y_uslittleiotifiedcyr.glif b/sources/FixelText-Bold.ufo/glyphs/Y_uslittleiotifiedcyr.glif new file mode 100644 index 00000000..5b922f09 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/Y_uslittleiotifiedcyr.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + А-5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/Z_.glif b/sources/FixelText-Bold.ufo/glyphs/Z_.glif new file mode 100644 index 00000000..5bca3e47 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/Z_.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/Z_.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/Z_.ss01.glif new file mode 100644 index 00000000..c8bb468f --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/Z_.ss01.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/Z_acute.glif b/sources/FixelText-Bold.ufo/glyphs/Z_acute.glif new file mode 100644 index 00000000..7ae3c56a --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/Z_acute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Z+acute.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/Z_acute.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/Z_acute.ss01.glif new file mode 100644 index 00000000..6a99a2b3 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/Z_acute.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Z.ss01+acute.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/Z_caron.glif b/sources/FixelText-Bold.ufo/glyphs/Z_caron.glif new file mode 100644 index 00000000..85fdbc0a --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/Z_caron.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Z+caron.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/Z_caron.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/Z_caron.ss01.glif new file mode 100644 index 00000000..dcb34bc2 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/Z_caron.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Z.ss01+caron.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/Z_dotaccent.glif b/sources/FixelText-Bold.ufo/glyphs/Z_dotaccent.glif new file mode 100644 index 00000000..b71a3906 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/Z_dotaccent.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Z+dotaccent.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/Z_dotaccent.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/Z_dotaccent.ss01.glif new file mode 100644 index 00000000..6195b4d7 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/Z_dotaccent.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Z.ss01+dotaccent.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/Z_e-cy.glif b/sources/FixelText-Bold.ufo/glyphs/Z_e-cy.glif new file mode 100644 index 00000000..64712496 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/Z_e-cy.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |C + com.fontlab.metricsRight + B + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/Z_edieresiscyr.glif b/sources/FixelText-Bold.ufo/glyphs/Z_edieresiscyr.glif new file mode 100644 index 00000000..52330bad --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/Z_edieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ze-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/Z_emlya-cy.glif b/sources/FixelText-Bold.ufo/glyphs/Z_emlya-cy.glif new file mode 100644 index 00000000..4725600b --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/Z_emlya-cy.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Z-10 + com.fontlab.metricsRight + Z + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/Z_etailcyr.B_S_H_.glif b/sources/FixelText-Bold.ufo/glyphs/Z_etailcyr.B_S_H_.glif new file mode 100644 index 00000000..6d640527 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/Z_etailcyr.B_S_H_.glif @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + З + com.fontlab.metricsRight + З + com.fontlab.recipe + Zetailcyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/Z_etailcyr.glif b/sources/FixelText-Bold.ufo/glyphs/Z_etailcyr.glif new file mode 100644 index 00000000..b3c56666 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/Z_etailcyr.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + З + com.fontlab.metricsRight + З + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/Z_he-cy.glif b/sources/FixelText-Bold.ufo/glyphs/Z_he-cy.glif new file mode 100644 index 00000000..b4083e39 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/Z_he-cy.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |K + com.fontlab.metricsRight + K + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/Z_he-cy.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/Z_he-cy.ss01.glif new file mode 100644 index 00000000..9084dffe --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/Z_he-cy.ss01.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |K + com.fontlab.metricsRight + K + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/Z_hebrevecyr.glif b/sources/FixelText-Bold.ufo/glyphs/Z_hebrevecyr.glif new file mode 100644 index 00000000..5df43b14 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/Z_hebrevecyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Zhe-cy+breve.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/Z_hedieresiscyr.glif b/sources/FixelText-Bold.ufo/glyphs/Z_hedieresiscyr.glif new file mode 100644 index 00000000..939f022e --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/Z_hedieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Zhe-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/Z_hetailcyr.glif b/sources/FixelText-Bold.ufo/glyphs/Z_hetailcyr.glif new file mode 100644 index 00000000..e468b8d0 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/Z_hetailcyr.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ж + com.fontlab.metricsRight + Katailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/Z_hwe-cy.glif b/sources/FixelText-Bold.ufo/glyphs/Z_hwe-cy.glif new file mode 100644 index 00000000..361b68ae --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/Z_hwe-cy.glif @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + З + com.fontlab.metricsRight + Ж + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/Z_jekomicyr.glif b/sources/FixelText-Bold.ufo/glyphs/Z_jekomicyr.glif new file mode 100644 index 00000000..ed20b489 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/Z_jekomicyr.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Dzjekomicyr + com.fontlab.metricsRight + Njekomicyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/_notdef.glif b/sources/FixelText-Bold.ufo/glyphs/_notdef.glif new file mode 100644 index 00000000..7261060b --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/_notdef.glif @@ -0,0 +1,178 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + =55 + com.schriftgestaltung.Glyphs.rightMetricsKey + =55 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/_perc-circule.glif b/sources/FixelText-Bold.ufo/glyphs/_perc-circule.glif new file mode 100644 index 00000000..3eda0366 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/_perc-circule.glif @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.schriftgestaltung.Glyphs.Export + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/a-cy.accented.glif b/sources/FixelText-Bold.ufo/glyphs/a-cy.accented.glif new file mode 100644 index 00000000..a75b7c01 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/a-cy.accented.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+acute + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/a-cy.glif b/sources/FixelText-Bold.ufo/glyphs/a-cy.glif new file mode 100644 index 00000000..2965a1ee --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/a-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/a-cy.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/a-cy.ss01.glif new file mode 100644 index 00000000..9d1e9141 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/a-cy.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/a.glif b/sources/FixelText-Bold.ufo/glyphs/a.glif new file mode 100644 index 00000000..a3fdfc8a --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/a.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + n-10 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/a.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/a.ss01.glif new file mode 100644 index 00000000..7b44a58d --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/a.ss01.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/aacute.glif b/sources/FixelText-Bold.ufo/glyphs/aacute.glif new file mode 100644 index 00000000..39bde28d --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/aacute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+acute + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/aacute.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/aacute.ss01.glif new file mode 100644 index 00000000..f54659e4 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/aacute.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+acute + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/abreve.glif b/sources/FixelText-Bold.ufo/glyphs/abreve.glif new file mode 100644 index 00000000..23692e55 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/abreve.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+breve + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/abreve.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/abreve.ss01.glif new file mode 100644 index 00000000..d393b29b --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/abreve.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+breve + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/abrevecyr.glif b/sources/FixelText-Bold.ufo/glyphs/abrevecyr.glif new file mode 100644 index 00000000..d1025ef1 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/abrevecyr.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+breve + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/acaron.glif b/sources/FixelText-Bold.ufo/glyphs/acaron.glif new file mode 100644 index 00000000..0a81b104 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/acaron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+caron + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/acircumflex.glif b/sources/FixelText-Bold.ufo/glyphs/acircumflex.glif new file mode 100644 index 00000000..6639f902 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/acircumflex.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+circumflex + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/acircumflex.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/acircumflex.ss01.glif new file mode 100644 index 00000000..cd8a8ca3 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/acircumflex.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+circumflex + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/acute.case.glif b/sources/FixelText-Bold.ufo/glyphs/acute.case.glif new file mode 100644 index 00000000..3090b7b2 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/acute.case.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/acute.glif b/sources/FixelText-Bold.ufo/glyphs/acute.glif new file mode 100644 index 00000000..48300d66 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/acute.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/adieresis.glif b/sources/FixelText-Bold.ufo/glyphs/adieresis.glif new file mode 100644 index 00000000..ead97790 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/adieresis.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+dieresis + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/adieresis.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/adieresis.ss01.glif new file mode 100644 index 00000000..dd855e56 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/adieresis.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+dieresis + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/adieresiscyr.glif b/sources/FixelText-Bold.ufo/glyphs/adieresiscyr.glif new file mode 100644 index 00000000..cc52b20e --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/adieresiscyr.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/ae.glif b/sources/FixelText-Bold.ufo/glyphs/ae.glif new file mode 100644 index 00000000..0621c751 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/ae.glif @@ -0,0 +1,101 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + a + com.fontlab.metricsRight + e + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/ae.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/ae.ss01.glif new file mode 100644 index 00000000..2b3e1816 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/ae.ss01.glif @@ -0,0 +1,96 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + a + com.fontlab.metricsRight + e.ss01 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/aeacute.glif b/sources/FixelText-Bold.ufo/glyphs/aeacute.glif new file mode 100644 index 00000000..c121670a --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/aeacute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ae+acute + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/agrave.glif b/sources/FixelText-Bold.ufo/glyphs/agrave.glif new file mode 100644 index 00000000..fba610e2 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/agrave.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+grave + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/agrave.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/agrave.ss01.glif new file mode 100644 index 00000000..0bb12aef --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/agrave.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+grave + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/aiecyr.glif b/sources/FixelText-Bold.ufo/glyphs/aiecyr.glif new file mode 100644 index 00000000..ce46f3bc --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/aiecyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ae + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/amacron.glif b/sources/FixelText-Bold.ufo/glyphs/amacron.glif new file mode 100644 index 00000000..6fdbb919 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/amacron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+macron + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/amacron.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/amacron.ss01.glif new file mode 100644 index 00000000..6bdb1a95 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/amacron.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+macron + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/ampersand.glif b/sources/FixelText-Bold.ufo/glyphs/ampersand.glif new file mode 100644 index 00000000..d7f159f9 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/ampersand.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/aogonek.glif b/sources/FixelText-Bold.ufo/glyphs/aogonek.glif new file mode 100644 index 00000000..b62841a1 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/aogonek.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+ogonek + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/aogonek.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/aogonek.ss01.glif new file mode 100644 index 00000000..a33b0ffb --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/aogonek.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+ogonek + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/apostrophemod.glif b/sources/FixelText-Bold.ufo/glyphs/apostrophemod.glif new file mode 100644 index 00000000..19da9345 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/apostrophemod.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + apostrophe + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/approxequal.glif b/sources/FixelText-Bold.ufo/glyphs/approxequal.glif new file mode 100644 index 00000000..ac486338 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/approxequal.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/aring.glif b/sources/FixelText-Bold.ufo/glyphs/aring.glif new file mode 100644 index 00000000..53300f92 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/aring.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+ring + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/aring.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/aring.ss01.glif new file mode 100644 index 00000000..fb03a62b --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/aring.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+ring + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/arrowdown.case.glif b/sources/FixelText-Bold.ufo/glyphs/arrowdown.case.glif new file mode 100644 index 00000000..07dd3f39 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/arrowdown.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + arrowup + com.fontlab.metricsRight + arrowup + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/arrowdown.glif b/sources/FixelText-Bold.ufo/glyphs/arrowdown.glif new file mode 100644 index 00000000..f9c79cd4 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/arrowdown.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + arrowup + com.fontlab.metricsRight + arrowup + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/arrowdown.ss01.case.glif b/sources/FixelText-Bold.ufo/glyphs/arrowdown.ss01.case.glif new file mode 100644 index 00000000..e7c40dd7 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/arrowdown.ss01.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + arrowup + com.fontlab.metricsRight + arrowup + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/arrowdown.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/arrowdown.ss01.glif new file mode 100644 index 00000000..c742861d --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/arrowdown.ss01.glif @@ -0,0 +1,15 @@ + + + + + + + + + com.fontlab.metricsLeft + arrowup + com.fontlab.metricsRight + arrowup + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/arrowleft.case.glif b/sources/FixelText-Bold.ufo/glyphs/arrowleft.case.glif new file mode 100644 index 00000000..0ff961cd --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/arrowleft.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + arrowleft + com.fontlab.metricsRight + arrowleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/arrowleft.glif b/sources/FixelText-Bold.ufo/glyphs/arrowleft.glif new file mode 100644 index 00000000..3c73de34 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/arrowleft.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/arrowleft.ss01.case.glif b/sources/FixelText-Bold.ufo/glyphs/arrowleft.ss01.case.glif new file mode 100644 index 00000000..275946ca --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/arrowleft.ss01.case.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + arrowleft + com.fontlab.metricsRight + arrowleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/arrowleft.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/arrowleft.ss01.glif new file mode 100644 index 00000000..885ee87b --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/arrowleft.ss01.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + arrowleft + com.fontlab.metricsRight + arrowleft + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/arrowright.case.glif b/sources/FixelText-Bold.ufo/glyphs/arrowright.case.glif new file mode 100644 index 00000000..51dc0616 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/arrowright.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |arrowleft + com.fontlab.metricsRight + |arrowleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/arrowright.glif b/sources/FixelText-Bold.ufo/glyphs/arrowright.glif new file mode 100644 index 00000000..c4bea440 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/arrowright.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + |arrowleft + com.fontlab.metricsRight + |arrowleft + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/arrowright.ss01.case.glif b/sources/FixelText-Bold.ufo/glyphs/arrowright.ss01.case.glif new file mode 100644 index 00000000..e2b72afd --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/arrowright.ss01.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |arrowleft + com.fontlab.metricsRight + |arrowleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/arrowright.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/arrowright.ss01.glif new file mode 100644 index 00000000..554b5380 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/arrowright.ss01.glif @@ -0,0 +1,15 @@ + + + + + + + + + com.fontlab.metricsLeft + |arrowleft + com.fontlab.metricsRight + |arrowleft + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/arrowup.case.glif b/sources/FixelText-Bold.ufo/glyphs/arrowup.case.glif new file mode 100644 index 00000000..6eb5c617 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/arrowup.case.glif @@ -0,0 +1,15 @@ + + + + + + + + + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/arrowup.glif b/sources/FixelText-Bold.ufo/glyphs/arrowup.glif new file mode 100644 index 00000000..65bfbeea --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/arrowup.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + l() + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/arrowup.ss01.case.glif b/sources/FixelText-Bold.ufo/glyphs/arrowup.ss01.case.glif new file mode 100644 index 00000000..d31af7ef --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/arrowup.ss01.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + arrowup + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/arrowup.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/arrowup.ss01.glif new file mode 100644 index 00000000..ad6d0a96 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/arrowup.ss01.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + arrowup + com.fontlab.metricsRight + l() + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/asciicircum.glif b/sources/FixelText-Bold.ufo/glyphs/asciicircum.glif new file mode 100644 index 00000000..c2f4ccb1 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/asciicircum.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/asciitilde.glif b/sources/FixelText-Bold.ufo/glyphs/asciitilde.glif new file mode 100644 index 00000000..4ce2489a --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/asciitilde.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/asterisk.glif b/sources/FixelText-Bold.ufo/glyphs/asterisk.glif new file mode 100644 index 00000000..84bc6638 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/asterisk.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/at.case.glif b/sources/FixelText-Bold.ufo/glyphs/at.case.glif new file mode 100644 index 00000000..3603f7eb --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/at.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/at.glif b/sources/FixelText-Bold.ufo/glyphs/at.glif new file mode 100644 index 00000000..f5927603 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/at.glif @@ -0,0 +1,92 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/atilde.glif b/sources/FixelText-Bold.ufo/glyphs/atilde.glif new file mode 100644 index 00000000..0cd40fb8 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/atilde.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+tilde + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/atilde.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/atilde.ss01.glif new file mode 100644 index 00000000..4caa35e2 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/atilde.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+tilde + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/b.glif b/sources/FixelText-Bold.ufo/glyphs/b.glif new file mode 100644 index 00000000..ed12b927 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/b.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/b.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/b.ss01.glif new file mode 100644 index 00000000..1914ff9f --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/b.ss01.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/backslash.case.glif b/sources/FixelText-Bold.ufo/glyphs/backslash.case.glif new file mode 100644 index 00000000..79e039c9 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/backslash.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + backslash + com.fontlab.metricsRight + backslash + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/backslash.glif b/sources/FixelText-Bold.ufo/glyphs/backslash.glif new file mode 100644 index 00000000..76c3c6fe --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/backslash.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/bar.case.glif b/sources/FixelText-Bold.ufo/glyphs/bar.case.glif new file mode 100644 index 00000000..5d4812af --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/bar.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + H-10 + com.fontlab.metricsRight + H-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/bar.glif b/sources/FixelText-Bold.ufo/glyphs/bar.glif new file mode 100644 index 00000000..4298d93b --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/bar.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H-10 + com.fontlab.metricsRight + H-10 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/be-cy.S_R_B_.glif b/sources/FixelText-Bold.ufo/glyphs/be-cy.S_R_B_.glif new file mode 100644 index 00000000..f381265f --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/be-cy.S_R_B_.glif @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/be-cy.glif b/sources/FixelText-Bold.ufo/glyphs/be-cy.glif new file mode 100644 index 00000000..4ee12dd3 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/be-cy.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/bishopblack.glif b/sources/FixelText-Bold.ufo/glyphs/bishopblack.glif new file mode 100644 index 00000000..82010999 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/bishopblack.glif @@ -0,0 +1,241 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =10 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/bishopwhite.glif b/sources/FixelText-Bold.ufo/glyphs/bishopwhite.glif new file mode 100644 index 00000000..48241c9a --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/bishopwhite.glif @@ -0,0 +1,331 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/braceleft.case.glif b/sources/FixelText-Bold.ufo/glyphs/braceleft.case.glif new file mode 100644 index 00000000..b9f022e8 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/braceleft.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |braceright.case + com.fontlab.metricsRight + |braceright.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/braceleft.glif b/sources/FixelText-Bold.ufo/glyphs/braceleft.glif new file mode 100644 index 00000000..eb687124 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/braceleft.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/braceright.case.glif b/sources/FixelText-Bold.ufo/glyphs/braceright.case.glif new file mode 100644 index 00000000..8dcf7b31 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/braceright.case.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/braceright.glif b/sources/FixelText-Bold.ufo/glyphs/braceright.glif new file mode 100644 index 00000000..7023966a --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/braceright.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/bracketangleleft.case.glif b/sources/FixelText-Bold.ufo/glyphs/bracketangleleft.case.glif new file mode 100644 index 00000000..cba29a22 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/bracketangleleft.case.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + parenleft.case + com.fontlab.metricsRight + parenleft.case + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/bracketangleleft.glif b/sources/FixelText-Bold.ufo/glyphs/bracketangleleft.glif new file mode 100644 index 00000000..bbc14bb3 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/bracketangleleft.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + parenleft + com.fontlab.metricsRight + parenleft + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/bracketangleright.case.glif b/sources/FixelText-Bold.ufo/glyphs/bracketangleright.case.glif new file mode 100644 index 00000000..af74e5cc --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/bracketangleright.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |bracketangleleft.case + com.fontlab.metricsRight + |bracketangleleft.case + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/bracketangleright.glif b/sources/FixelText-Bold.ufo/glyphs/bracketangleright.glif new file mode 100644 index 00000000..c5b03783 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/bracketangleright.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.metricsLeft + |bracketangleleft + com.fontlab.metricsRight + |bracketangleleft + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/bracketleft.case.glif b/sources/FixelText-Bold.ufo/glyphs/bracketleft.case.glif new file mode 100644 index 00000000..db3b8137 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/bracketleft.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |bracketright.case + com.fontlab.metricsRight + |bracketright.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/bracketleft.glif b/sources/FixelText-Bold.ufo/glyphs/bracketleft.glif new file mode 100644 index 00000000..a73a52ff --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/bracketleft.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/bracketright.case.glif b/sources/FixelText-Bold.ufo/glyphs/bracketright.case.glif new file mode 100644 index 00000000..7cba2659 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/bracketright.case.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |bracketleft + com.fontlab.metricsRight + |bracketleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/bracketright.glif b/sources/FixelText-Bold.ufo/glyphs/bracketright.glif new file mode 100644 index 00000000..8d82463b --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/bracketright.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |bracketleft + com.fontlab.metricsRight + |bracketleft + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/breve.case.glif b/sources/FixelText-Bold.ufo/glyphs/breve.case.glif new file mode 100644 index 00000000..240c8398 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/breve.case.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/breve.glif b/sources/FixelText-Bold.ufo/glyphs/breve.glif new file mode 100644 index 00000000..8f43e166 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/breve.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/brokenbar.case.glif b/sources/FixelText-Bold.ufo/glyphs/brokenbar.case.glif new file mode 100644 index 00000000..595f0560 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/brokenbar.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + bar + com.fontlab.metricsRight + bar + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/brokenbar.glif b/sources/FixelText-Bold.ufo/glyphs/brokenbar.glif new file mode 100644 index 00000000..9ef229e4 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/brokenbar.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + bar + com.fontlab.metricsRight + bar + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/bullet.case.glif b/sources/FixelText-Bold.ufo/glyphs/bullet.case.glif new file mode 100644 index 00000000..79549cc0 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/bullet.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + period + com.fontlab.metricsRight + period + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/bullet.glif b/sources/FixelText-Bold.ufo/glyphs/bullet.glif new file mode 100644 index 00000000..11a91cc2 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/bullet.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + period + com.fontlab.metricsRight + period + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/c.glif b/sources/FixelText-Bold.ufo/glyphs/c.glif new file mode 100644 index 00000000..90d7c85a --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/c.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/cacute.glif b/sources/FixelText-Bold.ufo/glyphs/cacute.glif new file mode 100644 index 00000000..1fa90af3 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/cacute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+acute + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/caron.case.glif b/sources/FixelText-Bold.ufo/glyphs/caron.case.glif new file mode 100644 index 00000000..95f5f24d --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/caron.case.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/caron.glif b/sources/FixelText-Bold.ufo/glyphs/caron.glif new file mode 100644 index 00000000..4308a0b7 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/caron.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/caron.salt.glif b/sources/FixelText-Bold.ufo/glyphs/caron.salt.glif new file mode 100644 index 00000000..12220771 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/caron.salt.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/ccaron.glif b/sources/FixelText-Bold.ufo/glyphs/ccaron.glif new file mode 100644 index 00000000..ef674882 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/ccaron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+caron + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/ccedilla.glif b/sources/FixelText-Bold.ufo/glyphs/ccedilla.glif new file mode 100644 index 00000000..877445f3 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/ccedilla.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+cedilla + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/cche-cy.glif b/sources/FixelText-Bold.ufo/glyphs/cche-cy.glif new file mode 100644 index 00000000..bb57f631 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/cche-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ч + com.fontlab.metricsRight + ч + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/ccircumflex.glif b/sources/FixelText-Bold.ufo/glyphs/ccircumflex.glif new file mode 100644 index 00000000..9a0766f2 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/ccircumflex.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+circumflex + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/cdotaccent.glif b/sources/FixelText-Bold.ufo/glyphs/cdotaccent.glif new file mode 100644 index 00000000..33a16b4e --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/cdotaccent.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+dotaccent + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/cedilla.glif b/sources/FixelText-Bold.ufo/glyphs/cedilla.glif new file mode 100644 index 00000000..bbab8aa2 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/cedilla.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/cent.glif b/sources/FixelText-Bold.ufo/glyphs/cent.glif new file mode 100644 index 00000000..c7edbdf0 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/cent.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + c + com.fontlab.metricsRight + c + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/che-cy.glif b/sources/FixelText-Bold.ufo/glyphs/che-cy.glif new file mode 100644 index 00000000..c33450b5 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/che-cy.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + u-10 + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/cheabkhcyr.glif b/sources/FixelText-Bold.ufo/glyphs/cheabkhcyr.glif new file mode 100644 index 00000000..55475855 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/cheabkhcyr.glif @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + e + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/cheabkhtailcyr.glif b/sources/FixelText-Bold.ufo/glyphs/cheabkhtailcyr.glif new file mode 100644 index 00000000..43938668 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/cheabkhtailcyr.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + cheabkhcyr + com.fontlab.metricsRight + cheabkhcyr + com.fontlab.recipe + cheabkhcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/chedieresiscyr.glif b/sources/FixelText-Bold.ufo/glyphs/chedieresiscyr.glif new file mode 100644 index 00000000..4d9ee353 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/chedieresiscyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + che-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/chekhakascyr.glif b/sources/FixelText-Bold.ufo/glyphs/chekhakascyr.glif new file mode 100644 index 00000000..1ea82068 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/chekhakascyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ч + com.fontlab.metricsRight + н + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/chetailcyr.glif b/sources/FixelText-Bold.ufo/glyphs/chetailcyr.glif new file mode 100644 index 00000000..50b89674 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/chetailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ч + com.fontlab.metricsRight + entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/chevertcyr.glif b/sources/FixelText-Bold.ufo/glyphs/chevertcyr.glif new file mode 100644 index 00000000..3b78885c --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/chevertcyr.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ч + com.fontlab.metricsRight + н + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/circumflex.case.glif b/sources/FixelText-Bold.ufo/glyphs/circumflex.case.glif new file mode 100644 index 00000000..2256dc70 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/circumflex.case.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/circumflex.glif b/sources/FixelText-Bold.ufo/glyphs/circumflex.glif new file mode 100644 index 00000000..cc36ad5c --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/circumflex.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/clubwhite.glif b/sources/FixelText-Bold.ufo/glyphs/clubwhite.glif new file mode 100644 index 00000000..f2747a1a --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/clubwhite.glif @@ -0,0 +1,155 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/colon.case.glif b/sources/FixelText-Bold.ufo/glyphs/colon.case.glif new file mode 100644 index 00000000..872ca550 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/colon.case.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/colon.glif b/sources/FixelText-Bold.ufo/glyphs/colon.glif new file mode 100644 index 00000000..1b3a1e4e --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/colon.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/colontriangularmod.glif b/sources/FixelText-Bold.ufo/glyphs/colontriangularmod.glif new file mode 100644 index 00000000..d30f793f --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/colontriangularmod.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + colon + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/comma.glif b/sources/FixelText-Bold.ufo/glyphs/comma.glif new file mode 100644 index 00000000..6a8988ac --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/comma.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/commaaccentcomb.glif b/sources/FixelText-Bold.ufo/glyphs/commaaccentcomb.glif new file mode 100644 index 00000000..5094f1c6 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/commaaccentcomb.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/commaaccentcomb.salt.glif b/sources/FixelText-Bold.ufo/glyphs/commaaccentcomb.salt.glif new file mode 100644 index 00000000..3563519e --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/commaaccentcomb.salt.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/contents.plist b/sources/FixelText-Bold.ufo/glyphs/contents.plist new file mode 100644 index 00000000..2830b2de --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/contents.plist @@ -0,0 +1,2352 @@ + + + + + .notdef + _notdef.glif + A + A_.glif + A-cy + A_-cy.glif + A-cy.accented + A_-cy.accented.glif + A-cy.ss01 + A_-cy.ss01.glif + A.ss01 + A_.ss01.glif + AE + A_E_.glif + AE.ss01 + A_E_.ss01.glif + AEacute + A_E_acute.glif + Aacute + A_acute.glif + Aacute.ss01 + A_acute.ss01.glif + Abreve + A_breve.glif + Abreve.ss01 + A_breve.ss01.glif + Abrevecyr + A_brevecyr.glif + Acaron + A_caron.glif + Acircumflex + A_circumflex.glif + Acircumflex.ss01 + A_circumflex.ss01.glif + Adieresis + A_dieresis.glif + Adieresis.ss01 + A_dieresis.ss01.glif + Adieresiscyr + A_dieresiscyr.glif + Agrave + A_grave.glif + Agrave.ss01 + A_grave.ss01.glif + Aiecyr + A_iecyr.glif + Amacron + A_macron.glif + Amacron.ss01 + A_macron.ss01.glif + Aogonek + A_ogonek.glif + Aogonek.ss01 + A_ogonek.ss01.glif + Aring + A_ring.glif + Aring.ss01 + A_ring.ss01.glif + Atilde + A_tilde.glif + Atilde.ss01 + A_tilde.ss01.glif + B + B_.glif + Be-cy + B_e-cy.glif + C + C_.glif + CR + C_R_.glif + Cacute + C_acute.glif + Ccaron + C_caron.glif + Ccedilla + C_cedilla.glif + Cche-cy + C_che-cy.glif + Ccircumflex + C_circumflex.glif + Cdotaccent + C_dotaccent.glif + Che-cy + C_he-cy.glif + Cheabkhcyr + C_heabkhcyr.glif + Cheabkhtailcyr + C_heabkhtailcyr.glif + Chedieresiscyr + C_hedieresiscyr.glif + Chekhakascyr + C_hekhakascyr.glif + Chetailcyr + C_hetailcyr.glif + Chevertcyr + C_hevertcyr.glif + CrossedO-cy + C_rossedO_-cy.glif + D + D_.glif + Dcaron + D_caron.glif + Dchecyr + D_checyr.glif + Dcroat + D_croat.glif + De-cy + D_e-cy.glif + De-cy.BGR + D_e-cy.B_G_R_.glif + DeSoft-cy + D_eS_oft-cy.glif + Dekomicyr + D_ekomicyr.glif + Delta + D_elta.glif + Djecyr + D_jecyr.glif + Djekomicyr + D_jekomicyr.glif + Djerv-cy + D_jerv-cy.glif + DoubleO-cy + D_oubleO_-cy.glif + Dwe-cy + D_we-cy.glif + Dze-cy + D_ze-cy.glif + DzeReversed-cy + D_zeR_eversed-cy.glif + Dzeabkhcyr + D_zeabkhcyr.glif + Dzelo-cy + D_zelo-cy.glif + Dzhecyr + D_zhecyr.glif + Dzjekomicyr + D_zjekomicyr.glif + Dzwe-cy + D_zwe-cy.glif + Dzze-cy + D_zze-cy.glif + Dzzhecyr + D_zzhecyr.glif + E + E_.glif + E-cy + E_-cy.glif + E-cy.accented + E_-cy.accented.glif + Eacute + E_acute.glif + Ebreve + E_breve.glif + Ecaron + E_caron.glif + Ecircumflex + E_circumflex.glif + Edieresis + E_dieresis.glif + Edotaccent + E_dotaccent.glif + Ef-cy + E_f-cy.glif + Ef-cy.BGR + E_f-cy.B_G_R_.glif + Egrave + E_grave.glif + Eiotifiedcyr + E_iotifiedcyr.glif + El-cy + E_l-cy.glif + El-cy.BGR + E_l-cy.B_G_R_.glif + ElSoft-cy + E_lS_oft-cy.glif + Elhookcyr + E_lhookcyr.glif + Elmiddlehookcyr + E_lmiddlehookcyr.glif + Elsharptailcyr + E_lsharptailcyr.glif + Elsmallcyr + E_lsmallcyr.glif + Eltailcyr + E_ltailcyr.glif + Em-cy + E_m-cy.glif + Em-cy.ss01 + E_m-cy.ss01.glif + EmSoft-cy + E_mS_oft-cy.glif + Emacron + E_macron.glif + Emsharptailcyr + E_msharptailcyr.glif + En-cy + E_n-cy.glif + Eng + E_ng.glif + Eng.ss01 + E_ng.ss01.glif + Engecyr + E_ngecyr.glif + Enhookcyr + E_nhookcyr.glif + Enhookleftcyr + E_nhookleftcyr.glif + Enmiddlehookcyr + E_nmiddlehookcyr.glif + Ensharptailcyr + E_nsharptailcyr.glif + Entailcyr + E_ntailcyr.glif + Eogonek + E_ogonek.glif + Er-cy + E_r-cy.glif + Ereversed-cy + E_reversed-cy.glif + Ereversed-cy.accented + E_reversed-cy.accented.glif + Ereverseddieresiscyr + E_reverseddieresiscyr.glif + Ertickcyr + E_rtickcyr.glif + Es-cy + E_s-cy.glif + Estailcyr + E_stailcyr.glif + Estailcyr.BSH + E_stailcyr.B_S_H_.glif + Estailcyr.CHU + E_stailcyr.C_H_U_.glif + Eth + E_th.glif + F + F_.glif + Fitacyr + F_itacyr.glif + G + G_.glif + G.ss01 + G_.ss01.glif + Gacute + G_acute.glif + Gacute.ss01 + G_acute.ss01.glif + Gbreve + G_breve.glif + Gbreve.ss01 + G_breve.ss01.glif + Gcircumflex + G_circumflex.glif + Gcircumflex.ss01 + G_circumflex.ss01.glif + Gcommaaccent + G_commaaccent.glif + Gcommaaccent.ss01 + G_commaaccent.ss01.glif + Gdotaccent + G_dotaccent.glif + Gdotaccent.ss01 + G_dotaccent.ss01.glif + Ge-cy + G_e-cy.glif + Gehookcyr + G_ehookcyr.glif + Gehookstrokecyr + G_ehookstrokecyr.glif + Germandbls + G_ermandbls.glif + Gestrokecyr + G_estrokecyr.glif + Gestrokecyr.BSH + G_estrokecyr.B_S_H_.glif + Getailcyr + G_etailcyr.glif + Gheupturn-cy + G_heupturn-cy.glif + Gjecyr + G_jecyr.glif + H + H_.glif + Ha-cy + H_a-cy.glif + Ha-cy.ss01 + H_a-cy.ss01.glif + Haabkhcyr + H_aabkhcyr.glif + Hahookcyr + H_ahookcyr.glif + Hardsign-cy + H_ardsign-cy.glif + Hastrokecyr + H_astrokecyr.glif + Hbar + H_bar.glif + Hcircumflex + H_circumflex.glif + Hwe-cy + H_we-cy.glif + I + I_.glif + I-cy + I_-cy.glif + IJ + I_J_.glif + Ia-cy + I_a-cy.glif + Ia-cy.accented + I_a-cy.accented.glif + Ia-cy.ss01 + I_a-cy.ss01.glif + Iacute + I_acute.glif + Ibreve + I_breve.glif + Icircumflex + I_circumflex.glif + Idieresis + I_dieresis.glif + Idieresiscyr + I_dieresiscyr.glif + Idotaccent + I_dotaccent.glif + Ie-cy + I_e-cy.glif + Iebrevecyr + I_ebrevecyr.glif + Iegravecyr + I_egravecyr.glif + Igrave + I_grave.glif + Igravecyr + I_gravecyr.glif + Ii-cy + I_i-cy.glif + Ii-cy.accented + I_i-cy.accented.glif + Iishort-cy + I_ishort-cy.glif + Imacron + I_macron.glif + Imacroncyr + I_macroncyr.glif + Io-cy + I_o-cy.glif + Io-cy.accented + I_o-cy.accented.glif + Iogonek + I_ogonek.glif + Iota-cy + I_ota-cy.glif + IotifiedA-cy + I_otifiedA_-cy.glif + Ishortsharptailcyr + I_shortsharptailcyr.glif + Itilde + I_tilde.glif + Iu-cy + I_u-cy.glif + Iu-cy.accented + I_u-cy.accented.glif + Izhitsacyr + I_zhitsacyr.glif + Izhitsagravedblcyr + I_zhitsagravedblcyr.glif + J + J_.glif + J.ss01 + J_.ss01.glif + Jcircumflex + J_circumflex.glif + Jcircumflex.ss01 + J_circumflex.ss01.glif + Jecyr + J_ecyr.glif + K + K_.glif + K.ss01 + K_.ss01.glif + Ka-cy + K_a-cy.glif + Ka-cy.ss01 + K_a-cy.ss01.glif + Kaaleutcyr + K_aaleutcyr.glif + Kabashkcyr + K_abashkcyr.glif + Kahookcyr + K_ahookcyr.glif + Kastrokecyr + K_astrokecyr.glif + Katailcyr + K_atailcyr.glif + Kaverticalstrokecyr + K_averticalstrokecyr.glif + Kcommaaccent + K_commaaccent.glif + Kcommaaccent.ss01 + K_commaaccent.ss01.glif + Kjecyr + K_jecyr.glif + Koppacyr + K_oppacyr.glif + Ksicyr + K_sicyr.glif + L + L_.glif + Lacute + L_acute.glif + Lcaron + L_caron.glif + Lcommaaccent + L_commaaccent.glif + Ldot + L_dot.glif + Lhacyr + L_hacyr.glif + Ljecyr + L_jecyr.glif + Ljekomicyr + L_jekomicyr.glif + Lslash + L_slash.glif + M + M_.glif + M.ss01 + M_.ss01.glif + N + N_.glif + N.ss01 + N_.ss01.glif + NULL + N_U_L_L_.glif + Nacute + N_acute.glif + Nacute.ss01 + N_acute.ss01.glif + Ncaron + N_caron.glif + Ncaron.ss01 + N_caron.ss01.glif + Ncommaaccent + N_commaaccent.glif + Ncommaaccent.ss01 + N_commaaccent.ss01.glif + Njecyr + N_jecyr.glif + Njekomicyr + N_jekomicyr.glif + Ntilde + N_tilde.glif + Ntilde.ss01 + N_tilde.ss01.glif + O + O_.glif + O-cy + O_-cy.glif + O-cy.accented + O_-cy.accented.glif + OBinocular-cy + O_B_inocular-cy.glif + ODoubleMonocular-cy + O_D_oubleM_onocular-cy.glif + OE + O_E_.glif + OMonocular-cy + O_M_onocular-cy.glif + Oacute + O_acute.glif + Obarcyr + O_barcyr.glif + Obardieresiscyr + O_bardieresiscyr.glif + Obreve + O_breve.glif + Ocircumflex + O_circumflex.glif + Odieresis + O_dieresis.glif + Odieresiscyr + O_dieresiscyr.glif + Ograve + O_grave.glif + Ohungarumlaut + O_hungarumlaut.glif + Omacron + O_macron.glif + Omega + O_mega.glif + OmegaBroad-cy + O_megaB_road-cy.glif + Omegacyr + O_megacyr.glif + Omegaroundcyr + O_megaroundcyr.glif + Omegatitlocyr + O_megatitlocyr.glif + Oslash + O_slash.glif + Oslashacute + O_slashacute.glif + Otcyr + O_tcyr.glif + Otilde + O_tilde.glif + P + P_.glif + Palochkacyr + P_alochkacyr.glif + Pe-cy + P_e-cy.glif + Pehookcyr + P_ehookcyr.glif + Petailcyr + P_etailcyr.glif + Psicyr + P_sicyr.glif + Q + Q_.glif + Q.ss01 + Q_.ss01.glif + Qacyr + Q_acyr.glif + R + R_.glif + Racute + R_acute.glif + Rcaron + R_caron.glif + Rcommaaccent + R_commaaccent.glif + Reversedzecyr + R_eversedzecyr.glif + Rhacyr + R_hacyr.glif + S + S_.glif + Sacute + S_acute.glif + Scaron + S_caron.glif + Scedilla + S_cedilla.glif + Schwa + S_chwa.glif + Schwacyr + S_chwacyr.glif + Schwadieresiscyr + S_chwadieresiscyr.glif + Scircumflex + S_circumflex.glif + Scommaaccent + S_commaaccent.glif + Semisoftcyr + S_emisoftcyr.glif + Sha-cy + S_ha-cy.glif + Shcha-cy + S_hcha-cy.glif + Shhacyr + S_hhacyr.glif + Shhatailcyr + S_hhatailcyr.glif + Shwe-cy + S_hwe-cy.glif + Sjekomicyr + S_jekomicyr.glif + Softsign-cy + S_oftsign-cy.glif + T + T_.glif + Tbar + T_bar.glif + Tcaron + T_caron.glif + Tcedilla + T_cedilla.glif + Tche-cy + T_che-cy.glif + Tcommaaccent + T_commaaccent.glif + Te-cy + T_e-cy.glif + TeWithMiddleHook-cy + T_eW_ithM_iddleH_ook-cy.glif + Tetailcyr + T_etailcyr.glif + Tetsecyr + T_etsecyr.glif + Thorn + T_horn.glif + Tjekomicyr + T_jekomicyr.glif + Tse-cy + T_se-cy.glif + TseReversed-cy + T_seR_eversed-cy.glif + Tshecyr + T_shecyr.glif + Tsse-cy + T_sse-cy.glif + Tswe-cy + T_swe-cy.glif + Twe-cy + T_we-cy.glif + U + U_.glif + U-cy + U_-cy.glif + U-cy.accented + U_-cy.accented.glif + U-cy.ss01 + U_-cy.ss01.glif + Uacute + U_acute.glif + Uacutedblcyr + U_acutedblcyr.glif + Ubreve + U_breve.glif + Ucircumflex + U_circumflex.glif + Udieresis + U_dieresis.glif + Udieresiscyr + U_dieresiscyr.glif + Ugrave + U_grave.glif + Uhungarumlaut + U_hungarumlaut.glif + UkMonograph-cy + U_kM_onograph-cy.glif + Ukcyr + U_kcyr.glif + Umacron + U_macron.glif + Umacroncyr + U_macroncyr.glif + Uogonek + U_ogonek.glif + Uring + U_ring.glif + Ushort-cy + U_short-cy.glif + Ushort-cy.ss01 + U_short-cy.ss01.glif + Ustraightcyr + U_straightcyr.glif + Ustraightstrokecyr + U_straightstrokecyr.glif + Utilde + U_tilde.glif + V + V_.glif + V.ss01 + V_.ss01.glif + Ve-cy + V_e-cy.glif + W + W_.glif + W.ss01 + W_.ss01.glif + Wacute + W_acute.glif + Wacute.ss01 + W_acute.ss01.glif + Wcircumflex + W_circumflex.glif + Wcircumflex.ss01 + W_circumflex.ss01.glif + Wdieresis + W_dieresis.glif + Wdieresis.ss01 + W_dieresis.ss01.glif + Wecyr + W_ecyr.glif + Wgrave + W_grave.glif + Wgrave.ss01 + W_grave.ss01.glif + X + X_.glif + X.ss01 + X_.ss01.glif + Xatailcyr + X_atailcyr.glif + Y + Y_.glif + Y.ss01 + Y_.ss01.glif + Yacute + Y_acute.glif + Yacute.ss01 + Y_acute.ss01.glif + Yaecyr + Y_aecyr.glif + YatIotified-cy + Y_atI_otified-cy.glif + Yatcyr + Y_atcyr.glif + Ycircumflex + Y_circumflex.glif + Ycircumflex.ss01 + Y_circumflex.ss01.glif + Ydieresis + Y_dieresis.glif + Ydieresis.ss01 + Y_dieresis.ss01.glif + YerNeutral-cy + Y_erN_eutral-cy.glif + Yeru-cy + Y_eru-cy.glif + Yeru-cy.accented + Y_eru-cy.accented.glif + Yeru-cymacron + Y_eru-cymacron.glif + YeruBackYer-cy + Y_eruB_ackY_er-cy.glif + Yi-cy + Y_i-cy.glif + Ylongdieresiscyr + Y_longdieresiscyr.glif + Yn-cy + Y_n-cy.glif + YuReversed-cy + Y_uR_eversed-cy.glif + YusBlended-cy + Y_usB_lended-cy.glif + YusClosedlittle-cy + Y_usC_losedlittle-cy.glif + Yusbigcyr + Y_usbigcyr.glif + Yusbigiotifiedcyr + Y_usbigiotifiedcyr.glif + YusiotifiedClosedLittle-cy + Y_usiotifiedC_losedL_ittle-cy.glif + Yuslittlecyr + Y_uslittlecyr.glif + Yuslittleiotifiedcyr + Y_uslittleiotifiedcyr.glif + Z + Z_.glif + Z.ss01 + Z_.ss01.glif + Zacute + Z_acute.glif + Zacute.ss01 + Z_acute.ss01.glif + Zcaron + Z_caron.glif + Zcaron.ss01 + Z_caron.ss01.glif + Zdotaccent + Z_dotaccent.glif + Zdotaccent.ss01 + Z_dotaccent.ss01.glif + Ze-cy + Z_e-cy.glif + Zedieresiscyr + Z_edieresiscyr.glif + Zemlya-cy + Z_emlya-cy.glif + Zetailcyr + Z_etailcyr.glif + Zetailcyr.BSH + Z_etailcyr.B_S_H_.glif + Zhe-cy + Z_he-cy.glif + Zhe-cy.ss01 + Z_he-cy.ss01.glif + Zhebrevecyr + Z_hebrevecyr.glif + Zhedieresiscyr + Z_hedieresiscyr.glif + Zhetailcyr + Z_hetailcyr.glif + Zhwe-cy + Z_hwe-cy.glif + Zjekomicyr + Z_jekomicyr.glif + _perc-circule + _perc-circule.glif + a + a.glif + a-cy + a-cy.glif + a-cy.accented + a-cy.accented.glif + a-cy.ss01 + a-cy.ss01.glif + a.ss01 + a.ss01.glif + aacute + aacute.glif + aacute.ss01 + aacute.ss01.glif + abreve + abreve.glif + abreve.ss01 + abreve.ss01.glif + abrevecyr + abrevecyr.glif + acaron + acaron.glif + acircumflex + acircumflex.glif + acircumflex.ss01 + acircumflex.ss01.glif + acute + acute.glif + acute.case + acute.case.glif + adieresis + adieresis.glif + adieresis.ss01 + adieresis.ss01.glif + adieresiscyr + adieresiscyr.glif + ae + ae.glif + ae.ss01 + ae.ss01.glif + aeacute + aeacute.glif + agrave + agrave.glif + agrave.ss01 + agrave.ss01.glif + aiecyr + aiecyr.glif + amacron + amacron.glif + amacron.ss01 + amacron.ss01.glif + ampersand + ampersand.glif + aogonek + aogonek.glif + aogonek.ss01 + aogonek.ss01.glif + apostrophemod + apostrophemod.glif + approxequal + approxequal.glif + aring + aring.glif + aring.ss01 + aring.ss01.glif + arrowdown + arrowdown.glif + arrowdown.case + arrowdown.case.glif + arrowdown.ss01 + arrowdown.ss01.glif + arrowdown.ss01.case + arrowdown.ss01.case.glif + arrowleft + arrowleft.glif + arrowleft.case + arrowleft.case.glif + arrowleft.ss01 + arrowleft.ss01.glif + arrowleft.ss01.case + arrowleft.ss01.case.glif + arrowright + arrowright.glif + arrowright.case + arrowright.case.glif + arrowright.ss01 + arrowright.ss01.glif + arrowright.ss01.case + arrowright.ss01.case.glif + arrowup + arrowup.glif + arrowup.case + arrowup.case.glif + arrowup.ss01 + arrowup.ss01.glif + arrowup.ss01.case + arrowup.ss01.case.glif + asciicircum + asciicircum.glif + asciitilde + asciitilde.glif + asterisk + asterisk.glif + at + at.glif + at.case + at.case.glif + atilde + atilde.glif + atilde.ss01 + atilde.ss01.glif + b + b.glif + b.ss01 + b.ss01.glif + backslash + backslash.glif + backslash.case + backslash.case.glif + bar + bar.glif + bar.case + bar.case.glif + be-cy + be-cy.glif + be-cy.SRB + be-cy.S_R_B_.glif + bishopblack + bishopblack.glif + bishopwhite + bishopwhite.glif + braceleft + braceleft.glif + braceleft.case + braceleft.case.glif + braceright + braceright.glif + braceright.case + braceright.case.glif + bracketangleleft + bracketangleleft.glif + bracketangleleft.case + bracketangleleft.case.glif + bracketangleright + bracketangleright.glif + bracketangleright.case + bracketangleright.case.glif + bracketleft + bracketleft.glif + bracketleft.case + bracketleft.case.glif + bracketright + bracketright.glif + bracketright.case + bracketright.case.glif + breve + breve.glif + breve.case + breve.case.glif + brokenbar + brokenbar.glif + brokenbar.case + brokenbar.case.glif + bullet + bullet.glif + bullet.case + bullet.case.glif + c + c.glif + cacute + cacute.glif + caron + caron.glif + caron.case + caron.case.glif + caron.salt + caron.salt.glif + ccaron + ccaron.glif + ccedilla + ccedilla.glif + cche-cy + cche-cy.glif + ccircumflex + ccircumflex.glif + cdotaccent + cdotaccent.glif + cedilla + cedilla.glif + cent + cent.glif + che-cy + che-cy.glif + cheabkhcyr + cheabkhcyr.glif + cheabkhtailcyr + cheabkhtailcyr.glif + chedieresiscyr + chedieresiscyr.glif + chekhakascyr + chekhakascyr.glif + chetailcyr + chetailcyr.glif + chevertcyr + chevertcyr.glif + circumflex + circumflex.glif + circumflex.case + circumflex.case.glif + clubwhite + clubwhite.glif + colon + colon.glif + colon.case + colon.case.glif + colontriangularmod + colontriangularmod.glif + comma + comma.glif + commaaccentcomb + commaaccentcomb.glif + commaaccentcomb.salt + commaaccentcomb.salt.glif + copyright + copyright.glif + crossedo-cy + crossedo-cy.glif + crossedswords + crossedswords.glif + currency + currency.glif + d + d.glif + d.ss01 + d.ss01.glif + dagger + dagger.glif + daggerdbl + daggerdbl.glif + dcaron + dcaron.glif + dcaron.ss01 + dcaron.ss01.glif + dchecyr + dchecyr.glif + dcroat + dcroat.glif + dcroat.ss01 + dcroat.ss01.glif + de-cy + de-cy.glif + de-cy.BGR + de-cy.B_G_R_.glif + de-cy.ss01 + de-cy.ss01.glif + deSoft-cy + deS_oft-cy.glif + degree + degree.glif + dekomicyr + dekomicyr.glif + diamondwhite-misc + diamondwhite-misc.glif + dieresis + dieresis.glif + dieresis.alt + dieresis.alt.glif + dieresis.case + dieresis.case.glif + dieresisacute + dieresisacute.glif + dieresiscase.alt + dieresiscase.alt.glif + divide + divide.glif + djecyr + djecyr.glif + djekomicyr + djekomicyr.glif + djerv-cy + djerv-cy.glif + dollar + dollar.glif + dotaccent + dotaccent.glif + dotaccent.case + dotaccent.case.glif + doubleo-cy + doubleo-cy.glif + dramsignarmn + dramsignarmn.glif + dwe-cy + dwe-cy.glif + dze-cy + dze-cy.glif + dzeReversed-cy + dzeR_eversed-cy.glif + dzeabkhcyr + dzeabkhcyr.glif + dzelo-cy + dzelo-cy.glif + dzhecyr + dzhecyr.glif + dzjekomicyr + dzjekomicyr.glif + dzwe-cy + dzwe-cy.glif + dzze-cy + dzze-cy.glif + dzzhecyr + dzzhecyr.glif + e + e.glif + e-cy + e-cy.glif + e-cy.accented + e-cy.accented.glif + e-cy.hist + e-cy.hist.glif + e.ss01 + e.ss01.glif + eacute + eacute.glif + eacute.ss01 + eacute.ss01.glif + ebreve + ebreve.glif + ebreve.ss01 + ebreve.ss01.glif + ecaron + ecaron.glif + ecaron.ss01 + ecaron.ss01.glif + ecircumflex + ecircumflex.glif + ecircumflex.ss01 + ecircumflex.ss01.glif + edieresis + edieresis.glif + edieresis.ss01 + edieresis.ss01.glif + edotaccent + edotaccent.glif + edotaccent.ss01 + edotaccent.ss01.glif + ef-cy + ef-cy.glif + egrave + egrave.glif + egrave.ss01 + egrave.ss01.glif + eight + eight.glif + eight.osf + eight.osf.glif + eight.tf + eight.tf.glif + eiotifiedcyr + eiotifiedcyr.glif + eiotifiedcyr.BGR + eiotifiedcyr.B_G_R_.glif + el-cy + el-cy.glif + el-cy.BGR + el-cy.B_G_R_.glif + el-cy.ss01 + el-cy.ss01.glif + elSoft-cy + elS_oft-cy.glif + elhookcyr + elhookcyr.glif + ellipsis + ellipsis.glif + elmiddlehookcyr + elmiddlehookcyr.glif + elsharptailcyr + elsharptailcyr.glif + eltailcyr + eltailcyr.glif + em-cy + em-cy.glif + emSoft-cy + emS_oft-cy.glif + emacron + emacron.glif + emacron.ss01 + emacron.ss01.glif + emdash + emdash.glif + emdash.case + emdash.case.glif + emsharptailcyr + emsharptailcyr.glif + en-cy + en-cy.glif + enclosingcirclecomb + enclosingcirclecomb.glif + endash + endash.glif + endash.case + endash.case.glif + eng + eng.glif + engecyr + engecyr.glif + enhookcyr + enhookcyr.glif + enhookleftcyr + enhookleftcyr.glif + enmiddlehookcyr + enmiddlehookcyr.glif + ensharptailcyr + ensharptailcyr.glif + entailcyr + entailcyr.glif + eogonek + eogonek.glif + eogonek.ss01 + eogonek.ss01.glif + equal + equal.glif + er-cy + er-cy.glif + er-cy.ss01 + er-cy.ss01.glif + ereversed-cy + ereversed-cy.glif + ereversed-cy.accented + ereversed-cy.accented.glif + ereverseddieresiscyr + ereverseddieresiscyr.glif + ertickcyr + ertickcyr.glif + es-cy + es-cy.glif + estailcyr + estailcyr.glif + estailcyr.BSH + estailcyr.B_S_H_.glif + estailcyr.CHU + estailcyr.C_H_U_.glif + estimated + estimated.glif + eth + eth.glif + eturned + eturned.glif + euro + euro.glif + exclam + exclam.glif + exclamdown + exclamdown.glif + exclamdown.case + exclamdown.case.glif + f + f.glif + f.ss01 + f.ss01.glif + f_f + f_f.glif + f_f.ss01 + f_f.ss01.glif + f_f_i + f_f_i.glif + f_f_i.ss01 + f_f_i.ss01.glif + f_f_l + f_f_l.glif + f_f_l.ss01 + f_f_l.ss01.glif + fi + fi.glif + fi.ss01 + fi.ss01.glif + fitacyr + fitacyr.glif + five + five.glif + five.osf + five.osf.glif + five.tf + five.tf.glif + fl + fl.glif + fl.ss01 + fl.ss01.glif + floretteblack + floretteblack.glif + floretteoutlinedpetalledblackeight + floretteoutlinedpetalledblackeight.glif + florettewhite + florettewhite.glif + florin + florin.glif + flower + flower.glif + four + four.glif + four.osf + four.osf.glif + four.tf + four.tf.glif + fraction + fraction.glif + g + g.glif + g.ss01 + g.ss01.glif + gacute + gacute.glif + gacute.ss01 + gacute.ss01.glif + gbreve + gbreve.glif + gbreve.ss01 + gbreve.ss01.glif + gcircumflex + gcircumflex.glif + gcircumflex.ss01 + gcircumflex.ss01.glif + gcommaaccent + gcommaaccent.glif + gcommaaccent.ss01 + gcommaaccent.ss01.glif + gdotaccent + gdotaccent.glif + gdotaccent.ss01 + gdotaccent.ss01.glif + ge-cy + ge-cy.glif + ge-cy.BGR + ge-cy.B_G_R_.glif + ge-cy.SRB + ge-cy.S_R_B_.glif + gehookcyr + gehookcyr.glif + gehookstrokecyr + gehookstrokecyr.glif + germandbls + germandbls.glif + germandbls.ss01 + germandbls.ss01.glif + gestrokecyr + gestrokecyr.glif + gestrokecyr.BSH + gestrokecyr.B_S_H_.glif + getailcyr + getailcyr.glif + gheupturn-cy + gheupturn-cy.glif + gjecyr + gjecyr.glif + gjecyr.SRB + gjecyr.S_R_B_.glif + grave + grave.glif + grave.case + grave.case.glif + greater + greater.glif + greaterequal + greaterequal.glif + guillemetleft + guillemetleft.glif + guillemetleft.case + guillemetleft.case.glif + guillemetright + guillemetright.glif + guillemetright.case + guillemetright.case.glif + guilsinglleft + guilsinglleft.glif + guilsinglleft.case + guilsinglleft.case.glif + guilsinglright + guilsinglright.glif + guilsinglright.case + guilsinglright.case.glif + h + h.glif + ha-cy + ha-cy.glif + haabkhcyr + haabkhcyr.glif + hahookcyr + hahookcyr.glif + hardsign-cy + hardsign-cy.glif + hardsign-cy.BGR + hardsign-cy.B_G_R_.glif + hardsign-cy.ss01 + hardsign-cy.ss01.glif + hastrokecyr + hastrokecyr.glif + hbar + hbar.glif + hcircumflex + hcircumflex.glif + heart + heart.glif + heartwhite + heartwhite.glif + hryvnia + hryvnia.glif + hundredmillionscomb-cy + hundredmillionscomb-cy.glif + hundredthousandscombcyr + hundredthousandscombcyr.glif + hungarumlaut + hungarumlaut.glif + hungarumlaut.case + hungarumlaut.case.glif + hwe-cy + hwe-cy.glif + hyphen + hyphen.glif + hyphen.case + hyphen.case.glif + i + i.glif + i-cy + i-cy.glif + ia-cy + ia-cy.glif + ia-cy.accented + ia-cy.accented.glif + ia-cy.ss01 + ia-cy.ss01.glif + iacute + iacute.glif + ibreve + ibreve.glif + icircumflex + icircumflex.glif + idieresis + idieresis.glif + idieresiscyr + idieresiscyr.glif + idotless + idotless.glif + ie-cy + ie-cy.glif + ie-cy.ss01 + ie-cy.ss01.glif + iebrevecyr + iebrevecyr.glif + iegravecyr + iegravecyr.glif + iegravecyr.SRB + iegravecyr.S_R_B_.glif + igrave + igrave.glif + igravecyr + igravecyr.glif + igravecyr.SRB + igravecyr.S_R_B_.glif + ii-cy + ii-cy.glif + ii-cy.BGR + ii-cy.B_G_R_.glif + ii-cy.accented + ii-cy.accented.glif + iishort-cy + iishort-cy.glif + iishort-cy.BGR + iishort-cy.B_G_R_.glif + ij + ij.glif + imacron + imacron.glif + imacroncyr + imacroncyr.glif + increment + increment.glif + infinity + infinity.glif + integral + integral.glif + io-cy + io-cy.glif + io-cy.accented + io-cy.accented.glif + io-cy.ss01 + io-cy.ss01.glif + iogonek + iogonek.glif + iota-cy + iota-cy.glif + iotifieda-cy + iotifieda-cy.glif + iotifieda-cy.BGR + iotifieda-cy.B_G_R_.glif + iotifieda-cy.hist + iotifieda-cy.hist.glif + ishortsharptailcyr + ishortsharptailcyr.glif + itilde + itilde.glif + iu-cy + iu-cy.glif + iu-cy.BGR + iu-cy.B_G_R_.glif + iu-cy.accented + iu-cy.accented.glif + izhitsacyr + izhitsacyr.glif + izhitsagravedblcyr + izhitsagravedblcyr.glif + j + j.glif + jcircumflex + jcircumflex.glif + jdotless + jdotless.glif + je-cy + je-cy.glif + k + k.glif + ka-cy + ka-cy.glif + ka-cy.BGR + ka-cy.B_G_R_.glif + kaaleutcyr + kaaleutcyr.glif + kabashkcyr + kabashkcyr.glif + kahookcyr + kahookcyr.glif + kastrokecyr + kastrokecyr.glif + katailcyr + katailcyr.glif + kaverticalstrokecyr + kaverticalstrokecyr.glif + kcommaaccent + kcommaaccent.glif + kgreenlandic + kgreenlandic.glif + kjecyr + kjecyr.glif + knightblack + knightblack.glif + knightwhite + knightwhite.glif + koppacyr + koppacyr.glif + ksicyr + ksicyr.glif + l + l.glif + l.ss01 + l.ss01.glif + lacute + lacute.glif + lacute.ss01 + lacute.ss01.glif + lcaron + lcaron.glif + lcaron.ss01 + lcaron.ss01.glif + lcommaaccent + lcommaaccent.glif + lcommaaccent.ss01 + lcommaaccent.ss01.glif + ldot + ldot.glif + ldot.ss01 + ldot.ss01.glif + leo + leo.glif + less + less.glif + lessequal + lessequal.glif + lhacyr + lhacyr.glif + ljecyr + ljecyr.glif + ljecyr.ss01 + ljecyr.ss01.glif + ljekomicyr + ljekomicyr.glif + longs + longs.glif + lslash + lslash.glif + lslash.ss01 + lslash.ss01.glif + m + m.glif + macron + macron.glif + macron-fwd + macron-fwd.glif + macron-fwd.alt + macron-fwd.alt.glif + macron.case + macron.case.glif + macronacute.SRB + macronacute.S_R_B_.glif + millionscombcyr + millionscombcyr.glif + minus + minus.glif + minute + minute.glif + mu + mu.glif + multiply + multiply.glif + n + n.glif + nacute + nacute.glif + napostrophe + napostrophe.glif + ncaron + ncaron.glif + ncommaaccent + ncommaaccent.glif + neptune + neptune.glif + nine + nine.glif + nine.osf + nine.osf.glif + nine.tf + nine.tf.glif + njecyr + njecyr.glif + njecyr.ss01 + njecyr.ss01.glif + njekomicyr + njekomicyr.glif + notequal + notequal.glif + ntilde + ntilde.glif + numbersign + numbersign.glif + numero + numero.glif + numero.ss01 + numero.ss01.glif + o + o.glif + o-cy + o-cy.glif + o-cy.accented + o-cy.accented.glif + oBinocular-cy + oB_inocular-cy.glif + oDoubleMonocular-cy + oD_oubleM_onocular-cy.glif + oMonocular-cy + oM_onocular-cy.glif + oacute + oacute.glif + obarcyr + obarcyr.glif + obardieresiscyr + obardieresiscyr.glif + obreve + obreve.glif + ocircumflex + ocircumflex.glif + odieresis + odieresis.glif + odieresiscyr + odieresiscyr.glif + oe + oe.glif + oe.ss01 + oe.ss01.glif + ogonek + ogonek.glif + ograve + ograve.glif + ohungarumlaut + ohungarumlaut.glif + omacron + omacron.glif + omegaBroad-cy + omegaB_road-cy.glif + omegacyr + omegacyr.glif + omegaroundcyr + omegaroundcyr.glif + omegatitlocyr + omegatitlocyr.glif + omultiocular-cy + omultiocular-cy.glif + omultiocular-cy.alt + omultiocular-cy.alt.glif + one + one.glif + one.osf + one.osf.glif + one.tf + one.tf.glif + onehalf + onehalf.glif + onequarter + onequarter.glif + onesuperior + onesuperior.glif + ordfeminine + ordfeminine.glif + ordmasculine + ordmasculine.glif + oslash + oslash.glif + oslashacute + oslashacute.glif + otcyr + otcyr.glif + otilde + otilde.glif + p + p.glif + p.ss01 + p.ss01.glif + palatcombcyr + palatcombcyr.glif + palochkacyr + palochkacyr.glif + paragraph + paragraph.glif + parenleft + parenleft.glif + parenleft.case + parenleft.case.glif + parenright + parenright.glif + parenright.case + parenright.case.glif + partialdiff + partialdiff.glif + pe-cy + pe-cy.glif + pe-cy.BGR + pe-cy.B_G_R_.glif + pe-cy.SRB + pe-cy.S_R_B_.glif + pehookcyr + pehookcyr.glif + percent + percent.glif + period + period.glif + periodcentered + periodcentered.glif + perthousand + perthousand.glif + petailcyr + petailcyr.glif + pi + pi.glif + plus + plus.glif + plusminus + plusminus.glif + pokrytiecombcyr + pokrytiecombcyr.glif + product + product.glif + proportional + proportional.glif + psicyr + psicyr.glif + q + q.glif + q.ss01 + q.ss01.glif + qacyr + qacyr.glif + question + question.glif + questiondown + questiondown.glif + questiondown.case + questiondown.case.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 + radical + radical.glif + rcaron + rcaron.glif + rcommaaccent + rcommaaccent.glif + registered + registered.glif + reversedzecyr + reversedzecyr.glif + rhacyr + rhacyr.glif + ring + ring.glif + ring.case + ring.case.glif + rookblack + rookblack.glif + ruble + ruble.glif + s + s.glif + sacute + sacute.glif + scaron + scaron.glif + scedilla + scedilla.glif + schwacyr + schwacyr.glif + schwadieresiscyr + schwadieresiscyr.glif + scircumflex + scircumflex.glif + scommaaccent + scommaaccent.glif + second + second.glif + section + section.glif + semicolon + semicolon.glif + semicolon.case + semicolon.case.glif + semisoftcyr + semisoftcyr.glif + seven + seven.glif + seven.osf + seven.osf.glif + seven.tf + seven.tf.glif + sha-cy + sha-cy.glif + sha-cy.BGR + sha-cy.B_G_R_.glif + shcha-cy + shcha-cy.glif + shcha-cy.BGR + shcha-cy.B_G_R_.glif + shhacyr + shhacyr.glif + shhatailcyr + shhatailcyr.glif + shwe-cy + shwe-cy.glif + six + six.glif + six.osf + six.osf.glif + six.tf + six.tf.glif + sjekomicyr + sjekomicyr.glif + slash + slash.glif + slash.case + slash.case.glif + softsign-cy + softsign-cy.glif + softsign-cy.BGR + softsign-cy.B_G_R_.glif + softsign-cy.ss01 + softsign-cy.ss01.glif + space + space.glif + spadewhite + spadewhite.glif + sterling + sterling.glif + summation + summation.glif + t + t.glif + t.ss01 + t.ss01.glif + tbar + tbar.glif + tbar.ss01 + tbar.ss01.glif + tcaron + tcaron.glif + tcaron.ss01 + tcaron.ss01.glif + tcedilla + tcedilla.glif + tcedilla.ss01 + tcedilla.ss01.glif + tche-cy + tche-cy.glif + tcommaaccent + tcommaaccent.glif + tcommaaccent.ss01 + tcommaaccent.ss01.glif + te-cy + te-cy.glif + te-cy.BGR + te-cy.B_G_R_.glif + te-cy.SRB + te-cy.S_R_B_.glif + te-cy.ss01 + te-cy.ss01.glif + tenge + tenge.glif + tenmillionscomb-cy + tenmillionscomb-cy.glif + tetailcyr + tetailcyr.glif + tetsecyr + tetsecyr.glif + tewithmiddlehook-cy + tewithmiddlehook-cy.glif + thorn + thorn.glif + thousandmillionscomb-cy + thousandmillionscomb-cy.glif + thousandscyr + thousandscyr.glif + thousandscyr.dnom + thousandscyr.dnom.glif + three + three.glif + three.osf + three.osf.glif + three.tf + three.tf.glif + threequarters + threequarters.glif + threesuperior + threesuperior.glif + tilde + tilde.glif + tilde.case + tilde.case.glif + titlocombcyr + titlocombcyr.glif + tjekomicyr + tjekomicyr.glif + trademark + trademark.glif + tse-cy + tse-cy.glif + tse-cy.BGR + tse-cy.B_G_R_.glif + tseReversed-cy + tseR_eversed-cy.glif + tshecyr + tshecyr.glif + tsse-cy + tsse-cy.glif + tswe-cy + tswe-cy.glif + twe-cy + twe-cy.glif + two + two.glif + two.osf + two.osf.glif + two.tf + two.tf.glif + twosuperior + twosuperior.glif + u + u.glif + u-cy + u-cy.glif + u-cy.accented + u-cy.accented.glif + uacute + uacute.glif + uacutedblcyr + uacutedblcyr.glif + ubreve + ubreve.glif + ucircumflex + ucircumflex.glif + udieresis + udieresis.glif + udieresiscyr + udieresiscyr.glif + ugrave + ugrave.glif + uhungarumlaut + uhungarumlaut.glif + ukMonograph-cy + ukM_onograph-cy.glif + ukcyr + ukcyr.glif + umacron + umacron.glif + umacroncyr + umacroncyr.glif + underscore + underscore.glif + uni1C80 + uni1C_80.glif + uni1C81 + uni1C_81.glif + uni1C82 + uni1C_82.glif + uni1C83 + uni1C_83.glif + uni1C84 + uni1C_84.glif + uni1C85 + uni1C_85.glif + uni1C86 + uni1C_86.glif + uni1C87 + uni1C_87.glif + uni1C88 + uni1C_88.glif + uni1EBC + uni1E_B_C_.glif + uni1EBD + uni1E_B_D_.glif + uni2010 + uni2010.glif + uni2DEE + uni2D_E_E_.glif + uni2DEE.case + uni2D_E_E_.case.glif + uniE000 + uniE_000.glif + uniE000.alt + uniE_000.alt.glif + uniE01A + uniE_01A_.glif + uniF43A + uniF_43A_.glif + uniF43B + uniF_43B_.glif + uniF45D + uniF_45D_.glif + uniF45E + uniF_45E_.glif + uniF45F + uniF_45F_.glif + uniF475 + uniF_475.glif + uniF476 + uniF_476.glif + uniF477 + uniF_477.glif + uniF478 + uniF_478.glif + uniF479 + uniF_479.glif + uniF498 + uniF_498.glif + uniF499 + uniF_499.glif + uniF49A + uniF_49A_.glif + uniF49B + uniF_49B_.glif + uniF49C + uniF_49C_.glif + uniF49D + uniF_49D_.glif + uniF49E + uniF_49E_.glif + uniF49F + uniF_49F_.glif + uniF4C6 + uniF_4C_6.glif + uniF4C7 + uniF_4C_7.glif + uniF4CC + uniF_4C_C_.glif + uniF4CD + uniF_4C_D_.glif + uniF4D2 + uniF_4D_2.glif + uniF4D3 + uniF_4D_3.glif + uniF4D4 + uniF_4D_4.glif + uniF4D5 + uniF_4D_5.glif + uniF4D6 + uniF_4D_6.glif + uniF4D7 + uniF_4D_7.glif + uniF4D8 + uniF_4D_8.glif + uniF4D9 + uniF_4D_9.glif + uniF50E + uniF_50E_.glif + uniF50F + uniF_50F_.glif + uniF510 + uniF_510.glif + uniF511 + uniF_511.glif + uniF512 + uniF_512.glif + uniF513 + uniF_513.glif + uniF514 + uniF_514.glif + uniF515 + uniF_515.glif + uniF516 + uniF_516.glif + uniF517 + uniF_517.glif + uniF518 + uniF_518.glif + uniF519 + uniF_519.glif + uniF51A + uniF_51A_.glif + uniF51B + uniF_51B_.glif + uniF51C + uniF_51C_.glif + uniF51D + uniF_51D_.glif + uniF51E + uniF_51E_.glif + uniF51F + uniF_51F_.glif + uniF521 + uniF_521.glif + uniF522 + uniF_522.glif + uniF523 + uniF_523.glif + uniF524 + uniF_524.glif + uniF525 + uniF_525.glif + uniF526 + uniF_526.glif + uniF527 + uniF_527.glif + uniF528 + uniF_528.glif + uniF529 + uniF_529.glif + uniF52A + uniF_52A_.glif + uniF52B + uniF_52B_.glif + uniF52C + uniF_52C_.glif + uniF52D + uniF_52D_.glif + uniF52E + uniF_52E_.glif + uniF52F + uniF_52F_.glif + uniF532 + uniF_532.glif + uniF533 + uniF_533.glif + uniF536 + uniF_536.glif + uniF537 + uniF_537.glif + uniF538 + uniF_538.glif + uniF539 + uniF_539.glif + uniF830 + uniF_830.glif + uniF831 + uniF_831.glif + uniF833 + uniF_833.glif + uniF834 + uniF_834.glif + uniF839 + uniF_839.glif + uniF83A + uniF_83A_.glif + uniF86F + uniF_86F_.glif + uniF870 + uniF_870.glif + uniF872 + uniF_872.glif + uniF873 + uniF_873.glif + uniF875 + uniF_875.glif + uniF876 + uniF_876.glif + uniF878 + uniF_878.glif + uniF879 + uniF_879.glif + uniF87B + uniF_87B_.glif + uniF87C + uniF_87C_.glif + uniF87E + uniF_87E_.glif + uniF87F + uniF_87F_.glif + uogonek + uogonek.glif + uring + uring.glif + ushort-cy + ushort-cy.glif + ustraightcyr + ustraightcyr.glif + ustraightstrokecyr + ustraightstrokecyr.glif + utilde + utilde.glif + v + v.glif + ve-cy + ve-cy.glif + ve-cy.BGR + ve-cy.B_G_R_.glif + ve-cy.ss01 + ve-cy.ss01.glif + virgo + virgo.glif + vzmetcomb-cy + vzmetcomb-cy.glif + w + w.glif + wacute + wacute.glif + wcircumflex + wcircumflex.glif + wdieresis + wdieresis.glif + wecyr + wecyr.glif + wgrave + wgrave.glif + x + x.glif + xatailcyr + xatailcyr.glif + y + y.glif + yacute + yacute.glif + yaecyr + yaecyr.glif + yatIotified-cy + yatI_otified-cy.glif + yatcyr + yatcyr.glif + yatcyr.BGR + yatcyr.B_G_R_.glif + ycircumflex + ycircumflex.glif + ydieresis + ydieresis.glif + yen + yen.glif + yen.ss01 + yen.ss01.glif + yerNeutral-cy + yerN_eutral-cy.glif + yeru-cy + yeru-cy.glif + yeru-cy.accented + yeru-cy.accented.glif + yeru-cy.ss01 + yeru-cy.ss01.glif + yeruBackyer-cy + yeruB_ackyer-cy.glif + yi-cy + yi-cy.glif + yi-cy.alt + yi-cy.alt.glif + ylongdieresiscyr + ylongdieresiscyr.glif + yn-cy + yn-cy.glif + yuReversed-cy + yuR_eversed-cy.glif + yusBlended-cy + yusB_lended-cy.glif + yusClosedlittle-cy + yusC_losedlittle-cy.glif + yusbigcyr + yusbigcyr.glif + yusbigiotifiedcyr + yusbigiotifiedcyr.glif + yusbigiotifiedcyr.BGR + yusbigiotifiedcyr.B_G_R_.glif + yusiotifiedClosedLittle-cy + yusiotifiedC_losedL_ittle-cy.glif + yuslittlecyr + yuslittlecyr.glif + yuslittleiotifiedcyr + yuslittleiotifiedcyr.glif + z + z.glif + zacute + zacute.glif + zcaron + zcaron.glif + zdotaccent + zdotaccent.glif + ze-cy + ze-cy.glif + ze-cy.BGR + ze-cy.B_G_R_.glif + zedieresiscyr + zedieresiscyr.glif + zemlya-cy + zemlya-cy.glif + zero + zero.glif + zero.osf + zero.osf.glif + zero.tf + zero.tf.glif + zetailcyr + zetailcyr.glif + zetailcyr.BSH + zetailcyr.B_S_H_.glif + zhe-cy + zhe-cy.glif + zhe-cy.BGR + zhe-cy.B_G_R_.glif + zhebrevecyr + zhebrevecyr.glif + zhedieresiscyr + zhedieresiscyr.glif + zhetailcyr + zhetailcyr.glif + zhwe-cy + zhwe-cy.glif + zjekomicyr + zjekomicyr.glif + + diff --git a/sources/FixelText-Bold.ufo/glyphs/copyright.glif b/sources/FixelText-Bold.ufo/glyphs/copyright.glif new file mode 100644 index 00000000..e22219fc --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/copyright.glif @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/crossedo-cy.glif b/sources/FixelText-Bold.ufo/glyphs/crossedo-cy.glif new file mode 100644 index 00000000..15617dad --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/crossedo-cy.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + com.fontlab.recipe + o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/crossedswords.glif b/sources/FixelText-Bold.ufo/glyphs/crossedswords.glif new file mode 100644 index 00000000..ee116d23 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/crossedswords.glif @@ -0,0 +1,103 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/currency.glif b/sources/FixelText-Bold.ufo/glyphs/currency.glif new file mode 100644 index 00000000..fa04cc41 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/currency.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/d.glif b/sources/FixelText-Bold.ufo/glyphs/d.glif new file mode 100644 index 00000000..f9ef2801 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/d.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/d.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/d.ss01.glif new file mode 100644 index 00000000..b321c4dc --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/d.ss01.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/dagger.glif b/sources/FixelText-Bold.ufo/glyphs/dagger.glif new file mode 100644 index 00000000..0bd36da4 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/dagger.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/daggerdbl.glif b/sources/FixelText-Bold.ufo/glyphs/daggerdbl.glif new file mode 100644 index 00000000..4a204ed8 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/daggerdbl.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/dcaron.glif b/sources/FixelText-Bold.ufo/glyphs/dcaron.glif new file mode 100644 index 00000000..fc39ef5e --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/dcaron.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + d+caron.salt + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/dcaron.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/dcaron.ss01.glif new file mode 100644 index 00000000..63cf9788 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/dcaron.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + d.ss01+caron.salt + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/dchecyr.glif b/sources/FixelText-Bold.ufo/glyphs/dchecyr.glif new file mode 100644 index 00000000..58d76e63 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/dchecyr.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + д+10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/dcroat.glif b/sources/FixelText-Bold.ufo/glyphs/dcroat.glif new file mode 100644 index 00000000..310e6413 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/dcroat.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + d + com.fontlab.metricsRight + |hbar + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/dcroat.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/dcroat.ss01.glif new file mode 100644 index 00000000..fe4343d1 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/dcroat.ss01.glif @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + d.ss01 + com.fontlab.metricsRight + |hbar + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/de-cy.B_G_R_.glif b/sources/FixelText-Bold.ufo/glyphs/de-cy.B_G_R_.glif new file mode 100644 index 00000000..5ae7003b --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/de-cy.B_G_R_.glif @@ -0,0 +1,77 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + q + com.fontlab.metricsRight + q + com.fontlab.recipe + uni1C81 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/de-cy.glif b/sources/FixelText-Bold.ufo/glyphs/de-cy.glif new file mode 100644 index 00000000..0f27ebd2 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/de-cy.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/de-cy.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/de-cy.ss01.glif new file mode 100644 index 00000000..3b4cb576 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/de-cy.ss01.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/deS_oft-cy.glif b/sources/FixelText-Bold.ufo/glyphs/deS_oft-cy.glif new file mode 100644 index 00000000..fb3cd30b --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/deS_oft-cy.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + д + com.fontlab.metricsRight + ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/degree.glif b/sources/FixelText-Bold.ufo/glyphs/degree.glif new file mode 100644 index 00000000..8e02e734 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/degree.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/dekomicyr.glif b/sources/FixelText-Bold.ufo/glyphs/dekomicyr.glif new file mode 100644 index 00000000..29363864 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/dekomicyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + d + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/diamondwhite-misc.glif b/sources/FixelText-Bold.ufo/glyphs/diamondwhite-misc.glif new file mode 100644 index 00000000..c339e917 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/diamondwhite-misc.glif @@ -0,0 +1,145 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =34 + com.fontlab.metricsRight + =34 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/dieresis.alt.glif b/sources/FixelText-Bold.ufo/glyphs/dieresis.alt.glif new file mode 100644 index 00000000..d33332e6 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/dieresis.alt.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 1,0.6,0.994,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/dieresis.case.glif b/sources/FixelText-Bold.ufo/glyphs/dieresis.case.glif new file mode 100644 index 00000000..f42fe25e --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/dieresis.case.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/dieresis.glif b/sources/FixelText-Bold.ufo/glyphs/dieresis.glif new file mode 100644 index 00000000..81dd035f --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/dieresis.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/dieresisacute.glif b/sources/FixelText-Bold.ufo/glyphs/dieresisacute.glif new file mode 100644 index 00000000..65477316 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/dieresisacute.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/dieresiscase.alt.glif b/sources/FixelText-Bold.ufo/glyphs/dieresiscase.alt.glif new file mode 100644 index 00000000..99e725fb --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/dieresiscase.alt.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 1,0.6,0.994,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/divide.glif b/sources/FixelText-Bold.ufo/glyphs/divide.glif new file mode 100644 index 00000000..9088d5ae --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/divide.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/djecyr.glif b/sources/FixelText-Bold.ufo/glyphs/djecyr.glif new file mode 100644 index 00000000..79b18b68 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/djecyr.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hbar + com.fontlab.metricsRight + h + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/djekomicyr.glif b/sources/FixelText-Bold.ufo/glyphs/djekomicyr.glif new file mode 100644 index 00000000..9f42452a --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/djekomicyr.glif @@ -0,0 +1,73 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + d + com.fontlab.metricsRight + njekomicyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/djerv-cy.glif b/sources/FixelText-Bold.ufo/glyphs/djerv-cy.glif new file mode 100644 index 00000000..f2bfe3fe --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/djerv-cy.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + r() + com.fontlab.metricsRight + п-30 + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/dollar.glif b/sources/FixelText-Bold.ufo/glyphs/dollar.glif new file mode 100644 index 00000000..0fea3970 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/dollar.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + S + com.fontlab.metricsRight + S + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/dotaccent.case.glif b/sources/FixelText-Bold.ufo/glyphs/dotaccent.case.glif new file mode 100644 index 00000000..6ce6f0c7 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/dotaccent.case.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/dotaccent.glif b/sources/FixelText-Bold.ufo/glyphs/dotaccent.glif new file mode 100644 index 00000000..1ea30706 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/dotaccent.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/doubleo-cy.glif b/sources/FixelText-Bold.ufo/glyphs/doubleo-cy.glif new file mode 100644 index 00000000..44878ad2 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/doubleo-cy.glif @@ -0,0 +1,91 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + com.fontlab.recipe + o_o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/dramsignarmn.glif b/sources/FixelText-Bold.ufo/glyphs/dramsignarmn.glif new file mode 100644 index 00000000..e07de4b5 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/dramsignarmn.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/dwe-cy.glif b/sources/FixelText-Bold.ufo/glyphs/dwe-cy.glif new file mode 100644 index 00000000..ac524e7a --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/dwe-cy.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + д + com.fontlab.metricsRight + д + com.fontlab.recipe + д + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/dze-cy.glif b/sources/FixelText-Bold.ufo/glyphs/dze-cy.glif new file mode 100644 index 00000000..701a2f76 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/dze-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + s + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/dzeR_eversed-cy.glif b/sources/FixelText-Bold.ufo/glyphs/dzeR_eversed-cy.glif new file mode 100644 index 00000000..b0d1d081 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/dzeR_eversed-cy.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |s + com.fontlab.metricsRight + |s + com.fontlab.recipe + s + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/dzeabkhcyr.glif b/sources/FixelText-Bold.ufo/glyphs/dzeabkhcyr.glif new file mode 100644 index 00000000..bab5a89f --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/dzeabkhcyr.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + z-30 + com.fontlab.metricsRight + з-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/dzelo-cy.glif b/sources/FixelText-Bold.ufo/glyphs/dzelo-cy.glif new file mode 100644 index 00000000..3ac60006 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/dzelo-cy.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/dzhecyr.glif b/sources/FixelText-Bold.ufo/glyphs/dzhecyr.glif new file mode 100644 index 00000000..c6ce6c28 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/dzhecyr.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/dzjekomicyr.glif b/sources/FixelText-Bold.ufo/glyphs/dzjekomicyr.glif new file mode 100644 index 00000000..77debb56 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/dzjekomicyr.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + zjekomicyr + com.fontlab.metricsRight + ц-5 + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/dzwe-cy.glif b/sources/FixelText-Bold.ufo/glyphs/dzwe-cy.glif new file mode 100644 index 00000000..9b846d36 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/dzwe-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + s + com.fontlab.metricsRight + s + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/dzze-cy.glif b/sources/FixelText-Bold.ufo/glyphs/dzze-cy.glif new file mode 100644 index 00000000..57e15dce --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/dzze-cy.glif @@ -0,0 +1,84 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + д + com.fontlab.metricsRight + д-30 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/dzzhecyr.glif b/sources/FixelText-Bold.ufo/glyphs/dzzhecyr.glif new file mode 100644 index 00000000..6e261696 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/dzzhecyr.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + д+5 + com.fontlab.metricsRight + ж+5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/e-cy.accented.glif b/sources/FixelText-Bold.ufo/glyphs/e-cy.accented.glif new file mode 100644 index 00000000..a59dc5fb --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/e-cy.accented.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+acute + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/e-cy.glif b/sources/FixelText-Bold.ufo/glyphs/e-cy.glif new file mode 100644 index 00000000..f2cc0938 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/e-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + c + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/e-cy.hist.glif b/sources/FixelText-Bold.ufo/glyphs/e-cy.hist.glif new file mode 100644 index 00000000..edf32d6a --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/e-cy.hist.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + c + com.fontlab.recipe + uni1C83 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/e.glif b/sources/FixelText-Bold.ufo/glyphs/e.glif new file mode 100644 index 00000000..cbf75ccc --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/e.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/e.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/e.ss01.glif new file mode 100644 index 00000000..8cea0639 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/e.ss01.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + O-5 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/eacute.glif b/sources/FixelText-Bold.ufo/glyphs/eacute.glif new file mode 100644 index 00000000..7f4a42c4 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/eacute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+acute + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/eacute.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/eacute.ss01.glif new file mode 100644 index 00000000..20de26ce --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/eacute.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+acute + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/ebreve.glif b/sources/FixelText-Bold.ufo/glyphs/ebreve.glif new file mode 100644 index 00000000..094e4b85 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/ebreve.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+breve + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/ebreve.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/ebreve.ss01.glif new file mode 100644 index 00000000..613e95a7 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/ebreve.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+breve + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/ecaron.glif b/sources/FixelText-Bold.ufo/glyphs/ecaron.glif new file mode 100644 index 00000000..2d74ea96 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/ecaron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+caron + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/ecaron.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/ecaron.ss01.glif new file mode 100644 index 00000000..72475beb --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/ecaron.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+caron + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/ecircumflex.glif b/sources/FixelText-Bold.ufo/glyphs/ecircumflex.glif new file mode 100644 index 00000000..6220fcb7 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/ecircumflex.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+circumflex + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/ecircumflex.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/ecircumflex.ss01.glif new file mode 100644 index 00000000..e7b5b098 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/ecircumflex.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+circumflex + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/edieresis.glif b/sources/FixelText-Bold.ufo/glyphs/edieresis.glif new file mode 100644 index 00000000..42a9a2a5 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/edieresis.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsLeft + e + com.fontlab.metricsRight + e + com.fontlab.recipe + e+dieresis + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/edieresis.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/edieresis.ss01.glif new file mode 100644 index 00000000..9a1be667 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/edieresis.ss01.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsLeft + e + com.fontlab.metricsRight + e + com.fontlab.recipe + e.ss01+dieresis + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/edotaccent.glif b/sources/FixelText-Bold.ufo/glyphs/edotaccent.glif new file mode 100644 index 00000000..25b385af --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/edotaccent.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+dotaccent + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/edotaccent.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/edotaccent.ss01.glif new file mode 100644 index 00000000..6505be74 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/edotaccent.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+dotaccent + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/ef-cy.glif b/sources/FixelText-Bold.ufo/glyphs/ef-cy.glif new file mode 100644 index 00000000..5128f9c0 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/ef-cy.glif @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/egrave.glif b/sources/FixelText-Bold.ufo/glyphs/egrave.glif new file mode 100644 index 00000000..ffaef7d2 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/egrave.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+grave + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/egrave.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/egrave.ss01.glif new file mode 100644 index 00000000..6af4483b --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/egrave.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+grave + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/eight.glif b/sources/FixelText-Bold.ufo/glyphs/eight.glif new file mode 100644 index 00000000..c7b2d67e --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/eight.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/eight.osf.glif b/sources/FixelText-Bold.ufo/glyphs/eight.osf.glif new file mode 100644 index 00000000..de4d7071 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/eight.osf.glif @@ -0,0 +1,15 @@ + + + + + + + + + com.fontlab.metricsLeft + eight + com.fontlab.metricsRight + eight + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/eight.tf.glif b/sources/FixelText-Bold.ufo/glyphs/eight.tf.glif new file mode 100644 index 00000000..66d32e04 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/eight.tf.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/eiotifiedcyr.B_G_R_.glif b/sources/FixelText-Bold.ufo/glyphs/eiotifiedcyr.B_G_R_.glif new file mode 100644 index 00000000..dcdd64bf --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/eiotifiedcyr.B_G_R_.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + c + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/eiotifiedcyr.glif b/sources/FixelText-Bold.ufo/glyphs/eiotifiedcyr.glif new file mode 100644 index 00000000..b78ab993 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/eiotifiedcyr.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + c + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/el-cy.B_G_R_.glif b/sources/FixelText-Bold.ufo/glyphs/el-cy.B_G_R_.glif new file mode 100644 index 00000000..dafd2922 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/el-cy.B_G_R_.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + v + com.fontlab.metricsRight + v + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/el-cy.glif b/sources/FixelText-Bold.ufo/glyphs/el-cy.glif new file mode 100644 index 00000000..a8d147b1 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/el-cy.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/el-cy.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/el-cy.ss01.glif new file mode 100644 index 00000000..5d9af9e8 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/el-cy.ss01.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/elS_oft-cy.glif b/sources/FixelText-Bold.ufo/glyphs/elS_oft-cy.glif new file mode 100644 index 00000000..35551606 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/elS_oft-cy.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/elhookcyr.glif b/sources/FixelText-Bold.ufo/glyphs/elhookcyr.glif new file mode 100644 index 00000000..24226407 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/elhookcyr.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + н + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/ellipsis.glif b/sources/FixelText-Bold.ufo/glyphs/ellipsis.glif new file mode 100644 index 00000000..3d8eefb0 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/ellipsis.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/elmiddlehookcyr.glif b/sources/FixelText-Bold.ufo/glyphs/elmiddlehookcyr.glif new file mode 100644 index 00000000..aa9f6a66 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/elmiddlehookcyr.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + enmiddlehookcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/elsharptailcyr.glif b/sources/FixelText-Bold.ufo/glyphs/elsharptailcyr.glif new file mode 100644 index 00000000..112026ad --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/elsharptailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + ensharptailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/eltailcyr.glif b/sources/FixelText-Bold.ufo/glyphs/eltailcyr.glif new file mode 100644 index 00000000..13e8bc0e --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/eltailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/em-cy.glif b/sources/FixelText-Bold.ufo/glyphs/em-cy.glif new file mode 100644 index 00000000..4d22293c --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/em-cy.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/emS_oft-cy.glif b/sources/FixelText-Bold.ufo/glyphs/emS_oft-cy.glif new file mode 100644 index 00000000..1cb10901 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/emS_oft-cy.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + м + com.fontlab.metricsRight + ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/emacron.glif b/sources/FixelText-Bold.ufo/glyphs/emacron.glif new file mode 100644 index 00000000..34ef8c66 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/emacron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+macron + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/emacron.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/emacron.ss01.glif new file mode 100644 index 00000000..af93b439 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/emacron.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+macron + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/emdash.case.glif b/sources/FixelText-Bold.ufo/glyphs/emdash.case.glif new file mode 100644 index 00000000..b44b8555 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/emdash.case.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/emdash.glif b/sources/FixelText-Bold.ufo/glyphs/emdash.glif new file mode 100644 index 00000000..6fbb221a --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/emdash.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/emsharptailcyr.glif b/sources/FixelText-Bold.ufo/glyphs/emsharptailcyr.glif new file mode 100644 index 00000000..1b89da6f --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/emsharptailcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + м + com.fontlab.metricsRight + ensharptailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/en-cy.glif b/sources/FixelText-Bold.ufo/glyphs/en-cy.glif new file mode 100644 index 00000000..66500cbe --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/en-cy.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/enclosingcirclecomb.glif b/sources/FixelText-Bold.ufo/glyphs/enclosingcirclecomb.glif new file mode 100644 index 00000000..88193c59 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/enclosingcirclecomb.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/endash.case.glif b/sources/FixelText-Bold.ufo/glyphs/endash.case.glif new file mode 100644 index 00000000..e3236dc3 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/endash.case.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/endash.glif b/sources/FixelText-Bold.ufo/glyphs/endash.glif new file mode 100644 index 00000000..b6112637 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/endash.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/eng.glif b/sources/FixelText-Bold.ufo/glyphs/eng.glif new file mode 100644 index 00000000..94312172 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/eng.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + n + com.fontlab.metricsRight + dotlessj + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/engecyr.glif b/sources/FixelText-Bold.ufo/glyphs/engecyr.glif new file mode 100644 index 00000000..12fd56d7 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/engecyr.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/enhookcyr.glif b/sources/FixelText-Bold.ufo/glyphs/enhookcyr.glif new file mode 100644 index 00000000..fb5ab96b --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/enhookcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/enhookleftcyr.glif b/sources/FixelText-Bold.ufo/glyphs/enhookleftcyr.glif new file mode 100644 index 00000000..141bdbd2 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/enhookleftcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + j + com.fontlab.metricsRight + н + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/enmiddlehookcyr.glif b/sources/FixelText-Bold.ufo/glyphs/enmiddlehookcyr.glif new file mode 100644 index 00000000..eeb6953c --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/enmiddlehookcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + softsign-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/ensharptailcyr.glif b/sources/FixelText-Bold.ufo/glyphs/ensharptailcyr.glif new file mode 100644 index 00000000..fa8fd18a --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/ensharptailcyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + д + com.fontlab.recipe + entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/entailcyr.glif b/sources/FixelText-Bold.ufo/glyphs/entailcyr.glif new file mode 100644 index 00000000..22efc8bc --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/entailcyr.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + ц + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/eogonek.glif b/sources/FixelText-Bold.ufo/glyphs/eogonek.glif new file mode 100644 index 00000000..91be8f71 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/eogonek.glif @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + e+ogonek + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/eogonek.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/eogonek.ss01.glif new file mode 100644 index 00000000..09b7d8c8 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/eogonek.ss01.glif @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + e.ss01+ogonek + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/equal.glif b/sources/FixelText-Bold.ufo/glyphs/equal.glif new file mode 100644 index 00000000..cfd347b2 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/equal.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/er-cy.glif b/sources/FixelText-Bold.ufo/glyphs/er-cy.glif new file mode 100644 index 00000000..826bf43e --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/er-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + p + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/er-cy.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/er-cy.ss01.glif new file mode 100644 index 00000000..c370895c --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/er-cy.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + p.ss01 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/ereversed-cy.accented.glif b/sources/FixelText-Bold.ufo/glyphs/ereversed-cy.accented.glif new file mode 100644 index 00000000..5fa47a97 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/ereversed-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + э+acute + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/ereversed-cy.glif b/sources/FixelText-Bold.ufo/glyphs/ereversed-cy.glif new file mode 100644 index 00000000..52ac9fd2 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/ereversed-cy.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |c + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/ereverseddieresiscyr.glif b/sources/FixelText-Bold.ufo/glyphs/ereverseddieresiscyr.glif new file mode 100644 index 00000000..18ecdad6 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/ereverseddieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ereversed-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/ertickcyr.glif b/sources/FixelText-Bold.ufo/glyphs/ertickcyr.glif new file mode 100644 index 00000000..0db4fa27 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/ertickcyr.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + p + com.fontlab.metricsRight + p + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/es-cy.glif b/sources/FixelText-Bold.ufo/glyphs/es-cy.glif new file mode 100644 index 00000000..94451450 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/es-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/estailcyr.B_S_H_.glif b/sources/FixelText-Bold.ufo/glyphs/estailcyr.B_S_H_.glif new file mode 100644 index 00000000..b042d7e8 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/estailcyr.B_S_H_.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + c + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/estailcyr.C_H_U_.glif b/sources/FixelText-Bold.ufo/glyphs/estailcyr.C_H_U_.glif new file mode 100644 index 00000000..32751332 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/estailcyr.C_H_U_.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+cedilla + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/estailcyr.glif b/sources/FixelText-Bold.ufo/glyphs/estailcyr.glif new file mode 100644 index 00000000..25743e73 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/estailcyr.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + с + com.fontlab.metricsRight + с + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/estimated.glif b/sources/FixelText-Bold.ufo/glyphs/estimated.glif new file mode 100644 index 00000000..23038293 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/estimated.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/eth.glif b/sources/FixelText-Bold.ufo/glyphs/eth.glif new file mode 100644 index 00000000..613fca9c --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/eth.glif @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/eturned.glif b/sources/FixelText-Bold.ufo/glyphs/eturned.glif new file mode 100644 index 00000000..00da92f6 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/eturned.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + schwacyr + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/euro.glif b/sources/FixelText-Bold.ufo/glyphs/euro.glif new file mode 100644 index 00000000..20f38a83 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/euro.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + C + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/exclam.glif b/sources/FixelText-Bold.ufo/glyphs/exclam.glif new file mode 100644 index 00000000..96b9363d --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/exclam.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/exclamdown.case.glif b/sources/FixelText-Bold.ufo/glyphs/exclamdown.case.glif new file mode 100644 index 00000000..a8466e92 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/exclamdown.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + exclamdown + com.fontlab.metricsRight + exclamdown + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/exclamdown.glif b/sources/FixelText-Bold.ufo/glyphs/exclamdown.glif new file mode 100644 index 00000000..29a3b123 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/exclamdown.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/f.glif b/sources/FixelText-Bold.ufo/glyphs/f.glif new file mode 100644 index 00000000..e970f639 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/f.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/f.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/f.ss01.glif new file mode 100644 index 00000000..e4a72f6f --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/f.ss01.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/f_f.glif b/sources/FixelText-Bold.ufo/glyphs/f_f.glif new file mode 100644 index 00000000..3aa81779 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/f_f.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f + com.fontlab.metricsRight + f + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/f_f.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/f_f.ss01.glif new file mode 100644 index 00000000..f0642f78 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/f_f.ss01.glif @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f.ss01 + com.fontlab.metricsRight + f.ss01 + com.fontlab.recipe + f.ss01_f.ss01 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/f_f_i.glif b/sources/FixelText-Bold.ufo/glyphs/f_f_i.glif new file mode 100644 index 00000000..a84f6099 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/f_f_i.glif @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f + com.fontlab.metricsRight + i + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/f_f_i.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/f_f_i.ss01.glif new file mode 100644 index 00000000..6f40ad64 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/f_f_i.ss01.glif @@ -0,0 +1,88 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f.ss01 + com.fontlab.metricsRight + i + com.fontlab.recipe + f.ss01_f.ss01_i + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/f_f_l.glif b/sources/FixelText-Bold.ufo/glyphs/f_f_l.glif new file mode 100644 index 00000000..4eec880c --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/f_f_l.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f + com.fontlab.metricsRight + l + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/f_f_l.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/f_f_l.ss01.glif new file mode 100644 index 00000000..2a8cbdb2 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/f_f_l.ss01.glif @@ -0,0 +1,86 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f.ss01 + com.fontlab.metricsRight + l.ss01 + com.fontlab.recipe + f.ss01_f.ss01_l.ss01 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/fi.glif b/sources/FixelText-Bold.ufo/glyphs/fi.glif new file mode 100644 index 00000000..3172b176 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/fi.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f + com.fontlab.metricsRight + i + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/fi.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/fi.ss01.glif new file mode 100644 index 00000000..c4b0e405 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/fi.ss01.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f.ss01 + com.fontlab.metricsRight + i + com.fontlab.recipe + f.ss01_i + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/fitacyr.glif b/sources/FixelText-Bold.ufo/glyphs/fitacyr.glif new file mode 100644 index 00000000..904c6ebe --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/fitacyr.glif @@ -0,0 +1,76 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + obarcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/five.glif b/sources/FixelText-Bold.ufo/glyphs/five.glif new file mode 100644 index 00000000..6e99e292 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/five.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/five.osf.glif b/sources/FixelText-Bold.ufo/glyphs/five.osf.glif new file mode 100644 index 00000000..0626f86f --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/five.osf.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + five + com.fontlab.metricsRight + five + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/five.tf.glif b/sources/FixelText-Bold.ufo/glyphs/five.tf.glif new file mode 100644 index 00000000..9713bfcf --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/five.tf.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/fl.glif b/sources/FixelText-Bold.ufo/glyphs/fl.glif new file mode 100644 index 00000000..73e0aa21 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/fl.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f + com.fontlab.metricsRight + l + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/fl.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/fl.ss01.glif new file mode 100644 index 00000000..bca9c192 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/fl.ss01.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f.ss01 + com.fontlab.metricsRight + l.ss01 + com.fontlab.recipe + f.ss01_l.ss01 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/floretteblack.glif b/sources/FixelText-Bold.ufo/glyphs/floretteblack.glif new file mode 100644 index 00000000..95fb815d --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/floretteblack.glif @@ -0,0 +1,522 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/floretteoutlinedpetalledblackeight.glif b/sources/FixelText-Bold.ufo/glyphs/floretteoutlinedpetalledblackeight.glif new file mode 100644 index 00000000..f2a11c12 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/floretteoutlinedpetalledblackeight.glif @@ -0,0 +1,693 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/florettewhite.glif b/sources/FixelText-Bold.ufo/glyphs/florettewhite.glif new file mode 100644 index 00000000..b1984d18 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/florettewhite.glif @@ -0,0 +1,417 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/florin.glif b/sources/FixelText-Bold.ufo/glyphs/florin.glif new file mode 100644 index 00000000..4f50d240 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/florin.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/flower.glif b/sources/FixelText-Bold.ufo/glyphs/flower.glif new file mode 100644 index 00000000..1c7a2053 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/flower.glif @@ -0,0 +1,278 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/four.glif b/sources/FixelText-Bold.ufo/glyphs/four.glif new file mode 100644 index 00000000..e97a4f50 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/four.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/four.osf.glif b/sources/FixelText-Bold.ufo/glyphs/four.osf.glif new file mode 100644 index 00000000..7c988e39 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/four.osf.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + four + com.fontlab.metricsRight + four + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/four.tf.glif b/sources/FixelText-Bold.ufo/glyphs/four.tf.glif new file mode 100644 index 00000000..30fe8157 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/four.tf.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/fraction.glif b/sources/FixelText-Bold.ufo/glyphs/fraction.glif new file mode 100644 index 00000000..bc3c4330 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/fraction.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/g.glif b/sources/FixelText-Bold.ufo/glyphs/g.glif new file mode 100644 index 00000000..729cbba4 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/g.glif @@ -0,0 +1,94 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/g.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/g.ss01.glif new file mode 100644 index 00000000..d23f4c33 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/g.ss01.glif @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/gacute.glif b/sources/FixelText-Bold.ufo/glyphs/gacute.glif new file mode 100644 index 00000000..f1836e96 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/gacute.glif @@ -0,0 +1,109 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + g+acute + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/gacute.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/gacute.ss01.glif new file mode 100644 index 00000000..b91ab51f --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/gacute.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + g.ss01+acute + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/gbreve.glif b/sources/FixelText-Bold.ufo/glyphs/gbreve.glif new file mode 100644 index 00000000..8651588e --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/gbreve.glif @@ -0,0 +1,119 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + g+breve + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/gbreve.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/gbreve.ss01.glif new file mode 100644 index 00000000..0a446a48 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/gbreve.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + g.ss01+breve + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/gcircumflex.glif b/sources/FixelText-Bold.ufo/glyphs/gcircumflex.glif new file mode 100644 index 00000000..a7dc3882 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/gcircumflex.glif @@ -0,0 +1,113 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + g+circumflex + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/gcircumflex.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/gcircumflex.ss01.glif new file mode 100644 index 00000000..cc05c742 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/gcircumflex.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + g.ss01+circumflex + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/gcommaaccent.glif b/sources/FixelText-Bold.ufo/glyphs/gcommaaccent.glif new file mode 100644 index 00000000..6682a719 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/gcommaaccent.glif @@ -0,0 +1,121 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + g+commaaccentcomb.salt + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/gcommaaccent.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/gcommaaccent.ss01.glif new file mode 100644 index 00000000..7c95749d --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/gcommaaccent.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + g.ss01+commaaccentcomb.salt + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/gdotaccent.glif b/sources/FixelText-Bold.ufo/glyphs/gdotaccent.glif new file mode 100644 index 00000000..db4d3d9a --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/gdotaccent.glif @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + g+dotaccent + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/gdotaccent.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/gdotaccent.ss01.glif new file mode 100644 index 00000000..a7d27ff8 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/gdotaccent.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + g.ss01+dotaccent + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/ge-cy.B_G_R_.glif b/sources/FixelText-Bold.ufo/glyphs/ge-cy.B_G_R_.glif new file mode 100644 index 00000000..722ac969 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/ge-cy.B_G_R_.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |s+5 + com.fontlab.metricsRight + |s+5 + com.fontlab.recipe + dzeReversed-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/ge-cy.S_R_B_.glif b/sources/FixelText-Bold.ufo/glyphs/ge-cy.S_R_B_.glif new file mode 100644 index 00000000..78da6314 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/ge-cy.S_R_B_.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + iota-cy+macron + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/ge-cy.glif b/sources/FixelText-Bold.ufo/glyphs/ge-cy.glif new file mode 100644 index 00000000..ee90e44c --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/ge-cy.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + т + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/gehookcyr.glif b/sources/FixelText-Bold.ufo/glyphs/gehookcyr.glif new file mode 100644 index 00000000..78835b5c --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/gehookcyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + г + com.fontlab.metricsRight + enmiddlehookcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/gehookstrokecyr.glif b/sources/FixelText-Bold.ufo/glyphs/gehookstrokecyr.glif new file mode 100644 index 00000000..70fb7d34 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/gehookstrokecyr.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + gestrokecyr + com.fontlab.metricsRight + gestrokecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/germandbls.glif b/sources/FixelText-Bold.ufo/glyphs/germandbls.glif new file mode 100644 index 00000000..793facf7 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/germandbls.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + h-5 + com.fontlab.metricsRight + з + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/germandbls.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/germandbls.ss01.glif new file mode 100644 index 00000000..178e731f --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/germandbls.ss01.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f.ss01 + com.fontlab.metricsRight + з + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/gestrokecyr.B_S_H_.glif b/sources/FixelText-Bold.ufo/glyphs/gestrokecyr.B_S_H_.glif new file mode 100644 index 00000000..68942999 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/gestrokecyr.B_S_H_.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + г + com.fontlab.metricsRight + gestrokecyr + com.fontlab.recipe + gestrokecyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/gestrokecyr.glif b/sources/FixelText-Bold.ufo/glyphs/gestrokecyr.glif new file mode 100644 index 00000000..3ebb5427 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/gestrokecyr.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + г + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/getailcyr.glif b/sources/FixelText-Bold.ufo/glyphs/getailcyr.glif new file mode 100644 index 00000000..350a3174 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/getailcyr.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + г + com.fontlab.metricsRight + г + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/gheupturn-cy.glif b/sources/FixelText-Bold.ufo/glyphs/gheupturn-cy.glif new file mode 100644 index 00000000..74060611 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/gheupturn-cy.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + г + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/gjecyr.S_R_B_.glif b/sources/FixelText-Bold.ufo/glyphs/gjecyr.S_R_B_.glif new file mode 100644 index 00000000..a93f32af --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/gjecyr.S_R_B_.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + iota-cy+macronacute.SRB + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/gjecyr.glif b/sources/FixelText-Bold.ufo/glyphs/gjecyr.glif new file mode 100644 index 00000000..31b92ee4 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/gjecyr.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/grave.case.glif b/sources/FixelText-Bold.ufo/glyphs/grave.case.glif new file mode 100644 index 00000000..e9feb721 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/grave.case.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/grave.glif b/sources/FixelText-Bold.ufo/glyphs/grave.glif new file mode 100644 index 00000000..cc5ce68b --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/grave.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/greater.glif b/sources/FixelText-Bold.ufo/glyphs/greater.glif new file mode 100644 index 00000000..15b14185 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/greater.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |less + com.fontlab.metricsRight + |less + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/greaterequal.glif b/sources/FixelText-Bold.ufo/glyphs/greaterequal.glif new file mode 100644 index 00000000..a5e3aeeb --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/greaterequal.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/guillemetleft.case.glif b/sources/FixelText-Bold.ufo/glyphs/guillemetleft.case.glif new file mode 100644 index 00000000..2d83c46a --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/guillemetleft.case.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + guilsinglleft + com.fontlab.metricsRight + guilsinglleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/guillemetleft.glif b/sources/FixelText-Bold.ufo/glyphs/guillemetleft.glif new file mode 100644 index 00000000..ab9d86de --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/guillemetleft.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + guilsinglleft + com.fontlab.metricsRight + guilsinglleft + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/guillemetright.case.glif b/sources/FixelText-Bold.ufo/glyphs/guillemetright.case.glif new file mode 100644 index 00000000..fb593cae --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/guillemetright.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |guillemetleft.case + com.fontlab.metricsRight + |guillemetleft.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/guillemetright.glif b/sources/FixelText-Bold.ufo/glyphs/guillemetright.glif new file mode 100644 index 00000000..b4275cb0 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/guillemetright.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |guilsinglleft + com.fontlab.metricsRight + |guilsinglleft + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/guilsinglleft.case.glif b/sources/FixelText-Bold.ufo/glyphs/guilsinglleft.case.glif new file mode 100644 index 00000000..1d6beef1 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/guilsinglleft.case.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/guilsinglleft.glif b/sources/FixelText-Bold.ufo/glyphs/guilsinglleft.glif new file mode 100644 index 00000000..fb7f68e6 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/guilsinglleft.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/guilsinglright.case.glif b/sources/FixelText-Bold.ufo/glyphs/guilsinglright.case.glif new file mode 100644 index 00000000..18888e60 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/guilsinglright.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |guilsinglleft + com.fontlab.metricsRight + |guilsinglleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/guilsinglright.glif b/sources/FixelText-Bold.ufo/glyphs/guilsinglright.glif new file mode 100644 index 00000000..e412aacd --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/guilsinglright.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + |guilsinglleft + com.fontlab.metricsRight + |guilsinglleft + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/h.glif b/sources/FixelText-Bold.ufo/glyphs/h.glif new file mode 100644 index 00000000..466ed06d --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/h.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + com.fontlab.metricsRight + n + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/ha-cy.glif b/sources/FixelText-Bold.ufo/glyphs/ha-cy.glif new file mode 100644 index 00000000..2da31873 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/ha-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + x + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/haabkhcyr.glif b/sources/FixelText-Bold.ufo/glyphs/haabkhcyr.glif new file mode 100644 index 00000000..8c1caa91 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/haabkhcyr.glif @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + |o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/hahookcyr.glif b/sources/FixelText-Bold.ufo/glyphs/hahookcyr.glif new file mode 100644 index 00000000..77bacee1 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/hahookcyr.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + x + com.fontlab.metricsRight + x + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/hardsign-cy.B_G_R_.glif b/sources/FixelText-Bold.ufo/glyphs/hardsign-cy.B_G_R_.glif new file mode 100644 index 00000000..96fa906a --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/hardsign-cy.B_G_R_.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/hardsign-cy.glif b/sources/FixelText-Bold.ufo/glyphs/hardsign-cy.glif new file mode 100644 index 00000000..84a8fc55 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/hardsign-cy.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/hardsign-cy.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/hardsign-cy.ss01.glif new file mode 100644 index 00000000..108c1235 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/hardsign-cy.ss01.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/hastrokecyr.glif b/sources/FixelText-Bold.ufo/glyphs/hastrokecyr.glif new file mode 100644 index 00000000..7acc8004 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/hastrokecyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + x + com.fontlab.metricsRight + x + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/hbar.glif b/sources/FixelText-Bold.ufo/glyphs/hbar.glif new file mode 100644 index 00000000..a7407556 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/hbar.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + h + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/hcircumflex.glif b/sources/FixelText-Bold.ufo/glyphs/hcircumflex.glif new file mode 100644 index 00000000..b0cd5eae --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/hcircumflex.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + h+circumflex.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/heart.glif b/sources/FixelText-Bold.ufo/glyphs/heart.glif new file mode 100644 index 00000000..25123628 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/heart.glif @@ -0,0 +1,320 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/heartwhite.glif b/sources/FixelText-Bold.ufo/glyphs/heartwhite.glif new file mode 100644 index 00000000..37442a6a --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/heartwhite.glif @@ -0,0 +1,189 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =42 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/hryvnia.glif b/sources/FixelText-Bold.ufo/glyphs/hryvnia.glif new file mode 100644 index 00000000..d7216dc4 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/hryvnia.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/hundredmillionscomb-cy.glif b/sources/FixelText-Bold.ufo/glyphs/hundredmillionscomb-cy.glif new file mode 100644 index 00000000..04e788a9 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/hundredmillionscomb-cy.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/hundredthousandscombcyr.glif b/sources/FixelText-Bold.ufo/glyphs/hundredthousandscombcyr.glif new file mode 100644 index 00000000..d2e757b9 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/hundredthousandscombcyr.glif @@ -0,0 +1,141 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/hungarumlaut.case.glif b/sources/FixelText-Bold.ufo/glyphs/hungarumlaut.case.glif new file mode 100644 index 00000000..30164af5 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/hungarumlaut.case.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/hungarumlaut.glif b/sources/FixelText-Bold.ufo/glyphs/hungarumlaut.glif new file mode 100644 index 00000000..f287c309 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/hungarumlaut.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/hwe-cy.glif b/sources/FixelText-Bold.ufo/glyphs/hwe-cy.glif new file mode 100644 index 00000000..5e9637e6 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/hwe-cy.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + h + com.fontlab.metricsRight + h + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/hyphen.case.glif b/sources/FixelText-Bold.ufo/glyphs/hyphen.case.glif new file mode 100644 index 00000000..81bfac45 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/hyphen.case.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.metricsLeft + hyphen + com.fontlab.metricsRight + hyphen + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/hyphen.glif b/sources/FixelText-Bold.ufo/glyphs/hyphen.glif new file mode 100644 index 00000000..e3eb6f9f --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/hyphen.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/i-cy.glif b/sources/FixelText-Bold.ufo/glyphs/i-cy.glif new file mode 100644 index 00000000..174eea37 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/i-cy.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + i + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/i.glif b/sources/FixelText-Bold.ufo/glyphs/i.glif new file mode 100644 index 00000000..4b7c17ae --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/i.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + dotlessi+dotaccent + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/ia-cy.accented.glif b/sources/FixelText-Bold.ufo/glyphs/ia-cy.accented.glif new file mode 100644 index 00000000..8291cbda --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/ia-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + я+acute + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/ia-cy.glif b/sources/FixelText-Bold.ufo/glyphs/ia-cy.glif new file mode 100644 index 00000000..fa98ff10 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/ia-cy.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/ia-cy.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/ia-cy.ss01.glif new file mode 100644 index 00000000..45b70fec --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/ia-cy.ss01.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/iacute.glif b/sources/FixelText-Bold.ufo/glyphs/iacute.glif new file mode 100644 index 00000000..aa42fde5 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/iacute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + dotlessi+acute + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/ibreve.glif b/sources/FixelText-Bold.ufo/glyphs/ibreve.glif new file mode 100644 index 00000000..ad1c1989 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/ibreve.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + dotlessi+breve + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/icircumflex.glif b/sources/FixelText-Bold.ufo/glyphs/icircumflex.glif new file mode 100644 index 00000000..6ff6e5fb --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/icircumflex.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + dotlessi+circumflex + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/idieresis.glif b/sources/FixelText-Bold.ufo/glyphs/idieresis.glif new file mode 100644 index 00000000..4d81c53c --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/idieresis.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + idotless+dieresis.alt + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/idieresiscyr.glif b/sources/FixelText-Bold.ufo/glyphs/idieresiscyr.glif new file mode 100644 index 00000000..9e23709b --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/idieresiscyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ii-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/idotless.glif b/sources/FixelText-Bold.ufo/glyphs/idotless.glif new file mode 100644 index 00000000..00c4ca87 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/idotless.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/ie-cy.glif b/sources/FixelText-Bold.ufo/glyphs/ie-cy.glif new file mode 100644 index 00000000..43948f8d --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/ie-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/ie-cy.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/ie-cy.ss01.glif new file mode 100644 index 00000000..125dac6a --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/ie-cy.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/iebrevecyr.glif b/sources/FixelText-Bold.ufo/glyphs/iebrevecyr.glif new file mode 100644 index 00000000..4d81ed0a --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/iebrevecyr.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+breve + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/iegravecyr.S_R_B_.glif b/sources/FixelText-Bold.ufo/glyphs/iegravecyr.S_R_B_.glif new file mode 100644 index 00000000..b3686aac --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/iegravecyr.S_R_B_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+grave + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/iegravecyr.glif b/sources/FixelText-Bold.ufo/glyphs/iegravecyr.glif new file mode 100644 index 00000000..4ad9941f --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/iegravecyr.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+grave + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/igrave.glif b/sources/FixelText-Bold.ufo/glyphs/igrave.glif new file mode 100644 index 00000000..bb105150 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/igrave.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + dotlessi+grave + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/igravecyr.S_R_B_.glif b/sources/FixelText-Bold.ufo/glyphs/igravecyr.S_R_B_.glif new file mode 100644 index 00000000..c628b189 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/igravecyr.S_R_B_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+grave + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/igravecyr.glif b/sources/FixelText-Bold.ufo/glyphs/igravecyr.glif new file mode 100644 index 00000000..49700d70 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/igravecyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ii-cy+grave + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/ii-cy.B_G_R_.glif b/sources/FixelText-Bold.ufo/glyphs/ii-cy.B_G_R_.glif new file mode 100644 index 00000000..f0164ea6 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/ii-cy.B_G_R_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/ii-cy.accented.glif b/sources/FixelText-Bold.ufo/glyphs/ii-cy.accented.glif new file mode 100644 index 00000000..e31b1216 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/ii-cy.accented.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + и+acute + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/ii-cy.glif b/sources/FixelText-Bold.ufo/glyphs/ii-cy.glif new file mode 100644 index 00000000..c8492347 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/ii-cy.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/iishort-cy.B_G_R_.glif b/sources/FixelText-Bold.ufo/glyphs/iishort-cy.B_G_R_.glif new file mode 100644 index 00000000..a1e0da37 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/iishort-cy.B_G_R_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/iishort-cy.glif b/sources/FixelText-Bold.ufo/glyphs/iishort-cy.glif new file mode 100644 index 00000000..2dcc5a57 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/iishort-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + icyr+breve + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/ij.glif b/sources/FixelText-Bold.ufo/glyphs/ij.glif new file mode 100644 index 00000000..b01e354a --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/ij.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + i + com.fontlab.metricsRight + j + com.fontlab.recipe + i_j + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/imacron.glif b/sources/FixelText-Bold.ufo/glyphs/imacron.glif new file mode 100644 index 00000000..a4b7b22b --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/imacron.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =5 + com.fontlab.metricsRight + =5 + com.fontlab.recipe + idotless+macron + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/imacroncyr.glif b/sources/FixelText-Bold.ufo/glyphs/imacroncyr.glif new file mode 100644 index 00000000..76e51dab --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/imacroncyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ii-cy+macron + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/increment.glif b/sources/FixelText-Bold.ufo/glyphs/increment.glif new file mode 100644 index 00000000..0cd4bef3 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/increment.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/infinity.glif b/sources/FixelText-Bold.ufo/glyphs/infinity.glif new file mode 100644 index 00000000..1c3f2e6a --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/infinity.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/integral.glif b/sources/FixelText-Bold.ufo/glyphs/integral.glif new file mode 100644 index 00000000..8e8c3a61 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/integral.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/io-cy.accented.glif b/sources/FixelText-Bold.ufo/glyphs/io-cy.accented.glif new file mode 100644 index 00000000..4c9cb361 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/io-cy.accented.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsLeft + e + com.fontlab.metricsRight + e + com.fontlab.recipe + e+dieresisacute + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/io-cy.glif b/sources/FixelText-Bold.ufo/glyphs/io-cy.glif new file mode 100644 index 00000000..9c9d06c0 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/io-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + edieresis + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/io-cy.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/io-cy.ss01.glif new file mode 100644 index 00000000..4dd1dae4 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/io-cy.ss01.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + edieresis.ss01 + com.schriftgestaltung.Glyphs.ComponentInfo + + + alignment + -1 + index + 0 + name + edieresis.ss01 + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/iogonek.glif b/sources/FixelText-Bold.ufo/glyphs/iogonek.glif new file mode 100644 index 00000000..8b4307c0 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/iogonek.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + i+ogonek + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/iota-cy.glif b/sources/FixelText-Bold.ufo/glyphs/iota-cy.glif new file mode 100644 index 00000000..56523379 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/iota-cy.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l.ss01 + com.fontlab.metricsRight + l.ss01 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/iotifieda-cy.B_G_R_.glif b/sources/FixelText-Bold.ufo/glyphs/iotifieda-cy.B_G_R_.glif new file mode 100644 index 00000000..66d55ca5 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/iotifieda-cy.B_G_R_.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + el-cy.BGR + com.fontlab.recipe + iotifieda-cy + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/iotifieda-cy.glif b/sources/FixelText-Bold.ufo/glyphs/iotifieda-cy.glif new file mode 100644 index 00000000..9cee8c9d --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/iotifieda-cy.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + yusClosedlittle-cy + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/iotifieda-cy.hist.glif b/sources/FixelText-Bold.ufo/glyphs/iotifieda-cy.hist.glif new file mode 100644 index 00000000..cc323dbd --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/iotifieda-cy.hist.glif @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + reversedzecyr + com.fontlab.metricsRight + a + public.markColor + 0.6,0.997,1,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/ishortsharptailcyr.glif b/sources/FixelText-Bold.ufo/glyphs/ishortsharptailcyr.glif new file mode 100644 index 00000000..78d6735c --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/ishortsharptailcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + й + com.fontlab.metricsRight + ensharptailcyr + com.fontlab.recipe + й + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/itilde.glif b/sources/FixelText-Bold.ufo/glyphs/itilde.glif new file mode 100644 index 00000000..dc606797 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/itilde.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + dotlessi+tilde + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/iu-cy.B_G_R_.glif b/sources/FixelText-Bold.ufo/glyphs/iu-cy.B_G_R_.glif new file mode 100644 index 00000000..35e51d43 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/iu-cy.B_G_R_.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + o + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/iu-cy.accented.glif b/sources/FixelText-Bold.ufo/glyphs/iu-cy.accented.glif new file mode 100644 index 00000000..ddf318e0 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/iu-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ю+acute + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/iu-cy.glif b/sources/FixelText-Bold.ufo/glyphs/iu-cy.glif new file mode 100644 index 00000000..fe0dd7b4 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/iu-cy.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/izhitsacyr.glif b/sources/FixelText-Bold.ufo/glyphs/izhitsacyr.glif new file mode 100644 index 00000000..2f4e1539 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/izhitsacyr.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + v + com.fontlab.metricsRight + + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/izhitsagravedblcyr.glif b/sources/FixelText-Bold.ufo/glyphs/izhitsagravedblcyr.glif new file mode 100644 index 00000000..7c7dd8ef --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/izhitsagravedblcyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + com.fontlab.metricsLeft + izhitsacyr + com.fontlab.metricsRight + izhitsacyr + com.fontlab.recipe + izhitsacyr+hungarumlaut + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/j.glif b/sources/FixelText-Bold.ufo/glyphs/j.glif new file mode 100644 index 00000000..df2fd816 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/j.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + i + com.fontlab.recipe + dotlessj+dotaccent + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/jcircumflex.glif b/sources/FixelText-Bold.ufo/glyphs/jcircumflex.glif new file mode 100644 index 00000000..34a61bed --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/jcircumflex.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + dotlessj+circumflex + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/jdotless.glif b/sources/FixelText-Bold.ufo/glyphs/jdotless.glif new file mode 100644 index 00000000..961b11e2 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/jdotless.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + l + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/je-cy.glif b/sources/FixelText-Bold.ufo/glyphs/je-cy.glif new file mode 100644 index 00000000..d973d159 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/je-cy.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + j + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/k.glif b/sources/FixelText-Bold.ufo/glyphs/k.glif new file mode 100644 index 00000000..2eb57eb2 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/k.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/ka-cy.B_G_R_.glif b/sources/FixelText-Bold.ufo/glyphs/ka-cy.B_G_R_.glif new file mode 100644 index 00000000..29e4cff6 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/ka-cy.B_G_R_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + k + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/ka-cy.glif b/sources/FixelText-Bold.ufo/glyphs/ka-cy.glif new file mode 100644 index 00000000..e080a967 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/ka-cy.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + k + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/kaaleutcyr.glif b/sources/FixelText-Bold.ufo/glyphs/kaaleutcyr.glif new file mode 100644 index 00000000..802f59d4 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/kaaleutcyr.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + k + com.fontlab.metricsRight + k + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/kabashkcyr.glif b/sources/FixelText-Bold.ufo/glyphs/kabashkcyr.glif new file mode 100644 index 00000000..b2b5105f --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/kabashkcyr.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hardsign-cy + com.fontlab.metricsRight + k + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/kahookcyr.glif b/sources/FixelText-Bold.ufo/glyphs/kahookcyr.glif new file mode 100644 index 00000000..7f71cb38 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/kahookcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + n + com.fontlab.metricsRight + k+10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/kastrokecyr.glif b/sources/FixelText-Bold.ufo/glyphs/kastrokecyr.glif new file mode 100644 index 00000000..b0690f2b --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/kastrokecyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hbar + com.fontlab.metricsRight + k + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/katailcyr.glif b/sources/FixelText-Bold.ufo/glyphs/katailcyr.glif new file mode 100644 index 00000000..4f35a64f --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/katailcyr.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + k + com.fontlab.metricsRight + к-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/kaverticalstrokecyr.glif b/sources/FixelText-Bold.ufo/glyphs/kaverticalstrokecyr.glif new file mode 100644 index 00000000..18232d32 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/kaverticalstrokecyr.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + k + com.fontlab.metricsRight + k + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/kcommaaccent.glif b/sources/FixelText-Bold.ufo/glyphs/kcommaaccent.glif new file mode 100644 index 00000000..23d0e4fa --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/kcommaaccent.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsLeft + k + com.fontlab.metricsRight + k + com.fontlab.recipe + k+commaaccentcomb + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/kgreenlandic.glif b/sources/FixelText-Bold.ufo/glyphs/kgreenlandic.glif new file mode 100644 index 00000000..0de2ab00 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/kgreenlandic.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + kacyr + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/kjecyr.glif b/sources/FixelText-Bold.ufo/glyphs/kjecyr.glif new file mode 100644 index 00000000..69eeac01 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/kjecyr.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/knightblack.glif b/sources/FixelText-Bold.ufo/glyphs/knightblack.glif new file mode 100644 index 00000000..aebdf595 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/knightblack.glif @@ -0,0 +1,313 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/knightwhite.glif b/sources/FixelText-Bold.ufo/glyphs/knightwhite.glif new file mode 100644 index 00000000..ed73dc3b --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/knightwhite.glif @@ -0,0 +1,320 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/koppacyr.glif b/sources/FixelText-Bold.ufo/glyphs/koppacyr.glif new file mode 100644 index 00000000..33564718 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/koppacyr.glif @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + c-20 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/ksicyr.glif b/sources/FixelText-Bold.ufo/glyphs/ksicyr.glif new file mode 100644 index 00000000..97419ef1 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/ksicyr.glif @@ -0,0 +1,102 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + з-10 + com.fontlab.metricsRight + з + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/l.glif b/sources/FixelText-Bold.ufo/glyphs/l.glif new file mode 100644 index 00000000..1c2c5f99 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/l.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/l.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/l.ss01.glif new file mode 100644 index 00000000..70bf740e --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/l.ss01.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/lacute.glif b/sources/FixelText-Bold.ufo/glyphs/lacute.glif new file mode 100644 index 00000000..e9a3d26b --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/lacute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l+acute.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/lacute.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/lacute.ss01.glif new file mode 100644 index 00000000..bcc36a4c --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/lacute.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l.ss01+acute.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/layerinfo.plist b/sources/FixelText-Bold.ufo/glyphs/layerinfo.plist new file mode 100644 index 00000000..8c198655 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/layerinfo.plist @@ -0,0 +1,21 @@ + + + + + lib + + com.fontlab.layer.name + Body + com.fontlab.layer.opacity + 1 + com.fontlab.layer.visible + + com.fontlab.layer.locked + + com.fontlab.layer.service + + com.fontlab.layer.wireframe + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/lcaron.glif b/sources/FixelText-Bold.ufo/glyphs/lcaron.glif new file mode 100644 index 00000000..6feff176 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/lcaron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l+caron.salt + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/lcaron.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/lcaron.ss01.glif new file mode 100644 index 00000000..5c2d7d55 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/lcaron.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l.ss01+caron.salt + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/lcommaaccent.glif b/sources/FixelText-Bold.ufo/glyphs/lcommaaccent.glif new file mode 100644 index 00000000..2b700dda --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/lcommaaccent.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l+commaaccentcomb + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/lcommaaccent.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/lcommaaccent.ss01.glif new file mode 100644 index 00000000..3ad72e06 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/lcommaaccent.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l.ss01+commaaccentcomb + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/ldot.glif b/sources/FixelText-Bold.ufo/glyphs/ldot.glif new file mode 100644 index 00000000..c43710f9 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/ldot.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/ldot.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/ldot.ss01.glif new file mode 100644 index 00000000..14b2a282 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/ldot.ss01.glif @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + l.ss01_periodcentered + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/leo.glif b/sources/FixelText-Bold.ufo/glyphs/leo.glif new file mode 100644 index 00000000..394e7cf7 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/leo.glif @@ -0,0 +1,494 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/less.glif b/sources/FixelText-Bold.ufo/glyphs/less.glif new file mode 100644 index 00000000..1e2c8a46 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/less.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/lessequal.glif b/sources/FixelText-Bold.ufo/glyphs/lessequal.glif new file mode 100644 index 00000000..577c1620 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/lessequal.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/lhacyr.glif b/sources/FixelText-Bold.ufo/glyphs/lhacyr.glif new file mode 100644 index 00000000..ee667877 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/lhacyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + х + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/ljecyr.glif b/sources/FixelText-Bold.ufo/glyphs/ljecyr.glif new file mode 100644 index 00000000..9fb8d577 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/ljecyr.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + ь + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/ljecyr.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/ljecyr.ss01.glif new file mode 100644 index 00000000..f6f4e7a7 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/ljecyr.ss01.glif @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + ь + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/ljekomicyr.glif b/sources/FixelText-Bold.ufo/glyphs/ljekomicyr.glif new file mode 100644 index 00000000..37f895c7 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/ljekomicyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + njekomicyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/longs.glif b/sources/FixelText-Bold.ufo/glyphs/longs.glif new file mode 100644 index 00000000..ce8b7144 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/longs.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + n + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/lslash.glif b/sources/FixelText-Bold.ufo/glyphs/lslash.glif new file mode 100644 index 00000000..dfa920fa --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/lslash.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Lslash+12 + com.fontlab.metricsRight + |Lslash+12 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/lslash.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/lslash.ss01.glif new file mode 100644 index 00000000..a9f92662 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/lslash.ss01.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Lslash-10 + com.fontlab.metricsRight + |Lslash + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/m.glif b/sources/FixelText-Bold.ufo/glyphs/m.glif new file mode 100644 index 00000000..8e14e085 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/m.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + n + com.fontlab.metricsRight + n + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/macron-fwd.alt.glif b/sources/FixelText-Bold.ufo/glyphs/macron-fwd.alt.glif new file mode 100644 index 00000000..a046c3b0 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/macron-fwd.alt.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/macron-fwd.glif b/sources/FixelText-Bold.ufo/glyphs/macron-fwd.glif new file mode 100644 index 00000000..e13cb6e2 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/macron-fwd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/macron.case.glif b/sources/FixelText-Bold.ufo/glyphs/macron.case.glif new file mode 100644 index 00000000..afbed003 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/macron.case.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/macron.glif b/sources/FixelText-Bold.ufo/glyphs/macron.glif new file mode 100644 index 00000000..a3e54d27 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/macron.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/macronacute.S_R_B_.glif b/sources/FixelText-Bold.ufo/glyphs/macronacute.S_R_B_.glif new file mode 100644 index 00000000..26070060 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/macronacute.S_R_B_.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + macron+acute + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/millionscombcyr.glif b/sources/FixelText-Bold.ufo/glyphs/millionscombcyr.glif new file mode 100644 index 00000000..b4304fe8 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/millionscombcyr.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/minus.glif b/sources/FixelText-Bold.ufo/glyphs/minus.glif new file mode 100644 index 00000000..c81f2cb4 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/minus.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/minute.glif b/sources/FixelText-Bold.ufo/glyphs/minute.glif new file mode 100644 index 00000000..005e4580 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/minute.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/mu.glif b/sources/FixelText-Bold.ufo/glyphs/mu.glif new file mode 100644 index 00000000..640bc654 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/mu.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + p + com.fontlab.metricsRight + u + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/multiply.glif b/sources/FixelText-Bold.ufo/glyphs/multiply.glif new file mode 100644 index 00000000..7a31397c --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/multiply.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/n.glif b/sources/FixelText-Bold.ufo/glyphs/n.glif new file mode 100644 index 00000000..d18a78da --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/n.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/nacute.glif b/sources/FixelText-Bold.ufo/glyphs/nacute.glif new file mode 100644 index 00000000..8a7d51c9 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/nacute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + n+acute + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/napostrophe.glif b/sources/FixelText-Bold.ufo/glyphs/napostrophe.glif new file mode 100644 index 00000000..4e5d7158 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/napostrophe.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + com.fontlab.metricsRight + n + com.schriftgestaltung.Glyphs.ComponentInfo + + + alignment + -1 + index + 0 + name + n + + + alignment + -1 + index + 1 + name + quoteright + + + com.schriftgestaltung.Glyphs.rightMetricsKey + n + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/ncaron.glif b/sources/FixelText-Bold.ufo/glyphs/ncaron.glif new file mode 100644 index 00000000..e61b348f --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/ncaron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + n+caron + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/ncommaaccent.glif b/sources/FixelText-Bold.ufo/glyphs/ncommaaccent.glif new file mode 100644 index 00000000..c7211de5 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/ncommaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + n+commaaccentcomb + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/neptune.glif b/sources/FixelText-Bold.ufo/glyphs/neptune.glif new file mode 100644 index 00000000..23923ea3 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/neptune.glif @@ -0,0 +1,125 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ш + com.fontlab.metricsRight + Ш + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/nine.glif b/sources/FixelText-Bold.ufo/glyphs/nine.glif new file mode 100644 index 00000000..ee6955ef --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/nine.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + |six + com.fontlab.metricsRight + |six + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/nine.osf.glif b/sources/FixelText-Bold.ufo/glyphs/nine.osf.glif new file mode 100644 index 00000000..be9cfa4d --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/nine.osf.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |six + com.fontlab.metricsRight + |six + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/nine.tf.glif b/sources/FixelText-Bold.ufo/glyphs/nine.tf.glif new file mode 100644 index 00000000..45b5dc15 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/nine.tf.glif @@ -0,0 +1,7 @@ + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/njecyr.glif b/sources/FixelText-Bold.ufo/glyphs/njecyr.glif new file mode 100644 index 00000000..85edb952 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/njecyr.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + ь + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/njecyr.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/njecyr.ss01.glif new file mode 100644 index 00000000..c85bf907 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/njecyr.ss01.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + ь + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/njekomicyr.glif b/sources/FixelText-Bold.ufo/glyphs/njekomicyr.glif new file mode 100644 index 00000000..05e2ebb7 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/njekomicyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + |u + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/notequal.glif b/sources/FixelText-Bold.ufo/glyphs/notequal.glif new file mode 100644 index 00000000..aa90c271 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/notequal.glif @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/ntilde.glif b/sources/FixelText-Bold.ufo/glyphs/ntilde.glif new file mode 100644 index 00000000..b5b7f1c5 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/ntilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + n+tilde + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/numbersign.glif b/sources/FixelText-Bold.ufo/glyphs/numbersign.glif new file mode 100644 index 00000000..ef088800 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/numbersign.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/numero.glif b/sources/FixelText-Bold.ufo/glyphs/numero.glif new file mode 100644 index 00000000..0dec5fdf --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/numero.glif @@ -0,0 +1,90 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + N + com.fontlab.recipe + N+ordmasculine + com.schriftgestaltung.Glyphs.ComponentInfo + + + alignment + -1 + index + 0 + name + N + + + alignment + -1 + index + 1 + name + ordmasculine + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/numero.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/numero.ss01.glif new file mode 100644 index 00000000..e14e0084 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/numero.ss01.glif @@ -0,0 +1,95 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + N.ss01 + com.fontlab.metricsRight + ordmasculine + com.fontlab.recipe + N.ss01+ordmasculine + com.schriftgestaltung.Glyphs.ComponentInfo + + + alignment + -1 + index + 0 + name + ordmasculine + + + alignment + -1 + index + 1 + name + N.ss01 + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/o-cy.accented.glif b/sources/FixelText-Bold.ufo/glyphs/o-cy.accented.glif new file mode 100644 index 00000000..fe6adb93 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/o-cy.accented.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+acute + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/o-cy.glif b/sources/FixelText-Bold.ufo/glyphs/o-cy.glif new file mode 100644 index 00000000..ebcb98de --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/o-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/o.glif b/sources/FixelText-Bold.ufo/glyphs/o.glif new file mode 100644 index 00000000..88308462 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/o.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/oB_inocular-cy.glif b/sources/FixelText-Bold.ufo/glyphs/oB_inocular-cy.glif new file mode 100644 index 00000000..cad9793e --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/oB_inocular-cy.glif @@ -0,0 +1,81 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/oD_oubleM_onocular-cy.glif b/sources/FixelText-Bold.ufo/glyphs/oD_oubleM_onocular-cy.glif new file mode 100644 index 00000000..f204ab5a --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/oD_oubleM_onocular-cy.glif @@ -0,0 +1,121 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + com.fontlab.recipe + doubleo-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/oM_onocular-cy.glif b/sources/FixelText-Bold.ufo/glyphs/oM_onocular-cy.glif new file mode 100644 index 00000000..32c25cfd --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/oM_onocular-cy.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/oacute.glif b/sources/FixelText-Bold.ufo/glyphs/oacute.glif new file mode 100644 index 00000000..e0ca73bd --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/oacute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+acute + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/obarcyr.glif b/sources/FixelText-Bold.ufo/glyphs/obarcyr.glif new file mode 100644 index 00000000..c2118ad4 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/obarcyr.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/obardieresiscyr.glif b/sources/FixelText-Bold.ufo/glyphs/obardieresiscyr.glif new file mode 100644 index 00000000..882c3121 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/obardieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + obarcyr+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/obreve.glif b/sources/FixelText-Bold.ufo/glyphs/obreve.glif new file mode 100644 index 00000000..094f6612 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/obreve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+breve + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/ocircumflex.glif b/sources/FixelText-Bold.ufo/glyphs/ocircumflex.glif new file mode 100644 index 00000000..407e8048 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/ocircumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+circumflex + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/odieresis.glif b/sources/FixelText-Bold.ufo/glyphs/odieresis.glif new file mode 100644 index 00000000..0fcea3de --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/odieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+dieresis + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/odieresiscyr.glif b/sources/FixelText-Bold.ufo/glyphs/odieresiscyr.glif new file mode 100644 index 00000000..6f1c160e --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/odieresiscyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/oe.glif b/sources/FixelText-Bold.ufo/glyphs/oe.glif new file mode 100644 index 00000000..58b323f0 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/oe.glif @@ -0,0 +1,86 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + e + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/oe.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/oe.ss01.glif new file mode 100644 index 00000000..0c550302 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/oe.ss01.glif @@ -0,0 +1,95 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + e.ss01 + public.markColor + 0.6,0.997,1,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/ogonek.glif b/sources/FixelText-Bold.ufo/glyphs/ogonek.glif new file mode 100644 index 00000000..d3031c38 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/ogonek.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/ograve.glif b/sources/FixelText-Bold.ufo/glyphs/ograve.glif new file mode 100644 index 00000000..a558cbe2 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/ograve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+grave + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/ohungarumlaut.glif b/sources/FixelText-Bold.ufo/glyphs/ohungarumlaut.glif new file mode 100644 index 00000000..288ebd4b --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/ohungarumlaut.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+hungarumlaut + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/omacron.glif b/sources/FixelText-Bold.ufo/glyphs/omacron.glif new file mode 100644 index 00000000..f4647681 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/omacron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+macron + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/omegaB_road-cy.glif b/sources/FixelText-Bold.ufo/glyphs/omegaB_road-cy.glif new file mode 100644 index 00000000..1be8ecea --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/omegaB_road-cy.glif @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o+5 + com.fontlab.metricsRight + o+5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/omegacyr.glif b/sources/FixelText-Bold.ufo/glyphs/omegacyr.glif new file mode 100644 index 00000000..f3a081de --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/omegacyr.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + w + com.fontlab.metricsRight + w + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/omegaroundcyr.glif b/sources/FixelText-Bold.ufo/glyphs/omegaroundcyr.glif new file mode 100644 index 00000000..64711c78 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/omegaroundcyr.glif @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/omegatitlocyr.glif b/sources/FixelText-Bold.ufo/glyphs/omegatitlocyr.glif new file mode 100644 index 00000000..1fc9a3f8 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/omegatitlocyr.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o+5 + com.fontlab.metricsRight + o+5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/omultiocular-cy.alt.glif b/sources/FixelText-Bold.ufo/glyphs/omultiocular-cy.alt.glif new file mode 100644 index 00000000..d4c560d9 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/omultiocular-cy.alt.glif @@ -0,0 +1,367 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + oMonocular-cy + com.fontlab.metricsRight + oMonocular-cy + public.markColor + 0.6,0.997,1,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/omultiocular-cy.glif b/sources/FixelText-Bold.ufo/glyphs/omultiocular-cy.glif new file mode 100644 index 00000000..df4c882d --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/omultiocular-cy.glif @@ -0,0 +1,516 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + oMonocular-cy + com.fontlab.metricsRight + oMonocular-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/one.glif b/sources/FixelText-Bold.ufo/glyphs/one.glif new file mode 100644 index 00000000..11d2a6c5 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/one.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =40 + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/one.osf.glif b/sources/FixelText-Bold.ufo/glyphs/one.osf.glif new file mode 100644 index 00000000..141299c7 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/one.osf.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + one + com.fontlab.metricsRight + one + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/one.tf.glif b/sources/FixelText-Bold.ufo/glyphs/one.tf.glif new file mode 100644 index 00000000..5c026400 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/one.tf.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/onehalf.glif b/sources/FixelText-Bold.ufo/glyphs/onehalf.glif new file mode 100644 index 00000000..8c4d13ac --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/onehalf.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/onequarter.glif b/sources/FixelText-Bold.ufo/glyphs/onequarter.glif new file mode 100644 index 00000000..c3e2cf6c --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/onequarter.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/onesuperior.glif b/sources/FixelText-Bold.ufo/glyphs/onesuperior.glif new file mode 100644 index 00000000..3ff7cf43 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/onesuperior.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/ordfeminine.glif b/sources/FixelText-Bold.ufo/glyphs/ordfeminine.glif new file mode 100644 index 00000000..034ac367 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/ordfeminine.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/ordmasculine.glif b/sources/FixelText-Bold.ufo/glyphs/ordmasculine.glif new file mode 100644 index 00000000..63caee88 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/ordmasculine.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/oslash.glif b/sources/FixelText-Bold.ufo/glyphs/oslash.glif new file mode 100644 index 00000000..dd422f6e --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/oslash.glif @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/oslashacute.glif b/sources/FixelText-Bold.ufo/glyphs/oslashacute.glif new file mode 100644 index 00000000..df7d2455 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/oslashacute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + oslash+acute + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/otcyr.glif b/sources/FixelText-Bold.ufo/glyphs/otcyr.glif new file mode 100644 index 00000000..4231f9f3 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/otcyr.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsRight + w + com.fontlab.recipe + omegacyr+uni2DEE + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/otilde.glif b/sources/FixelText-Bold.ufo/glyphs/otilde.glif new file mode 100644 index 00000000..f0f23481 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/otilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+tilde + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/p.glif b/sources/FixelText-Bold.ufo/glyphs/p.glif new file mode 100644 index 00000000..1249ccc0 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/p.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/p.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/p.ss01.glif new file mode 100644 index 00000000..d4e14151 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/p.ss01.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/palatcombcyr.glif b/sources/FixelText-Bold.ufo/glyphs/palatcombcyr.glif new file mode 100644 index 00000000..d2a245cf --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/palatcombcyr.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/palochkacyr.glif b/sources/FixelText-Bold.ufo/glyphs/palochkacyr.glif new file mode 100644 index 00000000..0e73e0cd --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/palochkacyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/paragraph.glif b/sources/FixelText-Bold.ufo/glyphs/paragraph.glif new file mode 100644 index 00000000..e149f9a5 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/paragraph.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |P + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/parenleft.case.glif b/sources/FixelText-Bold.ufo/glyphs/parenleft.case.glif new file mode 100644 index 00000000..b1021cb2 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/parenleft.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |parenright.case + com.fontlab.metricsRight + |parenright.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/parenleft.glif b/sources/FixelText-Bold.ufo/glyphs/parenleft.glif new file mode 100644 index 00000000..cfd8d6af --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/parenleft.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/parenright.case.glif b/sources/FixelText-Bold.ufo/glyphs/parenright.case.glif new file mode 100644 index 00000000..8c45e286 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/parenright.case.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + parenright + com.fontlab.metricsRight + parenright + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/parenright.glif b/sources/FixelText-Bold.ufo/glyphs/parenright.glif new file mode 100644 index 00000000..8e561de3 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/parenright.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/partialdiff.glif b/sources/FixelText-Bold.ufo/glyphs/partialdiff.glif new file mode 100644 index 00000000..f01fb2b0 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/partialdiff.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/pe-cy.B_G_R_.glif b/sources/FixelText-Bold.ufo/glyphs/pe-cy.B_G_R_.glif new file mode 100644 index 00000000..185736ec --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/pe-cy.B_G_R_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + n + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/pe-cy.S_R_B_.glif b/sources/FixelText-Bold.ufo/glyphs/pe-cy.S_R_B_.glif new file mode 100644 index 00000000..fbeb7783 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/pe-cy.S_R_B_.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+macron-fwd.alt + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/pe-cy.glif b/sources/FixelText-Bold.ufo/glyphs/pe-cy.glif new file mode 100644 index 00000000..2eb41fd0 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/pe-cy.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/pehookcyr.glif b/sources/FixelText-Bold.ufo/glyphs/pehookcyr.glif new file mode 100644 index 00000000..b5d82eba --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/pehookcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + п + com.fontlab.metricsRight + enmiddlehookcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/percent.glif b/sources/FixelText-Bold.ufo/glyphs/percent.glif new file mode 100644 index 00000000..4b12a5a5 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/percent.glif @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/period.glif b/sources/FixelText-Bold.ufo/glyphs/period.glif new file mode 100644 index 00000000..55af9e63 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/period.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/periodcentered.glif b/sources/FixelText-Bold.ufo/glyphs/periodcentered.glif new file mode 100644 index 00000000..750130ee --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/periodcentered.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/perthousand.glif b/sources/FixelText-Bold.ufo/glyphs/perthousand.glif new file mode 100644 index 00000000..e2befbb9 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/perthousand.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/petailcyr.glif b/sources/FixelText-Bold.ufo/glyphs/petailcyr.glif new file mode 100644 index 00000000..4df487f8 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/petailcyr.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + п + com.fontlab.metricsRight + entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/pi.glif b/sources/FixelText-Bold.ufo/glyphs/pi.glif new file mode 100644 index 00000000..b011cd91 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/pi.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f + com.fontlab.metricsRight + t + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/plus.glif b/sources/FixelText-Bold.ufo/glyphs/plus.glif new file mode 100644 index 00000000..a554c191 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/plus.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/plusminus.glif b/sources/FixelText-Bold.ufo/glyphs/plusminus.glif new file mode 100644 index 00000000..1f55f272 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/plusminus.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/pokrytiecombcyr.glif b/sources/FixelText-Bold.ufo/glyphs/pokrytiecombcyr.glif new file mode 100644 index 00000000..77c6c662 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/pokrytiecombcyr.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/product.glif b/sources/FixelText-Bold.ufo/glyphs/product.glif new file mode 100644 index 00000000..7ad6776d --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/product.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/proportional.glif b/sources/FixelText-Bold.ufo/glyphs/proportional.glif new file mode 100644 index 00000000..1872ceac --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/proportional.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/psicyr.glif b/sources/FixelText-Bold.ufo/glyphs/psicyr.glif new file mode 100644 index 00000000..c64dd4f1 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/psicyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + u + com.fontlab.metricsRight + |u + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/q.glif b/sources/FixelText-Bold.ufo/glyphs/q.glif new file mode 100644 index 00000000..416f13e6 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/q.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/q.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/q.ss01.glif new file mode 100644 index 00000000..d54947ac --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/q.ss01.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/qacyr.glif b/sources/FixelText-Bold.ufo/glyphs/qacyr.glif new file mode 100644 index 00000000..a0dbf627 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/qacyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + q + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/question.glif b/sources/FixelText-Bold.ufo/glyphs/question.glif new file mode 100644 index 00000000..e9aa3172 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/question.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/questiondown.case.glif b/sources/FixelText-Bold.ufo/glyphs/questiondown.case.glif new file mode 100644 index 00000000..32c409ac --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/questiondown.case.glif @@ -0,0 +1,19 @@ + + + + + + + + + com.fontlab.metricsLeft + |question + com.fontlab.metricsRight + |question + com.fontlab.recipe + questiondown + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/questiondown.glif b/sources/FixelText-Bold.ufo/glyphs/questiondown.glif new file mode 100644 index 00000000..5dca6b01 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/questiondown.glif @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |question + com.fontlab.metricsRight + |question + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/quotedbl.glif b/sources/FixelText-Bold.ufo/glyphs/quotedbl.glif new file mode 100644 index 00000000..b8e94ee1 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/quotedbl.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/quotedblbase.glif b/sources/FixelText-Bold.ufo/glyphs/quotedblbase.glif new file mode 100644 index 00000000..7c41b0b9 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/quotedblbase.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + comma + com.fontlab.metricsRight + comma + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/quotedblleft.glif b/sources/FixelText-Bold.ufo/glyphs/quotedblleft.glif new file mode 100644 index 00000000..bce7c4b5 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/quotedblleft.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + |comma + com.fontlab.metricsRight + |comma + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/quotedblright.glif b/sources/FixelText-Bold.ufo/glyphs/quotedblright.glif new file mode 100644 index 00000000..5f087a96 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/quotedblright.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.metricsLeft + comma+20 + com.fontlab.metricsRight + comma-20 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/quoteleft.glif b/sources/FixelText-Bold.ufo/glyphs/quoteleft.glif new file mode 100644 index 00000000..aeb0592d --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/quoteleft.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + quotedblleft + com.fontlab.metricsRight + quotedblleft + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/quoteright.glif b/sources/FixelText-Bold.ufo/glyphs/quoteright.glif new file mode 100644 index 00000000..7137e6fb --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/quoteright.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + com.fontlab.metricsLeft + quotedblright + com.fontlab.metricsRight + quotedblright + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/quotesinglbase.glif b/sources/FixelText-Bold.ufo/glyphs/quotesinglbase.glif new file mode 100644 index 00000000..87c61650 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/quotesinglbase.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + com.fontlab.recipe + comma + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/quotesingle.glif b/sources/FixelText-Bold.ufo/glyphs/quotesingle.glif new file mode 100644 index 00000000..60d7fd3e --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/quotesingle.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/r.glif b/sources/FixelText-Bold.ufo/glyphs/r.glif new file mode 100644 index 00000000..e9720eed --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/r.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/racute.glif b/sources/FixelText-Bold.ufo/glyphs/racute.glif new file mode 100644 index 00000000..6f623b77 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/racute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + r+acute + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/radical.glif b/sources/FixelText-Bold.ufo/glyphs/radical.glif new file mode 100644 index 00000000..5f168e0b --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/radical.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + V + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/rcaron.glif b/sources/FixelText-Bold.ufo/glyphs/rcaron.glif new file mode 100644 index 00000000..70401982 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/rcaron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + r+caron + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/rcommaaccent.glif b/sources/FixelText-Bold.ufo/glyphs/rcommaaccent.glif new file mode 100644 index 00000000..9991e221 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/rcommaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + r+commaaccentcomb + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/registered.glif b/sources/FixelText-Bold.ufo/glyphs/registered.glif new file mode 100644 index 00000000..b4a63089 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/registered.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/reversedzecyr.glif b/sources/FixelText-Bold.ufo/glyphs/reversedzecyr.glif new file mode 100644 index 00000000..81e8fb55 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/reversedzecyr.glif @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + + com.fontlab.metricsRight + + com.fontlab.recipe + з + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/rhacyr.glif b/sources/FixelText-Bold.ufo/glyphs/rhacyr.glif new file mode 100644 index 00000000..e59829c2 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/rhacyr.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + p + com.fontlab.metricsRight + x + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/ring.case.glif b/sources/FixelText-Bold.ufo/glyphs/ring.case.glif new file mode 100644 index 00000000..aeab867a --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/ring.case.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/ring.glif b/sources/FixelText-Bold.ufo/glyphs/ring.glif new file mode 100644 index 00000000..ff726f07 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/ring.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/rookblack.glif b/sources/FixelText-Bold.ufo/glyphs/rookblack.glif new file mode 100644 index 00000000..36808fb3 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/rookblack.glif @@ -0,0 +1,270 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/ruble.glif b/sources/FixelText-Bold.ufo/glyphs/ruble.glif new file mode 100644 index 00000000..bf83b769 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/ruble.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + P + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/s.glif b/sources/FixelText-Bold.ufo/glyphs/s.glif new file mode 100644 index 00000000..7b35f669 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/s.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/sacute.glif b/sources/FixelText-Bold.ufo/glyphs/sacute.glif new file mode 100644 index 00000000..09ef4ad7 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/sacute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + s+acute + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/scaron.glif b/sources/FixelText-Bold.ufo/glyphs/scaron.glif new file mode 100644 index 00000000..5cd09e64 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/scaron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + s+caron + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/scedilla.glif b/sources/FixelText-Bold.ufo/glyphs/scedilla.glif new file mode 100644 index 00000000..160a25de --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/scedilla.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + s+cedilla + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/schwacyr.glif b/sources/FixelText-Bold.ufo/glyphs/schwacyr.glif new file mode 100644 index 00000000..19fc11a7 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/schwacyr.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |e + com.fontlab.metricsRight + o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/schwadieresiscyr.glif b/sources/FixelText-Bold.ufo/glyphs/schwadieresiscyr.glif new file mode 100644 index 00000000..e1fb7ea5 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/schwadieresiscyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + schwacyr+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/scircumflex.glif b/sources/FixelText-Bold.ufo/glyphs/scircumflex.glif new file mode 100644 index 00000000..6bbf34ca --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/scircumflex.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + s+circumflex + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/scommaaccent.glif b/sources/FixelText-Bold.ufo/glyphs/scommaaccent.glif new file mode 100644 index 00000000..aeea7855 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/scommaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + s+commaaccentcomb + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/second.glif b/sources/FixelText-Bold.ufo/glyphs/second.glif new file mode 100644 index 00000000..1aaa4449 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/second.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/section.glif b/sources/FixelText-Bold.ufo/glyphs/section.glif new file mode 100644 index 00000000..88569289 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/section.glif @@ -0,0 +1,87 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + S + com.fontlab.metricsRight + S + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/semicolon.case.glif b/sources/FixelText-Bold.ufo/glyphs/semicolon.case.glif new file mode 100644 index 00000000..1aff2537 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/semicolon.case.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.metricsLeft + semicolon + com.fontlab.metricsRight + semicolon + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/semicolon.glif b/sources/FixelText-Bold.ufo/glyphs/semicolon.glif new file mode 100644 index 00000000..e5e98009 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/semicolon.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/semisoftcyr.glif b/sources/FixelText-Bold.ufo/glyphs/semisoftcyr.glif new file mode 100644 index 00000000..e3229b83 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/semisoftcyr.glif @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + t + com.fontlab.metricsRight + ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/seven.glif b/sources/FixelText-Bold.ufo/glyphs/seven.glif new file mode 100644 index 00000000..4aaf803d --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/seven.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/seven.osf.glif b/sources/FixelText-Bold.ufo/glyphs/seven.osf.glif new file mode 100644 index 00000000..aa5d0e80 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/seven.osf.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + seven + com.fontlab.metricsRight + seven + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/seven.tf.glif b/sources/FixelText-Bold.ufo/glyphs/seven.tf.glif new file mode 100644 index 00000000..fe3d7fbb --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/seven.tf.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/sha-cy.B_G_R_.glif b/sources/FixelText-Bold.ufo/glyphs/sha-cy.B_G_R_.glif new file mode 100644 index 00000000..e8740a87 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/sha-cy.B_G_R_.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + u + com.fontlab.metricsRight + l + com.fontlab.recipe + m + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/sha-cy.glif b/sources/FixelText-Bold.ufo/glyphs/sha-cy.glif new file mode 100644 index 00000000..25fa97ec --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/sha-cy.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/shcha-cy.B_G_R_.glif b/sources/FixelText-Bold.ufo/glyphs/shcha-cy.B_G_R_.glif new file mode 100644 index 00000000..f8975f87 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/shcha-cy.B_G_R_.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + u + com.fontlab.metricsRight + щ + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/shcha-cy.glif b/sources/FixelText-Bold.ufo/glyphs/shcha-cy.glif new file mode 100644 index 00000000..01d17a12 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/shcha-cy.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + д + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/shhacyr.glif b/sources/FixelText-Bold.ufo/glyphs/shhacyr.glif new file mode 100644 index 00000000..708d5a95 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/shhacyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsRight + n + com.fontlab.recipe + h + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/shhatailcyr.glif b/sources/FixelText-Bold.ufo/glyphs/shhatailcyr.glif new file mode 100644 index 00000000..608a2ab8 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/shhatailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + h + com.fontlab.metricsRight + entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/shwe-cy.glif b/sources/FixelText-Bold.ufo/glyphs/shwe-cy.glif new file mode 100644 index 00000000..d662f7ff --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/shwe-cy.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + щ + com.fontlab.metricsRight + щ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/six.glif b/sources/FixelText-Bold.ufo/glyphs/six.glif new file mode 100644 index 00000000..43bf7fcb --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/six.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/six.osf.glif b/sources/FixelText-Bold.ufo/glyphs/six.osf.glif new file mode 100644 index 00000000..8bb569a6 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/six.osf.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + six + com.fontlab.metricsRight + six + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/six.tf.glif b/sources/FixelText-Bold.ufo/glyphs/six.tf.glif new file mode 100644 index 00000000..3596c716 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/six.tf.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/sjekomicyr.glif b/sources/FixelText-Bold.ufo/glyphs/sjekomicyr.glif new file mode 100644 index 00000000..7dd3bd2d --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/sjekomicyr.glif @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + e + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/slash.case.glif b/sources/FixelText-Bold.ufo/glyphs/slash.case.glif new file mode 100644 index 00000000..3fee00d7 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/slash.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + slash + com.fontlab.metricsRight + slash + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/slash.glif b/sources/FixelText-Bold.ufo/glyphs/slash.glif new file mode 100644 index 00000000..a2febffb --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/slash.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/softsign-cy.B_G_R_.glif b/sources/FixelText-Bold.ufo/glyphs/softsign-cy.B_G_R_.glif new file mode 100644 index 00000000..316527b1 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/softsign-cy.B_G_R_.glif @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + u + com.fontlab.metricsRight + ь-5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/softsign-cy.glif b/sources/FixelText-Bold.ufo/glyphs/softsign-cy.glif new file mode 100644 index 00000000..2fbeb6a6 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/softsign-cy.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/softsign-cy.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/softsign-cy.ss01.glif new file mode 100644 index 00000000..2a4bd64d --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/softsign-cy.ss01.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/space.glif b/sources/FixelText-Bold.ufo/glyphs/space.glif new file mode 100644 index 00000000..52c05256 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/space.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/spadewhite.glif b/sources/FixelText-Bold.ufo/glyphs/spadewhite.glif new file mode 100644 index 00000000..7941ee70 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/spadewhite.glif @@ -0,0 +1,453 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/sterling.glif b/sources/FixelText-Bold.ufo/glyphs/sterling.glif new file mode 100644 index 00000000..b2c5a5c6 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/sterling.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/summation.glif b/sources/FixelText-Bold.ufo/glyphs/summation.glif new file mode 100644 index 00000000..ed7ff5a6 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/summation.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/t.glif b/sources/FixelText-Bold.ufo/glyphs/t.glif new file mode 100644 index 00000000..e484571e --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/t.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/t.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/t.ss01.glif new file mode 100644 index 00000000..62e94b07 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/t.ss01.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/tbar.glif b/sources/FixelText-Bold.ufo/glyphs/tbar.glif new file mode 100644 index 00000000..c79f24b1 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/tbar.glif @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/tbar.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/tbar.ss01.glif new file mode 100644 index 00000000..298351bf --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/tbar.ss01.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/tcaron.glif b/sources/FixelText-Bold.ufo/glyphs/tcaron.glif new file mode 100644 index 00000000..2e5b0013 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/tcaron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.metricsLeft + t + com.fontlab.metricsRight + t + com.fontlab.recipe + t+caron.salt + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/tcaron.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/tcaron.ss01.glif new file mode 100644 index 00000000..ca1f8c8f --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/tcaron.ss01.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + com.fontlab.recipe + t.ss01+caron.salt + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/tcedilla.glif b/sources/FixelText-Bold.ufo/glyphs/tcedilla.glif new file mode 100644 index 00000000..f71a0f4b --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/tcedilla.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + t+cedilla + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/tcedilla.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/tcedilla.ss01.glif new file mode 100644 index 00000000..ba2509c8 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/tcedilla.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + t.ss01+cedilla + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/tche-cy.glif b/sources/FixelText-Bold.ufo/glyphs/tche-cy.glif new file mode 100644 index 00000000..789484cb --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/tche-cy.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + tetsecyr-20 + com.fontlab.metricsRight + ч + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/tcommaaccent.glif b/sources/FixelText-Bold.ufo/glyphs/tcommaaccent.glif new file mode 100644 index 00000000..74ad8809 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/tcommaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + t+commaaccentcomb + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/tcommaaccent.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/tcommaaccent.ss01.glif new file mode 100644 index 00000000..d82a33ff --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/tcommaaccent.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + t.ss01+commaaccentcomb + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/te-cy.B_G_R_.glif b/sources/FixelText-Bold.ufo/glyphs/te-cy.B_G_R_.glif new file mode 100644 index 00000000..e07b30e3 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/te-cy.B_G_R_.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + m + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/te-cy.S_R_B_.glif b/sources/FixelText-Bold.ufo/glyphs/te-cy.S_R_B_.glif new file mode 100644 index 00000000..be5c3843 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/te-cy.S_R_B_.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ш.BGR+macron-fwd + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/te-cy.glif b/sources/FixelText-Bold.ufo/glyphs/te-cy.glif new file mode 100644 index 00000000..729fde07 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/te-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/te-cy.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/te-cy.ss01.glif new file mode 100644 index 00000000..169f18be --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/te-cy.ss01.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/tenge.glif b/sources/FixelText-Bold.ufo/glyphs/tenge.glif new file mode 100644 index 00000000..d98e5cf6 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/tenge.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + T + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/tenmillionscomb-cy.glif b/sources/FixelText-Bold.ufo/glyphs/tenmillionscomb-cy.glif new file mode 100644 index 00000000..6000db5b --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/tenmillionscomb-cy.glif @@ -0,0 +1,109 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/tetailcyr.glif b/sources/FixelText-Bold.ufo/glyphs/tetailcyr.glif new file mode 100644 index 00000000..ccde7220 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/tetailcyr.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + т + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/tetsecyr.glif b/sources/FixelText-Bold.ufo/glyphs/tetsecyr.glif new file mode 100644 index 00000000..74e69b7f --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/tetsecyr.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + т + com.fontlab.metricsRight + ц + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/tewithmiddlehook-cy.glif b/sources/FixelText-Bold.ufo/glyphs/tewithmiddlehook-cy.glif new file mode 100644 index 00000000..8b6c92f3 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/tewithmiddlehook-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + т + com.fontlab.metricsRight + gehookcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/thorn.glif b/sources/FixelText-Bold.ufo/glyphs/thorn.glif new file mode 100644 index 00000000..5184dbbe --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/thorn.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + b + com.fontlab.metricsRight + b + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/thousandmillionscomb-cy.glif b/sources/FixelText-Bold.ufo/glyphs/thousandmillionscomb-cy.glif new file mode 100644 index 00000000..1e33d57d --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/thousandmillionscomb-cy.glif @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/thousandscyr.dnom.glif b/sources/FixelText-Bold.ufo/glyphs/thousandscyr.dnom.glif new file mode 100644 index 00000000..c0ae4074 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/thousandscyr.dnom.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + | + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/thousandscyr.glif b/sources/FixelText-Bold.ufo/glyphs/thousandscyr.glif new file mode 100644 index 00000000..b4c85690 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/thousandscyr.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + | + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/three.glif b/sources/FixelText-Bold.ufo/glyphs/three.glif new file mode 100644 index 00000000..e8455787 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/three.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/three.osf.glif b/sources/FixelText-Bold.ufo/glyphs/three.osf.glif new file mode 100644 index 00000000..96eb15e0 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/three.osf.glif @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + three + com.fontlab.metricsRight + three + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/three.tf.glif b/sources/FixelText-Bold.ufo/glyphs/three.tf.glif new file mode 100644 index 00000000..4b7a725d --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/three.tf.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/threequarters.glif b/sources/FixelText-Bold.ufo/glyphs/threequarters.glif new file mode 100644 index 00000000..205263c1 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/threequarters.glif @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/threesuperior.glif b/sources/FixelText-Bold.ufo/glyphs/threesuperior.glif new file mode 100644 index 00000000..7326209e --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/threesuperior.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/tilde.case.glif b/sources/FixelText-Bold.ufo/glyphs/tilde.case.glif new file mode 100644 index 00000000..e236f0fd --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/tilde.case.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/tilde.glif b/sources/FixelText-Bold.ufo/glyphs/tilde.glif new file mode 100644 index 00000000..5effa84f --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/tilde.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/titlocombcyr.glif b/sources/FixelText-Bold.ufo/glyphs/titlocombcyr.glif new file mode 100644 index 00000000..1a060596 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/titlocombcyr.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/tjekomicyr.glif b/sources/FixelText-Bold.ufo/glyphs/tjekomicyr.glif new file mode 100644 index 00000000..a028674d --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/tjekomicyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + т + com.fontlab.metricsRight + njekomicyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/trademark.glif b/sources/FixelText-Bold.ufo/glyphs/trademark.glif new file mode 100644 index 00000000..666c0b77 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/trademark.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/tse-cy.B_G_R_.glif b/sources/FixelText-Bold.ufo/glyphs/tse-cy.B_G_R_.glif new file mode 100644 index 00000000..abc30f76 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/tse-cy.B_G_R_.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + u + com.fontlab.metricsRight + ц + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/tse-cy.glif b/sources/FixelText-Bold.ufo/glyphs/tse-cy.glif new file mode 100644 index 00000000..6bd08ed0 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/tse-cy.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + д + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/tseR_eversed-cy.glif b/sources/FixelText-Bold.ufo/glyphs/tseR_eversed-cy.glif new file mode 100644 index 00000000..85c497b8 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/tseR_eversed-cy.glif @@ -0,0 +1,20 @@ + + + + + + + + + + com.fontlab.metricsLeft + + com.fontlab.metricsRight + н + com.fontlab.recipe + ц + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/tshecyr.glif b/sources/FixelText-Bold.ufo/glyphs/tshecyr.glif new file mode 100644 index 00000000..b006a9c5 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/tshecyr.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + hbar + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/tsse-cy.glif b/sources/FixelText-Bold.ufo/glyphs/tsse-cy.glif new file mode 100644 index 00000000..5ea15971 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/tsse-cy.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + т + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/tswe-cy.glif b/sources/FixelText-Bold.ufo/glyphs/tswe-cy.glif new file mode 100644 index 00000000..0fded0c7 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/tswe-cy.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ш + com.fontlab.metricsRight + shwe-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/twe-cy.glif b/sources/FixelText-Bold.ufo/glyphs/twe-cy.glif new file mode 100644 index 00000000..f258a6ad --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/twe-cy.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + т.ss01 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/two.glif b/sources/FixelText-Bold.ufo/glyphs/two.glif new file mode 100644 index 00000000..60850aaa --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/two.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/two.osf.glif b/sources/FixelText-Bold.ufo/glyphs/two.osf.glif new file mode 100644 index 00000000..25486bc0 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/two.osf.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + two + com.fontlab.metricsRight + two + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/two.tf.glif b/sources/FixelText-Bold.ufo/glyphs/two.tf.glif new file mode 100644 index 00000000..040001bb --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/two.tf.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/twosuperior.glif b/sources/FixelText-Bold.ufo/glyphs/twosuperior.glif new file mode 100644 index 00000000..72a64952 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/twosuperior.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/u-cy.accented.glif b/sources/FixelText-Bold.ufo/glyphs/u-cy.accented.glif new file mode 100644 index 00000000..a68a026f --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/u-cy.accented.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + y+acute + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/u-cy.glif b/sources/FixelText-Bold.ufo/glyphs/u-cy.glif new file mode 100644 index 00000000..41d0926b --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/u-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + y + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/u.glif b/sources/FixelText-Bold.ufo/glyphs/u.glif new file mode 100644 index 00000000..7462c73f --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/u.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |n + com.fontlab.metricsRight + l + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/uacute.glif b/sources/FixelText-Bold.ufo/glyphs/uacute.glif new file mode 100644 index 00000000..d244c6ae --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/uacute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+acute + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/uacutedblcyr.glif b/sources/FixelText-Bold.ufo/glyphs/uacutedblcyr.glif new file mode 100644 index 00000000..504992bf --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/uacutedblcyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u-cy+hungarumlaut + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/ubreve.glif b/sources/FixelText-Bold.ufo/glyphs/ubreve.glif new file mode 100644 index 00000000..bcab95db --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/ubreve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+breve + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/ucircumflex.glif b/sources/FixelText-Bold.ufo/glyphs/ucircumflex.glif new file mode 100644 index 00000000..3cc54791 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/ucircumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+circumflex + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/udieresis.glif b/sources/FixelText-Bold.ufo/glyphs/udieresis.glif new file mode 100644 index 00000000..df50bfd2 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/udieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+dieresis + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/udieresiscyr.glif b/sources/FixelText-Bold.ufo/glyphs/udieresiscyr.glif new file mode 100644 index 00000000..2571c17e --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/udieresiscyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/ugrave.glif b/sources/FixelText-Bold.ufo/glyphs/ugrave.glif new file mode 100644 index 00000000..bb7327bc --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/ugrave.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+grave + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/uhungarumlaut.glif b/sources/FixelText-Bold.ufo/glyphs/uhungarumlaut.glif new file mode 100644 index 00000000..1df8b4e2 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/uhungarumlaut.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+hungarumlaut + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/ukM_onograph-cy.glif b/sources/FixelText-Bold.ufo/glyphs/ukM_onograph-cy.glif new file mode 100644 index 00000000..99ab8727 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/ukM_onograph-cy.glif @@ -0,0 +1,78 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + y-30 + com.fontlab.metricsRight + y-20 + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/ukcyr.glif b/sources/FixelText-Bold.ufo/glyphs/ukcyr.glif new file mode 100644 index 00000000..9befcbac --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/ukcyr.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + y + com.fontlab.recipe + uni1C82_у + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/umacron.glif b/sources/FixelText-Bold.ufo/glyphs/umacron.glif new file mode 100644 index 00000000..65e356bc --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/umacron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+macron + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/umacroncyr.glif b/sources/FixelText-Bold.ufo/glyphs/umacroncyr.glif new file mode 100644 index 00000000..ee54755f --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/umacroncyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u-cy+macron + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/underscore.glif b/sources/FixelText-Bold.ufo/glyphs/underscore.glif new file mode 100644 index 00000000..64ee7e70 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/underscore.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/uni1C_80.glif b/sources/FixelText-Bold.ufo/glyphs/uni1C_80.glif new file mode 100644 index 00000000..253a8ab5 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/uni1C_80.glif @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + б + com.fontlab.metricsRight + o-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/uni1C_81.glif b/sources/FixelText-Bold.ufo/glyphs/uni1C_81.glif new file mode 100644 index 00000000..bb9919be --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/uni1C_81.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + д-10 + com.fontlab.metricsRight + | + com.fontlab.recipe + д + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/uni1C_82.glif b/sources/FixelText-Bold.ufo/glyphs/uni1C_82.glif new file mode 100644 index 00000000..9bdc24a9 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/uni1C_82.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/uni1C_83.glif b/sources/FixelText-Bold.ufo/glyphs/uni1C_83.glif new file mode 100644 index 00000000..ea661072 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/uni1C_83.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + c + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/uni1C_84.glif b/sources/FixelText-Bold.ufo/glyphs/uni1C_84.glif new file mode 100644 index 00000000..2ef738b5 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/uni1C_84.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/uni1C_85.glif b/sources/FixelText-Bold.ufo/glyphs/uni1C_85.glif new file mode 100644 index 00000000..3a75abf2 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/uni1C_85.glif @@ -0,0 +1,20 @@ + + + + + + + + + + com.fontlab.metricsLeft + ш + com.fontlab.metricsRight + l() + com.fontlab.recipe + ш + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/uni1C_86.glif b/sources/FixelText-Bold.ufo/glyphs/uni1C_86.glif new file mode 100644 index 00000000..8aa6df7e --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/uni1C_86.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + uni1C84 + com.fontlab.metricsRight + ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/uni1C_87.glif b/sources/FixelText-Bold.ufo/glyphs/uni1C_87.glif new file mode 100644 index 00000000..fd0cf100 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/uni1C_87.glif @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + uni1C84-40 + com.fontlab.metricsRight + ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/uni1C_88.glif b/sources/FixelText-Bold.ufo/glyphs/uni1C_88.glif new file mode 100644 index 00000000..ed307aec --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/uni1C_88.glif @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/uni1E_B_C_.glif b/sources/FixelText-Bold.ufo/glyphs/uni1E_B_C_.glif new file mode 100644 index 00000000..420a6be4 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/uni1E_B_C_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+tilde.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/uni1E_B_D_.glif b/sources/FixelText-Bold.ufo/glyphs/uni1E_B_D_.glif new file mode 100644 index 00000000..c12d08bc --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/uni1E_B_D_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+tilde + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/uni2010.glif b/sources/FixelText-Bold.ufo/glyphs/uni2010.glif new file mode 100644 index 00000000..10fc5ace --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/uni2010.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + hyphen + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/uni2D_E_E_.case.glif b/sources/FixelText-Bold.ufo/glyphs/uni2D_E_E_.case.glif new file mode 100644 index 00000000..fc2ae57a --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/uni2D_E_E_.case.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/uni2D_E_E_.glif b/sources/FixelText-Bold.ufo/glyphs/uni2D_E_E_.glif new file mode 100644 index 00000000..b1a46e31 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/uni2D_E_E_.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/uniE_000.alt.glif b/sources/FixelText-Bold.ufo/glyphs/uniE_000.alt.glif new file mode 100644 index 00000000..5f8f364c --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/uniE_000.alt.glif @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + ї_ї + public.markColor + 0.6,0.997,1,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/uniE_000.glif b/sources/FixelText-Bold.ufo/glyphs/uniE_000.glif new file mode 100644 index 00000000..b13bf1b5 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/uniE_000.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + ї_ї + public.markColor + 0.6,0.997,1,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/uniE_01A_.glif b/sources/FixelText-Bold.ufo/glyphs/uniE_01A_.glif new file mode 100644 index 00000000..8ed16b49 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/uniE_01A_.glif @@ -0,0 +1,115 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/uniF_43A_.glif b/sources/FixelText-Bold.ufo/glyphs/uniF_43A_.glif new file mode 100644 index 00000000..cf8e486c --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/uniF_43A_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/uniF_43B_.glif b/sources/FixelText-Bold.ufo/glyphs/uniF_43B_.glif new file mode 100644 index 00000000..0836c13f --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/uniF_43B_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ustraightcyr+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/uniF_45D_.glif b/sources/FixelText-Bold.ufo/glyphs/uniF_45D_.glif new file mode 100644 index 00000000..7e5bc32a --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/uniF_45D_.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Є+acute.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/uniF_45E_.glif b/sources/FixelText-Bold.ufo/glyphs/uniF_45E_.glif new file mode 100644 index 00000000..1466bc81 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/uniF_45E_.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Iacute + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/uniF_45F_.glif b/sources/FixelText-Bold.ufo/glyphs/uniF_45F_.glif new file mode 100644 index 00000000..7441efa5 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/uniF_45F_.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + com.fontlab.recipe + I+dieresiscase.alt+acute.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/uniF_475.glif b/sources/FixelText-Bold.ufo/glyphs/uniF_475.glif new file mode 100644 index 00000000..b374b69c --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/uniF_475.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + є+acute + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/uniF_476.glif b/sources/FixelText-Bold.ufo/glyphs/uniF_476.glif new file mode 100644 index 00000000..19924a16 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/uniF_476.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + iacute + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/uniF_477.glif b/sources/FixelText-Bold.ufo/glyphs/uniF_477.glif new file mode 100644 index 00000000..2f3b9ba1 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/uniF_477.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + dotlessi+dieresisacute + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/uniF_478.glif b/sources/FixelText-Bold.ufo/glyphs/uniF_478.glif new file mode 100644 index 00000000..528562bf --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/uniF_478.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Yat+acute.case + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/uniF_479.glif b/sources/FixelText-Bold.ufo/glyphs/uniF_479.glif new file mode 100644 index 00000000..dcab1514 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/uniF_479.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + yat+acute + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/uniF_498.glif b/sources/FixelText-Bold.ufo/glyphs/uniF_498.glif new file mode 100644 index 00000000..a037644b --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/uniF_498.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ю+dieresis.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/uniF_499.glif b/sources/FixelText-Bold.ufo/glyphs/uniF_499.glif new file mode 100644 index 00000000..c3939bc0 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/uniF_499.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ю+dieresis + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/uniF_49A_.glif b/sources/FixelText-Bold.ufo/glyphs/uniF_49A_.glif new file mode 100644 index 00000000..0c54cc54 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/uniF_49A_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Obarcyr+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/uniF_49B_.glif b/sources/FixelText-Bold.ufo/glyphs/uniF_49B_.glif new file mode 100644 index 00000000..70109a86 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/uniF_49B_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + obarcyr+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/uniF_49C_.glif b/sources/FixelText-Bold.ufo/glyphs/uniF_49C_.glif new file mode 100644 index 00000000..5ea607b3 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/uniF_49C_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Schwacyr+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/uniF_49D_.glif b/sources/FixelText-Bold.ufo/glyphs/uniF_49D_.glif new file mode 100644 index 00000000..be5b807e --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/uniF_49D_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + schwacyr+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/uniF_49E_.glif b/sources/FixelText-Bold.ufo/glyphs/uniF_49E_.glif new file mode 100644 index 00000000..921e2d7f --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/uniF_49E_.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Yatcyr + com.fontlab.metricsRight + Tshecyr + com.fontlab.recipe + Shhacyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/uniF_49F_.glif b/sources/FixelText-Bold.ufo/glyphs/uniF_49F_.glif new file mode 100644 index 00000000..32bbafcd --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/uniF_49F_.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + hbar + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/uniF_4C_6.glif b/sources/FixelText-Bold.ufo/glyphs/uniF_4C_6.glif new file mode 100644 index 00000000..2536989f --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/uniF_4C_6.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ч + com.fontlab.metricsRight + Ч + com.fontlab.recipe + Ч + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/uniF_4C_7.glif b/sources/FixelText-Bold.ufo/glyphs/uniF_4C_7.glif new file mode 100644 index 00000000..6ceec972 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/uniF_4C_7.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ч + com.fontlab.metricsRight + ч + com.fontlab.recipe + ч+enhookcyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/uniF_4C_C_.glif b/sources/FixelText-Bold.ufo/glyphs/uniF_4C_C_.glif new file mode 100644 index 00000000..8ea1d16c --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/uniF_4C_C_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + У+acute.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/uniF_4C_D_.glif b/sources/FixelText-Bold.ufo/glyphs/uniF_4C_D_.glif new file mode 100644 index 00000000..3fd374d4 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/uniF_4C_D_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + y+acute + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/uniF_4D_2.glif b/sources/FixelText-Bold.ufo/glyphs/uniF_4D_2.glif new file mode 100644 index 00000000..4c65ddc6 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/uniF_4D_2.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+grave.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/uniF_4D_3.glif b/sources/FixelText-Bold.ufo/glyphs/uniF_4D_3.glif new file mode 100644 index 00000000..accadfb5 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/uniF_4D_3.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+grave + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/uniF_4D_4.glif b/sources/FixelText-Bold.ufo/glyphs/uniF_4D_4.glif new file mode 100644 index 00000000..5f65b4f7 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/uniF_4D_4.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + P+caron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/uniF_4D_5.glif b/sources/FixelText-Bold.ufo/glyphs/uniF_4D_5.glif new file mode 100644 index 00000000..28a8e28e --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/uniF_4D_5.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + p+caron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/uniF_4D_6.glif b/sources/FixelText-Bold.ufo/glyphs/uniF_4D_6.glif new file mode 100644 index 00000000..3e0f6b5b --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/uniF_4D_6.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Э+dotaccent.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/uniF_4D_7.glif b/sources/FixelText-Bold.ufo/glyphs/uniF_4D_7.glif new file mode 100644 index 00000000..4975d0d2 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/uniF_4D_7.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + э+dotaccent + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/uniF_4D_8.glif b/sources/FixelText-Bold.ufo/glyphs/uniF_4D_8.glif new file mode 100644 index 00000000..95b2248c --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/uniF_4D_8.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Я+dieresis.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/uniF_4D_9.glif b/sources/FixelText-Bold.ufo/glyphs/uniF_4D_9.glif new file mode 100644 index 00000000..3a7f18b5 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/uniF_4D_9.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + я+dieresis + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/uniF_50E_.glif b/sources/FixelText-Bold.ufo/glyphs/uniF_50E_.glif new file mode 100644 index 00000000..2adbf8c3 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/uniF_50E_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/uniF_50F_.glif b/sources/FixelText-Bold.ufo/glyphs/uniF_50F_.glif new file mode 100644 index 00000000..2e29eca1 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/uniF_50F_.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/uniF_510.glif b/sources/FixelText-Bold.ufo/glyphs/uniF_510.glif new file mode 100644 index 00000000..7bb695d2 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/uniF_510.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/uniF_511.glif b/sources/FixelText-Bold.ufo/glyphs/uniF_511.glif new file mode 100644 index 00000000..76023c2e --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/uniF_511.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/uniF_512.glif b/sources/FixelText-Bold.ufo/glyphs/uniF_512.glif new file mode 100644 index 00000000..fef71443 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/uniF_512.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + com.fontlab.metricsLeft + E + com.fontlab.metricsRight + E + com.fontlab.recipe + E+dieresis.case+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/uniF_513.glif b/sources/FixelText-Bold.ufo/glyphs/uniF_513.glif new file mode 100644 index 00000000..b5166b82 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/uniF_513.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.recipe + e+dieresis+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/uniF_514.glif b/sources/FixelText-Bold.ufo/glyphs/uniF_514.glif new file mode 100644 index 00000000..7ac7fc62 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/uniF_514.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + com.fontlab.metricsLeft + E + com.fontlab.metricsRight + E + com.fontlab.recipe + E+dieresis.case+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/uniF_515.glif b/sources/FixelText-Bold.ufo/glyphs/uniF_515.glif new file mode 100644 index 00000000..dfbf3361 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/uniF_515.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.recipe + e+dieresis+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/uniF_516.glif b/sources/FixelText-Bold.ufo/glyphs/uniF_516.glif new file mode 100644 index 00000000..8b053b82 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/uniF_516.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + З+caron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/uniF_517.glif b/sources/FixelText-Bold.ufo/glyphs/uniF_517.glif new file mode 100644 index 00000000..895867f7 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/uniF_517.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + з+caron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/uniF_518.glif b/sources/FixelText-Bold.ufo/glyphs/uniF_518.glif new file mode 100644 index 00000000..67ccad31 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/uniF_518.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/uniF_519.glif b/sources/FixelText-Bold.ufo/glyphs/uniF_519.glif new file mode 100644 index 00000000..55c73dde --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/uniF_519.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/uniF_51A_.glif b/sources/FixelText-Bold.ufo/glyphs/uniF_51A_.glif new file mode 100644 index 00000000..a1d25cb9 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/uniF_51A_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/uniF_51B_.glif b/sources/FixelText-Bold.ufo/glyphs/uniF_51B_.glif new file mode 100644 index 00000000..c8363bd5 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/uniF_51B_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/uniF_51C_.glif b/sources/FixelText-Bold.ufo/glyphs/uniF_51C_.glif new file mode 100644 index 00000000..4473fcf7 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/uniF_51C_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Obarcyr+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/uniF_51D_.glif b/sources/FixelText-Bold.ufo/glyphs/uniF_51D_.glif new file mode 100644 index 00000000..b83e22c2 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/uniF_51D_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + obarcyr+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/uniF_51E_.glif b/sources/FixelText-Bold.ufo/glyphs/uniF_51E_.glif new file mode 100644 index 00000000..b9027906 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/uniF_51E_.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + com.fontlab.recipe + Obarcyr+dieresis.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/uniF_51F_.glif b/sources/FixelText-Bold.ufo/glyphs/uniF_51F_.glif new file mode 100644 index 00000000..c8e2ee65 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/uniF_51F_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.recipe + obarcyr+dieresis+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/uniF_521.glif b/sources/FixelText-Bold.ufo/glyphs/uniF_521.glif new file mode 100644 index 00000000..b2bae629 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/uniF_521.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ы+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/uniF_522.glif b/sources/FixelText-Bold.ufo/glyphs/uniF_522.glif new file mode 100644 index 00000000..e7dd40c5 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/uniF_522.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Э+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/uniF_523.glif b/sources/FixelText-Bold.ufo/glyphs/uniF_523.glif new file mode 100644 index 00000000..0e0b7ebb --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/uniF_523.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + э+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/uniF_524.glif b/sources/FixelText-Bold.ufo/glyphs/uniF_524.glif new file mode 100644 index 00000000..39160d83 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/uniF_524.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Э+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/uniF_525.glif b/sources/FixelText-Bold.ufo/glyphs/uniF_525.glif new file mode 100644 index 00000000..80343f70 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/uniF_525.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + э+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/uniF_526.glif b/sources/FixelText-Bold.ufo/glyphs/uniF_526.glif new file mode 100644 index 00000000..803bfd21 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/uniF_526.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Є+dieresis.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/uniF_527.glif b/sources/FixelText-Bold.ufo/glyphs/uniF_527.glif new file mode 100644 index 00000000..a5a45213 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/uniF_527.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + є+dieresis + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/uniF_528.glif b/sources/FixelText-Bold.ufo/glyphs/uniF_528.glif new file mode 100644 index 00000000..aff88ff5 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/uniF_528.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Я+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/uniF_529.glif b/sources/FixelText-Bold.ufo/glyphs/uniF_529.glif new file mode 100644 index 00000000..771d8933 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/uniF_529.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + я+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/uniF_52A_.glif b/sources/FixelText-Bold.ufo/glyphs/uniF_52A_.glif new file mode 100644 index 00000000..f83bc616 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/uniF_52A_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Я+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/uniF_52B_.glif b/sources/FixelText-Bold.ufo/glyphs/uniF_52B_.glif new file mode 100644 index 00000000..a3c2098c --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/uniF_52B_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + я+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/uniF_52C_.glif b/sources/FixelText-Bold.ufo/glyphs/uniF_52C_.glif new file mode 100644 index 00000000..b101af29 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/uniF_52C_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ю+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/uniF_52D_.glif b/sources/FixelText-Bold.ufo/glyphs/uniF_52D_.glif new file mode 100644 index 00000000..847bb214 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/uniF_52D_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ю+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/uniF_52E_.glif b/sources/FixelText-Bold.ufo/glyphs/uniF_52E_.glif new file mode 100644 index 00000000..4313008e --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/uniF_52E_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ю+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/uniF_52F_.glif b/sources/FixelText-Bold.ufo/glyphs/uniF_52F_.glif new file mode 100644 index 00000000..1d3d12a9 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/uniF_52F_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ю+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/uniF_532.glif b/sources/FixelText-Bold.ufo/glyphs/uniF_532.glif new file mode 100644 index 00000000..68569a18 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/uniF_532.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Й + com.fontlab.metricsRight + Й + com.fontlab.recipe + Й + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/uniF_533.glif b/sources/FixelText-Bold.ufo/glyphs/uniF_533.glif new file mode 100644 index 00000000..65061cce --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/uniF_533.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + l() + com.fontlab.recipe + й+enhookcyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/uniF_536.glif b/sources/FixelText-Bold.ufo/glyphs/uniF_536.glif new file mode 100644 index 00000000..c709a424 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/uniF_536.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ы+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/uniF_537.glif b/sources/FixelText-Bold.ufo/glyphs/uniF_537.glif new file mode 100644 index 00000000..9b274f6b --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/uniF_537.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ы+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/uniF_538.glif b/sources/FixelText-Bold.ufo/glyphs/uniF_538.glif new file mode 100644 index 00000000..227fd9a9 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/uniF_538.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Reversedzecyr+dieresis.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/uniF_539.glif b/sources/FixelText-Bold.ufo/glyphs/uniF_539.glif new file mode 100644 index 00000000..d606ef9a --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/uniF_539.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + reversedzecyr+dieresis + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/uniF_830.glif b/sources/FixelText-Bold.ufo/glyphs/uniF_830.glif new file mode 100644 index 00000000..6baef1bb --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/uniF_830.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+circumflex.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/uniF_831.glif b/sources/FixelText-Bold.ufo/glyphs/uniF_831.glif new file mode 100644 index 00000000..fd492f65 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/uniF_831.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+circumflex + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/uniF_833.glif b/sources/FixelText-Bold.ufo/glyphs/uniF_833.glif new file mode 100644 index 00000000..3909bb50 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/uniF_833.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+circumflex.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/uniF_834.glif b/sources/FixelText-Bold.ufo/glyphs/uniF_834.glif new file mode 100644 index 00000000..de183be8 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/uniF_834.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+circumflex + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/uniF_839.glif b/sources/FixelText-Bold.ufo/glyphs/uniF_839.glif new file mode 100644 index 00000000..c8ed4109 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/uniF_839.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+circumflex.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/uniF_83A_.glif b/sources/FixelText-Bold.ufo/glyphs/uniF_83A_.glif new file mode 100644 index 00000000..d0776008 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/uniF_83A_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+circumflex + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/uniF_86F_.glif b/sources/FixelText-Bold.ufo/glyphs/uniF_86F_.glif new file mode 100644 index 00000000..01eeb0e8 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/uniF_86F_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + K+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/uniF_870.glif b/sources/FixelText-Bold.ufo/glyphs/uniF_870.glif new file mode 100644 index 00000000..8d9bd422 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/uniF_870.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + к+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/uniF_872.glif b/sources/FixelText-Bold.ufo/glyphs/uniF_872.glif new file mode 100644 index 00000000..7ea3696e --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/uniF_872.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Л+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/uniF_873.glif b/sources/FixelText-Bold.ufo/glyphs/uniF_873.glif new file mode 100644 index 00000000..8b176cd9 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/uniF_873.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + л+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/uniF_875.glif b/sources/FixelText-Bold.ufo/glyphs/uniF_875.glif new file mode 100644 index 00000000..3700467d --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/uniF_875.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/uniF_876.glif b/sources/FixelText-Bold.ufo/glyphs/uniF_876.glif new file mode 100644 index 00000000..3f154a4b --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/uniF_876.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/uniF_878.glif b/sources/FixelText-Bold.ufo/glyphs/uniF_878.glif new file mode 100644 index 00000000..86e93940 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/uniF_878.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + X+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/uniF_879.glif b/sources/FixelText-Bold.ufo/glyphs/uniF_879.glif new file mode 100644 index 00000000..0c27f1e9 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/uniF_879.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + x+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/uniF_87B_.glif b/sources/FixelText-Bold.ufo/glyphs/uniF_87B_.glif new file mode 100644 index 00000000..712eb32a --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/uniF_87B_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ц+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/uniF_87C_.glif b/sources/FixelText-Bold.ufo/glyphs/uniF_87C_.glif new file mode 100644 index 00000000..8c0f5057 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/uniF_87C_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ц+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/uniF_87E_.glif b/sources/FixelText-Bold.ufo/glyphs/uniF_87E_.glif new file mode 100644 index 00000000..60a53a38 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/uniF_87E_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ч+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/uniF_87F_.glif b/sources/FixelText-Bold.ufo/glyphs/uniF_87F_.glif new file mode 100644 index 00000000..f1a6d02e --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/uniF_87F_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ч+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/uogonek.glif b/sources/FixelText-Bold.ufo/glyphs/uogonek.glif new file mode 100644 index 00000000..5a266592 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/uogonek.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+ogonek + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/uring.glif b/sources/FixelText-Bold.ufo/glyphs/uring.glif new file mode 100644 index 00000000..74672739 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/uring.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+ring + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/ushort-cy.glif b/sources/FixelText-Bold.ufo/glyphs/ushort-cy.glif new file mode 100644 index 00000000..6c413d33 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/ushort-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + uni0443+breve + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/ustraightcyr.glif b/sources/FixelText-Bold.ufo/glyphs/ustraightcyr.glif new file mode 100644 index 00000000..ea86f904 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/ustraightcyr.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + v + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/ustraightstrokecyr.glif b/sources/FixelText-Bold.ufo/glyphs/ustraightstrokecyr.glif new file mode 100644 index 00000000..9bb4fcc0 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/ustraightstrokecyr.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/utilde.glif b/sources/FixelText-Bold.ufo/glyphs/utilde.glif new file mode 100644 index 00000000..3bff1a87 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/utilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+tilde + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/v.glif b/sources/FixelText-Bold.ufo/glyphs/v.glif new file mode 100644 index 00000000..1b72fa83 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/v.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/ve-cy.B_G_R_.glif b/sources/FixelText-Bold.ufo/glyphs/ve-cy.B_G_R_.glif new file mode 100644 index 00000000..349c7111 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/ve-cy.B_G_R_.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + b-5 + com.fontlab.metricsRight + b + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/ve-cy.glif b/sources/FixelText-Bold.ufo/glyphs/ve-cy.glif new file mode 100644 index 00000000..2dfb6966 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/ve-cy.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/ve-cy.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/ve-cy.ss01.glif new file mode 100644 index 00000000..178e5ecf --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/ve-cy.ss01.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/virgo.glif b/sources/FixelText-Bold.ufo/glyphs/virgo.glif new file mode 100644 index 00000000..9fc5d3a3 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/virgo.glif @@ -0,0 +1,224 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =55 + com.fontlab.metricsRight + =35 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/vzmetcomb-cy.glif b/sources/FixelText-Bold.ufo/glyphs/vzmetcomb-cy.glif new file mode 100644 index 00000000..75a780b2 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/vzmetcomb-cy.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/w.glif b/sources/FixelText-Bold.ufo/glyphs/w.glif new file mode 100644 index 00000000..a4901d07 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/w.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/wacute.glif b/sources/FixelText-Bold.ufo/glyphs/wacute.glif new file mode 100644 index 00000000..48fc49dd --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/wacute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + w+acute + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/wcircumflex.glif b/sources/FixelText-Bold.ufo/glyphs/wcircumflex.glif new file mode 100644 index 00000000..1b1d7daa --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/wcircumflex.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + w+circumflex + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/wdieresis.glif b/sources/FixelText-Bold.ufo/glyphs/wdieresis.glif new file mode 100644 index 00000000..1592e127 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/wdieresis.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + w+dieresis + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/wecyr.glif b/sources/FixelText-Bold.ufo/glyphs/wecyr.glif new file mode 100644 index 00000000..0bd1ac00 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/wecyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + w + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/wgrave.glif b/sources/FixelText-Bold.ufo/glyphs/wgrave.glif new file mode 100644 index 00000000..e884b5ed --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/wgrave.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + w+grave + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/x.glif b/sources/FixelText-Bold.ufo/glyphs/x.glif new file mode 100644 index 00000000..ceb6f555 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/x.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/xatailcyr.glif b/sources/FixelText-Bold.ufo/glyphs/xatailcyr.glif new file mode 100644 index 00000000..389ff863 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/xatailcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + x + com.fontlab.metricsRight + zhetailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/y.glif b/sources/FixelText-Bold.ufo/glyphs/y.glif new file mode 100644 index 00000000..bca48db0 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/y.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/yacute.glif b/sources/FixelText-Bold.ufo/glyphs/yacute.glif new file mode 100644 index 00000000..a1ff679d --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/yacute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + y+acute + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/yaecyr.glif b/sources/FixelText-Bold.ufo/glyphs/yaecyr.glif new file mode 100644 index 00000000..a90c6bfb --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/yaecyr.glif @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + я + com.fontlab.metricsRight + e + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/yatI_otified-cy.glif b/sources/FixelText-Bold.ufo/glyphs/yatI_otified-cy.glif new file mode 100644 index 00000000..6ccbb463 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/yatI_otified-cy.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + com.fontlab.metricsRight + yatcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/yatcyr.B_G_R_.glif b/sources/FixelText-Bold.ufo/glyphs/yatcyr.B_G_R_.glif new file mode 100644 index 00000000..8565dec8 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/yatcyr.B_G_R_.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hardsign-cy + com.fontlab.metricsRight + ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/yatcyr.glif b/sources/FixelText-Bold.ufo/glyphs/yatcyr.glif new file mode 100644 index 00000000..bf562448 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/yatcyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hardsign-cy + com.fontlab.metricsRight + ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/ycircumflex.glif b/sources/FixelText-Bold.ufo/glyphs/ycircumflex.glif new file mode 100644 index 00000000..1ab71f77 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/ycircumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + y+circumflex + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/ydieresis.glif b/sources/FixelText-Bold.ufo/glyphs/ydieresis.glif new file mode 100644 index 00000000..0b74c0e8 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/ydieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + y+dieresis + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/yen.glif b/sources/FixelText-Bold.ufo/glyphs/yen.glif new file mode 100644 index 00000000..36752780 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/yen.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/yen.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/yen.ss01.glif new file mode 100644 index 00000000..8ca75cf0 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/yen.ss01.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/yerN_eutral-cy.glif b/sources/FixelText-Bold.ufo/glyphs/yerN_eutral-cy.glif new file mode 100644 index 00000000..20654a63 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/yerN_eutral-cy.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hardsign-cy + com.fontlab.metricsRight + ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/yeru-cy.accented.glif b/sources/FixelText-Bold.ufo/glyphs/yeru-cy.accented.glif new file mode 100644 index 00000000..b7512f51 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/yeru-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ы+acute + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/yeru-cy.glif b/sources/FixelText-Bold.ufo/glyphs/yeru-cy.glif new file mode 100644 index 00000000..131ffa96 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/yeru-cy.glif @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/yeru-cy.ss01.glif b/sources/FixelText-Bold.ufo/glyphs/yeru-cy.ss01.glif new file mode 100644 index 00000000..e0a9513e --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/yeru-cy.ss01.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/yeruB_ackyer-cy.glif b/sources/FixelText-Bold.ufo/glyphs/yeruB_ackyer-cy.glif new file mode 100644 index 00000000..40b77b95 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/yeruB_ackyer-cy.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hardsign-cy + com.fontlab.metricsRight + dotlessi + com.fontlab.recipe + hardsign-cy_dotlessi + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/yi-cy.alt.glif b/sources/FixelText-Bold.ufo/glyphs/yi-cy.alt.glif new file mode 100644 index 00000000..3ca6ffcc --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/yi-cy.alt.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.recipe + idieresis + public.markColor + 0.6,0.997,1,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/yi-cy.glif b/sources/FixelText-Bold.ufo/glyphs/yi-cy.glif new file mode 100644 index 00000000..7b3b70d4 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/yi-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + idieresis + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/ylongdieresiscyr.glif b/sources/FixelText-Bold.ufo/glyphs/ylongdieresiscyr.glif new file mode 100644 index 00000000..bafcf6be --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/ylongdieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + yeru-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/yn-cy.glif b/sources/FixelText-Bold.ufo/glyphs/yn-cy.glif new file mode 100644 index 00000000..cebc4bfe --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/yn-cy.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |izhitsacyr + com.fontlab.metricsRight + |izhitsacyr + com.fontlab.recipe + izhitsa + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/yuR_eversed-cy.glif b/sources/FixelText-Bold.ufo/glyphs/yuR_eversed-cy.glif new file mode 100644 index 00000000..371afb20 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/yuR_eversed-cy.glif @@ -0,0 +1,20 @@ + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l + com.fontlab.recipe + ю + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/yusB_lended-cy.glif b/sources/FixelText-Bold.ufo/glyphs/yusB_lended-cy.glif new file mode 100644 index 00000000..24ea8666 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/yusB_lended-cy.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + yusbigcyr + com.fontlab.metricsRight + yusbigcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/yusC_losedlittle-cy.glif b/sources/FixelText-Bold.ufo/glyphs/yusC_losedlittle-cy.glif new file mode 100644 index 00000000..6138829b --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/yusC_losedlittle-cy.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + yuslittlecyr + com.fontlab.metricsRight + yuslittlecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/yusbigcyr.glif b/sources/FixelText-Bold.ufo/glyphs/yusbigcyr.glif new file mode 100644 index 00000000..57838842 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/yusbigcyr.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/yusbigiotifiedcyr.B_G_R_.glif b/sources/FixelText-Bold.ufo/glyphs/yusbigiotifiedcyr.B_G_R_.glif new file mode 100644 index 00000000..e5fa1edf --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/yusbigiotifiedcyr.B_G_R_.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + com.fontlab.metricsRight + ж + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/yusbigiotifiedcyr.glif b/sources/FixelText-Bold.ufo/glyphs/yusbigiotifiedcyr.glif new file mode 100644 index 00000000..5b735826 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/yusbigiotifiedcyr.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + ж + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/yusiotifiedC_losedL_ittle-cy.glif b/sources/FixelText-Bold.ufo/glyphs/yusiotifiedC_losedL_ittle-cy.glif new file mode 100644 index 00000000..8ae73588 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/yusiotifiedC_losedL_ittle-cy.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + yusClosedlittle-cy + com.fontlab.recipe + yusClosedlittle-cy+н + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/yuslittlecyr.glif b/sources/FixelText-Bold.ufo/glyphs/yuslittlecyr.glif new file mode 100644 index 00000000..1916891b --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/yuslittlecyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + v-5 + com.fontlab.metricsRight + v-5 + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/yuslittleiotifiedcyr.glif b/sources/FixelText-Bold.ufo/glyphs/yuslittleiotifiedcyr.glif new file mode 100644 index 00000000..ca6477c8 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/yuslittleiotifiedcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + v-10 + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/z.glif b/sources/FixelText-Bold.ufo/glyphs/z.glif new file mode 100644 index 00000000..995896fb --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/z.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/zacute.glif b/sources/FixelText-Bold.ufo/glyphs/zacute.glif new file mode 100644 index 00000000..6968cbfb --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/zacute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + z+acute + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/zcaron.glif b/sources/FixelText-Bold.ufo/glyphs/zcaron.glif new file mode 100644 index 00000000..2a23dcbe --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/zcaron.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + z+caron + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/zdotaccent.glif b/sources/FixelText-Bold.ufo/glyphs/zdotaccent.glif new file mode 100644 index 00000000..501cc4fd --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/zdotaccent.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + z+dotaccent + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/ze-cy.B_G_R_.glif b/sources/FixelText-Bold.ufo/glyphs/ze-cy.B_G_R_.glif new file mode 100644 index 00000000..ed1d13b3 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/ze-cy.B_G_R_.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |c-12 + com.fontlab.metricsRight + в-5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/ze-cy.glif b/sources/FixelText-Bold.ufo/glyphs/ze-cy.glif new file mode 100644 index 00000000..1014656d --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/ze-cy.glif @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |c-5 + com.fontlab.metricsRight + в + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/zedieresiscyr.glif b/sources/FixelText-Bold.ufo/glyphs/zedieresiscyr.glif new file mode 100644 index 00000000..53f5a3da --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/zedieresiscyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ze-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/zemlya-cy.glif b/sources/FixelText-Bold.ufo/glyphs/zemlya-cy.glif new file mode 100644 index 00000000..e556a41c --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/zemlya-cy.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + z-10 + com.fontlab.metricsRight + z + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/zero.glif b/sources/FixelText-Bold.ufo/glyphs/zero.glif new file mode 100644 index 00000000..5fb16844 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/zero.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/zero.osf.glif b/sources/FixelText-Bold.ufo/glyphs/zero.osf.glif new file mode 100644 index 00000000..09c446ec --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/zero.osf.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + zero + com.fontlab.metricsRight + zero + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/zero.tf.glif b/sources/FixelText-Bold.ufo/glyphs/zero.tf.glif new file mode 100644 index 00000000..7db8119f --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/zero.tf.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/zetailcyr.B_S_H_.glif b/sources/FixelText-Bold.ufo/glyphs/zetailcyr.B_S_H_.glif new file mode 100644 index 00000000..7f9a58f1 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/zetailcyr.B_S_H_.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + з + com.fontlab.metricsRight + з + com.fontlab.recipe + з + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/zetailcyr.glif b/sources/FixelText-Bold.ufo/glyphs/zetailcyr.glif new file mode 100644 index 00000000..beb90443 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/zetailcyr.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + з + com.fontlab.metricsRight + з + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/zhe-cy.B_G_R_.glif b/sources/FixelText-Bold.ufo/glyphs/zhe-cy.B_G_R_.glif new file mode 100644 index 00000000..318cb5e6 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/zhe-cy.B_G_R_.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |k + com.fontlab.metricsRight + k + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/zhe-cy.glif b/sources/FixelText-Bold.ufo/glyphs/zhe-cy.glif new file mode 100644 index 00000000..96c3095d --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/zhe-cy.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |k + com.fontlab.metricsRight + k + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/zhebrevecyr.glif b/sources/FixelText-Bold.ufo/glyphs/zhebrevecyr.glif new file mode 100644 index 00000000..f7e5af7d --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/zhebrevecyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + zhe-cy+breve + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/zhedieresiscyr.glif b/sources/FixelText-Bold.ufo/glyphs/zhedieresiscyr.glif new file mode 100644 index 00000000..af890928 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/zhedieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + zhe-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/zhetailcyr.glif b/sources/FixelText-Bold.ufo/glyphs/zhetailcyr.glif new file mode 100644 index 00000000..6aa51288 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/zhetailcyr.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ж + com.fontlab.metricsRight + katailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/zhwe-cy.glif b/sources/FixelText-Bold.ufo/glyphs/zhwe-cy.glif new file mode 100644 index 00000000..104226c8 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/zhwe-cy.glif @@ -0,0 +1,87 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + з + com.fontlab.metricsRight + ж + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Bold.ufo/glyphs/zjekomicyr.glif b/sources/FixelText-Bold.ufo/glyphs/zjekomicyr.glif new file mode 100644 index 00000000..f99af9f0 --- /dev/null +++ b/sources/FixelText-Bold.ufo/glyphs/zjekomicyr.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + з-20 + com.fontlab.metricsRight + njekomicyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Bold.ufo/groups.plist b/sources/FixelText-Bold.ufo/groups.plist new file mode 100644 index 00000000..0215e532 --- /dev/null +++ b/sources/FixelText-Bold.ufo/groups.plist @@ -0,0 +1,2992 @@ + + + + + accent + + grave + acute.case + grave.case + acute + + case + + arrowdown.case + arrowdown.ss01.case + arrowleft.case + arrowleft.ss01.case + arrowright.case + arrowright.ss01.case + arrowup.case + arrowup.ss01.case + backslash.case + bar.case + braceleft.case + braceright.case + bracketleft.case + bracketright.case + brokenbar.case + bullet.case + colon.case + emdash.case + endash.case + exclamdown.case + guillemetleft.case + guillemetright.case + guilsinglleft.case + guilsinglright.case + hyphen.case + parenleft.case + parenright.case + questiondown.case + semicolon.case + at.case + bracketangleleft.case + bracketangleright.case + slash.case + + case_def + + arrowdown + arrowdown.ss01 + arrowleft + arrowleft.ss01 + arrowright + arrowright.ss01 + arrowup + arrowup.ss01 + backslash + bar + braceleft + braceright + bracketleft + bracketright + brokenbar + bullet + colon + emdash + endash + exclamdown + guillemetleft + guillemetright + guilsinglleft + guilsinglright + hyphen + parenleft + parenright + questiondown + semicolon + at + bracketangleleft + bracketangleright + slash + + cpsp + + 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 + Agrave + Aacute + Acircumflex + Atilde + Adieresis + Aring + AE + Ccedilla + Egrave + Eacute + Ecircumflex + Edieresis + Igrave + Iacute + Icircumflex + Idieresis + Eth + Ntilde + Ograve + Oacute + Ocircumflex + Otilde + Odieresis + Oslash + Ugrave + Uacute + Ucircumflex + Udieresis + Yacute + Thorn + Amacron + Abreve + Aogonek + Cacute + Ccircumflex + Cdotaccent + Ccaron + Dcaron + Dcroat + Emacron + Ebreve + Edotaccent + Eogonek + Ecaron + Gcircumflex + Gbreve + Gdotaccent + Gcommaaccent + Hcircumflex + Hbar + Itilde + Imacron + Ibreve + Iogonek + Idotaccent + IJ + Jcircumflex + Kcommaaccent + Lacute + Lcommaaccent + Lcaron + Ldot + Lslash + Nacute + Ncommaaccent + Ncaron + Eng + Omacron + Obreve + Ohungarumlaut + OE + Racute + Rcommaaccent + Rcaron + Sacute + Scircumflex + Scedilla + Scaron + Tcedilla + Tcaron + Tbar + Utilde + Umacron + Ubreve + Uring + Uhungarumlaut + Uogonek + Wcircumflex + Ycircumflex + Ydieresis + Zacute + Zdotaccent + Zcaron + Schwa + Acaron + Gacute + AEacute + Oslashacute + Scommaaccent + Tcommaaccent + Delta + Omega + Iegravecyr + uniF43A + A-cy.accented + E-cy.accented + Ii-cy.accented + O-cy.accented + U-cy.accented + Yeru-cy.accented + Ereversed-cy.accented + Iu-cy.accented + Ia-cy.accented + Io-cy.accented + uniF498 + uniF49A + uniF49C + uniF49E + uniF4C6 + uniF4CC + uniF4D2 + uniF4D4 + uniF4D6 + uniF4D8 + uniF50E + uniF510 + uniF512 + uniF514 + uniF516 + uniF518 + uniF51A + uniF51C + uniF51E + Yeru-cymacron + uniF522 + uniF524 + uniF526 + uniF528 + uniF52A + uniF52C + uniF52E + uniF532 + uniF536 + uniF538 + uniF830 + uniF833 + uniF839 + uniF86F + uniF872 + uniF875 + uniF878 + uniF87B + uniF87E + Io-cy + Djecyr + Gjecyr + E-cy + Dze-cy + I-cy + Yi-cy + Jecyr + Ljecyr + Njecyr + Tshecyr + Kjecyr + Igravecyr + Ushort-cy + Dzhecyr + A-cy + Be-cy + Ve-cy + Ge-cy + De-cy + Ie-cy + Zhe-cy + Ze-cy + Ii-cy + Iishort-cy + Ka-cy + El-cy + Em-cy + En-cy + O-cy + Pe-cy + Er-cy + Es-cy + Te-cy + U-cy + Ef-cy + Ha-cy + Tse-cy + Che-cy + Sha-cy + Shcha-cy + Hardsign-cy + Yeru-cy + Softsign-cy + Ereversed-cy + Iu-cy + Ia-cy + Omegacyr + Yatcyr + Eiotifiedcyr + Yuslittlecyr + Yuslittleiotifiedcyr + Yusbigcyr + Yusbigiotifiedcyr + Ksicyr + Psicyr + Fitacyr + Izhitsacyr + Izhitsagravedblcyr + Ukcyr + Omegaroundcyr + Omegatitlocyr + Otcyr + Koppacyr + Ishortsharptailcyr + Semisoftcyr + Ertickcyr + Gheupturn-cy + Gestrokecyr + Gehookcyr + Zhetailcyr + Zetailcyr + Katailcyr + Kaverticalstrokecyr + Kastrokecyr + Kabashkcyr + Entailcyr + Engecyr + Pehookcyr + Haabkhcyr + Estailcyr + Tetailcyr + Ustraightcyr + Ustraightstrokecyr + Xatailcyr + Tetsecyr + Chetailcyr + Chevertcyr + Shhacyr + Cheabkhcyr + Cheabkhtailcyr + Palochkacyr + Zhebrevecyr + Kahookcyr + Elsharptailcyr + Enhookcyr + Ensharptailcyr + Chekhakascyr + Emsharptailcyr + Abrevecyr + Adieresiscyr + Aiecyr + Iebrevecyr + Schwacyr + Schwadieresiscyr + Zhedieresiscyr + Zedieresiscyr + Dzeabkhcyr + Imacroncyr + Idieresiscyr + Odieresiscyr + Obarcyr + Obardieresiscyr + Ereverseddieresiscyr + Umacroncyr + Udieresiscyr + Uacutedblcyr + Chedieresiscyr + Getailcyr + Ylongdieresiscyr + Gehookstrokecyr + Hahookcyr + Hastrokecyr + Dekomicyr + Djekomicyr + Zjekomicyr + Dzjekomicyr + Ljekomicyr + Njekomicyr + Sjekomicyr + Tjekomicyr + Reversedzecyr + Elhookcyr + Lhacyr + Rhacyr + Yaecyr + Qacyr + Wecyr + Kaaleutcyr + Elmiddlehookcyr + Enmiddlehookcyr + Petailcyr + Shhatailcyr + Enhookleftcyr + Dzzhecyr + Dchecyr + Eltailcyr + Wgrave + Wacute + Wdieresis + Germandbls + uni1EBC + Zemlya-cy + Dzelo-cy + DzeReversed-cy + Iota-cy + Djerv-cy + UkMonograph-cy + OmegaBroad-cy + YerNeutral-cy + YeruBackYer-cy + YatIotified-cy + YuReversed-cy + IotifiedA-cy + YusClosedlittle-cy + YusBlended-cy + YusiotifiedClosedLittle-cy + Yn-cy + TseReversed-cy + DeSoft-cy + ElSoft-cy + EmSoft-cy + OMonocular-cy + OBinocular-cy + ODoubleMonocular-cy + Dwe-cy + Dzwe-cy + Zhwe-cy + Cche-cy + Dzze-cy + TeWithMiddleHook-cy + Twe-cy + Tswe-cy + Tsse-cy + Tche-cy + Hwe-cy + Shwe-cy + DoubleO-cy + CrossedO-cy + A-cy.ss01 + A.ss01 + AE.ss01 + Aacute.ss01 + Abreve.ss01 + Acircumflex.ss01 + Adieresis.ss01 + Agrave.ss01 + Amacron.ss01 + Aogonek.ss01 + Aring.ss01 + Atilde.ss01 + Em-cy.ss01 + Eng.ss01 + G.ss01 + Gacute.ss01 + Gbreve.ss01 + Gcircumflex.ss01 + Gcommaaccent.ss01 + Gdotaccent.ss01 + Ha-cy.ss01 + Ia-cy.ss01 + J.ss01 + Jcircumflex.ss01 + K.ss01 + Ka-cy.ss01 + Kcommaaccent.ss01 + M.ss01 + N.ss01 + Nacute.ss01 + Ncaron.ss01 + Ncommaaccent.ss01 + Ntilde.ss01 + Q.ss01 + U-cy.ss01 + Ushort-cy.ss01 + V.ss01 + W.ss01 + Wacute.ss01 + Wcircumflex.ss01 + Wdieresis.ss01 + Wgrave.ss01 + X.ss01 + Y.ss01 + Yacute.ss01 + Ycircumflex.ss01 + Ydieresis.ss01 + Z.ss01 + Zacute.ss01 + Zcaron.ss01 + Zdotaccent.ss01 + Zetailcyr.BSH + Gestrokecyr.BSH + Estailcyr.BSH + Estailcyr.CHU + Zhe-cy.ss01 + + locl.SRB + + be-cy.SRB + iegravecyr.SRB + igravecyr.SRB + + loclSRB_def + + be-cy + iegravecyr + igravecyr + + locl_BGR + + De-cy.BGR + Ef-cy.BGR + El-cy.BGR + de-cy.BGR + eiotifiedcyr.BGR + el-cy.BGR + ge-cy.BGR + hardsign-cy.BGR + ii-cy.BGR + iishort-cy.BGR + iotifieda-cy.BGR + iu-cy.BGR + ka-cy.BGR + pe-cy.BGR + sha-cy.BGR + shcha-cy.BGR + softsign-cy.BGR + te-cy.BGR + tse-cy.BGR + ve-cy.BGR + yatcyr.BGR + yusbigiotifiedcyr.BGR + ze-cy.BGR + zhe-cy.BGR + + locl_def + + De-cy + Ef-cy + El-cy + de-cy + eiotifiedcyr + el-cy + ge-cy + hardsign-cy + ii-cy + iishort-cy + iotifieda-cy + iu-cy + ka-cy + pe-cy + sha-cy + shcha-cy + softsign-cy + te-cy + tse-cy + ve-cy + yatcyr + yusbigiotifiedcyr + ze-cy + zhe-cy + + pics + + neptune + leo + virgo + bishopwhite + knightwhite + rookblack + bishopblack + knightblack + heartwhite + diamondwhite-misc + spadewhite + heart + clubwhite + crossedswords + flower + floretteblack + florettewhite + floretteoutlinedpetalledblackeight + + pics_def + + A + B + C + D + E + F + G + H + I + J + K + L + M + N + O + P + Q + R + + public.kern1.A.ss012 + + A-cy.ss01 + A.ss01 + Aacute.ss01 + Abreve.ss01 + Acircumflex.ss01 + Adieresis.ss01 + Agrave.ss01 + Amacron.ss01 + Aogonek.ss01 + Aring.ss01 + Atilde.ss01 + + public.kern1.A2 + + A + A-cy + A-cy.accented + Aacute + Abreve + Abrevecyr + Acaron + Acircumflex + Adieresis + Adieresiscyr + Agrave + Amacron + Aogonek + Aring + Atilde + De-cy.BGR + Delta + El-cy.BGR + IotifiedA-cy + Yn-cy + YusClosedlittle-cy + YusiotifiedClosedLittle-cy + Yuslittlecyr + Yuslittleiotifiedcyr + uniF50E + uniF830 + + public.kern1.AE + + AE + AE.ss01 + AEacute + Aiecyr + + public.kern1.C1 + + C + Cacute + Ccaron + Ccedilla + Ccircumflex + Cdotaccent + E-cy + Eiotifiedcyr + Es-cy + Estailcyr + Estailcyr.BSH + Estailcyr.CHU + Reversedzecyr + uniF45D + uniF526 + uniF538 + uniF875 + + public.kern1.Decyr + + Chetailcyr + De-cy + Dwe-cy + Dzze-cy + Elsharptailcyr + Eltailcyr + Emsharptailcyr + Ensharptailcyr + Entailcyr + Ishortsharptailcyr + Petailcyr + Shcha-cy + Shwe-cy + Tetsecyr + Tse-cy + Tswe-cy + uniF87B + + public.kern1.E1 + + E + E-cy.accented + Eacute + Ebreve + Ecaron + Ecircumflex + Edieresis + Edotaccent + Egrave + Emacron + Eogonek + Ie-cy + Iebrevecyr + Io-cy + Io-cy.accented + Yaecyr + uni1EBC + uniF510 + uniF512 + uniF514 + uniF833 + + public.kern1.G.ss01 + + G.ss01 + Gacute.ss01 + Gbreve.ss01 + Gcircumflex.ss01 + Gcommaaccent.ss01 + Gdotaccent.ss01 + + public.kern1.G1 + + G + Gacute + Gbreve + Gcircumflex + Gcommaaccent + Gdotaccent + + public.kern1.Ge-cy + + DeSoft-cy + ElSoft-cy + EmSoft-cy + Engecyr + Ge-cy + Gehookstrokecyr + Gestrokecyr + Gestrokecyr.BSH + Getailcyr + Gheupturn-cy + Gjecyr + TseReversed-cy + YeruBackYer-cy + uniF872 + + public.kern1.H + + Eng + Eng.ss01 + H + Hbar + Hcircumflex + I + Iacute + Ibreve + Icircumflex + Idieresis + Idotaccent + Igrave + Imacron + Iogonek + Itilde + J.ss01 + Jcircumflex.ss01 + M + M.ss01 + N + N.ss01 + Nacute + Nacute.ss01 + Ncaron + Ncaron.ss01 + Ncommaaccent + Ncommaaccent.ss01 + Ntilde + Ntilde.ss01 + + public.kern1.Hardcyr + + Hardsign-cy + Ljecyr + Njecyr + Semisoftcyr + Shhacyr + Softsign-cy + YatIotified-cy + Yatcyr + YerNeutral-cy + uniF478 + + public.kern1.J1 + + J + Jcircumflex + Jecyr + + public.kern1.K + + K + K.ss01 + Ka-cy + Ka-cy.ss01 + Kaaleutcyr + Kabashkcyr + Kastrokecyr + Kcommaaccent + Kcommaaccent.ss01 + Kjecyr + uniF86F + + public.kern1.L + + L + Lacute + Lcaron + Lcommaaccent + Lslash + + public.kern1.O + + Cheabkhcyr + Cheabkhtailcyr + CrossedO-cy + D + Dcaron + Dcroat + DoubleO-cy + Ef-cy + Ef-cy.BGR + Ereversed-cy + Ereversed-cy.accented + Ereverseddieresiscyr + Eth + Fitacyr + Iu-cy + Iu-cy.accented + O + O-cy + O-cy.accented + OBinocular-cy + ODoubleMonocular-cy + OMonocular-cy + Oacute + Obarcyr + Obardieresiscyr + Obreve + Ocircumflex + Odieresis + Odieresiscyr + Ograve + Ohungarumlaut + Omacron + Omega + Omegaroundcyr + Oslash + Oslashacute + Otilde + Q + Qacyr + Schwa + Schwacyr + Schwadieresiscyr + Sjekomicyr + uniF498 + uniF49A + uniF49C + uniF4D2 + uniF4D6 + uniF518 + uniF51A + uniF51C + uniF51E + uniF522 + uniF524 + uniF52C + uniF52E + uniF839 + + public.kern1.Oslash.alt + + Ha-cy + Ha-cy.ss01 + Hahookcyr + Lhacyr + Rhacyr + X + X.ss01 + uniF878 + + public.kern1.P + + Er-cy + Ertickcyr + P + uniF4D4 + + public.kern1.R + + R + Racute + Rcaron + Rcommaaccent + + public.kern1.S1 + + Dzwe-cy + S + Sacute + Scaron + Scedilla + Scircumflex + Scommaaccent + + public.kern1.T1 + + Koppacyr + T + Tcaron + Tcedilla + Tcommaaccent + Te-cy + Tetailcyr + Tsse-cy + Twe-cy + + public.kern1.U1 + + OmegaBroad-cy + Omegacyr + Omegatitlocyr + Otcyr + Psicyr + U + Uacute + Ubreve + Ucircumflex + Udieresis + Ugrave + Uhungarumlaut + Umacron + Uogonek + Uring + Utilde + + public.kern1.Ucyr1 + + U-cy + U-cy.accented + U-cy.ss01 + Uacutedblcyr + Udieresiscyr + Umacroncyr + Ushort-cy + Ushort-cy.ss01 + uniF4CC + + public.kern1.V + + Izhitsacyr + Izhitsagravedblcyr + V + V.ss01 + + public.kern1.W.ss011 + + W.ss01 + Wacute.ss01 + Wcircumflex.ss01 + Wdieresis.ss01 + Wgrave.ss01 + + public.kern1.W1 + + W + Wacute + Wcircumflex + Wdieresis + Wecyr + Wgrave + + public.kern1.Y.ss011 + + Y.ss01 + Yacute.ss01 + Ycircumflex.ss01 + Ydieresis.ss01 + + public.kern1.Y1 + + Ustraightcyr + Ustraightstrokecyr + Y + Yacute + Ycircumflex + Ydieresis + uniF43A + + public.kern1.Yacyr + + Cche-cy + Che-cy + Chedieresiscyr + Chekhakascyr + Chevertcyr + Dekomicyr + Elhookcyr + Em-cy + En-cy + Enhookcyr + Enhookleftcyr + I-cy + Ia-cy + Ia-cy.accented + Ia-cy.ss01 + Idieresiscyr + Ii-cy + Ii-cy.accented + Iishort-cy + Imacroncyr + Palochkacyr + Pe-cy + Sha-cy + Tche-cy + Yeru-cy + Yeru-cy.accented + Yeru-cymacron + Yi-cy + Ylongdieresiscyr + YuReversed-cy + palochkacyr + uniF45E + uniF45F + uniF4C6 + uniF4D8 + uniF528 + uniF52A + uniF532 + uniF536 + uniF87E + + public.kern1.Z1 + + Dzelo-cy + Z + Z.ss01 + Zacute + Zacute.ss01 + Zcaron + Zcaron.ss01 + Zdotaccent + Zdotaccent.ss01 + Zemlya-cy + + public.kern1.Ze-cy + + Dzeabkhcyr + Ksicyr + Ze-cy + Zedieresiscyr + Zetailcyr + Zetailcyr.BSH + uniF516 + + public.kern1.Zhe-cy + + Dzzhecyr + Katailcyr + Kaverticalstrokecyr + Xatailcyr + YusBlended-cy + Yusbigcyr + Yusbigiotifiedcyr + Zhe-cy + Zhebrevecyr + Zhedieresiscyr + Zhetailcyr + Zhwe-cy + + public.kern1.a1 + + a + aacute + abreve + acaron + acircumflex + adieresis + agrave + amacron + aogonek + aring + atilde + + public.kern1.c1 + + c + cacute + ccaron + ccedilla + ccircumflex + cdotaccent + e-cy + e-cy.hist + eiotifiedcyr + eiotifiedcyr.BGR + es-cy + estailcyr + estailcyr.BSH + estailcyr.CHU + koppacyr + reversedzecyr + sjekomicyr + uni1C83 + uniF475 + uniF527 + uniF539 + uniF876 + + public.kern1.comma1 + + comma + quotedblbase + quotesinglbase + + public.kern1.copyright1 + + copyright + registered + + public.kern1.dcaron + + dcaron + dcaron.ss01 + lcaron + + public.kern1.decyr1 + + chetailcyr + dchecyr + de-cy + de-cy.ss01 + dwe-cy + dzze-cy + elsharptailcyr + eltailcyr + emsharptailcyr + ensharptailcyr + entailcyr + ishortsharptailcyr + petailcyr + shcha-cy + shcha-cy.BGR + shhatailcyr + shwe-cy + tetsecyr + tse-cy + tse-cy.BGR + tswe-cy + uniF87C + + public.kern1.e.ss011 + + e.ss01 + eacute.ss01 + ebreve.ss01 + ecaron.ss01 + ecircumflex.ss01 + edieresis.ss01 + edotaccent.ss01 + egrave.ss01 + emacron.ss01 + eogonek.ss01 + oe.ss01 + + public.kern1.e1 + + ae + aeacute + aiecyr + cheabkhcyr + cheabkhtailcyr + e + e-cy.accented + eacute + ebreve + ecaron + ecircumflex + edieresis + edotaccent + egrave + emacron + eogonek + ie-cy + iebrevecyr + iegravecyr + iegravecyr.SRB + io-cy + io-cy.accented + uni1EBD + uniF511 + uniF513 + uniF515 + uniF834 + yaecyr + + public.kern1.el-cy.BGR + + el-cy.BGR + iotifieda-cy + iotifieda-cy.BGR + uni1C81 + yn-cy + yusClosedlittle-cy + yusiotifiedClosedLittle-cy + yuslittlecyr + yuslittleiotifiedcyr + + public.kern1.emdash1 + + emdash + endash + hyphen + + public.kern1.f1 + + f + f_f + + public.kern1.fi + + f_f_i + fi + + public.kern1.five1 + + five + five.tf + + public.kern1.four1 + + four + four.tf + + public.kern1.g.ss011 + + g.ss01 + gacute.ss01 + gbreve.ss01 + gcircumflex.ss01 + gcommaaccent.ss01 + gdotaccent.ss01 + + public.kern1.g1 + + g + gacute + gbreve + gcircumflex + gcommaaccent + gdotaccent + + public.kern1.gecyr + + deSoft-cy + elSoft-cy + emSoft-cy + engecyr + ge-cy + gehookstrokecyr + gestrokecyr + gestrokecyr.BSH + getailcyr + gheupturn-cy + gjecyr + + public.kern1.guillemotright1 + + guillemetright + guilsinglright + + public.kern1.hardcyr + + Tjekomicyr + djekomicyr + elmiddlehookcyr + enmiddlehookcyr + gehookcyr + hardsign-cy + hardsign-cy.BGR + hardsign-cy.ss01 + ljecyr + ljecyr.ss01 + ljekomicyr + njecyr + njecyr.ss01 + njekomicyr + pehookcyr + semisoftcyr + softsign-cy + softsign-cy.BGR + softsign-cy.ss01 + tewithmiddlehook-cy + tjekomicyr + uni1C86 + uni1C87 + uniF479 + yatIotified-cy + yatcyr + yatcyr.BGR + yerNeutral-cy + zjekomicyr + + public.kern1.i1 + + Djekomicyr + Ljekomicyr + Njekomicyr + Zjekomicyr + i + i-cy + iacute + icircumflex + igrave + imacron + iogonek + itilde + uniF476 + yi-cy.alt + + public.kern1.icyr1 + + cche-cy + che-cy + chedieresiscyr + chekhakascyr + chevertcyr + de-cy.BGR + el-cy + elhookcyr + em-cy + en-cy + enhookcyr + enhookleftcyr + ia-cy + ia-cy.accented + idieresiscyr + igravecyr + ii-cy + ii-cy.accented + iishort-cy + imacroncyr + mu + pe-cy + psicyr + q + qacyr + sha-cy + sha-cy.BGR + tche-cy + tseReversed-cy + ubreve + uni1C85 + uniF4C7 + uniF4D9 + uniF521 + uniF529 + uniF52B + uniF533 + uniF537 + uniF873 + uniF87F + utilde + yeru-cy + yeru-cy.accented + yeru-cy.ss01 + yeruBackyer-cy + ylongdieresiscyr + yuReversed-cy + + public.kern1.j1 + + ij + j + jcircumflex + jdotless + + public.kern1.k + + k + ka-cy + ka-cy.BGR + kaaleutcyr + kabashkcyr + kastrokecyr + kcommaaccent + kgreenlandic + kjecyr + uniF870 + + public.kern1.l + + f_f_l + fl + l + lacute + lcommaaccent + + public.kern1.l.ss011 + + Iota-cy + iota-cy + l.ss01 + lacute.ss01 + lcommaaccent.ss01 + + public.kern1.n + + Djecyr + Elmiddlehookcyr + Enmiddlehookcyr + Gehookcyr + Hwe-cy + Kahookcyr + Pehookcyr + Shhatailcyr + TeWithMiddleHook-cy + Tshecyr + a-cy.accented + a-cy.ss01 + a.ss01 + aacute.ss01 + abreve.ss01 + abrevecyr + acircumflex.ss01 + adieresis.ss01 + adieresiscyr + agrave.ss01 + aogonek.ss01 + aring.ss01 + atilde.ss01 + djecyr + el-cy.ss01 + h + hbar + hcircumflex + hwe-cy + ia-cy.ss01 + iotifieda-cy.hist + m + n + nacute + napostrophe + ncaron + ncommaaccent + ntilde + pe-cy.BGR + q.ss01 + shhacyr + te-cy.BGR + tshecyr + uniF49E + uniF49F + uniF50F + uniF831 + + public.kern1.numero + + numero + numero.ss01 + + public.kern1.o1 + + b + b.ss01 + be-cy.SRB + crossedo-cy + ef-cy + er-cy + er-cy.ss01 + ereversed-cy + ereversed-cy.accented + ereverseddieresiscyr + ertickcyr + eturned + fitacyr + iu-cy + iu-cy.BGR + iu-cy.accented + o + o-cy + o-cy.accented + oBinocular-cy + oDoubleMonocular-cy + oMonocular-cy + oacute + obarcyr + obardieresiscyr + obreve + ocircumflex + odieresis + odieresiscyr + ograve + ohungarumlaut + omacron + omegaBroad-cy + omegaroundcyr + omegatitlocyr + oslashacute + otilde + p + p.ss01 + schwacyr + schwadieresiscyr + thorn + uni1C82 + uniF499 + uniF49D + uniF4D3 + uniF4D5 + uniF4D7 + uniF519 + uniF51B + uniF51D + uniF51F + uniF523 + uniF525 + uniF52D + uniF52F + uniF83A + + public.kern1.period1 + + ellipsis + period + + public.kern1.quotedbl1 + + quotedbl + quotesingle + + public.kern1.quoteleft1 + + quotedblleft + quoteleft + + public.kern1.quoteright1 + + apostrophemod + minute + quotedblright + quoteright + second + + public.kern1.s1 + + dzwe-cy + s + sacute + scaron + scedilla + scircumflex + scommaaccent + + public.kern1.t.ss011 + + t.ss01 + tcedilla.ss01 + tcommaaccent.ss01 + + public.kern1.t1 + + t + tcaron + tcedilla + tcommaaccent + + public.kern1.te-cy + + te-cy + tetailcyr + tsse-cy + twe-cy + + public.kern1.u1 + + igravecyr.SRB + ii-cy.BGR + iishort-cy.BGR + pe-cy.SRB + te-cy.SRB + u + uacute + ucircumflex + udieresis + ugrave + uhungarumlaut + umacron + uogonek + uring + + public.kern1.uni0435.ss011 + + ie-cy.ss01 + io-cy.ss01 + + public.kern1.v + + izhitsacyr + izhitsagravedblcyr + v + + public.kern1.w1 + + omegacyr + otcyr + w + wacute + wcircumflex + wdieresis + wecyr + wgrave + + public.kern1.x + + ha-cy + hahookcyr + lhacyr + rhacyr + uniF879 + x + + public.kern1.y1 + + Ukcyr + u-cy + u-cy.accented + uacutedblcyr + udieresiscyr + ukcyr + umacroncyr + uniF43B + uniF4CD + ushort-cy + ustraightcyr + ustraightstrokecyr + y + yacute + ycircumflex + ydieresis + + public.kern1.z1 + + dzelo-cy + z + zacute + zcaron + zdotaccent + zemlya-cy + + public.kern1.ze-cy + + dzeabkhcyr + ksicyr + uniF517 + ze-cy + ze-cy.BGR + zedieresiscyr + zetailcyr + zetailcyr.BSH + + public.kern1.zhe-cy + + dzzhecyr + katailcyr + kaverticalstrokecyr + xatailcyr + yusBlended-cy + yusbigcyr + yusbigiotifiedcyr + yusbigiotifiedcyr.BGR + zhe-cy + zhe-cy.BGR + zhebrevecyr + zhedieresiscyr + zhetailcyr + zhwe-cy + + public.kern2.A.ss01 + + A.ss01 + AE.ss01 + Aacute.ss01 + Acircumflex.ss01 + Adieresis.ss01 + Agrave.ss01 + Amacron.ss01 + Aogonek.ss01 + Atilde.ss01 + + public.kern2.A.ss012 + + A-cy.ss01 + Abreve.ss01 + Aring.ss01 + + public.kern2.A2 + + A + A-cy + A-cy.accented + AE + AEacute + Aacute + Abreve + Abrevecyr + Acaron + Acircumflex + Adieresis + Adieresiscyr + Agrave + Aiecyr + Amacron + Aogonek + Aring + Atilde + De-cy.BGR + Delta + El-cy.BGR + Yn-cy + YusClosedlittle-cy + Yuslittlecyr + uniF50E + uniF830 + + public.kern2.B + + B + D + Dcaron + E + Eacute + Ecaron + Ecircumflex + Edieresis + Edotaccent + Egrave + Emacron + Eogonek + F + H + Hbar + Hcircumflex + I + Iacute + Ibreve + Icircumflex + Idieresis + Idotaccent + Igrave + Imacron + Iogonek + Itilde + K + K.ss01 + Kcommaaccent + Kcommaaccent.ss01 + L + Lacute + Lcaron + Lcommaaccent + Ldot + M + N + N.ss01 + Nacute + Nacute.ss01 + Ncaron + Ncaron.ss01 + Ncommaaccent + Ncommaaccent.ss01 + Ntilde + Ntilde.ss01 + P + R + Racute + Rcaron + Rcommaaccent + Thorn + uni1EBC + + public.kern2.Che-cy + + Cche-cy + Che-cy + Chedieresiscyr + Chekhakascyr + Chetailcyr + Chevertcyr + uniF4C6 + uniF87E + + public.kern2.De-cy + + Dchecyr + De-cy + DeSoft-cy + Dwe-cy + Dzze-cy + Dzzhecyr + TseReversed-cy + + public.kern2.El-cy + + El-cy + ElSoft-cy + Elhookcyr + Elmiddlehookcyr + Elsharptailcyr + Eltailcyr + Lhacyr + Ljekomicyr + uniF872 + + public.kern2.Eth + + Dcroat + Eth + Gestrokecyr + + public.kern2.G + + C + Cacute + Ccaron + Ccedilla + Ccircumflex + Cdotaccent + CrossedO-cy + DoubleO-cy + E-cy + Ef-cy.BGR + Es-cy + Estailcyr + Estailcyr.BSH + Estailcyr.CHU + Fitacyr + G + G.ss01 + Gacute + Gacute.ss01 + Gbreve + Gbreve.ss01 + Gcircumflex + Gcircumflex.ss01 + Gcommaaccent + Gcommaaccent.ss01 + Gdotaccent + Gdotaccent.ss01 + Haabkhcyr + Koppacyr + O + O-cy + O-cy.accented + OBinocular-cy + ODoubleMonocular-cy + OE + OMonocular-cy + Oacute + Obarcyr + Obardieresiscyr + Obreve + Ocircumflex + Odieresis + Odieresiscyr + Ograve + Ohungarumlaut + Omacron + Omegaroundcyr + Oslash + Otilde + Q + Q.ss01 + Qacyr + Schwacyr + Schwadieresiscyr + Sjekomicyr + Ukcyr + YuReversed-cy + uniF45D + uniF49A + uniF49C + uniF4D2 + uniF518 + uniF51A + uniF51C + uniF51E + uniF526 + uniF839 + uniF875 + + public.kern2.Gecyr + + Be-cy + E-cy.accented + Eiotifiedcyr + Em-cy + EmSoft-cy + Emsharptailcyr + En-cy + Engecyr + Enhookcyr + Enhookleftcyr + Enmiddlehookcyr + Ensharptailcyr + Entailcyr + Er-cy + Ertickcyr + Gehookcyr + Gestrokecyr.BSH + Getailcyr + Gheupturn-cy + Gjecyr + Hwe-cy + I-cy + Iebrevecyr + Ii-cy + Ii-cy.accented + Io-cy.accented + IotifiedA-cy + Iu-cy.accented + Ka-cy + Kaaleutcyr + Kahookcyr + Katailcyr + Kaverticalstrokecyr + Kjecyr + Njekomicyr + Palochkacyr + Pe-cy + Pehookcyr + Petailcyr + Rhacyr + Shhacyr + Shhatailcyr + Shwe-cy + Tswe-cy + Ve-cy + Yeru-cy.accented + Yeru-cymacron + Yi-cy + Ylongdieresiscyr + Yusbigiotifiedcyr + YusiotifiedClosedLittle-cy + Yuslittleiotifiedcyr + palochkacyr + uniF45E + uniF45F + uniF498 + uniF4D4 + uniF510 + uniF512 + uniF514 + uniF52C + uniF52E + uniF532 + uniF536 + uniF833 + uniF86F + uniF87B + + public.kern2.Ia-cy + + Ia-cy + Ia-cy.accented + Yaecyr + uniF4D8 + uniF528 + uniF52A + + public.kern2.Iishort-cy + + Idieresiscyr + Iishort-cy + Imacroncyr + Ishortsharptailcyr + + public.kern2.J + + J + Jcircumflex + Jecyr + + public.kern2.Oslash.alt + + Ha-cy.ss01 + Hahookcyr + X + X.ss01 + Xatailcyr + uniF878 + + public.kern2.S + + Dzwe-cy + S + Sacute + Scaron + Scedilla + Scircumflex + Scommaaccent + + public.kern2.T + + Djecyr + T + Tcaron + Tcedilla + Tche-cy + Tcommaaccent + Te-cy + TeWithMiddleHook-cy + Tetailcyr + Tetsecyr + Tjekomicyr + Tshecyr + Tsse-cy + Twe-cy + + public.kern2.U + + Iota-cy + OmegaBroad-cy + Omegacyr + Omegatitlocyr + Otcyr + Psicyr + U + Uacute + Ubreve + Ucircumflex + Udieresis + Ugrave + Uhungarumlaut + Umacron + Uogonek + Uring + Utilde + + public.kern2.Ucyr.ss01 + + U-cy.accented + U-cy.ss01 + Uacutedblcyr + Udieresiscyr + Umacroncyr + Ushort-cy.ss01 + uniF4CC + + public.kern2.V + + Izhitsacyr + Izhitsagravedblcyr + V + V.ss01 + + public.kern2.W + + W + W.ss01 + Wacute + Wacute.ss01 + Wcircumflex + Wcircumflex.ss01 + Wdieresis + Wdieresis.ss01 + Wecyr + Wgrave + Wgrave.ss01 + + public.kern2.Y + + Ustraightcyr + Ustraightstrokecyr + Y + Y.ss01 + Yacute + Yacute.ss01 + Ycircumflex + Ycircumflex.ss01 + Ydieresis + Ydieresis.ss01 + uniF43A + + public.kern2.Z + + Dzelo-cy + Z + Z.ss01 + Zacute + Zacute.ss01 + Zcaron + Zcaron.ss01 + Zdotaccent + Zdotaccent.ss01 + Zemlya-cy + + public.kern2.Ze-cy1 + + Dzeabkhcyr + Ksicyr + Ze-cy + Zedieresiscyr + Zetailcyr + Zetailcyr.BSH + Zhwe-cy + uniF516 + + public.kern2.Zhe-cy1 + + YusBlended-cy + Yusbigcyr + Zhe-cy + Zhebrevecyr + Zhedieresiscyr + Zhetailcyr + + public.kern2.a + + a + a-cy + a-cy.accented + aacute + abreve + abrevecyr + acaron + acircumflex + adieresis + adieresiscyr + ae + aeacute + agrave + aiecyr + amacron + aogonek + aring + atilde + uniF50F + uniF831 + + public.kern2.acute.case + + acute.case + hungarumlaut.case + + public.kern2.che-cy + + cche-cy + che-cy + chedieresiscyr + chekhakascyr + chetailcyr + chevertcyr + uniF4C7 + uniF87F + + public.kern2.comma + + comma + quotedblbase + quotesinglbase + + public.kern2.copyright + + copyright + registered + + public.kern2.decyr.ss01 + + de-cy.ss01 + deSoft-cy + dwe-cy + dzze-cy + dzzhecyr + tseReversed-cy + + public.kern2.el-cy + + el-cy + el-cy.ss01 + elSoft-cy + elhookcyr + elmiddlehookcyr + elsharptailcyr + eltailcyr + lhacyr + ljecyr.ss01 + ljekomicyr + uniF873 + + public.kern2.el-cy.BGR1 + + el-cy.BGR + uni1C81 + yn-cy + yusClosedlittle-cy + yuslittlecyr + + public.kern2.emdash + + emdash + endash + hyphen + + public.kern2.f + + f + f_f + f_f_i + f_f_l + fi + fl + gestrokecyr + + public.kern2.f_f.ss01 + + f_f.ss01 + f_f_i.ss01 + f_f_l.ss01 + + public.kern2.fi.ss01 + + fi.ss01 + fl.ss01 + + public.kern2.five + + five + five.tf + + public.kern2.four + + four + four.tf + + public.kern2.g + + g + gacute + gbreve + gcircumflex + gcommaaccent + gdotaccent + + public.kern2.g.ss01 + + g.ss01 + gacute.ss01 + gbreve.ss01 + gcircumflex.ss01 + gcommaaccent.ss01 + gdotaccent.ss01 + + public.kern2.guillemotleft + + guillemetleft + guilsinglleft + + public.kern2.guillemotright + + guillemetright + guilsinglright + + public.kern2.h + + eiotifiedcyr.BGR + h + hcircumflex + hwe-cy + iotifieda-cy.BGR + iu-cy.BGR + k + ka-cy.BGR + kcommaaccent + l + lacute + lcaron + lcommaaccent + ldot + shhacyr + shhatailcyr + ve-cy.BGR + yatcyr.BGR + yusbigiotifiedcyr.BGR + + public.kern2.i1 + + i + i-cy + iacute + icircumflex + igrave + imacron + iogonek + itilde + uniF476 + yi-cy.alt + + public.kern2.ia-cy + + ia-cy + ia-cy.accented + ia-cy.ss01 + uniF4D9 + uniF529 + uniF52B + yaecyr + + public.kern2.j + + enhookleftcyr + j + jcircumflex + jdotless + + public.kern2.l.ss01 + + l.ss01 + lacute.ss01 + lcaron.ss01 + lcommaaccent.ss01 + ldot.ss01 + + public.kern2.m + + eiotifiedcyr + em-cy + emSoft-cy + emsharptailcyr + en-cy + eng + engecyr + enhookcyr + enmiddlehookcyr + ensharptailcyr + entailcyr + er-cy + er-cy.ss01 + ertickcyr + ge-cy + gehookcyr + gehookstrokecyr + gestrokecyr.BSH + getailcyr + gheupturn-cy + gjecyr + idieresiscyr + idotless + igravecyr + ii-cy + ii-cy.accented + iishort-cy + imacroncyr + iotifieda-cy + ishortsharptailcyr + iu-cy + iu-cy.accented + ka-cy + kaaleutcyr + kahookcyr + katailcyr + kaverticalstrokecyr + kgreenlandic + kjecyr + m + mu + n + nacute + ncaron + ncommaaccent + njecyr.ss01 + njekomicyr + ntilde + p + p.ss01 + pe-cy + pe-cy.BGR + pehookcyr + petailcyr + psicyr + r + racute + rcaron + rcommaaccent + rhacyr + sha-cy + shcha-cy + shwe-cy + softsign-cy + softsign-cy.BGR + softsign-cy.ss01 + te-cy.BGR + tse-cy + tswe-cy + uni1C85 + uniF499 + uniF4D5 + uniF521 + uniF52D + uniF52F + uniF533 + uniF537 + uniF870 + uniF87C + ve-cy + ve-cy.ss01 + yatIotified-cy + yeru-cy + yeru-cy.accented + yeru-cy.ss01 + ylongdieresiscyr + yusbigiotifiedcyr + yusiotifiedClosedLittle-cy + yuslittleiotifiedcyr + + public.kern2.o + + Dekomicyr + Djekomicyr + a-cy.ss01 + a.ss01 + aacute.ss01 + abreve.ss01 + acircumflex.ss01 + adieresis.ss01 + agrave.ss01 + amacron.ss01 + aogonek.ss01 + aring.ss01 + atilde.ss01 + c + cacute + ccaron + ccedilla + ccircumflex + cdotaccent + cent + crossedo-cy + d + d.ss01 + dcaron + dcaron.ss01 + dcroat + dcroat.ss01 + de-cy.BGR + dekomicyr + djekomicyr + e + e-cy + e-cy.accented + e-cy.hist + e.ss01 + eacute + eacute.ss01 + ebreve + ebreve.ss01 + ecaron + ecaron.ss01 + ecircumflex + ecircumflex.ss01 + edieresis + edieresis.ss01 + edotaccent + edotaccent.ss01 + ef-cy + egrave + egrave.ss01 + emacron + emacron.ss01 + eogonek + eogonek.ss01 + es-cy + estailcyr + estailcyr.BSH + estailcyr.CHU + eth + eturned + fitacyr + haabkhcyr + ie-cy + ie-cy.ss01 + iebrevecyr + iegravecyr + iegravecyr.SRB + io-cy + io-cy.accented + io-cy.ss01 + koppacyr + o + o-cy + o-cy.accented + oBinocular-cy + oDoubleMonocular-cy + oMonocular-cy + oacute + obarcyr + obardieresiscyr + obreve + ocircumflex + odieresis + odieresiscyr + oe.ss01 + ograve + ohungarumlaut + omacron + omegaBroad-cy + omegaroundcyr + omegatitlocyr + oslashacute + otilde + q + q.ss01 + qacyr + schwacyr + schwadieresiscyr + sjekomicyr + ukcyr + uni1C82 + uni1C83 + uni1EBD + uniF475 + uniF49D + uniF4D3 + uniF511 + uniF513 + uniF515 + uniF519 + uniF51B + uniF51D + uniF51F + uniF527 + uniF834 + uniF83A + uniF876 + yuReversed-cy + + public.kern2.percent + + percent + perthousand + + public.kern2.period + + ellipsis + period + + public.kern2.quotedbl + + quotedbl + quotesingle + + public.kern2.quoteleft + + quotedblleft + quoteleft + + public.kern2.quoteright + + apostrophemod + minute + quotedblright + quoteright + second + + public.kern2.s + + dzwe-cy + s + sacute + scaron + scedilla + scircumflex + scommaaccent + + public.kern2.t + + t + t.ss01 + tbar.ss01 + tcaron + tcaron.ss01 + tcedilla + tcedilla.ss01 + tcommaaccent + tcommaaccent.ss01 + + public.kern2.tecyr + + tche-cy + te-cy.ss01 + tetailcyr + tetsecyr + tewithmiddlehook-cy + tjekomicyr + tsse-cy + twe-cy + + public.kern2.u + + igravecyr.SRB + ii-cy.BGR + iishort-cy.BGR + iota-cy + pe-cy.SRB + sha-cy.BGR + shcha-cy.BGR + te-cy.SRB + tse-cy.BGR + u + uacute + ubreve + ucircumflex + udieresis + ugrave + uhungarumlaut + umacron + uogonek + uring + utilde + + public.kern2.v1 + + izhitsacyr + izhitsagravedblcyr + v + + public.kern2.w + + omegacyr + otcyr + w + wacute + wcircumflex + wdieresis + wecyr + wgrave + + public.kern2.x + + ha-cy + hahookcyr + uniF879 + x + + public.kern2.y + + u-cy + u-cy.accented + uacutedblcyr + udieresiscyr + umacroncyr + uniF43B + uniF4CD + ustraightcyr + ustraightstrokecyr + y + yacute + ycircumflex + ydieresis + + public.kern2.z + + dzelo-cy + z + zacute + zcaron + zdotaccent + zemlya-cy + + public.kern2.ze-cy1 + + dzeabkhcyr + ksicyr + uniF517 + ze-cy + ze-cy.BGR + zedieresiscyr + zetailcyr + zetailcyr.BSH + zhwe-cy + + public.kern2.zero + + uni1C80 + zero + zero.tf + + public.kern2.zhe-cy1 + + xatailcyr + yusBlended-cy + yusbigcyr + zhe-cy + zhe-cy.BGR + zhebrevecyr + zhedieresiscyr + zhetailcyr + + ss01 + + A-cy.ss01 + A.ss01 + AE.ss01 + Aacute.ss01 + Abreve.ss01 + Acircumflex.ss01 + Adieresis.ss01 + Agrave.ss01 + Amacron.ss01 + Aogonek.ss01 + Aring.ss01 + Atilde.ss01 + Em-cy.ss01 + Eng.ss01 + G.ss01 + Gacute.ss01 + Gbreve.ss01 + Gcircumflex.ss01 + Gcommaaccent.ss01 + Gdotaccent.ss01 + Ha-cy.ss01 + Ia-cy.ss01 + J.ss01 + Jcircumflex.ss01 + K.ss01 + Ka-cy.ss01 + Kcommaaccent.ss01 + M.ss01 + N.ss01 + Nacute.ss01 + Ncaron.ss01 + Ncommaaccent.ss01 + Ntilde.ss01 + Q.ss01 + U-cy.ss01 + Ushort-cy.ss01 + V.ss01 + W.ss01 + Wacute.ss01 + Wcircumflex.ss01 + Wdieresis.ss01 + Wgrave.ss01 + X.ss01 + Y.ss01 + Yacute.ss01 + Ycircumflex.ss01 + Ydieresis.ss01 + Z.ss01 + Zacute.ss01 + Zcaron.ss01 + Zdotaccent.ss01 + Zhe-cy.ss01 + a-cy.ss01 + a.ss01 + aacute.ss01 + abreve.ss01 + acircumflex.ss01 + adieresis.ss01 + ae.ss01 + agrave.ss01 + amacron.ss01 + aogonek.ss01 + aring.ss01 + arrowdown.ss01 + arrowdown.ss01.case + arrowleft.ss01 + arrowleft.ss01.case + arrowright.ss01 + arrowright.ss01.case + arrowup.ss01 + arrowup.ss01.case + atilde.ss01 + b.ss01 + d.ss01 + dcaron.ss01 + dcroat.ss01 + de-cy.ss01 + e.ss01 + eacute.ss01 + ebreve.ss01 + ecaron.ss01 + ecircumflex.ss01 + edieresis.ss01 + edotaccent.ss01 + egrave.ss01 + el-cy.ss01 + emacron.ss01 + eogonek.ss01 + er-cy.ss01 + f.ss01 + f_f.ss01 + f_f_i.ss01 + f_f_l.ss01 + fi.ss01 + fl.ss01 + g.ss01 + gacute.ss01 + gbreve.ss01 + gcircumflex.ss01 + gcommaaccent.ss01 + gdotaccent.ss01 + germandbls.ss01 + hardsign-cy.ss01 + ia-cy.ss01 + ie-cy.ss01 + io-cy.ss01 + l.ss01 + lacute.ss01 + lcaron.ss01 + lcommaaccent.ss01 + ldot.ss01 + ljecyr.ss01 + lslash.ss01 + njecyr.ss01 + numero.ss01 + oe.ss01 + p.ss01 + q.ss01 + softsign-cy.ss01 + t.ss01 + tbar.ss01 + tcaron.ss01 + tcedilla.ss01 + tcommaaccent.ss01 + te-cy.ss01 + ve-cy.ss01 + yen.ss01 + yeru-cy.ss01 + + ss01_def + + A-cy + A + AE + Aacute + Abreve + Acircumflex + Adieresis + Agrave + Amacron + Aogonek + Aring + Atilde + Em-cy + Eng + G + Gacute + Gbreve + Gcircumflex + Gcommaaccent + Gdotaccent + Ha-cy + Ia-cy + J + Jcircumflex + K + Ka-cy + Kcommaaccent + M + N + Nacute + Ncaron + Ncommaaccent + Ntilde + Q + U-cy + Ushort-cy + V + W + Wacute + Wcircumflex + Wdieresis + Wgrave + X + Y + Yacute + Ycircumflex + Ydieresis + Z + Zacute + Zcaron + Zdotaccent + Zhe-cy + a-cy + a + aacute + abreve + acircumflex + adieresis + ae + agrave + amacron + aogonek + aring + arrowdown + arrowdown.case + arrowleft + arrowleft.case + arrowright + arrowright.case + arrowup + arrowup.case + atilde + b + d + dcaron + dcroat + de-cy + e + eacute + ebreve + ecaron + ecircumflex + edieresis + edotaccent + egrave + el-cy + emacron + eogonek + er-cy + f + f_f + f_f_i + f_f_l + fi + fl + g + gacute + gbreve + gcircumflex + gcommaaccent + gdotaccent + germandbls + hardsign-cy + ia-cy + ie-cy + io-cy + l + lacute + lcaron + lcommaaccent + ldot + ljecyr + lslash + njecyr + numero + oe + p + q + softsign-cy + t + tbar + tcaron + tcedilla + tcommaaccent + te-cy + ve-cy + yen + yeru-cy + + + diff --git a/sources/FixelText-Bold.ufo/kerning.plist b/sources/FixelText-Bold.ufo/kerning.plist new file mode 100644 index 00000000..bf7c768a --- /dev/null +++ b/sources/FixelText-Bold.ufo/kerning.plist @@ -0,0 +1,2731 @@ + + + + + Zhe-cy + + public.kern2.G + -42 + + space + + public.kern2.W + -4 + public.kern2.Y + -100 + + uni1C82 + + public.kern2.y + -48 + + public.kern1.A.ss012 + + public.kern2.G + -30 + public.kern2.T + -54 + public.kern2.U + -20 + public.kern2.Ucyr.ss01 + -48 + public.kern2.V + -48 + public.kern2.W + -38 + public.kern2.Y + -76 + public.kern2.Z + -4 + public.kern2.a + -16 + public.kern2.decyr.ss01 + 6 + public.kern2.emdash + -16 + public.kern2.l.ss01 + -12 + public.kern2.m + -6 + public.kern2.o + -20 + public.kern2.quotedbl + -46 + public.kern2.quoteright + -46 + public.kern2.t + -24 + public.kern2.tecyr + -42 + public.kern2.u + -14 + public.kern2.w + -24 + public.kern2.x + 8 + public.kern2.y + -34 + + public.kern1.A2 + + public.kern2.A2 + 18 + public.kern2.G + -26 + public.kern2.J + 24 + public.kern2.Oslash.alt + 12 + public.kern2.S + 9 + public.kern2.T + -58 + public.kern2.U + -16 + public.kern2.Ucyr.ss01 + -38 + public.kern2.V + -42 + public.kern2.W + -41 + public.kern2.Y + -74 + public.kern2.Z + 28 + public.kern2.a + -2 + public.kern2.comma + 12 + public.kern2.decyr.ss01 + 2 + public.kern2.emdash + -4 + public.kern2.g + 14 + public.kern2.j + -2 + public.kern2.o + -10 + public.kern2.period + 36 + public.kern2.quotedbl + -50 + public.kern2.quoteright + -54 + public.kern2.t + -16 + public.kern2.tecyr + -30 + public.kern2.u + -2 + public.kern2.w + -20 + public.kern2.x + 6 + public.kern2.y + -34 + public.kern2.z + 10 + + public.kern1.C1 + + public.kern2.A2 + -6 + public.kern2.B + -6 + public.kern2.G + -23 + public.kern2.J + 12 + public.kern2.Oslash.alt + -14 + public.kern2.S + -6 + public.kern2.U + -6 + public.kern2.Ucyr.ss01 + -13 + public.kern2.V + -12 + public.kern2.W + -12 + public.kern2.Y + -20 + public.kern2.Z + 2 + public.kern2.comma + -6 + public.kern2.emdash + -26 + public.kern2.f + -7 + public.kern2.g + -14 + public.kern2.g.ss01 + -12 + public.kern2.j + -2 + public.kern2.o + -16 + public.kern2.period + -8 + public.kern2.quoteright + -18 + public.kern2.s + -6 + public.kern2.t + -6 + public.kern2.tecyr + -7 + public.kern2.u + -8 + public.kern2.w + -12 + public.kern2.x + -14 + public.kern2.y + -18 + + public.kern1.Decyr + + public.kern2.A.ss012 + 12 + public.kern2.A2 + 6 + public.kern2.G + -10 + public.kern2.T + -21 + public.kern2.Ucyr.ss01 + -30 + public.kern2.a + -4 + public.kern2.comma + 36 + public.kern2.decyr.ss01 + 25 + public.kern2.emdash + -16 + public.kern2.o + -10 + public.kern2.period + 16 + public.kern2.quoteright + -30 + public.kern2.tecyr + -26 + public.kern2.y + -12 + + public.kern1.E1 + + public.kern2.G + -8 + public.kern2.J + 10 + public.kern2.a + -6 + public.kern2.f + -12 + public.kern2.g.ss01 + -6 + public.kern2.i1 + 6 + public.kern2.j + -6 + public.kern2.o + -16 + public.kern2.period + 8 + public.kern2.quotedbl + 4 + public.kern2.quoteright + -6 + public.kern2.s + -6 + public.kern2.t + -6 + public.kern2.w + -20 + public.kern2.y + -22 + + public.kern1.G.ss01 + + public.kern2.A.ss01 + 10 + public.kern2.G + -12 + public.kern2.Oslash.alt + -6 + public.kern2.T + -16 + public.kern2.V + -38 + public.kern2.W + -28 + public.kern2.Y + -44 + public.kern2.Z + -6 + public.kern2.comma + -12 + public.kern2.emdash + -6 + public.kern2.o + -6 + public.kern2.quotedbl + -4 + public.kern2.quoteright + -26 + public.kern2.t + -8 + public.kern2.w + -27 + public.kern2.y + -26 + + public.kern1.G1 + + public.kern2.B + 6 + public.kern2.G + 4 + public.kern2.J + 12 + public.kern2.T + -16 + public.kern2.V + -38 + public.kern2.W + -28 + public.kern2.Y + -38 + public.kern2.comma + 4 + public.kern2.emdash + 8 + public.kern2.period + 10 + public.kern2.quotedbl + -12 + public.kern2.quoteright + -6 + public.kern2.w + -6 + public.kern2.y + -12 + + public.kern1.Ge-cy + + public.kern2.A.ss012 + -48 + public.kern2.A2 + -54 + public.kern2.G + -16 + public.kern2.Gecyr + 4 + public.kern2.T + 30 + public.kern2.a + -84 + public.kern2.comma + -80 + public.kern2.decyr.ss01 + -24 + public.kern2.emdash + -66 + public.kern2.guillemotright + -44 + public.kern2.i1 + 32 + public.kern2.m + -48 + public.kern2.o + -92 + public.kern2.period + -108 + public.kern2.x + -20 + public.kern2.y + -20 + + public.kern1.H + + public.kern2.Gecyr + 1 + public.kern2.comma + -8 + public.kern2.i1 + 6 + public.kern2.j + 2 + public.kern2.quoteright + -8 + + public.kern1.Hardcyr + + public.kern2.A.ss012 + 15 + public.kern2.Oslash.alt + -14 + public.kern2.T + -98 + public.kern2.Ucyr.ss01 + -70 + public.kern2.comma + -18 + public.kern2.quotedbl + -120 + public.kern2.quoteright + -40 + public.kern2.tecyr + -24 + public.kern2.x + -26 + public.kern2.y + -30 + + public.kern1.J1 + + public.kern2.A.ss012 + 8 + public.kern2.A2 + -10 + public.kern2.J + 6 + public.kern2.S + -5 + public.kern2.Z + -4 + public.kern2.comma + -30 + public.kern2.i1 + 6 + public.kern2.period + -12 + public.kern2.s + -6 + + public.kern1.K + + public.kern2.A2 + 12 + public.kern2.G + -62 + public.kern2.J + 10 + public.kern2.S + -10 + public.kern2.U + -1 + public.kern2.a + -10 + public.kern2.comma + 6 + public.kern2.emdash + -48 + public.kern2.f + -20 + public.kern2.g + -8 + public.kern2.i1 + 24 + public.kern2.j + -4 + public.kern2.l.ss01 + -6 + public.kern2.o + -40 + public.kern2.period + 4 + public.kern2.quoteright + -36 + public.kern2.t + -36 + public.kern2.tecyr + -64 + public.kern2.u + -30 + public.kern2.w + -30 + public.kern2.y + -40 + + public.kern1.L + + public.kern2.A.ss01 + 12 + public.kern2.A2 + 18 + public.kern2.G + -34 + public.kern2.J + 16 + public.kern2.T + -96 + public.kern2.U + -28 + public.kern2.V + -100 + public.kern2.W + -54 + public.kern2.Y + -114 + public.kern2.Z + 6 + public.kern2.a + -10 + public.kern2.emdash + -44 + public.kern2.guillemotleft + -30 + public.kern2.j + 2 + public.kern2.o + -22 + public.kern2.period + 12 + public.kern2.quotedbl + -90 + public.kern2.quoteright + -82 + public.kern2.t + -26 + public.kern2.u + -10 + public.kern2.w + -54 + public.kern2.x + -6 + public.kern2.y + -78 + public.kern2.z + 10 + + public.kern1.O + + Zhe-cy + -42 + public.kern2.A.ss01 + -6 + public.kern2.A.ss012 + -7 + public.kern2.A2 + -26 + public.kern2.J + -28 + public.kern2.Oslash.alt + -38 + public.kern2.S + -6 + public.kern2.T + -30 + public.kern2.Ucyr.ss01 + -30 + public.kern2.V + -36 + public.kern2.W + -16 + public.kern2.Y + -58 + public.kern2.Z + -34 + public.kern2.a + -10 + public.kern2.comma + -54 + public.kern2.decyr.ss01 + -14 + public.kern2.emdash + 8 + public.kern2.j + -4 + public.kern2.period + -44 + public.kern2.quotedbl + -14 + public.kern2.quoteright + 6 + public.kern2.s + -6 + public.kern2.tecyr + 6 + public.kern2.w + -6 + public.kern2.x + -16 + public.kern2.y + -6 + public.kern2.z + -4 + + public.kern1.Oslash.alt + + public.kern2.A.ss01 + 6 + public.kern2.A.ss012 + 6 + public.kern2.A2 + 12 + public.kern2.G + -42 + public.kern2.J + 18 + public.kern2.S + -8 + public.kern2.Ucyr.ss01 + 6 + public.kern2.W + 6 + public.kern2.a + -10 + public.kern2.comma + 10 + public.kern2.decyr.ss01 + 6 + public.kern2.emdash + -26 + public.kern2.f + -2 + public.kern2.g + -2 + public.kern2.i1 + 24 + public.kern2.j + -4 + public.kern2.o + -30 + public.kern2.period + 4 + public.kern2.quotedbl + 6 + public.kern2.quoteright + -52 + public.kern2.s + -2 + public.kern2.t + -16 + public.kern2.tecyr + -38 + public.kern2.u + -10 + public.kern2.w + -20 + public.kern2.x + 6 + public.kern2.y + -26 + + public.kern1.P + + public.kern2.A.ss01 + -40 + public.kern2.A.ss012 + -40 + public.kern2.A2 + -56 + public.kern2.J + -61 + public.kern2.Oslash.alt + -42 + public.kern2.T + -11 + public.kern2.Ucyr.ss01 + -26 + public.kern2.V + -8 + public.kern2.W + -2 + public.kern2.Y + -22 + public.kern2.Z + -28 + public.kern2.a + -20 + public.kern2.comma + -104 + public.kern2.decyr.ss01 + -36 + public.kern2.emdash + -14 + public.kern2.g + -10 + public.kern2.g.ss01 + -14 + public.kern2.j + -18 + public.kern2.o + -24 + public.kern2.period + -142 + public.kern2.quotedbl + -8 + public.kern2.quoteright + 6 + public.kern2.s + -14 + public.kern2.t + 12 + public.kern2.tecyr + 8 + public.kern2.x + -2 + public.kern2.z + -4 + + public.kern1.R + + public.kern2.A.ss01 + 7 + public.kern2.G + -22 + public.kern2.S + -12 + public.kern2.T + -26 + public.kern2.U + -14 + public.kern2.V + -24 + public.kern2.W + -8 + public.kern2.Y + -32 + public.kern2.a + -2 + public.kern2.emdash + -22 + public.kern2.f + -6 + public.kern2.j + -4 + public.kern2.m + -6 + public.kern2.o + -20 + public.kern2.period + 6 + public.kern2.quotedbl + -8 + public.kern2.quoteright + -10 + public.kern2.s + -2 + public.kern2.t + -8 + public.kern2.u + -14 + public.kern2.w + -8 + public.kern2.y + -2 + + public.kern1.S1 + + public.kern2.A.ss01 + 12 + public.kern2.J + 12 + public.kern2.Oslash.alt + -14 + public.kern2.T + -14 + public.kern2.V + -16 + public.kern2.W + -16 + public.kern2.Y + -30 + public.kern2.Z + -4 + public.kern2.comma + -4 + public.kern2.emdash + 10 + public.kern2.f + -12 + public.kern2.g + -8 + public.kern2.i1 + 6 + public.kern2.j + -10 + public.kern2.o + 6 + public.kern2.quotedbl + -24 + public.kern2.quoteright + -18 + public.kern2.t + -2 + public.kern2.w + -13 + public.kern2.x + -14 + public.kern2.y + -19 + + public.kern1.T1 + + public.kern2.A.ss01 + -38 + public.kern2.A.ss012 + -54 + public.kern2.A2 + -58 + public.kern2.G + -30 + public.kern2.J + -64 + public.kern2.S + -4 + public.kern2.T + 28 + public.kern2.Ucyr.ss01 + 6 + public.kern2.V + 8 + public.kern2.W + 14 + public.kern2.Y + 4 + public.kern2.a + -60 + public.kern2.comma + -68 + public.kern2.decyr.ss01 + -68 + public.kern2.emdash + -82 + public.kern2.f + -10 + public.kern2.g + -70 + public.kern2.g.ss01 + -42 + public.kern2.guillemotleft + -56 + public.kern2.guillemotright + -60 + public.kern2.i1 + -1 + public.kern2.j + -20 + public.kern2.m + -42 + public.kern2.o + -80 + public.kern2.period + -94 + public.kern2.quotedbl + 26 + public.kern2.quoteright + -26 + public.kern2.s + -57 + public.kern2.tecyr + -36 + public.kern2.u + -34 + public.kern2.w + -24 + public.kern2.x + -24 + public.kern2.y + -24 + public.kern2.z + -26 + + public.kern1.U1 + + public.kern2.A.ss01 + -10 + public.kern2.A.ss012 + -2 + public.kern2.A2 + -16 + public.kern2.J + -14 + public.kern2.Z + -14 + public.kern2.comma + -30 + public.kern2.i1 + 6 + public.kern2.j + -8 + public.kern2.period + -18 + public.kern2.quoteright + -22 + public.kern2.z + -10 + + public.kern1.Ucyr1 + + public.kern2.A.ss012 + -44 + public.kern2.A2 + -50 + public.kern2.G + -26 + public.kern2.Gecyr + -4 + public.kern2.T + 10 + public.kern2.a + -56 + public.kern2.comma + -84 + public.kern2.decyr.ss01 + -50 + public.kern2.emdash + -50 + public.kern2.guillemotright + -60 + public.kern2.i1 + 38 + public.kern2.m + -48 + public.kern2.o + -64 + public.kern2.period + -102 + public.kern2.tecyr + -14 + public.kern2.x + -26 + public.kern2.y + -30 + + public.kern1.V + + public.kern2.A.ss01 + -54 + public.kern2.A.ss012 + -44 + public.kern2.A2 + -49 + public.kern2.G + -36 + public.kern2.J + -68 + public.kern2.S + -10 + public.kern2.T + 8 + public.kern2.W + 6 + public.kern2.Y + 6 + public.kern2.a + -50 + public.kern2.comma + -88 + public.kern2.emdash + -64 + public.kern2.f + -2 + public.kern2.g + -34 + public.kern2.g.ss01 + -52 + public.kern2.guillemotleft + -46 + public.kern2.guillemotright + -30 + public.kern2.i1 + 29 + public.kern2.j + -14 + public.kern2.m + -50 + public.kern2.o + -63 + public.kern2.period + -106 + public.kern2.quotedbl + 16 + public.kern2.quoteright + -10 + public.kern2.s + -40 + public.kern2.t + -10 + public.kern2.u + -50 + public.kern2.w + -16 + public.kern2.x + -20 + public.kern2.y + -20 + public.kern2.z + -20 + + public.kern1.W.ss011 + + public.kern2.A.ss01 + -28 + public.kern2.A.ss012 + -28 + public.kern2.A2 + -80 + public.kern2.G + -17 + public.kern2.J + -42 + public.kern2.Oslash.alt + 6 + public.kern2.S + -10 + public.kern2.T + 24 + public.kern2.V + 6 + public.kern2.W + 18 + public.kern2.Y + 16 + public.kern2.Z + -10 + public.kern2.a + -38 + public.kern2.comma + -72 + public.kern2.emdash + -32 + public.kern2.g + -18 + public.kern2.g.ss01 + -28 + public.kern2.guillemotright + -11 + public.kern2.i1 + 38 + public.kern2.m + -16 + public.kern2.o + -34 + public.kern2.period + -86 + public.kern2.quotedbl + 22 + public.kern2.quoteright + 8 + public.kern2.s + -22 + public.kern2.u + -22 + public.kern2.w + -25 + public.kern2.z + -16 + + public.kern1.W1 + + public.kern2.A.ss01 + -34 + public.kern2.A.ss012 + -28 + public.kern2.A2 + -41 + public.kern2.G + -16 + public.kern2.J + -52 + public.kern2.S + -8 + public.kern2.T + 8 + public.kern2.V + 6 + public.kern2.Y + 6 + public.kern2.Z + -10 + public.kern2.a + -46 + public.kern2.comma + -40 + public.kern2.emdash + -20 + public.kern2.g + -24 + public.kern2.guillemotleft + -30 + public.kern2.guillemotright + -10 + public.kern2.i1 + 1 + public.kern2.j + -8 + public.kern2.m + -30 + public.kern2.o + -44 + public.kern2.period + -58 + public.kern2.quotedbl + 12 + public.kern2.quoteright + -14 + public.kern2.s + -20 + public.kern2.u + -26 + public.kern2.w + -8 + public.kern2.x + -4 + public.kern2.y + -10 + public.kern2.z + -26 + + public.kern1.Y.ss011 + + public.kern2.A.ss01 + -68 + public.kern2.A.ss012 + -88 + public.kern2.B + -12 + public.kern2.G + -48 + public.kern2.S + -20 + public.kern2.W + 12 + public.kern2.Y + 18 + public.kern2.a + -44 + public.kern2.comma + -102 + public.kern2.emdash + -92 + public.kern2.g.ss01 + -66 + public.kern2.i1 + 40 + public.kern2.m + -82 + public.kern2.o + -112 + public.kern2.period + -120 + public.kern2.quotedbl + 12 + public.kern2.quoteright + -30 + public.kern2.s + -76 + public.kern2.t + -18 + public.kern2.u + -60 + public.kern2.w + -40 + public.kern2.x + -24 + public.kern2.y + -18 + public.kern2.z + -24 + + public.kern1.Y1 + + public.kern2.A.ss012 + -78 + public.kern2.A2 + -74 + public.kern2.B + -6 + public.kern2.G + -58 + public.kern2.J + -62 + public.kern2.S + -36 + public.kern2.T + 10 + public.kern2.V + 10 + public.kern2.W + 6 + public.kern2.Y + 19 + public.kern2.a + -76 + public.kern2.comma + -92 + public.kern2.emdash + -96 + public.kern2.f + -30 + public.kern2.g + -72 + public.kern2.guillemotleft + -88 + public.kern2.guillemotright + -66 + public.kern2.i1 + 28 + public.kern2.j + -12 + public.kern2.m + -86 + public.kern2.o + -106 + public.kern2.period + -136 + public.kern2.quotedbl + 22 + public.kern2.quoteright + -32 + public.kern2.s + -82 + public.kern2.t + -16 + public.kern2.u + -70 + public.kern2.w + -48 + public.kern2.x + -46 + public.kern2.y + -46 + public.kern2.z + -50 + + public.kern1.Yacyr + + public.kern2.A.ss012 + 6 + public.kern2.Ucyr.ss01 + -4 + public.kern2.i1 + 6 + + public.kern1.Z1 + + public.kern2.A.ss01 + 28 + public.kern2.A.ss012 + 26 + public.kern2.A2 + 12 + public.kern2.B + 6 + public.kern2.G + -26 + public.kern2.J + 24 + public.kern2.Oslash.alt + -6 + public.kern2.S + 12 + public.kern2.T + 4 + public.kern2.U + -8 + public.kern2.V + 6 + public.kern2.W + 4 + public.kern2.Z + 12 + public.kern2.a + 2 + public.kern2.comma + 22 + public.kern2.emdash + -34 + public.kern2.f + -2 + public.kern2.h + 6 + public.kern2.i1 + 28 + public.kern2.j + 12 + public.kern2.o + -10 + public.kern2.period + 22 + public.kern2.quoteright + -34 + public.kern2.s + 2 + public.kern2.t + -4 + public.kern2.u + -14 + public.kern2.w + -14 + public.kern2.x + 6 + public.kern2.y + -10 + public.kern2.z + 18 + + public.kern1.a1 + + public.kern2.A.ss012 + 15 + public.kern2.G + -2 + public.kern2.J + 6 + public.kern2.S + -8 + public.kern2.T + -70 + public.kern2.U + -6 + public.kern2.Ucyr.ss01 + -2 + public.kern2.V + -62 + public.kern2.W + -40 + public.kern2.Y + -92 + public.kern2.comma + -4 + public.kern2.f + -4 + public.kern2.j + -8 + public.kern2.quotedbl + -36 + public.kern2.quoteright + -36 + public.kern2.t + -8 + public.kern2.tecyr + -1 + public.kern2.u + -10 + public.kern2.w + -24 + public.kern2.y + -20 + public.kern2.z + 5 + + public.kern1.c1 + + public.kern2.A.ss012 + 12 + public.kern2.A2 + 14 + public.kern2.G + 4 + public.kern2.J + 12 + public.kern2.Oslash.alt + -6 + public.kern2.T + -50 + public.kern2.Ucyr.ss01 + -38 + public.kern2.V + -36 + public.kern2.W + -20 + public.kern2.Y + -50 + public.kern2.Z + 6 + public.kern2.emdash + -18 + public.kern2.g + 2 + public.kern2.h + -6 + public.kern2.o + -6 + public.kern2.period + -2 + public.kern2.quotedbl + -12 + public.kern2.quoteright + -8 + public.kern2.t + 6 + public.kern2.tecyr + 6 + public.kern2.x + -6 + public.kern2.y + -3 + + public.kern1.comma1 + + public.kern2.A.ss01 + 4 + public.kern2.A.ss012 + 6 + public.kern2.G + -32 + public.kern2.J + 26 + public.kern2.T + -76 + public.kern2.U + -12 + public.kern2.Ucyr.ss01 + -18 + public.kern2.V + -74 + public.kern2.W + -36 + public.kern2.Y + -106 + public.kern2.Z + 18 + public.kern2.a + -8 + public.kern2.decyr.ss01 + 6 + public.kern2.f + -12 + public.kern2.five + -8 + public.kern2.h + -8 + public.kern2.i1 + -8 + public.kern2.j + 6 + public.kern2.m + -14 + public.kern2.o + -18 + public.kern2.t + -30 + public.kern2.tecyr + -42 + public.kern2.u + -12 + public.kern2.w + -18 + public.kern2.x + -14 + public.kern2.y + -40 + public.kern2.z + 2 + public.kern2.zero + -12 + + public.kern1.dcaron + + public.kern2.A2 + 6 + public.kern2.B + 74 + public.kern2.G + 28 + public.kern2.J + 12 + public.kern2.Oslash.alt + 108 + public.kern2.S + 62 + public.kern2.T + 120 + public.kern2.U + 78 + public.kern2.V + 128 + public.kern2.W + 114 + public.kern2.Y + 128 + public.kern2.Z + 98 + public.kern2.a + 10 + public.kern2.f + 68 + public.kern2.fi.ss01 + 80 + public.kern2.g + 6 + public.kern2.g.ss01 + 6 + public.kern2.h + 94 + public.kern2.i1 + 100 + public.kern2.j + 88 + public.kern2.l.ss01 + 78 + public.kern2.m + 22 + public.kern2.o + 15 + public.kern2.s + 16 + public.kern2.t + 70 + public.kern2.u + 12 + public.kern2.w + 30 + public.kern2.x + 30 + public.kern2.y + 30 + public.kern2.z + 36 + + public.kern1.decyr1 + + public.kern2.A.ss012 + 18 + public.kern2.A2 + 16 + public.kern2.G + -12 + public.kern2.Oslash.alt + 6 + public.kern2.T + -62 + public.kern2.Ucyr.ss01 + -28 + public.kern2.comma + 28 + public.kern2.decyr.ss01 + 18 + public.kern2.emdash + -9 + public.kern2.o + -14 + public.kern2.period + 16 + public.kern2.quoteright + -20 + public.kern2.tecyr + -26 + public.kern2.x + 6 + public.kern2.y + -10 + + public.kern1.e.ss011 + + public.kern2.Oslash.alt + -10 + public.kern2.T + -48 + public.kern2.V + -50 + public.kern2.W + -18 + public.kern2.Y + -60 + public.kern2.comma + -6 + public.kern2.l.ss01 + -6 + public.kern2.o + -6 + public.kern2.quotedbl + -40 + public.kern2.quoteright + -12 + public.kern2.w + -12 + public.kern2.y + -12 + + public.kern1.e1 + + public.kern2.A.ss012 + 15 + public.kern2.A2 + -2 + public.kern2.G + 6 + public.kern2.Oslash.alt + -20 + public.kern2.T + -68 + public.kern2.Ucyr.ss01 + -58 + public.kern2.V + -60 + public.kern2.W + -38 + public.kern2.Y + -98 + public.kern2.Z + -10 + public.kern2.comma + -8 + public.kern2.emdash + 3 + public.kern2.j + -8 + public.kern2.o + 6 + public.kern2.period + -8 + public.kern2.quotedbl + -24 + public.kern2.quoteright + -16 + public.kern2.w + -16 + public.kern2.x + -20 + public.kern2.y + -26 + public.kern2.z + -4 + + public.kern1.emdash1 + + public.kern2.A.ss01 + 16 + public.kern2.A2 + -4 + public.kern2.G + 8 + public.kern2.J + -2 + public.kern2.Oslash.alt + -26 + public.kern2.S + -18 + public.kern2.T + -82 + public.kern2.Ucyr.ss01 + -50 + public.kern2.V + -52 + public.kern2.W + -20 + public.kern2.Y + -96 + public.kern2.Z + -14 + public.kern2.decyr.ss01 + -18 + public.kern2.f + -18 + public.kern2.five + -20 + public.kern2.four + 8 + public.kern2.g.ss01 + 10 + public.kern2.j + -8 + public.kern2.o + 10 + public.kern2.s + -6 + public.kern2.t + -12 + public.kern2.tecyr + -40 + public.kern2.w + -6 + public.kern2.x + -32 + public.kern2.y + -22 + public.kern2.z + -12 + + public.kern1.f1 + + public.kern2.A.ss012 + -10 + public.kern2.A2 + -32 + public.kern2.J + -42 + public.kern2.S + 10 + public.kern2.T + 16 + public.kern2.V + 4 + public.kern2.Y + 10 + public.kern2.a + -14 + public.kern2.comma + -46 + public.kern2.emdash + -26 + public.kern2.f + 10 + public.kern2.g + -4 + public.kern2.h + 9 + public.kern2.i1 + 1 + public.kern2.o + -18 + public.kern2.period + -58 + public.kern2.quotedbl + 32 + public.kern2.quoteright + 20 + public.kern2.s + -8 + public.kern2.t + 24 + public.kern2.w + 6 + public.kern2.x + 6 + public.kern2.y + 14 + + public.kern1.five1 + + public.kern2.comma + -30 + public.kern2.five + -12 + public.kern2.four + 6 + public.kern2.i1 + 12 + public.kern2.period + -6 + + public.kern1.four1 + + public.kern2.emdash + -8 + public.kern2.five + 16 + public.kern2.four + 16 + public.kern2.period + 12 + public.kern2.quotedbl + -20 + + public.kern1.g.ss011 + + public.kern2.A.ss01 + 12 + public.kern2.V + -8 + public.kern2.W + 12 + public.kern2.Y + -18 + public.kern2.g.ss01 + 12 + public.kern2.h + 6 + public.kern2.i1 + 6 + public.kern2.j + 43 + public.kern2.l.ss01 + 12 + public.kern2.m + 6 + public.kern2.o + 6 + public.kern2.quotedbl + 24 + public.kern2.quoteright + 28 + public.kern2.s + 6 + public.kern2.t + 24 + public.kern2.w + 12 + public.kern2.x + 12 + public.kern2.y + 18 + public.kern2.z + 18 + + public.kern1.g1 + + public.kern2.A2 + 14 + public.kern2.T + -32 + public.kern2.V + -20 + public.kern2.W + -4 + public.kern2.Y + -30 + public.kern2.a + -6 + public.kern2.comma + 16 + public.kern2.f + 7 + public.kern2.i1 + 6 + public.kern2.j + 42 + public.kern2.m + -6 + public.kern2.quotedbl + -4 + public.kern2.s + -6 + public.kern2.w + -6 + public.kern2.y + -2 + + public.kern1.gecyr + + public.kern2.A.ss012 + -6 + public.kern2.A2 + -22 + public.kern2.G + 6 + public.kern2.Oslash.alt + -12 + public.kern2.T + -28 + public.kern2.Ucyr.ss01 + -32 + public.kern2.a + -12 + public.kern2.comma + -62 + public.kern2.decyr.ss01 + -30 + public.kern2.emdash + -50 + public.kern2.i1 + 24 + public.kern2.o + -17 + public.kern2.period + -92 + public.kern2.quoteright + 26 + public.kern2.tecyr + 8 + public.kern2.x + 4 + public.kern2.y + 8 + + public.kern1.guillemotright1 + + public.kern2.J + -34 + public.kern2.T + -56 + public.kern2.V + -46 + public.kern2.W + -30 + public.kern2.Y + -88 + + public.kern1.hardcyr + + public.kern2.Oslash.alt + -10 + public.kern2.T + -76 + public.kern2.Ucyr.ss01 + -48 + public.kern2.comma + -6 + public.kern2.quotedbl + -90 + public.kern2.quoteright + -48 + public.kern2.tecyr + -78 + public.kern2.x + -20 + public.kern2.y + -56 + + public.kern1.i1 + + public.kern2.B + 6 + public.kern2.Gecyr + 6 + public.kern2.Oslash.alt + 24 + public.kern2.T + -4 + public.kern2.U + 6 + public.kern2.Ucyr.ss01 + 30 + public.kern2.V + 38 + public.kern2.W + 40 + public.kern2.Y + 44 + public.kern2.Z + 18 + public.kern2.h + 6 + public.kern2.i1 + 14 + public.kern2.j + -10 + public.kern2.percent + 18 + public.kern2.quotedbl + 6 + public.kern2.quoteright + -10 + + public.kern1.icyr1 + + public.kern2.A.ss012 + 6 + public.kern2.J + 6 + public.kern2.T + -36 + public.kern2.Ucyr.ss01 + -48 + public.kern2.V + -20 + public.kern2.W + -20 + public.kern2.Y + -80 + public.kern2.comma + -6 + public.kern2.j + 19 + public.kern2.quoteright + -8 + + public.kern1.j1 + + public.kern2.T + -12 + public.kern2.i1 + 6 + public.kern2.j + 18 + public.kern2.quotedbl + 6 + public.kern2.quoteright + -8 + public.kern2.z + 6 + + public.kern1.k + + public.kern2.A.ss01 + 12 + public.kern2.A.ss012 + 16 + public.kern2.A2 + 16 + public.kern2.G + -16 + public.kern2.J + 16 + public.kern2.T + -24 + public.kern2.Ucyr.ss01 + -20 + public.kern2.V + -18 + public.kern2.W + -20 + public.kern2.Y + -38 + public.kern2.a + -10 + public.kern2.emdash + -46 + public.kern2.l.ss01 + -6 + public.kern2.o + -26 + public.kern2.quoteright + -6 + public.kern2.x + 13 + public.kern2.z + 6 + + public.kern1.l + + public.kern2.guillemotright + 6 + public.kern2.h + 1 + public.kern2.i1 + 6 + public.kern2.quoteright + -8 + public.kern2.s + 3 + + public.kern1.l.ss011 + + public.kern2.A.ss01 + 20 + public.kern2.G + -6 + public.kern2.T + -42 + public.kern2.U + -6 + public.kern2.V + -46 + public.kern2.W + -40 + public.kern2.Y + -30 + public.kern2.emdash + -6 + public.kern2.f + -40 + public.kern2.fi.ss01 + -6 + public.kern2.j + -8 + public.kern2.o + -6 + public.kern2.period + 6 + public.kern2.quotedbl + -26 + public.kern2.quoteright + -18 + public.kern2.t + -27 + public.kern2.w + -42 + public.kern2.y + -48 + public.kern2.z + 6 + + public.kern1.n + + public.kern2.A.ss01 + 6 + public.kern2.A.ss012 + 6 + public.kern2.G + -6 + public.kern2.J + 12 + public.kern2.T + -62 + public.kern2.Ucyr.ss01 + -58 + public.kern2.V + -60 + public.kern2.W + -40 + public.kern2.Y + -100 + public.kern2.emdash + 6 + public.kern2.guillemotright + 6 + public.kern2.j + -8 + public.kern2.quotedbl + -28 + public.kern2.quoteright + -8 + public.kern2.t + -6 + public.kern2.tecyr + -4 + public.kern2.w + -18 + public.kern2.y + -23 + + public.kern1.numero + + public.kern2.i1 + 24 + + public.kern1.o1 + + public.kern2.A.ss01 + 6 + public.kern2.A.ss012 + 5 + public.kern2.A2 + -10 + public.kern2.J + -2 + public.kern2.Oslash.alt + -30 + public.kern2.S + -16 + public.kern2.T + -80 + public.kern2.Ucyr.ss01 + -60 + public.kern2.V + -63 + public.kern2.W + -44 + public.kern2.Y + -106 + public.kern2.Z + -24 + public.kern2.a + -2 + public.kern2.comma + -28 + public.kern2.emdash + 6 + public.kern2.j + -8 + public.kern2.period + -26 + public.kern2.quotedbl + -28 + public.kern2.quoteright + -22 + public.kern2.s + -10 + public.kern2.tecyr + -14 + public.kern2.w + -18 + public.kern2.x + -25 + public.kern2.y + -28 + public.kern2.z + -14 + + public.kern1.period1 + + public.kern2.A.ss01 + 26 + public.kern2.A.ss012 + 30 + public.kern2.A2 + 36 + public.kern2.G + -44 + public.kern2.J + 38 + public.kern2.Oslash.alt + 10 + public.kern2.T + -94 + public.kern2.U + -18 + public.kern2.Ucyr.ss01 + -20 + public.kern2.V + -94 + public.kern2.W + -58 + public.kern2.Y + -136 + public.kern2.Z + 16 + public.kern2.decyr.ss01 + 12 + public.kern2.f + -18 + public.kern2.five + -4 + public.kern2.g.ss01 + 6 + public.kern2.j + -2 + public.kern2.o + -26 + public.kern2.quotedbl + -24 + public.kern2.t + -30 + public.kern2.tecyr + -66 + public.kern2.u + -12 + public.kern2.w + -36 + public.kern2.y + -75 + public.kern2.z + 6 + public.kern2.zero + -16 + + public.kern1.quotedbl1 + + public.kern2.A.ss01 + -62 + public.kern2.A.ss012 + -42 + public.kern2.A2 + -50 + public.kern2.G + -14 + public.kern2.J + -62 + public.kern2.Oslash.alt + 12 + public.kern2.T + 30 + public.kern2.V + 16 + public.kern2.W + 22 + public.kern2.Y + 22 + public.kern2.Z + 2 + public.kern2.a + -19 + public.kern2.decyr.ss01 + -40 + public.kern2.four + -66 + public.kern2.g + -24 + public.kern2.g.ss01 + -26 + public.kern2.h + 6 + public.kern2.i1 + 6 + public.kern2.j + -8 + public.kern2.l.ss01 + 6 + public.kern2.o + -28 + public.kern2.period + -27 + public.kern2.s + -24 + public.kern2.t + 12 + public.kern2.w + 6 + public.kern2.x + -4 + public.kern2.y + 6 + public.kern2.z + -4 + public.kern2.zero + -14 + + public.kern1.quoteleft1 + + public.kern2.A.ss01 + -54 + public.kern2.A.ss012 + -30 + public.kern2.A2 + -38 + public.kern2.B + 6 + public.kern2.G + -20 + public.kern2.Gecyr + 6 + public.kern2.J + -16 + public.kern2.Oslash.alt + 22 + public.kern2.T + 28 + public.kern2.Ucyr.ss01 + 30 + public.kern2.V + 26 + public.kern2.W + 30 + public.kern2.Y + 36 + public.kern2.Z + 6 + public.kern2.a + -30 + public.kern2.decyr.ss01 + -6 + public.kern2.f + 4 + public.kern2.g + -44 + public.kern2.g.ss01 + -34 + public.kern2.i1 + 42 + public.kern2.j + -4 + public.kern2.m + -20 + public.kern2.o + -48 + public.kern2.s + -24 + public.kern2.u + -20 + public.kern2.w + -12 + public.kern2.x + -24 + public.kern2.y + -14 + public.kern2.z + -24 + + public.kern1.quoteright1 + + public.kern2.A.ss01 + -60 + public.kern2.A2 + -60 + public.kern2.B + -4 + public.kern2.G + -34 + public.kern2.J + -44 + public.kern2.Oslash.alt + 2 + public.kern2.S + -18 + public.kern2.T + 16 + public.kern2.U + -8 + public.kern2.V + 22 + public.kern2.W + 26 + public.kern2.Y + 24 + public.kern2.Z + -8 + public.kern2.a + -64 + public.kern2.f + -6 + public.kern2.g + -74 + public.kern2.g.ss01 + -52 + public.kern2.h + -18 + public.kern2.i1 + 5 + public.kern2.m + -24 + public.kern2.o + -78 + public.kern2.s + -70 + public.kern2.t + -4 + public.kern2.u + -24 + public.kern2.w + -16 + public.kern2.x + -16 + public.kern2.y + -30 + public.kern2.z + -42 + + public.kern1.s1 + + public.kern2.A.ss01 + 6 + public.kern2.A2 + 4 + public.kern2.G + -6 + public.kern2.J + 10 + public.kern2.Oslash.alt + -2 + public.kern2.T + -57 + public.kern2.V + -40 + public.kern2.W + -26 + public.kern2.Y + -72 + public.kern2.Z + -4 + public.kern2.a + 3 + public.kern2.comma + -4 + public.kern2.f + -6 + public.kern2.g.ss01 + -6 + public.kern2.guillemotright + 12 + public.kern2.period + -8 + public.kern2.quotedbl + -30 + public.kern2.quoteright + -14 + public.kern2.t + -6 + public.kern2.w + -15 + public.kern2.x + -10 + public.kern2.y + -18 + + public.kern1.t.ss011 + + public.kern2.A.ss01 + 18 + public.kern2.B + 6 + public.kern2.G + 6 + public.kern2.Y + -24 + public.kern2.Z + 6 + public.kern2.emdash + -4 + public.kern2.h + 6 + public.kern2.l.ss01 + 6 + public.kern2.m + 6 + public.kern2.o + 6 + public.kern2.period + 12 + public.kern2.quoteright + 6 + public.kern2.t + 18 + public.kern2.z + 18 + + public.kern1.t1 + + public.kern2.G + -4 + public.kern2.J + 26 + public.kern2.T + -6 + public.kern2.V + -20 + public.kern2.W + -4 + public.kern2.Y + -22 + public.kern2.Z + 6 + public.kern2.emdash + -12 + public.kern2.f + 12 + public.kern2.g + 6 + public.kern2.h + 7 + public.kern2.i1 + 6 + public.kern2.j + 7 + public.kern2.l.ss01 + 6 + public.kern2.o + -4 + public.kern2.period + 6 + public.kern2.quotedbl + 12 + public.kern2.quoteright + 6 + public.kern2.t + 16 + public.kern2.x + 6 + public.kern2.y + 4 + public.kern2.z + 14 + + public.kern1.u1 + + public.kern2.A.ss01 + 6 + public.kern2.J + 6 + public.kern2.T + -48 + public.kern2.V + -50 + public.kern2.W + -24 + public.kern2.Y + -80 + public.kern2.j + -8 + public.kern2.quoteright + -8 + + public.kern1.uni0435.ss011 + + public.kern2.A.ss012 + 12 + public.kern2.T + -64 + public.kern2.Ucyr.ss01 + -42 + public.kern2.V + -50 + public.kern2.W + -14 + public.kern2.Y + -72 + public.kern2.period + 6 + public.kern2.quoteright + 12 + public.kern2.w + -8 + public.kern2.x + -4 + public.kern2.y + -10 + + public.kern1.w1 + + public.kern2.A.ss01 + -12 + public.kern2.A.ss012 + -7 + public.kern2.A2 + -20 + public.kern2.J + -18 + public.kern2.Oslash.alt + -20 + public.kern2.S + -8 + public.kern2.T + -24 + public.kern2.V + -16 + public.kern2.W + -8 + public.kern2.Y + -48 + public.kern2.Z + -30 + public.kern2.a + -18 + public.kern2.comma + -32 + public.kern2.emdash + -6 + public.kern2.f + 6 + public.kern2.g + -6 + public.kern2.g.ss01 + -10 + public.kern2.j + -10 + public.kern2.o + -18 + public.kern2.period + -36 + public.kern2.quotedbl + 6 + public.kern2.quoteright + 6 + public.kern2.s + -14 + public.kern2.w + -6 + + public.kern1.x + + public.kern2.A.ss01 + 12 + public.kern2.A2 + 6 + public.kern2.G + -16 + public.kern2.J + 12 + public.kern2.S + -4 + public.kern2.T + -24 + public.kern2.Ucyr.ss01 + -14 + public.kern2.V + -20 + public.kern2.W + -4 + public.kern2.Y + -46 + public.kern2.a + -6 + public.kern2.emdash + -32 + public.kern2.o + -25 + public.kern2.quotedbl + -4 + public.kern2.quoteright + -6 + public.kern2.s + -4 + + public.kern1.y1 + + public.kern2.A.ss01 + -12 + public.kern2.A.ss012 + -14 + public.kern2.A2 + -20 + public.kern2.G + -6 + public.kern2.J + -28 + public.kern2.Oslash.alt + -30 + public.kern2.T + -24 + public.kern2.Ucyr.ss01 + -20 + public.kern2.V + -20 + public.kern2.W + -8 + public.kern2.Y + -46 + public.kern2.Z + -20 + public.kern2.a + -11 + public.kern2.comma + -52 + public.kern2.decyr.ss01 + -26 + public.kern2.emdash + -18 + public.kern2.f + 14 + public.kern2.g + -10 + public.kern2.g.ss01 + -8 + public.kern2.h + -6 + public.kern2.j + -10 + public.kern2.o + -16 + public.kern2.period + -74 + public.kern2.quotedbl + 6 + public.kern2.quoteright + 14 + public.kern2.s + -12 + public.kern2.t + 10 + public.kern2.tecyr + 4 + public.kern2.x + 6 + public.kern2.y + 6 + + public.kern1.z1 + + public.kern2.A.ss012 + 12 + public.kern2.A2 + 16 + public.kern2.J + 18 + public.kern2.S + -8 + public.kern2.T + -26 + public.kern2.V + -20 + public.kern2.W + -26 + public.kern2.Y + -50 + public.kern2.comma + 10 + public.kern2.f + 4 + public.kern2.g + 6 + public.kern2.j + 6 + public.kern2.o + -14 + public.kern2.period + 6 + public.kern2.quotedbl + -8 + public.kern2.quoteright + -4 + public.kern2.s + 3 + public.kern2.t + 6 + public.kern2.x + 6 + public.kern2.z + 6 + + + diff --git a/sources/FixelText-Bold.ufo/layercontents.plist b/sources/FixelText-Bold.ufo/layercontents.plist new file mode 100644 index 00000000..7a35a5cf --- /dev/null +++ b/sources/FixelText-Bold.ufo/layercontents.plist @@ -0,0 +1,10 @@ + + + + + + public.default + glyphs + + + diff --git a/sources/FixelText-Bold.ufo/lib.plist b/sources/FixelText-Bold.ufo/lib.plist new file mode 100644 index 00000000..c0069150 --- /dev/null +++ b/sources/FixelText-Bold.ufo/lib.plist @@ -0,0 +1,1671 @@ + + + + + com.fontlab.v2.tth + + stems + + 69 + + width + 69 + horizontal + + round + + 35 + 3 + 47 + 4 + 60 + 5 + 0 + 7 + 22 + 8 + + + 74 + + width + 74 + horizontal + + round + + 19 + 2 + 35 + 3 + 47 + 4 + 60 + 5 + 72 + 6 + 0 + 7 + 20 + 8 + + + 76 + + width + 76 + horizontal + + round + + 19 + 2 + 35 + 3 + 72 + 6 + 0 + 7 + 20 + 8 + + + 80 + + width + 80 + horizontal + + round + + 29 + 3 + 47 + 4 + 60 + 5 + 72 + 6 + 0 + 7 + 20 + 8 + + + 99 + + width + 99 + horizontal + + round + + 19 + 2 + 29 + 3 + 37 + 4 + 48 + 5 + 58 + 6 + 0 + 7 + 16 + 8 + + + 74 + + width + 74 + horizontal + + round + + 19 + 2 + 35 + 3 + 47 + 4 + 60 + 5 + 72 + 6 + 0 + 7 + 20 + 8 + + + 80 + + width + 80 + horizontal + + round + + 29 + 3 + 47 + 4 + 60 + 5 + 72 + 6 + 0 + 7 + 20 + 8 + + + 93 + + width + 93 + horizontal + + round + + 19 + 2 + 29 + 3 + 37 + 4 + 48 + 5 + 58 + 6 + 0 + 7 + 16 + 8 + + + + + com.schriftgestaltung.disablesAutomaticAlignment + + com.schriftgestaltung.fontMasterID + master01 + com.schriftgestaltung.glyphOrder + + com.schriftgestaltung.master.name + regular + com.schriftgestaltung.useNiceNames + + com.schriftgestaltung.weightValue + 400 + public.postscriptNames + + A-cy + uni0410 + A-cy.ss01 + uni0410.ss01 + Be-cy + uni0411 + Che-cy + uni0427 + De-cy + uni0414 + Dze-cy + uni0405 + E-cy + uni0404 + Ef-cy + uni0424 + El-cy + uni041B + Em-cy + uni041C + Em-cy.ss01 + uni041C.ss01 + En-cy + uni041D + Er-cy + uni0420 + Ereversed-cy + uni042D + Es-cy + uni0421 + Gacute + uni01F4 + Gacute.ss01 + uni01F4.ss01 + Gcommaaccent + uni0122 + Gcommaaccent.ss01 + uni0122.ss01 + Ge-cy + uni0413 + Germandbls + uni1E9E + Gheupturn-cy + uni0490 + Ha-cy + uni0425 + Ha-cy.ss01 + uni0425.ss01 + Hardsign-cy + uni042A + I-cy + uni0406 + Ia-cy + uni042F + Ia-cy.ss01 + uni042F.ss01 + Ie-cy + uni0415 + Ii-cy + uni0418 + Iishort-cy + uni0419 + Io-cy + uni0401 + Iu-cy + uni042E + Ka-cy + uni041A + Ka-cy.ss01 + uni041A.ss01 + Kcommaaccent + uni0136 + Kcommaaccent.ss01 + uni0136.ss01 + Lcommaaccent + uni013B + Ncommaaccent + uni0145 + Ncommaaccent.ss01 + uni0145.ss01 + O-cy + uni041E + Pe-cy + uni041F + Rcommaaccent + uni0156 + Scommaaccent + uni0218 + Sha-cy + uni0428 + Shcha-cy + uni0429 + Softsign-cy + uni042C + Tcedilla + uni0162 + Tcommaaccent + uni021A + Te-cy + uni0422 + Tse-cy + uni0426 + U-cy + uni0423 + U-cy.ss01 + uni0423.ss01 + Ushort-cy + uni040E + Ushort-cy.ss01 + uni040E.ss01 + Ve-cy + uni0412 + Yeru-cy + uni042B + Yi-cy + uni0407 + Ze-cy + uni0417 + Zhe-cy + uni0416 + Zhe-cy.ss01 + uni0416.ss01 + _perc-circule + _perccircule + a-cy + uni0430 + a-cy.ss01 + uni0430.ss01 + be-cy + uni0431 + che-cy + uni0447 + commaaccentcomb + uni0326 + commaaccentcomb.salt + uni0326.salt + de-cy + uni0434 + de-cy.ss01 + uni0434.ss01 + dze-cy + uni0455 + e-cy + uni0454 + ef-cy + uni0444 + el-cy + uni043B + el-cy.ss01 + uni043B.ss01 + em-cy + uni043C + en-cy + uni043D + er-cy + uni0440 + er-cy.ss01 + uni0440.ss01 + ereversed-cy + uni044D + es-cy + uni0441 + euro + Euro + gacute + uni01F5 + gacute.ss01 + uni01F5.ss01 + gcommaaccent + uni0123 + gcommaaccent.ss01 + uni0123.ss01 + ge-cy + uni0433 + gheupturn-cy + uni0491 + guillemetleft + guillemotleft + guillemetright + guillemotright + ha-cy + uni0445 + hardsign-cy + uni044A + hardsign-cy.ss01 + uni044A.ss01 + hryvnia + uni20B4 + i-cy + uni0456 + ia-cy + uni044F + ia-cy.ss01 + uni044F.ss01 + idotless + dotlessi + ie-cy + uni0435 + ie-cy.ss01 + uni0435.ss01 + ii-cy + uni0438 + iishort-cy + uni0439 + io-cy + uni0451 + io-cy.ss01 + uni0451.ss01 + iu-cy + uni044E + jdotless + uni0237 + je-cy + uni0458 + ka-cy + uni043A + kcommaaccent + uni0137 + lcommaaccent + uni013C + lcommaaccent.ss01 + uni013C.ss01 + ncommaaccent + uni0146 + numero + uni2116 + numero.ss01 + uni2116.ss01 + o-cy + uni043E + onesuperior + uni00B9 + pe-cy + uni043F + rcommaaccent + uni0157 + scommaaccent + uni0219 + sha-cy + uni0448 + shcha-cy + uni0449 + softsign-cy + uni044C + softsign-cy.ss01 + uni044C.ss01 + tcedilla + uni0163 + tcedilla.ss01 + uni0163.ss01 + tcommaaccent + uni021B + tcommaaccent.ss01 + uni021B.ss01 + te-cy + uni0442 + te-cy.ss01 + uni0442.ss01 + threesuperior + uni00B3 + tse-cy + uni0446 + twosuperior + uni00B2 + u-cy + uni0443 + ushort-cy + uni045E + ve-cy + uni0432 + ve-cy.ss01 + uni0432.ss01 + yeru-cy + uni044B + yeru-cy.ss01 + uni044B.ss01 + yi-cy + uni0457 + ze-cy + uni0437 + zhe-cy + uni0436 + + public.skipExportGlyphs + + Oslash.bold + oslash.bold + _perc-circule + + public.glyphOrder + + .notdef + NULL + CR + space + A + Aacute + Abreve + Acircumflex + Adieresis + Agrave + Amacron + Aogonek + Aring + Atilde + AE + B + C + Cacute + Ccaron + Ccedilla + Ccircumflex + Cdotaccent + D + Eth + Dcaron + Dcroat + E + Eacute + Ebreve + Ecaron + Ecircumflex + Edieresis + Edotaccent + Egrave + Emacron + Eogonek + F + G + Gacute + Gbreve + Gcircumflex + Gcommaaccent + Gdotaccent + H + Hbar + Hcircumflex + I + IJ + Iacute + Ibreve + Icircumflex + Idieresis + Idotaccent + Igrave + Imacron + Iogonek + Itilde + J + Jcircumflex + K + Kcommaaccent + L + Lacute + Lcaron + Lcommaaccent + Ldot + Lslash + M + N + Nacute + Ncaron + Ncommaaccent + Eng + Ntilde + O + Oacute + Obreve + Ocircumflex + Odieresis + Ograve + Ohungarumlaut + Omacron + Oslash + Otilde + OE + P + Thorn + Q + R + Racute + Rcaron + Rcommaaccent + S + Sacute + Scaron + Scedilla + Scircumflex + Scommaaccent + Germandbls + T + Tbar + Tcaron + Tcedilla + Tcommaaccent + U + Uacute + Ubreve + Ucircumflex + Udieresis + Ugrave + Uhungarumlaut + Umacron + Uogonek + Uring + Utilde + V + W + Wacute + Wcircumflex + Wdieresis + Wgrave + X + Y + Yacute + Ycircumflex + Ydieresis + Z + Zacute + Zcaron + Zdotaccent + A.ss01 + Aacute.ss01 + Abreve.ss01 + Acircumflex.ss01 + Adieresis.ss01 + Agrave.ss01 + Amacron.ss01 + Aogonek.ss01 + Aring.ss01 + Atilde.ss01 + AE.ss01 + G.ss01 + Gacute.ss01 + Gbreve.ss01 + Gcircumflex.ss01 + Gcommaaccent.ss01 + Gdotaccent.ss01 + J.ss01 + Jcircumflex.ss01 + K.ss01 + Kcommaaccent.ss01 + M.ss01 + N.ss01 + Nacute.ss01 + Ncaron.ss01 + Ncommaaccent.ss01 + Eng.ss01 + Ntilde.ss01 + Q.ss01 + V.ss01 + W.ss01 + Wacute.ss01 + Wcircumflex.ss01 + Wdieresis.ss01 + Wgrave.ss01 + X.ss01 + Y.ss01 + Yacute.ss01 + Ycircumflex.ss01 + Ydieresis.ss01 + Z.ss01 + Zacute.ss01 + Zcaron.ss01 + Zdotaccent.ss01 + a + aacute + abreve + acircumflex + adieresis + agrave + amacron + aogonek + aring + atilde + ae + b + c + cacute + ccaron + ccedilla + ccircumflex + cdotaccent + d + eth + dcaron + dcroat + e + eacute + ebreve + ecaron + ecircumflex + edieresis + edotaccent + egrave + emacron + eogonek + f + g + gacute + gbreve + gcircumflex + gcommaaccent + gdotaccent + h + hbar + hcircumflex + i + idotless + iacute + ibreve + icircumflex + idieresis + igrave + ij + imacron + iogonek + itilde + j + jdotless + jcircumflex + k + kcommaaccent + kgreenlandic + l + lacute + lcaron + lcommaaccent + ldot + lslash + m + n + nacute + napostrophe + ncaron + ncommaaccent + eng + ntilde + o + oacute + obreve + ocircumflex + odieresis + ograve + ohungarumlaut + omacron + oslash + otilde + oe + p + thorn + q + r + racute + rcaron + rcommaaccent + s + sacute + scaron + scedilla + scircumflex + scommaaccent + germandbls + t + tbar + tcaron + tcedilla + tcommaaccent + u + uacute + ubreve + ucircumflex + udieresis + ugrave + uhungarumlaut + umacron + uogonek + uring + utilde + v + w + wacute + wcircumflex + wdieresis + wgrave + x + y + yacute + ycircumflex + ydieresis + z + zacute + zcaron + zdotaccent + a.ss01 + aacute.ss01 + abreve.ss01 + acircumflex.ss01 + adieresis.ss01 + agrave.ss01 + amacron.ss01 + aogonek.ss01 + aring.ss01 + atilde.ss01 + ae.ss01 + b.ss01 + d.ss01 + dcaron.ss01 + dcroat.ss01 + e.ss01 + eacute.ss01 + ebreve.ss01 + ecaron.ss01 + ecircumflex.ss01 + edieresis.ss01 + edotaccent.ss01 + egrave.ss01 + emacron.ss01 + eogonek.ss01 + f.ss01 + g.ss01 + gacute.ss01 + gbreve.ss01 + gcircumflex.ss01 + gcommaaccent.ss01 + gdotaccent.ss01 + l.ss01 + lacute.ss01 + lcaron.ss01 + lcommaaccent.ss01 + ldot.ss01 + lslash.ss01 + oe.ss01 + p.ss01 + q.ss01 + germandbls.ss01 + t.ss01 + tbar.ss01 + tcaron.ss01 + tcedilla.ss01 + tcommaaccent.ss01 + f_f + f_f_i + f_f_l + fi + fl + f_f.ss01 + f_f_i.ss01 + f_f_l.ss01 + fi.ss01 + fl.ss01 + ordfeminine + ordmasculine + A-cy + Be-cy + Ve-cy + Ge-cy + Gheupturn-cy + De-cy + Ie-cy + Io-cy + Zhe-cy + Ze-cy + Ii-cy + Iishort-cy + Ka-cy + El-cy + Em-cy + En-cy + O-cy + Pe-cy + Er-cy + Es-cy + Te-cy + U-cy + Ushort-cy + Ef-cy + Ha-cy + Che-cy + Tse-cy + Sha-cy + Shcha-cy + Softsign-cy + Hardsign-cy + Yeru-cy + Dze-cy + E-cy + Ereversed-cy + I-cy + Yi-cy + Iu-cy + Ia-cy + A-cy.ss01 + Zhe-cy.ss01 + Ka-cy.ss01 + Em-cy.ss01 + U-cy.ss01 + Ushort-cy.ss01 + Ha-cy.ss01 + Ia-cy.ss01 + a-cy + be-cy + ve-cy + ge-cy + gheupturn-cy + de-cy + ie-cy + io-cy + zhe-cy + ze-cy + ii-cy + iishort-cy + ka-cy + el-cy + em-cy + en-cy + o-cy + pe-cy + er-cy + es-cy + te-cy + u-cy + ushort-cy + ef-cy + ha-cy + che-cy + tse-cy + sha-cy + shcha-cy + softsign-cy + hardsign-cy + yeru-cy + dze-cy + e-cy + ereversed-cy + i-cy + yi-cy + je-cy + iu-cy + ia-cy + a-cy.ss01 + ve-cy.ss01 + de-cy.ss01 + ie-cy.ss01 + io-cy.ss01 + el-cy.ss01 + er-cy.ss01 + te-cy.ss01 + softsign-cy.ss01 + hardsign-cy.ss01 + yeru-cy.ss01 + ia-cy.ss01 + zero + one + two + three + four + five + six + seven + eight + nine + zero.osf + one.osf + two.osf + three.osf + four.osf + five.osf + six.osf + seven.osf + nine.osf + zero.tf + one.tf + two.tf + three.tf + four.tf + five.tf + six.tf + seven.tf + eight.tf + nine.tf + onesuperior + twosuperior + threesuperior + period + comma + colon + semicolon + ellipsis + exclam + exclamdown + question + questiondown + periodcentered + bullet + asterisk + numbersign + slash + backslash + parenleft + parenright + braceleft + braceright + bracketleft + bracketright + hyphen + endash + emdash + underscore + quotesinglbase + quotedblbase + quotedblleft + quotedblright + quoteleft + quoteright + guillemetleft + guillemetright + guilsinglleft + guilsinglright + quotedbl + quotesingle + cent + currency + dollar + euro + hryvnia + sterling + yen + yen.ss01 + plus + minus + multiply + divide + equal + greater + less + asciitilde + asciicircum + percent + perthousand + at + ampersand + paragraph + section + copyright + registered + trademark + degree + bar + brokenbar + dagger + daggerdbl + numero + estimated + numero.ss01 + commaaccentcomb + dieresis + dotaccent + grave + acute + hungarumlaut + circumflex + caron + breve + ring + tilde + macron + cedilla + ogonek + dieresis.case + dotaccent.case + grave.case + acute.case + hungarumlaut.case + circumflex.case + caron.case + breve.case + ring.case + tilde.case + macron.case + commaaccentcomb.salt + caron.salt + uniE01A + _perc-circule + eight.osf + ruble + Ljecyr + Njecyr + Jecyr + dzhecyr + Dzhecyr + ljecyr + njecyr + Tshecyr + Djecyr + tshecyr + djecyr + tenge + ljecyr.ss01 + njecyr.ss01 + dramsignarmn + gjecyr + kjecyr + neptune + florin + plusminus + fraction + onequarter + onehalf + threequarters + mu + lessequal + greaterequal + minute + second + Schwacyr + schwacyr + Gestrokecyr + gestrokecyr + Obarcyr + obarcyr + Entailcyr + entailcyr + Katailcyr + katailcyr + Ustraightstrokecyr + ustraightstrokecyr + Shhacyr + shhacyr + ustraightcyr + Ustraightcyr + partialdiff + increment + integral + summation + radical + infinity + Omega + pi + longs + Delta + product + notequal + proportional + approxequal + Schwa + eturned + Oslashacute + oslashacute + AEacute + aeacute + uni2010 + Aiecyr + aiecyr + uni1EBC + uni1EBD + Acaron + acaron + Gjecyr + Kjecyr + uniE000 + uniE000.alt + arrowleft + arrowup + arrowright + arrowdown + arrowdown.ss01 + arrowleft.ss01 + arrowright.ss01 + arrowup.ss01 + yi-cy.alt + Omegacyr + omegacyr + Yatcyr + yatcyr + Eiotifiedcyr + eiotifiedcyr + Ksicyr + ksicyr + Shwe-cy + Fitacyr + fitacyr + Koppacyr + Iegravecyr + Igravecyr + iegravecyr + igravecyr + Zhebrevecyr + zhebrevecyr + Abrevecyr + abrevecyr + Adieresiscyr + adieresiscyr + Iebrevecyr + iebrevecyr + Schwadieresiscyr + schwadieresiscyr + Zhedieresiscyr + zhedieresiscyr + Zedieresiscyr + zedieresiscyr + Imacroncyr + imacroncyr + Idieresiscyr + idieresiscyr + Odieresiscyr + odieresiscyr + Umacroncyr + umacroncyr + Udieresiscyr + udieresiscyr + Uacutedblcyr + uacutedblcyr + Dekomicyr + dekomicyr + Wecyr + wecyr + Qacyr + qacyr + Ylongdieresiscyr + ylongdieresiscyr + Chedieresiscyr + chedieresiscyr + Obardieresiscyr + obardieresiscyr + Ereverseddieresiscyr + ereverseddieresiscyr + Zhetailcyr + zhetailcyr + Tetailcyr + tetailcyr + Xatailcyr + xatailcyr + Chetailcyr + chetailcyr + Chekhakascyr + chekhakascyr + Getailcyr + getailcyr + Petailcyr + petailcyr + Eltailcyr + eltailcyr + Shhatailcyr + shhatailcyr + Palochkacyr + palochkacyr + Dzzhecyr + Yaecyr + yaecyr + Tetsecyr + tetsecyr + Engecyr + engecyr + kabashkcyr + Kabashkcyr + semisoftcyr + Semisoftcyr + Reversedzecyr + reversedzecyr + Elmiddlehookcyr + Enmiddlehookcyr + Enhookcyr + Kahookcyr + Pehookcyr + Gehookcyr + parenleft.case + parenright.case + hyphen.case + bracketleft.case + bracketright.case + braceleft.case + braceright.case + exclamdown.case + guillemetleft.case + guillemetright.case + endash.case + emdash.case + bullet.case + guilsinglleft.case + guilsinglright.case + arrowleft.case + arrowup.case + arrowright.case + arrowdown.case + arrowdown.ss01.case + arrowleft.ss01.case + arrowright.ss01.case + arrowup.ss01.case + Enhookleftcyr + enhookleftcyr + enhookcyr + gehookcyr + pehookcyr + kahookcyr + enmiddlehookcyr + elmiddlehookcyr + kastrokecyr + Kastrokecyr + Chevertcyr + chevertcyr + Kaverticalstrokecyr + kaverticalstrokecyr + Elhookcyr + elhookcyr + zetailcyr + Zetailcyr + Estailcyr + estailcyr + Haabkhcyr + koppacyr + ukcyr + Ukcyr + omegaroundcyr + Izhitsagravedblcyr + izhitsagravedblcyr + izhitsacyr + Izhitsacyr + Yusbigcyr + yusbigcyr + Psicyr + psicyr + Omegaroundcyr + Yuslittlecyr + yuslittlecyr + yuslittleiotifiedcyr + Yuslittleiotifiedcyr + Yusbigiotifiedcyr + yusbigiotifiedcyr + Omegatitlocyr + omegatitlocyr + Otcyr + otcyr + uni2DEE + uni2DEE.case + ertickcyr + Ertickcyr + Lhacyr + lhacyr + ensharptailcyr + Ensharptailcyr + emsharptailcyr + elsharptailcyr + ishortsharptailcyr + Ishortsharptailcyr + Emsharptailcyr + Elsharptailcyr + njekomicyr + Njekomicyr + ljekomicyr + tjekomicyr + djekomicyr + zjekomicyr + colon.case + questiondown.case + slash.case + semicolon.case + backslash.case + bar.case + brokenbar.case + dzjekomicyr + Cheabkhcyr + cheabkhcyr + cheabkhtailcyr + sjekomicyr + Sjekomicyr + Ljekomicyr + Tjekomicyr + Djekomicyr + kaaleutcyr + dzzhecyr + haabkhcyr + Dchecyr + dchecyr + dzeabkhcyr + Dzeabkhcyr + palatcombcyr + Cheabkhtailcyr + Dzjekomicyr + Zjekomicyr + rhacyr + Rhacyr + Kaaleutcyr + thousandscyr + titlocombcyr + pokrytiecombcyr + hundredthousandscombcyr + millionscombcyr + Gehookstrokecyr + gehookstrokecyr + Hahookcyr + hahookcyr + Hastrokecyr + uni1C80 + uni1C81 + uni1C82 + uni1C83 + uni1C84 + uni1C85 + uni1C86 + uni1C87 + Zemlya-cy + zemlya-cy + Dzelo-cy + dzelo-cy + DzeReversed-cy + dzeReversed-cy + Iota-cy + iota-cy + Djerv-cy + djerv-cy + UkMonograph-cy + ukMonograph-cy + OmegaBroad-cy + omegaBroad-cy + YerNeutral-cy + yerNeutral-cy + YeruBackYer-cy + yeruBackyer-cy + YatIotified-cy + yatIotified-cy + YuReversed-cy + yuReversed-cy + IotifiedA-cy + iotifieda-cy + YusClosedlittle-cy + yusClosedlittle-cy + YusBlended-cy + yusBlended-cy + YusiotifiedClosedLittle-cy + yusiotifiedClosedLittle-cy + Yn-cy + yn-cy + TseReversed-cy + tseReversed-cy + DeSoft-cy + deSoft-cy + ElSoft-cy + elSoft-cy + EmSoft-cy + emSoft-cy + OMonocular-cy + oMonocular-cy + OBinocular-cy + oBinocular-cy + ODoubleMonocular-cy + oDoubleMonocular-cy + omultiocular-cy + vzmetcomb-cy + tenmillionscomb-cy + hundredmillionscomb-cy + thousandmillionscomb-cy + Dwe-cy + dwe-cy + Dzwe-cy + dzwe-cy + Zhwe-cy + zhwe-cy + Cche-cy + cche-cy + Dzze-cy + dzze-cy + TeWithMiddleHook-cy + tewithmiddlehook-cy + Twe-cy + twe-cy + Tswe-cy + tswe-cy + Tsse-cy + tsse-cy + Tche-cy + tche-cy + Hwe-cy + hwe-cy + shwe-cy + DoubleO-cy + doubleo-cy + CrossedO-cy + crossedo-cy + hastrokecyr + uniF43A + A-cy.accented + E-cy.accented + Ii-cy.accented + O-cy.accented + U-cy.accented + Yeru-cy.accented + Ereversed-cy.accented + Iu-cy.accented + Ia-cy.accented + Io-cy.accented + uniF498 + uniF49A + uniF49C + uniF49E + uniF4C6 + uniF4CC + uniF4D2 + uniF4D4 + uniF4D6 + uniF4D8 + Zetailcyr.BSH + Estailcyr.CHU + uniF50E + uniF510 + uniF512 + uniF514 + uniF516 + uniF518 + uniF51A + uniF51C + uniF51E + Yeru-cymacron + uniF522 + uniF524 + uniF526 + uniF528 + uniF52A + uniF52C + uniF52E + uniF532 + uniF536 + uniF538 + Gestrokecyr.BSH + Estailcyr.BSH + uniF830 + uniF833 + uniF839 + uniF86F + uniF872 + uniF875 + uniF878 + uniF87B + uniF87E + apostrophemod + colontriangularmod + uni1C88 + uniF87F + uniF87C + uniF879 + uniF876 + uniF873 + uniF870 + uniF83A + uniF834 + uniF831 + zetailcyr.BSH + estailcyr.CHU + uniF50F + uniF511 + uniF513 + uniF515 + uniF517 + uniF519 + uniF51B + uniF51D + uniF51F + uniF521 + uniF523 + uniF525 + uniF527 + uniF529 + uniF52B + uniF52D + uniF52F + uniF533 + uniF537 + uniF539 + gestrokecyr.BSH + estailcyr.BSH + uniF499 + uniF49B + uniF49D + uniF49F + uniF4C7 + uniF4CD + uniF4D3 + uniF4D5 + uniF4D7 + uniF4D9 + a-cy.accented + e-cy.accented + ii-cy.accented + o-cy.accented + u-cy.accented + yeru-cy.accented + ereversed-cy.accented + iu-cy.accented + ia-cy.accented + io-cy.accented + uniF43B + at.case + dieresis.alt + dieresiscase.alt + e-cy.hist + omultiocular-cy.alt + iotifieda-cy.hist + be-cy.SRB + ve-cy.BGR + ge-cy.BGR + de-cy.BGR + zhe-cy.BGR + ze-cy.BGR + ii-cy.BGR + iishort-cy.BGR + ka-cy.BGR + el-cy.BGR + pe-cy.BGR + te-cy.BGR + tse-cy.BGR + sha-cy.BGR + shcha-cy.BGR + hardsign-cy.BGR + softsign-cy.BGR + iu-cy.BGR + yatcyr.BGR + eiotifiedcyr.BGR + yusbigiotifiedcyr.BGR + iotifieda-cy.BGR + De-cy.BGR + El-cy.BGR + Ef-cy.BGR + dieresisacute + uniF45D + uniF45E + uniF45F + uniF475 + uniF476 + uniF477 + uniF478 + uniF479 + Elsmallcyr + enclosingcirclecomb + ge-cy.SRB + pe-cy.SRB + te-cy.SRB + gjecyr.SRB + macron-fwd + macron-fwd.alt + macronacute.SRB + iegravecyr.SRB + igravecyr.SRB + flower + knightwhite + knightblack + floretteblack + florettewhite + floretteoutlinedpetalledblackeight + rookblack + bishopblack + leo + heartwhite + diamondwhite-misc + spadewhite + clubwhite + bishopwhite + heart + crossedswords + virgo + thousandscyr.dnom + bracketangleleft + bracketangleright + bracketangleleft.case + bracketangleright.case + + + diff --git a/sources/FixelText-Bold.ufo/metainfo.plist b/sources/FixelText-Bold.ufo/metainfo.plist new file mode 100644 index 00000000..10582b84 --- /dev/null +++ b/sources/FixelText-Bold.ufo/metainfo.plist @@ -0,0 +1,10 @@ + + + + + creator + com.fontlab.ufoLib + formatVersion + 3 + + diff --git a/sources/FixelText-ExtraBold.ufo/features.fea b/sources/FixelText-ExtraBold.ufo/features.fea new file mode 100644 index 00000000..302ade93 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/features.fea @@ -0,0 +1,573 @@ +#> classes +#/> otclasses +@ss01_def = [A-cy A AE Aacute Abreve Acircumflex Adieresis Agrave Amacron Aogonek Aring Atilde Em-cy Eng G Gacute Gbreve Gcircumflex Gcommaaccent Gdotaccent Ha-cy Ia-cy J Jcircumflex K Ka-cy Kcommaaccent M N Nacute Ncaron Ncommaaccent Ntilde Q U-cy Ushort-cy V W Wacute Wcircumflex Wdieresis Wgrave X Y Yacute Ycircumflex Ydieresis Z Zacute Zcaron Zdotaccent Zhe-cy a-cy a aacute abreve acircumflex adieresis ae agrave amacron aogonek aring arrowdown arrowdown.case arrowleft arrowleft.case arrowright arrowright.case arrowup arrowup.case atilde b d dcaron dcroat de-cy e eacute ebreve ecaron ecircumflex edieresis edotaccent egrave el-cy emacron eogonek er-cy f f_f f_f_i f_f_l fi fl g gacute gbreve gcircumflex gcommaaccent gdotaccent germandbls hardsign-cy ia-cy ie-cy io-cy l lacute lcaron lcommaaccent ldot ljecyr lslash njecyr numero oe p q softsign-cy t tbar tcaron tcedilla tcommaaccent te-cy ve-cy yen yeru-cy]; +@ss01 = [A-cy.ss01 A.ss01 AE.ss01 Aacute.ss01 Abreve.ss01 Acircumflex.ss01 Adieresis.ss01 Agrave.ss01 Amacron.ss01 Aogonek.ss01 Aring.ss01 Atilde.ss01 Em-cy.ss01 Eng.ss01 G.ss01 Gacute.ss01 Gbreve.ss01 Gcircumflex.ss01 Gcommaaccent.ss01 Gdotaccent.ss01 Ha-cy.ss01 Ia-cy.ss01 J.ss01 Jcircumflex.ss01 K.ss01 Ka-cy.ss01 Kcommaaccent.ss01 M.ss01 N.ss01 Nacute.ss01 Ncaron.ss01 Ncommaaccent.ss01 Ntilde.ss01 Q.ss01 U-cy.ss01 Ushort-cy.ss01 V.ss01 W.ss01 Wacute.ss01 Wcircumflex.ss01 Wdieresis.ss01 Wgrave.ss01 X.ss01 Y.ss01 Yacute.ss01 Ycircumflex.ss01 Ydieresis.ss01 Z.ss01 Zacute.ss01 Zcaron.ss01 Zdotaccent.ss01 Zhe-cy.ss01 a-cy.ss01 a.ss01 aacute.ss01 abreve.ss01 acircumflex.ss01 adieresis.ss01 ae.ss01 agrave.ss01 amacron.ss01 aogonek.ss01 aring.ss01 arrowdown.ss01 arrowdown.ss01.case arrowleft.ss01 arrowleft.ss01.case arrowright.ss01 arrowright.ss01.case arrowup.ss01 arrowup.ss01.case atilde.ss01 b.ss01 d.ss01 dcaron.ss01 dcroat.ss01 de-cy.ss01 e.ss01 eacute.ss01 ebreve.ss01 ecaron.ss01 ecircumflex.ss01 edieresis.ss01 edotaccent.ss01 egrave.ss01 el-cy.ss01 emacron.ss01 eogonek.ss01 er-cy.ss01 f.ss01 f_f.ss01 f_f_i.ss01 f_f_l.ss01 fi.ss01 fl.ss01 g.ss01 gacute.ss01 gbreve.ss01 gcircumflex.ss01 gcommaaccent.ss01 gdotaccent.ss01 germandbls.ss01 hardsign-cy.ss01 ia-cy.ss01 ie-cy.ss01 io-cy.ss01 l.ss01 lacute.ss01 lcaron.ss01 lcommaaccent.ss01 ldot.ss01 ljecyr.ss01 lslash.ss01 njecyr.ss01 numero.ss01 oe.ss01 p.ss01 q.ss01 softsign-cy.ss01 t.ss01 tbar.ss01 tcaron.ss01 tcedilla.ss01 tcommaaccent.ss01 te-cy.ss01 ve-cy.ss01 yen.ss01 yeru-cy.ss01]; +@case = [arrowdown.case arrowdown.ss01.case arrowleft.case arrowleft.ss01.case arrowright.case arrowright.ss01.case arrowup.case arrowup.ss01.case backslash.case bar.case braceleft.case braceright.case bracketleft.case bracketright.case brokenbar.case bullet.case colon.case emdash.case endash.case exclamdown.case guillemetleft.case guillemetright.case guilsinglleft.case guilsinglright.case hyphen.case parenleft.case parenright.case questiondown.case semicolon.case at.case bracketangleleft.case bracketangleright.case slash.case]; +@case_def = [arrowdown arrowdown.ss01 arrowleft arrowleft.ss01 arrowright arrowright.ss01 arrowup arrowup.ss01 backslash bar braceleft braceright bracketleft bracketright brokenbar bullet colon emdash endash exclamdown guillemetleft guillemetright guilsinglleft guilsinglright hyphen parenleft parenright questiondown semicolon at bracketangleleft bracketangleright slash]; +@cpsp = [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 Agrave Aacute Acircumflex Atilde Adieresis Aring AE Ccedilla Egrave Eacute Ecircumflex Edieresis Igrave Iacute Icircumflex Idieresis Eth Ntilde Ograve Oacute Ocircumflex Otilde Odieresis Oslash Ugrave Uacute Ucircumflex Udieresis Yacute Thorn Amacron Abreve Aogonek Cacute Ccircumflex Cdotaccent Ccaron Dcaron Dcroat Emacron Ebreve Edotaccent Eogonek Ecaron Gcircumflex Gbreve Gdotaccent Gcommaaccent Hcircumflex Hbar Itilde Imacron Ibreve Iogonek Idotaccent IJ Jcircumflex Kcommaaccent Lacute Lcommaaccent Lcaron Ldot Lslash Nacute Ncommaaccent Ncaron Eng Omacron Obreve Ohungarumlaut OE Racute Rcommaaccent Rcaron Sacute Scircumflex Scedilla Scaron Tcedilla Tcaron Tbar Utilde Umacron Ubreve Uring Uhungarumlaut Uogonek Wcircumflex Ycircumflex Ydieresis Zacute Zdotaccent Zcaron Schwa Acaron Gacute AEacute Oslashacute Scommaaccent Tcommaaccent Delta Omega Iegravecyr uniF43A A-cy.accented E-cy.accented Ii-cy.accented O-cy.accented U-cy.accented Yeru-cy.accented Ereversed-cy.accented Iu-cy.accented Ia-cy.accented Io-cy.accented uniF498 uniF49A uniF49C uniF49E uniF4C6 uniF4CC uniF4D2 uniF4D4 uniF4D6 uniF4D8 uniF50E uniF510 uniF512 uniF514 uniF516 uniF518 uniF51A uniF51C uniF51E Yeru-cymacron uniF522 uniF524 uniF526 uniF528 uniF52A uniF52C uniF52E uniF532 uniF536 uniF538 uniF830 uniF833 uniF839 uniF86F uniF872 uniF875 uniF878 uniF87B uniF87E Io-cy Djecyr Gjecyr E-cy Dze-cy I-cy Yi-cy Jecyr Ljecyr Njecyr Tshecyr Kjecyr Igravecyr Ushort-cy Dzhecyr A-cy Be-cy Ve-cy Ge-cy De-cy Ie-cy Zhe-cy Ze-cy Ii-cy Iishort-cy Ka-cy El-cy Em-cy En-cy O-cy Pe-cy Er-cy Es-cy Te-cy U-cy Ef-cy Ha-cy Tse-cy Che-cy Sha-cy Shcha-cy Hardsign-cy Yeru-cy Softsign-cy Ereversed-cy Iu-cy Ia-cy Omegacyr Yatcyr Eiotifiedcyr Yuslittlecyr Yuslittleiotifiedcyr Yusbigcyr Yusbigiotifiedcyr Ksicyr Psicyr Fitacyr Izhitsacyr Izhitsagravedblcyr Ukcyr Omegaroundcyr Omegatitlocyr Otcyr Koppacyr Ishortsharptailcyr Semisoftcyr Ertickcyr Gheupturn-cy Gestrokecyr Gehookcyr Zhetailcyr Zetailcyr Katailcyr Kaverticalstrokecyr Kastrokecyr Kabashkcyr Entailcyr Engecyr Pehookcyr Haabkhcyr Estailcyr Tetailcyr Ustraightcyr Ustraightstrokecyr Xatailcyr Tetsecyr Chetailcyr Chevertcyr Shhacyr Cheabkhcyr Cheabkhtailcyr Palochkacyr Zhebrevecyr Kahookcyr Elsharptailcyr Enhookcyr Ensharptailcyr Chekhakascyr Emsharptailcyr Abrevecyr Adieresiscyr Aiecyr Iebrevecyr Schwacyr Schwadieresiscyr Zhedieresiscyr Zedieresiscyr Dzeabkhcyr Imacroncyr Idieresiscyr Odieresiscyr Obarcyr Obardieresiscyr Ereverseddieresiscyr Umacroncyr Udieresiscyr Uacutedblcyr Chedieresiscyr Getailcyr Ylongdieresiscyr Gehookstrokecyr Hahookcyr Hastrokecyr Dekomicyr Djekomicyr Zjekomicyr Dzjekomicyr Ljekomicyr Njekomicyr Sjekomicyr Tjekomicyr Reversedzecyr Elhookcyr Lhacyr Rhacyr Yaecyr Qacyr Wecyr Kaaleutcyr Elmiddlehookcyr Enmiddlehookcyr Petailcyr Shhatailcyr Enhookleftcyr Dzzhecyr Dchecyr Eltailcyr Wgrave Wacute Wdieresis Germandbls uni1EBC Zemlya-cy Dzelo-cy DzeReversed-cy Iota-cy Djerv-cy UkMonograph-cy OmegaBroad-cy YerNeutral-cy YeruBackYer-cy YatIotified-cy YuReversed-cy IotifiedA-cy YusClosedlittle-cy YusBlended-cy YusiotifiedClosedLittle-cy Yn-cy TseReversed-cy DeSoft-cy ElSoft-cy EmSoft-cy OMonocular-cy OBinocular-cy ODoubleMonocular-cy Dwe-cy Dzwe-cy Zhwe-cy Cche-cy Dzze-cy TeWithMiddleHook-cy Twe-cy Tswe-cy Tsse-cy Tche-cy Hwe-cy Shwe-cy DoubleO-cy CrossedO-cy A-cy.ss01 A.ss01 AE.ss01 Aacute.ss01 Abreve.ss01 Acircumflex.ss01 Adieresis.ss01 Agrave.ss01 Amacron.ss01 Aogonek.ss01 Aring.ss01 Atilde.ss01 Em-cy.ss01 Eng.ss01 G.ss01 Gacute.ss01 Gbreve.ss01 Gcircumflex.ss01 Gcommaaccent.ss01 Gdotaccent.ss01 Ha-cy.ss01 Ia-cy.ss01 J.ss01 Jcircumflex.ss01 K.ss01 Ka-cy.ss01 Kcommaaccent.ss01 M.ss01 N.ss01 Nacute.ss01 Ncaron.ss01 Ncommaaccent.ss01 Ntilde.ss01 Q.ss01 U-cy.ss01 Ushort-cy.ss01 V.ss01 W.ss01 Wacute.ss01 Wcircumflex.ss01 Wdieresis.ss01 Wgrave.ss01 X.ss01 Y.ss01 Yacute.ss01 Ycircumflex.ss01 Ydieresis.ss01 Z.ss01 Zacute.ss01 Zcaron.ss01 Zdotaccent.ss01 Zetailcyr.BSH Gestrokecyr.BSH Estailcyr.BSH Estailcyr.CHU Zhe-cy.ss01]; +@locl_BGR = [De-cy.BGR Ef-cy.BGR El-cy.BGR de-cy.BGR eiotifiedcyr.BGR el-cy.BGR ge-cy.BGR hardsign-cy.BGR ii-cy.BGR iishort-cy.BGR iotifieda-cy.BGR iu-cy.BGR ka-cy.BGR pe-cy.BGR sha-cy.BGR shcha-cy.BGR softsign-cy.BGR te-cy.BGR tse-cy.BGR ve-cy.BGR yatcyr.BGR yusbigiotifiedcyr.BGR ze-cy.BGR zhe-cy.BGR]; +@locl_def = [De-cy Ef-cy El-cy de-cy eiotifiedcyr el-cy ge-cy hardsign-cy ii-cy iishort-cy iotifieda-cy iu-cy ka-cy pe-cy sha-cy shcha-cy softsign-cy te-cy tse-cy ve-cy yatcyr yusbigiotifiedcyr ze-cy zhe-cy]; +@locl.SRB = [be-cy.SRB iegravecyr.SRB igravecyr.SRB]; +@loclSRB_def = [be-cy iegravecyr igravecyr]; +@accent = [grave acute.case grave.case acute]; +@pics = [neptune leo virgo bishopwhite knightwhite rookblack bishopblack knightblack heartwhite diamondwhite-misc spadewhite heart clubwhite crossedswords flower floretteblack florettewhite floretteoutlinedpetalledblackeight]; +@pics_def = [A B C D E F G H I J K L M N O P Q R]; +#/< otclasses + +#/> tags +@tag.omultiocular-cy.alt = [omultiocular-cy]; +@tag.yi-cy_yi-cy.alt = [uniE000]; +#/< tags +#< classes + +# automatic +@Uppercase = [ A Aacute Abreve Acircumflex Adieresis Agrave Amacron Aogonek Aring Atilde AE B C Cacute Ccaron Ccedilla Ccircumflex Cdotaccent D Eth Dcaron Dcroat E Eacute Ebreve Ecaron Ecircumflex Edieresis Edotaccent Egrave Emacron Eogonek F G Gacute Gbreve Gcircumflex Gcommaaccent Gdotaccent H Hbar Hcircumflex I IJ Iacute Ibreve Icircumflex Idieresis Idotaccent Igrave Imacron Iogonek Itilde J Jcircumflex K Kcommaaccent L Lacute Lcaron Lcommaaccent Ldot Lslash M N Nacute Ncaron Ncommaaccent Eng Ntilde O Oacute Obreve Ocircumflex Odieresis Ograve Ohungarumlaut Omacron Oslash Otilde OE P Thorn Q R Racute Rcaron Rcommaaccent S Sacute Scaron Scedilla Scircumflex Scommaaccent Germandbls T Tbar Tcaron Tcedilla Tcommaaccent U Uacute Ubreve Ucircumflex Udieresis Ugrave Uhungarumlaut Umacron Uogonek Uring Utilde V W Wacute Wcircumflex Wdieresis Wgrave X Y Yacute Ycircumflex Ydieresis Z Zacute Zcaron Zdotaccent A.ss01 Aacute.ss01 Abreve.ss01 Acircumflex.ss01 Adieresis.ss01 Agrave.ss01 Amacron.ss01 Aogonek.ss01 Aring.ss01 Atilde.ss01 AE.ss01 G.ss01 Gacute.ss01 Gbreve.ss01 Gcircumflex.ss01 Gcommaaccent.ss01 Gdotaccent.ss01 J.ss01 Jcircumflex.ss01 K.ss01 Kcommaaccent.ss01 M.ss01 N.ss01 Nacute.ss01 Ncaron.ss01 Ncommaaccent.ss01 Eng.ss01 Ntilde.ss01 Q.ss01 V.ss01 W.ss01 Wacute.ss01 Wcircumflex.ss01 Wdieresis.ss01 Wgrave.ss01 X.ss01 Y.ss01 Yacute.ss01 Ycircumflex.ss01 Ydieresis.ss01 Z.ss01 Zacute.ss01 Zcaron.ss01 Zdotaccent.ss01 A-cy Be-cy Ve-cy Ge-cy Gheupturn-cy De-cy Ie-cy Io-cy Zhe-cy Ze-cy Ii-cy Iishort-cy Ka-cy El-cy Em-cy En-cy O-cy Pe-cy Er-cy Es-cy Te-cy U-cy Ushort-cy Ef-cy Ha-cy Che-cy Tse-cy Sha-cy Shcha-cy Softsign-cy Hardsign-cy Yeru-cy Dze-cy E-cy Ereversed-cy I-cy Yi-cy Iu-cy Ia-cy A-cy.ss01 Zhe-cy.ss01 Ka-cy.ss01 Em-cy.ss01 U-cy.ss01 Ushort-cy.ss01 Ha-cy.ss01 Ia-cy.ss01 ]; + +# Prefix: Languagesystems +# automatic +languagesystem DFLT dflt; + +languagesystem latn dflt; +languagesystem latn ROM; +languagesystem latn MOL; +languagesystem latn CAT; +languagesystem cyrl dflt; +languagesystem cyrl BGR; +languagesystem cyrl BSH; +languagesystem cyrl CHU; +languagesystem cyrl SRB; +languagesystem cyrl MKD; + +lookup liga_accent { + sub @accent by [grave grave grave grave]; +} liga_accent; +feature aalt { +# Access All Alternates + +#> feature + feature locl; + feature sups; + feature case; + feature lnum; + feature pnum; + feature tnum; + feature onum; + feature salt; + feature ss01; + feature hist; +#< feature +} aalt; +feature ccmp { +# automatic +lookup ccmp_Other_1 { + @Markscomb = [dieresis dotaccent grave acute hungarumlaut circumflex caron breve ring tilde macron]; + @MarkscombCase = [dieresis.case dotaccent.case grave.case acute.case hungarumlaut.case circumflex.case caron.case breve.case ring.case tilde.case macron.case]; + sub @Markscomb @Markscomb' by @MarkscombCase; + sub @cpsp @Markscomb' by @MarkscombCase; +} ccmp_Other_1; + +lookup ccmp_Other_2 { + sub @Markscomb' @MarkscombCase by @MarkscombCase; + sub @MarkscombCase @Markscomb' by @MarkscombCase; +} ccmp_Other_2; +} ccmp; + +feature locl { +# automatic + +script latn; + language ROM; + language MOL; + sub Scedilla by Scommaaccent; + sub scedilla by scommaaccent; + sub Tcedilla by Tcommaaccent; + sub tcedilla by tcommaaccent; + +script latn; + language CAT; + sub l' periodcentered' l by ldot; + sub L' periodcentered' L by Ldot; + +script cyrl; # Cyrillic + language SRB ; # Serbian + + lookup locl_SRB_MCD { + # GSUB lookup 20, type 11 (Single) + sub @loclSRB_def by @locl.SRB; + } locl_SRB_MCD; + + language MKD ; # Serbian + lookup locl_SRB_MCD; + + language BSH ; # Bashkir + sub [Gestrokecyr gestrokecyr Zetailcyr zetailcyr] by [Gestrokecyr.BSH gestrokecyr.BSH Zetailcyr.BSH zetailcyr.BSH]; + sub [Estailcyr estailcyr] by [Estailcyr.BSH estailcyr.BSH]; + + language CHU ; # Chuvash + sub [Estailcyr estailcyr] by [Estailcyr.CHU estailcyr.CHU]; + + language BGR ; # Bulgarian + sub @locl_def by @locl_BGR; + +} locl; + +feature sups { +# Superscript + +#> feature + sub one by onesuperior; + sub three by threesuperior; + sub two by twosuperior; +#< feature +} sups; +feature ordn { +# Ordinals + +#> feature + sub [zero one two three four five six seven eight nine] [A a]' by ordfeminine; + sub [zero one two three four five six seven eight nine] [O o]' by ordmasculine; + sub N o period by numero; +#< feature +} ordn; +feature case { +# Case Sensitive Forms + +#> feature + + sub @case_def by @case; + +#< feature +} case; +feature liga { +# Standard Ligatures + +#> feature +sub f f i by f_f_i; +sub f f l by f_f_l; +sub f f by f_f; +sub f i by fi; +sub f l by fl; +sub yi-cy yi-cy by uniE000; +sub hyphen greater by arrowright; +sub less hyphen by arrowleft; +sub backslash bar slash by arrowdown; +sub slash bar backslash by arrowup; + + lookup accent_2 { + sub E-cy @accent' lookup liga_accent; + sub I-cy @accent' lookup liga_accent; + sub Yi-cy @accent' lookup liga_accent; + sub A-cy @accent' lookup liga_accent; + sub Ie-cy @accent' lookup liga_accent; + sub Ii-cy @accent' lookup liga_accent; + sub O-cy @accent' lookup liga_accent; + sub U-cy @accent' lookup liga_accent; + sub Yeru-cy @accent' lookup liga_accent; + sub Ereversed-cy @accent' lookup liga_accent; + sub Iu-cy @accent' lookup liga_accent; + sub Ia-cy @accent' lookup liga_accent; + sub Io-cy @accent' lookup liga_accent; + sub Yatcyr @accent' lookup liga_accent; + + sub e-cy @accent' lookup liga_accent; + sub i-cy @accent' lookup liga_accent; + sub yi-cy @accent' lookup liga_accent; + sub a-cy @accent' lookup liga_accent; + sub ie-cy @accent' lookup liga_accent; + sub ii-cy @accent' lookup liga_accent; + sub o-cy @accent' lookup liga_accent; + sub u-cy @accent' lookup liga_accent; + sub yeru-cy @accent' lookup liga_accent; + sub ereversed-cy @accent' lookup liga_accent; + sub iu-cy @accent' lookup liga_accent; + sub ia-cy @accent' lookup liga_accent; + sub io-cy @accent' lookup liga_accent; + sub yatcyr @accent' lookup liga_accent; + } accent_2; + + lookup accent_3 { + sub E-cy grave by uniF45D; + sub I-cy grave by uniF45E; + sub Yi-cy grave by uniF45F; + sub A-cy grave by A-cy.accented; + sub Ie-cy grave by E-cy.accented; + sub Ii-cy grave by Ii-cy.accented; + sub O-cy grave by O-cy.accented; + sub U-cy grave by U-cy.accented; + sub Yeru-cy grave by Yeru-cy.accented; + sub Ereversed-cy grave by Ereversed-cy.accented; + sub Iu-cy grave by Iu-cy.accented; + sub Ia-cy grave by Ia-cy.accented; + sub Io-cy grave by Io-cy.accented; + sub Yatcyr grave by uniF478; + + sub e-cy grave by uniF475; + sub i-cy grave by uniF476; + sub yi-cy grave by uniF477; + sub a-cy grave by a-cy.accented; + sub ie-cy grave by e-cy.accented; + sub ii-cy grave by ii-cy.accented; + sub o-cy grave by o-cy.accented; + sub u-cy grave by u-cy.accented; + sub yeru-cy grave by yeru-cy.accented; + sub ereversed-cy grave by ereversed-cy.accented; + sub iu-cy grave by iu-cy.accented; + sub ia-cy grave by ia-cy.accented; + sub io-cy grave by io-cy.accented; + sub yatcyr grave by uniF479; + } accent_3; + +#< feature +} liga; +feature dlig { +# Discretionary Ligatures + +#> feature + +sub M a c P a w l o g o by uniE01A; +sub M P a w l o g o by uniE01A; +sub M P l o g o by uniE01A; +sub M A C P A W L O G O by uniE01A; +sub m a c p a w l o g o by uniE01A; +sub t r i d e n t by neptune; +sub t r y z u b by neptune; +sub u k r a i n e s i g n by neptune; +sub T R I D E N T by neptune; +sub T R Y Z U B by neptune; +sub U k r a i n e S i g n by neptune; +sub T r y z u b by neptune; +sub T r i d e n t by neptune; +sub Te-cy Er-cy Ii-cy Ze-cy U-cy Be-cy by neptune; + +#< feature +} dlig; +feature lnum { +# Lining Figures + +#> feature + sub eight.osf by eight.tf; + sub eight by eight.tf; + sub five.osf by five.tf; + sub five by five.tf; + sub four.osf by four.tf; + sub four by four.tf; + sub nine.osf by nine.tf; + sub nine by nine.tf; + sub one.osf by one.tf; + sub one by one.tf; + sub seven.osf by seven.tf; + sub seven by seven.tf; + sub six.osf by six.tf; + sub six by six.tf; + sub three.osf by three.tf; + sub three by three.tf; + sub two.osf by two.tf; + sub two by two.tf; + sub zero.osf by zero.tf; + sub zero by zero.tf; +#< feature +} lnum; +feature pnum { +# Proportional Figures + +#> feature + sub eight.tf by eight.osf; + sub eight by eight.osf; + sub five.tf by five.osf; + sub five by five.osf; + sub four.tf by four.osf; + sub four by four.osf; + sub nine.tf by nine.osf; + sub nine by nine.osf; + sub one.tf by one.osf; + sub one by one.osf; + sub seven.tf by seven.osf; + sub seven by seven.osf; + sub six.tf by six.osf; + sub six by six.osf; + sub three.tf by three.osf; + sub three by three.osf; + sub two.tf by two.osf; + sub two by two.osf; + sub zero.tf by zero.osf; + sub zero by zero.osf; +#< feature +} pnum; +feature tnum { +# Tabular Figures + +#> feature + sub eight by eight.tf; + sub eight.osf by eight.tf; + sub five by five.tf; + sub five.osf by five.tf; + sub four by four.tf; + sub four.osf by four.tf; + sub nine by nine.tf; + sub nine.osf by nine.tf; + sub one by one.tf; + sub one.osf by one.tf; + sub seven by seven.tf; + sub seven.osf by seven.tf; + sub six by six.tf; + sub six.osf by six.tf; + sub three by three.tf; + sub three.osf by three.tf; + sub two by two.tf; + sub two.osf by two.tf; + sub zero by zero.tf; + sub zero.osf by zero.tf; +#< feature +} tnum; +feature onum { +# Oldstyle Figures + +#> feature + sub eight by eight.osf; + sub eight.tf by eight.osf; + sub five by five.osf; + sub five.tf by five.osf; + sub four by four.osf; + sub four.tf by four.osf; + sub nine by nine.osf; + sub nine.tf by nine.osf; + sub one by one.osf; + sub one.tf by one.osf; + sub seven by seven.osf; + sub seven.tf by seven.osf; + sub six by six.osf; + sub six.tf by six.osf; + sub three by three.osf; + sub three.tf by three.osf; + sub two by two.osf; + sub two.tf by two.osf; + sub zero by zero.osf; + sub zero.tf by zero.osf; +#< feature +} onum; +feature salt { +# Stylistic Alternates + +#> feature + sub A from [A.ss01]; + sub A-cy from [A-cy.ss01]; + sub AE from [AE.ss01]; + sub Aacute from [Aacute.ss01]; + sub Abreve from [Abreve.ss01]; + sub Acircumflex from [Acircumflex.ss01]; + sub Adieresis from [Adieresis.ss01]; + sub Agrave from [Agrave.ss01]; + sub Amacron from [Amacron.ss01]; + sub Aogonek from [Aogonek.ss01]; + sub Aring from [Aring.ss01]; + sub Atilde from [Atilde.ss01]; + sub Em-cy from [Em-cy.ss01]; + sub Eng from [Eng.ss01]; + sub G from [G.ss01]; + sub Gacute from [Gacute.ss01]; + sub Gbreve from [Gbreve.ss01]; + sub Gcircumflex from [Gcircumflex.ss01]; + sub Gcommaaccent from [Gcommaaccent.ss01]; + sub Gdotaccent from [Gdotaccent.ss01]; + sub Ha-cy from [Ha-cy.ss01]; + sub Ia-cy from [Ia-cy.ss01]; + sub J from [J.ss01]; + sub Jcircumflex from [Jcircumflex.ss01]; + sub K from [K.ss01]; + sub Ka-cy from [Ka-cy.ss01]; + sub Kcommaaccent from [Kcommaaccent.ss01]; + sub M from [M.ss01]; + sub N from [N.ss01]; + sub Nacute from [Nacute.ss01]; + sub Ncaron from [Ncaron.ss01]; + sub Ncommaaccent from [Ncommaaccent.ss01]; + sub Ntilde from [Ntilde.ss01]; + sub Q from [Q.ss01]; + sub U-cy from [U-cy.ss01]; + sub Ushort-cy from [Ushort-cy.ss01]; + sub V from [V.ss01]; + sub W from [W.ss01]; + sub Wacute from [Wacute.ss01]; + sub Wcircumflex from [Wcircumflex.ss01]; + sub Wdieresis from [Wdieresis.ss01]; + sub Wgrave from [Wgrave.ss01]; + sub X from [X.ss01]; + sub Y from [Y.ss01]; + sub Yacute from [Yacute.ss01]; + sub Ycircumflex from [Ycircumflex.ss01]; + sub Ydieresis from [Ydieresis.ss01]; + sub Z from [Z.ss01]; + sub Zacute from [Zacute.ss01]; + sub Zcaron from [Zcaron.ss01]; + sub Zdotaccent from [Zdotaccent.ss01]; + sub Zhe-cy from [Zhe-cy.ss01]; + sub a from [a.ss01]; + sub a-cy from [a-cy.ss01]; + sub aacute from [aacute.ss01]; + sub abreve from [abreve.ss01]; + sub acircumflex from [acircumflex.ss01]; + sub adieresis from [adieresis.ss01]; + sub ae from [ae.ss01]; + sub agrave from [agrave.ss01]; + sub amacron from [amacron.ss01]; + sub aogonek from [aogonek.ss01]; + sub aring from [aring.ss01]; + sub arrowdown from [arrowdown.ss01]; + sub arrowleft from [arrowleft.ss01]; + sub arrowright from [arrowright.ss01]; + sub arrowup from [arrowup.ss01]; + sub atilde from [atilde.ss01]; + sub b from [b.ss01]; + sub caron from [caron.salt]; + sub commaaccentcomb from [commaaccentcomb.salt]; + sub d from [d.ss01]; + sub dcaron from [dcaron.ss01]; + sub dcroat from [dcroat.ss01]; + sub de-cy from [de-cy.ss01]; + sub e from [e.ss01]; + sub eacute from [eacute.ss01]; + sub ebreve from [ebreve.ss01]; + sub ecaron from [ecaron.ss01]; + sub ecircumflex from [ecircumflex.ss01]; + sub edieresis from [edieresis.ss01]; + sub edotaccent from [edotaccent.ss01]; + sub egrave from [egrave.ss01]; + sub el-cy from [el-cy.ss01]; + sub emacron from [emacron.ss01]; + sub eogonek from [eogonek.ss01]; + sub er-cy from [er-cy.ss01]; + sub f from [f.ss01]; + sub f_f from [f_f.ss01]; + sub f_f_i from [f_f_i.ss01]; + sub f_f_l from [f_f_l.ss01]; + sub fi from [fi.ss01]; + sub fl from [fl.ss01]; + sub g from [g.ss01]; + sub gacute from [gacute.ss01]; + sub gbreve from [gbreve.ss01]; + sub gcircumflex from [gcircumflex.ss01]; + sub gcommaaccent from [gcommaaccent.ss01]; + sub gdotaccent from [gdotaccent.ss01]; + sub germandbls from [germandbls.ss01]; + sub hardsign-cy from [hardsign-cy.ss01]; + sub ia-cy from [ia-cy.ss01]; + sub ie-cy from [ie-cy.ss01]; + sub io-cy from [io-cy.ss01]; + sub l from [l.ss01]; + sub lacute from [lacute.ss01]; + sub lcaron from [lcaron.ss01]; + sub lcommaaccent from [lcommaaccent.ss01]; + sub ldot from [ldot.ss01]; + sub ljecyr from [ljecyr.ss01]; + sub lslash from [lslash.ss01]; + sub njecyr from [njecyr.ss01]; + sub numero from [numero.ss01]; + sub oe from [oe.ss01]; + sub p from [p.ss01]; + sub q from [q.ss01]; + sub softsign-cy from [softsign-cy.ss01]; + sub t from [t.ss01]; + sub tbar from [tbar.ss01]; + sub tcaron from [tcaron.ss01]; + sub tcedilla from [tcedilla.ss01]; + sub tcommaaccent from [tcommaaccent.ss01]; + sub te-cy from [te-cy.ss01]; + sub uniE000 from [uniE000.alt]; + sub ve-cy from [ve-cy.ss01]; + sub yen from [yen.ss01]; + sub yeru-cy from [yeru-cy.ss01]; +#< feature +} salt; +feature ss03 { +# Stylistic Set 01–20 + +#> feature + featureNames { + name "Bulgarian forms"; + name 1 "Bulgarian forms"; + }; + + sub @locl_def by @locl_BGR; + +#< feature +} ss03; +feature ss04 { +# Stylistic Set 01–20 + +#> feature + featureNames { + name "Serbian/Macedonian forms"; + name 1 "Serbian/Macedonian forms"; + }; + + sub @loclSRB_def by @locl.SRB; + +#< feature +} ss04; +feature ss01 { +# Stylistic Set 01–20 + +#> feature + + featureNames { + name "Humanistic forms"; + name 1 "Humanistic forms"; + }; + + sub @ss01_def by @ss01; + +#< feature +} ss01; +feature ss05 { +# Stylistic Set 01–20 + +#> feature + + featureNames { + name "Ukrainian pictograms"; + name 1 "Ukrainian pictograms"; + }; + + sub @pics_def by @pics; + +#< feature +} ss05; +feature hist { +# Historical Forms + +#> feature + sub e-cy by e-cy.hist; + sub s by longs; +#< feature +} hist; +feature frac { +# Fractions + +#> feature +lookup frac_precomposed { + + sub one slash four by onequarter; + sub one slash two by onehalf; + sub three slash four by threequarters; + sub one fraction four by onequarter; + sub one fraction two by onehalf; + sub three fraction four by threequarters; +} frac_precomposed; +#< feature +} frac; +feature cpsp { +# Capital Spacing + +#> feature + + pos @cpsp <5 0 10 0>; + +#< feature +} cpsp; +feature dnom { +# Denominator + +#> feature + sub thousandscyr by thousandscyr.dnom; +#< feature +} dnom; diff --git a/sources/FixelText-ExtraBold.ufo/fontinfo.plist b/sources/FixelText-ExtraBold.ufo/fontinfo.plist new file mode 100644 index 00000000..879d3821 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/fontinfo.plist @@ -0,0 +1,207 @@ + + + + + ascender + 720 + capHeight + 700 + descender + -200 + familyName + Fixel Text + guidelines + + + angle + 0 + name + m + x + 0 + y + -336.4 + + + angle + 0 + name + m + x + 0 + y + 189 + + + italicAngle + 0 + openTypeGaspRangeRecords + + + rangeGaspBehavior + + 0 + 1 + 2 + 3 + + rangeMaxPPEM + 65535 + + + openTypeHeadCreated + 2023/09/05 09:25:25 + openTypeHeadFlags + + + openTypeHheaAscender + 720 + openTypeHheaCaretOffset + -0 + openTypeHheaDescender + -190 + openTypeHheaLineGap + 100 + openTypeNameDesigner + AlfaBravo + openTypeNameDesignerURL + https://alfabravo.design/ + openTypeNameManufacturer + Kyrylo Tkachov, Marchela Mozhyna, Serhii Makarenko, Maria Weinstein, Zakhar Kryvoshyya + + openTypeNameManufacturerURL + https://macpaw.com/ + openTypeNamePreferredFamilyName + Fixel Text + openTypeNamePreferredSubfamilyName + ExtraBold + openTypeNameVersion + Version 1.200 + openTypeOS2CodePageRanges + + 0 + 1 + 2 + 4 + 7 + 29 + + openTypeOS2Panose + + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + + openTypeOS2Selection + + + openTypeOS2StrikeoutPosition + 300 + openTypeOS2StrikeoutSize + 50 + openTypeOS2SubscriptXOffset + -0 + openTypeOS2SubscriptXSize + 650 + openTypeOS2SubscriptYOffset + 75 + openTypeOS2SubscriptYSize + 600 + openTypeOS2SuperscriptXOffset + -0 + openTypeOS2SuperscriptXSize + 650 + openTypeOS2SuperscriptYOffset + 350 + openTypeOS2SuperscriptYSize + 600 + openTypeOS2Type + + 2 + + openTypeOS2TypoAscender + 720 + openTypeOS2TypoDescender + -200 + openTypeOS2TypoLineGap + 290 + openTypeOS2UnicodeRanges + + 0 + 1 + 2 + 9 + 31 + 33 + 60 + + openTypeOS2WeightClass + 800 + openTypeOS2WidthClass + 4 + openTypeOS2WinAscent + 750 + openTypeOS2WinDescent + 250 + postscriptBlueFuzz + 1 + postscriptBlueScale + 0.039625 + postscriptBlueShift + 7 + postscriptBlueValues + + -20 + 0 + + postscriptFontName + FixelText-ExtraBold + postscriptForceBold + + postscriptFullName + Fixel Text ExtraBold + postscriptIsFixedPitch + + postscriptStemSnapH + + 69 + 74 + 76 + 80 + 99 + + postscriptStemSnapV + + 74 + 80 + 93 + + postscriptUnderlinePosition + -100 + postscriptUnderlineThickness + 50 + postscriptWeightName + Extra Bold + styleMapFamilyName + Fixel Text ExtraBold + styleMapStyleName + regular + styleName + ExtraBold + unitsPerEm + 1000 + versionMajor + 1 + versionMinor + 200 + xHeight + 520 + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/A_-cy.accented.glif b/sources/FixelText-ExtraBold.ufo/glyphs/A_-cy.accented.glif new file mode 100644 index 00000000..a04b26be --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/A_-cy.accented.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+acute.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/A_-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/A_-cy.glif new file mode 100644 index 00000000..ff5d9744 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/A_-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/A_-cy.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/A_-cy.ss01.glif new file mode 100644 index 00000000..efceec55 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/A_-cy.ss01.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + com.fontlab.recipe + A + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/A_.glif b/sources/FixelText-ExtraBold.ufo/glyphs/A_.glif new file mode 100644 index 00000000..9e44d494 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/A_.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/A_.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/A_.ss01.glif new file mode 100644 index 00000000..9d1b8df4 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/A_.ss01.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/A_E_.glif b/sources/FixelText-ExtraBold.ufo/glyphs/A_E_.glif new file mode 100644 index 00000000..e9bce293 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/A_E_.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + A + com.fontlab.metricsRight + E + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/A_E_.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/A_E_.ss01.glif new file mode 100644 index 00000000..9655d89f --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/A_E_.ss01.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + A.ss01 + com.fontlab.metricsRight + E + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/A_E_acute.glif b/sources/FixelText-ExtraBold.ufo/glyphs/A_E_acute.glif new file mode 100644 index 00000000..4e5f5f0b --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/A_E_acute.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + AE+acute.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/A_acute.glif b/sources/FixelText-ExtraBold.ufo/glyphs/A_acute.glif new file mode 100644 index 00000000..f2e51c1a --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/A_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+acute.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/A_acute.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/A_acute.ss01.glif new file mode 100644 index 00000000..7a210020 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/A_acute.ss01.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + A.ss01+acute.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/A_breve.glif b/sources/FixelText-ExtraBold.ufo/glyphs/A_breve.glif new file mode 100644 index 00000000..b670e8d7 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/A_breve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+breve.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/A_breve.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/A_breve.ss01.glif new file mode 100644 index 00000000..6cd3e1b8 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/A_breve.ss01.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + A.ss01+breve.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/A_brevecyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/A_brevecyr.glif new file mode 100644 index 00000000..9f0b0ab0 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/A_brevecyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+breve.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/A_caron.glif b/sources/FixelText-ExtraBold.ufo/glyphs/A_caron.glif new file mode 100644 index 00000000..41a77870 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/A_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+caron.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/A_circumflex.glif b/sources/FixelText-ExtraBold.ufo/glyphs/A_circumflex.glif new file mode 100644 index 00000000..72c2b9b5 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/A_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+circumflex.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/A_circumflex.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/A_circumflex.ss01.glif new file mode 100644 index 00000000..5578693e --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/A_circumflex.ss01.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + A.ss01+circumflex.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/A_dieresis.glif b/sources/FixelText-ExtraBold.ufo/glyphs/A_dieresis.glif new file mode 100644 index 00000000..a41fd6b2 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/A_dieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+dieresis.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/A_dieresis.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/A_dieresis.ss01.glif new file mode 100644 index 00000000..f377f130 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/A_dieresis.ss01.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + A.ss01+dieresis.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/A_dieresiscyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/A_dieresiscyr.glif new file mode 100644 index 00000000..4a304aac --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/A_dieresiscyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/A_grave.glif b/sources/FixelText-ExtraBold.ufo/glyphs/A_grave.glif new file mode 100644 index 00000000..2058b467 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/A_grave.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+grave.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/A_grave.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/A_grave.ss01.glif new file mode 100644 index 00000000..dc4d25de --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/A_grave.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A.ss01+grave.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/A_iecyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/A_iecyr.glif new file mode 100644 index 00000000..f144d7ce --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/A_iecyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + AE + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/A_macron.glif b/sources/FixelText-ExtraBold.ufo/glyphs/A_macron.glif new file mode 100644 index 00000000..a1fc55aa --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/A_macron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+macron.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/A_macron.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/A_macron.ss01.glif new file mode 100644 index 00000000..a2551e95 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/A_macron.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A.ss01+macron.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/A_ogonek.glif b/sources/FixelText-ExtraBold.ufo/glyphs/A_ogonek.glif new file mode 100644 index 00000000..9e8f7488 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/A_ogonek.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+ogonek + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/A_ogonek.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/A_ogonek.ss01.glif new file mode 100644 index 00000000..0a9b911a --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/A_ogonek.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A.ss01+ogonek + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/A_ring.glif b/sources/FixelText-ExtraBold.ufo/glyphs/A_ring.glif new file mode 100644 index 00000000..21b27a91 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/A_ring.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+ring.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/A_ring.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/A_ring.ss01.glif new file mode 100644 index 00000000..aa774c60 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/A_ring.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A.ss01+ring.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/A_tilde.glif b/sources/FixelText-ExtraBold.ufo/glyphs/A_tilde.glif new file mode 100644 index 00000000..698843dd --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/A_tilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+tilde.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/A_tilde.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/A_tilde.ss01.glif new file mode 100644 index 00000000..0b7f7499 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/A_tilde.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A.ss01+tilde.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/B_.glif b/sources/FixelText-ExtraBold.ufo/glyphs/B_.glif new file mode 100644 index 00000000..a9ef9ed0 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/B_.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/B_e-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/B_e-cy.glif new file mode 100644 index 00000000..af34264a --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/B_e-cy.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + B-10 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/C_.glif b/sources/FixelText-ExtraBold.ufo/glyphs/C_.glif new file mode 100644 index 00000000..92ccce36 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/C_.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/C_R_.glif b/sources/FixelText-ExtraBold.ufo/glyphs/C_R_.glif new file mode 100644 index 00000000..a38a285e --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/C_R_.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/C_acute.glif b/sources/FixelText-ExtraBold.ufo/glyphs/C_acute.glif new file mode 100644 index 00000000..7c9e5b09 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/C_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+acute.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/C_caron.glif b/sources/FixelText-ExtraBold.ufo/glyphs/C_caron.glif new file mode 100644 index 00000000..888226a3 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/C_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+caron.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/C_cedilla.glif b/sources/FixelText-ExtraBold.ufo/glyphs/C_cedilla.glif new file mode 100644 index 00000000..eb430a88 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/C_cedilla.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+cedilla + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/C_che-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/C_che-cy.glif new file mode 100644 index 00000000..73a9df84 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/C_che-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ч + com.fontlab.metricsRight + Ч + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/C_circumflex.glif b/sources/FixelText-ExtraBold.ufo/glyphs/C_circumflex.glif new file mode 100644 index 00000000..30d750b7 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/C_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+circumflex.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/C_dotaccent.glif b/sources/FixelText-ExtraBold.ufo/glyphs/C_dotaccent.glif new file mode 100644 index 00000000..2476b1a1 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/C_dotaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+dotaccent.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/C_he-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/C_he-cy.glif new file mode 100644 index 00000000..4b77ca40 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/C_he-cy.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/C_heabkhcyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/C_heabkhcyr.glif new file mode 100644 index 00000000..81a89caa --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/C_heabkhcyr.glif @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + |Schwa + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/C_heabkhtailcyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/C_heabkhtailcyr.glif new file mode 100644 index 00000000..6f039b8f --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/C_heabkhtailcyr.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Cheabkhcyr + com.fontlab.metricsRight + Cheabkhcyr + com.fontlab.recipe + Cheabkhcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/C_hedieresiscyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/C_hedieresiscyr.glif new file mode 100644 index 00000000..6823a099 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/C_hedieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Che-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/C_hekhakascyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/C_hekhakascyr.glif new file mode 100644 index 00000000..c72b2c3c --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/C_hekhakascyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ч + com.fontlab.metricsRight + H + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/C_hetailcyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/C_hetailcyr.glif new file mode 100644 index 00000000..dc498541 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/C_hetailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ч + com.fontlab.metricsRight + Entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/C_hevertcyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/C_hevertcyr.glif new file mode 100644 index 00000000..4e4367ac --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/C_hevertcyr.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ч + com.fontlab.metricsRight + Н + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/C_rossedO_-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/C_rossedO_-cy.glif new file mode 100644 index 00000000..38aa45d6 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/C_rossedO_-cy.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + com.fontlab.recipe + O + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/D_.glif b/sources/FixelText-ExtraBold.ufo/glyphs/D_.glif new file mode 100644 index 00000000..e3bafc1b --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/D_.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/D_caron.glif b/sources/FixelText-ExtraBold.ufo/glyphs/D_caron.glif new file mode 100644 index 00000000..e755707e --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/D_caron.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + D+caron.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/D_checyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/D_checyr.glif new file mode 100644 index 00000000..e870332b --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/D_checyr.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Д+10 + com.fontlab.metricsRight + Д + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/D_croat.glif b/sources/FixelText-ExtraBold.ufo/glyphs/D_croat.glif new file mode 100644 index 00000000..936b5664 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/D_croat.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + D + com.fontlab.recipe + Eth + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/D_e-cy.B_G_R_.glif b/sources/FixelText-ExtraBold.ufo/glyphs/D_e-cy.B_G_R_.glif new file mode 100644 index 00000000..dda2cf02 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/D_e-cy.B_G_R_.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + l() + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/D_e-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/D_e-cy.glif new file mode 100644 index 00000000..f40df76a --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/D_e-cy.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/D_eS_oft-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/D_eS_oft-cy.glif new file mode 100644 index 00000000..5432fc4d --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/D_eS_oft-cy.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Д + com.fontlab.metricsRight + Ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/D_ekomicyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/D_ekomicyr.glif new file mode 100644 index 00000000..f5472f69 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/D_ekomicyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.metricsLeft + |P + com.fontlab.metricsRight + H + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/D_elta.glif b/sources/FixelText-ExtraBold.ufo/glyphs/D_elta.glif new file mode 100644 index 00000000..ecba5e4b --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/D_elta.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + A + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/D_jecyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/D_jecyr.glif new file mode 100644 index 00000000..55294c70 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/D_jecyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/D_jekomicyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/D_jekomicyr.glif new file mode 100644 index 00000000..9d685bfc --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/D_jekomicyr.glif @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Dekomicyr + com.fontlab.metricsRight + Njekomicyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/D_jerv-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/D_jerv-cy.glif new file mode 100644 index 00000000..743ea93f --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/D_jerv-cy.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + r() + com.fontlab.metricsRight + O + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/D_oubleO_-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/D_oubleO_-cy.glif new file mode 100644 index 00000000..61c5ab21 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/D_oubleO_-cy.glif @@ -0,0 +1,91 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + com.fontlab.recipe + O_O + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/D_we-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/D_we-cy.glif new file mode 100644 index 00000000..e249bfb6 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/D_we-cy.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Д + com.fontlab.metricsRight + Д + com.fontlab.recipe + Д + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/D_ze-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/D_ze-cy.glif new file mode 100644 index 00000000..352e6509 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/D_ze-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + S + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/D_zeR_eversed-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/D_zeR_eversed-cy.glif new file mode 100644 index 00000000..9cb2d922 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/D_zeR_eversed-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + S + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/D_zeabkhcyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/D_zeabkhcyr.glif new file mode 100644 index 00000000..21c16a79 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/D_zeabkhcyr.glif @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + З-10 + com.fontlab.metricsRight + З-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/D_zelo-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/D_zelo-cy.glif new file mode 100644 index 00000000..b56c406f --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/D_zelo-cy.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/D_zhecyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/D_zhecyr.glif new file mode 100644 index 00000000..2e3c9e3a --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/D_zhecyr.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/D_zjekomicyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/D_zjekomicyr.glif new file mode 100644 index 00000000..0411cd1a --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/D_zjekomicyr.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + З-10 + com.fontlab.metricsRight + Ц-5 + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/D_zwe-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/D_zwe-cy.glif new file mode 100644 index 00000000..0931f0b3 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/D_zwe-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + S + com.fontlab.metricsRight + S + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/D_zze-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/D_zze-cy.glif new file mode 100644 index 00000000..539cd3e9 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/D_zze-cy.glif @@ -0,0 +1,84 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Д + com.fontlab.metricsRight + Д-20 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/D_zzhecyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/D_zzhecyr.glif new file mode 100644 index 00000000..b48cde66 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/D_zzhecyr.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Д + com.fontlab.metricsRight + Ж + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/E_-cy.accented.glif b/sources/FixelText-ExtraBold.ufo/glyphs/E_-cy.accented.glif new file mode 100644 index 00000000..02a86a51 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/E_-cy.accented.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+acute.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/E_-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/E_-cy.glif new file mode 100644 index 00000000..a63af391 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/E_-cy.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + C + com.fontlab.metricsRight + C + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/E_.glif b/sources/FixelText-ExtraBold.ufo/glyphs/E_.glif new file mode 100644 index 00000000..fa874752 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/E_.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + com.fontlab.metricsRight + F+10 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/E_acute.glif b/sources/FixelText-ExtraBold.ufo/glyphs/E_acute.glif new file mode 100644 index 00000000..f14e29ca --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/E_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+acute.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/E_breve.glif b/sources/FixelText-ExtraBold.ufo/glyphs/E_breve.glif new file mode 100644 index 00000000..a64b5bfe --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/E_breve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+breve.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/E_caron.glif b/sources/FixelText-ExtraBold.ufo/glyphs/E_caron.glif new file mode 100644 index 00000000..401434d3 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/E_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+caron.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/E_circumflex.glif b/sources/FixelText-ExtraBold.ufo/glyphs/E_circumflex.glif new file mode 100644 index 00000000..b3763d83 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/E_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+circumflex.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/E_dieresis.glif b/sources/FixelText-ExtraBold.ufo/glyphs/E_dieresis.glif new file mode 100644 index 00000000..9fdba775 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/E_dieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+dieresiscase.alt + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/E_dotaccent.glif b/sources/FixelText-ExtraBold.ufo/glyphs/E_dotaccent.glif new file mode 100644 index 00000000..827d15ae --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/E_dotaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+dotaccent.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/E_f-cy.B_G_R_.glif b/sources/FixelText-ExtraBold.ufo/glyphs/E_f-cy.B_G_R_.glif new file mode 100644 index 00000000..69a13df0 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/E_f-cy.B_G_R_.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/E_f-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/E_f-cy.glif new file mode 100644 index 00000000..91ef58ac --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/E_f-cy.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/E_grave.glif b/sources/FixelText-ExtraBold.ufo/glyphs/E_grave.glif new file mode 100644 index 00000000..5e9f5217 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/E_grave.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+grave.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/E_iotifiedcyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/E_iotifiedcyr.glif new file mode 100644 index 00000000..773a50ab --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/E_iotifiedcyr.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + C + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/E_l-cy.B_G_R_.glif b/sources/FixelText-ExtraBold.ufo/glyphs/E_l-cy.B_G_R_.glif new file mode 100644 index 00000000..e55a6d57 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/E_l-cy.B_G_R_.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + A + com.fontlab.metricsRight + l() + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/E_l-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/E_l-cy.glif new file mode 100644 index 00000000..c889d120 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/E_l-cy.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/E_lS_oft-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/E_lS_oft-cy.glif new file mode 100644 index 00000000..9b8c624f --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/E_lS_oft-cy.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/E_lhookcyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/E_lhookcyr.glif new file mode 100644 index 00000000..353c8b61 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/E_lhookcyr.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Л + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/E_lmiddlehookcyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/E_lmiddlehookcyr.glif new file mode 100644 index 00000000..ea45a991 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/E_lmiddlehookcyr.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Shhacyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/E_lsharptailcyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/E_lsharptailcyr.glif new file mode 100644 index 00000000..f5e54799 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/E_lsharptailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Ensharptailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/E_lsmallcyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/E_lsmallcyr.glif new file mode 100644 index 00000000..807765c4 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/E_lsmallcyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + el-cy.BGR + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/E_ltailcyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/E_ltailcyr.glif new file mode 100644 index 00000000..7fa64f62 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/E_ltailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/E_m-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/E_m-cy.glif new file mode 100644 index 00000000..616c193a --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/E_m-cy.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + M + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/E_m-cy.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/E_m-cy.ss01.glif new file mode 100644 index 00000000..70060bfe --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/E_m-cy.ss01.glif @@ -0,0 +1,13 @@ + + + + + + + + + com.fontlab.recipe + M + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/E_mS_oft-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/E_mS_oft-cy.glif new file mode 100644 index 00000000..887a32d6 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/E_mS_oft-cy.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + M + com.fontlab.metricsRight + Ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/E_macron.glif b/sources/FixelText-ExtraBold.ufo/glyphs/E_macron.glif new file mode 100644 index 00000000..0d87676d --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/E_macron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+macron.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/E_msharptailcyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/E_msharptailcyr.glif new file mode 100644 index 00000000..04b6bea6 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/E_msharptailcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Н + com.fontlab.metricsRight + Ensharptailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/E_n-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/E_n-cy.glif new file mode 100644 index 00000000..72c54cd5 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/E_n-cy.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + H + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/E_ng.glif b/sources/FixelText-ExtraBold.ufo/glyphs/E_ng.glif new file mode 100644 index 00000000..b87e1c5e --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/E_ng.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + N + com.fontlab.metricsRight + l() + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/E_ng.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/E_ng.ss01.glif new file mode 100644 index 00000000..5d4d5c36 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/E_ng.ss01.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + N.ss01 + com.fontlab.metricsRight + J.ss01 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/E_ngecyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/E_ngecyr.glif new file mode 100644 index 00000000..420f59fe --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/E_ngecyr.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/E_nhookcyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/E_nhookcyr.glif new file mode 100644 index 00000000..ea56cd7a --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/E_nhookcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/E_nhookleftcyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/E_nhookleftcyr.glif new file mode 100644 index 00000000..30173ace --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/E_nhookleftcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + r()-159 + com.fontlab.metricsRight + H + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/E_nmiddlehookcyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/E_nmiddlehookcyr.glif new file mode 100644 index 00000000..60d157e3 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/E_nmiddlehookcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Shhacyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/E_nsharptailcyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/E_nsharptailcyr.glif new file mode 100644 index 00000000..0f8ecc74 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/E_nsharptailcyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Н + com.fontlab.metricsRight + Д + com.fontlab.recipe + Entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/E_ntailcyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/E_ntailcyr.glif new file mode 100644 index 00000000..f8fd9216 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/E_ntailcyr.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Ц + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/E_ogonek.glif b/sources/FixelText-ExtraBold.ufo/glyphs/E_ogonek.glif new file mode 100644 index 00000000..4a752028 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/E_ogonek.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+ogonek + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/E_r-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/E_r-cy.glif new file mode 100644 index 00000000..3758d221 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/E_r-cy.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + P + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/E_reversed-cy.accented.glif b/sources/FixelText-ExtraBold.ufo/glyphs/E_reversed-cy.accented.glif new file mode 100644 index 00000000..8d28af43 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/E_reversed-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Э+acute.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/E_reversed-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/E_reversed-cy.glif new file mode 100644 index 00000000..f5850b94 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/E_reversed-cy.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |C + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/E_reverseddieresiscyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/E_reverseddieresiscyr.glif new file mode 100644 index 00000000..7251eebf --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/E_reverseddieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ereversed-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/E_rtickcyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/E_rtickcyr.glif new file mode 100644 index 00000000..f3ba6323 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/E_rtickcyr.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + P + com.fontlab.metricsRight + P + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/E_s-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/E_s-cy.glif new file mode 100644 index 00000000..16982e37 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/E_s-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/E_stailcyr.B_S_H_.glif b/sources/FixelText-ExtraBold.ufo/glyphs/E_stailcyr.B_S_H_.glif new file mode 100644 index 00000000..5c1fef96 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/E_stailcyr.B_S_H_.glif @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + C + com.fontlab.metricsRight + C + com.fontlab.recipe + C + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/E_stailcyr.C_H_U_.glif b/sources/FixelText-ExtraBold.ufo/glyphs/E_stailcyr.C_H_U_.glif new file mode 100644 index 00000000..84227ff1 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/E_stailcyr.C_H_U_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+cedilla.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/E_stailcyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/E_stailcyr.glif new file mode 100644 index 00000000..3e40eab5 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/E_stailcyr.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + С + com.fontlab.metricsRight + С + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/E_th.glif b/sources/FixelText-ExtraBold.ufo/glyphs/E_th.glif new file mode 100644 index 00000000..efd743d4 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/E_th.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + D + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/F_.glif b/sources/FixelText-ExtraBold.ufo/glyphs/F_.glif new file mode 100644 index 00000000..9d510efb --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/F_.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/F_itacyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/F_itacyr.glif new file mode 100644 index 00000000..2d6f791d --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/F_itacyr.glif @@ -0,0 +1,78 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + com.fontlab.recipe + Obarcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/G_.glif b/sources/FixelText-ExtraBold.ufo/glyphs/G_.glif new file mode 100644 index 00000000..99317a3a --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/G_.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O+18 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/G_.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/G_.ss01.glif new file mode 100644 index 00000000..de40c05b --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/G_.ss01.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O+10 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/G_acute.glif b/sources/FixelText-ExtraBold.ufo/glyphs/G_acute.glif new file mode 100644 index 00000000..4c0fcf5e --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/G_acute.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + G+acute.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/G_acute.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/G_acute.ss01.glif new file mode 100644 index 00000000..1a70d1d7 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/G_acute.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G.ss01+acute.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/G_breve.glif b/sources/FixelText-ExtraBold.ufo/glyphs/G_breve.glif new file mode 100644 index 00000000..fb88c009 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/G_breve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G+breve.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/G_breve.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/G_breve.ss01.glif new file mode 100644 index 00000000..efeea8a7 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/G_breve.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G.ss01+breve.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/G_circumflex.glif b/sources/FixelText-ExtraBold.ufo/glyphs/G_circumflex.glif new file mode 100644 index 00000000..1e2132eb --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/G_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G+circumflex.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/G_circumflex.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/G_circumflex.ss01.glif new file mode 100644 index 00000000..47dc276f --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/G_circumflex.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G.ss01+circumflex.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/G_commaaccent.glif b/sources/FixelText-ExtraBold.ufo/glyphs/G_commaaccent.glif new file mode 100644 index 00000000..ef7caed3 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/G_commaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G+commaaccentcomb + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/G_commaaccent.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/G_commaaccent.ss01.glif new file mode 100644 index 00000000..1c2e682a --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/G_commaaccent.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G.ss01+commaaccentcomb + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/G_dotaccent.glif b/sources/FixelText-ExtraBold.ufo/glyphs/G_dotaccent.glif new file mode 100644 index 00000000..4d38b58c --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/G_dotaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G+dotaccent.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/G_dotaccent.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/G_dotaccent.ss01.glif new file mode 100644 index 00000000..b4424fad --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/G_dotaccent.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G.ss01+dotaccent.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/G_e-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/G_e-cy.glif new file mode 100644 index 00000000..e35e3489 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/G_e-cy.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + T + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/G_ehookcyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/G_ehookcyr.glif new file mode 100644 index 00000000..44110ecf --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/G_ehookcyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Г + com.fontlab.metricsRight + Tshecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/G_ehookstrokecyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/G_ehookstrokecyr.glif new file mode 100644 index 00000000..2b5ceae0 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/G_ehookstrokecyr.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Gestrokecyr + com.fontlab.metricsRight + Gestrokecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/G_ermandbls.glif b/sources/FixelText-ExtraBold.ufo/glyphs/G_ermandbls.glif new file mode 100644 index 00000000..00adb28a --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/G_ermandbls.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + U + com.fontlab.metricsRight + B-5 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/G_estrokecyr.B_S_H_.glif b/sources/FixelText-ExtraBold.ufo/glyphs/G_estrokecyr.B_S_H_.glif new file mode 100644 index 00000000..5ab22cb0 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/G_estrokecyr.B_S_H_.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + F + com.fontlab.metricsRight + Gestrokecyr + com.fontlab.recipe + Gestrokecyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/G_estrokecyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/G_estrokecyr.glif new file mode 100644 index 00000000..8e6c2fc1 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/G_estrokecyr.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + Г + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/G_etailcyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/G_etailcyr.glif new file mode 100644 index 00000000..979e96f2 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/G_etailcyr.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Г + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/G_heupturn-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/G_heupturn-cy.glif new file mode 100644 index 00000000..b57099c6 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/G_heupturn-cy.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Г + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/G_jecyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/G_jecyr.glif new file mode 100644 index 00000000..7ae73f2f --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/G_jecyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ge-cy+acute.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/H_.glif b/sources/FixelText-ExtraBold.ufo/glyphs/H_.glif new file mode 100644 index 00000000..3e85d2b6 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/H_.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + com.fontlab.metricsRight + I + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/H_a-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/H_a-cy.glif new file mode 100644 index 00000000..713a847f --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/H_a-cy.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + X + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/H_a-cy.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/H_a-cy.ss01.glif new file mode 100644 index 00000000..ed0639f3 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/H_a-cy.ss01.glif @@ -0,0 +1,14 @@ + + + + + + + + + + com.fontlab.recipe + X + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/H_aabkhcyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/H_aabkhcyr.glif new file mode 100644 index 00000000..b90848f4 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/H_aabkhcyr.glif @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/H_ahookcyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/H_ahookcyr.glif new file mode 100644 index 00000000..1754515f --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/H_ahookcyr.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + X + com.fontlab.metricsRight + X + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/H_ardsign-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/H_ardsign-cy.glif new file mode 100644 index 00000000..c4d20650 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/H_ardsign-cy.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + Ь + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/H_astrokecyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/H_astrokecyr.glif new file mode 100644 index 00000000..52c55eb0 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/H_astrokecyr.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + X + com.fontlab.metricsRight + X + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/H_bar.glif b/sources/FixelText-ExtraBold.ufo/glyphs/H_bar.glif new file mode 100644 index 00000000..134bd0a5 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/H_bar.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + r() + com.fontlab.metricsRight + H + com.schriftgestaltung.Glyphs.rightMetricsKey + H + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/H_circumflex.glif b/sources/FixelText-ExtraBold.ufo/glyphs/H_circumflex.glif new file mode 100644 index 00000000..b6f06b04 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/H_circumflex.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + H+circumflex.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/H_we-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/H_we-cy.glif new file mode 100644 index 00000000..d4f257d0 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/H_we-cy.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Iota-cy + com.fontlab.metricsRight + Tshecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/I_-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/I_-cy.glif new file mode 100644 index 00000000..3638f41b --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/I_-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/I_.glif b/sources/FixelText-ExtraBold.ufo/glyphs/I_.glif new file mode 100644 index 00000000..7500bed0 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/I_.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/I_J_.glif b/sources/FixelText-ExtraBold.ufo/glyphs/I_J_.glif new file mode 100644 index 00000000..8366d47c --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/I_J_.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + I_J + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/I_a-cy.accented.glif b/sources/FixelText-ExtraBold.ufo/glyphs/I_a-cy.accented.glif new file mode 100644 index 00000000..a15b14ab --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/I_a-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Я+acute.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/I_a-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/I_a-cy.glif new file mode 100644 index 00000000..be32513a --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/I_a-cy.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |R+10 + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/I_a-cy.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/I_a-cy.ss01.glif new file mode 100644 index 00000000..7c509848 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/I_a-cy.ss01.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/I_acute.glif b/sources/FixelText-ExtraBold.ufo/glyphs/I_acute.glif new file mode 100644 index 00000000..1015427b --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/I_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+acute.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/I_breve.glif b/sources/FixelText-ExtraBold.ufo/glyphs/I_breve.glif new file mode 100644 index 00000000..f745dd04 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/I_breve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+breve.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/I_circumflex.glif b/sources/FixelText-ExtraBold.ufo/glyphs/I_circumflex.glif new file mode 100644 index 00000000..eeb98d02 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/I_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+circumflex.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/I_dieresis.glif b/sources/FixelText-ExtraBold.ufo/glyphs/I_dieresis.glif new file mode 100644 index 00000000..a760902d --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/I_dieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+dieresiscase.alt + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/I_dieresiscyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/I_dieresiscyr.glif new file mode 100644 index 00000000..8175b978 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/I_dieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ii-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/I_dotaccent.glif b/sources/FixelText-ExtraBold.ufo/glyphs/I_dotaccent.glif new file mode 100644 index 00000000..3a7d53a1 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/I_dotaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+dotaccent.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/I_e-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/I_e-cy.glif new file mode 100644 index 00000000..4299ae7b --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/I_e-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/I_ebrevecyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/I_ebrevecyr.glif new file mode 100644 index 00000000..f2dc5f54 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/I_ebrevecyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+breve.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/I_egravecyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/I_egravecyr.glif new file mode 100644 index 00000000..baa18c55 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/I_egravecyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+grave.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/I_grave.glif b/sources/FixelText-ExtraBold.ufo/glyphs/I_grave.glif new file mode 100644 index 00000000..7f756d64 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/I_grave.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+grave.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/I_gravecyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/I_gravecyr.glif new file mode 100644 index 00000000..dbe51505 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/I_gravecyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ii-cy+grave.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/I_i-cy.accented.glif b/sources/FixelText-ExtraBold.ufo/glyphs/I_i-cy.accented.glif new file mode 100644 index 00000000..fbe16155 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/I_i-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + И+acute.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/I_i-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/I_i-cy.glif new file mode 100644 index 00000000..cb360b6b --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/I_i-cy.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/I_ishort-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/I_ishort-cy.glif new file mode 100644 index 00000000..43300a99 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/I_ishort-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + uni0418+breve.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/I_macron.glif b/sources/FixelText-ExtraBold.ufo/glyphs/I_macron.glif new file mode 100644 index 00000000..647fe0d6 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/I_macron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+macron.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/I_macroncyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/I_macroncyr.glif new file mode 100644 index 00000000..14c7caa1 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/I_macroncyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ii-cy+macron.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/I_o-cy.accented.glif b/sources/FixelText-ExtraBold.ufo/glyphs/I_o-cy.accented.glif new file mode 100644 index 00000000..f6ef8773 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/I_o-cy.accented.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + com.fontlab.recipe + E+dieresis.case+acute.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/I_o-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/I_o-cy.glif new file mode 100644 index 00000000..4b173b31 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/I_o-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Edieresis + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/I_ogonek.glif b/sources/FixelText-ExtraBold.ufo/glyphs/I_ogonek.glif new file mode 100644 index 00000000..2d04c1d9 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/I_ogonek.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+ogonek + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/I_ota-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/I_ota-cy.glif new file mode 100644 index 00000000..eabf62ed --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/I_ota-cy.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |J + com.fontlab.metricsRight + |J + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/I_otifiedA_-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/I_otifiedA_-cy.glif new file mode 100644 index 00000000..7a2a08ab --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/I_otifiedA_-cy.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + com.fontlab.metricsRight + A + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/I_shortsharptailcyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/I_shortsharptailcyr.glif new file mode 100644 index 00000000..963be089 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/I_shortsharptailcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Й + com.fontlab.metricsRight + Ensharptailcyr + com.fontlab.recipe + Й + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/I_tilde.glif b/sources/FixelText-ExtraBold.ufo/glyphs/I_tilde.glif new file mode 100644 index 00000000..8569dba3 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/I_tilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+tilde.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/I_u-cy.accented.glif b/sources/FixelText-ExtraBold.ufo/glyphs/I_u-cy.accented.glif new file mode 100644 index 00000000..29ba17bd --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/I_u-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ю+acute.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/I_u-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/I_u-cy.glif new file mode 100644 index 00000000..61263791 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/I_u-cy.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/I_zhitsacyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/I_zhitsacyr.glif new file mode 100644 index 00000000..55e3a725 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/I_zhitsacyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + V + com.fontlab.metricsRight + + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/I_zhitsagravedblcyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/I_zhitsagravedblcyr.glif new file mode 100644 index 00000000..f419b096 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/I_zhitsagravedblcyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + com.fontlab.metricsLeft + Izhitsacyr + com.fontlab.metricsRight + Izhitsacyr + com.fontlab.recipe + Izhitsacyr+hungarumlaut.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/J_.glif b/sources/FixelText-ExtraBold.ufo/glyphs/J_.glif new file mode 100644 index 00000000..f4beeddb --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/J_.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + U + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/J_.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/J_.ss01.glif new file mode 100644 index 00000000..9191bd72 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/J_.ss01.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + U + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/J_circumflex.glif b/sources/FixelText-ExtraBold.ufo/glyphs/J_circumflex.glif new file mode 100644 index 00000000..657c8d6e --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/J_circumflex.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + J+circumflex.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/J_circumflex.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/J_circumflex.ss01.glif new file mode 100644 index 00000000..ee26ae28 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/J_circumflex.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + J.ss01+circumflex.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/J_ecyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/J_ecyr.glif new file mode 100644 index 00000000..14a46280 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/J_ecyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsLeft + J + com.fontlab.metricsRight + J + com.fontlab.recipe + J + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/K_.glif b/sources/FixelText-ExtraBold.ufo/glyphs/K_.glif new file mode 100644 index 00000000..a233198f --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/K_.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/K_.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/K_.ss01.glif new file mode 100644 index 00000000..ed1653b8 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/K_.ss01.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/K_a-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/K_a-cy.glif new file mode 100644 index 00000000..459e07b0 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/K_a-cy.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.recipe + K + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/K_a-cy.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/K_a-cy.ss01.glif new file mode 100644 index 00000000..c4ae9f6d --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/K_a-cy.ss01.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.recipe + K + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/K_aaleutcyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/K_aaleutcyr.glif new file mode 100644 index 00000000..86988375 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/K_aaleutcyr.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + K + com.fontlab.metricsRight + K + com.fontlab.recipe + K + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/K_abashkcyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/K_abashkcyr.glif new file mode 100644 index 00000000..85234d44 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/K_abashkcyr.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Hardsign-cy + com.fontlab.metricsRight + K + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/K_ahookcyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/K_ahookcyr.glif new file mode 100644 index 00000000..6afc7e3c --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/K_ahookcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + K + com.fontlab.metricsRight + Djecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/K_astrokecyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/K_astrokecyr.glif new file mode 100644 index 00000000..94261928 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/K_astrokecyr.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Yatcyr + com.fontlab.metricsRight + K + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/K_atailcyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/K_atailcyr.glif new file mode 100644 index 00000000..9bcadce7 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/K_atailcyr.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + К-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/K_averticalstrokecyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/K_averticalstrokecyr.glif new file mode 100644 index 00000000..bd9bc9a0 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/K_averticalstrokecyr.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + K + com.fontlab.metricsRight + Ж + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/K_commaaccent.glif b/sources/FixelText-ExtraBold.ufo/glyphs/K_commaaccent.glif new file mode 100644 index 00000000..0b9fa868 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/K_commaaccent.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + K+commaaccentcomb + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/K_commaaccent.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/K_commaaccent.ss01.glif new file mode 100644 index 00000000..eebe7b1a --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/K_commaaccent.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + K.ss01+commaaccentcomb + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/K_jecyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/K_jecyr.glif new file mode 100644 index 00000000..b0c2aefa --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/K_jecyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ka-cy+acute.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/K_oppacyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/K_oppacyr.glif new file mode 100644 index 00000000..09a49c23 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/K_oppacyr.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + C-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/K_sicyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/K_sicyr.glif new file mode 100644 index 00000000..0464c5e8 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/K_sicyr.glif @@ -0,0 +1,98 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + З-10 + com.fontlab.metricsRight + З + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/L_.glif b/sources/FixelText-ExtraBold.ufo/glyphs/L_.glif new file mode 100644 index 00000000..5772de36 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/L_.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/L_acute.glif b/sources/FixelText-ExtraBold.ufo/glyphs/L_acute.glif new file mode 100644 index 00000000..d8dbaa1c --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/L_acute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + L+acute.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/L_caron.glif b/sources/FixelText-ExtraBold.ufo/glyphs/L_caron.glif new file mode 100644 index 00000000..268ef7dd --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/L_caron.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + com.fontlab.recipe + L+caron.salt + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/L_commaaccent.glif b/sources/FixelText-ExtraBold.ufo/glyphs/L_commaaccent.glif new file mode 100644 index 00000000..6c3319e3 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/L_commaaccent.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + L+commaaccentcomb + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/L_dot.glif b/sources/FixelText-ExtraBold.ufo/glyphs/L_dot.glif new file mode 100644 index 00000000..4305eae1 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/L_dot.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + com.fontlab.metricsRight + L + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/L_hacyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/L_hacyr.glif new file mode 100644 index 00000000..fedc19be --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/L_hacyr.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + X + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/L_jecyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/L_jecyr.glif new file mode 100644 index 00000000..ac892580 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/L_jecyr.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Ь + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/L_jekomicyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/L_jekomicyr.glif new file mode 100644 index 00000000..7b7bdddb --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/L_jekomicyr.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Njekomicyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/L_slash.glif b/sources/FixelText-ExtraBold.ufo/glyphs/L_slash.glif new file mode 100644 index 00000000..330cca71 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/L_slash.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + L-80 + com.fontlab.metricsRight + L + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/M_.glif b/sources/FixelText-ExtraBold.ufo/glyphs/M_.glif new file mode 100644 index 00000000..7e2e11ab --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/M_.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/M_.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/M_.ss01.glif new file mode 100644 index 00000000..c9508f50 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/M_.ss01.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H-25 + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/N_.glif b/sources/FixelText-ExtraBold.ufo/glyphs/N_.glif new file mode 100644 index 00000000..499b423d --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/N_.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/N_.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/N_.ss01.glif new file mode 100644 index 00000000..eed21cb8 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/N_.ss01.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H-10 + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/N_U_L_L_.glif b/sources/FixelText-ExtraBold.ufo/glyphs/N_U_L_L_.glif new file mode 100644 index 00000000..1ad177ae --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/N_U_L_L_.glif @@ -0,0 +1,4 @@ + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/N_acute.glif b/sources/FixelText-ExtraBold.ufo/glyphs/N_acute.glif new file mode 100644 index 00000000..3beed553 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/N_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N+acute.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/N_acute.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/N_acute.ss01.glif new file mode 100644 index 00000000..6e80e0bd --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/N_acute.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N.ss01+acute.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/N_caron.glif b/sources/FixelText-ExtraBold.ufo/glyphs/N_caron.glif new file mode 100644 index 00000000..5edd9254 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/N_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N+caron.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/N_caron.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/N_caron.ss01.glif new file mode 100644 index 00000000..d4b9bd4c --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/N_caron.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N.ss01+caron.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/N_commaaccent.glif b/sources/FixelText-ExtraBold.ufo/glyphs/N_commaaccent.glif new file mode 100644 index 00000000..d8186390 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/N_commaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N+commaaccentcomb + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/N_commaaccent.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/N_commaaccent.ss01.glif new file mode 100644 index 00000000..3a4874e8 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/N_commaaccent.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N.ss01+commaaccentcomb + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/N_jecyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/N_jecyr.glif new file mode 100644 index 00000000..68e59717 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/N_jecyr.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Н + com.fontlab.metricsRight + Ь + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/N_jekomicyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/N_jekomicyr.glif new file mode 100644 index 00000000..b365b7d4 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/N_jekomicyr.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + |u + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/N_tilde.glif b/sources/FixelText-ExtraBold.ufo/glyphs/N_tilde.glif new file mode 100644 index 00000000..fe1e445c --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/N_tilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N+tilde.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/N_tilde.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/N_tilde.ss01.glif new file mode 100644 index 00000000..c4646c00 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/N_tilde.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N.ss01+tilde.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/O_-cy.accented.glif b/sources/FixelText-ExtraBold.ufo/glyphs/O_-cy.accented.glif new file mode 100644 index 00000000..458be340 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/O_-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+acute.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/O_-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/O_-cy.glif new file mode 100644 index 00000000..02d75e6c --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/O_-cy.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/O_.glif b/sources/FixelText-ExtraBold.ufo/glyphs/O_.glif new file mode 100644 index 00000000..fca6fbe3 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/O_.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/O_B_inocular-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/O_B_inocular-cy.glif new file mode 100644 index 00000000..7d150006 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/O_B_inocular-cy.glif @@ -0,0 +1,81 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/O_D_oubleM_onocular-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/O_D_oubleM_onocular-cy.glif new file mode 100644 index 00000000..e2e55446 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/O_D_oubleM_onocular-cy.glif @@ -0,0 +1,119 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + com.fontlab.recipe + DoubleO-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/O_E_.glif b/sources/FixelText-ExtraBold.ufo/glyphs/O_E_.glif new file mode 100644 index 00000000..cc04cc4d --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/O_E_.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + E + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/O_M_onocular-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/O_M_onocular-cy.glif new file mode 100644 index 00000000..dc6aeb0a --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/O_M_onocular-cy.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/O_acute.glif b/sources/FixelText-ExtraBold.ufo/glyphs/O_acute.glif new file mode 100644 index 00000000..c895aaac --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/O_acute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+acute.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/O_barcyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/O_barcyr.glif new file mode 100644 index 00000000..4554332b --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/O_barcyr.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + r() + com.fontlab.metricsRight + O + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/O_bardieresiscyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/O_bardieresiscyr.glif new file mode 100644 index 00000000..64247b57 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/O_bardieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Obarcyr+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/O_breve.glif b/sources/FixelText-ExtraBold.ufo/glyphs/O_breve.glif new file mode 100644 index 00000000..0314c884 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/O_breve.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+breve.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/O_circumflex.glif b/sources/FixelText-ExtraBold.ufo/glyphs/O_circumflex.glif new file mode 100644 index 00000000..b70eea9c --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/O_circumflex.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+circumflex.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/O_dieresis.glif b/sources/FixelText-ExtraBold.ufo/glyphs/O_dieresis.glif new file mode 100644 index 00000000..65d55f77 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/O_dieresis.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+dieresis.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/O_dieresiscyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/O_dieresiscyr.glif new file mode 100644 index 00000000..77cfe6b7 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/O_dieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/O_grave.glif b/sources/FixelText-ExtraBold.ufo/glyphs/O_grave.glif new file mode 100644 index 00000000..d8acb9ee --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/O_grave.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+grave.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/O_hungarumlaut.glif b/sources/FixelText-ExtraBold.ufo/glyphs/O_hungarumlaut.glif new file mode 100644 index 00000000..f8597342 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/O_hungarumlaut.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+hungarumlaut.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/O_macron.glif b/sources/FixelText-ExtraBold.ufo/glyphs/O_macron.glif new file mode 100644 index 00000000..ea60d409 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/O_macron.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+macron.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/O_mega.glif b/sources/FixelText-ExtraBold.ufo/glyphs/O_mega.glif new file mode 100644 index 00000000..c83a8d24 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/O_mega.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O+10 + com.fontlab.metricsRight + O+10 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/O_megaB_road-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/O_megaB_road-cy.glif new file mode 100644 index 00000000..d21727f1 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/O_megaB_road-cy.glif @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O+10 + com.fontlab.metricsRight + O+10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/O_megacyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/O_megacyr.glif new file mode 100644 index 00000000..3ac30023 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/O_megacyr.glif @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O+10 + com.fontlab.metricsRight + O+10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/O_megaroundcyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/O_megaroundcyr.glif new file mode 100644 index 00000000..23ed799f --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/O_megaroundcyr.glif @@ -0,0 +1,81 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/O_megatitlocyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/O_megatitlocyr.glif new file mode 100644 index 00000000..1457c3d0 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/O_megatitlocyr.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O+10 + com.fontlab.metricsRight + O+10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/O_slash.glif b/sources/FixelText-ExtraBold.ufo/glyphs/O_slash.glif new file mode 100644 index 00000000..e4d63a83 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/O_slash.glif @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/O_slashacute.glif b/sources/FixelText-ExtraBold.ufo/glyphs/O_slashacute.glif new file mode 100644 index 00000000..d18d085f --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/O_slashacute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Oslash+acute.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/O_tcyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/O_tcyr.glif new file mode 100644 index 00000000..2c6d8992 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/O_tcyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Omegacyr+uni2DEE.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/O_tilde.glif b/sources/FixelText-ExtraBold.ufo/glyphs/O_tilde.glif new file mode 100644 index 00000000..0dffe31f --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/O_tilde.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+tilde.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/P_.glif b/sources/FixelText-ExtraBold.ufo/glyphs/P_.glif new file mode 100644 index 00000000..05ad001a --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/P_.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/P_alochkacyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/P_alochkacyr.glif new file mode 100644 index 00000000..9d977010 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/P_alochkacyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/P_e-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/P_e-cy.glif new file mode 100644 index 00000000..81b5f382 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/P_e-cy.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/P_ehookcyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/P_ehookcyr.glif new file mode 100644 index 00000000..88f925f9 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/P_ehookcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + П + com.fontlab.metricsRight + Shhacyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/P_etailcyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/P_etailcyr.glif new file mode 100644 index 00000000..d4dafcbc --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/P_etailcyr.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/P_sicyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/P_sicyr.glif new file mode 100644 index 00000000..6d8f5f22 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/P_sicyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + U-20 + com.fontlab.metricsRight + U-20 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/Q_.glif b/sources/FixelText-ExtraBold.ufo/glyphs/Q_.glif new file mode 100644 index 00000000..56d78173 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/Q_.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/Q_.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/Q_.ss01.glif new file mode 100644 index 00000000..3e1eb7b9 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/Q_.ss01.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/Q_acyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/Q_acyr.glif new file mode 100644 index 00000000..d58476c7 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/Q_acyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Q + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/R_.glif b/sources/FixelText-ExtraBold.ufo/glyphs/R_.glif new file mode 100644 index 00000000..06e1e6b8 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/R_.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/R_acute.glif b/sources/FixelText-ExtraBold.ufo/glyphs/R_acute.glif new file mode 100644 index 00000000..c942ed53 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/R_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + R+acute.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/R_caron.glif b/sources/FixelText-ExtraBold.ufo/glyphs/R_caron.glif new file mode 100644 index 00000000..9686ef91 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/R_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + R+caron.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/R_commaaccent.glif b/sources/FixelText-ExtraBold.ufo/glyphs/R_commaaccent.glif new file mode 100644 index 00000000..b62f2698 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/R_commaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + R+commaaccentcomb + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/R_eversedzecyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/R_eversedzecyr.glif new file mode 100644 index 00000000..86cda0f2 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/R_eversedzecyr.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + + com.fontlab.metricsRight + + com.fontlab.recipe + З + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/R_hacyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/R_hacyr.glif new file mode 100644 index 00000000..3f669a22 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/R_hacyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + P + com.fontlab.metricsRight + X + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/S_.glif b/sources/FixelText-ExtraBold.ufo/glyphs/S_.glif new file mode 100644 index 00000000..4d88a467 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/S_.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/S_acute.glif b/sources/FixelText-ExtraBold.ufo/glyphs/S_acute.glif new file mode 100644 index 00000000..283e7226 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/S_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + S+acute.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/S_caron.glif b/sources/FixelText-ExtraBold.ufo/glyphs/S_caron.glif new file mode 100644 index 00000000..3fbfcfe6 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/S_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + S+caron.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/S_cedilla.glif b/sources/FixelText-ExtraBold.ufo/glyphs/S_cedilla.glif new file mode 100644 index 00000000..849210d6 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/S_cedilla.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + S+cedilla + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/S_chwa.glif b/sources/FixelText-ExtraBold.ufo/glyphs/S_chwa.glif new file mode 100644 index 00000000..fadffae1 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/S_chwa.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Schwacyr + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/S_chwacyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/S_chwacyr.glif new file mode 100644 index 00000000..3c690155 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/S_chwacyr.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O-10 + com.fontlab.metricsRight + O + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/S_chwadieresiscyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/S_chwadieresiscyr.glif new file mode 100644 index 00000000..17713661 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/S_chwadieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Schwacyr+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/S_circumflex.glif b/sources/FixelText-ExtraBold.ufo/glyphs/S_circumflex.glif new file mode 100644 index 00000000..0de7bf46 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/S_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + S+circumflex.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/S_commaaccent.glif b/sources/FixelText-ExtraBold.ufo/glyphs/S_commaaccent.glif new file mode 100644 index 00000000..171b3150 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/S_commaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + S+commaaccentcomb + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/S_emisoftcyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/S_emisoftcyr.glif new file mode 100644 index 00000000..3908a781 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/S_emisoftcyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Yat + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/S_ha-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/S_ha-cy.glif new file mode 100644 index 00000000..d4605935 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/S_ha-cy.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/S_hcha-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/S_hcha-cy.glif new file mode 100644 index 00000000..fd8d7bf5 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/S_hcha-cy.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Д + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/S_hhacyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/S_hhacyr.glif new file mode 100644 index 00000000..7504a991 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/S_hhacyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.metricsLeft + Н + com.fontlab.metricsRight + Tshecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/S_hhatailcyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/S_hhatailcyr.glif new file mode 100644 index 00000000..a9589e76 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/S_hhatailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/S_hwe-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/S_hwe-cy.glif new file mode 100644 index 00000000..7a5786dc --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/S_hwe-cy.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Щ + com.fontlab.metricsRight + Щ-20 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/S_jekomicyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/S_jekomicyr.glif new file mode 100644 index 00000000..3f37ae97 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/S_jekomicyr.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + |Schwa + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/S_oftsign-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/S_oftsign-cy.glif new file mode 100644 index 00000000..3d58c349 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/S_oftsign-cy.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + P + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/T_.glif b/sources/FixelText-ExtraBold.ufo/glyphs/T_.glif new file mode 100644 index 00000000..4875f277 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/T_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/T_bar.glif b/sources/FixelText-ExtraBold.ufo/glyphs/T_bar.glif new file mode 100644 index 00000000..484ddb8b --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/T_bar.glif @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/T_caron.glif b/sources/FixelText-ExtraBold.ufo/glyphs/T_caron.glif new file mode 100644 index 00000000..3a4f5a47 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/T_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + T+caron.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/T_cedilla.glif b/sources/FixelText-ExtraBold.ufo/glyphs/T_cedilla.glif new file mode 100644 index 00000000..19e8e000 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/T_cedilla.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + T+cedilla + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/T_che-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/T_che-cy.glif new file mode 100644 index 00000000..f63347a0 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/T_che-cy.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Tetsecyr-20 + com.fontlab.metricsRight + Ч + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/T_commaaccent.glif b/sources/FixelText-ExtraBold.ufo/glyphs/T_commaaccent.glif new file mode 100644 index 00000000..3be04cd0 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/T_commaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + T+commaaccentcomb + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/T_e-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/T_e-cy.glif new file mode 100644 index 00000000..c1d59d9f --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/T_e-cy.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + com.fontlab.recipe + T + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/T_eW_ithM_iddleH_ook-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/T_eW_ithM_iddleH_ook-cy.glif new file mode 100644 index 00000000..83c9c4d7 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/T_eW_ithM_iddleH_ook-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Djecyr + com.fontlab.metricsRight + Gehookcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/T_etailcyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/T_etailcyr.glif new file mode 100644 index 00000000..1603d146 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/T_etailcyr.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/T_etsecyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/T_etsecyr.glif new file mode 100644 index 00000000..af6285c1 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/T_etsecyr.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Tshecyr + com.fontlab.metricsRight + Ц + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/T_horn.glif b/sources/FixelText-ExtraBold.ufo/glyphs/T_horn.glif new file mode 100644 index 00000000..910459e0 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/T_horn.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + P + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/T_jekomicyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/T_jekomicyr.glif new file mode 100644 index 00000000..39044e95 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/T_jekomicyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + Njekomicyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/T_se-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/T_se-cy.glif new file mode 100644 index 00000000..92c63878 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/T_se-cy.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Д + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/T_seR_eversed-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/T_seR_eversed-cy.glif new file mode 100644 index 00000000..224f301d --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/T_seR_eversed-cy.glif @@ -0,0 +1,20 @@ + + + + + + + + + + com.fontlab.metricsLeft + + com.fontlab.metricsRight + H + com.fontlab.recipe + Ц + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/T_shecyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/T_shecyr.glif new file mode 100644 index 00000000..2234bc92 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/T_shecyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + n + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/T_sse-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/T_sse-cy.glif new file mode 100644 index 00000000..c0c37ea9 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/T_sse-cy.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + T + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/T_swe-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/T_swe-cy.glif new file mode 100644 index 00000000..65a65429 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/T_swe-cy.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Shwe-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/T_we-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/T_we-cy.glif new file mode 100644 index 00000000..bbb72329 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/T_we-cy.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + T + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/U_-cy.accented.glif b/sources/FixelText-ExtraBold.ufo/glyphs/U_-cy.accented.glif new file mode 100644 index 00000000..e0651ac3 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/U_-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + У+acute.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/U_-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/U_-cy.glif new file mode 100644 index 00000000..a7129838 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/U_-cy.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Y+10 + com.fontlab.metricsRight + Y+5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/U_-cy.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/U_-cy.ss01.glif new file mode 100644 index 00000000..4eac8444 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/U_-cy.ss01.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/U_.glif b/sources/FixelText-ExtraBold.ufo/glyphs/U_.glif new file mode 100644 index 00000000..14ce673d --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/U_.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H-10 + com.fontlab.metricsRight + H-10 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/U_acute.glif b/sources/FixelText-ExtraBold.ufo/glyphs/U_acute.glif new file mode 100644 index 00000000..a9b4f71f --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/U_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+acute.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/U_acutedblcyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/U_acutedblcyr.glif new file mode 100644 index 00000000..6b62b30e --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/U_acutedblcyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U-cy+hungarumlaut.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/U_breve.glif b/sources/FixelText-ExtraBold.ufo/glyphs/U_breve.glif new file mode 100644 index 00000000..9784fbe1 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/U_breve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+breve.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/U_circumflex.glif b/sources/FixelText-ExtraBold.ufo/glyphs/U_circumflex.glif new file mode 100644 index 00000000..aa8df8ff --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/U_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+circumflex.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/U_dieresis.glif b/sources/FixelText-ExtraBold.ufo/glyphs/U_dieresis.glif new file mode 100644 index 00000000..e3903b99 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/U_dieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+dieresis.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/U_dieresiscyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/U_dieresiscyr.glif new file mode 100644 index 00000000..988864f2 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/U_dieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/U_grave.glif b/sources/FixelText-ExtraBold.ufo/glyphs/U_grave.glif new file mode 100644 index 00000000..d8f3fdb1 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/U_grave.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+grave.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/U_hungarumlaut.glif b/sources/FixelText-ExtraBold.ufo/glyphs/U_hungarumlaut.glif new file mode 100644 index 00000000..291c2797 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/U_hungarumlaut.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+hungarumlaut.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/U_kM_onograph-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/U_kM_onograph-cy.glif new file mode 100644 index 00000000..afe7b7e2 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/U_kM_onograph-cy.glif @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/U_kcyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/U_kcyr.glif new file mode 100644 index 00000000..99799b47 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/U_kcyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + y + com.fontlab.recipe + О_у + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/U_macron.glif b/sources/FixelText-ExtraBold.ufo/glyphs/U_macron.glif new file mode 100644 index 00000000..65aa8dd4 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/U_macron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+macron.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/U_macroncyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/U_macroncyr.glif new file mode 100644 index 00000000..bc6a7403 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/U_macroncyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U-cy+macron.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/U_ogonek.glif b/sources/FixelText-ExtraBold.ufo/glyphs/U_ogonek.glif new file mode 100644 index 00000000..d8a26ba2 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/U_ogonek.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + U+ogonek + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/U_ring.glif b/sources/FixelText-ExtraBold.ufo/glyphs/U_ring.glif new file mode 100644 index 00000000..0ba71348 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/U_ring.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+ring.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/U_short-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/U_short-cy.glif new file mode 100644 index 00000000..b644f0c2 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/U_short-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ucyr+breve.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/U_short-cy.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/U_short-cy.ss01.glif new file mode 100644 index 00000000..91a43fab --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/U_short-cy.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ucyr.ss01+breve.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/U_straightcyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/U_straightcyr.glif new file mode 100644 index 00000000..87e77216 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/U_straightcyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsRight + Y + com.fontlab.recipe + Y + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/U_straightstrokecyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/U_straightstrokecyr.glif new file mode 100644 index 00000000..7f435177 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/U_straightstrokecyr.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/U_tilde.glif b/sources/FixelText-ExtraBold.ufo/glyphs/U_tilde.glif new file mode 100644 index 00000000..c9acfec6 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/U_tilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+tilde.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/V_.glif b/sources/FixelText-ExtraBold.ufo/glyphs/V_.glif new file mode 100644 index 00000000..58fc286e --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/V_.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/V_.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/V_.ss01.glif new file mode 100644 index 00000000..2aea133d --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/V_.ss01.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/V_e-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/V_e-cy.glif new file mode 100644 index 00000000..be612295 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/V_e-cy.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + B + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/W_.glif b/sources/FixelText-ExtraBold.ufo/glyphs/W_.glif new file mode 100644 index 00000000..c78c0891 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/W_.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/W_.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/W_.ss01.glif new file mode 100644 index 00000000..3541e70c --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/W_.ss01.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |A + com.fontlab.metricsRight + |A + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/W_acute.glif b/sources/FixelText-ExtraBold.ufo/glyphs/W_acute.glif new file mode 100644 index 00000000..e9290d99 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/W_acute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W+acute.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/W_acute.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/W_acute.ss01.glif new file mode 100644 index 00000000..0c50fe7e --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/W_acute.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W.ss01+acute.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/W_circumflex.glif b/sources/FixelText-ExtraBold.ufo/glyphs/W_circumflex.glif new file mode 100644 index 00000000..dc15a686 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/W_circumflex.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W+circumflex.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/W_circumflex.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/W_circumflex.ss01.glif new file mode 100644 index 00000000..75cdccad --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/W_circumflex.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W.ss01+circumflex.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/W_dieresis.glif b/sources/FixelText-ExtraBold.ufo/glyphs/W_dieresis.glif new file mode 100644 index 00000000..e94c1206 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/W_dieresis.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + W+dieresis.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/W_dieresis.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/W_dieresis.ss01.glif new file mode 100644 index 00000000..6527f89f --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/W_dieresis.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W.ss01+dieresis.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/W_ecyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/W_ecyr.glif new file mode 100644 index 00000000..79227a8b --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/W_ecyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/W_grave.glif b/sources/FixelText-ExtraBold.ufo/glyphs/W_grave.glif new file mode 100644 index 00000000..a43d9842 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/W_grave.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W+grave.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/W_grave.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/W_grave.ss01.glif new file mode 100644 index 00000000..4638605f --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/W_grave.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W.ss01+grave.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/X_.glif b/sources/FixelText-ExtraBold.ufo/glyphs/X_.glif new file mode 100644 index 00000000..e8d4a620 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/X_.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/X_.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/X_.ss01.glif new file mode 100644 index 00000000..33e0b368 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/X_.ss01.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/X_atailcyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/X_atailcyr.glif new file mode 100644 index 00000000..ddce10ac --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/X_atailcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + X + com.fontlab.metricsRight + Katailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/Y_.glif b/sources/FixelText-ExtraBold.ufo/glyphs/Y_.glif new file mode 100644 index 00000000..a432fa47 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/Y_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/Y_.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/Y_.ss01.glif new file mode 100644 index 00000000..6bb50d1a --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/Y_.ss01.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/Y_acute.glif b/sources/FixelText-ExtraBold.ufo/glyphs/Y_acute.glif new file mode 100644 index 00000000..ab63d0cd --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/Y_acute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y+acute.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/Y_acute.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/Y_acute.ss01.glif new file mode 100644 index 00000000..6486004f --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/Y_acute.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y.ss01+acute.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/Y_aecyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/Y_aecyr.glif new file mode 100644 index 00000000..edf0bdf7 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/Y_aecyr.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Я + com.fontlab.metricsRight + E + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/Y_atI_otified-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/Y_atI_otified-cy.glif new file mode 100644 index 00000000..8ac5bca2 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/Y_atI_otified-cy.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + com.fontlab.metricsRight + Yatcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/Y_atcyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/Y_atcyr.glif new file mode 100644 index 00000000..c79e329f --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/Y_atcyr.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Т + com.fontlab.metricsRight + Ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/Y_circumflex.glif b/sources/FixelText-ExtraBold.ufo/glyphs/Y_circumflex.glif new file mode 100644 index 00000000..3db03f9d --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/Y_circumflex.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y+circumflex.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/Y_circumflex.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/Y_circumflex.ss01.glif new file mode 100644 index 00000000..e5e58386 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/Y_circumflex.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y.ss01+circumflex.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/Y_dieresis.glif b/sources/FixelText-ExtraBold.ufo/glyphs/Y_dieresis.glif new file mode 100644 index 00000000..5193cb0b --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/Y_dieresis.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y+dieresis.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/Y_dieresis.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/Y_dieresis.ss01.glif new file mode 100644 index 00000000..b843a97e --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/Y_dieresis.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y.ss01+dieresis.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/Y_erN_eutral-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/Y_erN_eutral-cy.glif new file mode 100644 index 00000000..71f3ac03 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/Y_erN_eutral-cy.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Hardsign-cy + com.fontlab.metricsRight + Ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/Y_eru-cy.accented.glif b/sources/FixelText-ExtraBold.ufo/glyphs/Y_eru-cy.accented.glif new file mode 100644 index 00000000..4876a782 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/Y_eru-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ы+acute.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/Y_eru-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/Y_eru-cy.glif new file mode 100644 index 00000000..d3e88237 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/Y_eru-cy.glif @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/Y_eru-cymacron.glif b/sources/FixelText-ExtraBold.ufo/glyphs/Y_eru-cymacron.glif new file mode 100644 index 00000000..021f1eea --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/Y_eru-cymacron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ы+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/Y_eruB_ackY_er-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/Y_eruB_ackY_er-cy.glif new file mode 100644 index 00000000..b2506007 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/Y_eruB_ackY_er-cy.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Hardsign + com.fontlab.metricsRight + I + com.fontlab.recipe + Hardsign-cy_I + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/Y_i-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/Y_i-cy.glif new file mode 100644 index 00000000..a334b472 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/Y_i-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Idieresis + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/Y_longdieresiscyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/Y_longdieresiscyr.glif new file mode 100644 index 00000000..beae6bc1 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/Y_longdieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Yeru-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/Y_n-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/Y_n-cy.glif new file mode 100644 index 00000000..3001545f --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/Y_n-cy.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |Izhitsa + com.fontlab.metricsRight + |Izhitsa + com.fontlab.recipe + Izhitsa + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/Y_uR_eversed-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/Y_uR_eversed-cy.glif new file mode 100644 index 00000000..281d5fc0 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/Y_uR_eversed-cy.glif @@ -0,0 +1,20 @@ + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + H + com.fontlab.recipe + Ю + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/Y_usB_lended-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/Y_usB_lended-cy.glif new file mode 100644 index 00000000..6ebb1881 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/Y_usB_lended-cy.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Yusbigcyr + com.fontlab.metricsRight + Yusbigcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/Y_usC_losedlittle-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/Y_usC_losedlittle-cy.glif new file mode 100644 index 00000000..3983c92a --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/Y_usC_losedlittle-cy.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + A + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/Y_usbigcyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/Y_usbigcyr.glif new file mode 100644 index 00000000..a0a8b020 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/Y_usbigcyr.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ж + com.fontlab.metricsRight + Ж + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/Y_usbigiotifiedcyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/Y_usbigiotifiedcyr.glif new file mode 100644 index 00000000..339dbbc9 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/Y_usbigiotifiedcyr.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + Ж + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/Y_usiotifiedC_losedL_ittle-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/Y_usiotifiedC_losedL_ittle-cy.glif new file mode 100644 index 00000000..f39104ab --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/Y_usiotifiedC_losedL_ittle-cy.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + A + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/Y_uslittlecyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/Y_uslittlecyr.glif new file mode 100644 index 00000000..43385101 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/Y_uslittlecyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + А-5 + com.fontlab.metricsRight + А-5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/Y_uslittleiotifiedcyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/Y_uslittleiotifiedcyr.glif new file mode 100644 index 00000000..70d7ccc5 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/Y_uslittleiotifiedcyr.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + А-5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/Z_.glif b/sources/FixelText-ExtraBold.ufo/glyphs/Z_.glif new file mode 100644 index 00000000..a27d0bf2 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/Z_.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/Z_.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/Z_.ss01.glif new file mode 100644 index 00000000..974af95c --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/Z_.ss01.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/Z_acute.glif b/sources/FixelText-ExtraBold.ufo/glyphs/Z_acute.glif new file mode 100644 index 00000000..efeae607 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/Z_acute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Z+acute.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/Z_acute.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/Z_acute.ss01.glif new file mode 100644 index 00000000..bd0310e3 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/Z_acute.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Z.ss01+acute.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/Z_caron.glif b/sources/FixelText-ExtraBold.ufo/glyphs/Z_caron.glif new file mode 100644 index 00000000..f6d8c07f --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/Z_caron.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Z+caron.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/Z_caron.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/Z_caron.ss01.glif new file mode 100644 index 00000000..7d1ae2df --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/Z_caron.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Z.ss01+caron.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/Z_dotaccent.glif b/sources/FixelText-ExtraBold.ufo/glyphs/Z_dotaccent.glif new file mode 100644 index 00000000..95fdea20 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/Z_dotaccent.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Z+dotaccent.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/Z_dotaccent.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/Z_dotaccent.ss01.glif new file mode 100644 index 00000000..c3193ff0 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/Z_dotaccent.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Z.ss01+dotaccent.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/Z_e-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/Z_e-cy.glif new file mode 100644 index 00000000..16bba431 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/Z_e-cy.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |C + com.fontlab.metricsRight + B + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/Z_edieresiscyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/Z_edieresiscyr.glif new file mode 100644 index 00000000..e145a5e2 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/Z_edieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ze-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/Z_emlya-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/Z_emlya-cy.glif new file mode 100644 index 00000000..e716035f --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/Z_emlya-cy.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Z-10 + com.fontlab.metricsRight + Z + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/Z_etailcyr.B_S_H_.glif b/sources/FixelText-ExtraBold.ufo/glyphs/Z_etailcyr.B_S_H_.glif new file mode 100644 index 00000000..007941d7 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/Z_etailcyr.B_S_H_.glif @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + З + com.fontlab.metricsRight + З + com.fontlab.recipe + Zetailcyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/Z_etailcyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/Z_etailcyr.glif new file mode 100644 index 00000000..8e635558 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/Z_etailcyr.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + З + com.fontlab.metricsRight + З + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/Z_he-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/Z_he-cy.glif new file mode 100644 index 00000000..329b28bc --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/Z_he-cy.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |K + com.fontlab.metricsRight + K + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/Z_he-cy.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/Z_he-cy.ss01.glif new file mode 100644 index 00000000..196d7107 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/Z_he-cy.ss01.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |K + com.fontlab.metricsRight + K + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/Z_hebrevecyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/Z_hebrevecyr.glif new file mode 100644 index 00000000..35a2db48 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/Z_hebrevecyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Zhe-cy+breve.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/Z_hedieresiscyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/Z_hedieresiscyr.glif new file mode 100644 index 00000000..a9f628cc --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/Z_hedieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Zhe-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/Z_hetailcyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/Z_hetailcyr.glif new file mode 100644 index 00000000..32fd337a --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/Z_hetailcyr.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ж + com.fontlab.metricsRight + Katailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/Z_hwe-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/Z_hwe-cy.glif new file mode 100644 index 00000000..3561b75b --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/Z_hwe-cy.glif @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + З + com.fontlab.metricsRight + Ж + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/Z_jekomicyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/Z_jekomicyr.glif new file mode 100644 index 00000000..dd78942a --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/Z_jekomicyr.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Dzjekomicyr + com.fontlab.metricsRight + Njekomicyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/_notdef.glif b/sources/FixelText-ExtraBold.ufo/glyphs/_notdef.glif new file mode 100644 index 00000000..7261060b --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/_notdef.glif @@ -0,0 +1,178 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + =55 + com.schriftgestaltung.Glyphs.rightMetricsKey + =55 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/_perc-circule.glif b/sources/FixelText-ExtraBold.ufo/glyphs/_perc-circule.glif new file mode 100644 index 00000000..1a894670 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/_perc-circule.glif @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.schriftgestaltung.Glyphs.Export + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/a-cy.accented.glif b/sources/FixelText-ExtraBold.ufo/glyphs/a-cy.accented.glif new file mode 100644 index 00000000..3aed5cb0 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/a-cy.accented.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+acute + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/a-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/a-cy.glif new file mode 100644 index 00000000..270625fc --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/a-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/a-cy.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/a-cy.ss01.glif new file mode 100644 index 00000000..3bf568e9 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/a-cy.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/a.glif b/sources/FixelText-ExtraBold.ufo/glyphs/a.glif new file mode 100644 index 00000000..5020a9c8 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/a.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + n-10 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/a.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/a.ss01.glif new file mode 100644 index 00000000..f30fc7b5 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/a.ss01.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/aacute.glif b/sources/FixelText-ExtraBold.ufo/glyphs/aacute.glif new file mode 100644 index 00000000..04cb462f --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/aacute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+acute + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/aacute.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/aacute.ss01.glif new file mode 100644 index 00000000..7d92be47 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/aacute.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+acute + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/abreve.glif b/sources/FixelText-ExtraBold.ufo/glyphs/abreve.glif new file mode 100644 index 00000000..ba2c7a72 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/abreve.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+breve + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/abreve.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/abreve.ss01.glif new file mode 100644 index 00000000..5c1edcb6 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/abreve.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+breve + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/abrevecyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/abrevecyr.glif new file mode 100644 index 00000000..3a8c2265 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/abrevecyr.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+breve + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/acaron.glif b/sources/FixelText-ExtraBold.ufo/glyphs/acaron.glif new file mode 100644 index 00000000..6001f709 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/acaron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+caron + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/acircumflex.glif b/sources/FixelText-ExtraBold.ufo/glyphs/acircumflex.glif new file mode 100644 index 00000000..158145c8 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/acircumflex.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+circumflex + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/acircumflex.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/acircumflex.ss01.glif new file mode 100644 index 00000000..f1500a95 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/acircumflex.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+circumflex + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/acute.case.glif b/sources/FixelText-ExtraBold.ufo/glyphs/acute.case.glif new file mode 100644 index 00000000..d8e4d562 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/acute.case.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/acute.glif b/sources/FixelText-ExtraBold.ufo/glyphs/acute.glif new file mode 100644 index 00000000..bf7e5cb6 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/acute.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/adieresis.glif b/sources/FixelText-ExtraBold.ufo/glyphs/adieresis.glif new file mode 100644 index 00000000..02fda469 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/adieresis.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+dieresis + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/adieresis.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/adieresis.ss01.glif new file mode 100644 index 00000000..0b472828 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/adieresis.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+dieresis + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/adieresiscyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/adieresiscyr.glif new file mode 100644 index 00000000..c987578d --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/adieresiscyr.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/ae.glif b/sources/FixelText-ExtraBold.ufo/glyphs/ae.glif new file mode 100644 index 00000000..e1b94743 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/ae.glif @@ -0,0 +1,101 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + a + com.fontlab.metricsRight + e + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/ae.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/ae.ss01.glif new file mode 100644 index 00000000..4ee68eae --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/ae.ss01.glif @@ -0,0 +1,96 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + a + com.fontlab.metricsRight + e.ss01 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/aeacute.glif b/sources/FixelText-ExtraBold.ufo/glyphs/aeacute.glif new file mode 100644 index 00000000..329061b3 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/aeacute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ae+acute + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/agrave.glif b/sources/FixelText-ExtraBold.ufo/glyphs/agrave.glif new file mode 100644 index 00000000..f8360ecd --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/agrave.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+grave + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/agrave.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/agrave.ss01.glif new file mode 100644 index 00000000..4e1a1bf9 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/agrave.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+grave + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/aiecyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/aiecyr.glif new file mode 100644 index 00000000..453c3e23 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/aiecyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ae + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/amacron.glif b/sources/FixelText-ExtraBold.ufo/glyphs/amacron.glif new file mode 100644 index 00000000..3e58ee29 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/amacron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+macron + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/amacron.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/amacron.ss01.glif new file mode 100644 index 00000000..6d7440fb --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/amacron.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+macron + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/ampersand.glif b/sources/FixelText-ExtraBold.ufo/glyphs/ampersand.glif new file mode 100644 index 00000000..6455195e --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/ampersand.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/aogonek.glif b/sources/FixelText-ExtraBold.ufo/glyphs/aogonek.glif new file mode 100644 index 00000000..8b9af4dd --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/aogonek.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+ogonek + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/aogonek.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/aogonek.ss01.glif new file mode 100644 index 00000000..e7100ad5 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/aogonek.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+ogonek + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/apostrophemod.glif b/sources/FixelText-ExtraBold.ufo/glyphs/apostrophemod.glif new file mode 100644 index 00000000..37b8fb95 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/apostrophemod.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + apostrophe + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/approxequal.glif b/sources/FixelText-ExtraBold.ufo/glyphs/approxequal.glif new file mode 100644 index 00000000..53c22045 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/approxequal.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/aring.glif b/sources/FixelText-ExtraBold.ufo/glyphs/aring.glif new file mode 100644 index 00000000..c4855568 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/aring.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+ring + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/aring.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/aring.ss01.glif new file mode 100644 index 00000000..b4d59853 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/aring.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+ring + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/arrowdown.case.glif b/sources/FixelText-ExtraBold.ufo/glyphs/arrowdown.case.glif new file mode 100644 index 00000000..6f1ba79e --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/arrowdown.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + arrowup + com.fontlab.metricsRight + arrowup + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/arrowdown.glif b/sources/FixelText-ExtraBold.ufo/glyphs/arrowdown.glif new file mode 100644 index 00000000..7d47baf8 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/arrowdown.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + arrowup + com.fontlab.metricsRight + arrowup + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/arrowdown.ss01.case.glif b/sources/FixelText-ExtraBold.ufo/glyphs/arrowdown.ss01.case.glif new file mode 100644 index 00000000..d4e62872 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/arrowdown.ss01.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + arrowup + com.fontlab.metricsRight + arrowup + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/arrowdown.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/arrowdown.ss01.glif new file mode 100644 index 00000000..a4a97fef --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/arrowdown.ss01.glif @@ -0,0 +1,15 @@ + + + + + + + + + com.fontlab.metricsLeft + arrowup + com.fontlab.metricsRight + arrowup + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/arrowleft.case.glif b/sources/FixelText-ExtraBold.ufo/glyphs/arrowleft.case.glif new file mode 100644 index 00000000..a2178842 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/arrowleft.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + arrowleft + com.fontlab.metricsRight + arrowleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/arrowleft.glif b/sources/FixelText-ExtraBold.ufo/glyphs/arrowleft.glif new file mode 100644 index 00000000..db3818e2 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/arrowleft.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/arrowleft.ss01.case.glif b/sources/FixelText-ExtraBold.ufo/glyphs/arrowleft.ss01.case.glif new file mode 100644 index 00000000..83c0f1a4 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/arrowleft.ss01.case.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + arrowleft + com.fontlab.metricsRight + arrowleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/arrowleft.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/arrowleft.ss01.glif new file mode 100644 index 00000000..915ed923 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/arrowleft.ss01.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + arrowleft + com.fontlab.metricsRight + arrowleft + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/arrowright.case.glif b/sources/FixelText-ExtraBold.ufo/glyphs/arrowright.case.glif new file mode 100644 index 00000000..35e1b30e --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/arrowright.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |arrowleft + com.fontlab.metricsRight + |arrowleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/arrowright.glif b/sources/FixelText-ExtraBold.ufo/glyphs/arrowright.glif new file mode 100644 index 00000000..96ac2b60 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/arrowright.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + |arrowleft + com.fontlab.metricsRight + |arrowleft + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/arrowright.ss01.case.glif b/sources/FixelText-ExtraBold.ufo/glyphs/arrowright.ss01.case.glif new file mode 100644 index 00000000..b7ebc77b --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/arrowright.ss01.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |arrowleft + com.fontlab.metricsRight + |arrowleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/arrowright.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/arrowright.ss01.glif new file mode 100644 index 00000000..c52a40d5 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/arrowright.ss01.glif @@ -0,0 +1,15 @@ + + + + + + + + + com.fontlab.metricsLeft + |arrowleft + com.fontlab.metricsRight + |arrowleft + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/arrowup.case.glif b/sources/FixelText-ExtraBold.ufo/glyphs/arrowup.case.glif new file mode 100644 index 00000000..d76ca280 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/arrowup.case.glif @@ -0,0 +1,15 @@ + + + + + + + + + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/arrowup.glif b/sources/FixelText-ExtraBold.ufo/glyphs/arrowup.glif new file mode 100644 index 00000000..a5f236d4 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/arrowup.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + l() + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/arrowup.ss01.case.glif b/sources/FixelText-ExtraBold.ufo/glyphs/arrowup.ss01.case.glif new file mode 100644 index 00000000..976aa891 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/arrowup.ss01.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + arrowup + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/arrowup.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/arrowup.ss01.glif new file mode 100644 index 00000000..4e4e1995 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/arrowup.ss01.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + arrowup + com.fontlab.metricsRight + l() + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/asciicircum.glif b/sources/FixelText-ExtraBold.ufo/glyphs/asciicircum.glif new file mode 100644 index 00000000..a0660990 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/asciicircum.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/asciitilde.glif b/sources/FixelText-ExtraBold.ufo/glyphs/asciitilde.glif new file mode 100644 index 00000000..1991dd21 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/asciitilde.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/asterisk.glif b/sources/FixelText-ExtraBold.ufo/glyphs/asterisk.glif new file mode 100644 index 00000000..5604f704 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/asterisk.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/at.case.glif b/sources/FixelText-ExtraBold.ufo/glyphs/at.case.glif new file mode 100644 index 00000000..5f540557 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/at.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/at.glif b/sources/FixelText-ExtraBold.ufo/glyphs/at.glif new file mode 100644 index 00000000..92c8e62c --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/at.glif @@ -0,0 +1,92 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/atilde.glif b/sources/FixelText-ExtraBold.ufo/glyphs/atilde.glif new file mode 100644 index 00000000..7bdb3f46 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/atilde.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+tilde + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/atilde.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/atilde.ss01.glif new file mode 100644 index 00000000..f96738e8 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/atilde.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+tilde + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/b.glif b/sources/FixelText-ExtraBold.ufo/glyphs/b.glif new file mode 100644 index 00000000..2c4e8053 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/b.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/b.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/b.ss01.glif new file mode 100644 index 00000000..084765ac --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/b.ss01.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/backslash.case.glif b/sources/FixelText-ExtraBold.ufo/glyphs/backslash.case.glif new file mode 100644 index 00000000..da6c1ba2 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/backslash.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + backslash + com.fontlab.metricsRight + backslash + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/backslash.glif b/sources/FixelText-ExtraBold.ufo/glyphs/backslash.glif new file mode 100644 index 00000000..7dbc3589 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/backslash.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/bar.case.glif b/sources/FixelText-ExtraBold.ufo/glyphs/bar.case.glif new file mode 100644 index 00000000..dfd52ccf --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/bar.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + H-10 + com.fontlab.metricsRight + H-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/bar.glif b/sources/FixelText-ExtraBold.ufo/glyphs/bar.glif new file mode 100644 index 00000000..2c217114 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/bar.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H-10 + com.fontlab.metricsRight + H-10 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/be-cy.S_R_B_.glif b/sources/FixelText-ExtraBold.ufo/glyphs/be-cy.S_R_B_.glif new file mode 100644 index 00000000..9d74a039 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/be-cy.S_R_B_.glif @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/be-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/be-cy.glif new file mode 100644 index 00000000..3d44f7cb --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/be-cy.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/bishopblack.glif b/sources/FixelText-ExtraBold.ufo/glyphs/bishopblack.glif new file mode 100644 index 00000000..ca85d057 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/bishopblack.glif @@ -0,0 +1,241 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =10 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/bishopwhite.glif b/sources/FixelText-ExtraBold.ufo/glyphs/bishopwhite.glif new file mode 100644 index 00000000..d950ae1d --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/bishopwhite.glif @@ -0,0 +1,331 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/braceleft.case.glif b/sources/FixelText-ExtraBold.ufo/glyphs/braceleft.case.glif new file mode 100644 index 00000000..aec243da --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/braceleft.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |braceright.case + com.fontlab.metricsRight + |braceright.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/braceleft.glif b/sources/FixelText-ExtraBold.ufo/glyphs/braceleft.glif new file mode 100644 index 00000000..b5720c71 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/braceleft.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/braceright.case.glif b/sources/FixelText-ExtraBold.ufo/glyphs/braceright.case.glif new file mode 100644 index 00000000..2f9a6b63 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/braceright.case.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/braceright.glif b/sources/FixelText-ExtraBold.ufo/glyphs/braceright.glif new file mode 100644 index 00000000..c3caa770 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/braceright.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/bracketangleleft.case.glif b/sources/FixelText-ExtraBold.ufo/glyphs/bracketangleleft.case.glif new file mode 100644 index 00000000..a42a541b --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/bracketangleleft.case.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + parenleft.case + com.fontlab.metricsRight + parenleft.case + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/bracketangleleft.glif b/sources/FixelText-ExtraBold.ufo/glyphs/bracketangleleft.glif new file mode 100644 index 00000000..7390c7ce --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/bracketangleleft.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + parenleft + com.fontlab.metricsRight + parenleft + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/bracketangleright.case.glif b/sources/FixelText-ExtraBold.ufo/glyphs/bracketangleright.case.glif new file mode 100644 index 00000000..ddad482b --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/bracketangleright.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |bracketangleleft.case + com.fontlab.metricsRight + |bracketangleleft.case + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/bracketangleright.glif b/sources/FixelText-ExtraBold.ufo/glyphs/bracketangleright.glif new file mode 100644 index 00000000..c5b03783 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/bracketangleright.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.metricsLeft + |bracketangleleft + com.fontlab.metricsRight + |bracketangleleft + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/bracketleft.case.glif b/sources/FixelText-ExtraBold.ufo/glyphs/bracketleft.case.glif new file mode 100644 index 00000000..d86d8ef0 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/bracketleft.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |bracketright.case + com.fontlab.metricsRight + |bracketright.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/bracketleft.glif b/sources/FixelText-ExtraBold.ufo/glyphs/bracketleft.glif new file mode 100644 index 00000000..dd61d41a --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/bracketleft.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/bracketright.case.glif b/sources/FixelText-ExtraBold.ufo/glyphs/bracketright.case.glif new file mode 100644 index 00000000..1af1ea3e --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/bracketright.case.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |bracketleft + com.fontlab.metricsRight + |bracketleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/bracketright.glif b/sources/FixelText-ExtraBold.ufo/glyphs/bracketright.glif new file mode 100644 index 00000000..92f8b536 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/bracketright.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |bracketleft + com.fontlab.metricsRight + |bracketleft + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/breve.case.glif b/sources/FixelText-ExtraBold.ufo/glyphs/breve.case.glif new file mode 100644 index 00000000..5020d4ff --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/breve.case.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/breve.glif b/sources/FixelText-ExtraBold.ufo/glyphs/breve.glif new file mode 100644 index 00000000..45c10251 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/breve.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/brokenbar.case.glif b/sources/FixelText-ExtraBold.ufo/glyphs/brokenbar.case.glif new file mode 100644 index 00000000..fad6be2e --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/brokenbar.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + bar + com.fontlab.metricsRight + bar + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/brokenbar.glif b/sources/FixelText-ExtraBold.ufo/glyphs/brokenbar.glif new file mode 100644 index 00000000..a303656c --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/brokenbar.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + bar + com.fontlab.metricsRight + bar + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/bullet.case.glif b/sources/FixelText-ExtraBold.ufo/glyphs/bullet.case.glif new file mode 100644 index 00000000..147228fb --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/bullet.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + period + com.fontlab.metricsRight + period + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/bullet.glif b/sources/FixelText-ExtraBold.ufo/glyphs/bullet.glif new file mode 100644 index 00000000..db24a6bd --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/bullet.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + period + com.fontlab.metricsRight + period + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/c.glif b/sources/FixelText-ExtraBold.ufo/glyphs/c.glif new file mode 100644 index 00000000..b4fec5ac --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/c.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/cacute.glif b/sources/FixelText-ExtraBold.ufo/glyphs/cacute.glif new file mode 100644 index 00000000..837682b1 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/cacute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+acute + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/caron.case.glif b/sources/FixelText-ExtraBold.ufo/glyphs/caron.case.glif new file mode 100644 index 00000000..83dbeeff --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/caron.case.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/caron.glif b/sources/FixelText-ExtraBold.ufo/glyphs/caron.glif new file mode 100644 index 00000000..d7c5151e --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/caron.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/caron.salt.glif b/sources/FixelText-ExtraBold.ufo/glyphs/caron.salt.glif new file mode 100644 index 00000000..95af486f --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/caron.salt.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/ccaron.glif b/sources/FixelText-ExtraBold.ufo/glyphs/ccaron.glif new file mode 100644 index 00000000..2c3ce241 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/ccaron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+caron + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/ccedilla.glif b/sources/FixelText-ExtraBold.ufo/glyphs/ccedilla.glif new file mode 100644 index 00000000..85e6c52d --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/ccedilla.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+cedilla + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/cche-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/cche-cy.glif new file mode 100644 index 00000000..745951d8 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/cche-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ч + com.fontlab.metricsRight + ч + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/ccircumflex.glif b/sources/FixelText-ExtraBold.ufo/glyphs/ccircumflex.glif new file mode 100644 index 00000000..1d143aed --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/ccircumflex.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+circumflex + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/cdotaccent.glif b/sources/FixelText-ExtraBold.ufo/glyphs/cdotaccent.glif new file mode 100644 index 00000000..87ad0906 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/cdotaccent.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+dotaccent + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/cedilla.glif b/sources/FixelText-ExtraBold.ufo/glyphs/cedilla.glif new file mode 100644 index 00000000..48b22dfc --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/cedilla.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/cent.glif b/sources/FixelText-ExtraBold.ufo/glyphs/cent.glif new file mode 100644 index 00000000..9334ec8b --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/cent.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + c + com.fontlab.metricsRight + c + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/che-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/che-cy.glif new file mode 100644 index 00000000..f6ea188f --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/che-cy.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + u-10 + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/cheabkhcyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/cheabkhcyr.glif new file mode 100644 index 00000000..becf7b8a --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/cheabkhcyr.glif @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + e + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/cheabkhtailcyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/cheabkhtailcyr.glif new file mode 100644 index 00000000..0e9d3624 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/cheabkhtailcyr.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + cheabkhcyr + com.fontlab.metricsRight + cheabkhcyr + com.fontlab.recipe + cheabkhcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/chedieresiscyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/chedieresiscyr.glif new file mode 100644 index 00000000..faaec331 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/chedieresiscyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + che-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/chekhakascyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/chekhakascyr.glif new file mode 100644 index 00000000..c2ad5966 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/chekhakascyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ч + com.fontlab.metricsRight + н + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/chetailcyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/chetailcyr.glif new file mode 100644 index 00000000..7be45445 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/chetailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ч + com.fontlab.metricsRight + entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/chevertcyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/chevertcyr.glif new file mode 100644 index 00000000..fd060695 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/chevertcyr.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ч + com.fontlab.metricsRight + н + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/circumflex.case.glif b/sources/FixelText-ExtraBold.ufo/glyphs/circumflex.case.glif new file mode 100644 index 00000000..f61ea74d --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/circumflex.case.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/circumflex.glif b/sources/FixelText-ExtraBold.ufo/glyphs/circumflex.glif new file mode 100644 index 00000000..b91dd340 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/circumflex.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/clubwhite.glif b/sources/FixelText-ExtraBold.ufo/glyphs/clubwhite.glif new file mode 100644 index 00000000..4a2bcb20 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/clubwhite.glif @@ -0,0 +1,155 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/colon.case.glif b/sources/FixelText-ExtraBold.ufo/glyphs/colon.case.glif new file mode 100644 index 00000000..2c821a0f --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/colon.case.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/colon.glif b/sources/FixelText-ExtraBold.ufo/glyphs/colon.glif new file mode 100644 index 00000000..779111c1 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/colon.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/colontriangularmod.glif b/sources/FixelText-ExtraBold.ufo/glyphs/colontriangularmod.glif new file mode 100644 index 00000000..32fdb2b2 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/colontriangularmod.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + colon + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/comma.glif b/sources/FixelText-ExtraBold.ufo/glyphs/comma.glif new file mode 100644 index 00000000..c772ab25 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/comma.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/commaaccentcomb.glif b/sources/FixelText-ExtraBold.ufo/glyphs/commaaccentcomb.glif new file mode 100644 index 00000000..82c39677 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/commaaccentcomb.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/commaaccentcomb.salt.glif b/sources/FixelText-ExtraBold.ufo/glyphs/commaaccentcomb.salt.glif new file mode 100644 index 00000000..18147a6a --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/commaaccentcomb.salt.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/contents.plist b/sources/FixelText-ExtraBold.ufo/glyphs/contents.plist new file mode 100644 index 00000000..2830b2de --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/contents.plist @@ -0,0 +1,2352 @@ + + + + + .notdef + _notdef.glif + A + A_.glif + A-cy + A_-cy.glif + A-cy.accented + A_-cy.accented.glif + A-cy.ss01 + A_-cy.ss01.glif + A.ss01 + A_.ss01.glif + AE + A_E_.glif + AE.ss01 + A_E_.ss01.glif + AEacute + A_E_acute.glif + Aacute + A_acute.glif + Aacute.ss01 + A_acute.ss01.glif + Abreve + A_breve.glif + Abreve.ss01 + A_breve.ss01.glif + Abrevecyr + A_brevecyr.glif + Acaron + A_caron.glif + Acircumflex + A_circumflex.glif + Acircumflex.ss01 + A_circumflex.ss01.glif + Adieresis + A_dieresis.glif + Adieresis.ss01 + A_dieresis.ss01.glif + Adieresiscyr + A_dieresiscyr.glif + Agrave + A_grave.glif + Agrave.ss01 + A_grave.ss01.glif + Aiecyr + A_iecyr.glif + Amacron + A_macron.glif + Amacron.ss01 + A_macron.ss01.glif + Aogonek + A_ogonek.glif + Aogonek.ss01 + A_ogonek.ss01.glif + Aring + A_ring.glif + Aring.ss01 + A_ring.ss01.glif + Atilde + A_tilde.glif + Atilde.ss01 + A_tilde.ss01.glif + B + B_.glif + Be-cy + B_e-cy.glif + C + C_.glif + CR + C_R_.glif + Cacute + C_acute.glif + Ccaron + C_caron.glif + Ccedilla + C_cedilla.glif + Cche-cy + C_che-cy.glif + Ccircumflex + C_circumflex.glif + Cdotaccent + C_dotaccent.glif + Che-cy + C_he-cy.glif + Cheabkhcyr + C_heabkhcyr.glif + Cheabkhtailcyr + C_heabkhtailcyr.glif + Chedieresiscyr + C_hedieresiscyr.glif + Chekhakascyr + C_hekhakascyr.glif + Chetailcyr + C_hetailcyr.glif + Chevertcyr + C_hevertcyr.glif + CrossedO-cy + C_rossedO_-cy.glif + D + D_.glif + Dcaron + D_caron.glif + Dchecyr + D_checyr.glif + Dcroat + D_croat.glif + De-cy + D_e-cy.glif + De-cy.BGR + D_e-cy.B_G_R_.glif + DeSoft-cy + D_eS_oft-cy.glif + Dekomicyr + D_ekomicyr.glif + Delta + D_elta.glif + Djecyr + D_jecyr.glif + Djekomicyr + D_jekomicyr.glif + Djerv-cy + D_jerv-cy.glif + DoubleO-cy + D_oubleO_-cy.glif + Dwe-cy + D_we-cy.glif + Dze-cy + D_ze-cy.glif + DzeReversed-cy + D_zeR_eversed-cy.glif + Dzeabkhcyr + D_zeabkhcyr.glif + Dzelo-cy + D_zelo-cy.glif + Dzhecyr + D_zhecyr.glif + Dzjekomicyr + D_zjekomicyr.glif + Dzwe-cy + D_zwe-cy.glif + Dzze-cy + D_zze-cy.glif + Dzzhecyr + D_zzhecyr.glif + E + E_.glif + E-cy + E_-cy.glif + E-cy.accented + E_-cy.accented.glif + Eacute + E_acute.glif + Ebreve + E_breve.glif + Ecaron + E_caron.glif + Ecircumflex + E_circumflex.glif + Edieresis + E_dieresis.glif + Edotaccent + E_dotaccent.glif + Ef-cy + E_f-cy.glif + Ef-cy.BGR + E_f-cy.B_G_R_.glif + Egrave + E_grave.glif + Eiotifiedcyr + E_iotifiedcyr.glif + El-cy + E_l-cy.glif + El-cy.BGR + E_l-cy.B_G_R_.glif + ElSoft-cy + E_lS_oft-cy.glif + Elhookcyr + E_lhookcyr.glif + Elmiddlehookcyr + E_lmiddlehookcyr.glif + Elsharptailcyr + E_lsharptailcyr.glif + Elsmallcyr + E_lsmallcyr.glif + Eltailcyr + E_ltailcyr.glif + Em-cy + E_m-cy.glif + Em-cy.ss01 + E_m-cy.ss01.glif + EmSoft-cy + E_mS_oft-cy.glif + Emacron + E_macron.glif + Emsharptailcyr + E_msharptailcyr.glif + En-cy + E_n-cy.glif + Eng + E_ng.glif + Eng.ss01 + E_ng.ss01.glif + Engecyr + E_ngecyr.glif + Enhookcyr + E_nhookcyr.glif + Enhookleftcyr + E_nhookleftcyr.glif + Enmiddlehookcyr + E_nmiddlehookcyr.glif + Ensharptailcyr + E_nsharptailcyr.glif + Entailcyr + E_ntailcyr.glif + Eogonek + E_ogonek.glif + Er-cy + E_r-cy.glif + Ereversed-cy + E_reversed-cy.glif + Ereversed-cy.accented + E_reversed-cy.accented.glif + Ereverseddieresiscyr + E_reverseddieresiscyr.glif + Ertickcyr + E_rtickcyr.glif + Es-cy + E_s-cy.glif + Estailcyr + E_stailcyr.glif + Estailcyr.BSH + E_stailcyr.B_S_H_.glif + Estailcyr.CHU + E_stailcyr.C_H_U_.glif + Eth + E_th.glif + F + F_.glif + Fitacyr + F_itacyr.glif + G + G_.glif + G.ss01 + G_.ss01.glif + Gacute + G_acute.glif + Gacute.ss01 + G_acute.ss01.glif + Gbreve + G_breve.glif + Gbreve.ss01 + G_breve.ss01.glif + Gcircumflex + G_circumflex.glif + Gcircumflex.ss01 + G_circumflex.ss01.glif + Gcommaaccent + G_commaaccent.glif + Gcommaaccent.ss01 + G_commaaccent.ss01.glif + Gdotaccent + G_dotaccent.glif + Gdotaccent.ss01 + G_dotaccent.ss01.glif + Ge-cy + G_e-cy.glif + Gehookcyr + G_ehookcyr.glif + Gehookstrokecyr + G_ehookstrokecyr.glif + Germandbls + G_ermandbls.glif + Gestrokecyr + G_estrokecyr.glif + Gestrokecyr.BSH + G_estrokecyr.B_S_H_.glif + Getailcyr + G_etailcyr.glif + Gheupturn-cy + G_heupturn-cy.glif + Gjecyr + G_jecyr.glif + H + H_.glif + Ha-cy + H_a-cy.glif + Ha-cy.ss01 + H_a-cy.ss01.glif + Haabkhcyr + H_aabkhcyr.glif + Hahookcyr + H_ahookcyr.glif + Hardsign-cy + H_ardsign-cy.glif + Hastrokecyr + H_astrokecyr.glif + Hbar + H_bar.glif + Hcircumflex + H_circumflex.glif + Hwe-cy + H_we-cy.glif + I + I_.glif + I-cy + I_-cy.glif + IJ + I_J_.glif + Ia-cy + I_a-cy.glif + Ia-cy.accented + I_a-cy.accented.glif + Ia-cy.ss01 + I_a-cy.ss01.glif + Iacute + I_acute.glif + Ibreve + I_breve.glif + Icircumflex + I_circumflex.glif + Idieresis + I_dieresis.glif + Idieresiscyr + I_dieresiscyr.glif + Idotaccent + I_dotaccent.glif + Ie-cy + I_e-cy.glif + Iebrevecyr + I_ebrevecyr.glif + Iegravecyr + I_egravecyr.glif + Igrave + I_grave.glif + Igravecyr + I_gravecyr.glif + Ii-cy + I_i-cy.glif + Ii-cy.accented + I_i-cy.accented.glif + Iishort-cy + I_ishort-cy.glif + Imacron + I_macron.glif + Imacroncyr + I_macroncyr.glif + Io-cy + I_o-cy.glif + Io-cy.accented + I_o-cy.accented.glif + Iogonek + I_ogonek.glif + Iota-cy + I_ota-cy.glif + IotifiedA-cy + I_otifiedA_-cy.glif + Ishortsharptailcyr + I_shortsharptailcyr.glif + Itilde + I_tilde.glif + Iu-cy + I_u-cy.glif + Iu-cy.accented + I_u-cy.accented.glif + Izhitsacyr + I_zhitsacyr.glif + Izhitsagravedblcyr + I_zhitsagravedblcyr.glif + J + J_.glif + J.ss01 + J_.ss01.glif + Jcircumflex + J_circumflex.glif + Jcircumflex.ss01 + J_circumflex.ss01.glif + Jecyr + J_ecyr.glif + K + K_.glif + K.ss01 + K_.ss01.glif + Ka-cy + K_a-cy.glif + Ka-cy.ss01 + K_a-cy.ss01.glif + Kaaleutcyr + K_aaleutcyr.glif + Kabashkcyr + K_abashkcyr.glif + Kahookcyr + K_ahookcyr.glif + Kastrokecyr + K_astrokecyr.glif + Katailcyr + K_atailcyr.glif + Kaverticalstrokecyr + K_averticalstrokecyr.glif + Kcommaaccent + K_commaaccent.glif + Kcommaaccent.ss01 + K_commaaccent.ss01.glif + Kjecyr + K_jecyr.glif + Koppacyr + K_oppacyr.glif + Ksicyr + K_sicyr.glif + L + L_.glif + Lacute + L_acute.glif + Lcaron + L_caron.glif + Lcommaaccent + L_commaaccent.glif + Ldot + L_dot.glif + Lhacyr + L_hacyr.glif + Ljecyr + L_jecyr.glif + Ljekomicyr + L_jekomicyr.glif + Lslash + L_slash.glif + M + M_.glif + M.ss01 + M_.ss01.glif + N + N_.glif + N.ss01 + N_.ss01.glif + NULL + N_U_L_L_.glif + Nacute + N_acute.glif + Nacute.ss01 + N_acute.ss01.glif + Ncaron + N_caron.glif + Ncaron.ss01 + N_caron.ss01.glif + Ncommaaccent + N_commaaccent.glif + Ncommaaccent.ss01 + N_commaaccent.ss01.glif + Njecyr + N_jecyr.glif + Njekomicyr + N_jekomicyr.glif + Ntilde + N_tilde.glif + Ntilde.ss01 + N_tilde.ss01.glif + O + O_.glif + O-cy + O_-cy.glif + O-cy.accented + O_-cy.accented.glif + OBinocular-cy + O_B_inocular-cy.glif + ODoubleMonocular-cy + O_D_oubleM_onocular-cy.glif + OE + O_E_.glif + OMonocular-cy + O_M_onocular-cy.glif + Oacute + O_acute.glif + Obarcyr + O_barcyr.glif + Obardieresiscyr + O_bardieresiscyr.glif + Obreve + O_breve.glif + Ocircumflex + O_circumflex.glif + Odieresis + O_dieresis.glif + Odieresiscyr + O_dieresiscyr.glif + Ograve + O_grave.glif + Ohungarumlaut + O_hungarumlaut.glif + Omacron + O_macron.glif + Omega + O_mega.glif + OmegaBroad-cy + O_megaB_road-cy.glif + Omegacyr + O_megacyr.glif + Omegaroundcyr + O_megaroundcyr.glif + Omegatitlocyr + O_megatitlocyr.glif + Oslash + O_slash.glif + Oslashacute + O_slashacute.glif + Otcyr + O_tcyr.glif + Otilde + O_tilde.glif + P + P_.glif + Palochkacyr + P_alochkacyr.glif + Pe-cy + P_e-cy.glif + Pehookcyr + P_ehookcyr.glif + Petailcyr + P_etailcyr.glif + Psicyr + P_sicyr.glif + Q + Q_.glif + Q.ss01 + Q_.ss01.glif + Qacyr + Q_acyr.glif + R + R_.glif + Racute + R_acute.glif + Rcaron + R_caron.glif + Rcommaaccent + R_commaaccent.glif + Reversedzecyr + R_eversedzecyr.glif + Rhacyr + R_hacyr.glif + S + S_.glif + Sacute + S_acute.glif + Scaron + S_caron.glif + Scedilla + S_cedilla.glif + Schwa + S_chwa.glif + Schwacyr + S_chwacyr.glif + Schwadieresiscyr + S_chwadieresiscyr.glif + Scircumflex + S_circumflex.glif + Scommaaccent + S_commaaccent.glif + Semisoftcyr + S_emisoftcyr.glif + Sha-cy + S_ha-cy.glif + Shcha-cy + S_hcha-cy.glif + Shhacyr + S_hhacyr.glif + Shhatailcyr + S_hhatailcyr.glif + Shwe-cy + S_hwe-cy.glif + Sjekomicyr + S_jekomicyr.glif + Softsign-cy + S_oftsign-cy.glif + T + T_.glif + Tbar + T_bar.glif + Tcaron + T_caron.glif + Tcedilla + T_cedilla.glif + Tche-cy + T_che-cy.glif + Tcommaaccent + T_commaaccent.glif + Te-cy + T_e-cy.glif + TeWithMiddleHook-cy + T_eW_ithM_iddleH_ook-cy.glif + Tetailcyr + T_etailcyr.glif + Tetsecyr + T_etsecyr.glif + Thorn + T_horn.glif + Tjekomicyr + T_jekomicyr.glif + Tse-cy + T_se-cy.glif + TseReversed-cy + T_seR_eversed-cy.glif + Tshecyr + T_shecyr.glif + Tsse-cy + T_sse-cy.glif + Tswe-cy + T_swe-cy.glif + Twe-cy + T_we-cy.glif + U + U_.glif + U-cy + U_-cy.glif + U-cy.accented + U_-cy.accented.glif + U-cy.ss01 + U_-cy.ss01.glif + Uacute + U_acute.glif + Uacutedblcyr + U_acutedblcyr.glif + Ubreve + U_breve.glif + Ucircumflex + U_circumflex.glif + Udieresis + U_dieresis.glif + Udieresiscyr + U_dieresiscyr.glif + Ugrave + U_grave.glif + Uhungarumlaut + U_hungarumlaut.glif + UkMonograph-cy + U_kM_onograph-cy.glif + Ukcyr + U_kcyr.glif + Umacron + U_macron.glif + Umacroncyr + U_macroncyr.glif + Uogonek + U_ogonek.glif + Uring + U_ring.glif + Ushort-cy + U_short-cy.glif + Ushort-cy.ss01 + U_short-cy.ss01.glif + Ustraightcyr + U_straightcyr.glif + Ustraightstrokecyr + U_straightstrokecyr.glif + Utilde + U_tilde.glif + V + V_.glif + V.ss01 + V_.ss01.glif + Ve-cy + V_e-cy.glif + W + W_.glif + W.ss01 + W_.ss01.glif + Wacute + W_acute.glif + Wacute.ss01 + W_acute.ss01.glif + Wcircumflex + W_circumflex.glif + Wcircumflex.ss01 + W_circumflex.ss01.glif + Wdieresis + W_dieresis.glif + Wdieresis.ss01 + W_dieresis.ss01.glif + Wecyr + W_ecyr.glif + Wgrave + W_grave.glif + Wgrave.ss01 + W_grave.ss01.glif + X + X_.glif + X.ss01 + X_.ss01.glif + Xatailcyr + X_atailcyr.glif + Y + Y_.glif + Y.ss01 + Y_.ss01.glif + Yacute + Y_acute.glif + Yacute.ss01 + Y_acute.ss01.glif + Yaecyr + Y_aecyr.glif + YatIotified-cy + Y_atI_otified-cy.glif + Yatcyr + Y_atcyr.glif + Ycircumflex + Y_circumflex.glif + Ycircumflex.ss01 + Y_circumflex.ss01.glif + Ydieresis + Y_dieresis.glif + Ydieresis.ss01 + Y_dieresis.ss01.glif + YerNeutral-cy + Y_erN_eutral-cy.glif + Yeru-cy + Y_eru-cy.glif + Yeru-cy.accented + Y_eru-cy.accented.glif + Yeru-cymacron + Y_eru-cymacron.glif + YeruBackYer-cy + Y_eruB_ackY_er-cy.glif + Yi-cy + Y_i-cy.glif + Ylongdieresiscyr + Y_longdieresiscyr.glif + Yn-cy + Y_n-cy.glif + YuReversed-cy + Y_uR_eversed-cy.glif + YusBlended-cy + Y_usB_lended-cy.glif + YusClosedlittle-cy + Y_usC_losedlittle-cy.glif + Yusbigcyr + Y_usbigcyr.glif + Yusbigiotifiedcyr + Y_usbigiotifiedcyr.glif + YusiotifiedClosedLittle-cy + Y_usiotifiedC_losedL_ittle-cy.glif + Yuslittlecyr + Y_uslittlecyr.glif + Yuslittleiotifiedcyr + Y_uslittleiotifiedcyr.glif + Z + Z_.glif + Z.ss01 + Z_.ss01.glif + Zacute + Z_acute.glif + Zacute.ss01 + Z_acute.ss01.glif + Zcaron + Z_caron.glif + Zcaron.ss01 + Z_caron.ss01.glif + Zdotaccent + Z_dotaccent.glif + Zdotaccent.ss01 + Z_dotaccent.ss01.glif + Ze-cy + Z_e-cy.glif + Zedieresiscyr + Z_edieresiscyr.glif + Zemlya-cy + Z_emlya-cy.glif + Zetailcyr + Z_etailcyr.glif + Zetailcyr.BSH + Z_etailcyr.B_S_H_.glif + Zhe-cy + Z_he-cy.glif + Zhe-cy.ss01 + Z_he-cy.ss01.glif + Zhebrevecyr + Z_hebrevecyr.glif + Zhedieresiscyr + Z_hedieresiscyr.glif + Zhetailcyr + Z_hetailcyr.glif + Zhwe-cy + Z_hwe-cy.glif + Zjekomicyr + Z_jekomicyr.glif + _perc-circule + _perc-circule.glif + a + a.glif + a-cy + a-cy.glif + a-cy.accented + a-cy.accented.glif + a-cy.ss01 + a-cy.ss01.glif + a.ss01 + a.ss01.glif + aacute + aacute.glif + aacute.ss01 + aacute.ss01.glif + abreve + abreve.glif + abreve.ss01 + abreve.ss01.glif + abrevecyr + abrevecyr.glif + acaron + acaron.glif + acircumflex + acircumflex.glif + acircumflex.ss01 + acircumflex.ss01.glif + acute + acute.glif + acute.case + acute.case.glif + adieresis + adieresis.glif + adieresis.ss01 + adieresis.ss01.glif + adieresiscyr + adieresiscyr.glif + ae + ae.glif + ae.ss01 + ae.ss01.glif + aeacute + aeacute.glif + agrave + agrave.glif + agrave.ss01 + agrave.ss01.glif + aiecyr + aiecyr.glif + amacron + amacron.glif + amacron.ss01 + amacron.ss01.glif + ampersand + ampersand.glif + aogonek + aogonek.glif + aogonek.ss01 + aogonek.ss01.glif + apostrophemod + apostrophemod.glif + approxequal + approxequal.glif + aring + aring.glif + aring.ss01 + aring.ss01.glif + arrowdown + arrowdown.glif + arrowdown.case + arrowdown.case.glif + arrowdown.ss01 + arrowdown.ss01.glif + arrowdown.ss01.case + arrowdown.ss01.case.glif + arrowleft + arrowleft.glif + arrowleft.case + arrowleft.case.glif + arrowleft.ss01 + arrowleft.ss01.glif + arrowleft.ss01.case + arrowleft.ss01.case.glif + arrowright + arrowright.glif + arrowright.case + arrowright.case.glif + arrowright.ss01 + arrowright.ss01.glif + arrowright.ss01.case + arrowright.ss01.case.glif + arrowup + arrowup.glif + arrowup.case + arrowup.case.glif + arrowup.ss01 + arrowup.ss01.glif + arrowup.ss01.case + arrowup.ss01.case.glif + asciicircum + asciicircum.glif + asciitilde + asciitilde.glif + asterisk + asterisk.glif + at + at.glif + at.case + at.case.glif + atilde + atilde.glif + atilde.ss01 + atilde.ss01.glif + b + b.glif + b.ss01 + b.ss01.glif + backslash + backslash.glif + backslash.case + backslash.case.glif + bar + bar.glif + bar.case + bar.case.glif + be-cy + be-cy.glif + be-cy.SRB + be-cy.S_R_B_.glif + bishopblack + bishopblack.glif + bishopwhite + bishopwhite.glif + braceleft + braceleft.glif + braceleft.case + braceleft.case.glif + braceright + braceright.glif + braceright.case + braceright.case.glif + bracketangleleft + bracketangleleft.glif + bracketangleleft.case + bracketangleleft.case.glif + bracketangleright + bracketangleright.glif + bracketangleright.case + bracketangleright.case.glif + bracketleft + bracketleft.glif + bracketleft.case + bracketleft.case.glif + bracketright + bracketright.glif + bracketright.case + bracketright.case.glif + breve + breve.glif + breve.case + breve.case.glif + brokenbar + brokenbar.glif + brokenbar.case + brokenbar.case.glif + bullet + bullet.glif + bullet.case + bullet.case.glif + c + c.glif + cacute + cacute.glif + caron + caron.glif + caron.case + caron.case.glif + caron.salt + caron.salt.glif + ccaron + ccaron.glif + ccedilla + ccedilla.glif + cche-cy + cche-cy.glif + ccircumflex + ccircumflex.glif + cdotaccent + cdotaccent.glif + cedilla + cedilla.glif + cent + cent.glif + che-cy + che-cy.glif + cheabkhcyr + cheabkhcyr.glif + cheabkhtailcyr + cheabkhtailcyr.glif + chedieresiscyr + chedieresiscyr.glif + chekhakascyr + chekhakascyr.glif + chetailcyr + chetailcyr.glif + chevertcyr + chevertcyr.glif + circumflex + circumflex.glif + circumflex.case + circumflex.case.glif + clubwhite + clubwhite.glif + colon + colon.glif + colon.case + colon.case.glif + colontriangularmod + colontriangularmod.glif + comma + comma.glif + commaaccentcomb + commaaccentcomb.glif + commaaccentcomb.salt + commaaccentcomb.salt.glif + copyright + copyright.glif + crossedo-cy + crossedo-cy.glif + crossedswords + crossedswords.glif + currency + currency.glif + d + d.glif + d.ss01 + d.ss01.glif + dagger + dagger.glif + daggerdbl + daggerdbl.glif + dcaron + dcaron.glif + dcaron.ss01 + dcaron.ss01.glif + dchecyr + dchecyr.glif + dcroat + dcroat.glif + dcroat.ss01 + dcroat.ss01.glif + de-cy + de-cy.glif + de-cy.BGR + de-cy.B_G_R_.glif + de-cy.ss01 + de-cy.ss01.glif + deSoft-cy + deS_oft-cy.glif + degree + degree.glif + dekomicyr + dekomicyr.glif + diamondwhite-misc + diamondwhite-misc.glif + dieresis + dieresis.glif + dieresis.alt + dieresis.alt.glif + dieresis.case + dieresis.case.glif + dieresisacute + dieresisacute.glif + dieresiscase.alt + dieresiscase.alt.glif + divide + divide.glif + djecyr + djecyr.glif + djekomicyr + djekomicyr.glif + djerv-cy + djerv-cy.glif + dollar + dollar.glif + dotaccent + dotaccent.glif + dotaccent.case + dotaccent.case.glif + doubleo-cy + doubleo-cy.glif + dramsignarmn + dramsignarmn.glif + dwe-cy + dwe-cy.glif + dze-cy + dze-cy.glif + dzeReversed-cy + dzeR_eversed-cy.glif + dzeabkhcyr + dzeabkhcyr.glif + dzelo-cy + dzelo-cy.glif + dzhecyr + dzhecyr.glif + dzjekomicyr + dzjekomicyr.glif + dzwe-cy + dzwe-cy.glif + dzze-cy + dzze-cy.glif + dzzhecyr + dzzhecyr.glif + e + e.glif + e-cy + e-cy.glif + e-cy.accented + e-cy.accented.glif + e-cy.hist + e-cy.hist.glif + e.ss01 + e.ss01.glif + eacute + eacute.glif + eacute.ss01 + eacute.ss01.glif + ebreve + ebreve.glif + ebreve.ss01 + ebreve.ss01.glif + ecaron + ecaron.glif + ecaron.ss01 + ecaron.ss01.glif + ecircumflex + ecircumflex.glif + ecircumflex.ss01 + ecircumflex.ss01.glif + edieresis + edieresis.glif + edieresis.ss01 + edieresis.ss01.glif + edotaccent + edotaccent.glif + edotaccent.ss01 + edotaccent.ss01.glif + ef-cy + ef-cy.glif + egrave + egrave.glif + egrave.ss01 + egrave.ss01.glif + eight + eight.glif + eight.osf + eight.osf.glif + eight.tf + eight.tf.glif + eiotifiedcyr + eiotifiedcyr.glif + eiotifiedcyr.BGR + eiotifiedcyr.B_G_R_.glif + el-cy + el-cy.glif + el-cy.BGR + el-cy.B_G_R_.glif + el-cy.ss01 + el-cy.ss01.glif + elSoft-cy + elS_oft-cy.glif + elhookcyr + elhookcyr.glif + ellipsis + ellipsis.glif + elmiddlehookcyr + elmiddlehookcyr.glif + elsharptailcyr + elsharptailcyr.glif + eltailcyr + eltailcyr.glif + em-cy + em-cy.glif + emSoft-cy + emS_oft-cy.glif + emacron + emacron.glif + emacron.ss01 + emacron.ss01.glif + emdash + emdash.glif + emdash.case + emdash.case.glif + emsharptailcyr + emsharptailcyr.glif + en-cy + en-cy.glif + enclosingcirclecomb + enclosingcirclecomb.glif + endash + endash.glif + endash.case + endash.case.glif + eng + eng.glif + engecyr + engecyr.glif + enhookcyr + enhookcyr.glif + enhookleftcyr + enhookleftcyr.glif + enmiddlehookcyr + enmiddlehookcyr.glif + ensharptailcyr + ensharptailcyr.glif + entailcyr + entailcyr.glif + eogonek + eogonek.glif + eogonek.ss01 + eogonek.ss01.glif + equal + equal.glif + er-cy + er-cy.glif + er-cy.ss01 + er-cy.ss01.glif + ereversed-cy + ereversed-cy.glif + ereversed-cy.accented + ereversed-cy.accented.glif + ereverseddieresiscyr + ereverseddieresiscyr.glif + ertickcyr + ertickcyr.glif + es-cy + es-cy.glif + estailcyr + estailcyr.glif + estailcyr.BSH + estailcyr.B_S_H_.glif + estailcyr.CHU + estailcyr.C_H_U_.glif + estimated + estimated.glif + eth + eth.glif + eturned + eturned.glif + euro + euro.glif + exclam + exclam.glif + exclamdown + exclamdown.glif + exclamdown.case + exclamdown.case.glif + f + f.glif + f.ss01 + f.ss01.glif + f_f + f_f.glif + f_f.ss01 + f_f.ss01.glif + f_f_i + f_f_i.glif + f_f_i.ss01 + f_f_i.ss01.glif + f_f_l + f_f_l.glif + f_f_l.ss01 + f_f_l.ss01.glif + fi + fi.glif + fi.ss01 + fi.ss01.glif + fitacyr + fitacyr.glif + five + five.glif + five.osf + five.osf.glif + five.tf + five.tf.glif + fl + fl.glif + fl.ss01 + fl.ss01.glif + floretteblack + floretteblack.glif + floretteoutlinedpetalledblackeight + floretteoutlinedpetalledblackeight.glif + florettewhite + florettewhite.glif + florin + florin.glif + flower + flower.glif + four + four.glif + four.osf + four.osf.glif + four.tf + four.tf.glif + fraction + fraction.glif + g + g.glif + g.ss01 + g.ss01.glif + gacute + gacute.glif + gacute.ss01 + gacute.ss01.glif + gbreve + gbreve.glif + gbreve.ss01 + gbreve.ss01.glif + gcircumflex + gcircumflex.glif + gcircumflex.ss01 + gcircumflex.ss01.glif + gcommaaccent + gcommaaccent.glif + gcommaaccent.ss01 + gcommaaccent.ss01.glif + gdotaccent + gdotaccent.glif + gdotaccent.ss01 + gdotaccent.ss01.glif + ge-cy + ge-cy.glif + ge-cy.BGR + ge-cy.B_G_R_.glif + ge-cy.SRB + ge-cy.S_R_B_.glif + gehookcyr + gehookcyr.glif + gehookstrokecyr + gehookstrokecyr.glif + germandbls + germandbls.glif + germandbls.ss01 + germandbls.ss01.glif + gestrokecyr + gestrokecyr.glif + gestrokecyr.BSH + gestrokecyr.B_S_H_.glif + getailcyr + getailcyr.glif + gheupturn-cy + gheupturn-cy.glif + gjecyr + gjecyr.glif + gjecyr.SRB + gjecyr.S_R_B_.glif + grave + grave.glif + grave.case + grave.case.glif + greater + greater.glif + greaterequal + greaterequal.glif + guillemetleft + guillemetleft.glif + guillemetleft.case + guillemetleft.case.glif + guillemetright + guillemetright.glif + guillemetright.case + guillemetright.case.glif + guilsinglleft + guilsinglleft.glif + guilsinglleft.case + guilsinglleft.case.glif + guilsinglright + guilsinglright.glif + guilsinglright.case + guilsinglright.case.glif + h + h.glif + ha-cy + ha-cy.glif + haabkhcyr + haabkhcyr.glif + hahookcyr + hahookcyr.glif + hardsign-cy + hardsign-cy.glif + hardsign-cy.BGR + hardsign-cy.B_G_R_.glif + hardsign-cy.ss01 + hardsign-cy.ss01.glif + hastrokecyr + hastrokecyr.glif + hbar + hbar.glif + hcircumflex + hcircumflex.glif + heart + heart.glif + heartwhite + heartwhite.glif + hryvnia + hryvnia.glif + hundredmillionscomb-cy + hundredmillionscomb-cy.glif + hundredthousandscombcyr + hundredthousandscombcyr.glif + hungarumlaut + hungarumlaut.glif + hungarumlaut.case + hungarumlaut.case.glif + hwe-cy + hwe-cy.glif + hyphen + hyphen.glif + hyphen.case + hyphen.case.glif + i + i.glif + i-cy + i-cy.glif + ia-cy + ia-cy.glif + ia-cy.accented + ia-cy.accented.glif + ia-cy.ss01 + ia-cy.ss01.glif + iacute + iacute.glif + ibreve + ibreve.glif + icircumflex + icircumflex.glif + idieresis + idieresis.glif + idieresiscyr + idieresiscyr.glif + idotless + idotless.glif + ie-cy + ie-cy.glif + ie-cy.ss01 + ie-cy.ss01.glif + iebrevecyr + iebrevecyr.glif + iegravecyr + iegravecyr.glif + iegravecyr.SRB + iegravecyr.S_R_B_.glif + igrave + igrave.glif + igravecyr + igravecyr.glif + igravecyr.SRB + igravecyr.S_R_B_.glif + ii-cy + ii-cy.glif + ii-cy.BGR + ii-cy.B_G_R_.glif + ii-cy.accented + ii-cy.accented.glif + iishort-cy + iishort-cy.glif + iishort-cy.BGR + iishort-cy.B_G_R_.glif + ij + ij.glif + imacron + imacron.glif + imacroncyr + imacroncyr.glif + increment + increment.glif + infinity + infinity.glif + integral + integral.glif + io-cy + io-cy.glif + io-cy.accented + io-cy.accented.glif + io-cy.ss01 + io-cy.ss01.glif + iogonek + iogonek.glif + iota-cy + iota-cy.glif + iotifieda-cy + iotifieda-cy.glif + iotifieda-cy.BGR + iotifieda-cy.B_G_R_.glif + iotifieda-cy.hist + iotifieda-cy.hist.glif + ishortsharptailcyr + ishortsharptailcyr.glif + itilde + itilde.glif + iu-cy + iu-cy.glif + iu-cy.BGR + iu-cy.B_G_R_.glif + iu-cy.accented + iu-cy.accented.glif + izhitsacyr + izhitsacyr.glif + izhitsagravedblcyr + izhitsagravedblcyr.glif + j + j.glif + jcircumflex + jcircumflex.glif + jdotless + jdotless.glif + je-cy + je-cy.glif + k + k.glif + ka-cy + ka-cy.glif + ka-cy.BGR + ka-cy.B_G_R_.glif + kaaleutcyr + kaaleutcyr.glif + kabashkcyr + kabashkcyr.glif + kahookcyr + kahookcyr.glif + kastrokecyr + kastrokecyr.glif + katailcyr + katailcyr.glif + kaverticalstrokecyr + kaverticalstrokecyr.glif + kcommaaccent + kcommaaccent.glif + kgreenlandic + kgreenlandic.glif + kjecyr + kjecyr.glif + knightblack + knightblack.glif + knightwhite + knightwhite.glif + koppacyr + koppacyr.glif + ksicyr + ksicyr.glif + l + l.glif + l.ss01 + l.ss01.glif + lacute + lacute.glif + lacute.ss01 + lacute.ss01.glif + lcaron + lcaron.glif + lcaron.ss01 + lcaron.ss01.glif + lcommaaccent + lcommaaccent.glif + lcommaaccent.ss01 + lcommaaccent.ss01.glif + ldot + ldot.glif + ldot.ss01 + ldot.ss01.glif + leo + leo.glif + less + less.glif + lessequal + lessequal.glif + lhacyr + lhacyr.glif + ljecyr + ljecyr.glif + ljecyr.ss01 + ljecyr.ss01.glif + ljekomicyr + ljekomicyr.glif + longs + longs.glif + lslash + lslash.glif + lslash.ss01 + lslash.ss01.glif + m + m.glif + macron + macron.glif + macron-fwd + macron-fwd.glif + macron-fwd.alt + macron-fwd.alt.glif + macron.case + macron.case.glif + macronacute.SRB + macronacute.S_R_B_.glif + millionscombcyr + millionscombcyr.glif + minus + minus.glif + minute + minute.glif + mu + mu.glif + multiply + multiply.glif + n + n.glif + nacute + nacute.glif + napostrophe + napostrophe.glif + ncaron + ncaron.glif + ncommaaccent + ncommaaccent.glif + neptune + neptune.glif + nine + nine.glif + nine.osf + nine.osf.glif + nine.tf + nine.tf.glif + njecyr + njecyr.glif + njecyr.ss01 + njecyr.ss01.glif + njekomicyr + njekomicyr.glif + notequal + notequal.glif + ntilde + ntilde.glif + numbersign + numbersign.glif + numero + numero.glif + numero.ss01 + numero.ss01.glif + o + o.glif + o-cy + o-cy.glif + o-cy.accented + o-cy.accented.glif + oBinocular-cy + oB_inocular-cy.glif + oDoubleMonocular-cy + oD_oubleM_onocular-cy.glif + oMonocular-cy + oM_onocular-cy.glif + oacute + oacute.glif + obarcyr + obarcyr.glif + obardieresiscyr + obardieresiscyr.glif + obreve + obreve.glif + ocircumflex + ocircumflex.glif + odieresis + odieresis.glif + odieresiscyr + odieresiscyr.glif + oe + oe.glif + oe.ss01 + oe.ss01.glif + ogonek + ogonek.glif + ograve + ograve.glif + ohungarumlaut + ohungarumlaut.glif + omacron + omacron.glif + omegaBroad-cy + omegaB_road-cy.glif + omegacyr + omegacyr.glif + omegaroundcyr + omegaroundcyr.glif + omegatitlocyr + omegatitlocyr.glif + omultiocular-cy + omultiocular-cy.glif + omultiocular-cy.alt + omultiocular-cy.alt.glif + one + one.glif + one.osf + one.osf.glif + one.tf + one.tf.glif + onehalf + onehalf.glif + onequarter + onequarter.glif + onesuperior + onesuperior.glif + ordfeminine + ordfeminine.glif + ordmasculine + ordmasculine.glif + oslash + oslash.glif + oslashacute + oslashacute.glif + otcyr + otcyr.glif + otilde + otilde.glif + p + p.glif + p.ss01 + p.ss01.glif + palatcombcyr + palatcombcyr.glif + palochkacyr + palochkacyr.glif + paragraph + paragraph.glif + parenleft + parenleft.glif + parenleft.case + parenleft.case.glif + parenright + parenright.glif + parenright.case + parenright.case.glif + partialdiff + partialdiff.glif + pe-cy + pe-cy.glif + pe-cy.BGR + pe-cy.B_G_R_.glif + pe-cy.SRB + pe-cy.S_R_B_.glif + pehookcyr + pehookcyr.glif + percent + percent.glif + period + period.glif + periodcentered + periodcentered.glif + perthousand + perthousand.glif + petailcyr + petailcyr.glif + pi + pi.glif + plus + plus.glif + plusminus + plusminus.glif + pokrytiecombcyr + pokrytiecombcyr.glif + product + product.glif + proportional + proportional.glif + psicyr + psicyr.glif + q + q.glif + q.ss01 + q.ss01.glif + qacyr + qacyr.glif + question + question.glif + questiondown + questiondown.glif + questiondown.case + questiondown.case.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 + radical + radical.glif + rcaron + rcaron.glif + rcommaaccent + rcommaaccent.glif + registered + registered.glif + reversedzecyr + reversedzecyr.glif + rhacyr + rhacyr.glif + ring + ring.glif + ring.case + ring.case.glif + rookblack + rookblack.glif + ruble + ruble.glif + s + s.glif + sacute + sacute.glif + scaron + scaron.glif + scedilla + scedilla.glif + schwacyr + schwacyr.glif + schwadieresiscyr + schwadieresiscyr.glif + scircumflex + scircumflex.glif + scommaaccent + scommaaccent.glif + second + second.glif + section + section.glif + semicolon + semicolon.glif + semicolon.case + semicolon.case.glif + semisoftcyr + semisoftcyr.glif + seven + seven.glif + seven.osf + seven.osf.glif + seven.tf + seven.tf.glif + sha-cy + sha-cy.glif + sha-cy.BGR + sha-cy.B_G_R_.glif + shcha-cy + shcha-cy.glif + shcha-cy.BGR + shcha-cy.B_G_R_.glif + shhacyr + shhacyr.glif + shhatailcyr + shhatailcyr.glif + shwe-cy + shwe-cy.glif + six + six.glif + six.osf + six.osf.glif + six.tf + six.tf.glif + sjekomicyr + sjekomicyr.glif + slash + slash.glif + slash.case + slash.case.glif + softsign-cy + softsign-cy.glif + softsign-cy.BGR + softsign-cy.B_G_R_.glif + softsign-cy.ss01 + softsign-cy.ss01.glif + space + space.glif + spadewhite + spadewhite.glif + sterling + sterling.glif + summation + summation.glif + t + t.glif + t.ss01 + t.ss01.glif + tbar + tbar.glif + tbar.ss01 + tbar.ss01.glif + tcaron + tcaron.glif + tcaron.ss01 + tcaron.ss01.glif + tcedilla + tcedilla.glif + tcedilla.ss01 + tcedilla.ss01.glif + tche-cy + tche-cy.glif + tcommaaccent + tcommaaccent.glif + tcommaaccent.ss01 + tcommaaccent.ss01.glif + te-cy + te-cy.glif + te-cy.BGR + te-cy.B_G_R_.glif + te-cy.SRB + te-cy.S_R_B_.glif + te-cy.ss01 + te-cy.ss01.glif + tenge + tenge.glif + tenmillionscomb-cy + tenmillionscomb-cy.glif + tetailcyr + tetailcyr.glif + tetsecyr + tetsecyr.glif + tewithmiddlehook-cy + tewithmiddlehook-cy.glif + thorn + thorn.glif + thousandmillionscomb-cy + thousandmillionscomb-cy.glif + thousandscyr + thousandscyr.glif + thousandscyr.dnom + thousandscyr.dnom.glif + three + three.glif + three.osf + three.osf.glif + three.tf + three.tf.glif + threequarters + threequarters.glif + threesuperior + threesuperior.glif + tilde + tilde.glif + tilde.case + tilde.case.glif + titlocombcyr + titlocombcyr.glif + tjekomicyr + tjekomicyr.glif + trademark + trademark.glif + tse-cy + tse-cy.glif + tse-cy.BGR + tse-cy.B_G_R_.glif + tseReversed-cy + tseR_eversed-cy.glif + tshecyr + tshecyr.glif + tsse-cy + tsse-cy.glif + tswe-cy + tswe-cy.glif + twe-cy + twe-cy.glif + two + two.glif + two.osf + two.osf.glif + two.tf + two.tf.glif + twosuperior + twosuperior.glif + u + u.glif + u-cy + u-cy.glif + u-cy.accented + u-cy.accented.glif + uacute + uacute.glif + uacutedblcyr + uacutedblcyr.glif + ubreve + ubreve.glif + ucircumflex + ucircumflex.glif + udieresis + udieresis.glif + udieresiscyr + udieresiscyr.glif + ugrave + ugrave.glif + uhungarumlaut + uhungarumlaut.glif + ukMonograph-cy + ukM_onograph-cy.glif + ukcyr + ukcyr.glif + umacron + umacron.glif + umacroncyr + umacroncyr.glif + underscore + underscore.glif + uni1C80 + uni1C_80.glif + uni1C81 + uni1C_81.glif + uni1C82 + uni1C_82.glif + uni1C83 + uni1C_83.glif + uni1C84 + uni1C_84.glif + uni1C85 + uni1C_85.glif + uni1C86 + uni1C_86.glif + uni1C87 + uni1C_87.glif + uni1C88 + uni1C_88.glif + uni1EBC + uni1E_B_C_.glif + uni1EBD + uni1E_B_D_.glif + uni2010 + uni2010.glif + uni2DEE + uni2D_E_E_.glif + uni2DEE.case + uni2D_E_E_.case.glif + uniE000 + uniE_000.glif + uniE000.alt + uniE_000.alt.glif + uniE01A + uniE_01A_.glif + uniF43A + uniF_43A_.glif + uniF43B + uniF_43B_.glif + uniF45D + uniF_45D_.glif + uniF45E + uniF_45E_.glif + uniF45F + uniF_45F_.glif + uniF475 + uniF_475.glif + uniF476 + uniF_476.glif + uniF477 + uniF_477.glif + uniF478 + uniF_478.glif + uniF479 + uniF_479.glif + uniF498 + uniF_498.glif + uniF499 + uniF_499.glif + uniF49A + uniF_49A_.glif + uniF49B + uniF_49B_.glif + uniF49C + uniF_49C_.glif + uniF49D + uniF_49D_.glif + uniF49E + uniF_49E_.glif + uniF49F + uniF_49F_.glif + uniF4C6 + uniF_4C_6.glif + uniF4C7 + uniF_4C_7.glif + uniF4CC + uniF_4C_C_.glif + uniF4CD + uniF_4C_D_.glif + uniF4D2 + uniF_4D_2.glif + uniF4D3 + uniF_4D_3.glif + uniF4D4 + uniF_4D_4.glif + uniF4D5 + uniF_4D_5.glif + uniF4D6 + uniF_4D_6.glif + uniF4D7 + uniF_4D_7.glif + uniF4D8 + uniF_4D_8.glif + uniF4D9 + uniF_4D_9.glif + uniF50E + uniF_50E_.glif + uniF50F + uniF_50F_.glif + uniF510 + uniF_510.glif + uniF511 + uniF_511.glif + uniF512 + uniF_512.glif + uniF513 + uniF_513.glif + uniF514 + uniF_514.glif + uniF515 + uniF_515.glif + uniF516 + uniF_516.glif + uniF517 + uniF_517.glif + uniF518 + uniF_518.glif + uniF519 + uniF_519.glif + uniF51A + uniF_51A_.glif + uniF51B + uniF_51B_.glif + uniF51C + uniF_51C_.glif + uniF51D + uniF_51D_.glif + uniF51E + uniF_51E_.glif + uniF51F + uniF_51F_.glif + uniF521 + uniF_521.glif + uniF522 + uniF_522.glif + uniF523 + uniF_523.glif + uniF524 + uniF_524.glif + uniF525 + uniF_525.glif + uniF526 + uniF_526.glif + uniF527 + uniF_527.glif + uniF528 + uniF_528.glif + uniF529 + uniF_529.glif + uniF52A + uniF_52A_.glif + uniF52B + uniF_52B_.glif + uniF52C + uniF_52C_.glif + uniF52D + uniF_52D_.glif + uniF52E + uniF_52E_.glif + uniF52F + uniF_52F_.glif + uniF532 + uniF_532.glif + uniF533 + uniF_533.glif + uniF536 + uniF_536.glif + uniF537 + uniF_537.glif + uniF538 + uniF_538.glif + uniF539 + uniF_539.glif + uniF830 + uniF_830.glif + uniF831 + uniF_831.glif + uniF833 + uniF_833.glif + uniF834 + uniF_834.glif + uniF839 + uniF_839.glif + uniF83A + uniF_83A_.glif + uniF86F + uniF_86F_.glif + uniF870 + uniF_870.glif + uniF872 + uniF_872.glif + uniF873 + uniF_873.glif + uniF875 + uniF_875.glif + uniF876 + uniF_876.glif + uniF878 + uniF_878.glif + uniF879 + uniF_879.glif + uniF87B + uniF_87B_.glif + uniF87C + uniF_87C_.glif + uniF87E + uniF_87E_.glif + uniF87F + uniF_87F_.glif + uogonek + uogonek.glif + uring + uring.glif + ushort-cy + ushort-cy.glif + ustraightcyr + ustraightcyr.glif + ustraightstrokecyr + ustraightstrokecyr.glif + utilde + utilde.glif + v + v.glif + ve-cy + ve-cy.glif + ve-cy.BGR + ve-cy.B_G_R_.glif + ve-cy.ss01 + ve-cy.ss01.glif + virgo + virgo.glif + vzmetcomb-cy + vzmetcomb-cy.glif + w + w.glif + wacute + wacute.glif + wcircumflex + wcircumflex.glif + wdieresis + wdieresis.glif + wecyr + wecyr.glif + wgrave + wgrave.glif + x + x.glif + xatailcyr + xatailcyr.glif + y + y.glif + yacute + yacute.glif + yaecyr + yaecyr.glif + yatIotified-cy + yatI_otified-cy.glif + yatcyr + yatcyr.glif + yatcyr.BGR + yatcyr.B_G_R_.glif + ycircumflex + ycircumflex.glif + ydieresis + ydieresis.glif + yen + yen.glif + yen.ss01 + yen.ss01.glif + yerNeutral-cy + yerN_eutral-cy.glif + yeru-cy + yeru-cy.glif + yeru-cy.accented + yeru-cy.accented.glif + yeru-cy.ss01 + yeru-cy.ss01.glif + yeruBackyer-cy + yeruB_ackyer-cy.glif + yi-cy + yi-cy.glif + yi-cy.alt + yi-cy.alt.glif + ylongdieresiscyr + ylongdieresiscyr.glif + yn-cy + yn-cy.glif + yuReversed-cy + yuR_eversed-cy.glif + yusBlended-cy + yusB_lended-cy.glif + yusClosedlittle-cy + yusC_losedlittle-cy.glif + yusbigcyr + yusbigcyr.glif + yusbigiotifiedcyr + yusbigiotifiedcyr.glif + yusbigiotifiedcyr.BGR + yusbigiotifiedcyr.B_G_R_.glif + yusiotifiedClosedLittle-cy + yusiotifiedC_losedL_ittle-cy.glif + yuslittlecyr + yuslittlecyr.glif + yuslittleiotifiedcyr + yuslittleiotifiedcyr.glif + z + z.glif + zacute + zacute.glif + zcaron + zcaron.glif + zdotaccent + zdotaccent.glif + ze-cy + ze-cy.glif + ze-cy.BGR + ze-cy.B_G_R_.glif + zedieresiscyr + zedieresiscyr.glif + zemlya-cy + zemlya-cy.glif + zero + zero.glif + zero.osf + zero.osf.glif + zero.tf + zero.tf.glif + zetailcyr + zetailcyr.glif + zetailcyr.BSH + zetailcyr.B_S_H_.glif + zhe-cy + zhe-cy.glif + zhe-cy.BGR + zhe-cy.B_G_R_.glif + zhebrevecyr + zhebrevecyr.glif + zhedieresiscyr + zhedieresiscyr.glif + zhetailcyr + zhetailcyr.glif + zhwe-cy + zhwe-cy.glif + zjekomicyr + zjekomicyr.glif + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/copyright.glif b/sources/FixelText-ExtraBold.ufo/glyphs/copyright.glif new file mode 100644 index 00000000..b8fa2b99 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/copyright.glif @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/crossedo-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/crossedo-cy.glif new file mode 100644 index 00000000..7ba64a09 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/crossedo-cy.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + com.fontlab.recipe + o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/crossedswords.glif b/sources/FixelText-ExtraBold.ufo/glyphs/crossedswords.glif new file mode 100644 index 00000000..3dba7209 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/crossedswords.glif @@ -0,0 +1,103 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/currency.glif b/sources/FixelText-ExtraBold.ufo/glyphs/currency.glif new file mode 100644 index 00000000..ecd7a129 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/currency.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/d.glif b/sources/FixelText-ExtraBold.ufo/glyphs/d.glif new file mode 100644 index 00000000..474507a8 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/d.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/d.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/d.ss01.glif new file mode 100644 index 00000000..e64fa69c --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/d.ss01.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/dagger.glif b/sources/FixelText-ExtraBold.ufo/glyphs/dagger.glif new file mode 100644 index 00000000..107d816f --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/dagger.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/daggerdbl.glif b/sources/FixelText-ExtraBold.ufo/glyphs/daggerdbl.glif new file mode 100644 index 00000000..3c9b5835 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/daggerdbl.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/dcaron.glif b/sources/FixelText-ExtraBold.ufo/glyphs/dcaron.glif new file mode 100644 index 00000000..6c81bd27 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/dcaron.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + d+caron.salt + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/dcaron.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/dcaron.ss01.glif new file mode 100644 index 00000000..595d7709 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/dcaron.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + d.ss01+caron.salt + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/dchecyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/dchecyr.glif new file mode 100644 index 00000000..fd23240c --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/dchecyr.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + д+10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/dcroat.glif b/sources/FixelText-ExtraBold.ufo/glyphs/dcroat.glif new file mode 100644 index 00000000..a0cac6b4 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/dcroat.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + d + com.fontlab.metricsRight + |hbar + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/dcroat.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/dcroat.ss01.glif new file mode 100644 index 00000000..1b78399e --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/dcroat.ss01.glif @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + d.ss01 + com.fontlab.metricsRight + |hbar + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/de-cy.B_G_R_.glif b/sources/FixelText-ExtraBold.ufo/glyphs/de-cy.B_G_R_.glif new file mode 100644 index 00000000..d18cf0e6 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/de-cy.B_G_R_.glif @@ -0,0 +1,77 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + q + com.fontlab.metricsRight + q + com.fontlab.recipe + uni1C81 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/de-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/de-cy.glif new file mode 100644 index 00000000..f0989569 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/de-cy.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/de-cy.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/de-cy.ss01.glif new file mode 100644 index 00000000..4bf4af62 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/de-cy.ss01.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/deS_oft-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/deS_oft-cy.glif new file mode 100644 index 00000000..9e9fc8a2 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/deS_oft-cy.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + д + com.fontlab.metricsRight + ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/degree.glif b/sources/FixelText-ExtraBold.ufo/glyphs/degree.glif new file mode 100644 index 00000000..f7495682 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/degree.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/dekomicyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/dekomicyr.glif new file mode 100644 index 00000000..38fcdef7 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/dekomicyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + d + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/diamondwhite-misc.glif b/sources/FixelText-ExtraBold.ufo/glyphs/diamondwhite-misc.glif new file mode 100644 index 00000000..0b90f153 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/diamondwhite-misc.glif @@ -0,0 +1,145 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =32 + com.fontlab.metricsRight + =32 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/dieresis.alt.glif b/sources/FixelText-ExtraBold.ufo/glyphs/dieresis.alt.glif new file mode 100644 index 00000000..67932e6f --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/dieresis.alt.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 1,0.6,0.994,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/dieresis.case.glif b/sources/FixelText-ExtraBold.ufo/glyphs/dieresis.case.glif new file mode 100644 index 00000000..af16cc42 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/dieresis.case.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/dieresis.glif b/sources/FixelText-ExtraBold.ufo/glyphs/dieresis.glif new file mode 100644 index 00000000..ae1055b7 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/dieresis.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/dieresisacute.glif b/sources/FixelText-ExtraBold.ufo/glyphs/dieresisacute.glif new file mode 100644 index 00000000..2e982f5f --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/dieresisacute.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/dieresiscase.alt.glif b/sources/FixelText-ExtraBold.ufo/glyphs/dieresiscase.alt.glif new file mode 100644 index 00000000..d4fa50a2 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/dieresiscase.alt.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 1,0.6,0.994,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/divide.glif b/sources/FixelText-ExtraBold.ufo/glyphs/divide.glif new file mode 100644 index 00000000..d1964a33 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/divide.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/djecyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/djecyr.glif new file mode 100644 index 00000000..df25f2a8 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/djecyr.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hbar + com.fontlab.metricsRight + h + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/djekomicyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/djekomicyr.glif new file mode 100644 index 00000000..8f3dcf2a --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/djekomicyr.glif @@ -0,0 +1,73 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + d + com.fontlab.metricsRight + njekomicyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/djerv-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/djerv-cy.glif new file mode 100644 index 00000000..8543a797 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/djerv-cy.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + r() + com.fontlab.metricsRight + п-30 + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/dollar.glif b/sources/FixelText-ExtraBold.ufo/glyphs/dollar.glif new file mode 100644 index 00000000..26df7a8b --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/dollar.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + S + com.fontlab.metricsRight + S + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/dotaccent.case.glif b/sources/FixelText-ExtraBold.ufo/glyphs/dotaccent.case.glif new file mode 100644 index 00000000..dcbbda70 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/dotaccent.case.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/dotaccent.glif b/sources/FixelText-ExtraBold.ufo/glyphs/dotaccent.glif new file mode 100644 index 00000000..1694d513 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/dotaccent.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/doubleo-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/doubleo-cy.glif new file mode 100644 index 00000000..4c73ac26 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/doubleo-cy.glif @@ -0,0 +1,91 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + com.fontlab.recipe + o_o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/dramsignarmn.glif b/sources/FixelText-ExtraBold.ufo/glyphs/dramsignarmn.glif new file mode 100644 index 00000000..06e5ef35 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/dramsignarmn.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/dwe-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/dwe-cy.glif new file mode 100644 index 00000000..70d23373 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/dwe-cy.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + д + com.fontlab.metricsRight + д + com.fontlab.recipe + д + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/dze-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/dze-cy.glif new file mode 100644 index 00000000..5aad7301 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/dze-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + s + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/dzeR_eversed-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/dzeR_eversed-cy.glif new file mode 100644 index 00000000..1247cd5f --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/dzeR_eversed-cy.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |s + com.fontlab.metricsRight + |s + com.fontlab.recipe + s + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/dzeabkhcyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/dzeabkhcyr.glif new file mode 100644 index 00000000..c6e55830 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/dzeabkhcyr.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + z-30 + com.fontlab.metricsRight + з-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/dzelo-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/dzelo-cy.glif new file mode 100644 index 00000000..4cb78697 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/dzelo-cy.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/dzhecyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/dzhecyr.glif new file mode 100644 index 00000000..de3a1950 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/dzhecyr.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/dzjekomicyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/dzjekomicyr.glif new file mode 100644 index 00000000..dc561adf --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/dzjekomicyr.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + zjekomicyr + com.fontlab.metricsRight + ц-5 + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/dzwe-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/dzwe-cy.glif new file mode 100644 index 00000000..ede91d1f --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/dzwe-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + s + com.fontlab.metricsRight + s + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/dzze-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/dzze-cy.glif new file mode 100644 index 00000000..c6df4649 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/dzze-cy.glif @@ -0,0 +1,84 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + д + com.fontlab.metricsRight + д-30 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/dzzhecyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/dzzhecyr.glif new file mode 100644 index 00000000..91ed8c72 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/dzzhecyr.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + д+5 + com.fontlab.metricsRight + ж+5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/e-cy.accented.glif b/sources/FixelText-ExtraBold.ufo/glyphs/e-cy.accented.glif new file mode 100644 index 00000000..9077a803 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/e-cy.accented.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+acute + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/e-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/e-cy.glif new file mode 100644 index 00000000..35077ef2 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/e-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + c + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/e-cy.hist.glif b/sources/FixelText-ExtraBold.ufo/glyphs/e-cy.hist.glif new file mode 100644 index 00000000..234fb54b --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/e-cy.hist.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + c + com.fontlab.recipe + uni1C83 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/e.glif b/sources/FixelText-ExtraBold.ufo/glyphs/e.glif new file mode 100644 index 00000000..7cf14355 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/e.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/e.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/e.ss01.glif new file mode 100644 index 00000000..c94df080 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/e.ss01.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + O-5 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/eacute.glif b/sources/FixelText-ExtraBold.ufo/glyphs/eacute.glif new file mode 100644 index 00000000..689adf7d --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/eacute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+acute + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/eacute.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/eacute.ss01.glif new file mode 100644 index 00000000..853cc029 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/eacute.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+acute + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/ebreve.glif b/sources/FixelText-ExtraBold.ufo/glyphs/ebreve.glif new file mode 100644 index 00000000..4afd987f --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/ebreve.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+breve + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/ebreve.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/ebreve.ss01.glif new file mode 100644 index 00000000..0626b521 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/ebreve.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+breve + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/ecaron.glif b/sources/FixelText-ExtraBold.ufo/glyphs/ecaron.glif new file mode 100644 index 00000000..8da4029f --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/ecaron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+caron + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/ecaron.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/ecaron.ss01.glif new file mode 100644 index 00000000..35da3e78 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/ecaron.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+caron + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/ecircumflex.glif b/sources/FixelText-ExtraBold.ufo/glyphs/ecircumflex.glif new file mode 100644 index 00000000..91d22eed --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/ecircumflex.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+circumflex + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/ecircumflex.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/ecircumflex.ss01.glif new file mode 100644 index 00000000..6c16741d --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/ecircumflex.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+circumflex + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/edieresis.glif b/sources/FixelText-ExtraBold.ufo/glyphs/edieresis.glif new file mode 100644 index 00000000..f57ecc0a --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/edieresis.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsLeft + e + com.fontlab.metricsRight + e + com.fontlab.recipe + e+dieresis + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/edieresis.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/edieresis.ss01.glif new file mode 100644 index 00000000..6fe61f6b --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/edieresis.ss01.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsLeft + e + com.fontlab.metricsRight + e + com.fontlab.recipe + e.ss01+dieresis + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/edotaccent.glif b/sources/FixelText-ExtraBold.ufo/glyphs/edotaccent.glif new file mode 100644 index 00000000..63471735 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/edotaccent.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+dotaccent + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/edotaccent.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/edotaccent.ss01.glif new file mode 100644 index 00000000..c1676326 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/edotaccent.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+dotaccent + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/ef-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/ef-cy.glif new file mode 100644 index 00000000..6fb2185f --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/ef-cy.glif @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/egrave.glif b/sources/FixelText-ExtraBold.ufo/glyphs/egrave.glif new file mode 100644 index 00000000..a644cd1d --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/egrave.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+grave + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/egrave.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/egrave.ss01.glif new file mode 100644 index 00000000..8a128030 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/egrave.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+grave + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/eight.glif b/sources/FixelText-ExtraBold.ufo/glyphs/eight.glif new file mode 100644 index 00000000..83639a18 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/eight.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/eight.osf.glif b/sources/FixelText-ExtraBold.ufo/glyphs/eight.osf.glif new file mode 100644 index 00000000..a2620785 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/eight.osf.glif @@ -0,0 +1,15 @@ + + + + + + + + + com.fontlab.metricsLeft + eight + com.fontlab.metricsRight + eight + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/eight.tf.glif b/sources/FixelText-ExtraBold.ufo/glyphs/eight.tf.glif new file mode 100644 index 00000000..a598491f --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/eight.tf.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/eiotifiedcyr.B_G_R_.glif b/sources/FixelText-ExtraBold.ufo/glyphs/eiotifiedcyr.B_G_R_.glif new file mode 100644 index 00000000..7bc522f2 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/eiotifiedcyr.B_G_R_.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + c + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/eiotifiedcyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/eiotifiedcyr.glif new file mode 100644 index 00000000..851a6b5a --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/eiotifiedcyr.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + c + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/el-cy.B_G_R_.glif b/sources/FixelText-ExtraBold.ufo/glyphs/el-cy.B_G_R_.glif new file mode 100644 index 00000000..76dd967e --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/el-cy.B_G_R_.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + v + com.fontlab.metricsRight + v + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/el-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/el-cy.glif new file mode 100644 index 00000000..5c2083f2 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/el-cy.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/el-cy.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/el-cy.ss01.glif new file mode 100644 index 00000000..4f7cfd3f --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/el-cy.ss01.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/elS_oft-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/elS_oft-cy.glif new file mode 100644 index 00000000..d2b93594 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/elS_oft-cy.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/elhookcyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/elhookcyr.glif new file mode 100644 index 00000000..68fb7ad6 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/elhookcyr.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + н + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/ellipsis.glif b/sources/FixelText-ExtraBold.ufo/glyphs/ellipsis.glif new file mode 100644 index 00000000..d63889cd --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/ellipsis.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/elmiddlehookcyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/elmiddlehookcyr.glif new file mode 100644 index 00000000..03c4907c --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/elmiddlehookcyr.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + enmiddlehookcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/elsharptailcyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/elsharptailcyr.glif new file mode 100644 index 00000000..ddb87d61 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/elsharptailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + ensharptailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/eltailcyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/eltailcyr.glif new file mode 100644 index 00000000..a424fa25 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/eltailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/em-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/em-cy.glif new file mode 100644 index 00000000..1dcbb7ff --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/em-cy.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/emS_oft-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/emS_oft-cy.glif new file mode 100644 index 00000000..01b6b12e --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/emS_oft-cy.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + м + com.fontlab.metricsRight + ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/emacron.glif b/sources/FixelText-ExtraBold.ufo/glyphs/emacron.glif new file mode 100644 index 00000000..06e868f8 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/emacron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+macron + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/emacron.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/emacron.ss01.glif new file mode 100644 index 00000000..047847bb --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/emacron.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+macron + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/emdash.case.glif b/sources/FixelText-ExtraBold.ufo/glyphs/emdash.case.glif new file mode 100644 index 00000000..53fc0f46 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/emdash.case.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/emdash.glif b/sources/FixelText-ExtraBold.ufo/glyphs/emdash.glif new file mode 100644 index 00000000..5ed13080 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/emdash.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/emsharptailcyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/emsharptailcyr.glif new file mode 100644 index 00000000..1082e048 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/emsharptailcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + м + com.fontlab.metricsRight + ensharptailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/en-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/en-cy.glif new file mode 100644 index 00000000..d724e4fa --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/en-cy.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/enclosingcirclecomb.glif b/sources/FixelText-ExtraBold.ufo/glyphs/enclosingcirclecomb.glif new file mode 100644 index 00000000..726443da --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/enclosingcirclecomb.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/endash.case.glif b/sources/FixelText-ExtraBold.ufo/glyphs/endash.case.glif new file mode 100644 index 00000000..aacf4c26 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/endash.case.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/endash.glif b/sources/FixelText-ExtraBold.ufo/glyphs/endash.glif new file mode 100644 index 00000000..9d8e1b50 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/endash.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/eng.glif b/sources/FixelText-ExtraBold.ufo/glyphs/eng.glif new file mode 100644 index 00000000..c2c83c53 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/eng.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + n + com.fontlab.metricsRight + dotlessj + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/engecyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/engecyr.glif new file mode 100644 index 00000000..c2512d29 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/engecyr.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/enhookcyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/enhookcyr.glif new file mode 100644 index 00000000..dc47a722 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/enhookcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/enhookleftcyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/enhookleftcyr.glif new file mode 100644 index 00000000..5f749296 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/enhookleftcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + j + com.fontlab.metricsRight + н + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/enmiddlehookcyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/enmiddlehookcyr.glif new file mode 100644 index 00000000..f29594aa --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/enmiddlehookcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + softsign-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/ensharptailcyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/ensharptailcyr.glif new file mode 100644 index 00000000..e9ee0e0e --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/ensharptailcyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + д + com.fontlab.recipe + entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/entailcyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/entailcyr.glif new file mode 100644 index 00000000..45e2245e --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/entailcyr.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + ц + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/eogonek.glif b/sources/FixelText-ExtraBold.ufo/glyphs/eogonek.glif new file mode 100644 index 00000000..489d702c --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/eogonek.glif @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + e+ogonek + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/eogonek.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/eogonek.ss01.glif new file mode 100644 index 00000000..c32cf585 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/eogonek.ss01.glif @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + e.ss01+ogonek + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/equal.glif b/sources/FixelText-ExtraBold.ufo/glyphs/equal.glif new file mode 100644 index 00000000..0a39a594 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/equal.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/er-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/er-cy.glif new file mode 100644 index 00000000..9368af59 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/er-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + p + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/er-cy.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/er-cy.ss01.glif new file mode 100644 index 00000000..cc43489e --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/er-cy.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + p.ss01 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/ereversed-cy.accented.glif b/sources/FixelText-ExtraBold.ufo/glyphs/ereversed-cy.accented.glif new file mode 100644 index 00000000..5cb431d9 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/ereversed-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + э+acute + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/ereversed-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/ereversed-cy.glif new file mode 100644 index 00000000..e38bab33 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/ereversed-cy.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |c + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/ereverseddieresiscyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/ereverseddieresiscyr.glif new file mode 100644 index 00000000..5ef8dd8d --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/ereverseddieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ereversed-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/ertickcyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/ertickcyr.glif new file mode 100644 index 00000000..0a915ae4 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/ertickcyr.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + p + com.fontlab.metricsRight + p + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/es-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/es-cy.glif new file mode 100644 index 00000000..08265d40 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/es-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/estailcyr.B_S_H_.glif b/sources/FixelText-ExtraBold.ufo/glyphs/estailcyr.B_S_H_.glif new file mode 100644 index 00000000..1a15f03b --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/estailcyr.B_S_H_.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + c + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/estailcyr.C_H_U_.glif b/sources/FixelText-ExtraBold.ufo/glyphs/estailcyr.C_H_U_.glif new file mode 100644 index 00000000..de1b0d0a --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/estailcyr.C_H_U_.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+cedilla + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/estailcyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/estailcyr.glif new file mode 100644 index 00000000..5483061f --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/estailcyr.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + с + com.fontlab.metricsRight + с + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/estimated.glif b/sources/FixelText-ExtraBold.ufo/glyphs/estimated.glif new file mode 100644 index 00000000..5a4f7512 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/estimated.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/eth.glif b/sources/FixelText-ExtraBold.ufo/glyphs/eth.glif new file mode 100644 index 00000000..f57b148a --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/eth.glif @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/eturned.glif b/sources/FixelText-ExtraBold.ufo/glyphs/eturned.glif new file mode 100644 index 00000000..00da92f6 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/eturned.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + schwacyr + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/euro.glif b/sources/FixelText-ExtraBold.ufo/glyphs/euro.glif new file mode 100644 index 00000000..e7868a70 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/euro.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + C + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/exclam.glif b/sources/FixelText-ExtraBold.ufo/glyphs/exclam.glif new file mode 100644 index 00000000..8a502be6 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/exclam.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/exclamdown.case.glif b/sources/FixelText-ExtraBold.ufo/glyphs/exclamdown.case.glif new file mode 100644 index 00000000..99b712f7 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/exclamdown.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + exclamdown + com.fontlab.metricsRight + exclamdown + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/exclamdown.glif b/sources/FixelText-ExtraBold.ufo/glyphs/exclamdown.glif new file mode 100644 index 00000000..9518e2ab --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/exclamdown.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/f.glif b/sources/FixelText-ExtraBold.ufo/glyphs/f.glif new file mode 100644 index 00000000..d6b1b91b --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/f.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/f.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/f.ss01.glif new file mode 100644 index 00000000..883f418d --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/f.ss01.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/f_f.glif b/sources/FixelText-ExtraBold.ufo/glyphs/f_f.glif new file mode 100644 index 00000000..0e1c6363 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/f_f.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f + com.fontlab.metricsRight + f + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/f_f.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/f_f.ss01.glif new file mode 100644 index 00000000..6ccc8c4e --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/f_f.ss01.glif @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f.ss01 + com.fontlab.metricsRight + f.ss01 + com.fontlab.recipe + f.ss01_f.ss01 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/f_f_i.glif b/sources/FixelText-ExtraBold.ufo/glyphs/f_f_i.glif new file mode 100644 index 00000000..4ea419bb --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/f_f_i.glif @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f + com.fontlab.metricsRight + i + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/f_f_i.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/f_f_i.ss01.glif new file mode 100644 index 00000000..a00854dd --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/f_f_i.ss01.glif @@ -0,0 +1,88 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f.ss01 + com.fontlab.metricsRight + i + com.fontlab.recipe + f.ss01_f.ss01_i + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/f_f_l.glif b/sources/FixelText-ExtraBold.ufo/glyphs/f_f_l.glif new file mode 100644 index 00000000..f434b3f2 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/f_f_l.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f + com.fontlab.metricsRight + l + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/f_f_l.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/f_f_l.ss01.glif new file mode 100644 index 00000000..06d7330c --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/f_f_l.ss01.glif @@ -0,0 +1,86 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f.ss01 + com.fontlab.metricsRight + l.ss01 + com.fontlab.recipe + f.ss01_f.ss01_l.ss01 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/fi.glif b/sources/FixelText-ExtraBold.ufo/glyphs/fi.glif new file mode 100644 index 00000000..f233bc6c --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/fi.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f + com.fontlab.metricsRight + i + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/fi.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/fi.ss01.glif new file mode 100644 index 00000000..2b5381c7 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/fi.ss01.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f.ss01 + com.fontlab.metricsRight + i + com.fontlab.recipe + f.ss01_i + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/fitacyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/fitacyr.glif new file mode 100644 index 00000000..4aaaff75 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/fitacyr.glif @@ -0,0 +1,76 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + obarcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/five.glif b/sources/FixelText-ExtraBold.ufo/glyphs/five.glif new file mode 100644 index 00000000..95c08513 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/five.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/five.osf.glif b/sources/FixelText-ExtraBold.ufo/glyphs/five.osf.glif new file mode 100644 index 00000000..2e7249b4 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/five.osf.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + five + com.fontlab.metricsRight + five + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/five.tf.glif b/sources/FixelText-ExtraBold.ufo/glyphs/five.tf.glif new file mode 100644 index 00000000..ec0623da --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/five.tf.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/fl.glif b/sources/FixelText-ExtraBold.ufo/glyphs/fl.glif new file mode 100644 index 00000000..72ed61b2 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/fl.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f + com.fontlab.metricsRight + l + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/fl.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/fl.ss01.glif new file mode 100644 index 00000000..110644d6 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/fl.ss01.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f.ss01 + com.fontlab.metricsRight + l.ss01 + com.fontlab.recipe + f.ss01_l.ss01 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/floretteblack.glif b/sources/FixelText-ExtraBold.ufo/glyphs/floretteblack.glif new file mode 100644 index 00000000..350f62cc --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/floretteblack.glif @@ -0,0 +1,522 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/floretteoutlinedpetalledblackeight.glif b/sources/FixelText-ExtraBold.ufo/glyphs/floretteoutlinedpetalledblackeight.glif new file mode 100644 index 00000000..01cc963a --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/floretteoutlinedpetalledblackeight.glif @@ -0,0 +1,693 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/florettewhite.glif b/sources/FixelText-ExtraBold.ufo/glyphs/florettewhite.glif new file mode 100644 index 00000000..c7093263 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/florettewhite.glif @@ -0,0 +1,417 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/florin.glif b/sources/FixelText-ExtraBold.ufo/glyphs/florin.glif new file mode 100644 index 00000000..13d46cec --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/florin.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/flower.glif b/sources/FixelText-ExtraBold.ufo/glyphs/flower.glif new file mode 100644 index 00000000..00a5f309 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/flower.glif @@ -0,0 +1,278 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/four.glif b/sources/FixelText-ExtraBold.ufo/glyphs/four.glif new file mode 100644 index 00000000..8b82a4d0 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/four.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/four.osf.glif b/sources/FixelText-ExtraBold.ufo/glyphs/four.osf.glif new file mode 100644 index 00000000..1bc195dc --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/four.osf.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + four + com.fontlab.metricsRight + four + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/four.tf.glif b/sources/FixelText-ExtraBold.ufo/glyphs/four.tf.glif new file mode 100644 index 00000000..23fb8e95 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/four.tf.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/fraction.glif b/sources/FixelText-ExtraBold.ufo/glyphs/fraction.glif new file mode 100644 index 00000000..e8069d25 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/fraction.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/g.glif b/sources/FixelText-ExtraBold.ufo/glyphs/g.glif new file mode 100644 index 00000000..0963df68 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/g.glif @@ -0,0 +1,94 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/g.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/g.ss01.glif new file mode 100644 index 00000000..0a8132ff --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/g.ss01.glif @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/gacute.glif b/sources/FixelText-ExtraBold.ufo/glyphs/gacute.glif new file mode 100644 index 00000000..63a4b71a --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/gacute.glif @@ -0,0 +1,109 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + g+acute + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/gacute.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/gacute.ss01.glif new file mode 100644 index 00000000..5318178e --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/gacute.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + g.ss01+acute + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/gbreve.glif b/sources/FixelText-ExtraBold.ufo/glyphs/gbreve.glif new file mode 100644 index 00000000..774894dd --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/gbreve.glif @@ -0,0 +1,119 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + g+breve + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/gbreve.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/gbreve.ss01.glif new file mode 100644 index 00000000..29570156 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/gbreve.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + g.ss01+breve + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/gcircumflex.glif b/sources/FixelText-ExtraBold.ufo/glyphs/gcircumflex.glif new file mode 100644 index 00000000..822a08ed --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/gcircumflex.glif @@ -0,0 +1,113 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + g+circumflex + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/gcircumflex.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/gcircumflex.ss01.glif new file mode 100644 index 00000000..716fe05c --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/gcircumflex.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + g.ss01+circumflex + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/gcommaaccent.glif b/sources/FixelText-ExtraBold.ufo/glyphs/gcommaaccent.glif new file mode 100644 index 00000000..db0cb1bf --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/gcommaaccent.glif @@ -0,0 +1,121 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + g+commaaccentcomb.salt + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/gcommaaccent.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/gcommaaccent.ss01.glif new file mode 100644 index 00000000..554b0d2a --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/gcommaaccent.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + g.ss01+commaaccentcomb.salt + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/gdotaccent.glif b/sources/FixelText-ExtraBold.ufo/glyphs/gdotaccent.glif new file mode 100644 index 00000000..2652328b --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/gdotaccent.glif @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + g+dotaccent + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/gdotaccent.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/gdotaccent.ss01.glif new file mode 100644 index 00000000..6c49ec5c --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/gdotaccent.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + g.ss01+dotaccent + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/ge-cy.B_G_R_.glif b/sources/FixelText-ExtraBold.ufo/glyphs/ge-cy.B_G_R_.glif new file mode 100644 index 00000000..17a59f95 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/ge-cy.B_G_R_.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |s+5 + com.fontlab.metricsRight + |s+5 + com.fontlab.recipe + dzeReversed-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/ge-cy.S_R_B_.glif b/sources/FixelText-ExtraBold.ufo/glyphs/ge-cy.S_R_B_.glif new file mode 100644 index 00000000..2045b607 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/ge-cy.S_R_B_.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + iota-cy+macron + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/ge-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/ge-cy.glif new file mode 100644 index 00000000..71197d1f --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/ge-cy.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + т + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/gehookcyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/gehookcyr.glif new file mode 100644 index 00000000..dd9fc651 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/gehookcyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + г + com.fontlab.metricsRight + enmiddlehookcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/gehookstrokecyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/gehookstrokecyr.glif new file mode 100644 index 00000000..da2596a3 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/gehookstrokecyr.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + gestrokecyr + com.fontlab.metricsRight + gestrokecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/germandbls.glif b/sources/FixelText-ExtraBold.ufo/glyphs/germandbls.glif new file mode 100644 index 00000000..aa74cf31 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/germandbls.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + h-5 + com.fontlab.metricsRight + з + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/germandbls.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/germandbls.ss01.glif new file mode 100644 index 00000000..79b0ea59 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/germandbls.ss01.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f.ss01 + com.fontlab.metricsRight + з + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/gestrokecyr.B_S_H_.glif b/sources/FixelText-ExtraBold.ufo/glyphs/gestrokecyr.B_S_H_.glif new file mode 100644 index 00000000..93657ed8 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/gestrokecyr.B_S_H_.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + г + com.fontlab.metricsRight + gestrokecyr + com.fontlab.recipe + gestrokecyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/gestrokecyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/gestrokecyr.glif new file mode 100644 index 00000000..cab06855 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/gestrokecyr.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + г + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/getailcyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/getailcyr.glif new file mode 100644 index 00000000..353ada12 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/getailcyr.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + г + com.fontlab.metricsRight + г + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/gheupturn-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/gheupturn-cy.glif new file mode 100644 index 00000000..1642a4b2 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/gheupturn-cy.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + г + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/gjecyr.S_R_B_.glif b/sources/FixelText-ExtraBold.ufo/glyphs/gjecyr.S_R_B_.glif new file mode 100644 index 00000000..a4269394 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/gjecyr.S_R_B_.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + iota-cy+macronacute.SRB + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/gjecyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/gjecyr.glif new file mode 100644 index 00000000..0baf8687 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/gjecyr.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/grave.case.glif b/sources/FixelText-ExtraBold.ufo/glyphs/grave.case.glif new file mode 100644 index 00000000..51adba49 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/grave.case.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/grave.glif b/sources/FixelText-ExtraBold.ufo/glyphs/grave.glif new file mode 100644 index 00000000..d2d5d5b5 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/grave.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/greater.glif b/sources/FixelText-ExtraBold.ufo/glyphs/greater.glif new file mode 100644 index 00000000..5597df3c --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/greater.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |less + com.fontlab.metricsRight + |less + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/greaterequal.glif b/sources/FixelText-ExtraBold.ufo/glyphs/greaterequal.glif new file mode 100644 index 00000000..e077c264 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/greaterequal.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/guillemetleft.case.glif b/sources/FixelText-ExtraBold.ufo/glyphs/guillemetleft.case.glif new file mode 100644 index 00000000..55a84d5f --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/guillemetleft.case.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + guilsinglleft + com.fontlab.metricsRight + guilsinglleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/guillemetleft.glif b/sources/FixelText-ExtraBold.ufo/glyphs/guillemetleft.glif new file mode 100644 index 00000000..dd092f52 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/guillemetleft.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + guilsinglleft + com.fontlab.metricsRight + guilsinglleft + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/guillemetright.case.glif b/sources/FixelText-ExtraBold.ufo/glyphs/guillemetright.case.glif new file mode 100644 index 00000000..b7812709 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/guillemetright.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |guillemetleft.case + com.fontlab.metricsRight + |guillemetleft.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/guillemetright.glif b/sources/FixelText-ExtraBold.ufo/glyphs/guillemetright.glif new file mode 100644 index 00000000..614f2c76 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/guillemetright.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |guilsinglleft + com.fontlab.metricsRight + |guilsinglleft + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/guilsinglleft.case.glif b/sources/FixelText-ExtraBold.ufo/glyphs/guilsinglleft.case.glif new file mode 100644 index 00000000..418ce3fb --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/guilsinglleft.case.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/guilsinglleft.glif b/sources/FixelText-ExtraBold.ufo/glyphs/guilsinglleft.glif new file mode 100644 index 00000000..42493fd9 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/guilsinglleft.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/guilsinglright.case.glif b/sources/FixelText-ExtraBold.ufo/glyphs/guilsinglright.case.glif new file mode 100644 index 00000000..18888e60 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/guilsinglright.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |guilsinglleft + com.fontlab.metricsRight + |guilsinglleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/guilsinglright.glif b/sources/FixelText-ExtraBold.ufo/glyphs/guilsinglright.glif new file mode 100644 index 00000000..e412aacd --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/guilsinglright.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + |guilsinglleft + com.fontlab.metricsRight + |guilsinglleft + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/h.glif b/sources/FixelText-ExtraBold.ufo/glyphs/h.glif new file mode 100644 index 00000000..05eab699 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/h.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + com.fontlab.metricsRight + n + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/ha-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/ha-cy.glif new file mode 100644 index 00000000..f19dba59 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/ha-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + x + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/haabkhcyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/haabkhcyr.glif new file mode 100644 index 00000000..6c298ed5 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/haabkhcyr.glif @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + |o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/hahookcyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/hahookcyr.glif new file mode 100644 index 00000000..c74e69f1 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/hahookcyr.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + x + com.fontlab.metricsRight + x + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/hardsign-cy.B_G_R_.glif b/sources/FixelText-ExtraBold.ufo/glyphs/hardsign-cy.B_G_R_.glif new file mode 100644 index 00000000..75cb0e59 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/hardsign-cy.B_G_R_.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/hardsign-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/hardsign-cy.glif new file mode 100644 index 00000000..6c6d9410 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/hardsign-cy.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/hardsign-cy.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/hardsign-cy.ss01.glif new file mode 100644 index 00000000..8dd7c004 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/hardsign-cy.ss01.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/hastrokecyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/hastrokecyr.glif new file mode 100644 index 00000000..0dcec8e6 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/hastrokecyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + x + com.fontlab.metricsRight + x + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/hbar.glif b/sources/FixelText-ExtraBold.ufo/glyphs/hbar.glif new file mode 100644 index 00000000..18ba0f6c --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/hbar.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + h + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/hcircumflex.glif b/sources/FixelText-ExtraBold.ufo/glyphs/hcircumflex.glif new file mode 100644 index 00000000..d1d23518 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/hcircumflex.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + h+circumflex.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/heart.glif b/sources/FixelText-ExtraBold.ufo/glyphs/heart.glif new file mode 100644 index 00000000..6e3c32dd --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/heart.glif @@ -0,0 +1,320 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/heartwhite.glif b/sources/FixelText-ExtraBold.ufo/glyphs/heartwhite.glif new file mode 100644 index 00000000..9e65d060 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/heartwhite.glif @@ -0,0 +1,189 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =46 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/hryvnia.glif b/sources/FixelText-ExtraBold.ufo/glyphs/hryvnia.glif new file mode 100644 index 00000000..bd7b9506 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/hryvnia.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/hundredmillionscomb-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/hundredmillionscomb-cy.glif new file mode 100644 index 00000000..1c5f2a6e --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/hundredmillionscomb-cy.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/hundredthousandscombcyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/hundredthousandscombcyr.glif new file mode 100644 index 00000000..335f859a --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/hundredthousandscombcyr.glif @@ -0,0 +1,141 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/hungarumlaut.case.glif b/sources/FixelText-ExtraBold.ufo/glyphs/hungarumlaut.case.glif new file mode 100644 index 00000000..7d459286 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/hungarumlaut.case.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/hungarumlaut.glif b/sources/FixelText-ExtraBold.ufo/glyphs/hungarumlaut.glif new file mode 100644 index 00000000..85eed4d3 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/hungarumlaut.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/hwe-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/hwe-cy.glif new file mode 100644 index 00000000..9e39f889 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/hwe-cy.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + h + com.fontlab.metricsRight + h + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/hyphen.case.glif b/sources/FixelText-ExtraBold.ufo/glyphs/hyphen.case.glif new file mode 100644 index 00000000..2022cb4c --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/hyphen.case.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.metricsLeft + hyphen + com.fontlab.metricsRight + hyphen + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/hyphen.glif b/sources/FixelText-ExtraBold.ufo/glyphs/hyphen.glif new file mode 100644 index 00000000..9f3771fd --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/hyphen.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/i-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/i-cy.glif new file mode 100644 index 00000000..b544d2da --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/i-cy.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + i + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/i.glif b/sources/FixelText-ExtraBold.ufo/glyphs/i.glif new file mode 100644 index 00000000..72f5e3b7 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/i.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + dotlessi+dotaccent + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/ia-cy.accented.glif b/sources/FixelText-ExtraBold.ufo/glyphs/ia-cy.accented.glif new file mode 100644 index 00000000..e3671375 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/ia-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + я+acute + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/ia-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/ia-cy.glif new file mode 100644 index 00000000..9868390a --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/ia-cy.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/ia-cy.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/ia-cy.ss01.glif new file mode 100644 index 00000000..57a8f4ff --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/ia-cy.ss01.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/iacute.glif b/sources/FixelText-ExtraBold.ufo/glyphs/iacute.glif new file mode 100644 index 00000000..73ba9ae1 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/iacute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + dotlessi+acute + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/ibreve.glif b/sources/FixelText-ExtraBold.ufo/glyphs/ibreve.glif new file mode 100644 index 00000000..e0be06bb --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/ibreve.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + dotlessi+breve + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/icircumflex.glif b/sources/FixelText-ExtraBold.ufo/glyphs/icircumflex.glif new file mode 100644 index 00000000..bb9a74de --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/icircumflex.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + dotlessi+circumflex + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/idieresis.glif b/sources/FixelText-ExtraBold.ufo/glyphs/idieresis.glif new file mode 100644 index 00000000..e3044f12 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/idieresis.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + idotless+dieresis.alt + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/idieresiscyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/idieresiscyr.glif new file mode 100644 index 00000000..55e48dd9 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/idieresiscyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ii-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/idotless.glif b/sources/FixelText-ExtraBold.ufo/glyphs/idotless.glif new file mode 100644 index 00000000..fc64dfaa --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/idotless.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/ie-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/ie-cy.glif new file mode 100644 index 00000000..f1d361b2 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/ie-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/ie-cy.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/ie-cy.ss01.glif new file mode 100644 index 00000000..8156b87b --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/ie-cy.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/iebrevecyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/iebrevecyr.glif new file mode 100644 index 00000000..6610eb6d --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/iebrevecyr.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+breve + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/iegravecyr.S_R_B_.glif b/sources/FixelText-ExtraBold.ufo/glyphs/iegravecyr.S_R_B_.glif new file mode 100644 index 00000000..2b438f96 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/iegravecyr.S_R_B_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+grave + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/iegravecyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/iegravecyr.glif new file mode 100644 index 00000000..b169aad5 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/iegravecyr.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+grave + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/igrave.glif b/sources/FixelText-ExtraBold.ufo/glyphs/igrave.glif new file mode 100644 index 00000000..bd945393 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/igrave.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + dotlessi+grave + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/igravecyr.S_R_B_.glif b/sources/FixelText-ExtraBold.ufo/glyphs/igravecyr.S_R_B_.glif new file mode 100644 index 00000000..c76d7566 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/igravecyr.S_R_B_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+grave + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/igravecyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/igravecyr.glif new file mode 100644 index 00000000..3b991a03 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/igravecyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ii-cy+grave + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/ii-cy.B_G_R_.glif b/sources/FixelText-ExtraBold.ufo/glyphs/ii-cy.B_G_R_.glif new file mode 100644 index 00000000..443ed58c --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/ii-cy.B_G_R_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/ii-cy.accented.glif b/sources/FixelText-ExtraBold.ufo/glyphs/ii-cy.accented.glif new file mode 100644 index 00000000..355e1990 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/ii-cy.accented.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + и+acute + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/ii-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/ii-cy.glif new file mode 100644 index 00000000..2d8bec7a --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/ii-cy.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/iishort-cy.B_G_R_.glif b/sources/FixelText-ExtraBold.ufo/glyphs/iishort-cy.B_G_R_.glif new file mode 100644 index 00000000..dc13afe0 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/iishort-cy.B_G_R_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/iishort-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/iishort-cy.glif new file mode 100644 index 00000000..72aa0e3f --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/iishort-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + icyr+breve + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/ij.glif b/sources/FixelText-ExtraBold.ufo/glyphs/ij.glif new file mode 100644 index 00000000..9ebeca50 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/ij.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + i + com.fontlab.metricsRight + j + com.fontlab.recipe + i_j + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/imacron.glif b/sources/FixelText-ExtraBold.ufo/glyphs/imacron.glif new file mode 100644 index 00000000..27437511 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/imacron.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =5 + com.fontlab.metricsRight + =5 + com.fontlab.recipe + idotless+macron + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/imacroncyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/imacroncyr.glif new file mode 100644 index 00000000..7edb9b3e --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/imacroncyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ii-cy+macron + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/increment.glif b/sources/FixelText-ExtraBold.ufo/glyphs/increment.glif new file mode 100644 index 00000000..1834d524 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/increment.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/infinity.glif b/sources/FixelText-ExtraBold.ufo/glyphs/infinity.glif new file mode 100644 index 00000000..0720fada --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/infinity.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/integral.glif b/sources/FixelText-ExtraBold.ufo/glyphs/integral.glif new file mode 100644 index 00000000..08d54ecb --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/integral.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/io-cy.accented.glif b/sources/FixelText-ExtraBold.ufo/glyphs/io-cy.accented.glif new file mode 100644 index 00000000..928f2d49 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/io-cy.accented.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsLeft + e + com.fontlab.metricsRight + e + com.fontlab.recipe + e+dieresisacute + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/io-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/io-cy.glif new file mode 100644 index 00000000..fa3253b1 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/io-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + edieresis + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/io-cy.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/io-cy.ss01.glif new file mode 100644 index 00000000..90dd9f1b --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/io-cy.ss01.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + edieresis.ss01 + com.schriftgestaltung.Glyphs.ComponentInfo + + + alignment + -1 + index + 0 + name + edieresis.ss01 + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/iogonek.glif b/sources/FixelText-ExtraBold.ufo/glyphs/iogonek.glif new file mode 100644 index 00000000..7bf67457 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/iogonek.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + i+ogonek + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/iota-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/iota-cy.glif new file mode 100644 index 00000000..40eeb28f --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/iota-cy.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l.ss01 + com.fontlab.metricsRight + l.ss01 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/iotifieda-cy.B_G_R_.glif b/sources/FixelText-ExtraBold.ufo/glyphs/iotifieda-cy.B_G_R_.glif new file mode 100644 index 00000000..a53a346a --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/iotifieda-cy.B_G_R_.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + el-cy.BGR + com.fontlab.recipe + iotifieda-cy + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/iotifieda-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/iotifieda-cy.glif new file mode 100644 index 00000000..36680863 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/iotifieda-cy.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + yusClosedlittle-cy + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/iotifieda-cy.hist.glif b/sources/FixelText-ExtraBold.ufo/glyphs/iotifieda-cy.hist.glif new file mode 100644 index 00000000..6e295280 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/iotifieda-cy.hist.glif @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + reversedzecyr + com.fontlab.metricsRight + a + public.markColor + 0.6,0.997,1,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/ishortsharptailcyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/ishortsharptailcyr.glif new file mode 100644 index 00000000..c0dcdf16 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/ishortsharptailcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + й + com.fontlab.metricsRight + ensharptailcyr + com.fontlab.recipe + й + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/itilde.glif b/sources/FixelText-ExtraBold.ufo/glyphs/itilde.glif new file mode 100644 index 00000000..d7eb4d15 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/itilde.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + dotlessi+tilde + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/iu-cy.B_G_R_.glif b/sources/FixelText-ExtraBold.ufo/glyphs/iu-cy.B_G_R_.glif new file mode 100644 index 00000000..e168f4ba --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/iu-cy.B_G_R_.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + o + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/iu-cy.accented.glif b/sources/FixelText-ExtraBold.ufo/glyphs/iu-cy.accented.glif new file mode 100644 index 00000000..3628f6c9 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/iu-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ю+acute + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/iu-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/iu-cy.glif new file mode 100644 index 00000000..1175b1ab --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/iu-cy.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/izhitsacyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/izhitsacyr.glif new file mode 100644 index 00000000..36913b70 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/izhitsacyr.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + v + com.fontlab.metricsRight + + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/izhitsagravedblcyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/izhitsagravedblcyr.glif new file mode 100644 index 00000000..5568eb07 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/izhitsagravedblcyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + com.fontlab.metricsLeft + izhitsacyr + com.fontlab.metricsRight + izhitsacyr + com.fontlab.recipe + izhitsacyr+hungarumlaut + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/j.glif b/sources/FixelText-ExtraBold.ufo/glyphs/j.glif new file mode 100644 index 00000000..dd3da5f7 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/j.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + i + com.fontlab.recipe + dotlessj+dotaccent + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/jcircumflex.glif b/sources/FixelText-ExtraBold.ufo/glyphs/jcircumflex.glif new file mode 100644 index 00000000..ff596f9b --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/jcircumflex.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + dotlessj+circumflex + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/jdotless.glif b/sources/FixelText-ExtraBold.ufo/glyphs/jdotless.glif new file mode 100644 index 00000000..a1df4d5e --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/jdotless.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + l + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/je-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/je-cy.glif new file mode 100644 index 00000000..0fd3c61b --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/je-cy.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + j + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/k.glif b/sources/FixelText-ExtraBold.ufo/glyphs/k.glif new file mode 100644 index 00000000..99410e2e --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/k.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/ka-cy.B_G_R_.glif b/sources/FixelText-ExtraBold.ufo/glyphs/ka-cy.B_G_R_.glif new file mode 100644 index 00000000..76c68ac3 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/ka-cy.B_G_R_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + k + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/ka-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/ka-cy.glif new file mode 100644 index 00000000..d35e6289 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/ka-cy.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + k + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/kaaleutcyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/kaaleutcyr.glif new file mode 100644 index 00000000..2cf24c4a --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/kaaleutcyr.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + k + com.fontlab.metricsRight + k + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/kabashkcyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/kabashkcyr.glif new file mode 100644 index 00000000..b7d7ef17 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/kabashkcyr.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hardsign-cy + com.fontlab.metricsRight + k + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/kahookcyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/kahookcyr.glif new file mode 100644 index 00000000..0bd3be87 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/kahookcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + n + com.fontlab.metricsRight + k+10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/kastrokecyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/kastrokecyr.glif new file mode 100644 index 00000000..1403659d --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/kastrokecyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hbar + com.fontlab.metricsRight + k + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/katailcyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/katailcyr.glif new file mode 100644 index 00000000..69841d38 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/katailcyr.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + k + com.fontlab.metricsRight + к-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/kaverticalstrokecyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/kaverticalstrokecyr.glif new file mode 100644 index 00000000..8b2f1051 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/kaverticalstrokecyr.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + k + com.fontlab.metricsRight + k + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/kcommaaccent.glif b/sources/FixelText-ExtraBold.ufo/glyphs/kcommaaccent.glif new file mode 100644 index 00000000..bf26df58 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/kcommaaccent.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsLeft + k + com.fontlab.metricsRight + k + com.fontlab.recipe + k+commaaccentcomb + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/kgreenlandic.glif b/sources/FixelText-ExtraBold.ufo/glyphs/kgreenlandic.glif new file mode 100644 index 00000000..43c8e6b8 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/kgreenlandic.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + kacyr + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/kjecyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/kjecyr.glif new file mode 100644 index 00000000..b39b0de3 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/kjecyr.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/knightblack.glif b/sources/FixelText-ExtraBold.ufo/glyphs/knightblack.glif new file mode 100644 index 00000000..8e41921b --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/knightblack.glif @@ -0,0 +1,313 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/knightwhite.glif b/sources/FixelText-ExtraBold.ufo/glyphs/knightwhite.glif new file mode 100644 index 00000000..5679fe94 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/knightwhite.glif @@ -0,0 +1,320 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/koppacyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/koppacyr.glif new file mode 100644 index 00000000..7109f17c --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/koppacyr.glif @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + c-20 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/ksicyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/ksicyr.glif new file mode 100644 index 00000000..ba5182fa --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/ksicyr.glif @@ -0,0 +1,102 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + з-10 + com.fontlab.metricsRight + з + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/l.glif b/sources/FixelText-ExtraBold.ufo/glyphs/l.glif new file mode 100644 index 00000000..195cbf4e --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/l.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/l.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/l.ss01.glif new file mode 100644 index 00000000..a0a6c0c6 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/l.ss01.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/lacute.glif b/sources/FixelText-ExtraBold.ufo/glyphs/lacute.glif new file mode 100644 index 00000000..7ef947dd --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/lacute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l+acute.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/lacute.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/lacute.ss01.glif new file mode 100644 index 00000000..8546f9e8 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/lacute.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l.ss01+acute.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/layerinfo.plist b/sources/FixelText-ExtraBold.ufo/glyphs/layerinfo.plist new file mode 100644 index 00000000..8c198655 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/layerinfo.plist @@ -0,0 +1,21 @@ + + + + + lib + + com.fontlab.layer.name + Body + com.fontlab.layer.opacity + 1 + com.fontlab.layer.visible + + com.fontlab.layer.locked + + com.fontlab.layer.service + + com.fontlab.layer.wireframe + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/lcaron.glif b/sources/FixelText-ExtraBold.ufo/glyphs/lcaron.glif new file mode 100644 index 00000000..70cfc89c --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/lcaron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l+caron.salt + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/lcaron.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/lcaron.ss01.glif new file mode 100644 index 00000000..f25c0a8d --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/lcaron.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l.ss01+caron.salt + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/lcommaaccent.glif b/sources/FixelText-ExtraBold.ufo/glyphs/lcommaaccent.glif new file mode 100644 index 00000000..1dbd4b6f --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/lcommaaccent.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l+commaaccentcomb + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/lcommaaccent.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/lcommaaccent.ss01.glif new file mode 100644 index 00000000..a6f6474f --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/lcommaaccent.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l.ss01+commaaccentcomb + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/ldot.glif b/sources/FixelText-ExtraBold.ufo/glyphs/ldot.glif new file mode 100644 index 00000000..937c63bf --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/ldot.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/ldot.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/ldot.ss01.glif new file mode 100644 index 00000000..71a1fbf7 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/ldot.ss01.glif @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + l.ss01_periodcentered + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/leo.glif b/sources/FixelText-ExtraBold.ufo/glyphs/leo.glif new file mode 100644 index 00000000..874e2627 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/leo.glif @@ -0,0 +1,494 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/less.glif b/sources/FixelText-ExtraBold.ufo/glyphs/less.glif new file mode 100644 index 00000000..c4a74eea --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/less.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/lessequal.glif b/sources/FixelText-ExtraBold.ufo/glyphs/lessequal.glif new file mode 100644 index 00000000..a4b36ebd --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/lessequal.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/lhacyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/lhacyr.glif new file mode 100644 index 00000000..e9fb8cc4 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/lhacyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + х + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/ljecyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/ljecyr.glif new file mode 100644 index 00000000..c4b97e83 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/ljecyr.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + ь + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/ljecyr.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/ljecyr.ss01.glif new file mode 100644 index 00000000..8f2508da --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/ljecyr.ss01.glif @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + ь + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/ljekomicyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/ljekomicyr.glif new file mode 100644 index 00000000..9b9e7162 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/ljekomicyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + njekomicyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/longs.glif b/sources/FixelText-ExtraBold.ufo/glyphs/longs.glif new file mode 100644 index 00000000..7d2ed1fe --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/longs.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + n + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/lslash.glif b/sources/FixelText-ExtraBold.ufo/glyphs/lslash.glif new file mode 100644 index 00000000..013390d8 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/lslash.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Lslash+12 + com.fontlab.metricsRight + |Lslash+12 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/lslash.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/lslash.ss01.glif new file mode 100644 index 00000000..ad9b77c9 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/lslash.ss01.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Lslash-10 + com.fontlab.metricsRight + |Lslash + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/m.glif b/sources/FixelText-ExtraBold.ufo/glyphs/m.glif new file mode 100644 index 00000000..7ddb0cca --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/m.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + n + com.fontlab.metricsRight + n + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/macron-fwd.alt.glif b/sources/FixelText-ExtraBold.ufo/glyphs/macron-fwd.alt.glif new file mode 100644 index 00000000..72607682 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/macron-fwd.alt.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/macron-fwd.glif b/sources/FixelText-ExtraBold.ufo/glyphs/macron-fwd.glif new file mode 100644 index 00000000..85ef2fd2 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/macron-fwd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/macron.case.glif b/sources/FixelText-ExtraBold.ufo/glyphs/macron.case.glif new file mode 100644 index 00000000..37e5c9ff --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/macron.case.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/macron.glif b/sources/FixelText-ExtraBold.ufo/glyphs/macron.glif new file mode 100644 index 00000000..b3007912 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/macron.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/macronacute.S_R_B_.glif b/sources/FixelText-ExtraBold.ufo/glyphs/macronacute.S_R_B_.glif new file mode 100644 index 00000000..a770baee --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/macronacute.S_R_B_.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + macron+acute + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/millionscombcyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/millionscombcyr.glif new file mode 100644 index 00000000..3415922c --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/millionscombcyr.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/minus.glif b/sources/FixelText-ExtraBold.ufo/glyphs/minus.glif new file mode 100644 index 00000000..995e1f32 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/minus.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/minute.glif b/sources/FixelText-ExtraBold.ufo/glyphs/minute.glif new file mode 100644 index 00000000..d9103202 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/minute.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/mu.glif b/sources/FixelText-ExtraBold.ufo/glyphs/mu.glif new file mode 100644 index 00000000..7b5b8cbc --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/mu.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + p + com.fontlab.metricsRight + u + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/multiply.glif b/sources/FixelText-ExtraBold.ufo/glyphs/multiply.glif new file mode 100644 index 00000000..c2e1b8a8 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/multiply.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/n.glif b/sources/FixelText-ExtraBold.ufo/glyphs/n.glif new file mode 100644 index 00000000..1dfc808c --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/n.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/nacute.glif b/sources/FixelText-ExtraBold.ufo/glyphs/nacute.glif new file mode 100644 index 00000000..50c40a40 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/nacute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + n+acute + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/napostrophe.glif b/sources/FixelText-ExtraBold.ufo/glyphs/napostrophe.glif new file mode 100644 index 00000000..9236045c --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/napostrophe.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + com.fontlab.metricsRight + n + com.schriftgestaltung.Glyphs.ComponentInfo + + + alignment + -1 + index + 0 + name + n + + + alignment + -1 + index + 1 + name + quoteright + + + com.schriftgestaltung.Glyphs.rightMetricsKey + n + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/ncaron.glif b/sources/FixelText-ExtraBold.ufo/glyphs/ncaron.glif new file mode 100644 index 00000000..e2abfec3 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/ncaron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + n+caron + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/ncommaaccent.glif b/sources/FixelText-ExtraBold.ufo/glyphs/ncommaaccent.glif new file mode 100644 index 00000000..771c235d --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/ncommaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + n+commaaccentcomb + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/neptune.glif b/sources/FixelText-ExtraBold.ufo/glyphs/neptune.glif new file mode 100644 index 00000000..f521452a --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/neptune.glif @@ -0,0 +1,125 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ш + com.fontlab.metricsRight + Ш + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/nine.glif b/sources/FixelText-ExtraBold.ufo/glyphs/nine.glif new file mode 100644 index 00000000..8ed70756 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/nine.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + |six + com.fontlab.metricsRight + |six + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/nine.osf.glif b/sources/FixelText-ExtraBold.ufo/glyphs/nine.osf.glif new file mode 100644 index 00000000..da4b7894 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/nine.osf.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |six + com.fontlab.metricsRight + |six + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/nine.tf.glif b/sources/FixelText-ExtraBold.ufo/glyphs/nine.tf.glif new file mode 100644 index 00000000..bc20bde2 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/nine.tf.glif @@ -0,0 +1,7 @@ + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/njecyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/njecyr.glif new file mode 100644 index 00000000..89a39186 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/njecyr.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + ь + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/njecyr.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/njecyr.ss01.glif new file mode 100644 index 00000000..c0b71df8 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/njecyr.ss01.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + ь + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/njekomicyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/njekomicyr.glif new file mode 100644 index 00000000..a698681a --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/njekomicyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + |u + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/notequal.glif b/sources/FixelText-ExtraBold.ufo/glyphs/notequal.glif new file mode 100644 index 00000000..7fb70a17 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/notequal.glif @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/ntilde.glif b/sources/FixelText-ExtraBold.ufo/glyphs/ntilde.glif new file mode 100644 index 00000000..7b4c7b67 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/ntilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + n+tilde + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/numbersign.glif b/sources/FixelText-ExtraBold.ufo/glyphs/numbersign.glif new file mode 100644 index 00000000..ba6eeb2b --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/numbersign.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/numero.glif b/sources/FixelText-ExtraBold.ufo/glyphs/numero.glif new file mode 100644 index 00000000..0c8369cd --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/numero.glif @@ -0,0 +1,90 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + N + com.fontlab.recipe + N+ordmasculine + com.schriftgestaltung.Glyphs.ComponentInfo + + + alignment + -1 + index + 0 + name + N + + + alignment + -1 + index + 1 + name + ordmasculine + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/numero.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/numero.ss01.glif new file mode 100644 index 00000000..44874d8c --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/numero.ss01.glif @@ -0,0 +1,95 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + N.ss01 + com.fontlab.metricsRight + ordmasculine + com.fontlab.recipe + N.ss01+ordmasculine + com.schriftgestaltung.Glyphs.ComponentInfo + + + alignment + -1 + index + 0 + name + ordmasculine + + + alignment + -1 + index + 1 + name + N.ss01 + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/o-cy.accented.glif b/sources/FixelText-ExtraBold.ufo/glyphs/o-cy.accented.glif new file mode 100644 index 00000000..1b4d5a80 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/o-cy.accented.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+acute + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/o-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/o-cy.glif new file mode 100644 index 00000000..6d4b842a --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/o-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/o.glif b/sources/FixelText-ExtraBold.ufo/glyphs/o.glif new file mode 100644 index 00000000..754f2334 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/o.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/oB_inocular-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/oB_inocular-cy.glif new file mode 100644 index 00000000..bacf06b7 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/oB_inocular-cy.glif @@ -0,0 +1,81 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/oD_oubleM_onocular-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/oD_oubleM_onocular-cy.glif new file mode 100644 index 00000000..de436f33 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/oD_oubleM_onocular-cy.glif @@ -0,0 +1,121 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + com.fontlab.recipe + doubleo-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/oM_onocular-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/oM_onocular-cy.glif new file mode 100644 index 00000000..0b7de509 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/oM_onocular-cy.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/oacute.glif b/sources/FixelText-ExtraBold.ufo/glyphs/oacute.glif new file mode 100644 index 00000000..9cdac5e5 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/oacute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+acute + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/obarcyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/obarcyr.glif new file mode 100644 index 00000000..22d59e7e --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/obarcyr.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/obardieresiscyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/obardieresiscyr.glif new file mode 100644 index 00000000..254c4de5 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/obardieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + obarcyr+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/obreve.glif b/sources/FixelText-ExtraBold.ufo/glyphs/obreve.glif new file mode 100644 index 00000000..cd1a21f4 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/obreve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+breve + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/ocircumflex.glif b/sources/FixelText-ExtraBold.ufo/glyphs/ocircumflex.glif new file mode 100644 index 00000000..521aa921 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/ocircumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+circumflex + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/odieresis.glif b/sources/FixelText-ExtraBold.ufo/glyphs/odieresis.glif new file mode 100644 index 00000000..4c0cb7fd --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/odieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+dieresis + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/odieresiscyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/odieresiscyr.glif new file mode 100644 index 00000000..6647f873 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/odieresiscyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/oe.glif b/sources/FixelText-ExtraBold.ufo/glyphs/oe.glif new file mode 100644 index 00000000..8b68d67f --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/oe.glif @@ -0,0 +1,86 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + e + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/oe.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/oe.ss01.glif new file mode 100644 index 00000000..d1f2e3a9 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/oe.ss01.glif @@ -0,0 +1,95 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + e.ss01 + public.markColor + 0.6,0.997,1,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/ogonek.glif b/sources/FixelText-ExtraBold.ufo/glyphs/ogonek.glif new file mode 100644 index 00000000..d66beccf --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/ogonek.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/ograve.glif b/sources/FixelText-ExtraBold.ufo/glyphs/ograve.glif new file mode 100644 index 00000000..b6c9a690 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/ograve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+grave + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/ohungarumlaut.glif b/sources/FixelText-ExtraBold.ufo/glyphs/ohungarumlaut.glif new file mode 100644 index 00000000..64d14637 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/ohungarumlaut.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+hungarumlaut + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/omacron.glif b/sources/FixelText-ExtraBold.ufo/glyphs/omacron.glif new file mode 100644 index 00000000..30bf7c42 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/omacron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+macron + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/omegaB_road-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/omegaB_road-cy.glif new file mode 100644 index 00000000..c3c47722 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/omegaB_road-cy.glif @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o+5 + com.fontlab.metricsRight + o+5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/omegacyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/omegacyr.glif new file mode 100644 index 00000000..1b781bd0 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/omegacyr.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + w + com.fontlab.metricsRight + w + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/omegaroundcyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/omegaroundcyr.glif new file mode 100644 index 00000000..b17a520d --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/omegaroundcyr.glif @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/omegatitlocyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/omegatitlocyr.glif new file mode 100644 index 00000000..22dc530f --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/omegatitlocyr.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o+5 + com.fontlab.metricsRight + o+5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/omultiocular-cy.alt.glif b/sources/FixelText-ExtraBold.ufo/glyphs/omultiocular-cy.alt.glif new file mode 100644 index 00000000..271d174a --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/omultiocular-cy.alt.glif @@ -0,0 +1,367 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + oMonocular-cy + com.fontlab.metricsRight + oMonocular-cy + public.markColor + 0.6,0.997,1,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/omultiocular-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/omultiocular-cy.glif new file mode 100644 index 00000000..28e9bf83 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/omultiocular-cy.glif @@ -0,0 +1,516 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + oMonocular-cy + com.fontlab.metricsRight + oMonocular-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/one.glif b/sources/FixelText-ExtraBold.ufo/glyphs/one.glif new file mode 100644 index 00000000..ca65bcdd --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/one.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =40 + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/one.osf.glif b/sources/FixelText-ExtraBold.ufo/glyphs/one.osf.glif new file mode 100644 index 00000000..2b1580cb --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/one.osf.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + one + com.fontlab.metricsRight + one + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/one.tf.glif b/sources/FixelText-ExtraBold.ufo/glyphs/one.tf.glif new file mode 100644 index 00000000..334cb640 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/one.tf.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/onehalf.glif b/sources/FixelText-ExtraBold.ufo/glyphs/onehalf.glif new file mode 100644 index 00000000..fdaee1cf --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/onehalf.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/onequarter.glif b/sources/FixelText-ExtraBold.ufo/glyphs/onequarter.glif new file mode 100644 index 00000000..ca15f593 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/onequarter.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/onesuperior.glif b/sources/FixelText-ExtraBold.ufo/glyphs/onesuperior.glif new file mode 100644 index 00000000..1968fdb4 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/onesuperior.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/ordfeminine.glif b/sources/FixelText-ExtraBold.ufo/glyphs/ordfeminine.glif new file mode 100644 index 00000000..8bc45a41 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/ordfeminine.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/ordmasculine.glif b/sources/FixelText-ExtraBold.ufo/glyphs/ordmasculine.glif new file mode 100644 index 00000000..561ef1d3 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/ordmasculine.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/oslash.glif b/sources/FixelText-ExtraBold.ufo/glyphs/oslash.glif new file mode 100644 index 00000000..88226098 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/oslash.glif @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/oslashacute.glif b/sources/FixelText-ExtraBold.ufo/glyphs/oslashacute.glif new file mode 100644 index 00000000..649a50b4 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/oslashacute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + oslash+acute + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/otcyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/otcyr.glif new file mode 100644 index 00000000..7eb37d01 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/otcyr.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsRight + w + com.fontlab.recipe + omegacyr+uni2DEE + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/otilde.glif b/sources/FixelText-ExtraBold.ufo/glyphs/otilde.glif new file mode 100644 index 00000000..9dab57e3 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/otilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+tilde + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/p.glif b/sources/FixelText-ExtraBold.ufo/glyphs/p.glif new file mode 100644 index 00000000..cef08e67 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/p.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/p.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/p.ss01.glif new file mode 100644 index 00000000..374ab80a --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/p.ss01.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/palatcombcyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/palatcombcyr.glif new file mode 100644 index 00000000..e50304e1 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/palatcombcyr.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/palochkacyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/palochkacyr.glif new file mode 100644 index 00000000..38de5073 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/palochkacyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/paragraph.glif b/sources/FixelText-ExtraBold.ufo/glyphs/paragraph.glif new file mode 100644 index 00000000..e95ebb29 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/paragraph.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |P + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/parenleft.case.glif b/sources/FixelText-ExtraBold.ufo/glyphs/parenleft.case.glif new file mode 100644 index 00000000..7da2db98 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/parenleft.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |parenright.case + com.fontlab.metricsRight + |parenright.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/parenleft.glif b/sources/FixelText-ExtraBold.ufo/glyphs/parenleft.glif new file mode 100644 index 00000000..32247d99 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/parenleft.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/parenright.case.glif b/sources/FixelText-ExtraBold.ufo/glyphs/parenright.case.glif new file mode 100644 index 00000000..baace648 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/parenright.case.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + parenright + com.fontlab.metricsRight + parenright + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/parenright.glif b/sources/FixelText-ExtraBold.ufo/glyphs/parenright.glif new file mode 100644 index 00000000..987820c5 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/parenright.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/partialdiff.glif b/sources/FixelText-ExtraBold.ufo/glyphs/partialdiff.glif new file mode 100644 index 00000000..506bffa3 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/partialdiff.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/pe-cy.B_G_R_.glif b/sources/FixelText-ExtraBold.ufo/glyphs/pe-cy.B_G_R_.glif new file mode 100644 index 00000000..c8191ab8 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/pe-cy.B_G_R_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + n + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/pe-cy.S_R_B_.glif b/sources/FixelText-ExtraBold.ufo/glyphs/pe-cy.S_R_B_.glif new file mode 100644 index 00000000..291f6e8e --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/pe-cy.S_R_B_.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+macron-fwd.alt + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/pe-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/pe-cy.glif new file mode 100644 index 00000000..58324d55 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/pe-cy.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/pehookcyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/pehookcyr.glif new file mode 100644 index 00000000..4dc7a7a5 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/pehookcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + п + com.fontlab.metricsRight + enmiddlehookcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/percent.glif b/sources/FixelText-ExtraBold.ufo/glyphs/percent.glif new file mode 100644 index 00000000..cfe88c40 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/percent.glif @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/period.glif b/sources/FixelText-ExtraBold.ufo/glyphs/period.glif new file mode 100644 index 00000000..3c40d1eb --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/period.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/periodcentered.glif b/sources/FixelText-ExtraBold.ufo/glyphs/periodcentered.glif new file mode 100644 index 00000000..ac32a297 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/periodcentered.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/perthousand.glif b/sources/FixelText-ExtraBold.ufo/glyphs/perthousand.glif new file mode 100644 index 00000000..60415069 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/perthousand.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/petailcyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/petailcyr.glif new file mode 100644 index 00000000..58b41a41 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/petailcyr.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + п + com.fontlab.metricsRight + entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/pi.glif b/sources/FixelText-ExtraBold.ufo/glyphs/pi.glif new file mode 100644 index 00000000..cdfe138a --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/pi.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f + com.fontlab.metricsRight + t + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/plus.glif b/sources/FixelText-ExtraBold.ufo/glyphs/plus.glif new file mode 100644 index 00000000..5a17e86e --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/plus.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/plusminus.glif b/sources/FixelText-ExtraBold.ufo/glyphs/plusminus.glif new file mode 100644 index 00000000..5d4906ff --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/plusminus.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/pokrytiecombcyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/pokrytiecombcyr.glif new file mode 100644 index 00000000..cbeb3895 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/pokrytiecombcyr.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/product.glif b/sources/FixelText-ExtraBold.ufo/glyphs/product.glif new file mode 100644 index 00000000..a0efed61 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/product.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/proportional.glif b/sources/FixelText-ExtraBold.ufo/glyphs/proportional.glif new file mode 100644 index 00000000..fbefe06f --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/proportional.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/psicyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/psicyr.glif new file mode 100644 index 00000000..009f8386 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/psicyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + u + com.fontlab.metricsRight + |u + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/q.glif b/sources/FixelText-ExtraBold.ufo/glyphs/q.glif new file mode 100644 index 00000000..18ea7e15 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/q.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/q.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/q.ss01.glif new file mode 100644 index 00000000..f98b3c79 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/q.ss01.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/qacyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/qacyr.glif new file mode 100644 index 00000000..8180a05b --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/qacyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + q + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/question.glif b/sources/FixelText-ExtraBold.ufo/glyphs/question.glif new file mode 100644 index 00000000..1592508b --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/question.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/questiondown.case.glif b/sources/FixelText-ExtraBold.ufo/glyphs/questiondown.case.glif new file mode 100644 index 00000000..a2011e71 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/questiondown.case.glif @@ -0,0 +1,19 @@ + + + + + + + + + com.fontlab.metricsLeft + |question + com.fontlab.metricsRight + |question + com.fontlab.recipe + questiondown + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/questiondown.glif b/sources/FixelText-ExtraBold.ufo/glyphs/questiondown.glif new file mode 100644 index 00000000..f1f8a919 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/questiondown.glif @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |question + com.fontlab.metricsRight + |question + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/quotedbl.glif b/sources/FixelText-ExtraBold.ufo/glyphs/quotedbl.glif new file mode 100644 index 00000000..ffb6e2b0 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/quotedbl.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/quotedblbase.glif b/sources/FixelText-ExtraBold.ufo/glyphs/quotedblbase.glif new file mode 100644 index 00000000..c4cd4b32 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/quotedblbase.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + comma + com.fontlab.metricsRight + comma + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/quotedblleft.glif b/sources/FixelText-ExtraBold.ufo/glyphs/quotedblleft.glif new file mode 100644 index 00000000..d2e25730 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/quotedblleft.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + |comma + com.fontlab.metricsRight + |comma + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/quotedblright.glif b/sources/FixelText-ExtraBold.ufo/glyphs/quotedblright.glif new file mode 100644 index 00000000..8bef45b3 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/quotedblright.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.metricsLeft + comma+20 + com.fontlab.metricsRight + comma-20 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/quoteleft.glif b/sources/FixelText-ExtraBold.ufo/glyphs/quoteleft.glif new file mode 100644 index 00000000..74d3bd31 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/quoteleft.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + quotedblleft + com.fontlab.metricsRight + quotedblleft + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/quoteright.glif b/sources/FixelText-ExtraBold.ufo/glyphs/quoteright.glif new file mode 100644 index 00000000..34850d23 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/quoteright.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + com.fontlab.metricsLeft + quotedblright + com.fontlab.metricsRight + quotedblright + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/quotesinglbase.glif b/sources/FixelText-ExtraBold.ufo/glyphs/quotesinglbase.glif new file mode 100644 index 00000000..3fb7f9eb --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/quotesinglbase.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + com.fontlab.recipe + comma + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/quotesingle.glif b/sources/FixelText-ExtraBold.ufo/glyphs/quotesingle.glif new file mode 100644 index 00000000..fa47d311 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/quotesingle.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/r.glif b/sources/FixelText-ExtraBold.ufo/glyphs/r.glif new file mode 100644 index 00000000..29bcc1f1 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/r.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/racute.glif b/sources/FixelText-ExtraBold.ufo/glyphs/racute.glif new file mode 100644 index 00000000..11b467f7 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/racute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + r+acute + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/radical.glif b/sources/FixelText-ExtraBold.ufo/glyphs/radical.glif new file mode 100644 index 00000000..fa892eae --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/radical.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + V + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/rcaron.glif b/sources/FixelText-ExtraBold.ufo/glyphs/rcaron.glif new file mode 100644 index 00000000..f039efce --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/rcaron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + r+caron + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/rcommaaccent.glif b/sources/FixelText-ExtraBold.ufo/glyphs/rcommaaccent.glif new file mode 100644 index 00000000..5b5e0c24 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/rcommaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + r+commaaccentcomb + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/registered.glif b/sources/FixelText-ExtraBold.ufo/glyphs/registered.glif new file mode 100644 index 00000000..495fe1c1 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/registered.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/reversedzecyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/reversedzecyr.glif new file mode 100644 index 00000000..18b367d0 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/reversedzecyr.glif @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + + com.fontlab.metricsRight + + com.fontlab.recipe + з + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/rhacyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/rhacyr.glif new file mode 100644 index 00000000..18bcc5e2 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/rhacyr.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + p + com.fontlab.metricsRight + x + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/ring.case.glif b/sources/FixelText-ExtraBold.ufo/glyphs/ring.case.glif new file mode 100644 index 00000000..f2aaede3 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/ring.case.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/ring.glif b/sources/FixelText-ExtraBold.ufo/glyphs/ring.glif new file mode 100644 index 00000000..b9e1a302 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/ring.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/rookblack.glif b/sources/FixelText-ExtraBold.ufo/glyphs/rookblack.glif new file mode 100644 index 00000000..f98b52a8 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/rookblack.glif @@ -0,0 +1,270 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/ruble.glif b/sources/FixelText-ExtraBold.ufo/glyphs/ruble.glif new file mode 100644 index 00000000..92698f28 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/ruble.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + P + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/s.glif b/sources/FixelText-ExtraBold.ufo/glyphs/s.glif new file mode 100644 index 00000000..08eae392 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/s.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/sacute.glif b/sources/FixelText-ExtraBold.ufo/glyphs/sacute.glif new file mode 100644 index 00000000..2f2959b7 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/sacute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + s+acute + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/scaron.glif b/sources/FixelText-ExtraBold.ufo/glyphs/scaron.glif new file mode 100644 index 00000000..65cfaaf0 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/scaron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + s+caron + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/scedilla.glif b/sources/FixelText-ExtraBold.ufo/glyphs/scedilla.glif new file mode 100644 index 00000000..e501624c --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/scedilla.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + s+cedilla + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/schwacyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/schwacyr.glif new file mode 100644 index 00000000..679c3794 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/schwacyr.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |e + com.fontlab.metricsRight + o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/schwadieresiscyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/schwadieresiscyr.glif new file mode 100644 index 00000000..5acf9217 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/schwadieresiscyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + schwacyr+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/scircumflex.glif b/sources/FixelText-ExtraBold.ufo/glyphs/scircumflex.glif new file mode 100644 index 00000000..3f668d15 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/scircumflex.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + s+circumflex + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/scommaaccent.glif b/sources/FixelText-ExtraBold.ufo/glyphs/scommaaccent.glif new file mode 100644 index 00000000..b0dc5e3d --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/scommaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + s+commaaccentcomb + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/second.glif b/sources/FixelText-ExtraBold.ufo/glyphs/second.glif new file mode 100644 index 00000000..61b36602 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/second.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/section.glif b/sources/FixelText-ExtraBold.ufo/glyphs/section.glif new file mode 100644 index 00000000..65f49854 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/section.glif @@ -0,0 +1,87 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + S + com.fontlab.metricsRight + S + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/semicolon.case.glif b/sources/FixelText-ExtraBold.ufo/glyphs/semicolon.case.glif new file mode 100644 index 00000000..99156650 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/semicolon.case.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.metricsLeft + semicolon + com.fontlab.metricsRight + semicolon + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/semicolon.glif b/sources/FixelText-ExtraBold.ufo/glyphs/semicolon.glif new file mode 100644 index 00000000..61f86de2 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/semicolon.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/semisoftcyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/semisoftcyr.glif new file mode 100644 index 00000000..90dd564f --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/semisoftcyr.glif @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + t + com.fontlab.metricsRight + ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/seven.glif b/sources/FixelText-ExtraBold.ufo/glyphs/seven.glif new file mode 100644 index 00000000..c4842567 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/seven.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/seven.osf.glif b/sources/FixelText-ExtraBold.ufo/glyphs/seven.osf.glif new file mode 100644 index 00000000..174af2d0 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/seven.osf.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + seven + com.fontlab.metricsRight + seven + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/seven.tf.glif b/sources/FixelText-ExtraBold.ufo/glyphs/seven.tf.glif new file mode 100644 index 00000000..565d42d8 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/seven.tf.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/sha-cy.B_G_R_.glif b/sources/FixelText-ExtraBold.ufo/glyphs/sha-cy.B_G_R_.glif new file mode 100644 index 00000000..430aa07a --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/sha-cy.B_G_R_.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + u + com.fontlab.metricsRight + l + com.fontlab.recipe + m + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/sha-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/sha-cy.glif new file mode 100644 index 00000000..2d1815be --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/sha-cy.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/shcha-cy.B_G_R_.glif b/sources/FixelText-ExtraBold.ufo/glyphs/shcha-cy.B_G_R_.glif new file mode 100644 index 00000000..9b400232 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/shcha-cy.B_G_R_.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + u + com.fontlab.metricsRight + щ + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/shcha-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/shcha-cy.glif new file mode 100644 index 00000000..bd1548ac --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/shcha-cy.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + д + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/shhacyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/shhacyr.glif new file mode 100644 index 00000000..71dfe326 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/shhacyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsRight + n + com.fontlab.recipe + h + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/shhatailcyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/shhatailcyr.glif new file mode 100644 index 00000000..2fcbc380 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/shhatailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + h + com.fontlab.metricsRight + entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/shwe-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/shwe-cy.glif new file mode 100644 index 00000000..8a42e827 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/shwe-cy.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + щ + com.fontlab.metricsRight + щ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/six.glif b/sources/FixelText-ExtraBold.ufo/glyphs/six.glif new file mode 100644 index 00000000..d1da7675 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/six.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/six.osf.glif b/sources/FixelText-ExtraBold.ufo/glyphs/six.osf.glif new file mode 100644 index 00000000..85f4f4a7 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/six.osf.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + six + com.fontlab.metricsRight + six + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/six.tf.glif b/sources/FixelText-ExtraBold.ufo/glyphs/six.tf.glif new file mode 100644 index 00000000..b6b4cdc5 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/six.tf.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/sjekomicyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/sjekomicyr.glif new file mode 100644 index 00000000..8a0a0744 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/sjekomicyr.glif @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + e + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/slash.case.glif b/sources/FixelText-ExtraBold.ufo/glyphs/slash.case.glif new file mode 100644 index 00000000..e7f77111 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/slash.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + slash + com.fontlab.metricsRight + slash + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/slash.glif b/sources/FixelText-ExtraBold.ufo/glyphs/slash.glif new file mode 100644 index 00000000..e37b5b5b --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/slash.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/softsign-cy.B_G_R_.glif b/sources/FixelText-ExtraBold.ufo/glyphs/softsign-cy.B_G_R_.glif new file mode 100644 index 00000000..9025ac96 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/softsign-cy.B_G_R_.glif @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + u + com.fontlab.metricsRight + ь-5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/softsign-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/softsign-cy.glif new file mode 100644 index 00000000..8d8bd291 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/softsign-cy.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/softsign-cy.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/softsign-cy.ss01.glif new file mode 100644 index 00000000..f390be12 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/softsign-cy.ss01.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/space.glif b/sources/FixelText-ExtraBold.ufo/glyphs/space.glif new file mode 100644 index 00000000..bd876f08 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/space.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/spadewhite.glif b/sources/FixelText-ExtraBold.ufo/glyphs/spadewhite.glif new file mode 100644 index 00000000..5680507f --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/spadewhite.glif @@ -0,0 +1,453 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/sterling.glif b/sources/FixelText-ExtraBold.ufo/glyphs/sterling.glif new file mode 100644 index 00000000..f85cd701 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/sterling.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/summation.glif b/sources/FixelText-ExtraBold.ufo/glyphs/summation.glif new file mode 100644 index 00000000..9af44f05 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/summation.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/t.glif b/sources/FixelText-ExtraBold.ufo/glyphs/t.glif new file mode 100644 index 00000000..bfcdd1c9 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/t.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/t.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/t.ss01.glif new file mode 100644 index 00000000..a494a18c --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/t.ss01.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/tbar.glif b/sources/FixelText-ExtraBold.ufo/glyphs/tbar.glif new file mode 100644 index 00000000..6e33b592 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/tbar.glif @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/tbar.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/tbar.ss01.glif new file mode 100644 index 00000000..35ceef9b --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/tbar.ss01.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/tcaron.glif b/sources/FixelText-ExtraBold.ufo/glyphs/tcaron.glif new file mode 100644 index 00000000..e7cef3f2 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/tcaron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.metricsLeft + t + com.fontlab.metricsRight + t + com.fontlab.recipe + t+caron.salt + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/tcaron.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/tcaron.ss01.glif new file mode 100644 index 00000000..105d2a5b --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/tcaron.ss01.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + com.fontlab.recipe + t.ss01+caron.salt + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/tcedilla.glif b/sources/FixelText-ExtraBold.ufo/glyphs/tcedilla.glif new file mode 100644 index 00000000..eda62fc7 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/tcedilla.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + t+cedilla + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/tcedilla.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/tcedilla.ss01.glif new file mode 100644 index 00000000..16257718 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/tcedilla.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + t.ss01+cedilla + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/tche-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/tche-cy.glif new file mode 100644 index 00000000..e5a2ccbd --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/tche-cy.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + tetsecyr-20 + com.fontlab.metricsRight + ч + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/tcommaaccent.glif b/sources/FixelText-ExtraBold.ufo/glyphs/tcommaaccent.glif new file mode 100644 index 00000000..5ea569d6 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/tcommaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + t+commaaccentcomb + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/tcommaaccent.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/tcommaaccent.ss01.glif new file mode 100644 index 00000000..6bcbe3db --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/tcommaaccent.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + t.ss01+commaaccentcomb + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/te-cy.B_G_R_.glif b/sources/FixelText-ExtraBold.ufo/glyphs/te-cy.B_G_R_.glif new file mode 100644 index 00000000..eb19dbd9 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/te-cy.B_G_R_.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + m + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/te-cy.S_R_B_.glif b/sources/FixelText-ExtraBold.ufo/glyphs/te-cy.S_R_B_.glif new file mode 100644 index 00000000..4bf216bf --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/te-cy.S_R_B_.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ш.BGR+macron-fwd + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/te-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/te-cy.glif new file mode 100644 index 00000000..361a359d --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/te-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/te-cy.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/te-cy.ss01.glif new file mode 100644 index 00000000..5058f57f --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/te-cy.ss01.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/tenge.glif b/sources/FixelText-ExtraBold.ufo/glyphs/tenge.glif new file mode 100644 index 00000000..d4bc8bcc --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/tenge.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + T + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/tenmillionscomb-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/tenmillionscomb-cy.glif new file mode 100644 index 00000000..65a382f8 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/tenmillionscomb-cy.glif @@ -0,0 +1,109 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/tetailcyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/tetailcyr.glif new file mode 100644 index 00000000..84db092a --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/tetailcyr.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + т + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/tetsecyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/tetsecyr.glif new file mode 100644 index 00000000..3dfa9fbd --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/tetsecyr.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + т + com.fontlab.metricsRight + ц + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/tewithmiddlehook-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/tewithmiddlehook-cy.glif new file mode 100644 index 00000000..1d58773a --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/tewithmiddlehook-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + т + com.fontlab.metricsRight + gehookcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/thorn.glif b/sources/FixelText-ExtraBold.ufo/glyphs/thorn.glif new file mode 100644 index 00000000..a0ef936c --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/thorn.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + b + com.fontlab.metricsRight + b + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/thousandmillionscomb-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/thousandmillionscomb-cy.glif new file mode 100644 index 00000000..384ef4bc --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/thousandmillionscomb-cy.glif @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/thousandscyr.dnom.glif b/sources/FixelText-ExtraBold.ufo/glyphs/thousandscyr.dnom.glif new file mode 100644 index 00000000..ab5a5449 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/thousandscyr.dnom.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + | + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/thousandscyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/thousandscyr.glif new file mode 100644 index 00000000..f3d83c2e --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/thousandscyr.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + | + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/three.glif b/sources/FixelText-ExtraBold.ufo/glyphs/three.glif new file mode 100644 index 00000000..1e379c9f --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/three.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/three.osf.glif b/sources/FixelText-ExtraBold.ufo/glyphs/three.osf.glif new file mode 100644 index 00000000..3a05187a --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/three.osf.glif @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + three + com.fontlab.metricsRight + three + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/three.tf.glif b/sources/FixelText-ExtraBold.ufo/glyphs/three.tf.glif new file mode 100644 index 00000000..e63ea3f9 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/three.tf.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/threequarters.glif b/sources/FixelText-ExtraBold.ufo/glyphs/threequarters.glif new file mode 100644 index 00000000..290394c8 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/threequarters.glif @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/threesuperior.glif b/sources/FixelText-ExtraBold.ufo/glyphs/threesuperior.glif new file mode 100644 index 00000000..adc87935 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/threesuperior.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/tilde.case.glif b/sources/FixelText-ExtraBold.ufo/glyphs/tilde.case.glif new file mode 100644 index 00000000..2057c5e1 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/tilde.case.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/tilde.glif b/sources/FixelText-ExtraBold.ufo/glyphs/tilde.glif new file mode 100644 index 00000000..e4559341 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/tilde.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/titlocombcyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/titlocombcyr.glif new file mode 100644 index 00000000..ec4c1e91 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/titlocombcyr.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/tjekomicyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/tjekomicyr.glif new file mode 100644 index 00000000..bd6e9b27 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/tjekomicyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + т + com.fontlab.metricsRight + njekomicyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/trademark.glif b/sources/FixelText-ExtraBold.ufo/glyphs/trademark.glif new file mode 100644 index 00000000..f9e75539 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/trademark.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/tse-cy.B_G_R_.glif b/sources/FixelText-ExtraBold.ufo/glyphs/tse-cy.B_G_R_.glif new file mode 100644 index 00000000..1c56ada1 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/tse-cy.B_G_R_.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + u + com.fontlab.metricsRight + ц + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/tse-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/tse-cy.glif new file mode 100644 index 00000000..333d9885 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/tse-cy.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + д + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/tseR_eversed-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/tseR_eversed-cy.glif new file mode 100644 index 00000000..18459e73 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/tseR_eversed-cy.glif @@ -0,0 +1,20 @@ + + + + + + + + + + com.fontlab.metricsLeft + + com.fontlab.metricsRight + н + com.fontlab.recipe + ц + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/tshecyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/tshecyr.glif new file mode 100644 index 00000000..d6205779 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/tshecyr.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + hbar + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/tsse-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/tsse-cy.glif new file mode 100644 index 00000000..e8154d5d --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/tsse-cy.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + т + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/tswe-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/tswe-cy.glif new file mode 100644 index 00000000..e9a34e71 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/tswe-cy.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ш + com.fontlab.metricsRight + shwe-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/twe-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/twe-cy.glif new file mode 100644 index 00000000..a5856ae7 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/twe-cy.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + т.ss01 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/two.glif b/sources/FixelText-ExtraBold.ufo/glyphs/two.glif new file mode 100644 index 00000000..14107c7c --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/two.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/two.osf.glif b/sources/FixelText-ExtraBold.ufo/glyphs/two.osf.glif new file mode 100644 index 00000000..a72aa196 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/two.osf.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + two + com.fontlab.metricsRight + two + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/two.tf.glif b/sources/FixelText-ExtraBold.ufo/glyphs/two.tf.glif new file mode 100644 index 00000000..3260a778 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/two.tf.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/twosuperior.glif b/sources/FixelText-ExtraBold.ufo/glyphs/twosuperior.glif new file mode 100644 index 00000000..8e441aaf --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/twosuperior.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/u-cy.accented.glif b/sources/FixelText-ExtraBold.ufo/glyphs/u-cy.accented.glif new file mode 100644 index 00000000..2c7a4858 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/u-cy.accented.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + y+acute + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/u-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/u-cy.glif new file mode 100644 index 00000000..cc3f6861 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/u-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + y + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/u.glif b/sources/FixelText-ExtraBold.ufo/glyphs/u.glif new file mode 100644 index 00000000..ead6d386 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/u.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |n + com.fontlab.metricsRight + l + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/uacute.glif b/sources/FixelText-ExtraBold.ufo/glyphs/uacute.glif new file mode 100644 index 00000000..46b78369 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/uacute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+acute + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/uacutedblcyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/uacutedblcyr.glif new file mode 100644 index 00000000..d21037f3 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/uacutedblcyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u-cy+hungarumlaut + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/ubreve.glif b/sources/FixelText-ExtraBold.ufo/glyphs/ubreve.glif new file mode 100644 index 00000000..85fbf892 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/ubreve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+breve + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/ucircumflex.glif b/sources/FixelText-ExtraBold.ufo/glyphs/ucircumflex.glif new file mode 100644 index 00000000..1e446f86 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/ucircumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+circumflex + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/udieresis.glif b/sources/FixelText-ExtraBold.ufo/glyphs/udieresis.glif new file mode 100644 index 00000000..2b1c4ab8 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/udieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+dieresis + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/udieresiscyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/udieresiscyr.glif new file mode 100644 index 00000000..be7d20f2 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/udieresiscyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/ugrave.glif b/sources/FixelText-ExtraBold.ufo/glyphs/ugrave.glif new file mode 100644 index 00000000..eb89ec01 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/ugrave.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+grave + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/uhungarumlaut.glif b/sources/FixelText-ExtraBold.ufo/glyphs/uhungarumlaut.glif new file mode 100644 index 00000000..2eaa2e81 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/uhungarumlaut.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+hungarumlaut + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/ukM_onograph-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/ukM_onograph-cy.glif new file mode 100644 index 00000000..09158a65 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/ukM_onograph-cy.glif @@ -0,0 +1,78 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + y-30 + com.fontlab.metricsRight + y-20 + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/ukcyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/ukcyr.glif new file mode 100644 index 00000000..02f80d8e --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/ukcyr.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + y + com.fontlab.recipe + uni1C82_у + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/umacron.glif b/sources/FixelText-ExtraBold.ufo/glyphs/umacron.glif new file mode 100644 index 00000000..7b2a2629 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/umacron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+macron + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/umacroncyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/umacroncyr.glif new file mode 100644 index 00000000..17e6e7a3 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/umacroncyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u-cy+macron + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/underscore.glif b/sources/FixelText-ExtraBold.ufo/glyphs/underscore.glif new file mode 100644 index 00000000..edeafae0 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/underscore.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/uni1C_80.glif b/sources/FixelText-ExtraBold.ufo/glyphs/uni1C_80.glif new file mode 100644 index 00000000..e75b7fd4 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/uni1C_80.glif @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + б + com.fontlab.metricsRight + o-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/uni1C_81.glif b/sources/FixelText-ExtraBold.ufo/glyphs/uni1C_81.glif new file mode 100644 index 00000000..ce4b1b69 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/uni1C_81.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + д-10 + com.fontlab.metricsRight + | + com.fontlab.recipe + д + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/uni1C_82.glif b/sources/FixelText-ExtraBold.ufo/glyphs/uni1C_82.glif new file mode 100644 index 00000000..85df70d2 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/uni1C_82.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/uni1C_83.glif b/sources/FixelText-ExtraBold.ufo/glyphs/uni1C_83.glif new file mode 100644 index 00000000..6cf3b4fd --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/uni1C_83.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + c + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/uni1C_84.glif b/sources/FixelText-ExtraBold.ufo/glyphs/uni1C_84.glif new file mode 100644 index 00000000..4e7a33ad --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/uni1C_84.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/uni1C_85.glif b/sources/FixelText-ExtraBold.ufo/glyphs/uni1C_85.glif new file mode 100644 index 00000000..8c5ba2a0 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/uni1C_85.glif @@ -0,0 +1,20 @@ + + + + + + + + + + com.fontlab.metricsLeft + ш + com.fontlab.metricsRight + l() + com.fontlab.recipe + ш + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/uni1C_86.glif b/sources/FixelText-ExtraBold.ufo/glyphs/uni1C_86.glif new file mode 100644 index 00000000..446f47d5 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/uni1C_86.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + uni1C84 + com.fontlab.metricsRight + ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/uni1C_87.glif b/sources/FixelText-ExtraBold.ufo/glyphs/uni1C_87.glif new file mode 100644 index 00000000..638a91f5 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/uni1C_87.glif @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + uni1C84-40 + com.fontlab.metricsRight + ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/uni1C_88.glif b/sources/FixelText-ExtraBold.ufo/glyphs/uni1C_88.glif new file mode 100644 index 00000000..d8d1856b --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/uni1C_88.glif @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/uni1E_B_C_.glif b/sources/FixelText-ExtraBold.ufo/glyphs/uni1E_B_C_.glif new file mode 100644 index 00000000..ecee7d63 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/uni1E_B_C_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+tilde.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/uni1E_B_D_.glif b/sources/FixelText-ExtraBold.ufo/glyphs/uni1E_B_D_.glif new file mode 100644 index 00000000..31af83dd --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/uni1E_B_D_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+tilde + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/uni2010.glif b/sources/FixelText-ExtraBold.ufo/glyphs/uni2010.glif new file mode 100644 index 00000000..10fc5ace --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/uni2010.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + hyphen + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/uni2D_E_E_.case.glif b/sources/FixelText-ExtraBold.ufo/glyphs/uni2D_E_E_.case.glif new file mode 100644 index 00000000..dc6ec073 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/uni2D_E_E_.case.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/uni2D_E_E_.glif b/sources/FixelText-ExtraBold.ufo/glyphs/uni2D_E_E_.glif new file mode 100644 index 00000000..c02cef84 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/uni2D_E_E_.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/uniE_000.alt.glif b/sources/FixelText-ExtraBold.ufo/glyphs/uniE_000.alt.glif new file mode 100644 index 00000000..dac59b56 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/uniE_000.alt.glif @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + ї_ї + public.markColor + 0.6,0.997,1,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/uniE_000.glif b/sources/FixelText-ExtraBold.ufo/glyphs/uniE_000.glif new file mode 100644 index 00000000..49d7eb49 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/uniE_000.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + ї_ї + public.markColor + 0.6,0.997,1,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/uniE_01A_.glif b/sources/FixelText-ExtraBold.ufo/glyphs/uniE_01A_.glif new file mode 100644 index 00000000..c128f985 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/uniE_01A_.glif @@ -0,0 +1,115 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/uniF_43A_.glif b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_43A_.glif new file mode 100644 index 00000000..b5d57c1c --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_43A_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/uniF_43B_.glif b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_43B_.glif new file mode 100644 index 00000000..31843940 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_43B_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ustraightcyr+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/uniF_45D_.glif b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_45D_.glif new file mode 100644 index 00000000..180cfae4 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_45D_.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Є+acute.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/uniF_45E_.glif b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_45E_.glif new file mode 100644 index 00000000..35ce9b15 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_45E_.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Iacute + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/uniF_45F_.glif b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_45F_.glif new file mode 100644 index 00000000..af8ca307 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_45F_.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + com.fontlab.recipe + I+dieresiscase.alt+acute.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/uniF_475.glif b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_475.glif new file mode 100644 index 00000000..dbcaa5d2 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_475.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + є+acute + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/uniF_476.glif b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_476.glif new file mode 100644 index 00000000..e4033619 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_476.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + iacute + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/uniF_477.glif b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_477.glif new file mode 100644 index 00000000..9ecdd814 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_477.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + dotlessi+dieresisacute + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/uniF_478.glif b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_478.glif new file mode 100644 index 00000000..61843261 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_478.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Yat+acute.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/uniF_479.glif b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_479.glif new file mode 100644 index 00000000..f41db99c --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_479.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + yat+acute + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/uniF_498.glif b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_498.glif new file mode 100644 index 00000000..ec3ac3d3 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_498.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ю+dieresis.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/uniF_499.glif b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_499.glif new file mode 100644 index 00000000..0a269347 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_499.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ю+dieresis + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/uniF_49A_.glif b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_49A_.glif new file mode 100644 index 00000000..1e406b63 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_49A_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Obarcyr+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/uniF_49B_.glif b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_49B_.glif new file mode 100644 index 00000000..1f23953a --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_49B_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + obarcyr+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/uniF_49C_.glif b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_49C_.glif new file mode 100644 index 00000000..286e90f2 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_49C_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Schwacyr+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/uniF_49D_.glif b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_49D_.glif new file mode 100644 index 00000000..bbf34357 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_49D_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + schwacyr+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/uniF_49E_.glif b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_49E_.glif new file mode 100644 index 00000000..31c27d2f --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_49E_.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Yatcyr + com.fontlab.metricsRight + Tshecyr + com.fontlab.recipe + Shhacyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/uniF_49F_.glif b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_49F_.glif new file mode 100644 index 00000000..4d7fadc7 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_49F_.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + hbar + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/uniF_4C_6.glif b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_4C_6.glif new file mode 100644 index 00000000..2e35981f --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_4C_6.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ч + com.fontlab.metricsRight + Ч + com.fontlab.recipe + Ч + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/uniF_4C_7.glif b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_4C_7.glif new file mode 100644 index 00000000..d392f556 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_4C_7.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ч + com.fontlab.metricsRight + ч + com.fontlab.recipe + ч+enhookcyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/uniF_4C_C_.glif b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_4C_C_.glif new file mode 100644 index 00000000..4388838e --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_4C_C_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + У+acute.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/uniF_4C_D_.glif b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_4C_D_.glif new file mode 100644 index 00000000..414c81de --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_4C_D_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + y+acute + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/uniF_4D_2.glif b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_4D_2.glif new file mode 100644 index 00000000..ef671f88 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_4D_2.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+grave.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/uniF_4D_3.glif b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_4D_3.glif new file mode 100644 index 00000000..d6ee4eaa --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_4D_3.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+grave + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/uniF_4D_4.glif b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_4D_4.glif new file mode 100644 index 00000000..fef5ffce --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_4D_4.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + P+caron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/uniF_4D_5.glif b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_4D_5.glif new file mode 100644 index 00000000..37dc8bd6 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_4D_5.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + p+caron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/uniF_4D_6.glif b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_4D_6.glif new file mode 100644 index 00000000..ed0de2c1 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_4D_6.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Э+dotaccent.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/uniF_4D_7.glif b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_4D_7.glif new file mode 100644 index 00000000..f8dd5a96 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_4D_7.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + э+dotaccent + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/uniF_4D_8.glif b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_4D_8.glif new file mode 100644 index 00000000..1739ed7e --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_4D_8.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Я+dieresis.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/uniF_4D_9.glif b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_4D_9.glif new file mode 100644 index 00000000..611dfb63 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_4D_9.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + я+dieresis + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/uniF_50E_.glif b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_50E_.glif new file mode 100644 index 00000000..30a95645 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_50E_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/uniF_50F_.glif b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_50F_.glif new file mode 100644 index 00000000..a69f274c --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_50F_.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/uniF_510.glif b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_510.glif new file mode 100644 index 00000000..f131a432 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_510.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/uniF_511.glif b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_511.glif new file mode 100644 index 00000000..5a238618 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_511.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/uniF_512.glif b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_512.glif new file mode 100644 index 00000000..71a997ea --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_512.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + com.fontlab.metricsLeft + E + com.fontlab.metricsRight + E + com.fontlab.recipe + E+dieresis.case+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/uniF_513.glif b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_513.glif new file mode 100644 index 00000000..c5910088 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_513.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.recipe + e+dieresis+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/uniF_514.glif b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_514.glif new file mode 100644 index 00000000..b45104b3 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_514.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + com.fontlab.metricsLeft + E + com.fontlab.metricsRight + E + com.fontlab.recipe + E+dieresis.case+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/uniF_515.glif b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_515.glif new file mode 100644 index 00000000..c3c2abdf --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_515.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.recipe + e+dieresis+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/uniF_516.glif b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_516.glif new file mode 100644 index 00000000..4dbf4eec --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_516.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + З+caron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/uniF_517.glif b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_517.glif new file mode 100644 index 00000000..1c2f8a19 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_517.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + з+caron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/uniF_518.glif b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_518.glif new file mode 100644 index 00000000..e642f9f4 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_518.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/uniF_519.glif b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_519.glif new file mode 100644 index 00000000..bd780b1d --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_519.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/uniF_51A_.glif b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_51A_.glif new file mode 100644 index 00000000..d08e6269 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_51A_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/uniF_51B_.glif b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_51B_.glif new file mode 100644 index 00000000..eb9bc911 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_51B_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/uniF_51C_.glif b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_51C_.glif new file mode 100644 index 00000000..b7f8c28b --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_51C_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Obarcyr+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/uniF_51D_.glif b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_51D_.glif new file mode 100644 index 00000000..e492d06f --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_51D_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + obarcyr+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/uniF_51E_.glif b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_51E_.glif new file mode 100644 index 00000000..67e4c50e --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_51E_.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + com.fontlab.recipe + Obarcyr+dieresis.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/uniF_51F_.glif b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_51F_.glif new file mode 100644 index 00000000..18bf2dc8 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_51F_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.recipe + obarcyr+dieresis+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/uniF_521.glif b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_521.glif new file mode 100644 index 00000000..6687de44 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_521.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ы+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/uniF_522.glif b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_522.glif new file mode 100644 index 00000000..31ef03b3 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_522.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Э+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/uniF_523.glif b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_523.glif new file mode 100644 index 00000000..11e7557e --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_523.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + э+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/uniF_524.glif b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_524.glif new file mode 100644 index 00000000..b35fa212 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_524.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Э+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/uniF_525.glif b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_525.glif new file mode 100644 index 00000000..f7f7d31d --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_525.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + э+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/uniF_526.glif b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_526.glif new file mode 100644 index 00000000..18835816 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_526.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Є+dieresis.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/uniF_527.glif b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_527.glif new file mode 100644 index 00000000..e85eb348 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_527.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + є+dieresis + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/uniF_528.glif b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_528.glif new file mode 100644 index 00000000..359ff659 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_528.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Я+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/uniF_529.glif b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_529.glif new file mode 100644 index 00000000..9839cfc7 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_529.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + я+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/uniF_52A_.glif b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_52A_.glif new file mode 100644 index 00000000..f9190177 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_52A_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Я+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/uniF_52B_.glif b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_52B_.glif new file mode 100644 index 00000000..8f781991 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_52B_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + я+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/uniF_52C_.glif b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_52C_.glif new file mode 100644 index 00000000..acb9b326 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_52C_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ю+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/uniF_52D_.glif b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_52D_.glif new file mode 100644 index 00000000..b77dea58 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_52D_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ю+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/uniF_52E_.glif b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_52E_.glif new file mode 100644 index 00000000..24d0d6fc --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_52E_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ю+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/uniF_52F_.glif b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_52F_.glif new file mode 100644 index 00000000..b3d5e891 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_52F_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ю+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/uniF_532.glif b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_532.glif new file mode 100644 index 00000000..a802c9c0 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_532.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Й + com.fontlab.metricsRight + Й + com.fontlab.recipe + Й + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/uniF_533.glif b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_533.glif new file mode 100644 index 00000000..403cbbbd --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_533.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + l() + com.fontlab.recipe + й+enhookcyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/uniF_536.glif b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_536.glif new file mode 100644 index 00000000..3daa1f47 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_536.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ы+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/uniF_537.glif b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_537.glif new file mode 100644 index 00000000..3d078017 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_537.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ы+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/uniF_538.glif b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_538.glif new file mode 100644 index 00000000..88638035 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_538.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Reversedzecyr+dieresis.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/uniF_539.glif b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_539.glif new file mode 100644 index 00000000..79be9ac9 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_539.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + reversedzecyr+dieresis + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/uniF_830.glif b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_830.glif new file mode 100644 index 00000000..be8a8f4a --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_830.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+circumflex.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/uniF_831.glif b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_831.glif new file mode 100644 index 00000000..1c51ffc1 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_831.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+circumflex + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/uniF_833.glif b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_833.glif new file mode 100644 index 00000000..18a12bfb --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_833.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+circumflex.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/uniF_834.glif b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_834.glif new file mode 100644 index 00000000..f5782454 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_834.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+circumflex + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/uniF_839.glif b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_839.glif new file mode 100644 index 00000000..949fc869 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_839.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+circumflex.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/uniF_83A_.glif b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_83A_.glif new file mode 100644 index 00000000..de17ae0e --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_83A_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+circumflex + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/uniF_86F_.glif b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_86F_.glif new file mode 100644 index 00000000..070710bf --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_86F_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + K+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/uniF_870.glif b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_870.glif new file mode 100644 index 00000000..078d9ddb --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_870.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + к+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/uniF_872.glif b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_872.glif new file mode 100644 index 00000000..6155bb3f --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_872.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Л+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/uniF_873.glif b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_873.glif new file mode 100644 index 00000000..6348af9e --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_873.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + л+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/uniF_875.glif b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_875.glif new file mode 100644 index 00000000..e8a7fac2 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_875.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/uniF_876.glif b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_876.glif new file mode 100644 index 00000000..7ed7d746 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_876.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/uniF_878.glif b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_878.glif new file mode 100644 index 00000000..75e0bbf3 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_878.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + X+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/uniF_879.glif b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_879.glif new file mode 100644 index 00000000..8318fb67 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_879.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + x+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/uniF_87B_.glif b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_87B_.glif new file mode 100644 index 00000000..b107f5e2 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_87B_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ц+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/uniF_87C_.glif b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_87C_.glif new file mode 100644 index 00000000..95165227 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_87C_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ц+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/uniF_87E_.glif b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_87E_.glif new file mode 100644 index 00000000..e6c4b2b9 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_87E_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ч+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/uniF_87F_.glif b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_87F_.glif new file mode 100644 index 00000000..fb765d42 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/uniF_87F_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ч+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/uogonek.glif b/sources/FixelText-ExtraBold.ufo/glyphs/uogonek.glif new file mode 100644 index 00000000..fc388380 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/uogonek.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+ogonek + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/uring.glif b/sources/FixelText-ExtraBold.ufo/glyphs/uring.glif new file mode 100644 index 00000000..df5b4c8f --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/uring.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+ring + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/ushort-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/ushort-cy.glif new file mode 100644 index 00000000..4cb5a1b2 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/ushort-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + uni0443+breve + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/ustraightcyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/ustraightcyr.glif new file mode 100644 index 00000000..de6c3643 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/ustraightcyr.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + v + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/ustraightstrokecyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/ustraightstrokecyr.glif new file mode 100644 index 00000000..d4e0e7a8 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/ustraightstrokecyr.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/utilde.glif b/sources/FixelText-ExtraBold.ufo/glyphs/utilde.glif new file mode 100644 index 00000000..398f82b1 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/utilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+tilde + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/v.glif b/sources/FixelText-ExtraBold.ufo/glyphs/v.glif new file mode 100644 index 00000000..ce1d0d3a --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/v.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/ve-cy.B_G_R_.glif b/sources/FixelText-ExtraBold.ufo/glyphs/ve-cy.B_G_R_.glif new file mode 100644 index 00000000..7eaf29c0 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/ve-cy.B_G_R_.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + b-5 + com.fontlab.metricsRight + b + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/ve-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/ve-cy.glif new file mode 100644 index 00000000..c69f62f8 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/ve-cy.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/ve-cy.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/ve-cy.ss01.glif new file mode 100644 index 00000000..cf3e9cf4 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/ve-cy.ss01.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/virgo.glif b/sources/FixelText-ExtraBold.ufo/glyphs/virgo.glif new file mode 100644 index 00000000..05e84a17 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/virgo.glif @@ -0,0 +1,224 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =55 + com.fontlab.metricsRight + =35 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/vzmetcomb-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/vzmetcomb-cy.glif new file mode 100644 index 00000000..dbde07cc --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/vzmetcomb-cy.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/w.glif b/sources/FixelText-ExtraBold.ufo/glyphs/w.glif new file mode 100644 index 00000000..25605777 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/w.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/wacute.glif b/sources/FixelText-ExtraBold.ufo/glyphs/wacute.glif new file mode 100644 index 00000000..c90ca6a4 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/wacute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + w+acute + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/wcircumflex.glif b/sources/FixelText-ExtraBold.ufo/glyphs/wcircumflex.glif new file mode 100644 index 00000000..586bde87 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/wcircumflex.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + w+circumflex + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/wdieresis.glif b/sources/FixelText-ExtraBold.ufo/glyphs/wdieresis.glif new file mode 100644 index 00000000..d531b346 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/wdieresis.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + w+dieresis + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/wecyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/wecyr.glif new file mode 100644 index 00000000..691edc0a --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/wecyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + w + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/wgrave.glif b/sources/FixelText-ExtraBold.ufo/glyphs/wgrave.glif new file mode 100644 index 00000000..35b87ffd --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/wgrave.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + w+grave + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/x.glif b/sources/FixelText-ExtraBold.ufo/glyphs/x.glif new file mode 100644 index 00000000..fad5d043 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/x.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/xatailcyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/xatailcyr.glif new file mode 100644 index 00000000..4683bb80 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/xatailcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + x + com.fontlab.metricsRight + zhetailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/y.glif b/sources/FixelText-ExtraBold.ufo/glyphs/y.glif new file mode 100644 index 00000000..389ecf9e --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/y.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/yacute.glif b/sources/FixelText-ExtraBold.ufo/glyphs/yacute.glif new file mode 100644 index 00000000..6bd1209b --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/yacute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + y+acute + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/yaecyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/yaecyr.glif new file mode 100644 index 00000000..3cc3a977 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/yaecyr.glif @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + я + com.fontlab.metricsRight + e + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/yatI_otified-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/yatI_otified-cy.glif new file mode 100644 index 00000000..5dbc1e8b --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/yatI_otified-cy.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + com.fontlab.metricsRight + yatcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/yatcyr.B_G_R_.glif b/sources/FixelText-ExtraBold.ufo/glyphs/yatcyr.B_G_R_.glif new file mode 100644 index 00000000..35f53c30 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/yatcyr.B_G_R_.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hardsign-cy + com.fontlab.metricsRight + ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/yatcyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/yatcyr.glif new file mode 100644 index 00000000..ca73012a --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/yatcyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hardsign-cy + com.fontlab.metricsRight + ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/ycircumflex.glif b/sources/FixelText-ExtraBold.ufo/glyphs/ycircumflex.glif new file mode 100644 index 00000000..680636d6 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/ycircumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + y+circumflex + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/ydieresis.glif b/sources/FixelText-ExtraBold.ufo/glyphs/ydieresis.glif new file mode 100644 index 00000000..973e1421 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/ydieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + y+dieresis + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/yen.glif b/sources/FixelText-ExtraBold.ufo/glyphs/yen.glif new file mode 100644 index 00000000..7725483f --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/yen.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/yen.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/yen.ss01.glif new file mode 100644 index 00000000..27f35851 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/yen.ss01.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/yerN_eutral-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/yerN_eutral-cy.glif new file mode 100644 index 00000000..c87ae40a --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/yerN_eutral-cy.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hardsign-cy + com.fontlab.metricsRight + ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/yeru-cy.accented.glif b/sources/FixelText-ExtraBold.ufo/glyphs/yeru-cy.accented.glif new file mode 100644 index 00000000..2b8867c2 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/yeru-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ы+acute + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/yeru-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/yeru-cy.glif new file mode 100644 index 00000000..bcbfcdc3 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/yeru-cy.glif @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/yeru-cy.ss01.glif b/sources/FixelText-ExtraBold.ufo/glyphs/yeru-cy.ss01.glif new file mode 100644 index 00000000..e7242320 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/yeru-cy.ss01.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/yeruB_ackyer-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/yeruB_ackyer-cy.glif new file mode 100644 index 00000000..b55ff5f8 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/yeruB_ackyer-cy.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hardsign-cy + com.fontlab.metricsRight + dotlessi + com.fontlab.recipe + hardsign-cy_dotlessi + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/yi-cy.alt.glif b/sources/FixelText-ExtraBold.ufo/glyphs/yi-cy.alt.glif new file mode 100644 index 00000000..3e40586c --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/yi-cy.alt.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.recipe + idieresis + public.markColor + 0.6,0.997,1,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/yi-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/yi-cy.glif new file mode 100644 index 00000000..dc99d338 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/yi-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + idieresis + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/ylongdieresiscyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/ylongdieresiscyr.glif new file mode 100644 index 00000000..f295367f --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/ylongdieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + yeru-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/yn-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/yn-cy.glif new file mode 100644 index 00000000..b2e41051 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/yn-cy.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |izhitsacyr + com.fontlab.metricsRight + |izhitsacyr + com.fontlab.recipe + izhitsa + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/yuR_eversed-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/yuR_eversed-cy.glif new file mode 100644 index 00000000..fd890625 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/yuR_eversed-cy.glif @@ -0,0 +1,20 @@ + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l + com.fontlab.recipe + ю + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/yusB_lended-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/yusB_lended-cy.glif new file mode 100644 index 00000000..5691ab8e --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/yusB_lended-cy.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + yusbigcyr + com.fontlab.metricsRight + yusbigcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/yusC_losedlittle-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/yusC_losedlittle-cy.glif new file mode 100644 index 00000000..485d43c6 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/yusC_losedlittle-cy.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + yuslittlecyr + com.fontlab.metricsRight + yuslittlecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/yusbigcyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/yusbigcyr.glif new file mode 100644 index 00000000..f0c8d55f --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/yusbigcyr.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/yusbigiotifiedcyr.B_G_R_.glif b/sources/FixelText-ExtraBold.ufo/glyphs/yusbigiotifiedcyr.B_G_R_.glif new file mode 100644 index 00000000..a4e5ea78 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/yusbigiotifiedcyr.B_G_R_.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + com.fontlab.metricsRight + ж + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/yusbigiotifiedcyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/yusbigiotifiedcyr.glif new file mode 100644 index 00000000..5a51a3ea --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/yusbigiotifiedcyr.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + ж + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/yusiotifiedC_losedL_ittle-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/yusiotifiedC_losedL_ittle-cy.glif new file mode 100644 index 00000000..f35a8261 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/yusiotifiedC_losedL_ittle-cy.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + yusClosedlittle-cy + com.fontlab.recipe + yusClosedlittle-cy+н + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/yuslittlecyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/yuslittlecyr.glif new file mode 100644 index 00000000..4d5cc720 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/yuslittlecyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + v-5 + com.fontlab.metricsRight + v-5 + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/yuslittleiotifiedcyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/yuslittleiotifiedcyr.glif new file mode 100644 index 00000000..f2e6c5eb --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/yuslittleiotifiedcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + v-10 + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/z.glif b/sources/FixelText-ExtraBold.ufo/glyphs/z.glif new file mode 100644 index 00000000..838ff431 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/z.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/zacute.glif b/sources/FixelText-ExtraBold.ufo/glyphs/zacute.glif new file mode 100644 index 00000000..15591671 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/zacute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + z+acute + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/zcaron.glif b/sources/FixelText-ExtraBold.ufo/glyphs/zcaron.glif new file mode 100644 index 00000000..6e6c39d0 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/zcaron.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + z+caron + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/zdotaccent.glif b/sources/FixelText-ExtraBold.ufo/glyphs/zdotaccent.glif new file mode 100644 index 00000000..28048a0e --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/zdotaccent.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + z+dotaccent + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/ze-cy.B_G_R_.glif b/sources/FixelText-ExtraBold.ufo/glyphs/ze-cy.B_G_R_.glif new file mode 100644 index 00000000..6bccde32 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/ze-cy.B_G_R_.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |c-12 + com.fontlab.metricsRight + в-5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/ze-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/ze-cy.glif new file mode 100644 index 00000000..9ee115e2 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/ze-cy.glif @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |c-5 + com.fontlab.metricsRight + в + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/zedieresiscyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/zedieresiscyr.glif new file mode 100644 index 00000000..c2958f49 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/zedieresiscyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ze-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/zemlya-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/zemlya-cy.glif new file mode 100644 index 00000000..d0b77b22 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/zemlya-cy.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + z-10 + com.fontlab.metricsRight + z + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/zero.glif b/sources/FixelText-ExtraBold.ufo/glyphs/zero.glif new file mode 100644 index 00000000..2acefb86 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/zero.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/zero.osf.glif b/sources/FixelText-ExtraBold.ufo/glyphs/zero.osf.glif new file mode 100644 index 00000000..88c21224 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/zero.osf.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + zero + com.fontlab.metricsRight + zero + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/zero.tf.glif b/sources/FixelText-ExtraBold.ufo/glyphs/zero.tf.glif new file mode 100644 index 00000000..39da4aca --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/zero.tf.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/zetailcyr.B_S_H_.glif b/sources/FixelText-ExtraBold.ufo/glyphs/zetailcyr.B_S_H_.glif new file mode 100644 index 00000000..7139dc62 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/zetailcyr.B_S_H_.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + з + com.fontlab.metricsRight + з + com.fontlab.recipe + з + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/zetailcyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/zetailcyr.glif new file mode 100644 index 00000000..5ccaa00b --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/zetailcyr.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + з + com.fontlab.metricsRight + з + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/zhe-cy.B_G_R_.glif b/sources/FixelText-ExtraBold.ufo/glyphs/zhe-cy.B_G_R_.glif new file mode 100644 index 00000000..b7cbadb0 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/zhe-cy.B_G_R_.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |k + com.fontlab.metricsRight + k + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/zhe-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/zhe-cy.glif new file mode 100644 index 00000000..12a27958 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/zhe-cy.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |k + com.fontlab.metricsRight + k + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/zhebrevecyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/zhebrevecyr.glif new file mode 100644 index 00000000..fa41b951 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/zhebrevecyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + zhe-cy+breve + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/zhedieresiscyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/zhedieresiscyr.glif new file mode 100644 index 00000000..dd799353 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/zhedieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + zhe-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/zhetailcyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/zhetailcyr.glif new file mode 100644 index 00000000..9b276722 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/zhetailcyr.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ж + com.fontlab.metricsRight + katailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/zhwe-cy.glif b/sources/FixelText-ExtraBold.ufo/glyphs/zhwe-cy.glif new file mode 100644 index 00000000..574974e6 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/zhwe-cy.glif @@ -0,0 +1,87 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + з + com.fontlab.metricsRight + ж + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/glyphs/zjekomicyr.glif b/sources/FixelText-ExtraBold.ufo/glyphs/zjekomicyr.glif new file mode 100644 index 00000000..97baa29c --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/glyphs/zjekomicyr.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + з-20 + com.fontlab.metricsRight + njekomicyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraBold.ufo/groups.plist b/sources/FixelText-ExtraBold.ufo/groups.plist new file mode 100644 index 00000000..0215e532 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/groups.plist @@ -0,0 +1,2992 @@ + + + + + accent + + grave + acute.case + grave.case + acute + + case + + arrowdown.case + arrowdown.ss01.case + arrowleft.case + arrowleft.ss01.case + arrowright.case + arrowright.ss01.case + arrowup.case + arrowup.ss01.case + backslash.case + bar.case + braceleft.case + braceright.case + bracketleft.case + bracketright.case + brokenbar.case + bullet.case + colon.case + emdash.case + endash.case + exclamdown.case + guillemetleft.case + guillemetright.case + guilsinglleft.case + guilsinglright.case + hyphen.case + parenleft.case + parenright.case + questiondown.case + semicolon.case + at.case + bracketangleleft.case + bracketangleright.case + slash.case + + case_def + + arrowdown + arrowdown.ss01 + arrowleft + arrowleft.ss01 + arrowright + arrowright.ss01 + arrowup + arrowup.ss01 + backslash + bar + braceleft + braceright + bracketleft + bracketright + brokenbar + bullet + colon + emdash + endash + exclamdown + guillemetleft + guillemetright + guilsinglleft + guilsinglright + hyphen + parenleft + parenright + questiondown + semicolon + at + bracketangleleft + bracketangleright + slash + + cpsp + + 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 + Agrave + Aacute + Acircumflex + Atilde + Adieresis + Aring + AE + Ccedilla + Egrave + Eacute + Ecircumflex + Edieresis + Igrave + Iacute + Icircumflex + Idieresis + Eth + Ntilde + Ograve + Oacute + Ocircumflex + Otilde + Odieresis + Oslash + Ugrave + Uacute + Ucircumflex + Udieresis + Yacute + Thorn + Amacron + Abreve + Aogonek + Cacute + Ccircumflex + Cdotaccent + Ccaron + Dcaron + Dcroat + Emacron + Ebreve + Edotaccent + Eogonek + Ecaron + Gcircumflex + Gbreve + Gdotaccent + Gcommaaccent + Hcircumflex + Hbar + Itilde + Imacron + Ibreve + Iogonek + Idotaccent + IJ + Jcircumflex + Kcommaaccent + Lacute + Lcommaaccent + Lcaron + Ldot + Lslash + Nacute + Ncommaaccent + Ncaron + Eng + Omacron + Obreve + Ohungarumlaut + OE + Racute + Rcommaaccent + Rcaron + Sacute + Scircumflex + Scedilla + Scaron + Tcedilla + Tcaron + Tbar + Utilde + Umacron + Ubreve + Uring + Uhungarumlaut + Uogonek + Wcircumflex + Ycircumflex + Ydieresis + Zacute + Zdotaccent + Zcaron + Schwa + Acaron + Gacute + AEacute + Oslashacute + Scommaaccent + Tcommaaccent + Delta + Omega + Iegravecyr + uniF43A + A-cy.accented + E-cy.accented + Ii-cy.accented + O-cy.accented + U-cy.accented + Yeru-cy.accented + Ereversed-cy.accented + Iu-cy.accented + Ia-cy.accented + Io-cy.accented + uniF498 + uniF49A + uniF49C + uniF49E + uniF4C6 + uniF4CC + uniF4D2 + uniF4D4 + uniF4D6 + uniF4D8 + uniF50E + uniF510 + uniF512 + uniF514 + uniF516 + uniF518 + uniF51A + uniF51C + uniF51E + Yeru-cymacron + uniF522 + uniF524 + uniF526 + uniF528 + uniF52A + uniF52C + uniF52E + uniF532 + uniF536 + uniF538 + uniF830 + uniF833 + uniF839 + uniF86F + uniF872 + uniF875 + uniF878 + uniF87B + uniF87E + Io-cy + Djecyr + Gjecyr + E-cy + Dze-cy + I-cy + Yi-cy + Jecyr + Ljecyr + Njecyr + Tshecyr + Kjecyr + Igravecyr + Ushort-cy + Dzhecyr + A-cy + Be-cy + Ve-cy + Ge-cy + De-cy + Ie-cy + Zhe-cy + Ze-cy + Ii-cy + Iishort-cy + Ka-cy + El-cy + Em-cy + En-cy + O-cy + Pe-cy + Er-cy + Es-cy + Te-cy + U-cy + Ef-cy + Ha-cy + Tse-cy + Che-cy + Sha-cy + Shcha-cy + Hardsign-cy + Yeru-cy + Softsign-cy + Ereversed-cy + Iu-cy + Ia-cy + Omegacyr + Yatcyr + Eiotifiedcyr + Yuslittlecyr + Yuslittleiotifiedcyr + Yusbigcyr + Yusbigiotifiedcyr + Ksicyr + Psicyr + Fitacyr + Izhitsacyr + Izhitsagravedblcyr + Ukcyr + Omegaroundcyr + Omegatitlocyr + Otcyr + Koppacyr + Ishortsharptailcyr + Semisoftcyr + Ertickcyr + Gheupturn-cy + Gestrokecyr + Gehookcyr + Zhetailcyr + Zetailcyr + Katailcyr + Kaverticalstrokecyr + Kastrokecyr + Kabashkcyr + Entailcyr + Engecyr + Pehookcyr + Haabkhcyr + Estailcyr + Tetailcyr + Ustraightcyr + Ustraightstrokecyr + Xatailcyr + Tetsecyr + Chetailcyr + Chevertcyr + Shhacyr + Cheabkhcyr + Cheabkhtailcyr + Palochkacyr + Zhebrevecyr + Kahookcyr + Elsharptailcyr + Enhookcyr + Ensharptailcyr + Chekhakascyr + Emsharptailcyr + Abrevecyr + Adieresiscyr + Aiecyr + Iebrevecyr + Schwacyr + Schwadieresiscyr + Zhedieresiscyr + Zedieresiscyr + Dzeabkhcyr + Imacroncyr + Idieresiscyr + Odieresiscyr + Obarcyr + Obardieresiscyr + Ereverseddieresiscyr + Umacroncyr + Udieresiscyr + Uacutedblcyr + Chedieresiscyr + Getailcyr + Ylongdieresiscyr + Gehookstrokecyr + Hahookcyr + Hastrokecyr + Dekomicyr + Djekomicyr + Zjekomicyr + Dzjekomicyr + Ljekomicyr + Njekomicyr + Sjekomicyr + Tjekomicyr + Reversedzecyr + Elhookcyr + Lhacyr + Rhacyr + Yaecyr + Qacyr + Wecyr + Kaaleutcyr + Elmiddlehookcyr + Enmiddlehookcyr + Petailcyr + Shhatailcyr + Enhookleftcyr + Dzzhecyr + Dchecyr + Eltailcyr + Wgrave + Wacute + Wdieresis + Germandbls + uni1EBC + Zemlya-cy + Dzelo-cy + DzeReversed-cy + Iota-cy + Djerv-cy + UkMonograph-cy + OmegaBroad-cy + YerNeutral-cy + YeruBackYer-cy + YatIotified-cy + YuReversed-cy + IotifiedA-cy + YusClosedlittle-cy + YusBlended-cy + YusiotifiedClosedLittle-cy + Yn-cy + TseReversed-cy + DeSoft-cy + ElSoft-cy + EmSoft-cy + OMonocular-cy + OBinocular-cy + ODoubleMonocular-cy + Dwe-cy + Dzwe-cy + Zhwe-cy + Cche-cy + Dzze-cy + TeWithMiddleHook-cy + Twe-cy + Tswe-cy + Tsse-cy + Tche-cy + Hwe-cy + Shwe-cy + DoubleO-cy + CrossedO-cy + A-cy.ss01 + A.ss01 + AE.ss01 + Aacute.ss01 + Abreve.ss01 + Acircumflex.ss01 + Adieresis.ss01 + Agrave.ss01 + Amacron.ss01 + Aogonek.ss01 + Aring.ss01 + Atilde.ss01 + Em-cy.ss01 + Eng.ss01 + G.ss01 + Gacute.ss01 + Gbreve.ss01 + Gcircumflex.ss01 + Gcommaaccent.ss01 + Gdotaccent.ss01 + Ha-cy.ss01 + Ia-cy.ss01 + J.ss01 + Jcircumflex.ss01 + K.ss01 + Ka-cy.ss01 + Kcommaaccent.ss01 + M.ss01 + N.ss01 + Nacute.ss01 + Ncaron.ss01 + Ncommaaccent.ss01 + Ntilde.ss01 + Q.ss01 + U-cy.ss01 + Ushort-cy.ss01 + V.ss01 + W.ss01 + Wacute.ss01 + Wcircumflex.ss01 + Wdieresis.ss01 + Wgrave.ss01 + X.ss01 + Y.ss01 + Yacute.ss01 + Ycircumflex.ss01 + Ydieresis.ss01 + Z.ss01 + Zacute.ss01 + Zcaron.ss01 + Zdotaccent.ss01 + Zetailcyr.BSH + Gestrokecyr.BSH + Estailcyr.BSH + Estailcyr.CHU + Zhe-cy.ss01 + + locl.SRB + + be-cy.SRB + iegravecyr.SRB + igravecyr.SRB + + loclSRB_def + + be-cy + iegravecyr + igravecyr + + locl_BGR + + De-cy.BGR + Ef-cy.BGR + El-cy.BGR + de-cy.BGR + eiotifiedcyr.BGR + el-cy.BGR + ge-cy.BGR + hardsign-cy.BGR + ii-cy.BGR + iishort-cy.BGR + iotifieda-cy.BGR + iu-cy.BGR + ka-cy.BGR + pe-cy.BGR + sha-cy.BGR + shcha-cy.BGR + softsign-cy.BGR + te-cy.BGR + tse-cy.BGR + ve-cy.BGR + yatcyr.BGR + yusbigiotifiedcyr.BGR + ze-cy.BGR + zhe-cy.BGR + + locl_def + + De-cy + Ef-cy + El-cy + de-cy + eiotifiedcyr + el-cy + ge-cy + hardsign-cy + ii-cy + iishort-cy + iotifieda-cy + iu-cy + ka-cy + pe-cy + sha-cy + shcha-cy + softsign-cy + te-cy + tse-cy + ve-cy + yatcyr + yusbigiotifiedcyr + ze-cy + zhe-cy + + pics + + neptune + leo + virgo + bishopwhite + knightwhite + rookblack + bishopblack + knightblack + heartwhite + diamondwhite-misc + spadewhite + heart + clubwhite + crossedswords + flower + floretteblack + florettewhite + floretteoutlinedpetalledblackeight + + pics_def + + A + B + C + D + E + F + G + H + I + J + K + L + M + N + O + P + Q + R + + public.kern1.A.ss012 + + A-cy.ss01 + A.ss01 + Aacute.ss01 + Abreve.ss01 + Acircumflex.ss01 + Adieresis.ss01 + Agrave.ss01 + Amacron.ss01 + Aogonek.ss01 + Aring.ss01 + Atilde.ss01 + + public.kern1.A2 + + A + A-cy + A-cy.accented + Aacute + Abreve + Abrevecyr + Acaron + Acircumflex + Adieresis + Adieresiscyr + Agrave + Amacron + Aogonek + Aring + Atilde + De-cy.BGR + Delta + El-cy.BGR + IotifiedA-cy + Yn-cy + YusClosedlittle-cy + YusiotifiedClosedLittle-cy + Yuslittlecyr + Yuslittleiotifiedcyr + uniF50E + uniF830 + + public.kern1.AE + + AE + AE.ss01 + AEacute + Aiecyr + + public.kern1.C1 + + C + Cacute + Ccaron + Ccedilla + Ccircumflex + Cdotaccent + E-cy + Eiotifiedcyr + Es-cy + Estailcyr + Estailcyr.BSH + Estailcyr.CHU + Reversedzecyr + uniF45D + uniF526 + uniF538 + uniF875 + + public.kern1.Decyr + + Chetailcyr + De-cy + Dwe-cy + Dzze-cy + Elsharptailcyr + Eltailcyr + Emsharptailcyr + Ensharptailcyr + Entailcyr + Ishortsharptailcyr + Petailcyr + Shcha-cy + Shwe-cy + Tetsecyr + Tse-cy + Tswe-cy + uniF87B + + public.kern1.E1 + + E + E-cy.accented + Eacute + Ebreve + Ecaron + Ecircumflex + Edieresis + Edotaccent + Egrave + Emacron + Eogonek + Ie-cy + Iebrevecyr + Io-cy + Io-cy.accented + Yaecyr + uni1EBC + uniF510 + uniF512 + uniF514 + uniF833 + + public.kern1.G.ss01 + + G.ss01 + Gacute.ss01 + Gbreve.ss01 + Gcircumflex.ss01 + Gcommaaccent.ss01 + Gdotaccent.ss01 + + public.kern1.G1 + + G + Gacute + Gbreve + Gcircumflex + Gcommaaccent + Gdotaccent + + public.kern1.Ge-cy + + DeSoft-cy + ElSoft-cy + EmSoft-cy + Engecyr + Ge-cy + Gehookstrokecyr + Gestrokecyr + Gestrokecyr.BSH + Getailcyr + Gheupturn-cy + Gjecyr + TseReversed-cy + YeruBackYer-cy + uniF872 + + public.kern1.H + + Eng + Eng.ss01 + H + Hbar + Hcircumflex + I + Iacute + Ibreve + Icircumflex + Idieresis + Idotaccent + Igrave + Imacron + Iogonek + Itilde + J.ss01 + Jcircumflex.ss01 + M + M.ss01 + N + N.ss01 + Nacute + Nacute.ss01 + Ncaron + Ncaron.ss01 + Ncommaaccent + Ncommaaccent.ss01 + Ntilde + Ntilde.ss01 + + public.kern1.Hardcyr + + Hardsign-cy + Ljecyr + Njecyr + Semisoftcyr + Shhacyr + Softsign-cy + YatIotified-cy + Yatcyr + YerNeutral-cy + uniF478 + + public.kern1.J1 + + J + Jcircumflex + Jecyr + + public.kern1.K + + K + K.ss01 + Ka-cy + Ka-cy.ss01 + Kaaleutcyr + Kabashkcyr + Kastrokecyr + Kcommaaccent + Kcommaaccent.ss01 + Kjecyr + uniF86F + + public.kern1.L + + L + Lacute + Lcaron + Lcommaaccent + Lslash + + public.kern1.O + + Cheabkhcyr + Cheabkhtailcyr + CrossedO-cy + D + Dcaron + Dcroat + DoubleO-cy + Ef-cy + Ef-cy.BGR + Ereversed-cy + Ereversed-cy.accented + Ereverseddieresiscyr + Eth + Fitacyr + Iu-cy + Iu-cy.accented + O + O-cy + O-cy.accented + OBinocular-cy + ODoubleMonocular-cy + OMonocular-cy + Oacute + Obarcyr + Obardieresiscyr + Obreve + Ocircumflex + Odieresis + Odieresiscyr + Ograve + Ohungarumlaut + Omacron + Omega + Omegaroundcyr + Oslash + Oslashacute + Otilde + Q + Qacyr + Schwa + Schwacyr + Schwadieresiscyr + Sjekomicyr + uniF498 + uniF49A + uniF49C + uniF4D2 + uniF4D6 + uniF518 + uniF51A + uniF51C + uniF51E + uniF522 + uniF524 + uniF52C + uniF52E + uniF839 + + public.kern1.Oslash.alt + + Ha-cy + Ha-cy.ss01 + Hahookcyr + Lhacyr + Rhacyr + X + X.ss01 + uniF878 + + public.kern1.P + + Er-cy + Ertickcyr + P + uniF4D4 + + public.kern1.R + + R + Racute + Rcaron + Rcommaaccent + + public.kern1.S1 + + Dzwe-cy + S + Sacute + Scaron + Scedilla + Scircumflex + Scommaaccent + + public.kern1.T1 + + Koppacyr + T + Tcaron + Tcedilla + Tcommaaccent + Te-cy + Tetailcyr + Tsse-cy + Twe-cy + + public.kern1.U1 + + OmegaBroad-cy + Omegacyr + Omegatitlocyr + Otcyr + Psicyr + U + Uacute + Ubreve + Ucircumflex + Udieresis + Ugrave + Uhungarumlaut + Umacron + Uogonek + Uring + Utilde + + public.kern1.Ucyr1 + + U-cy + U-cy.accented + U-cy.ss01 + Uacutedblcyr + Udieresiscyr + Umacroncyr + Ushort-cy + Ushort-cy.ss01 + uniF4CC + + public.kern1.V + + Izhitsacyr + Izhitsagravedblcyr + V + V.ss01 + + public.kern1.W.ss011 + + W.ss01 + Wacute.ss01 + Wcircumflex.ss01 + Wdieresis.ss01 + Wgrave.ss01 + + public.kern1.W1 + + W + Wacute + Wcircumflex + Wdieresis + Wecyr + Wgrave + + public.kern1.Y.ss011 + + Y.ss01 + Yacute.ss01 + Ycircumflex.ss01 + Ydieresis.ss01 + + public.kern1.Y1 + + Ustraightcyr + Ustraightstrokecyr + Y + Yacute + Ycircumflex + Ydieresis + uniF43A + + public.kern1.Yacyr + + Cche-cy + Che-cy + Chedieresiscyr + Chekhakascyr + Chevertcyr + Dekomicyr + Elhookcyr + Em-cy + En-cy + Enhookcyr + Enhookleftcyr + I-cy + Ia-cy + Ia-cy.accented + Ia-cy.ss01 + Idieresiscyr + Ii-cy + Ii-cy.accented + Iishort-cy + Imacroncyr + Palochkacyr + Pe-cy + Sha-cy + Tche-cy + Yeru-cy + Yeru-cy.accented + Yeru-cymacron + Yi-cy + Ylongdieresiscyr + YuReversed-cy + palochkacyr + uniF45E + uniF45F + uniF4C6 + uniF4D8 + uniF528 + uniF52A + uniF532 + uniF536 + uniF87E + + public.kern1.Z1 + + Dzelo-cy + Z + Z.ss01 + Zacute + Zacute.ss01 + Zcaron + Zcaron.ss01 + Zdotaccent + Zdotaccent.ss01 + Zemlya-cy + + public.kern1.Ze-cy + + Dzeabkhcyr + Ksicyr + Ze-cy + Zedieresiscyr + Zetailcyr + Zetailcyr.BSH + uniF516 + + public.kern1.Zhe-cy + + Dzzhecyr + Katailcyr + Kaverticalstrokecyr + Xatailcyr + YusBlended-cy + Yusbigcyr + Yusbigiotifiedcyr + Zhe-cy + Zhebrevecyr + Zhedieresiscyr + Zhetailcyr + Zhwe-cy + + public.kern1.a1 + + a + aacute + abreve + acaron + acircumflex + adieresis + agrave + amacron + aogonek + aring + atilde + + public.kern1.c1 + + c + cacute + ccaron + ccedilla + ccircumflex + cdotaccent + e-cy + e-cy.hist + eiotifiedcyr + eiotifiedcyr.BGR + es-cy + estailcyr + estailcyr.BSH + estailcyr.CHU + koppacyr + reversedzecyr + sjekomicyr + uni1C83 + uniF475 + uniF527 + uniF539 + uniF876 + + public.kern1.comma1 + + comma + quotedblbase + quotesinglbase + + public.kern1.copyright1 + + copyright + registered + + public.kern1.dcaron + + dcaron + dcaron.ss01 + lcaron + + public.kern1.decyr1 + + chetailcyr + dchecyr + de-cy + de-cy.ss01 + dwe-cy + dzze-cy + elsharptailcyr + eltailcyr + emsharptailcyr + ensharptailcyr + entailcyr + ishortsharptailcyr + petailcyr + shcha-cy + shcha-cy.BGR + shhatailcyr + shwe-cy + tetsecyr + tse-cy + tse-cy.BGR + tswe-cy + uniF87C + + public.kern1.e.ss011 + + e.ss01 + eacute.ss01 + ebreve.ss01 + ecaron.ss01 + ecircumflex.ss01 + edieresis.ss01 + edotaccent.ss01 + egrave.ss01 + emacron.ss01 + eogonek.ss01 + oe.ss01 + + public.kern1.e1 + + ae + aeacute + aiecyr + cheabkhcyr + cheabkhtailcyr + e + e-cy.accented + eacute + ebreve + ecaron + ecircumflex + edieresis + edotaccent + egrave + emacron + eogonek + ie-cy + iebrevecyr + iegravecyr + iegravecyr.SRB + io-cy + io-cy.accented + uni1EBD + uniF511 + uniF513 + uniF515 + uniF834 + yaecyr + + public.kern1.el-cy.BGR + + el-cy.BGR + iotifieda-cy + iotifieda-cy.BGR + uni1C81 + yn-cy + yusClosedlittle-cy + yusiotifiedClosedLittle-cy + yuslittlecyr + yuslittleiotifiedcyr + + public.kern1.emdash1 + + emdash + endash + hyphen + + public.kern1.f1 + + f + f_f + + public.kern1.fi + + f_f_i + fi + + public.kern1.five1 + + five + five.tf + + public.kern1.four1 + + four + four.tf + + public.kern1.g.ss011 + + g.ss01 + gacute.ss01 + gbreve.ss01 + gcircumflex.ss01 + gcommaaccent.ss01 + gdotaccent.ss01 + + public.kern1.g1 + + g + gacute + gbreve + gcircumflex + gcommaaccent + gdotaccent + + public.kern1.gecyr + + deSoft-cy + elSoft-cy + emSoft-cy + engecyr + ge-cy + gehookstrokecyr + gestrokecyr + gestrokecyr.BSH + getailcyr + gheupturn-cy + gjecyr + + public.kern1.guillemotright1 + + guillemetright + guilsinglright + + public.kern1.hardcyr + + Tjekomicyr + djekomicyr + elmiddlehookcyr + enmiddlehookcyr + gehookcyr + hardsign-cy + hardsign-cy.BGR + hardsign-cy.ss01 + ljecyr + ljecyr.ss01 + ljekomicyr + njecyr + njecyr.ss01 + njekomicyr + pehookcyr + semisoftcyr + softsign-cy + softsign-cy.BGR + softsign-cy.ss01 + tewithmiddlehook-cy + tjekomicyr + uni1C86 + uni1C87 + uniF479 + yatIotified-cy + yatcyr + yatcyr.BGR + yerNeutral-cy + zjekomicyr + + public.kern1.i1 + + Djekomicyr + Ljekomicyr + Njekomicyr + Zjekomicyr + i + i-cy + iacute + icircumflex + igrave + imacron + iogonek + itilde + uniF476 + yi-cy.alt + + public.kern1.icyr1 + + cche-cy + che-cy + chedieresiscyr + chekhakascyr + chevertcyr + de-cy.BGR + el-cy + elhookcyr + em-cy + en-cy + enhookcyr + enhookleftcyr + ia-cy + ia-cy.accented + idieresiscyr + igravecyr + ii-cy + ii-cy.accented + iishort-cy + imacroncyr + mu + pe-cy + psicyr + q + qacyr + sha-cy + sha-cy.BGR + tche-cy + tseReversed-cy + ubreve + uni1C85 + uniF4C7 + uniF4D9 + uniF521 + uniF529 + uniF52B + uniF533 + uniF537 + uniF873 + uniF87F + utilde + yeru-cy + yeru-cy.accented + yeru-cy.ss01 + yeruBackyer-cy + ylongdieresiscyr + yuReversed-cy + + public.kern1.j1 + + ij + j + jcircumflex + jdotless + + public.kern1.k + + k + ka-cy + ka-cy.BGR + kaaleutcyr + kabashkcyr + kastrokecyr + kcommaaccent + kgreenlandic + kjecyr + uniF870 + + public.kern1.l + + f_f_l + fl + l + lacute + lcommaaccent + + public.kern1.l.ss011 + + Iota-cy + iota-cy + l.ss01 + lacute.ss01 + lcommaaccent.ss01 + + public.kern1.n + + Djecyr + Elmiddlehookcyr + Enmiddlehookcyr + Gehookcyr + Hwe-cy + Kahookcyr + Pehookcyr + Shhatailcyr + TeWithMiddleHook-cy + Tshecyr + a-cy.accented + a-cy.ss01 + a.ss01 + aacute.ss01 + abreve.ss01 + abrevecyr + acircumflex.ss01 + adieresis.ss01 + adieresiscyr + agrave.ss01 + aogonek.ss01 + aring.ss01 + atilde.ss01 + djecyr + el-cy.ss01 + h + hbar + hcircumflex + hwe-cy + ia-cy.ss01 + iotifieda-cy.hist + m + n + nacute + napostrophe + ncaron + ncommaaccent + ntilde + pe-cy.BGR + q.ss01 + shhacyr + te-cy.BGR + tshecyr + uniF49E + uniF49F + uniF50F + uniF831 + + public.kern1.numero + + numero + numero.ss01 + + public.kern1.o1 + + b + b.ss01 + be-cy.SRB + crossedo-cy + ef-cy + er-cy + er-cy.ss01 + ereversed-cy + ereversed-cy.accented + ereverseddieresiscyr + ertickcyr + eturned + fitacyr + iu-cy + iu-cy.BGR + iu-cy.accented + o + o-cy + o-cy.accented + oBinocular-cy + oDoubleMonocular-cy + oMonocular-cy + oacute + obarcyr + obardieresiscyr + obreve + ocircumflex + odieresis + odieresiscyr + ograve + ohungarumlaut + omacron + omegaBroad-cy + omegaroundcyr + omegatitlocyr + oslashacute + otilde + p + p.ss01 + schwacyr + schwadieresiscyr + thorn + uni1C82 + uniF499 + uniF49D + uniF4D3 + uniF4D5 + uniF4D7 + uniF519 + uniF51B + uniF51D + uniF51F + uniF523 + uniF525 + uniF52D + uniF52F + uniF83A + + public.kern1.period1 + + ellipsis + period + + public.kern1.quotedbl1 + + quotedbl + quotesingle + + public.kern1.quoteleft1 + + quotedblleft + quoteleft + + public.kern1.quoteright1 + + apostrophemod + minute + quotedblright + quoteright + second + + public.kern1.s1 + + dzwe-cy + s + sacute + scaron + scedilla + scircumflex + scommaaccent + + public.kern1.t.ss011 + + t.ss01 + tcedilla.ss01 + tcommaaccent.ss01 + + public.kern1.t1 + + t + tcaron + tcedilla + tcommaaccent + + public.kern1.te-cy + + te-cy + tetailcyr + tsse-cy + twe-cy + + public.kern1.u1 + + igravecyr.SRB + ii-cy.BGR + iishort-cy.BGR + pe-cy.SRB + te-cy.SRB + u + uacute + ucircumflex + udieresis + ugrave + uhungarumlaut + umacron + uogonek + uring + + public.kern1.uni0435.ss011 + + ie-cy.ss01 + io-cy.ss01 + + public.kern1.v + + izhitsacyr + izhitsagravedblcyr + v + + public.kern1.w1 + + omegacyr + otcyr + w + wacute + wcircumflex + wdieresis + wecyr + wgrave + + public.kern1.x + + ha-cy + hahookcyr + lhacyr + rhacyr + uniF879 + x + + public.kern1.y1 + + Ukcyr + u-cy + u-cy.accented + uacutedblcyr + udieresiscyr + ukcyr + umacroncyr + uniF43B + uniF4CD + ushort-cy + ustraightcyr + ustraightstrokecyr + y + yacute + ycircumflex + ydieresis + + public.kern1.z1 + + dzelo-cy + z + zacute + zcaron + zdotaccent + zemlya-cy + + public.kern1.ze-cy + + dzeabkhcyr + ksicyr + uniF517 + ze-cy + ze-cy.BGR + zedieresiscyr + zetailcyr + zetailcyr.BSH + + public.kern1.zhe-cy + + dzzhecyr + katailcyr + kaverticalstrokecyr + xatailcyr + yusBlended-cy + yusbigcyr + yusbigiotifiedcyr + yusbigiotifiedcyr.BGR + zhe-cy + zhe-cy.BGR + zhebrevecyr + zhedieresiscyr + zhetailcyr + zhwe-cy + + public.kern2.A.ss01 + + A.ss01 + AE.ss01 + Aacute.ss01 + Acircumflex.ss01 + Adieresis.ss01 + Agrave.ss01 + Amacron.ss01 + Aogonek.ss01 + Atilde.ss01 + + public.kern2.A.ss012 + + A-cy.ss01 + Abreve.ss01 + Aring.ss01 + + public.kern2.A2 + + A + A-cy + A-cy.accented + AE + AEacute + Aacute + Abreve + Abrevecyr + Acaron + Acircumflex + Adieresis + Adieresiscyr + Agrave + Aiecyr + Amacron + Aogonek + Aring + Atilde + De-cy.BGR + Delta + El-cy.BGR + Yn-cy + YusClosedlittle-cy + Yuslittlecyr + uniF50E + uniF830 + + public.kern2.B + + B + D + Dcaron + E + Eacute + Ecaron + Ecircumflex + Edieresis + Edotaccent + Egrave + Emacron + Eogonek + F + H + Hbar + Hcircumflex + I + Iacute + Ibreve + Icircumflex + Idieresis + Idotaccent + Igrave + Imacron + Iogonek + Itilde + K + K.ss01 + Kcommaaccent + Kcommaaccent.ss01 + L + Lacute + Lcaron + Lcommaaccent + Ldot + M + N + N.ss01 + Nacute + Nacute.ss01 + Ncaron + Ncaron.ss01 + Ncommaaccent + Ncommaaccent.ss01 + Ntilde + Ntilde.ss01 + P + R + Racute + Rcaron + Rcommaaccent + Thorn + uni1EBC + + public.kern2.Che-cy + + Cche-cy + Che-cy + Chedieresiscyr + Chekhakascyr + Chetailcyr + Chevertcyr + uniF4C6 + uniF87E + + public.kern2.De-cy + + Dchecyr + De-cy + DeSoft-cy + Dwe-cy + Dzze-cy + Dzzhecyr + TseReversed-cy + + public.kern2.El-cy + + El-cy + ElSoft-cy + Elhookcyr + Elmiddlehookcyr + Elsharptailcyr + Eltailcyr + Lhacyr + Ljekomicyr + uniF872 + + public.kern2.Eth + + Dcroat + Eth + Gestrokecyr + + public.kern2.G + + C + Cacute + Ccaron + Ccedilla + Ccircumflex + Cdotaccent + CrossedO-cy + DoubleO-cy + E-cy + Ef-cy.BGR + Es-cy + Estailcyr + Estailcyr.BSH + Estailcyr.CHU + Fitacyr + G + G.ss01 + Gacute + Gacute.ss01 + Gbreve + Gbreve.ss01 + Gcircumflex + Gcircumflex.ss01 + Gcommaaccent + Gcommaaccent.ss01 + Gdotaccent + Gdotaccent.ss01 + Haabkhcyr + Koppacyr + O + O-cy + O-cy.accented + OBinocular-cy + ODoubleMonocular-cy + OE + OMonocular-cy + Oacute + Obarcyr + Obardieresiscyr + Obreve + Ocircumflex + Odieresis + Odieresiscyr + Ograve + Ohungarumlaut + Omacron + Omegaroundcyr + Oslash + Otilde + Q + Q.ss01 + Qacyr + Schwacyr + Schwadieresiscyr + Sjekomicyr + Ukcyr + YuReversed-cy + uniF45D + uniF49A + uniF49C + uniF4D2 + uniF518 + uniF51A + uniF51C + uniF51E + uniF526 + uniF839 + uniF875 + + public.kern2.Gecyr + + Be-cy + E-cy.accented + Eiotifiedcyr + Em-cy + EmSoft-cy + Emsharptailcyr + En-cy + Engecyr + Enhookcyr + Enhookleftcyr + Enmiddlehookcyr + Ensharptailcyr + Entailcyr + Er-cy + Ertickcyr + Gehookcyr + Gestrokecyr.BSH + Getailcyr + Gheupturn-cy + Gjecyr + Hwe-cy + I-cy + Iebrevecyr + Ii-cy + Ii-cy.accented + Io-cy.accented + IotifiedA-cy + Iu-cy.accented + Ka-cy + Kaaleutcyr + Kahookcyr + Katailcyr + Kaverticalstrokecyr + Kjecyr + Njekomicyr + Palochkacyr + Pe-cy + Pehookcyr + Petailcyr + Rhacyr + Shhacyr + Shhatailcyr + Shwe-cy + Tswe-cy + Ve-cy + Yeru-cy.accented + Yeru-cymacron + Yi-cy + Ylongdieresiscyr + Yusbigiotifiedcyr + YusiotifiedClosedLittle-cy + Yuslittleiotifiedcyr + palochkacyr + uniF45E + uniF45F + uniF498 + uniF4D4 + uniF510 + uniF512 + uniF514 + uniF52C + uniF52E + uniF532 + uniF536 + uniF833 + uniF86F + uniF87B + + public.kern2.Ia-cy + + Ia-cy + Ia-cy.accented + Yaecyr + uniF4D8 + uniF528 + uniF52A + + public.kern2.Iishort-cy + + Idieresiscyr + Iishort-cy + Imacroncyr + Ishortsharptailcyr + + public.kern2.J + + J + Jcircumflex + Jecyr + + public.kern2.Oslash.alt + + Ha-cy.ss01 + Hahookcyr + X + X.ss01 + Xatailcyr + uniF878 + + public.kern2.S + + Dzwe-cy + S + Sacute + Scaron + Scedilla + Scircumflex + Scommaaccent + + public.kern2.T + + Djecyr + T + Tcaron + Tcedilla + Tche-cy + Tcommaaccent + Te-cy + TeWithMiddleHook-cy + Tetailcyr + Tetsecyr + Tjekomicyr + Tshecyr + Tsse-cy + Twe-cy + + public.kern2.U + + Iota-cy + OmegaBroad-cy + Omegacyr + Omegatitlocyr + Otcyr + Psicyr + U + Uacute + Ubreve + Ucircumflex + Udieresis + Ugrave + Uhungarumlaut + Umacron + Uogonek + Uring + Utilde + + public.kern2.Ucyr.ss01 + + U-cy.accented + U-cy.ss01 + Uacutedblcyr + Udieresiscyr + Umacroncyr + Ushort-cy.ss01 + uniF4CC + + public.kern2.V + + Izhitsacyr + Izhitsagravedblcyr + V + V.ss01 + + public.kern2.W + + W + W.ss01 + Wacute + Wacute.ss01 + Wcircumflex + Wcircumflex.ss01 + Wdieresis + Wdieresis.ss01 + Wecyr + Wgrave + Wgrave.ss01 + + public.kern2.Y + + Ustraightcyr + Ustraightstrokecyr + Y + Y.ss01 + Yacute + Yacute.ss01 + Ycircumflex + Ycircumflex.ss01 + Ydieresis + Ydieresis.ss01 + uniF43A + + public.kern2.Z + + Dzelo-cy + Z + Z.ss01 + Zacute + Zacute.ss01 + Zcaron + Zcaron.ss01 + Zdotaccent + Zdotaccent.ss01 + Zemlya-cy + + public.kern2.Ze-cy1 + + Dzeabkhcyr + Ksicyr + Ze-cy + Zedieresiscyr + Zetailcyr + Zetailcyr.BSH + Zhwe-cy + uniF516 + + public.kern2.Zhe-cy1 + + YusBlended-cy + Yusbigcyr + Zhe-cy + Zhebrevecyr + Zhedieresiscyr + Zhetailcyr + + public.kern2.a + + a + a-cy + a-cy.accented + aacute + abreve + abrevecyr + acaron + acircumflex + adieresis + adieresiscyr + ae + aeacute + agrave + aiecyr + amacron + aogonek + aring + atilde + uniF50F + uniF831 + + public.kern2.acute.case + + acute.case + hungarumlaut.case + + public.kern2.che-cy + + cche-cy + che-cy + chedieresiscyr + chekhakascyr + chetailcyr + chevertcyr + uniF4C7 + uniF87F + + public.kern2.comma + + comma + quotedblbase + quotesinglbase + + public.kern2.copyright + + copyright + registered + + public.kern2.decyr.ss01 + + de-cy.ss01 + deSoft-cy + dwe-cy + dzze-cy + dzzhecyr + tseReversed-cy + + public.kern2.el-cy + + el-cy + el-cy.ss01 + elSoft-cy + elhookcyr + elmiddlehookcyr + elsharptailcyr + eltailcyr + lhacyr + ljecyr.ss01 + ljekomicyr + uniF873 + + public.kern2.el-cy.BGR1 + + el-cy.BGR + uni1C81 + yn-cy + yusClosedlittle-cy + yuslittlecyr + + public.kern2.emdash + + emdash + endash + hyphen + + public.kern2.f + + f + f_f + f_f_i + f_f_l + fi + fl + gestrokecyr + + public.kern2.f_f.ss01 + + f_f.ss01 + f_f_i.ss01 + f_f_l.ss01 + + public.kern2.fi.ss01 + + fi.ss01 + fl.ss01 + + public.kern2.five + + five + five.tf + + public.kern2.four + + four + four.tf + + public.kern2.g + + g + gacute + gbreve + gcircumflex + gcommaaccent + gdotaccent + + public.kern2.g.ss01 + + g.ss01 + gacute.ss01 + gbreve.ss01 + gcircumflex.ss01 + gcommaaccent.ss01 + gdotaccent.ss01 + + public.kern2.guillemotleft + + guillemetleft + guilsinglleft + + public.kern2.guillemotright + + guillemetright + guilsinglright + + public.kern2.h + + eiotifiedcyr.BGR + h + hcircumflex + hwe-cy + iotifieda-cy.BGR + iu-cy.BGR + k + ka-cy.BGR + kcommaaccent + l + lacute + lcaron + lcommaaccent + ldot + shhacyr + shhatailcyr + ve-cy.BGR + yatcyr.BGR + yusbigiotifiedcyr.BGR + + public.kern2.i1 + + i + i-cy + iacute + icircumflex + igrave + imacron + iogonek + itilde + uniF476 + yi-cy.alt + + public.kern2.ia-cy + + ia-cy + ia-cy.accented + ia-cy.ss01 + uniF4D9 + uniF529 + uniF52B + yaecyr + + public.kern2.j + + enhookleftcyr + j + jcircumflex + jdotless + + public.kern2.l.ss01 + + l.ss01 + lacute.ss01 + lcaron.ss01 + lcommaaccent.ss01 + ldot.ss01 + + public.kern2.m + + eiotifiedcyr + em-cy + emSoft-cy + emsharptailcyr + en-cy + eng + engecyr + enhookcyr + enmiddlehookcyr + ensharptailcyr + entailcyr + er-cy + er-cy.ss01 + ertickcyr + ge-cy + gehookcyr + gehookstrokecyr + gestrokecyr.BSH + getailcyr + gheupturn-cy + gjecyr + idieresiscyr + idotless + igravecyr + ii-cy + ii-cy.accented + iishort-cy + imacroncyr + iotifieda-cy + ishortsharptailcyr + iu-cy + iu-cy.accented + ka-cy + kaaleutcyr + kahookcyr + katailcyr + kaverticalstrokecyr + kgreenlandic + kjecyr + m + mu + n + nacute + ncaron + ncommaaccent + njecyr.ss01 + njekomicyr + ntilde + p + p.ss01 + pe-cy + pe-cy.BGR + pehookcyr + petailcyr + psicyr + r + racute + rcaron + rcommaaccent + rhacyr + sha-cy + shcha-cy + shwe-cy + softsign-cy + softsign-cy.BGR + softsign-cy.ss01 + te-cy.BGR + tse-cy + tswe-cy + uni1C85 + uniF499 + uniF4D5 + uniF521 + uniF52D + uniF52F + uniF533 + uniF537 + uniF870 + uniF87C + ve-cy + ve-cy.ss01 + yatIotified-cy + yeru-cy + yeru-cy.accented + yeru-cy.ss01 + ylongdieresiscyr + yusbigiotifiedcyr + yusiotifiedClosedLittle-cy + yuslittleiotifiedcyr + + public.kern2.o + + Dekomicyr + Djekomicyr + a-cy.ss01 + a.ss01 + aacute.ss01 + abreve.ss01 + acircumflex.ss01 + adieresis.ss01 + agrave.ss01 + amacron.ss01 + aogonek.ss01 + aring.ss01 + atilde.ss01 + c + cacute + ccaron + ccedilla + ccircumflex + cdotaccent + cent + crossedo-cy + d + d.ss01 + dcaron + dcaron.ss01 + dcroat + dcroat.ss01 + de-cy.BGR + dekomicyr + djekomicyr + e + e-cy + e-cy.accented + e-cy.hist + e.ss01 + eacute + eacute.ss01 + ebreve + ebreve.ss01 + ecaron + ecaron.ss01 + ecircumflex + ecircumflex.ss01 + edieresis + edieresis.ss01 + edotaccent + edotaccent.ss01 + ef-cy + egrave + egrave.ss01 + emacron + emacron.ss01 + eogonek + eogonek.ss01 + es-cy + estailcyr + estailcyr.BSH + estailcyr.CHU + eth + eturned + fitacyr + haabkhcyr + ie-cy + ie-cy.ss01 + iebrevecyr + iegravecyr + iegravecyr.SRB + io-cy + io-cy.accented + io-cy.ss01 + koppacyr + o + o-cy + o-cy.accented + oBinocular-cy + oDoubleMonocular-cy + oMonocular-cy + oacute + obarcyr + obardieresiscyr + obreve + ocircumflex + odieresis + odieresiscyr + oe.ss01 + ograve + ohungarumlaut + omacron + omegaBroad-cy + omegaroundcyr + omegatitlocyr + oslashacute + otilde + q + q.ss01 + qacyr + schwacyr + schwadieresiscyr + sjekomicyr + ukcyr + uni1C82 + uni1C83 + uni1EBD + uniF475 + uniF49D + uniF4D3 + uniF511 + uniF513 + uniF515 + uniF519 + uniF51B + uniF51D + uniF51F + uniF527 + uniF834 + uniF83A + uniF876 + yuReversed-cy + + public.kern2.percent + + percent + perthousand + + public.kern2.period + + ellipsis + period + + public.kern2.quotedbl + + quotedbl + quotesingle + + public.kern2.quoteleft + + quotedblleft + quoteleft + + public.kern2.quoteright + + apostrophemod + minute + quotedblright + quoteright + second + + public.kern2.s + + dzwe-cy + s + sacute + scaron + scedilla + scircumflex + scommaaccent + + public.kern2.t + + t + t.ss01 + tbar.ss01 + tcaron + tcaron.ss01 + tcedilla + tcedilla.ss01 + tcommaaccent + tcommaaccent.ss01 + + public.kern2.tecyr + + tche-cy + te-cy.ss01 + tetailcyr + tetsecyr + tewithmiddlehook-cy + tjekomicyr + tsse-cy + twe-cy + + public.kern2.u + + igravecyr.SRB + ii-cy.BGR + iishort-cy.BGR + iota-cy + pe-cy.SRB + sha-cy.BGR + shcha-cy.BGR + te-cy.SRB + tse-cy.BGR + u + uacute + ubreve + ucircumflex + udieresis + ugrave + uhungarumlaut + umacron + uogonek + uring + utilde + + public.kern2.v1 + + izhitsacyr + izhitsagravedblcyr + v + + public.kern2.w + + omegacyr + otcyr + w + wacute + wcircumflex + wdieresis + wecyr + wgrave + + public.kern2.x + + ha-cy + hahookcyr + uniF879 + x + + public.kern2.y + + u-cy + u-cy.accented + uacutedblcyr + udieresiscyr + umacroncyr + uniF43B + uniF4CD + ustraightcyr + ustraightstrokecyr + y + yacute + ycircumflex + ydieresis + + public.kern2.z + + dzelo-cy + z + zacute + zcaron + zdotaccent + zemlya-cy + + public.kern2.ze-cy1 + + dzeabkhcyr + ksicyr + uniF517 + ze-cy + ze-cy.BGR + zedieresiscyr + zetailcyr + zetailcyr.BSH + zhwe-cy + + public.kern2.zero + + uni1C80 + zero + zero.tf + + public.kern2.zhe-cy1 + + xatailcyr + yusBlended-cy + yusbigcyr + zhe-cy + zhe-cy.BGR + zhebrevecyr + zhedieresiscyr + zhetailcyr + + ss01 + + A-cy.ss01 + A.ss01 + AE.ss01 + Aacute.ss01 + Abreve.ss01 + Acircumflex.ss01 + Adieresis.ss01 + Agrave.ss01 + Amacron.ss01 + Aogonek.ss01 + Aring.ss01 + Atilde.ss01 + Em-cy.ss01 + Eng.ss01 + G.ss01 + Gacute.ss01 + Gbreve.ss01 + Gcircumflex.ss01 + Gcommaaccent.ss01 + Gdotaccent.ss01 + Ha-cy.ss01 + Ia-cy.ss01 + J.ss01 + Jcircumflex.ss01 + K.ss01 + Ka-cy.ss01 + Kcommaaccent.ss01 + M.ss01 + N.ss01 + Nacute.ss01 + Ncaron.ss01 + Ncommaaccent.ss01 + Ntilde.ss01 + Q.ss01 + U-cy.ss01 + Ushort-cy.ss01 + V.ss01 + W.ss01 + Wacute.ss01 + Wcircumflex.ss01 + Wdieresis.ss01 + Wgrave.ss01 + X.ss01 + Y.ss01 + Yacute.ss01 + Ycircumflex.ss01 + Ydieresis.ss01 + Z.ss01 + Zacute.ss01 + Zcaron.ss01 + Zdotaccent.ss01 + Zhe-cy.ss01 + a-cy.ss01 + a.ss01 + aacute.ss01 + abreve.ss01 + acircumflex.ss01 + adieresis.ss01 + ae.ss01 + agrave.ss01 + amacron.ss01 + aogonek.ss01 + aring.ss01 + arrowdown.ss01 + arrowdown.ss01.case + arrowleft.ss01 + arrowleft.ss01.case + arrowright.ss01 + arrowright.ss01.case + arrowup.ss01 + arrowup.ss01.case + atilde.ss01 + b.ss01 + d.ss01 + dcaron.ss01 + dcroat.ss01 + de-cy.ss01 + e.ss01 + eacute.ss01 + ebreve.ss01 + ecaron.ss01 + ecircumflex.ss01 + edieresis.ss01 + edotaccent.ss01 + egrave.ss01 + el-cy.ss01 + emacron.ss01 + eogonek.ss01 + er-cy.ss01 + f.ss01 + f_f.ss01 + f_f_i.ss01 + f_f_l.ss01 + fi.ss01 + fl.ss01 + g.ss01 + gacute.ss01 + gbreve.ss01 + gcircumflex.ss01 + gcommaaccent.ss01 + gdotaccent.ss01 + germandbls.ss01 + hardsign-cy.ss01 + ia-cy.ss01 + ie-cy.ss01 + io-cy.ss01 + l.ss01 + lacute.ss01 + lcaron.ss01 + lcommaaccent.ss01 + ldot.ss01 + ljecyr.ss01 + lslash.ss01 + njecyr.ss01 + numero.ss01 + oe.ss01 + p.ss01 + q.ss01 + softsign-cy.ss01 + t.ss01 + tbar.ss01 + tcaron.ss01 + tcedilla.ss01 + tcommaaccent.ss01 + te-cy.ss01 + ve-cy.ss01 + yen.ss01 + yeru-cy.ss01 + + ss01_def + + A-cy + A + AE + Aacute + Abreve + Acircumflex + Adieresis + Agrave + Amacron + Aogonek + Aring + Atilde + Em-cy + Eng + G + Gacute + Gbreve + Gcircumflex + Gcommaaccent + Gdotaccent + Ha-cy + Ia-cy + J + Jcircumflex + K + Ka-cy + Kcommaaccent + M + N + Nacute + Ncaron + Ncommaaccent + Ntilde + Q + U-cy + Ushort-cy + V + W + Wacute + Wcircumflex + Wdieresis + Wgrave + X + Y + Yacute + Ycircumflex + Ydieresis + Z + Zacute + Zcaron + Zdotaccent + Zhe-cy + a-cy + a + aacute + abreve + acircumflex + adieresis + ae + agrave + amacron + aogonek + aring + arrowdown + arrowdown.case + arrowleft + arrowleft.case + arrowright + arrowright.case + arrowup + arrowup.case + atilde + b + d + dcaron + dcroat + de-cy + e + eacute + ebreve + ecaron + ecircumflex + edieresis + edotaccent + egrave + el-cy + emacron + eogonek + er-cy + f + f_f + f_f_i + f_f_l + fi + fl + g + gacute + gbreve + gcircumflex + gcommaaccent + gdotaccent + germandbls + hardsign-cy + ia-cy + ie-cy + io-cy + l + lacute + lcaron + lcommaaccent + ldot + ljecyr + lslash + njecyr + numero + oe + p + q + softsign-cy + t + tbar + tcaron + tcedilla + tcommaaccent + te-cy + ve-cy + yen + yeru-cy + + + diff --git a/sources/FixelText-ExtraBold.ufo/kerning.plist b/sources/FixelText-ExtraBold.ufo/kerning.plist new file mode 100644 index 00000000..148b2308 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/kerning.plist @@ -0,0 +1,2717 @@ + + + + + Zhe-cy + + public.kern2.G + -46 + + space + + public.kern2.W + -2 + public.kern2.Y + -110 + + uni1C82 + + public.kern2.y + -44 + + public.kern1.A.ss012 + + public.kern2.G + -30 + public.kern2.T + -62 + public.kern2.U + -20 + public.kern2.Ucyr.ss01 + -54 + public.kern2.V + -54 + public.kern2.W + -44 + public.kern2.Y + -83 + public.kern2.Z + -2 + public.kern2.a + -18 + public.kern2.decyr.ss01 + 8 + public.kern2.emdash + -18 + public.kern2.l.ss01 + -16 + public.kern2.m + -8 + public.kern2.o + -20 + public.kern2.quotedbl + -48 + public.kern2.quoteright + -48 + public.kern2.t + -32 + public.kern2.tecyr + -46 + public.kern2.u + -12 + public.kern2.w + -22 + public.kern2.x + 9 + public.kern2.y + -42 + + public.kern1.A2 + + public.kern2.A2 + 24 + public.kern2.G + -28 + public.kern2.J + 32 + public.kern2.Oslash.alt + 16 + public.kern2.S + 12 + public.kern2.T + -64 + public.kern2.U + -18 + public.kern2.Ucyr.ss01 + -44 + public.kern2.V + -48 + public.kern2.W + -48 + public.kern2.Y + -82 + public.kern2.Z + 34 + public.kern2.a + -1 + public.kern2.comma + 16 + public.kern2.emdash + -2 + public.kern2.g + 17 + public.kern2.j + 4 + public.kern2.o + -10 + public.kern2.period + 38 + public.kern2.quotedbl + -50 + public.kern2.quoteright + -52 + public.kern2.t + -18 + public.kern2.tecyr + -30 + public.kern2.u + -1 + public.kern2.w + -20 + public.kern2.x + 8 + public.kern2.y + -32 + public.kern2.z + 10 + + public.kern1.C1 + + public.kern2.A2 + -8 + public.kern2.B + -8 + public.kern2.G + -29 + public.kern2.J + 16 + public.kern2.Oslash.alt + -17 + public.kern2.S + -8 + public.kern2.U + -8 + public.kern2.Ucyr.ss01 + -16 + public.kern2.V + -16 + public.kern2.W + -16 + public.kern2.Y + -20 + public.kern2.Z + 6 + public.kern2.comma + -8 + public.kern2.emdash + -28 + public.kern2.f + -8 + public.kern2.g + -17 + public.kern2.g.ss01 + -16 + public.kern2.j + -1 + public.kern2.o + -18 + public.kern2.period + -4 + public.kern2.quoteright + -24 + public.kern2.s + -8 + public.kern2.t + -8 + public.kern2.tecyr + -8 + public.kern2.u + -9 + public.kern2.w + -16 + public.kern2.x + -17 + public.kern2.y + -24 + + public.kern1.Decyr + + public.kern2.A.ss012 + 16 + public.kern2.A2 + 8 + public.kern2.G + -10 + public.kern2.T + -28 + public.kern2.Ucyr.ss01 + -30 + public.kern2.a + -2 + public.kern2.comma + 38 + public.kern2.decyr.ss01 + 32 + public.kern2.emdash + -18 + public.kern2.o + -10 + public.kern2.period + 18 + public.kern2.quoteright + -30 + public.kern2.tecyr + -28 + public.kern2.y + -16 + + public.kern1.E1 + + public.kern2.G + -9 + public.kern2.J + 10 + public.kern2.a + -8 + public.kern2.f + -16 + public.kern2.g.ss01 + -8 + public.kern2.i1 + 8 + public.kern2.j + -8 + public.kern2.o + -18 + public.kern2.period + 4 + public.kern2.quotedbl + 2 + public.kern2.quoteright + -8 + public.kern2.s + -8 + public.kern2.t + -8 + public.kern2.w + -25 + public.kern2.y + -26 + + public.kern1.G.ss01 + + public.kern2.A.ss01 + 10 + public.kern2.G + -16 + public.kern2.Oslash.alt + -8 + public.kern2.T + -18 + public.kern2.V + -44 + public.kern2.W + -34 + public.kern2.Y + -52 + public.kern2.Z + -8 + public.kern2.comma + -16 + public.kern2.emdash + -8 + public.kern2.o + -8 + public.kern2.quotedbl + -2 + public.kern2.quoteright + -28 + public.kern2.t + -9 + public.kern2.w + -29 + public.kern2.y + -28 + + public.kern1.G1 + + public.kern2.B + 8 + public.kern2.G + 2 + public.kern2.J + 16 + public.kern2.T + -18 + public.kern2.V + -44 + public.kern2.W + -34 + public.kern2.Y + -44 + public.kern2.comma + 2 + public.kern2.emdash + 4 + public.kern2.period + 10 + public.kern2.quotedbl + -16 + public.kern2.quoteright + -8 + public.kern2.w + -8 + public.kern2.y + -16 + + public.kern1.Ge-cy + + public.kern2.A.ss012 + -54 + public.kern2.A2 + -62 + public.kern2.G + -18 + public.kern2.Gecyr + 2 + public.kern2.T + 20 + public.kern2.a + -92 + public.kern2.comma + -80 + public.kern2.decyr.ss01 + -32 + public.kern2.emdash + -68 + public.kern2.guillemotright + -42 + public.kern2.i1 + 36 + public.kern2.m + -44 + public.kern2.o + -96 + public.kern2.period + -114 + public.kern2.x + -10 + public.kern2.y + -10 + + public.kern1.H + + public.kern2.Gecyr + 1 + public.kern2.comma + -4 + public.kern2.i1 + 8 + public.kern2.j + 6 + public.kern2.quoteright + -4 + + public.kern1.Hardcyr + + public.kern2.A.ss012 + 18 + public.kern2.Oslash.alt + -17 + public.kern2.T + -94 + public.kern2.Ucyr.ss01 + -70 + public.kern2.comma + -24 + public.kern2.quotedbl + -120 + public.kern2.quoteright + -30 + public.kern2.tecyr + -22 + public.kern2.x + -28 + public.kern2.y + -30 + + public.kern1.J1 + + public.kern2.A.ss012 + 9 + public.kern2.A2 + -10 + public.kern2.J + 8 + public.kern2.Z + -2 + public.kern2.comma + -30 + public.kern2.i1 + 8 + public.kern2.period + -6 + public.kern2.s + -8 + + public.kern1.K + + public.kern2.A2 + 16 + public.kern2.G + -66 + public.kern2.J + 10 + public.kern2.S + -10 + public.kern2.a + -10 + public.kern2.comma + 8 + public.kern2.emdash + -44 + public.kern2.f + -25 + public.kern2.g + -4 + public.kern2.i1 + 32 + public.kern2.j + -2 + public.kern2.l.ss01 + -8 + public.kern2.o + -40 + public.kern2.period + 2 + public.kern2.quoteright + -38 + public.kern2.t + -38 + public.kern2.tecyr + -72 + public.kern2.u + -30 + public.kern2.w + -30 + public.kern2.y + -40 + + public.kern1.L + + public.kern2.A.ss01 + 16 + public.kern2.A2 + 24 + public.kern2.G + -32 + public.kern2.J + 18 + public.kern2.T + -98 + public.kern2.U + -24 + public.kern2.V + -100 + public.kern2.W + -52 + public.kern2.Y + -122 + public.kern2.Z + 8 + public.kern2.a + -10 + public.kern2.emdash + -32 + public.kern2.guillemotleft + -30 + public.kern2.j + 6 + public.kern2.o + -16 + public.kern2.period + 16 + public.kern2.quotedbl + -90 + public.kern2.quoteright + -86 + public.kern2.t + -28 + public.kern2.u + -10 + public.kern2.w + -52 + public.kern2.x + -8 + public.kern2.y + -74 + public.kern2.z + 10 + + public.kern1.O + + Zhe-cy + -46 + public.kern2.A.ss01 + -8 + public.kern2.A.ss012 + -11 + public.kern2.A2 + -28 + public.kern2.J + -24 + public.kern2.Oslash.alt + -44 + public.kern2.S + -8 + public.kern2.T + -30 + public.kern2.Ucyr.ss01 + -30 + public.kern2.V + -38 + public.kern2.W + -18 + public.kern2.Y + -64 + public.kern2.Z + -32 + public.kern2.a + -10 + public.kern2.comma + -52 + public.kern2.decyr.ss01 + -12 + public.kern2.emdash + 4 + public.kern2.j + -2 + public.kern2.period + -42 + public.kern2.quotedbl + -12 + public.kern2.quoteright + 8 + public.kern2.s + -8 + public.kern2.tecyr + 8 + public.kern2.w + -8 + public.kern2.x + -18 + public.kern2.y + -8 + public.kern2.z + -2 + + public.kern1.Oslash.alt + + public.kern2.A.ss01 + 8 + public.kern2.A.ss012 + 8 + public.kern2.A2 + 16 + public.kern2.G + -46 + public.kern2.J + 24 + public.kern2.S + -9 + public.kern2.Ucyr.ss01 + 8 + public.kern2.W + 8 + public.kern2.a + -10 + public.kern2.comma + 10 + public.kern2.decyr.ss01 + 8 + public.kern2.emdash + -28 + public.kern2.f + -1 + public.kern2.g + -1 + public.kern2.i1 + 32 + public.kern2.j + -2 + public.kern2.o + -30 + public.kern2.period + 2 + public.kern2.quotedbl + 8 + public.kern2.quoteright + -56 + public.kern2.s + -1 + public.kern2.t + -18 + public.kern2.tecyr + -44 + public.kern2.u + -10 + public.kern2.w + -20 + public.kern2.x + 8 + public.kern2.y + -28 + + public.kern1.P + + public.kern2.A.ss01 + -40 + public.kern2.A.ss012 + -40 + public.kern2.A2 + -54 + public.kern2.J + -58 + public.kern2.Oslash.alt + -46 + public.kern2.T + -8 + public.kern2.Ucyr.ss01 + -28 + public.kern2.V + -9 + public.kern2.W + -1 + public.kern2.Y + -26 + public.kern2.Z + -24 + public.kern2.a + -20 + public.kern2.comma + -102 + public.kern2.decyr.ss01 + -38 + public.kern2.emdash + -17 + public.kern2.g + -10 + public.kern2.g.ss01 + -12 + public.kern2.j + -14 + public.kern2.o + -22 + public.kern2.period + -146 + public.kern2.quotedbl + -4 + public.kern2.quoteright + 8 + public.kern2.s + -12 + public.kern2.t + 16 + public.kern2.tecyr + 9 + public.kern2.x + -1 + public.kern2.z + -2 + + public.kern1.R + + public.kern2.A.ss01 + 10 + public.kern2.G + -26 + public.kern2.S + -16 + public.kern2.T + -28 + public.kern2.U + -12 + public.kern2.V + -27 + public.kern2.W + -9 + public.kern2.Y + -36 + public.kern2.a + -1 + public.kern2.emdash + -26 + public.kern2.f + -8 + public.kern2.j + -2 + public.kern2.m + -8 + public.kern2.o + -20 + public.kern2.period + 8 + public.kern2.quotedbl + -4 + public.kern2.quoteright + -10 + public.kern2.s + -1 + public.kern2.t + -9 + public.kern2.u + -12 + public.kern2.w + -9 + public.kern2.y + -1 + + public.kern1.S1 + + public.kern2.A.ss01 + 16 + public.kern2.J + 16 + public.kern2.Oslash.alt + -17 + public.kern2.T + -17 + public.kern2.V + -18 + public.kern2.W + -18 + public.kern2.Y + -30 + public.kern2.Z + -2 + public.kern2.comma + -2 + public.kern2.emdash + 10 + public.kern2.f + -16 + public.kern2.g + -4 + public.kern2.i1 + 8 + public.kern2.j + -10 + public.kern2.o + 8 + public.kern2.quotedbl + -22 + public.kern2.quoteright + -14 + public.kern2.t + -1 + public.kern2.w + -14 + public.kern2.x + -17 + public.kern2.y + -22 + + public.kern1.T1 + + public.kern2.A.ss01 + -44 + public.kern2.A.ss012 + -57 + public.kern2.A2 + -64 + public.kern2.G + -30 + public.kern2.J + -62 + public.kern2.S + -2 + public.kern2.T + 24 + public.kern2.Ucyr.ss01 + 8 + public.kern2.V + 4 + public.kern2.W + 12 + public.kern2.Y + 2 + public.kern2.a + -60 + public.kern2.comma + -74 + public.kern2.decyr.ss01 + -64 + public.kern2.emdash + -86 + public.kern2.f + -10 + public.kern2.g + -70 + public.kern2.g.ss01 + -56 + public.kern2.guillemotleft + -58 + public.kern2.guillemotright + -60 + public.kern2.i1 + -8 + public.kern2.j + -20 + public.kern2.m + -36 + public.kern2.o + -80 + public.kern2.period + -102 + public.kern2.quotedbl + 28 + public.kern2.quoteright + -28 + public.kern2.s + -56 + public.kern2.tecyr + -28 + public.kern2.u + -27 + public.kern2.w + -12 + public.kern2.x + -12 + public.kern2.y + -12 + public.kern2.z + -18 + + public.kern1.U1 + + public.kern2.A.ss01 + -10 + public.kern2.A2 + -18 + public.kern2.J + -12 + public.kern2.Z + -12 + public.kern2.comma + -30 + public.kern2.i1 + 8 + public.kern2.j + -4 + public.kern2.period + -14 + public.kern2.quoteright + -16 + public.kern2.z + -10 + + public.kern1.Ucyr1 + + public.kern2.A.ss012 + -52 + public.kern2.A2 + -60 + public.kern2.G + -28 + public.kern2.Gecyr + -2 + public.kern2.T + 10 + public.kern2.a + -58 + public.kern2.comma + -82 + public.kern2.decyr.ss01 + -50 + public.kern2.emdash + -50 + public.kern2.guillemotright + -60 + public.kern2.i1 + 44 + public.kern2.m + -44 + public.kern2.o + -62 + public.kern2.period + -106 + public.kern2.tecyr + -12 + public.kern2.x + -28 + public.kern2.y + -30 + + public.kern1.V + + public.kern2.A.ss01 + -52 + public.kern2.A.ss012 + -52 + public.kern2.A2 + -57 + public.kern2.G + -38 + public.kern2.J + -64 + public.kern2.S + -10 + public.kern2.T + 4 + public.kern2.W + 8 + public.kern2.Y + 8 + public.kern2.a + -50 + public.kern2.comma + -84 + public.kern2.emdash + -72 + public.kern2.f + -1 + public.kern2.g + -32 + public.kern2.g.ss01 + -56 + public.kern2.guillemotleft + -48 + public.kern2.guillemotright + -30 + public.kern2.i1 + 40 + public.kern2.j + -12 + public.kern2.m + -50 + public.kern2.o + -64 + public.kern2.period + -108 + public.kern2.quotedbl + 18 + public.kern2.quoteright + -10 + public.kern2.s + -40 + public.kern2.t + -10 + public.kern2.u + -50 + public.kern2.w + -18 + public.kern2.x + -20 + public.kern2.y + -20 + public.kern2.z + -20 + + public.kern1.W.ss011 + + public.kern2.A.ss01 + -34 + public.kern2.A.ss012 + -34 + public.kern2.A2 + -100 + public.kern2.G + -19 + public.kern2.J + -46 + public.kern2.Oslash.alt + 8 + public.kern2.S + -10 + public.kern2.T + 22 + public.kern2.V + 8 + public.kern2.W + 24 + public.kern2.Y + 18 + public.kern2.Z + -10 + public.kern2.a + -44 + public.kern2.comma + -76 + public.kern2.emdash + -36 + public.kern2.g + -19 + public.kern2.g.ss01 + -34 + public.kern2.guillemotright + -10 + public.kern2.i1 + 54 + public.kern2.m + -18 + public.kern2.o + -32 + public.kern2.period + -88 + public.kern2.quotedbl + 26 + public.kern2.quoteright + 4 + public.kern2.s + -26 + public.kern2.u + -26 + public.kern2.w + -27 + public.kern2.y + 5 + public.kern2.z + -18 + + public.kern1.W1 + + public.kern2.A.ss01 + -32 + public.kern2.A.ss012 + -34 + public.kern2.A2 + -48 + public.kern2.G + -18 + public.kern2.J + -46 + public.kern2.S + -9 + public.kern2.T + 4 + public.kern2.V + 8 + public.kern2.Y + 8 + public.kern2.Z + -10 + public.kern2.a + -48 + public.kern2.comma + -40 + public.kern2.emdash + -20 + public.kern2.g + -22 + public.kern2.guillemotleft + -30 + public.kern2.guillemotright + -10 + public.kern2.i1 + -2 + public.kern2.j + -4 + public.kern2.m + -30 + public.kern2.o + -42 + public.kern2.period + -64 + public.kern2.quotedbl + 16 + public.kern2.quoteright + -12 + public.kern2.s + -20 + public.kern2.u + -28 + public.kern2.w + -9 + public.kern2.x + -2 + public.kern2.y + -10 + public.kern2.z + -28 + + public.kern1.Y.ss011 + + public.kern2.A.ss01 + -74 + public.kern2.A.ss012 + -94 + public.kern2.B + -16 + public.kern2.G + -54 + public.kern2.S + -25 + public.kern2.W + 16 + public.kern2.Y + 24 + public.kern2.a + -42 + public.kern2.comma + -106 + public.kern2.emdash + -106 + public.kern2.g.ss01 + -88 + public.kern2.i1 + 50 + public.kern2.m + -86 + public.kern2.o + -116 + public.kern2.period + -130 + public.kern2.quotedbl + 16 + public.kern2.quoteright + -30 + public.kern2.s + -83 + public.kern2.t + -24 + public.kern2.u + -60 + public.kern2.w + -40 + public.kern2.x + -32 + public.kern2.y + -24 + public.kern2.z + -32 + + public.kern1.Y1 + + public.kern2.A.ss012 + -94 + public.kern2.A2 + -82 + public.kern2.B + -8 + public.kern2.G + -64 + public.kern2.J + -56 + public.kern2.S + -38 + public.kern2.T + 10 + public.kern2.V + 14 + public.kern2.W + 8 + public.kern2.Y + 25 + public.kern2.a + -78 + public.kern2.comma + -96 + public.kern2.emdash + -108 + public.kern2.f + -30 + public.kern2.g + -76 + public.kern2.guillemotleft + -94 + public.kern2.guillemotright + -68 + public.kern2.i1 + 44 + public.kern2.j + -6 + public.kern2.m + -88 + public.kern2.o + -108 + public.kern2.period + -148 + public.kern2.quotedbl + 26 + public.kern2.quoteright + -36 + public.kern2.s + -86 + public.kern2.t + -18 + public.kern2.u + -70 + public.kern2.w + -54 + public.kern2.x + -48 + public.kern2.y + -48 + public.kern2.z + -50 + + public.kern1.Yacyr + + public.kern2.A.ss012 + 8 + public.kern2.Ucyr.ss01 + -2 + public.kern2.i1 + 8 + + public.kern1.Z1 + + public.kern2.A.ss01 + 34 + public.kern2.A.ss012 + 28 + public.kern2.A2 + 16 + public.kern2.B + 8 + public.kern2.G + -28 + public.kern2.J + 32 + public.kern2.Oslash.alt + -8 + public.kern2.S + 16 + public.kern2.T + 2 + public.kern2.U + -4 + public.kern2.V + 8 + public.kern2.W + 2 + public.kern2.Z + 16 + public.kern2.a + 6 + public.kern2.comma + 26 + public.kern2.emdash + -32 + public.kern2.h + 8 + public.kern2.i1 + 34 + public.kern2.j + 16 + public.kern2.o + -3 + public.kern2.period + 26 + public.kern2.quoteright + -32 + public.kern2.s + 6 + public.kern2.t + -2 + public.kern2.u + -12 + public.kern2.w + -12 + public.kern2.x + 8 + public.kern2.y + -10 + public.kern2.z + 24 + + public.kern1.a1 + + public.kern2.A.ss012 + 18 + public.kern2.G + -1 + public.kern2.J + 8 + public.kern2.S + -4 + public.kern2.T + -70 + public.kern2.U + -8 + public.kern2.V + -63 + public.kern2.W + -40 + public.kern2.Y + -96 + public.kern2.comma + -2 + public.kern2.f + -5 + public.kern2.j + -4 + public.kern2.quotedbl + -35 + public.kern2.quoteright + -28 + public.kern2.t + -9 + public.kern2.u + -10 + public.kern2.w + -27 + public.kern2.y + -20 + public.kern2.z + 5 + + public.kern1.c1 + + public.kern2.A.ss012 + 16 + public.kern2.A2 + 12 + public.kern2.G + 2 + public.kern2.J + 16 + public.kern2.Oslash.alt + -8 + public.kern2.T + -50 + public.kern2.Ucyr.ss01 + -34 + public.kern2.V + -38 + public.kern2.W + -20 + public.kern2.Y + -50 + public.kern2.Z + 8 + public.kern2.emdash + -24 + public.kern2.g + 1 + public.kern2.h + -8 + public.kern2.o + -8 + public.kern2.period + 4 + public.kern2.quotedbl + -6 + public.kern2.quoteright + -4 + public.kern2.t + 8 + public.kern2.tecyr + 8 + public.kern2.x + -8 + public.kern2.y + -4 + + public.kern1.comma1 + + public.kern2.A.ss01 + 2 + public.kern2.A.ss012 + 8 + public.kern2.G + -26 + public.kern2.J + 28 + public.kern2.T + -78 + public.kern2.U + -6 + public.kern2.Ucyr.ss01 + -24 + public.kern2.V + -72 + public.kern2.W + -38 + public.kern2.Y + -108 + public.kern2.Z + 24 + public.kern2.a + -4 + public.kern2.decyr.ss01 + 8 + public.kern2.f + -16 + public.kern2.five + -4 + public.kern2.h + -4 + public.kern2.i1 + -4 + public.kern2.j + 8 + public.kern2.m + -12 + public.kern2.o + -14 + public.kern2.t + -30 + public.kern2.tecyr + -56 + public.kern2.u + -6 + public.kern2.w + -14 + public.kern2.x + -12 + public.kern2.y + -30 + public.kern2.z + 6 + public.kern2.zero + -6 + + public.kern1.dcaron + + public.kern2.A2 + 8 + public.kern2.B + 92 + public.kern2.G + 34 + public.kern2.J + 16 + public.kern2.Oslash.alt + 124 + public.kern2.S + 76 + public.kern2.T + 130 + public.kern2.U + 94 + public.kern2.V + 144 + public.kern2.W + 132 + public.kern2.Y + 144 + public.kern2.Z + 114 + public.kern2.a + 10 + public.kern2.f + 74 + public.kern2.fi.ss01 + 90 + public.kern2.g + 8 + public.kern2.g.ss01 + 8 + public.kern2.h + 112 + public.kern2.i1 + 120 + public.kern2.j + 114 + public.kern2.l.ss01 + 104 + public.kern2.m + 26 + public.kern2.o + 20 + public.kern2.s + 18 + public.kern2.t + 80 + public.kern2.u + 16 + public.kern2.w + 30 + public.kern2.x + 30 + public.kern2.y + 30 + public.kern2.z + 38 + + public.kern1.decyr1 + + public.kern2.A.ss012 + 24 + public.kern2.A2 + 18 + public.kern2.G + -16 + public.kern2.Oslash.alt + 8 + public.kern2.T + -56 + public.kern2.Ucyr.ss01 + -24 + public.kern2.comma + 34 + public.kern2.decyr.ss01 + 19 + public.kern2.emdash + -10 + public.kern2.o + -12 + public.kern2.period + 18 + public.kern2.quoteright + -20 + public.kern2.tecyr + -28 + public.kern2.x + 8 + public.kern2.y + -10 + + public.kern1.e.ss011 + + public.kern2.Oslash.alt + -10 + public.kern2.T + -64 + public.kern2.V + -50 + public.kern2.W + -24 + public.kern2.Y + -80 + public.kern2.comma + -8 + public.kern2.l.ss01 + -8 + public.kern2.o + -8 + public.kern2.quotedbl + -40 + public.kern2.quoteright + -6 + public.kern2.w + -16 + public.kern2.y + -16 + + public.kern1.e1 + + public.kern2.A.ss012 + 18 + public.kern2.A2 + -1 + public.kern2.G + 8 + public.kern2.Oslash.alt + -20 + public.kern2.T + -64 + public.kern2.Ucyr.ss01 + -54 + public.kern2.V + -60 + public.kern2.W + -34 + public.kern2.Y + -94 + public.kern2.Z + -10 + public.kern2.comma + -4 + public.kern2.emdash + 4 + public.kern2.j + -4 + public.kern2.o + 8 + public.kern2.period + -4 + public.kern2.quotedbl + -22 + public.kern2.quoteright + -8 + public.kern2.w + -18 + public.kern2.x + -20 + public.kern2.y + -28 + public.kern2.z + -2 + + public.kern1.emdash1 + + public.kern2.A.ss01 + 18 + public.kern2.A2 + -2 + public.kern2.G + 4 + public.kern2.J + 14 + public.kern2.Oslash.alt + -28 + public.kern2.S + -14 + public.kern2.T + -86 + public.kern2.Ucyr.ss01 + -50 + public.kern2.V + -56 + public.kern2.W + -20 + public.kern2.Y + -108 + public.kern2.Z + -12 + public.kern2.decyr.ss01 + -14 + public.kern2.f + -24 + public.kern2.five + -20 + public.kern2.four + 4 + public.kern2.g.ss01 + 10 + public.kern2.j + -4 + public.kern2.o + 10 + public.kern2.s + -8 + public.kern2.t + -16 + public.kern2.tecyr + -40 + public.kern2.w + -8 + public.kern2.x + -36 + public.kern2.y + -26 + public.kern2.z + -6 + + public.kern1.f1 + + public.kern2.A.ss012 + -10 + public.kern2.A2 + -36 + public.kern2.J + -36 + public.kern2.S + 10 + public.kern2.T + 18 + public.kern2.V + 2 + public.kern2.Y + 10 + public.kern2.a + -17 + public.kern2.comma + -48 + public.kern2.emdash + -28 + public.kern2.f + 10 + public.kern2.g + -2 + public.kern2.h + 12 + public.kern2.i1 + 1 + public.kern2.o + -14 + public.kern2.period + -54 + public.kern2.quotedbl + 36 + public.kern2.quoteright + 20 + public.kern2.s + -4 + public.kern2.t + 27 + public.kern2.w + 8 + public.kern2.x + 8 + public.kern2.y + 12 + + public.kern1.five1 + + public.kern2.comma + -30 + public.kern2.five + -16 + public.kern2.four + 8 + public.kern2.i1 + 16 + public.kern2.period + -3 + + public.kern1.four1 + + public.kern2.emdash + -4 + public.kern2.five + 18 + public.kern2.four + 18 + public.kern2.period + 16 + public.kern2.quotedbl + -20 + + public.kern1.g.ss011 + + public.kern2.A.ss01 + 16 + public.kern2.V + -4 + public.kern2.W + 16 + public.kern2.Y + -24 + public.kern2.g.ss01 + 16 + public.kern2.h + 8 + public.kern2.i1 + 8 + public.kern2.j + 57 + public.kern2.l.ss01 + 16 + public.kern2.m + 8 + public.kern2.o + 8 + public.kern2.quotedbl + 32 + public.kern2.quoteright + 34 + public.kern2.s + 8 + public.kern2.t + 32 + public.kern2.w + 16 + public.kern2.x + 16 + public.kern2.y + 24 + public.kern2.z + 24 + + public.kern1.g1 + + public.kern2.A2 + 17 + public.kern2.T + -16 + public.kern2.V + -20 + public.kern2.W + -2 + public.kern2.Y + -30 + public.kern2.a + -8 + public.kern2.comma + 18 + public.kern2.f + 6 + public.kern2.i1 + 8 + public.kern2.j + 51 + public.kern2.m + -8 + public.kern2.quotedbl + -2 + public.kern2.s + -8 + public.kern2.w + -8 + public.kern2.y + -6 + + public.kern1.gecyr + + public.kern2.A.ss012 + -8 + public.kern2.A2 + -26 + public.kern2.G + 8 + public.kern2.Oslash.alt + -16 + public.kern2.T + -24 + public.kern2.Ucyr.ss01 + -36 + public.kern2.a + -16 + public.kern2.comma + -56 + public.kern2.decyr.ss01 + -30 + public.kern2.emdash + -50 + public.kern2.i1 + 32 + public.kern2.o + -16 + public.kern2.period + -96 + public.kern2.quoteright + 28 + public.kern2.tecyr + 4 + public.kern2.x + 2 + public.kern2.y + 4 + + public.kern1.guillemotright1 + + public.kern2.J + -32 + public.kern2.T + -58 + public.kern2.V + -48 + public.kern2.W + -30 + public.kern2.Y + -94 + + public.kern1.hardcyr + + public.kern2.Oslash.alt + -10 + public.kern2.T + -78 + public.kern2.Ucyr.ss01 + -44 + public.kern2.comma + -8 + public.kern2.quotedbl + -84 + public.kern2.quoteright + -34 + public.kern2.tecyr + -74 + public.kern2.x + -20 + public.kern2.y + -58 + + public.kern1.i1 + + public.kern2.B + 8 + public.kern2.Gecyr + 8 + public.kern2.Oslash.alt + 32 + public.kern2.T + -12 + public.kern2.U + 8 + public.kern2.Ucyr.ss01 + 40 + public.kern2.V + 44 + public.kern2.W + 50 + public.kern2.Y + 52 + public.kern2.Z + 24 + public.kern2.h + 8 + public.kern2.i1 + 12 + public.kern2.percent + 24 + public.kern2.quotedbl + 8 + public.kern2.quoteright + -10 + + public.kern1.icyr1 + + public.kern2.A.ss012 + 8 + public.kern2.J + 8 + public.kern2.T + -28 + public.kern2.Ucyr.ss01 + -44 + public.kern2.V + -10 + public.kern2.W + -20 + public.kern2.Y + -80 + public.kern2.comma + -8 + public.kern2.j + 24 + public.kern2.quoteright + -4 + + public.kern1.j1 + + public.kern2.T + -16 + public.kern2.i1 + 8 + public.kern2.j + 24 + public.kern2.quotedbl + 8 + public.kern2.quoteright + -4 + public.kern2.z + 8 + + public.kern1.k + + public.kern2.A.ss01 + 16 + public.kern2.A.ss012 + 18 + public.kern2.A2 + 18 + public.kern2.G + -18 + public.kern2.J + 18 + public.kern2.T + -12 + public.kern2.Ucyr.ss01 + -20 + public.kern2.V + -24 + public.kern2.W + -20 + public.kern2.Y + -44 + public.kern2.a + -10 + public.kern2.emdash + -48 + public.kern2.l.ss01 + -8 + public.kern2.o + -28 + public.kern2.quoteright + -8 + public.kern2.x + 14 + public.kern2.z + 8 + + public.kern1.l + + public.kern2.guillemotright + 8 + public.kern2.h + 2 + public.kern2.i1 + 8 + public.kern2.quoteright + -4 + public.kern2.s + 4 + + public.kern1.l.ss011 + + public.kern2.A.ss01 + 20 + public.kern2.G + -8 + public.kern2.T + -56 + public.kern2.U + -8 + public.kern2.V + -48 + public.kern2.W + -40 + public.kern2.Y + -40 + public.kern2.emdash + -8 + public.kern2.f + -40 + public.kern2.fi.ss01 + -8 + public.kern2.j + -4 + public.kern2.o + -8 + public.kern2.period + 8 + public.kern2.quotedbl + -28 + public.kern2.quoteright + -24 + public.kern2.t + -34 + public.kern2.w + -46 + public.kern2.y + -54 + public.kern2.z + 8 + + public.kern1.n + + public.kern2.A.ss01 + 8 + public.kern2.A.ss012 + 8 + public.kern2.G + -8 + public.kern2.J + 16 + public.kern2.T + -61 + public.kern2.Ucyr.ss01 + -54 + public.kern2.V + -60 + public.kern2.W + -40 + public.kern2.Y + -100 + public.kern2.emdash + 8 + public.kern2.guillemotright + 8 + public.kern2.j + -4 + public.kern2.quotedbl + -28 + public.kern2.quoteright + -4 + public.kern2.t + -8 + public.kern2.tecyr + -2 + public.kern2.w + -19 + public.kern2.y + -24 + + public.kern1.numero + + public.kern2.i1 + 32 + + public.kern1.o1 + + public.kern2.A.ss01 + 8 + public.kern2.A.ss012 + 8 + public.kern2.A2 + -10 + public.kern2.J + 4 + public.kern2.Oslash.alt + -30 + public.kern2.S + -18 + public.kern2.T + -80 + public.kern2.Ucyr.ss01 + -50 + public.kern2.V + -64 + public.kern2.W + -42 + public.kern2.Y + -108 + public.kern2.Z + -22 + public.kern2.a + -1 + public.kern2.comma + -24 + public.kern2.emdash + 8 + public.kern2.j + -4 + public.kern2.period + -18 + public.kern2.quotedbl + -24 + public.kern2.quoteright + -16 + public.kern2.s + -10 + public.kern2.tecyr + -12 + public.kern2.w + -19 + public.kern2.x + -25 + public.kern2.y + -29 + public.kern2.z + -12 + + public.kern1.period1 + + public.kern2.A.ss01 + 28 + public.kern2.A.ss012 + 30 + public.kern2.A2 + 38 + public.kern2.G + -42 + public.kern2.J + 44 + public.kern2.Oslash.alt + 10 + public.kern2.T + -102 + public.kern2.U + -14 + public.kern2.Ucyr.ss01 + -20 + public.kern2.V + -102 + public.kern2.W + -64 + public.kern2.Y + -148 + public.kern2.Z + 18 + public.kern2.decyr.ss01 + 16 + public.kern2.f + -24 + public.kern2.five + -2 + public.kern2.g.ss01 + 8 + public.kern2.j + 4 + public.kern2.o + -18 + public.kern2.quotedbl + -32 + public.kern2.t + -30 + public.kern2.tecyr + -68 + public.kern2.u + -6 + public.kern2.w + -38 + public.kern2.y + -75 + public.kern2.z + 8 + public.kern2.zero + -18 + + public.kern1.quotedbl1 + + public.kern2.A.ss01 + -66 + public.kern2.A.ss012 + -46 + public.kern2.A2 + -50 + public.kern2.G + -12 + public.kern2.J + -56 + public.kern2.Oslash.alt + 16 + public.kern2.T + 30 + public.kern2.V + 18 + public.kern2.W + 26 + public.kern2.Y + 26 + public.kern2.Z + 6 + public.kern2.a + -15 + public.kern2.decyr.ss01 + -40 + public.kern2.four + -68 + public.kern2.g + -22 + public.kern2.g.ss01 + -28 + public.kern2.h + 8 + public.kern2.i1 + 8 + public.kern2.j + -4 + public.kern2.l.ss01 + 8 + public.kern2.o + -24 + public.kern2.period + -34 + public.kern2.s + -22 + public.kern2.t + 16 + public.kern2.w + 8 + public.kern2.x + -2 + public.kern2.y + 8 + public.kern2.z + -2 + public.kern2.zero + -12 + + public.kern1.quoteleft1 + + public.kern2.A.ss01 + -52 + public.kern2.A.ss012 + -40 + public.kern2.A2 + -34 + public.kern2.B + 8 + public.kern2.G + -20 + public.kern2.Gecyr + 8 + public.kern2.J + -8 + public.kern2.Oslash.alt + 26 + public.kern2.T + 24 + public.kern2.Ucyr.ss01 + 40 + public.kern2.V + 28 + public.kern2.W + 30 + public.kern2.Y + 38 + public.kern2.Z + 8 + public.kern2.a + -30 + public.kern2.decyr.ss01 + -8 + public.kern2.f + 2 + public.kern2.g + -42 + public.kern2.g.ss01 + -32 + public.kern2.i1 + 46 + public.kern2.j + -2 + public.kern2.m + -20 + public.kern2.o + -44 + public.kern2.s + -22 + public.kern2.u + -20 + public.kern2.w + -6 + public.kern2.x + -22 + public.kern2.y + -12 + public.kern2.z + -22 + + public.kern1.quoteright1 + + public.kern2.A.ss01 + -60 + public.kern2.A2 + -60 + public.kern2.B + -2 + public.kern2.G + -32 + public.kern2.J + -42 + public.kern2.Oslash.alt + 6 + public.kern2.S + -14 + public.kern2.T + 18 + public.kern2.U + -4 + public.kern2.V + 26 + public.kern2.W + 28 + public.kern2.Y + 32 + public.kern2.Z + -4 + public.kern2.a + -62 + public.kern2.f + -8 + public.kern2.g + -72 + public.kern2.g.ss01 + -46 + public.kern2.h + -14 + public.kern2.i1 + 13 + public.kern2.m + -22 + public.kern2.o + -74 + public.kern2.s + -70 + public.kern2.t + -2 + public.kern2.u + -22 + public.kern2.w + -8 + public.kern2.x + -8 + public.kern2.y + -30 + public.kern2.z + -36 + + public.kern1.s1 + + public.kern2.A.ss01 + 8 + public.kern2.A2 + 2 + public.kern2.G + -8 + public.kern2.J + 10 + public.kern2.Oslash.alt + -1 + public.kern2.T + -56 + public.kern2.V + -40 + public.kern2.W + -28 + public.kern2.Y + -76 + public.kern2.Z + -2 + public.kern2.a + 4 + public.kern2.comma + -2 + public.kern2.f + -8 + public.kern2.g.ss01 + -8 + public.kern2.guillemotright + 16 + public.kern2.period + -4 + public.kern2.quotedbl + -30 + public.kern2.quoteright + -12 + public.kern2.t + -8 + public.kern2.w + -20 + public.kern2.x + -10 + public.kern2.y + -24 + + public.kern1.t.ss011 + + public.kern2.A.ss01 + 24 + public.kern2.B + 8 + public.kern2.G + 8 + public.kern2.Y + -32 + public.kern2.Z + 8 + public.kern2.emdash + -2 + public.kern2.h + 8 + public.kern2.l.ss01 + 8 + public.kern2.m + 8 + public.kern2.o + 8 + public.kern2.period + 16 + public.kern2.quoteright + 8 + public.kern2.t + 24 + public.kern2.z + 24 + + public.kern1.t1 + + public.kern2.G + -2 + public.kern2.J + 28 + public.kern2.T + -3 + public.kern2.V + -20 + public.kern2.W + -2 + public.kern2.Y + -21 + public.kern2.Z + 8 + public.kern2.emdash + -6 + public.kern2.f + 16 + public.kern2.g + 8 + public.kern2.h + 6 + public.kern2.i1 + 8 + public.kern2.j + 9 + public.kern2.l.ss01 + 8 + public.kern2.o + -2 + public.kern2.period + 8 + public.kern2.quotedbl + 16 + public.kern2.quoteright + 8 + public.kern2.t + 18 + public.kern2.x + 8 + public.kern2.y + 2 + public.kern2.z + 12 + + public.kern1.u1 + + public.kern2.A.ss01 + 8 + public.kern2.J + 8 + public.kern2.T + -44 + public.kern2.V + -50 + public.kern2.W + -22 + public.kern2.Y + -80 + public.kern2.j + -4 + public.kern2.quoteright + -4 + + public.kern1.uni0435.ss011 + + public.kern2.A.ss012 + 16 + public.kern2.T + -62 + public.kern2.Ucyr.ss01 + -36 + public.kern2.V + -50 + public.kern2.W + -12 + public.kern2.Y + -76 + public.kern2.period + 8 + public.kern2.quoteright + 16 + public.kern2.w + -9 + public.kern2.x + -2 + public.kern2.y + -10 + + public.kern1.w1 + + public.kern2.A.ss01 + -16 + public.kern2.A.ss012 + -9 + public.kern2.A2 + -20 + public.kern2.J + -14 + public.kern2.Oslash.alt + -20 + public.kern2.S + -4 + public.kern2.T + -12 + public.kern2.V + -18 + public.kern2.W + -9 + public.kern2.Y + -54 + public.kern2.Z + -30 + public.kern2.a + -19 + public.kern2.comma + -36 + public.kern2.emdash + -8 + public.kern2.f + 8 + public.kern2.g + -8 + public.kern2.g.ss01 + -10 + public.kern2.j + -10 + public.kern2.o + -19 + public.kern2.period + -38 + public.kern2.quotedbl + 8 + public.kern2.quoteright + 8 + public.kern2.s + -19 + public.kern2.w + -8 + + public.kern1.x + + public.kern2.A.ss01 + 16 + public.kern2.A2 + 8 + public.kern2.G + -18 + public.kern2.J + 16 + public.kern2.S + -2 + public.kern2.T + -12 + public.kern2.Ucyr.ss01 + -12 + public.kern2.V + -20 + public.kern2.W + -2 + public.kern2.Y + -48 + public.kern2.a + -8 + public.kern2.emdash + -36 + public.kern2.o + -25 + public.kern2.quotedbl + -2 + public.kern2.quoteright + -8 + public.kern2.s + -2 + + public.kern1.y1 + + public.kern2.A.ss01 + -16 + public.kern2.A.ss012 + -17 + public.kern2.A2 + -20 + public.kern2.G + -8 + public.kern2.J + -24 + public.kern2.Oslash.alt + -30 + public.kern2.T + -12 + public.kern2.Ucyr.ss01 + -25 + public.kern2.V + -20 + public.kern2.W + -9 + public.kern2.Y + -48 + public.kern2.Z + -20 + public.kern2.a + -13 + public.kern2.comma + -56 + public.kern2.decyr.ss01 + -28 + public.kern2.emdash + -24 + public.kern2.f + 12 + public.kern2.g + -10 + public.kern2.g.ss01 + -4 + public.kern2.h + -8 + public.kern2.j + -10 + public.kern2.o + -18 + public.kern2.period + -72 + public.kern2.quotedbl + 8 + public.kern2.quoteright + 12 + public.kern2.s + -16 + public.kern2.t + 10 + public.kern2.tecyr + 2 + public.kern2.x + 8 + public.kern2.y + 8 + + public.kern1.z1 + + public.kern2.A.ss012 + 16 + public.kern2.A2 + 18 + public.kern2.J + 24 + public.kern2.S + -4 + public.kern2.T + -18 + public.kern2.V + -20 + public.kern2.W + -28 + public.kern2.Y + -50 + public.kern2.comma + 10 + public.kern2.f + 2 + public.kern2.g + 8 + public.kern2.j + 8 + public.kern2.o + -12 + public.kern2.period + 8 + public.kern2.quotedbl + -4 + public.kern2.quoteright + -2 + public.kern2.s + 4 + public.kern2.t + 8 + public.kern2.x + 8 + public.kern2.z + 8 + + + diff --git a/sources/FixelText-ExtraBold.ufo/layercontents.plist b/sources/FixelText-ExtraBold.ufo/layercontents.plist new file mode 100644 index 00000000..7a35a5cf --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/layercontents.plist @@ -0,0 +1,10 @@ + + + + + + public.default + glyphs + + + diff --git a/sources/FixelText-ExtraBold.ufo/lib.plist b/sources/FixelText-ExtraBold.ufo/lib.plist new file mode 100644 index 00000000..c0069150 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/lib.plist @@ -0,0 +1,1671 @@ + + + + + com.fontlab.v2.tth + + stems + + 69 + + width + 69 + horizontal + + round + + 35 + 3 + 47 + 4 + 60 + 5 + 0 + 7 + 22 + 8 + + + 74 + + width + 74 + horizontal + + round + + 19 + 2 + 35 + 3 + 47 + 4 + 60 + 5 + 72 + 6 + 0 + 7 + 20 + 8 + + + 76 + + width + 76 + horizontal + + round + + 19 + 2 + 35 + 3 + 72 + 6 + 0 + 7 + 20 + 8 + + + 80 + + width + 80 + horizontal + + round + + 29 + 3 + 47 + 4 + 60 + 5 + 72 + 6 + 0 + 7 + 20 + 8 + + + 99 + + width + 99 + horizontal + + round + + 19 + 2 + 29 + 3 + 37 + 4 + 48 + 5 + 58 + 6 + 0 + 7 + 16 + 8 + + + 74 + + width + 74 + horizontal + + round + + 19 + 2 + 35 + 3 + 47 + 4 + 60 + 5 + 72 + 6 + 0 + 7 + 20 + 8 + + + 80 + + width + 80 + horizontal + + round + + 29 + 3 + 47 + 4 + 60 + 5 + 72 + 6 + 0 + 7 + 20 + 8 + + + 93 + + width + 93 + horizontal + + round + + 19 + 2 + 29 + 3 + 37 + 4 + 48 + 5 + 58 + 6 + 0 + 7 + 16 + 8 + + + + + com.schriftgestaltung.disablesAutomaticAlignment + + com.schriftgestaltung.fontMasterID + master01 + com.schriftgestaltung.glyphOrder + + com.schriftgestaltung.master.name + regular + com.schriftgestaltung.useNiceNames + + com.schriftgestaltung.weightValue + 400 + public.postscriptNames + + A-cy + uni0410 + A-cy.ss01 + uni0410.ss01 + Be-cy + uni0411 + Che-cy + uni0427 + De-cy + uni0414 + Dze-cy + uni0405 + E-cy + uni0404 + Ef-cy + uni0424 + El-cy + uni041B + Em-cy + uni041C + Em-cy.ss01 + uni041C.ss01 + En-cy + uni041D + Er-cy + uni0420 + Ereversed-cy + uni042D + Es-cy + uni0421 + Gacute + uni01F4 + Gacute.ss01 + uni01F4.ss01 + Gcommaaccent + uni0122 + Gcommaaccent.ss01 + uni0122.ss01 + Ge-cy + uni0413 + Germandbls + uni1E9E + Gheupturn-cy + uni0490 + Ha-cy + uni0425 + Ha-cy.ss01 + uni0425.ss01 + Hardsign-cy + uni042A + I-cy + uni0406 + Ia-cy + uni042F + Ia-cy.ss01 + uni042F.ss01 + Ie-cy + uni0415 + Ii-cy + uni0418 + Iishort-cy + uni0419 + Io-cy + uni0401 + Iu-cy + uni042E + Ka-cy + uni041A + Ka-cy.ss01 + uni041A.ss01 + Kcommaaccent + uni0136 + Kcommaaccent.ss01 + uni0136.ss01 + Lcommaaccent + uni013B + Ncommaaccent + uni0145 + Ncommaaccent.ss01 + uni0145.ss01 + O-cy + uni041E + Pe-cy + uni041F + Rcommaaccent + uni0156 + Scommaaccent + uni0218 + Sha-cy + uni0428 + Shcha-cy + uni0429 + Softsign-cy + uni042C + Tcedilla + uni0162 + Tcommaaccent + uni021A + Te-cy + uni0422 + Tse-cy + uni0426 + U-cy + uni0423 + U-cy.ss01 + uni0423.ss01 + Ushort-cy + uni040E + Ushort-cy.ss01 + uni040E.ss01 + Ve-cy + uni0412 + Yeru-cy + uni042B + Yi-cy + uni0407 + Ze-cy + uni0417 + Zhe-cy + uni0416 + Zhe-cy.ss01 + uni0416.ss01 + _perc-circule + _perccircule + a-cy + uni0430 + a-cy.ss01 + uni0430.ss01 + be-cy + uni0431 + che-cy + uni0447 + commaaccentcomb + uni0326 + commaaccentcomb.salt + uni0326.salt + de-cy + uni0434 + de-cy.ss01 + uni0434.ss01 + dze-cy + uni0455 + e-cy + uni0454 + ef-cy + uni0444 + el-cy + uni043B + el-cy.ss01 + uni043B.ss01 + em-cy + uni043C + en-cy + uni043D + er-cy + uni0440 + er-cy.ss01 + uni0440.ss01 + ereversed-cy + uni044D + es-cy + uni0441 + euro + Euro + gacute + uni01F5 + gacute.ss01 + uni01F5.ss01 + gcommaaccent + uni0123 + gcommaaccent.ss01 + uni0123.ss01 + ge-cy + uni0433 + gheupturn-cy + uni0491 + guillemetleft + guillemotleft + guillemetright + guillemotright + ha-cy + uni0445 + hardsign-cy + uni044A + hardsign-cy.ss01 + uni044A.ss01 + hryvnia + uni20B4 + i-cy + uni0456 + ia-cy + uni044F + ia-cy.ss01 + uni044F.ss01 + idotless + dotlessi + ie-cy + uni0435 + ie-cy.ss01 + uni0435.ss01 + ii-cy + uni0438 + iishort-cy + uni0439 + io-cy + uni0451 + io-cy.ss01 + uni0451.ss01 + iu-cy + uni044E + jdotless + uni0237 + je-cy + uni0458 + ka-cy + uni043A + kcommaaccent + uni0137 + lcommaaccent + uni013C + lcommaaccent.ss01 + uni013C.ss01 + ncommaaccent + uni0146 + numero + uni2116 + numero.ss01 + uni2116.ss01 + o-cy + uni043E + onesuperior + uni00B9 + pe-cy + uni043F + rcommaaccent + uni0157 + scommaaccent + uni0219 + sha-cy + uni0448 + shcha-cy + uni0449 + softsign-cy + uni044C + softsign-cy.ss01 + uni044C.ss01 + tcedilla + uni0163 + tcedilla.ss01 + uni0163.ss01 + tcommaaccent + uni021B + tcommaaccent.ss01 + uni021B.ss01 + te-cy + uni0442 + te-cy.ss01 + uni0442.ss01 + threesuperior + uni00B3 + tse-cy + uni0446 + twosuperior + uni00B2 + u-cy + uni0443 + ushort-cy + uni045E + ve-cy + uni0432 + ve-cy.ss01 + uni0432.ss01 + yeru-cy + uni044B + yeru-cy.ss01 + uni044B.ss01 + yi-cy + uni0457 + ze-cy + uni0437 + zhe-cy + uni0436 + + public.skipExportGlyphs + + Oslash.bold + oslash.bold + _perc-circule + + public.glyphOrder + + .notdef + NULL + CR + space + A + Aacute + Abreve + Acircumflex + Adieresis + Agrave + Amacron + Aogonek + Aring + Atilde + AE + B + C + Cacute + Ccaron + Ccedilla + Ccircumflex + Cdotaccent + D + Eth + Dcaron + Dcroat + E + Eacute + Ebreve + Ecaron + Ecircumflex + Edieresis + Edotaccent + Egrave + Emacron + Eogonek + F + G + Gacute + Gbreve + Gcircumflex + Gcommaaccent + Gdotaccent + H + Hbar + Hcircumflex + I + IJ + Iacute + Ibreve + Icircumflex + Idieresis + Idotaccent + Igrave + Imacron + Iogonek + Itilde + J + Jcircumflex + K + Kcommaaccent + L + Lacute + Lcaron + Lcommaaccent + Ldot + Lslash + M + N + Nacute + Ncaron + Ncommaaccent + Eng + Ntilde + O + Oacute + Obreve + Ocircumflex + Odieresis + Ograve + Ohungarumlaut + Omacron + Oslash + Otilde + OE + P + Thorn + Q + R + Racute + Rcaron + Rcommaaccent + S + Sacute + Scaron + Scedilla + Scircumflex + Scommaaccent + Germandbls + T + Tbar + Tcaron + Tcedilla + Tcommaaccent + U + Uacute + Ubreve + Ucircumflex + Udieresis + Ugrave + Uhungarumlaut + Umacron + Uogonek + Uring + Utilde + V + W + Wacute + Wcircumflex + Wdieresis + Wgrave + X + Y + Yacute + Ycircumflex + Ydieresis + Z + Zacute + Zcaron + Zdotaccent + A.ss01 + Aacute.ss01 + Abreve.ss01 + Acircumflex.ss01 + Adieresis.ss01 + Agrave.ss01 + Amacron.ss01 + Aogonek.ss01 + Aring.ss01 + Atilde.ss01 + AE.ss01 + G.ss01 + Gacute.ss01 + Gbreve.ss01 + Gcircumflex.ss01 + Gcommaaccent.ss01 + Gdotaccent.ss01 + J.ss01 + Jcircumflex.ss01 + K.ss01 + Kcommaaccent.ss01 + M.ss01 + N.ss01 + Nacute.ss01 + Ncaron.ss01 + Ncommaaccent.ss01 + Eng.ss01 + Ntilde.ss01 + Q.ss01 + V.ss01 + W.ss01 + Wacute.ss01 + Wcircumflex.ss01 + Wdieresis.ss01 + Wgrave.ss01 + X.ss01 + Y.ss01 + Yacute.ss01 + Ycircumflex.ss01 + Ydieresis.ss01 + Z.ss01 + Zacute.ss01 + Zcaron.ss01 + Zdotaccent.ss01 + a + aacute + abreve + acircumflex + adieresis + agrave + amacron + aogonek + aring + atilde + ae + b + c + cacute + ccaron + ccedilla + ccircumflex + cdotaccent + d + eth + dcaron + dcroat + e + eacute + ebreve + ecaron + ecircumflex + edieresis + edotaccent + egrave + emacron + eogonek + f + g + gacute + gbreve + gcircumflex + gcommaaccent + gdotaccent + h + hbar + hcircumflex + i + idotless + iacute + ibreve + icircumflex + idieresis + igrave + ij + imacron + iogonek + itilde + j + jdotless + jcircumflex + k + kcommaaccent + kgreenlandic + l + lacute + lcaron + lcommaaccent + ldot + lslash + m + n + nacute + napostrophe + ncaron + ncommaaccent + eng + ntilde + o + oacute + obreve + ocircumflex + odieresis + ograve + ohungarumlaut + omacron + oslash + otilde + oe + p + thorn + q + r + racute + rcaron + rcommaaccent + s + sacute + scaron + scedilla + scircumflex + scommaaccent + germandbls + t + tbar + tcaron + tcedilla + tcommaaccent + u + uacute + ubreve + ucircumflex + udieresis + ugrave + uhungarumlaut + umacron + uogonek + uring + utilde + v + w + wacute + wcircumflex + wdieresis + wgrave + x + y + yacute + ycircumflex + ydieresis + z + zacute + zcaron + zdotaccent + a.ss01 + aacute.ss01 + abreve.ss01 + acircumflex.ss01 + adieresis.ss01 + agrave.ss01 + amacron.ss01 + aogonek.ss01 + aring.ss01 + atilde.ss01 + ae.ss01 + b.ss01 + d.ss01 + dcaron.ss01 + dcroat.ss01 + e.ss01 + eacute.ss01 + ebreve.ss01 + ecaron.ss01 + ecircumflex.ss01 + edieresis.ss01 + edotaccent.ss01 + egrave.ss01 + emacron.ss01 + eogonek.ss01 + f.ss01 + g.ss01 + gacute.ss01 + gbreve.ss01 + gcircumflex.ss01 + gcommaaccent.ss01 + gdotaccent.ss01 + l.ss01 + lacute.ss01 + lcaron.ss01 + lcommaaccent.ss01 + ldot.ss01 + lslash.ss01 + oe.ss01 + p.ss01 + q.ss01 + germandbls.ss01 + t.ss01 + tbar.ss01 + tcaron.ss01 + tcedilla.ss01 + tcommaaccent.ss01 + f_f + f_f_i + f_f_l + fi + fl + f_f.ss01 + f_f_i.ss01 + f_f_l.ss01 + fi.ss01 + fl.ss01 + ordfeminine + ordmasculine + A-cy + Be-cy + Ve-cy + Ge-cy + Gheupturn-cy + De-cy + Ie-cy + Io-cy + Zhe-cy + Ze-cy + Ii-cy + Iishort-cy + Ka-cy + El-cy + Em-cy + En-cy + O-cy + Pe-cy + Er-cy + Es-cy + Te-cy + U-cy + Ushort-cy + Ef-cy + Ha-cy + Che-cy + Tse-cy + Sha-cy + Shcha-cy + Softsign-cy + Hardsign-cy + Yeru-cy + Dze-cy + E-cy + Ereversed-cy + I-cy + Yi-cy + Iu-cy + Ia-cy + A-cy.ss01 + Zhe-cy.ss01 + Ka-cy.ss01 + Em-cy.ss01 + U-cy.ss01 + Ushort-cy.ss01 + Ha-cy.ss01 + Ia-cy.ss01 + a-cy + be-cy + ve-cy + ge-cy + gheupturn-cy + de-cy + ie-cy + io-cy + zhe-cy + ze-cy + ii-cy + iishort-cy + ka-cy + el-cy + em-cy + en-cy + o-cy + pe-cy + er-cy + es-cy + te-cy + u-cy + ushort-cy + ef-cy + ha-cy + che-cy + tse-cy + sha-cy + shcha-cy + softsign-cy + hardsign-cy + yeru-cy + dze-cy + e-cy + ereversed-cy + i-cy + yi-cy + je-cy + iu-cy + ia-cy + a-cy.ss01 + ve-cy.ss01 + de-cy.ss01 + ie-cy.ss01 + io-cy.ss01 + el-cy.ss01 + er-cy.ss01 + te-cy.ss01 + softsign-cy.ss01 + hardsign-cy.ss01 + yeru-cy.ss01 + ia-cy.ss01 + zero + one + two + three + four + five + six + seven + eight + nine + zero.osf + one.osf + two.osf + three.osf + four.osf + five.osf + six.osf + seven.osf + nine.osf + zero.tf + one.tf + two.tf + three.tf + four.tf + five.tf + six.tf + seven.tf + eight.tf + nine.tf + onesuperior + twosuperior + threesuperior + period + comma + colon + semicolon + ellipsis + exclam + exclamdown + question + questiondown + periodcentered + bullet + asterisk + numbersign + slash + backslash + parenleft + parenright + braceleft + braceright + bracketleft + bracketright + hyphen + endash + emdash + underscore + quotesinglbase + quotedblbase + quotedblleft + quotedblright + quoteleft + quoteright + guillemetleft + guillemetright + guilsinglleft + guilsinglright + quotedbl + quotesingle + cent + currency + dollar + euro + hryvnia + sterling + yen + yen.ss01 + plus + minus + multiply + divide + equal + greater + less + asciitilde + asciicircum + percent + perthousand + at + ampersand + paragraph + section + copyright + registered + trademark + degree + bar + brokenbar + dagger + daggerdbl + numero + estimated + numero.ss01 + commaaccentcomb + dieresis + dotaccent + grave + acute + hungarumlaut + circumflex + caron + breve + ring + tilde + macron + cedilla + ogonek + dieresis.case + dotaccent.case + grave.case + acute.case + hungarumlaut.case + circumflex.case + caron.case + breve.case + ring.case + tilde.case + macron.case + commaaccentcomb.salt + caron.salt + uniE01A + _perc-circule + eight.osf + ruble + Ljecyr + Njecyr + Jecyr + dzhecyr + Dzhecyr + ljecyr + njecyr + Tshecyr + Djecyr + tshecyr + djecyr + tenge + ljecyr.ss01 + njecyr.ss01 + dramsignarmn + gjecyr + kjecyr + neptune + florin + plusminus + fraction + onequarter + onehalf + threequarters + mu + lessequal + greaterequal + minute + second + Schwacyr + schwacyr + Gestrokecyr + gestrokecyr + Obarcyr + obarcyr + Entailcyr + entailcyr + Katailcyr + katailcyr + Ustraightstrokecyr + ustraightstrokecyr + Shhacyr + shhacyr + ustraightcyr + Ustraightcyr + partialdiff + increment + integral + summation + radical + infinity + Omega + pi + longs + Delta + product + notequal + proportional + approxequal + Schwa + eturned + Oslashacute + oslashacute + AEacute + aeacute + uni2010 + Aiecyr + aiecyr + uni1EBC + uni1EBD + Acaron + acaron + Gjecyr + Kjecyr + uniE000 + uniE000.alt + arrowleft + arrowup + arrowright + arrowdown + arrowdown.ss01 + arrowleft.ss01 + arrowright.ss01 + arrowup.ss01 + yi-cy.alt + Omegacyr + omegacyr + Yatcyr + yatcyr + Eiotifiedcyr + eiotifiedcyr + Ksicyr + ksicyr + Shwe-cy + Fitacyr + fitacyr + Koppacyr + Iegravecyr + Igravecyr + iegravecyr + igravecyr + Zhebrevecyr + zhebrevecyr + Abrevecyr + abrevecyr + Adieresiscyr + adieresiscyr + Iebrevecyr + iebrevecyr + Schwadieresiscyr + schwadieresiscyr + Zhedieresiscyr + zhedieresiscyr + Zedieresiscyr + zedieresiscyr + Imacroncyr + imacroncyr + Idieresiscyr + idieresiscyr + Odieresiscyr + odieresiscyr + Umacroncyr + umacroncyr + Udieresiscyr + udieresiscyr + Uacutedblcyr + uacutedblcyr + Dekomicyr + dekomicyr + Wecyr + wecyr + Qacyr + qacyr + Ylongdieresiscyr + ylongdieresiscyr + Chedieresiscyr + chedieresiscyr + Obardieresiscyr + obardieresiscyr + Ereverseddieresiscyr + ereverseddieresiscyr + Zhetailcyr + zhetailcyr + Tetailcyr + tetailcyr + Xatailcyr + xatailcyr + Chetailcyr + chetailcyr + Chekhakascyr + chekhakascyr + Getailcyr + getailcyr + Petailcyr + petailcyr + Eltailcyr + eltailcyr + Shhatailcyr + shhatailcyr + Palochkacyr + palochkacyr + Dzzhecyr + Yaecyr + yaecyr + Tetsecyr + tetsecyr + Engecyr + engecyr + kabashkcyr + Kabashkcyr + semisoftcyr + Semisoftcyr + Reversedzecyr + reversedzecyr + Elmiddlehookcyr + Enmiddlehookcyr + Enhookcyr + Kahookcyr + Pehookcyr + Gehookcyr + parenleft.case + parenright.case + hyphen.case + bracketleft.case + bracketright.case + braceleft.case + braceright.case + exclamdown.case + guillemetleft.case + guillemetright.case + endash.case + emdash.case + bullet.case + guilsinglleft.case + guilsinglright.case + arrowleft.case + arrowup.case + arrowright.case + arrowdown.case + arrowdown.ss01.case + arrowleft.ss01.case + arrowright.ss01.case + arrowup.ss01.case + Enhookleftcyr + enhookleftcyr + enhookcyr + gehookcyr + pehookcyr + kahookcyr + enmiddlehookcyr + elmiddlehookcyr + kastrokecyr + Kastrokecyr + Chevertcyr + chevertcyr + Kaverticalstrokecyr + kaverticalstrokecyr + Elhookcyr + elhookcyr + zetailcyr + Zetailcyr + Estailcyr + estailcyr + Haabkhcyr + koppacyr + ukcyr + Ukcyr + omegaroundcyr + Izhitsagravedblcyr + izhitsagravedblcyr + izhitsacyr + Izhitsacyr + Yusbigcyr + yusbigcyr + Psicyr + psicyr + Omegaroundcyr + Yuslittlecyr + yuslittlecyr + yuslittleiotifiedcyr + Yuslittleiotifiedcyr + Yusbigiotifiedcyr + yusbigiotifiedcyr + Omegatitlocyr + omegatitlocyr + Otcyr + otcyr + uni2DEE + uni2DEE.case + ertickcyr + Ertickcyr + Lhacyr + lhacyr + ensharptailcyr + Ensharptailcyr + emsharptailcyr + elsharptailcyr + ishortsharptailcyr + Ishortsharptailcyr + Emsharptailcyr + Elsharptailcyr + njekomicyr + Njekomicyr + ljekomicyr + tjekomicyr + djekomicyr + zjekomicyr + colon.case + questiondown.case + slash.case + semicolon.case + backslash.case + bar.case + brokenbar.case + dzjekomicyr + Cheabkhcyr + cheabkhcyr + cheabkhtailcyr + sjekomicyr + Sjekomicyr + Ljekomicyr + Tjekomicyr + Djekomicyr + kaaleutcyr + dzzhecyr + haabkhcyr + Dchecyr + dchecyr + dzeabkhcyr + Dzeabkhcyr + palatcombcyr + Cheabkhtailcyr + Dzjekomicyr + Zjekomicyr + rhacyr + Rhacyr + Kaaleutcyr + thousandscyr + titlocombcyr + pokrytiecombcyr + hundredthousandscombcyr + millionscombcyr + Gehookstrokecyr + gehookstrokecyr + Hahookcyr + hahookcyr + Hastrokecyr + uni1C80 + uni1C81 + uni1C82 + uni1C83 + uni1C84 + uni1C85 + uni1C86 + uni1C87 + Zemlya-cy + zemlya-cy + Dzelo-cy + dzelo-cy + DzeReversed-cy + dzeReversed-cy + Iota-cy + iota-cy + Djerv-cy + djerv-cy + UkMonograph-cy + ukMonograph-cy + OmegaBroad-cy + omegaBroad-cy + YerNeutral-cy + yerNeutral-cy + YeruBackYer-cy + yeruBackyer-cy + YatIotified-cy + yatIotified-cy + YuReversed-cy + yuReversed-cy + IotifiedA-cy + iotifieda-cy + YusClosedlittle-cy + yusClosedlittle-cy + YusBlended-cy + yusBlended-cy + YusiotifiedClosedLittle-cy + yusiotifiedClosedLittle-cy + Yn-cy + yn-cy + TseReversed-cy + tseReversed-cy + DeSoft-cy + deSoft-cy + ElSoft-cy + elSoft-cy + EmSoft-cy + emSoft-cy + OMonocular-cy + oMonocular-cy + OBinocular-cy + oBinocular-cy + ODoubleMonocular-cy + oDoubleMonocular-cy + omultiocular-cy + vzmetcomb-cy + tenmillionscomb-cy + hundredmillionscomb-cy + thousandmillionscomb-cy + Dwe-cy + dwe-cy + Dzwe-cy + dzwe-cy + Zhwe-cy + zhwe-cy + Cche-cy + cche-cy + Dzze-cy + dzze-cy + TeWithMiddleHook-cy + tewithmiddlehook-cy + Twe-cy + twe-cy + Tswe-cy + tswe-cy + Tsse-cy + tsse-cy + Tche-cy + tche-cy + Hwe-cy + hwe-cy + shwe-cy + DoubleO-cy + doubleo-cy + CrossedO-cy + crossedo-cy + hastrokecyr + uniF43A + A-cy.accented + E-cy.accented + Ii-cy.accented + O-cy.accented + U-cy.accented + Yeru-cy.accented + Ereversed-cy.accented + Iu-cy.accented + Ia-cy.accented + Io-cy.accented + uniF498 + uniF49A + uniF49C + uniF49E + uniF4C6 + uniF4CC + uniF4D2 + uniF4D4 + uniF4D6 + uniF4D8 + Zetailcyr.BSH + Estailcyr.CHU + uniF50E + uniF510 + uniF512 + uniF514 + uniF516 + uniF518 + uniF51A + uniF51C + uniF51E + Yeru-cymacron + uniF522 + uniF524 + uniF526 + uniF528 + uniF52A + uniF52C + uniF52E + uniF532 + uniF536 + uniF538 + Gestrokecyr.BSH + Estailcyr.BSH + uniF830 + uniF833 + uniF839 + uniF86F + uniF872 + uniF875 + uniF878 + uniF87B + uniF87E + apostrophemod + colontriangularmod + uni1C88 + uniF87F + uniF87C + uniF879 + uniF876 + uniF873 + uniF870 + uniF83A + uniF834 + uniF831 + zetailcyr.BSH + estailcyr.CHU + uniF50F + uniF511 + uniF513 + uniF515 + uniF517 + uniF519 + uniF51B + uniF51D + uniF51F + uniF521 + uniF523 + uniF525 + uniF527 + uniF529 + uniF52B + uniF52D + uniF52F + uniF533 + uniF537 + uniF539 + gestrokecyr.BSH + estailcyr.BSH + uniF499 + uniF49B + uniF49D + uniF49F + uniF4C7 + uniF4CD + uniF4D3 + uniF4D5 + uniF4D7 + uniF4D9 + a-cy.accented + e-cy.accented + ii-cy.accented + o-cy.accented + u-cy.accented + yeru-cy.accented + ereversed-cy.accented + iu-cy.accented + ia-cy.accented + io-cy.accented + uniF43B + at.case + dieresis.alt + dieresiscase.alt + e-cy.hist + omultiocular-cy.alt + iotifieda-cy.hist + be-cy.SRB + ve-cy.BGR + ge-cy.BGR + de-cy.BGR + zhe-cy.BGR + ze-cy.BGR + ii-cy.BGR + iishort-cy.BGR + ka-cy.BGR + el-cy.BGR + pe-cy.BGR + te-cy.BGR + tse-cy.BGR + sha-cy.BGR + shcha-cy.BGR + hardsign-cy.BGR + softsign-cy.BGR + iu-cy.BGR + yatcyr.BGR + eiotifiedcyr.BGR + yusbigiotifiedcyr.BGR + iotifieda-cy.BGR + De-cy.BGR + El-cy.BGR + Ef-cy.BGR + dieresisacute + uniF45D + uniF45E + uniF45F + uniF475 + uniF476 + uniF477 + uniF478 + uniF479 + Elsmallcyr + enclosingcirclecomb + ge-cy.SRB + pe-cy.SRB + te-cy.SRB + gjecyr.SRB + macron-fwd + macron-fwd.alt + macronacute.SRB + iegravecyr.SRB + igravecyr.SRB + flower + knightwhite + knightblack + floretteblack + florettewhite + floretteoutlinedpetalledblackeight + rookblack + bishopblack + leo + heartwhite + diamondwhite-misc + spadewhite + clubwhite + bishopwhite + heart + crossedswords + virgo + thousandscyr.dnom + bracketangleleft + bracketangleright + bracketangleleft.case + bracketangleright.case + + + diff --git a/sources/FixelText-ExtraBold.ufo/metainfo.plist b/sources/FixelText-ExtraBold.ufo/metainfo.plist new file mode 100644 index 00000000..10582b84 --- /dev/null +++ b/sources/FixelText-ExtraBold.ufo/metainfo.plist @@ -0,0 +1,10 @@ + + + + + creator + com.fontlab.ufoLib + formatVersion + 3 + + diff --git a/sources/FixelText-ExtraLight.ufo/features.fea b/sources/FixelText-ExtraLight.ufo/features.fea new file mode 100644 index 00000000..302ade93 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/features.fea @@ -0,0 +1,573 @@ +#> classes +#/> otclasses +@ss01_def = [A-cy A AE Aacute Abreve Acircumflex Adieresis Agrave Amacron Aogonek Aring Atilde Em-cy Eng G Gacute Gbreve Gcircumflex Gcommaaccent Gdotaccent Ha-cy Ia-cy J Jcircumflex K Ka-cy Kcommaaccent M N Nacute Ncaron Ncommaaccent Ntilde Q U-cy Ushort-cy V W Wacute Wcircumflex Wdieresis Wgrave X Y Yacute Ycircumflex Ydieresis Z Zacute Zcaron Zdotaccent Zhe-cy a-cy a aacute abreve acircumflex adieresis ae agrave amacron aogonek aring arrowdown arrowdown.case arrowleft arrowleft.case arrowright arrowright.case arrowup arrowup.case atilde b d dcaron dcroat de-cy e eacute ebreve ecaron ecircumflex edieresis edotaccent egrave el-cy emacron eogonek er-cy f f_f f_f_i f_f_l fi fl g gacute gbreve gcircumflex gcommaaccent gdotaccent germandbls hardsign-cy ia-cy ie-cy io-cy l lacute lcaron lcommaaccent ldot ljecyr lslash njecyr numero oe p q softsign-cy t tbar tcaron tcedilla tcommaaccent te-cy ve-cy yen yeru-cy]; +@ss01 = [A-cy.ss01 A.ss01 AE.ss01 Aacute.ss01 Abreve.ss01 Acircumflex.ss01 Adieresis.ss01 Agrave.ss01 Amacron.ss01 Aogonek.ss01 Aring.ss01 Atilde.ss01 Em-cy.ss01 Eng.ss01 G.ss01 Gacute.ss01 Gbreve.ss01 Gcircumflex.ss01 Gcommaaccent.ss01 Gdotaccent.ss01 Ha-cy.ss01 Ia-cy.ss01 J.ss01 Jcircumflex.ss01 K.ss01 Ka-cy.ss01 Kcommaaccent.ss01 M.ss01 N.ss01 Nacute.ss01 Ncaron.ss01 Ncommaaccent.ss01 Ntilde.ss01 Q.ss01 U-cy.ss01 Ushort-cy.ss01 V.ss01 W.ss01 Wacute.ss01 Wcircumflex.ss01 Wdieresis.ss01 Wgrave.ss01 X.ss01 Y.ss01 Yacute.ss01 Ycircumflex.ss01 Ydieresis.ss01 Z.ss01 Zacute.ss01 Zcaron.ss01 Zdotaccent.ss01 Zhe-cy.ss01 a-cy.ss01 a.ss01 aacute.ss01 abreve.ss01 acircumflex.ss01 adieresis.ss01 ae.ss01 agrave.ss01 amacron.ss01 aogonek.ss01 aring.ss01 arrowdown.ss01 arrowdown.ss01.case arrowleft.ss01 arrowleft.ss01.case arrowright.ss01 arrowright.ss01.case arrowup.ss01 arrowup.ss01.case atilde.ss01 b.ss01 d.ss01 dcaron.ss01 dcroat.ss01 de-cy.ss01 e.ss01 eacute.ss01 ebreve.ss01 ecaron.ss01 ecircumflex.ss01 edieresis.ss01 edotaccent.ss01 egrave.ss01 el-cy.ss01 emacron.ss01 eogonek.ss01 er-cy.ss01 f.ss01 f_f.ss01 f_f_i.ss01 f_f_l.ss01 fi.ss01 fl.ss01 g.ss01 gacute.ss01 gbreve.ss01 gcircumflex.ss01 gcommaaccent.ss01 gdotaccent.ss01 germandbls.ss01 hardsign-cy.ss01 ia-cy.ss01 ie-cy.ss01 io-cy.ss01 l.ss01 lacute.ss01 lcaron.ss01 lcommaaccent.ss01 ldot.ss01 ljecyr.ss01 lslash.ss01 njecyr.ss01 numero.ss01 oe.ss01 p.ss01 q.ss01 softsign-cy.ss01 t.ss01 tbar.ss01 tcaron.ss01 tcedilla.ss01 tcommaaccent.ss01 te-cy.ss01 ve-cy.ss01 yen.ss01 yeru-cy.ss01]; +@case = [arrowdown.case arrowdown.ss01.case arrowleft.case arrowleft.ss01.case arrowright.case arrowright.ss01.case arrowup.case arrowup.ss01.case backslash.case bar.case braceleft.case braceright.case bracketleft.case bracketright.case brokenbar.case bullet.case colon.case emdash.case endash.case exclamdown.case guillemetleft.case guillemetright.case guilsinglleft.case guilsinglright.case hyphen.case parenleft.case parenright.case questiondown.case semicolon.case at.case bracketangleleft.case bracketangleright.case slash.case]; +@case_def = [arrowdown arrowdown.ss01 arrowleft arrowleft.ss01 arrowright arrowright.ss01 arrowup arrowup.ss01 backslash bar braceleft braceright bracketleft bracketright brokenbar bullet colon emdash endash exclamdown guillemetleft guillemetright guilsinglleft guilsinglright hyphen parenleft parenright questiondown semicolon at bracketangleleft bracketangleright slash]; +@cpsp = [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 Agrave Aacute Acircumflex Atilde Adieresis Aring AE Ccedilla Egrave Eacute Ecircumflex Edieresis Igrave Iacute Icircumflex Idieresis Eth Ntilde Ograve Oacute Ocircumflex Otilde Odieresis Oslash Ugrave Uacute Ucircumflex Udieresis Yacute Thorn Amacron Abreve Aogonek Cacute Ccircumflex Cdotaccent Ccaron Dcaron Dcroat Emacron Ebreve Edotaccent Eogonek Ecaron Gcircumflex Gbreve Gdotaccent Gcommaaccent Hcircumflex Hbar Itilde Imacron Ibreve Iogonek Idotaccent IJ Jcircumflex Kcommaaccent Lacute Lcommaaccent Lcaron Ldot Lslash Nacute Ncommaaccent Ncaron Eng Omacron Obreve Ohungarumlaut OE Racute Rcommaaccent Rcaron Sacute Scircumflex Scedilla Scaron Tcedilla Tcaron Tbar Utilde Umacron Ubreve Uring Uhungarumlaut Uogonek Wcircumflex Ycircumflex Ydieresis Zacute Zdotaccent Zcaron Schwa Acaron Gacute AEacute Oslashacute Scommaaccent Tcommaaccent Delta Omega Iegravecyr uniF43A A-cy.accented E-cy.accented Ii-cy.accented O-cy.accented U-cy.accented Yeru-cy.accented Ereversed-cy.accented Iu-cy.accented Ia-cy.accented Io-cy.accented uniF498 uniF49A uniF49C uniF49E uniF4C6 uniF4CC uniF4D2 uniF4D4 uniF4D6 uniF4D8 uniF50E uniF510 uniF512 uniF514 uniF516 uniF518 uniF51A uniF51C uniF51E Yeru-cymacron uniF522 uniF524 uniF526 uniF528 uniF52A uniF52C uniF52E uniF532 uniF536 uniF538 uniF830 uniF833 uniF839 uniF86F uniF872 uniF875 uniF878 uniF87B uniF87E Io-cy Djecyr Gjecyr E-cy Dze-cy I-cy Yi-cy Jecyr Ljecyr Njecyr Tshecyr Kjecyr Igravecyr Ushort-cy Dzhecyr A-cy Be-cy Ve-cy Ge-cy De-cy Ie-cy Zhe-cy Ze-cy Ii-cy Iishort-cy Ka-cy El-cy Em-cy En-cy O-cy Pe-cy Er-cy Es-cy Te-cy U-cy Ef-cy Ha-cy Tse-cy Che-cy Sha-cy Shcha-cy Hardsign-cy Yeru-cy Softsign-cy Ereversed-cy Iu-cy Ia-cy Omegacyr Yatcyr Eiotifiedcyr Yuslittlecyr Yuslittleiotifiedcyr Yusbigcyr Yusbigiotifiedcyr Ksicyr Psicyr Fitacyr Izhitsacyr Izhitsagravedblcyr Ukcyr Omegaroundcyr Omegatitlocyr Otcyr Koppacyr Ishortsharptailcyr Semisoftcyr Ertickcyr Gheupturn-cy Gestrokecyr Gehookcyr Zhetailcyr Zetailcyr Katailcyr Kaverticalstrokecyr Kastrokecyr Kabashkcyr Entailcyr Engecyr Pehookcyr Haabkhcyr Estailcyr Tetailcyr Ustraightcyr Ustraightstrokecyr Xatailcyr Tetsecyr Chetailcyr Chevertcyr Shhacyr Cheabkhcyr Cheabkhtailcyr Palochkacyr Zhebrevecyr Kahookcyr Elsharptailcyr Enhookcyr Ensharptailcyr Chekhakascyr Emsharptailcyr Abrevecyr Adieresiscyr Aiecyr Iebrevecyr Schwacyr Schwadieresiscyr Zhedieresiscyr Zedieresiscyr Dzeabkhcyr Imacroncyr Idieresiscyr Odieresiscyr Obarcyr Obardieresiscyr Ereverseddieresiscyr Umacroncyr Udieresiscyr Uacutedblcyr Chedieresiscyr Getailcyr Ylongdieresiscyr Gehookstrokecyr Hahookcyr Hastrokecyr Dekomicyr Djekomicyr Zjekomicyr Dzjekomicyr Ljekomicyr Njekomicyr Sjekomicyr Tjekomicyr Reversedzecyr Elhookcyr Lhacyr Rhacyr Yaecyr Qacyr Wecyr Kaaleutcyr Elmiddlehookcyr Enmiddlehookcyr Petailcyr Shhatailcyr Enhookleftcyr Dzzhecyr Dchecyr Eltailcyr Wgrave Wacute Wdieresis Germandbls uni1EBC Zemlya-cy Dzelo-cy DzeReversed-cy Iota-cy Djerv-cy UkMonograph-cy OmegaBroad-cy YerNeutral-cy YeruBackYer-cy YatIotified-cy YuReversed-cy IotifiedA-cy YusClosedlittle-cy YusBlended-cy YusiotifiedClosedLittle-cy Yn-cy TseReversed-cy DeSoft-cy ElSoft-cy EmSoft-cy OMonocular-cy OBinocular-cy ODoubleMonocular-cy Dwe-cy Dzwe-cy Zhwe-cy Cche-cy Dzze-cy TeWithMiddleHook-cy Twe-cy Tswe-cy Tsse-cy Tche-cy Hwe-cy Shwe-cy DoubleO-cy CrossedO-cy A-cy.ss01 A.ss01 AE.ss01 Aacute.ss01 Abreve.ss01 Acircumflex.ss01 Adieresis.ss01 Agrave.ss01 Amacron.ss01 Aogonek.ss01 Aring.ss01 Atilde.ss01 Em-cy.ss01 Eng.ss01 G.ss01 Gacute.ss01 Gbreve.ss01 Gcircumflex.ss01 Gcommaaccent.ss01 Gdotaccent.ss01 Ha-cy.ss01 Ia-cy.ss01 J.ss01 Jcircumflex.ss01 K.ss01 Ka-cy.ss01 Kcommaaccent.ss01 M.ss01 N.ss01 Nacute.ss01 Ncaron.ss01 Ncommaaccent.ss01 Ntilde.ss01 Q.ss01 U-cy.ss01 Ushort-cy.ss01 V.ss01 W.ss01 Wacute.ss01 Wcircumflex.ss01 Wdieresis.ss01 Wgrave.ss01 X.ss01 Y.ss01 Yacute.ss01 Ycircumflex.ss01 Ydieresis.ss01 Z.ss01 Zacute.ss01 Zcaron.ss01 Zdotaccent.ss01 Zetailcyr.BSH Gestrokecyr.BSH Estailcyr.BSH Estailcyr.CHU Zhe-cy.ss01]; +@locl_BGR = [De-cy.BGR Ef-cy.BGR El-cy.BGR de-cy.BGR eiotifiedcyr.BGR el-cy.BGR ge-cy.BGR hardsign-cy.BGR ii-cy.BGR iishort-cy.BGR iotifieda-cy.BGR iu-cy.BGR ka-cy.BGR pe-cy.BGR sha-cy.BGR shcha-cy.BGR softsign-cy.BGR te-cy.BGR tse-cy.BGR ve-cy.BGR yatcyr.BGR yusbigiotifiedcyr.BGR ze-cy.BGR zhe-cy.BGR]; +@locl_def = [De-cy Ef-cy El-cy de-cy eiotifiedcyr el-cy ge-cy hardsign-cy ii-cy iishort-cy iotifieda-cy iu-cy ka-cy pe-cy sha-cy shcha-cy softsign-cy te-cy tse-cy ve-cy yatcyr yusbigiotifiedcyr ze-cy zhe-cy]; +@locl.SRB = [be-cy.SRB iegravecyr.SRB igravecyr.SRB]; +@loclSRB_def = [be-cy iegravecyr igravecyr]; +@accent = [grave acute.case grave.case acute]; +@pics = [neptune leo virgo bishopwhite knightwhite rookblack bishopblack knightblack heartwhite diamondwhite-misc spadewhite heart clubwhite crossedswords flower floretteblack florettewhite floretteoutlinedpetalledblackeight]; +@pics_def = [A B C D E F G H I J K L M N O P Q R]; +#/< otclasses + +#/> tags +@tag.omultiocular-cy.alt = [omultiocular-cy]; +@tag.yi-cy_yi-cy.alt = [uniE000]; +#/< tags +#< classes + +# automatic +@Uppercase = [ A Aacute Abreve Acircumflex Adieresis Agrave Amacron Aogonek Aring Atilde AE B C Cacute Ccaron Ccedilla Ccircumflex Cdotaccent D Eth Dcaron Dcroat E Eacute Ebreve Ecaron Ecircumflex Edieresis Edotaccent Egrave Emacron Eogonek F G Gacute Gbreve Gcircumflex Gcommaaccent Gdotaccent H Hbar Hcircumflex I IJ Iacute Ibreve Icircumflex Idieresis Idotaccent Igrave Imacron Iogonek Itilde J Jcircumflex K Kcommaaccent L Lacute Lcaron Lcommaaccent Ldot Lslash M N Nacute Ncaron Ncommaaccent Eng Ntilde O Oacute Obreve Ocircumflex Odieresis Ograve Ohungarumlaut Omacron Oslash Otilde OE P Thorn Q R Racute Rcaron Rcommaaccent S Sacute Scaron Scedilla Scircumflex Scommaaccent Germandbls T Tbar Tcaron Tcedilla Tcommaaccent U Uacute Ubreve Ucircumflex Udieresis Ugrave Uhungarumlaut Umacron Uogonek Uring Utilde V W Wacute Wcircumflex Wdieresis Wgrave X Y Yacute Ycircumflex Ydieresis Z Zacute Zcaron Zdotaccent A.ss01 Aacute.ss01 Abreve.ss01 Acircumflex.ss01 Adieresis.ss01 Agrave.ss01 Amacron.ss01 Aogonek.ss01 Aring.ss01 Atilde.ss01 AE.ss01 G.ss01 Gacute.ss01 Gbreve.ss01 Gcircumflex.ss01 Gcommaaccent.ss01 Gdotaccent.ss01 J.ss01 Jcircumflex.ss01 K.ss01 Kcommaaccent.ss01 M.ss01 N.ss01 Nacute.ss01 Ncaron.ss01 Ncommaaccent.ss01 Eng.ss01 Ntilde.ss01 Q.ss01 V.ss01 W.ss01 Wacute.ss01 Wcircumflex.ss01 Wdieresis.ss01 Wgrave.ss01 X.ss01 Y.ss01 Yacute.ss01 Ycircumflex.ss01 Ydieresis.ss01 Z.ss01 Zacute.ss01 Zcaron.ss01 Zdotaccent.ss01 A-cy Be-cy Ve-cy Ge-cy Gheupturn-cy De-cy Ie-cy Io-cy Zhe-cy Ze-cy Ii-cy Iishort-cy Ka-cy El-cy Em-cy En-cy O-cy Pe-cy Er-cy Es-cy Te-cy U-cy Ushort-cy Ef-cy Ha-cy Che-cy Tse-cy Sha-cy Shcha-cy Softsign-cy Hardsign-cy Yeru-cy Dze-cy E-cy Ereversed-cy I-cy Yi-cy Iu-cy Ia-cy A-cy.ss01 Zhe-cy.ss01 Ka-cy.ss01 Em-cy.ss01 U-cy.ss01 Ushort-cy.ss01 Ha-cy.ss01 Ia-cy.ss01 ]; + +# Prefix: Languagesystems +# automatic +languagesystem DFLT dflt; + +languagesystem latn dflt; +languagesystem latn ROM; +languagesystem latn MOL; +languagesystem latn CAT; +languagesystem cyrl dflt; +languagesystem cyrl BGR; +languagesystem cyrl BSH; +languagesystem cyrl CHU; +languagesystem cyrl SRB; +languagesystem cyrl MKD; + +lookup liga_accent { + sub @accent by [grave grave grave grave]; +} liga_accent; +feature aalt { +# Access All Alternates + +#> feature + feature locl; + feature sups; + feature case; + feature lnum; + feature pnum; + feature tnum; + feature onum; + feature salt; + feature ss01; + feature hist; +#< feature +} aalt; +feature ccmp { +# automatic +lookup ccmp_Other_1 { + @Markscomb = [dieresis dotaccent grave acute hungarumlaut circumflex caron breve ring tilde macron]; + @MarkscombCase = [dieresis.case dotaccent.case grave.case acute.case hungarumlaut.case circumflex.case caron.case breve.case ring.case tilde.case macron.case]; + sub @Markscomb @Markscomb' by @MarkscombCase; + sub @cpsp @Markscomb' by @MarkscombCase; +} ccmp_Other_1; + +lookup ccmp_Other_2 { + sub @Markscomb' @MarkscombCase by @MarkscombCase; + sub @MarkscombCase @Markscomb' by @MarkscombCase; +} ccmp_Other_2; +} ccmp; + +feature locl { +# automatic + +script latn; + language ROM; + language MOL; + sub Scedilla by Scommaaccent; + sub scedilla by scommaaccent; + sub Tcedilla by Tcommaaccent; + sub tcedilla by tcommaaccent; + +script latn; + language CAT; + sub l' periodcentered' l by ldot; + sub L' periodcentered' L by Ldot; + +script cyrl; # Cyrillic + language SRB ; # Serbian + + lookup locl_SRB_MCD { + # GSUB lookup 20, type 11 (Single) + sub @loclSRB_def by @locl.SRB; + } locl_SRB_MCD; + + language MKD ; # Serbian + lookup locl_SRB_MCD; + + language BSH ; # Bashkir + sub [Gestrokecyr gestrokecyr Zetailcyr zetailcyr] by [Gestrokecyr.BSH gestrokecyr.BSH Zetailcyr.BSH zetailcyr.BSH]; + sub [Estailcyr estailcyr] by [Estailcyr.BSH estailcyr.BSH]; + + language CHU ; # Chuvash + sub [Estailcyr estailcyr] by [Estailcyr.CHU estailcyr.CHU]; + + language BGR ; # Bulgarian + sub @locl_def by @locl_BGR; + +} locl; + +feature sups { +# Superscript + +#> feature + sub one by onesuperior; + sub three by threesuperior; + sub two by twosuperior; +#< feature +} sups; +feature ordn { +# Ordinals + +#> feature + sub [zero one two three four five six seven eight nine] [A a]' by ordfeminine; + sub [zero one two three four five six seven eight nine] [O o]' by ordmasculine; + sub N o period by numero; +#< feature +} ordn; +feature case { +# Case Sensitive Forms + +#> feature + + sub @case_def by @case; + +#< feature +} case; +feature liga { +# Standard Ligatures + +#> feature +sub f f i by f_f_i; +sub f f l by f_f_l; +sub f f by f_f; +sub f i by fi; +sub f l by fl; +sub yi-cy yi-cy by uniE000; +sub hyphen greater by arrowright; +sub less hyphen by arrowleft; +sub backslash bar slash by arrowdown; +sub slash bar backslash by arrowup; + + lookup accent_2 { + sub E-cy @accent' lookup liga_accent; + sub I-cy @accent' lookup liga_accent; + sub Yi-cy @accent' lookup liga_accent; + sub A-cy @accent' lookup liga_accent; + sub Ie-cy @accent' lookup liga_accent; + sub Ii-cy @accent' lookup liga_accent; + sub O-cy @accent' lookup liga_accent; + sub U-cy @accent' lookup liga_accent; + sub Yeru-cy @accent' lookup liga_accent; + sub Ereversed-cy @accent' lookup liga_accent; + sub Iu-cy @accent' lookup liga_accent; + sub Ia-cy @accent' lookup liga_accent; + sub Io-cy @accent' lookup liga_accent; + sub Yatcyr @accent' lookup liga_accent; + + sub e-cy @accent' lookup liga_accent; + sub i-cy @accent' lookup liga_accent; + sub yi-cy @accent' lookup liga_accent; + sub a-cy @accent' lookup liga_accent; + sub ie-cy @accent' lookup liga_accent; + sub ii-cy @accent' lookup liga_accent; + sub o-cy @accent' lookup liga_accent; + sub u-cy @accent' lookup liga_accent; + sub yeru-cy @accent' lookup liga_accent; + sub ereversed-cy @accent' lookup liga_accent; + sub iu-cy @accent' lookup liga_accent; + sub ia-cy @accent' lookup liga_accent; + sub io-cy @accent' lookup liga_accent; + sub yatcyr @accent' lookup liga_accent; + } accent_2; + + lookup accent_3 { + sub E-cy grave by uniF45D; + sub I-cy grave by uniF45E; + sub Yi-cy grave by uniF45F; + sub A-cy grave by A-cy.accented; + sub Ie-cy grave by E-cy.accented; + sub Ii-cy grave by Ii-cy.accented; + sub O-cy grave by O-cy.accented; + sub U-cy grave by U-cy.accented; + sub Yeru-cy grave by Yeru-cy.accented; + sub Ereversed-cy grave by Ereversed-cy.accented; + sub Iu-cy grave by Iu-cy.accented; + sub Ia-cy grave by Ia-cy.accented; + sub Io-cy grave by Io-cy.accented; + sub Yatcyr grave by uniF478; + + sub e-cy grave by uniF475; + sub i-cy grave by uniF476; + sub yi-cy grave by uniF477; + sub a-cy grave by a-cy.accented; + sub ie-cy grave by e-cy.accented; + sub ii-cy grave by ii-cy.accented; + sub o-cy grave by o-cy.accented; + sub u-cy grave by u-cy.accented; + sub yeru-cy grave by yeru-cy.accented; + sub ereversed-cy grave by ereversed-cy.accented; + sub iu-cy grave by iu-cy.accented; + sub ia-cy grave by ia-cy.accented; + sub io-cy grave by io-cy.accented; + sub yatcyr grave by uniF479; + } accent_3; + +#< feature +} liga; +feature dlig { +# Discretionary Ligatures + +#> feature + +sub M a c P a w l o g o by uniE01A; +sub M P a w l o g o by uniE01A; +sub M P l o g o by uniE01A; +sub M A C P A W L O G O by uniE01A; +sub m a c p a w l o g o by uniE01A; +sub t r i d e n t by neptune; +sub t r y z u b by neptune; +sub u k r a i n e s i g n by neptune; +sub T R I D E N T by neptune; +sub T R Y Z U B by neptune; +sub U k r a i n e S i g n by neptune; +sub T r y z u b by neptune; +sub T r i d e n t by neptune; +sub Te-cy Er-cy Ii-cy Ze-cy U-cy Be-cy by neptune; + +#< feature +} dlig; +feature lnum { +# Lining Figures + +#> feature + sub eight.osf by eight.tf; + sub eight by eight.tf; + sub five.osf by five.tf; + sub five by five.tf; + sub four.osf by four.tf; + sub four by four.tf; + sub nine.osf by nine.tf; + sub nine by nine.tf; + sub one.osf by one.tf; + sub one by one.tf; + sub seven.osf by seven.tf; + sub seven by seven.tf; + sub six.osf by six.tf; + sub six by six.tf; + sub three.osf by three.tf; + sub three by three.tf; + sub two.osf by two.tf; + sub two by two.tf; + sub zero.osf by zero.tf; + sub zero by zero.tf; +#< feature +} lnum; +feature pnum { +# Proportional Figures + +#> feature + sub eight.tf by eight.osf; + sub eight by eight.osf; + sub five.tf by five.osf; + sub five by five.osf; + sub four.tf by four.osf; + sub four by four.osf; + sub nine.tf by nine.osf; + sub nine by nine.osf; + sub one.tf by one.osf; + sub one by one.osf; + sub seven.tf by seven.osf; + sub seven by seven.osf; + sub six.tf by six.osf; + sub six by six.osf; + sub three.tf by three.osf; + sub three by three.osf; + sub two.tf by two.osf; + sub two by two.osf; + sub zero.tf by zero.osf; + sub zero by zero.osf; +#< feature +} pnum; +feature tnum { +# Tabular Figures + +#> feature + sub eight by eight.tf; + sub eight.osf by eight.tf; + sub five by five.tf; + sub five.osf by five.tf; + sub four by four.tf; + sub four.osf by four.tf; + sub nine by nine.tf; + sub nine.osf by nine.tf; + sub one by one.tf; + sub one.osf by one.tf; + sub seven by seven.tf; + sub seven.osf by seven.tf; + sub six by six.tf; + sub six.osf by six.tf; + sub three by three.tf; + sub three.osf by three.tf; + sub two by two.tf; + sub two.osf by two.tf; + sub zero by zero.tf; + sub zero.osf by zero.tf; +#< feature +} tnum; +feature onum { +# Oldstyle Figures + +#> feature + sub eight by eight.osf; + sub eight.tf by eight.osf; + sub five by five.osf; + sub five.tf by five.osf; + sub four by four.osf; + sub four.tf by four.osf; + sub nine by nine.osf; + sub nine.tf by nine.osf; + sub one by one.osf; + sub one.tf by one.osf; + sub seven by seven.osf; + sub seven.tf by seven.osf; + sub six by six.osf; + sub six.tf by six.osf; + sub three by three.osf; + sub three.tf by three.osf; + sub two by two.osf; + sub two.tf by two.osf; + sub zero by zero.osf; + sub zero.tf by zero.osf; +#< feature +} onum; +feature salt { +# Stylistic Alternates + +#> feature + sub A from [A.ss01]; + sub A-cy from [A-cy.ss01]; + sub AE from [AE.ss01]; + sub Aacute from [Aacute.ss01]; + sub Abreve from [Abreve.ss01]; + sub Acircumflex from [Acircumflex.ss01]; + sub Adieresis from [Adieresis.ss01]; + sub Agrave from [Agrave.ss01]; + sub Amacron from [Amacron.ss01]; + sub Aogonek from [Aogonek.ss01]; + sub Aring from [Aring.ss01]; + sub Atilde from [Atilde.ss01]; + sub Em-cy from [Em-cy.ss01]; + sub Eng from [Eng.ss01]; + sub G from [G.ss01]; + sub Gacute from [Gacute.ss01]; + sub Gbreve from [Gbreve.ss01]; + sub Gcircumflex from [Gcircumflex.ss01]; + sub Gcommaaccent from [Gcommaaccent.ss01]; + sub Gdotaccent from [Gdotaccent.ss01]; + sub Ha-cy from [Ha-cy.ss01]; + sub Ia-cy from [Ia-cy.ss01]; + sub J from [J.ss01]; + sub Jcircumflex from [Jcircumflex.ss01]; + sub K from [K.ss01]; + sub Ka-cy from [Ka-cy.ss01]; + sub Kcommaaccent from [Kcommaaccent.ss01]; + sub M from [M.ss01]; + sub N from [N.ss01]; + sub Nacute from [Nacute.ss01]; + sub Ncaron from [Ncaron.ss01]; + sub Ncommaaccent from [Ncommaaccent.ss01]; + sub Ntilde from [Ntilde.ss01]; + sub Q from [Q.ss01]; + sub U-cy from [U-cy.ss01]; + sub Ushort-cy from [Ushort-cy.ss01]; + sub V from [V.ss01]; + sub W from [W.ss01]; + sub Wacute from [Wacute.ss01]; + sub Wcircumflex from [Wcircumflex.ss01]; + sub Wdieresis from [Wdieresis.ss01]; + sub Wgrave from [Wgrave.ss01]; + sub X from [X.ss01]; + sub Y from [Y.ss01]; + sub Yacute from [Yacute.ss01]; + sub Ycircumflex from [Ycircumflex.ss01]; + sub Ydieresis from [Ydieresis.ss01]; + sub Z from [Z.ss01]; + sub Zacute from [Zacute.ss01]; + sub Zcaron from [Zcaron.ss01]; + sub Zdotaccent from [Zdotaccent.ss01]; + sub Zhe-cy from [Zhe-cy.ss01]; + sub a from [a.ss01]; + sub a-cy from [a-cy.ss01]; + sub aacute from [aacute.ss01]; + sub abreve from [abreve.ss01]; + sub acircumflex from [acircumflex.ss01]; + sub adieresis from [adieresis.ss01]; + sub ae from [ae.ss01]; + sub agrave from [agrave.ss01]; + sub amacron from [amacron.ss01]; + sub aogonek from [aogonek.ss01]; + sub aring from [aring.ss01]; + sub arrowdown from [arrowdown.ss01]; + sub arrowleft from [arrowleft.ss01]; + sub arrowright from [arrowright.ss01]; + sub arrowup from [arrowup.ss01]; + sub atilde from [atilde.ss01]; + sub b from [b.ss01]; + sub caron from [caron.salt]; + sub commaaccentcomb from [commaaccentcomb.salt]; + sub d from [d.ss01]; + sub dcaron from [dcaron.ss01]; + sub dcroat from [dcroat.ss01]; + sub de-cy from [de-cy.ss01]; + sub e from [e.ss01]; + sub eacute from [eacute.ss01]; + sub ebreve from [ebreve.ss01]; + sub ecaron from [ecaron.ss01]; + sub ecircumflex from [ecircumflex.ss01]; + sub edieresis from [edieresis.ss01]; + sub edotaccent from [edotaccent.ss01]; + sub egrave from [egrave.ss01]; + sub el-cy from [el-cy.ss01]; + sub emacron from [emacron.ss01]; + sub eogonek from [eogonek.ss01]; + sub er-cy from [er-cy.ss01]; + sub f from [f.ss01]; + sub f_f from [f_f.ss01]; + sub f_f_i from [f_f_i.ss01]; + sub f_f_l from [f_f_l.ss01]; + sub fi from [fi.ss01]; + sub fl from [fl.ss01]; + sub g from [g.ss01]; + sub gacute from [gacute.ss01]; + sub gbreve from [gbreve.ss01]; + sub gcircumflex from [gcircumflex.ss01]; + sub gcommaaccent from [gcommaaccent.ss01]; + sub gdotaccent from [gdotaccent.ss01]; + sub germandbls from [germandbls.ss01]; + sub hardsign-cy from [hardsign-cy.ss01]; + sub ia-cy from [ia-cy.ss01]; + sub ie-cy from [ie-cy.ss01]; + sub io-cy from [io-cy.ss01]; + sub l from [l.ss01]; + sub lacute from [lacute.ss01]; + sub lcaron from [lcaron.ss01]; + sub lcommaaccent from [lcommaaccent.ss01]; + sub ldot from [ldot.ss01]; + sub ljecyr from [ljecyr.ss01]; + sub lslash from [lslash.ss01]; + sub njecyr from [njecyr.ss01]; + sub numero from [numero.ss01]; + sub oe from [oe.ss01]; + sub p from [p.ss01]; + sub q from [q.ss01]; + sub softsign-cy from [softsign-cy.ss01]; + sub t from [t.ss01]; + sub tbar from [tbar.ss01]; + sub tcaron from [tcaron.ss01]; + sub tcedilla from [tcedilla.ss01]; + sub tcommaaccent from [tcommaaccent.ss01]; + sub te-cy from [te-cy.ss01]; + sub uniE000 from [uniE000.alt]; + sub ve-cy from [ve-cy.ss01]; + sub yen from [yen.ss01]; + sub yeru-cy from [yeru-cy.ss01]; +#< feature +} salt; +feature ss03 { +# Stylistic Set 01–20 + +#> feature + featureNames { + name "Bulgarian forms"; + name 1 "Bulgarian forms"; + }; + + sub @locl_def by @locl_BGR; + +#< feature +} ss03; +feature ss04 { +# Stylistic Set 01–20 + +#> feature + featureNames { + name "Serbian/Macedonian forms"; + name 1 "Serbian/Macedonian forms"; + }; + + sub @loclSRB_def by @locl.SRB; + +#< feature +} ss04; +feature ss01 { +# Stylistic Set 01–20 + +#> feature + + featureNames { + name "Humanistic forms"; + name 1 "Humanistic forms"; + }; + + sub @ss01_def by @ss01; + +#< feature +} ss01; +feature ss05 { +# Stylistic Set 01–20 + +#> feature + + featureNames { + name "Ukrainian pictograms"; + name 1 "Ukrainian pictograms"; + }; + + sub @pics_def by @pics; + +#< feature +} ss05; +feature hist { +# Historical Forms + +#> feature + sub e-cy by e-cy.hist; + sub s by longs; +#< feature +} hist; +feature frac { +# Fractions + +#> feature +lookup frac_precomposed { + + sub one slash four by onequarter; + sub one slash two by onehalf; + sub three slash four by threequarters; + sub one fraction four by onequarter; + sub one fraction two by onehalf; + sub three fraction four by threequarters; +} frac_precomposed; +#< feature +} frac; +feature cpsp { +# Capital Spacing + +#> feature + + pos @cpsp <5 0 10 0>; + +#< feature +} cpsp; +feature dnom { +# Denominator + +#> feature + sub thousandscyr by thousandscyr.dnom; +#< feature +} dnom; diff --git a/sources/FixelText-ExtraLight.ufo/fontinfo.plist b/sources/FixelText-ExtraLight.ufo/fontinfo.plist new file mode 100644 index 00000000..685a2b51 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/fontinfo.plist @@ -0,0 +1,207 @@ + + + + + ascender + 720 + capHeight + 700 + descender + -200 + familyName + Fixel Text + guidelines + + + angle + 0 + name + m + x + 0 + y + 155.333 + + + angle + 0 + name + m + x + 0 + y + 189 + + + italicAngle + 0 + openTypeGaspRangeRecords + + + rangeGaspBehavior + + 0 + 1 + 2 + 3 + + rangeMaxPPEM + 65535 + + + openTypeHeadCreated + 2023/09/05 09:25:10 + openTypeHeadFlags + + + openTypeHheaAscender + 720 + openTypeHheaCaretOffset + -0 + openTypeHheaDescender + -190 + openTypeHheaLineGap + 100 + openTypeNameDesigner + AlfaBravo + openTypeNameDesignerURL + https://alfabravo.design/ + openTypeNameManufacturer + Kyrylo Tkachov, Marchela Mozhyna, Serhii Makarenko, Maria Weinstein, Zakhar Kryvoshyya + + openTypeNameManufacturerURL + https://macpaw.com/ + openTypeNamePreferredFamilyName + Fixel Text + openTypeNamePreferredSubfamilyName + ExtraLight + openTypeNameVersion + Version 1.200 + openTypeOS2CodePageRanges + + 0 + 1 + 2 + 4 + 7 + 29 + + openTypeOS2Panose + + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + + openTypeOS2Selection + + + openTypeOS2StrikeoutPosition + 300 + openTypeOS2StrikeoutSize + 50 + openTypeOS2SubscriptXOffset + -0 + openTypeOS2SubscriptXSize + 650 + openTypeOS2SubscriptYOffset + 75 + openTypeOS2SubscriptYSize + 600 + openTypeOS2SuperscriptXOffset + -0 + openTypeOS2SuperscriptXSize + 650 + openTypeOS2SuperscriptYOffset + 350 + openTypeOS2SuperscriptYSize + 600 + openTypeOS2Type + + 2 + + openTypeOS2TypoAscender + 720 + openTypeOS2TypoDescender + -200 + openTypeOS2TypoLineGap + 290 + openTypeOS2UnicodeRanges + + 0 + 1 + 2 + 9 + 31 + 33 + 60 + + openTypeOS2WeightClass + 200 + openTypeOS2WidthClass + 4 + openTypeOS2WinAscent + 750 + openTypeOS2WinDescent + 250 + postscriptBlueFuzz + 1 + postscriptBlueScale + 0.039625 + postscriptBlueShift + 7 + postscriptBlueValues + + -20 + 0 + + postscriptFontName + FixelText-ExtraLight + postscriptForceBold + + postscriptFullName + Fixel Text ExtraLight + postscriptIsFixedPitch + + postscriptStemSnapH + + 69 + 74 + 76 + 80 + 99 + + postscriptStemSnapV + + 74 + 80 + 93 + + postscriptUnderlinePosition + -100 + postscriptUnderlineThickness + 50 + postscriptWeightName + Extra Light + styleMapFamilyName + Fixel Text ExtraLight + styleMapStyleName + regular + styleName + ExtraLight + unitsPerEm + 1000 + versionMajor + 1 + versionMinor + 200 + xHeight + 520 + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/A_-cy.accented.glif b/sources/FixelText-ExtraLight.ufo/glyphs/A_-cy.accented.glif new file mode 100644 index 00000000..215217de --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/A_-cy.accented.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+acute.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/A_-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/A_-cy.glif new file mode 100644 index 00000000..cc594227 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/A_-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/A_-cy.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/A_-cy.ss01.glif new file mode 100644 index 00000000..de4d48da --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/A_-cy.ss01.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + com.fontlab.recipe + A + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/A_.glif b/sources/FixelText-ExtraLight.ufo/glyphs/A_.glif new file mode 100644 index 00000000..c38ab491 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/A_.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/A_.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/A_.ss01.glif new file mode 100644 index 00000000..11ae29eb --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/A_.ss01.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/A_E_.glif b/sources/FixelText-ExtraLight.ufo/glyphs/A_E_.glif new file mode 100644 index 00000000..b1301756 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/A_E_.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + A + com.fontlab.metricsRight + E + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/A_E_.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/A_E_.ss01.glif new file mode 100644 index 00000000..ad23b98b --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/A_E_.ss01.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + A.ss01 + com.fontlab.metricsRight + E + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/A_E_acute.glif b/sources/FixelText-ExtraLight.ufo/glyphs/A_E_acute.glif new file mode 100644 index 00000000..ad65844a --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/A_E_acute.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + AE+acute.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/A_acute.glif b/sources/FixelText-ExtraLight.ufo/glyphs/A_acute.glif new file mode 100644 index 00000000..f94b82f9 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/A_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+acute.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/A_acute.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/A_acute.ss01.glif new file mode 100644 index 00000000..bc584fe6 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/A_acute.ss01.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + A.ss01+acute.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/A_breve.glif b/sources/FixelText-ExtraLight.ufo/glyphs/A_breve.glif new file mode 100644 index 00000000..452de69f --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/A_breve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+breve.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/A_breve.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/A_breve.ss01.glif new file mode 100644 index 00000000..11dd5d51 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/A_breve.ss01.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + A.ss01+breve.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/A_brevecyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/A_brevecyr.glif new file mode 100644 index 00000000..3a9150df --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/A_brevecyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+breve.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/A_caron.glif b/sources/FixelText-ExtraLight.ufo/glyphs/A_caron.glif new file mode 100644 index 00000000..0f206c79 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/A_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+caron.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/A_circumflex.glif b/sources/FixelText-ExtraLight.ufo/glyphs/A_circumflex.glif new file mode 100644 index 00000000..4ea91fab --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/A_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+circumflex.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/A_circumflex.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/A_circumflex.ss01.glif new file mode 100644 index 00000000..1bc5248f --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/A_circumflex.ss01.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + A.ss01+circumflex.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/A_dieresis.glif b/sources/FixelText-ExtraLight.ufo/glyphs/A_dieresis.glif new file mode 100644 index 00000000..88dee453 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/A_dieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+dieresis.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/A_dieresis.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/A_dieresis.ss01.glif new file mode 100644 index 00000000..8ac4f1ba --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/A_dieresis.ss01.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + A.ss01+dieresis.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/A_dieresiscyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/A_dieresiscyr.glif new file mode 100644 index 00000000..f49f6d0f --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/A_dieresiscyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/A_grave.glif b/sources/FixelText-ExtraLight.ufo/glyphs/A_grave.glif new file mode 100644 index 00000000..4e244b1e --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/A_grave.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+grave.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/A_grave.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/A_grave.ss01.glif new file mode 100644 index 00000000..c150fc43 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/A_grave.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A.ss01+grave.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/A_iecyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/A_iecyr.glif new file mode 100644 index 00000000..98e3b585 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/A_iecyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + AE + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/A_macron.glif b/sources/FixelText-ExtraLight.ufo/glyphs/A_macron.glif new file mode 100644 index 00000000..f49e9a94 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/A_macron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+macron.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/A_macron.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/A_macron.ss01.glif new file mode 100644 index 00000000..fa6e59f4 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/A_macron.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A.ss01+macron.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/A_ogonek.glif b/sources/FixelText-ExtraLight.ufo/glyphs/A_ogonek.glif new file mode 100644 index 00000000..faeb04b8 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/A_ogonek.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+ogonek + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/A_ogonek.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/A_ogonek.ss01.glif new file mode 100644 index 00000000..41b78bc0 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/A_ogonek.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A.ss01+ogonek + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/A_ring.glif b/sources/FixelText-ExtraLight.ufo/glyphs/A_ring.glif new file mode 100644 index 00000000..0e0d63f4 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/A_ring.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+ring.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/A_ring.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/A_ring.ss01.glif new file mode 100644 index 00000000..174873f9 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/A_ring.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A.ss01+ring.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/A_tilde.glif b/sources/FixelText-ExtraLight.ufo/glyphs/A_tilde.glif new file mode 100644 index 00000000..351b731c --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/A_tilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+tilde.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/A_tilde.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/A_tilde.ss01.glif new file mode 100644 index 00000000..79217844 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/A_tilde.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A.ss01+tilde.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/B_.glif b/sources/FixelText-ExtraLight.ufo/glyphs/B_.glif new file mode 100644 index 00000000..9b935bbe --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/B_.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/B_e-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/B_e-cy.glif new file mode 100644 index 00000000..9b0c90f6 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/B_e-cy.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + B-10 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/C_.glif b/sources/FixelText-ExtraLight.ufo/glyphs/C_.glif new file mode 100644 index 00000000..a26b5224 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/C_.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/C_R_.glif b/sources/FixelText-ExtraLight.ufo/glyphs/C_R_.glif new file mode 100644 index 00000000..a38a285e --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/C_R_.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/C_acute.glif b/sources/FixelText-ExtraLight.ufo/glyphs/C_acute.glif new file mode 100644 index 00000000..265f4624 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/C_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+acute.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/C_caron.glif b/sources/FixelText-ExtraLight.ufo/glyphs/C_caron.glif new file mode 100644 index 00000000..7efcca7d --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/C_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+caron.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/C_cedilla.glif b/sources/FixelText-ExtraLight.ufo/glyphs/C_cedilla.glif new file mode 100644 index 00000000..b54b1a97 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/C_cedilla.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+cedilla + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/C_che-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/C_che-cy.glif new file mode 100644 index 00000000..f55bf33c --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/C_che-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ч + com.fontlab.metricsRight + Ч + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/C_circumflex.glif b/sources/FixelText-ExtraLight.ufo/glyphs/C_circumflex.glif new file mode 100644 index 00000000..56b3027e --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/C_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+circumflex.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/C_dotaccent.glif b/sources/FixelText-ExtraLight.ufo/glyphs/C_dotaccent.glif new file mode 100644 index 00000000..f6e3d2e8 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/C_dotaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+dotaccent.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/C_he-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/C_he-cy.glif new file mode 100644 index 00000000..6b5de705 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/C_he-cy.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/C_heabkhcyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/C_heabkhcyr.glif new file mode 100644 index 00000000..6cbfeb56 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/C_heabkhcyr.glif @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + |Schwa + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/C_heabkhtailcyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/C_heabkhtailcyr.glif new file mode 100644 index 00000000..9964422d --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/C_heabkhtailcyr.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Cheabkhcyr + com.fontlab.metricsRight + Cheabkhcyr + com.fontlab.recipe + Cheabkhcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/C_hedieresiscyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/C_hedieresiscyr.glif new file mode 100644 index 00000000..1601fd7d --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/C_hedieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Che-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/C_hekhakascyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/C_hekhakascyr.glif new file mode 100644 index 00000000..e3286e2c --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/C_hekhakascyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ч + com.fontlab.metricsRight + H + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/C_hetailcyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/C_hetailcyr.glif new file mode 100644 index 00000000..a81395ee --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/C_hetailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ч + com.fontlab.metricsRight + Entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/C_hevertcyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/C_hevertcyr.glif new file mode 100644 index 00000000..dc225ac2 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/C_hevertcyr.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ч + com.fontlab.metricsRight + Н + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/C_rossedO_-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/C_rossedO_-cy.glif new file mode 100644 index 00000000..7799a5fc --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/C_rossedO_-cy.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + com.fontlab.recipe + O + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/D_.glif b/sources/FixelText-ExtraLight.ufo/glyphs/D_.glif new file mode 100644 index 00000000..981a2ead --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/D_.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/D_caron.glif b/sources/FixelText-ExtraLight.ufo/glyphs/D_caron.glif new file mode 100644 index 00000000..7a0ae210 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/D_caron.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + D+caron.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/D_checyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/D_checyr.glif new file mode 100644 index 00000000..52f0e98c --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/D_checyr.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Д+10 + com.fontlab.metricsRight + Д + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/D_croat.glif b/sources/FixelText-ExtraLight.ufo/glyphs/D_croat.glif new file mode 100644 index 00000000..bd91ee75 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/D_croat.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + D + com.fontlab.recipe + Eth + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/D_e-cy.B_G_R_.glif b/sources/FixelText-ExtraLight.ufo/glyphs/D_e-cy.B_G_R_.glif new file mode 100644 index 00000000..8f57f5df --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/D_e-cy.B_G_R_.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + l() + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/D_e-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/D_e-cy.glif new file mode 100644 index 00000000..d5d6fed1 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/D_e-cy.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/D_eS_oft-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/D_eS_oft-cy.glif new file mode 100644 index 00000000..38663a17 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/D_eS_oft-cy.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Д + com.fontlab.metricsRight + Ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/D_ekomicyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/D_ekomicyr.glif new file mode 100644 index 00000000..01b0e342 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/D_ekomicyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.metricsLeft + |P + com.fontlab.metricsRight + H + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/D_elta.glif b/sources/FixelText-ExtraLight.ufo/glyphs/D_elta.glif new file mode 100644 index 00000000..3c5c1ce6 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/D_elta.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + A + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/D_jecyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/D_jecyr.glif new file mode 100644 index 00000000..2f830cf9 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/D_jecyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/D_jekomicyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/D_jekomicyr.glif new file mode 100644 index 00000000..0b3f3622 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/D_jekomicyr.glif @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Dekomicyr + com.fontlab.metricsRight + Njekomicyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/D_jerv-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/D_jerv-cy.glif new file mode 100644 index 00000000..cfe457e7 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/D_jerv-cy.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + r() + com.fontlab.metricsRight + O + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/D_oubleO_-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/D_oubleO_-cy.glif new file mode 100644 index 00000000..bb215aa5 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/D_oubleO_-cy.glif @@ -0,0 +1,91 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + com.fontlab.recipe + O_O + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/D_we-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/D_we-cy.glif new file mode 100644 index 00000000..85c3b2da --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/D_we-cy.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Д + com.fontlab.metricsRight + Д + com.fontlab.recipe + Д + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/D_ze-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/D_ze-cy.glif new file mode 100644 index 00000000..ac441701 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/D_ze-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + S + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/D_zeR_eversed-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/D_zeR_eversed-cy.glif new file mode 100644 index 00000000..97b87feb --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/D_zeR_eversed-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + S + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/D_zeabkhcyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/D_zeabkhcyr.glif new file mode 100644 index 00000000..1adb173c --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/D_zeabkhcyr.glif @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + З-10 + com.fontlab.metricsRight + З-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/D_zelo-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/D_zelo-cy.glif new file mode 100644 index 00000000..c8349f31 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/D_zelo-cy.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/D_zhecyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/D_zhecyr.glif new file mode 100644 index 00000000..48d74057 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/D_zhecyr.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/D_zjekomicyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/D_zjekomicyr.glif new file mode 100644 index 00000000..0221f456 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/D_zjekomicyr.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + З-10 + com.fontlab.metricsRight + Ц-5 + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/D_zwe-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/D_zwe-cy.glif new file mode 100644 index 00000000..1dedab49 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/D_zwe-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + S + com.fontlab.metricsRight + S + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/D_zze-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/D_zze-cy.glif new file mode 100644 index 00000000..2c61e0ae --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/D_zze-cy.glif @@ -0,0 +1,84 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Д + com.fontlab.metricsRight + Д-20 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/D_zzhecyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/D_zzhecyr.glif new file mode 100644 index 00000000..ba387a2b --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/D_zzhecyr.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Д + com.fontlab.metricsRight + Ж + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/E_-cy.accented.glif b/sources/FixelText-ExtraLight.ufo/glyphs/E_-cy.accented.glif new file mode 100644 index 00000000..24d6d232 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/E_-cy.accented.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+acute.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/E_-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/E_-cy.glif new file mode 100644 index 00000000..a5ba682f --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/E_-cy.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + C + com.fontlab.metricsRight + C + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/E_.glif b/sources/FixelText-ExtraLight.ufo/glyphs/E_.glif new file mode 100644 index 00000000..b07e0dfe --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/E_.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + com.fontlab.metricsRight + F+10 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/E_acute.glif b/sources/FixelText-ExtraLight.ufo/glyphs/E_acute.glif new file mode 100644 index 00000000..a12d1e21 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/E_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+acute.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/E_breve.glif b/sources/FixelText-ExtraLight.ufo/glyphs/E_breve.glif new file mode 100644 index 00000000..cec5593e --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/E_breve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+breve.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/E_caron.glif b/sources/FixelText-ExtraLight.ufo/glyphs/E_caron.glif new file mode 100644 index 00000000..11c7a5f7 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/E_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+caron.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/E_circumflex.glif b/sources/FixelText-ExtraLight.ufo/glyphs/E_circumflex.glif new file mode 100644 index 00000000..d4228e2b --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/E_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+circumflex.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/E_dieresis.glif b/sources/FixelText-ExtraLight.ufo/glyphs/E_dieresis.glif new file mode 100644 index 00000000..e9891ce0 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/E_dieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+dieresiscase.alt + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/E_dotaccent.glif b/sources/FixelText-ExtraLight.ufo/glyphs/E_dotaccent.glif new file mode 100644 index 00000000..25d0c30e --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/E_dotaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+dotaccent.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/E_f-cy.B_G_R_.glif b/sources/FixelText-ExtraLight.ufo/glyphs/E_f-cy.B_G_R_.glif new file mode 100644 index 00000000..89234a8b --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/E_f-cy.B_G_R_.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/E_f-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/E_f-cy.glif new file mode 100644 index 00000000..062c5882 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/E_f-cy.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/E_grave.glif b/sources/FixelText-ExtraLight.ufo/glyphs/E_grave.glif new file mode 100644 index 00000000..96a25583 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/E_grave.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+grave.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/E_iotifiedcyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/E_iotifiedcyr.glif new file mode 100644 index 00000000..006a0139 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/E_iotifiedcyr.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + C + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/E_l-cy.B_G_R_.glif b/sources/FixelText-ExtraLight.ufo/glyphs/E_l-cy.B_G_R_.glif new file mode 100644 index 00000000..0ad8a775 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/E_l-cy.B_G_R_.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + A + com.fontlab.metricsRight + l() + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/E_l-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/E_l-cy.glif new file mode 100644 index 00000000..fae523c9 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/E_l-cy.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/E_lS_oft-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/E_lS_oft-cy.glif new file mode 100644 index 00000000..de7c2041 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/E_lS_oft-cy.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/E_lhookcyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/E_lhookcyr.glif new file mode 100644 index 00000000..e5814314 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/E_lhookcyr.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Л + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/E_lmiddlehookcyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/E_lmiddlehookcyr.glif new file mode 100644 index 00000000..59897375 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/E_lmiddlehookcyr.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Shhacyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/E_lsharptailcyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/E_lsharptailcyr.glif new file mode 100644 index 00000000..1f943b3b --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/E_lsharptailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Ensharptailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/E_lsmallcyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/E_lsmallcyr.glif new file mode 100644 index 00000000..2da130b7 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/E_lsmallcyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + el-cy.BGR + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/E_ltailcyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/E_ltailcyr.glif new file mode 100644 index 00000000..c7210c3f --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/E_ltailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/E_m-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/E_m-cy.glif new file mode 100644 index 00000000..f49d5fc8 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/E_m-cy.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + M + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/E_m-cy.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/E_m-cy.ss01.glif new file mode 100644 index 00000000..342b3be5 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/E_m-cy.ss01.glif @@ -0,0 +1,13 @@ + + + + + + + + + com.fontlab.recipe + M + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/E_mS_oft-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/E_mS_oft-cy.glif new file mode 100644 index 00000000..bf775b99 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/E_mS_oft-cy.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + M + com.fontlab.metricsRight + Ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/E_macron.glif b/sources/FixelText-ExtraLight.ufo/glyphs/E_macron.glif new file mode 100644 index 00000000..65755e92 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/E_macron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+macron.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/E_msharptailcyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/E_msharptailcyr.glif new file mode 100644 index 00000000..8b0f8605 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/E_msharptailcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Н + com.fontlab.metricsRight + Ensharptailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/E_n-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/E_n-cy.glif new file mode 100644 index 00000000..2da23fd0 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/E_n-cy.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + H + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/E_ng.glif b/sources/FixelText-ExtraLight.ufo/glyphs/E_ng.glif new file mode 100644 index 00000000..08448b7b --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/E_ng.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + N + com.fontlab.metricsRight + l() + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/E_ng.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/E_ng.ss01.glif new file mode 100644 index 00000000..c3e297d6 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/E_ng.ss01.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + N.ss01 + com.fontlab.metricsRight + J.ss01 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/E_ngecyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/E_ngecyr.glif new file mode 100644 index 00000000..9a29dd8b --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/E_ngecyr.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/E_nhookcyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/E_nhookcyr.glif new file mode 100644 index 00000000..03331767 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/E_nhookcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/E_nhookleftcyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/E_nhookleftcyr.glif new file mode 100644 index 00000000..66aa4295 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/E_nhookleftcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + r()-159 + com.fontlab.metricsRight + H + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/E_nmiddlehookcyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/E_nmiddlehookcyr.glif new file mode 100644 index 00000000..8fec2da0 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/E_nmiddlehookcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Shhacyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/E_nsharptailcyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/E_nsharptailcyr.glif new file mode 100644 index 00000000..32d924b4 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/E_nsharptailcyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Н + com.fontlab.metricsRight + Д + com.fontlab.recipe + Entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/E_ntailcyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/E_ntailcyr.glif new file mode 100644 index 00000000..95e5eb9d --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/E_ntailcyr.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Ц + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/E_ogonek.glif b/sources/FixelText-ExtraLight.ufo/glyphs/E_ogonek.glif new file mode 100644 index 00000000..a56493dc --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/E_ogonek.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+ogonek + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/E_r-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/E_r-cy.glif new file mode 100644 index 00000000..ef7d9778 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/E_r-cy.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + P + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/E_reversed-cy.accented.glif b/sources/FixelText-ExtraLight.ufo/glyphs/E_reversed-cy.accented.glif new file mode 100644 index 00000000..661c82c5 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/E_reversed-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Э+acute.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/E_reversed-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/E_reversed-cy.glif new file mode 100644 index 00000000..cbe87be2 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/E_reversed-cy.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |C + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/E_reverseddieresiscyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/E_reverseddieresiscyr.glif new file mode 100644 index 00000000..a2a3c999 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/E_reverseddieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ereversed-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/E_rtickcyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/E_rtickcyr.glif new file mode 100644 index 00000000..44499c40 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/E_rtickcyr.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + P + com.fontlab.metricsRight + P + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/E_s-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/E_s-cy.glif new file mode 100644 index 00000000..d0db5f37 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/E_s-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/E_stailcyr.B_S_H_.glif b/sources/FixelText-ExtraLight.ufo/glyphs/E_stailcyr.B_S_H_.glif new file mode 100644 index 00000000..ed33006f --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/E_stailcyr.B_S_H_.glif @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + C + com.fontlab.metricsRight + C + com.fontlab.recipe + C + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/E_stailcyr.C_H_U_.glif b/sources/FixelText-ExtraLight.ufo/glyphs/E_stailcyr.C_H_U_.glif new file mode 100644 index 00000000..058a4c9d --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/E_stailcyr.C_H_U_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+cedilla.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/E_stailcyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/E_stailcyr.glif new file mode 100644 index 00000000..c858f223 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/E_stailcyr.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + С + com.fontlab.metricsRight + С + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/E_th.glif b/sources/FixelText-ExtraLight.ufo/glyphs/E_th.glif new file mode 100644 index 00000000..fee328b0 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/E_th.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + D + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/F_.glif b/sources/FixelText-ExtraLight.ufo/glyphs/F_.glif new file mode 100644 index 00000000..f01ed219 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/F_.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/F_itacyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/F_itacyr.glif new file mode 100644 index 00000000..fe59af36 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/F_itacyr.glif @@ -0,0 +1,78 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + com.fontlab.recipe + Obarcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/G_.glif b/sources/FixelText-ExtraLight.ufo/glyphs/G_.glif new file mode 100644 index 00000000..72858b97 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/G_.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O+18 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/G_.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/G_.ss01.glif new file mode 100644 index 00000000..5ffb8168 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/G_.ss01.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O+10 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/G_acute.glif b/sources/FixelText-ExtraLight.ufo/glyphs/G_acute.glif new file mode 100644 index 00000000..feec1c9f --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/G_acute.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + G+acute.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/G_acute.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/G_acute.ss01.glif new file mode 100644 index 00000000..92f8abda --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/G_acute.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G.ss01+acute.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/G_breve.glif b/sources/FixelText-ExtraLight.ufo/glyphs/G_breve.glif new file mode 100644 index 00000000..a4cc4d15 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/G_breve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G+breve.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/G_breve.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/G_breve.ss01.glif new file mode 100644 index 00000000..438f8219 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/G_breve.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G.ss01+breve.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/G_circumflex.glif b/sources/FixelText-ExtraLight.ufo/glyphs/G_circumflex.glif new file mode 100644 index 00000000..09b69320 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/G_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G+circumflex.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/G_circumflex.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/G_circumflex.ss01.glif new file mode 100644 index 00000000..30cbc3cb --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/G_circumflex.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G.ss01+circumflex.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/G_commaaccent.glif b/sources/FixelText-ExtraLight.ufo/glyphs/G_commaaccent.glif new file mode 100644 index 00000000..b709b292 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/G_commaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G+commaaccentcomb + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/G_commaaccent.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/G_commaaccent.ss01.glif new file mode 100644 index 00000000..a919396d --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/G_commaaccent.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G.ss01+commaaccentcomb + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/G_dotaccent.glif b/sources/FixelText-ExtraLight.ufo/glyphs/G_dotaccent.glif new file mode 100644 index 00000000..3826eba0 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/G_dotaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G+dotaccent.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/G_dotaccent.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/G_dotaccent.ss01.glif new file mode 100644 index 00000000..8a7490d3 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/G_dotaccent.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G.ss01+dotaccent.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/G_e-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/G_e-cy.glif new file mode 100644 index 00000000..96a47c0d --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/G_e-cy.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + T + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/G_ehookcyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/G_ehookcyr.glif new file mode 100644 index 00000000..b2a82548 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/G_ehookcyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Г + com.fontlab.metricsRight + Tshecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/G_ehookstrokecyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/G_ehookstrokecyr.glif new file mode 100644 index 00000000..2933d152 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/G_ehookstrokecyr.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Gestrokecyr + com.fontlab.metricsRight + Gestrokecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/G_ermandbls.glif b/sources/FixelText-ExtraLight.ufo/glyphs/G_ermandbls.glif new file mode 100644 index 00000000..c1a3de12 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/G_ermandbls.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + U + com.fontlab.metricsRight + B-5 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/G_estrokecyr.B_S_H_.glif b/sources/FixelText-ExtraLight.ufo/glyphs/G_estrokecyr.B_S_H_.glif new file mode 100644 index 00000000..1935b82f --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/G_estrokecyr.B_S_H_.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + F + com.fontlab.metricsRight + Gestrokecyr + com.fontlab.recipe + Gestrokecyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/G_estrokecyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/G_estrokecyr.glif new file mode 100644 index 00000000..56b252b4 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/G_estrokecyr.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + Г + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/G_etailcyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/G_etailcyr.glif new file mode 100644 index 00000000..602b1738 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/G_etailcyr.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Г + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/G_heupturn-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/G_heupturn-cy.glif new file mode 100644 index 00000000..65c072c3 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/G_heupturn-cy.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Г + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/G_jecyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/G_jecyr.glif new file mode 100644 index 00000000..5f3abb89 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/G_jecyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ge-cy+acute.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/H_.glif b/sources/FixelText-ExtraLight.ufo/glyphs/H_.glif new file mode 100644 index 00000000..eae9edca --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/H_.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + com.fontlab.metricsRight + I + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/H_a-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/H_a-cy.glif new file mode 100644 index 00000000..9e595bc7 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/H_a-cy.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + X + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/H_a-cy.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/H_a-cy.ss01.glif new file mode 100644 index 00000000..5843c6f4 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/H_a-cy.ss01.glif @@ -0,0 +1,14 @@ + + + + + + + + + + com.fontlab.recipe + X + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/H_aabkhcyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/H_aabkhcyr.glif new file mode 100644 index 00000000..98279ff5 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/H_aabkhcyr.glif @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/H_ahookcyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/H_ahookcyr.glif new file mode 100644 index 00000000..80273027 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/H_ahookcyr.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + X + com.fontlab.metricsRight + X + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/H_ardsign-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/H_ardsign-cy.glif new file mode 100644 index 00000000..71d0bacf --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/H_ardsign-cy.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + Ь + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/H_astrokecyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/H_astrokecyr.glif new file mode 100644 index 00000000..b5a0c743 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/H_astrokecyr.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + X + com.fontlab.metricsRight + X + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/H_bar.glif b/sources/FixelText-ExtraLight.ufo/glyphs/H_bar.glif new file mode 100644 index 00000000..3743489b --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/H_bar.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + r() + com.fontlab.metricsRight + H + com.schriftgestaltung.Glyphs.rightMetricsKey + H + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/H_circumflex.glif b/sources/FixelText-ExtraLight.ufo/glyphs/H_circumflex.glif new file mode 100644 index 00000000..c860893c --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/H_circumflex.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + H+circumflex.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/H_we-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/H_we-cy.glif new file mode 100644 index 00000000..f81e6ab9 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/H_we-cy.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Iota-cy + com.fontlab.metricsRight + Tshecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/I_-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/I_-cy.glif new file mode 100644 index 00000000..c96b7ed6 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/I_-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/I_.glif b/sources/FixelText-ExtraLight.ufo/glyphs/I_.glif new file mode 100644 index 00000000..205ae2be --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/I_.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/I_J_.glif b/sources/FixelText-ExtraLight.ufo/glyphs/I_J_.glif new file mode 100644 index 00000000..6a864186 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/I_J_.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + I_J + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/I_a-cy.accented.glif b/sources/FixelText-ExtraLight.ufo/glyphs/I_a-cy.accented.glif new file mode 100644 index 00000000..7cb24885 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/I_a-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Я+acute.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/I_a-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/I_a-cy.glif new file mode 100644 index 00000000..548c0ed5 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/I_a-cy.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |R+10 + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/I_a-cy.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/I_a-cy.ss01.glif new file mode 100644 index 00000000..94fe192a --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/I_a-cy.ss01.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/I_acute.glif b/sources/FixelText-ExtraLight.ufo/glyphs/I_acute.glif new file mode 100644 index 00000000..ba1e1eb7 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/I_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+acute.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/I_breve.glif b/sources/FixelText-ExtraLight.ufo/glyphs/I_breve.glif new file mode 100644 index 00000000..fe18fe24 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/I_breve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+breve.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/I_circumflex.glif b/sources/FixelText-ExtraLight.ufo/glyphs/I_circumflex.glif new file mode 100644 index 00000000..7b82c3d5 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/I_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+circumflex.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/I_dieresis.glif b/sources/FixelText-ExtraLight.ufo/glyphs/I_dieresis.glif new file mode 100644 index 00000000..85000530 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/I_dieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+dieresiscase.alt + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/I_dieresiscyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/I_dieresiscyr.glif new file mode 100644 index 00000000..45eee205 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/I_dieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ii-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/I_dotaccent.glif b/sources/FixelText-ExtraLight.ufo/glyphs/I_dotaccent.glif new file mode 100644 index 00000000..6d6479ae --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/I_dotaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+dotaccent.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/I_e-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/I_e-cy.glif new file mode 100644 index 00000000..3e65250d --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/I_e-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/I_ebrevecyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/I_ebrevecyr.glif new file mode 100644 index 00000000..39062a85 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/I_ebrevecyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+breve.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/I_egravecyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/I_egravecyr.glif new file mode 100644 index 00000000..1463c1f1 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/I_egravecyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+grave.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/I_grave.glif b/sources/FixelText-ExtraLight.ufo/glyphs/I_grave.glif new file mode 100644 index 00000000..6a0eba90 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/I_grave.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+grave.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/I_gravecyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/I_gravecyr.glif new file mode 100644 index 00000000..1ec9e7e4 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/I_gravecyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ii-cy+grave.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/I_i-cy.accented.glif b/sources/FixelText-ExtraLight.ufo/glyphs/I_i-cy.accented.glif new file mode 100644 index 00000000..f324f222 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/I_i-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + И+acute.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/I_i-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/I_i-cy.glif new file mode 100644 index 00000000..58971529 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/I_i-cy.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/I_ishort-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/I_ishort-cy.glif new file mode 100644 index 00000000..41ab18a2 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/I_ishort-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + uni0418+breve.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/I_macron.glif b/sources/FixelText-ExtraLight.ufo/glyphs/I_macron.glif new file mode 100644 index 00000000..05d36e12 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/I_macron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+macron.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/I_macroncyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/I_macroncyr.glif new file mode 100644 index 00000000..b7e1918c --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/I_macroncyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ii-cy+macron.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/I_o-cy.accented.glif b/sources/FixelText-ExtraLight.ufo/glyphs/I_o-cy.accented.glif new file mode 100644 index 00000000..e424f499 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/I_o-cy.accented.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + com.fontlab.recipe + E+dieresis.case+acute.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/I_o-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/I_o-cy.glif new file mode 100644 index 00000000..16bb4232 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/I_o-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Edieresis + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/I_ogonek.glif b/sources/FixelText-ExtraLight.ufo/glyphs/I_ogonek.glif new file mode 100644 index 00000000..61e6d34f --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/I_ogonek.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+ogonek + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/I_ota-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/I_ota-cy.glif new file mode 100644 index 00000000..dcc7cd89 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/I_ota-cy.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |J + com.fontlab.metricsRight + |J + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/I_otifiedA_-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/I_otifiedA_-cy.glif new file mode 100644 index 00000000..db08eadb --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/I_otifiedA_-cy.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + com.fontlab.metricsRight + A + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/I_shortsharptailcyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/I_shortsharptailcyr.glif new file mode 100644 index 00000000..47a6811b --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/I_shortsharptailcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Й + com.fontlab.metricsRight + Ensharptailcyr + com.fontlab.recipe + Й + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/I_tilde.glif b/sources/FixelText-ExtraLight.ufo/glyphs/I_tilde.glif new file mode 100644 index 00000000..c0f8770d --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/I_tilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+tilde.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/I_u-cy.accented.glif b/sources/FixelText-ExtraLight.ufo/glyphs/I_u-cy.accented.glif new file mode 100644 index 00000000..ae36e3da --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/I_u-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ю+acute.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/I_u-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/I_u-cy.glif new file mode 100644 index 00000000..276c61fc --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/I_u-cy.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/I_zhitsacyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/I_zhitsacyr.glif new file mode 100644 index 00000000..e8271d31 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/I_zhitsacyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + V + com.fontlab.metricsRight + + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/I_zhitsagravedblcyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/I_zhitsagravedblcyr.glif new file mode 100644 index 00000000..d68cc557 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/I_zhitsagravedblcyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + com.fontlab.metricsLeft + Izhitsacyr + com.fontlab.metricsRight + Izhitsacyr + com.fontlab.recipe + Izhitsacyr+hungarumlaut.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/J_.glif b/sources/FixelText-ExtraLight.ufo/glyphs/J_.glif new file mode 100644 index 00000000..730c7c49 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/J_.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + U + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/J_.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/J_.ss01.glif new file mode 100644 index 00000000..4b0c4665 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/J_.ss01.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + U + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/J_circumflex.glif b/sources/FixelText-ExtraLight.ufo/glyphs/J_circumflex.glif new file mode 100644 index 00000000..f67b0e36 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/J_circumflex.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + J+circumflex.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/J_circumflex.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/J_circumflex.ss01.glif new file mode 100644 index 00000000..e1c19e22 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/J_circumflex.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + J.ss01+circumflex.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/J_ecyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/J_ecyr.glif new file mode 100644 index 00000000..673946e2 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/J_ecyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsLeft + J + com.fontlab.metricsRight + J + com.fontlab.recipe + J + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/K_.glif b/sources/FixelText-ExtraLight.ufo/glyphs/K_.glif new file mode 100644 index 00000000..e8e68a03 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/K_.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/K_.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/K_.ss01.glif new file mode 100644 index 00000000..aae3d7de --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/K_.ss01.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/K_a-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/K_a-cy.glif new file mode 100644 index 00000000..03a53091 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/K_a-cy.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.recipe + K + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/K_a-cy.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/K_a-cy.ss01.glif new file mode 100644 index 00000000..837e3420 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/K_a-cy.ss01.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.recipe + K + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/K_aaleutcyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/K_aaleutcyr.glif new file mode 100644 index 00000000..a2977de4 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/K_aaleutcyr.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + K + com.fontlab.metricsRight + K + com.fontlab.recipe + K + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/K_abashkcyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/K_abashkcyr.glif new file mode 100644 index 00000000..af3db300 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/K_abashkcyr.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Hardsign-cy + com.fontlab.metricsRight + K + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/K_ahookcyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/K_ahookcyr.glif new file mode 100644 index 00000000..84b358ea --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/K_ahookcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + K + com.fontlab.metricsRight + Djecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/K_astrokecyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/K_astrokecyr.glif new file mode 100644 index 00000000..5661379c --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/K_astrokecyr.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Yatcyr + com.fontlab.metricsRight + K + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/K_atailcyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/K_atailcyr.glif new file mode 100644 index 00000000..76f1efbf --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/K_atailcyr.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + К-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/K_averticalstrokecyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/K_averticalstrokecyr.glif new file mode 100644 index 00000000..4d7e443b --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/K_averticalstrokecyr.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + K + com.fontlab.metricsRight + Ж + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/K_commaaccent.glif b/sources/FixelText-ExtraLight.ufo/glyphs/K_commaaccent.glif new file mode 100644 index 00000000..c97ffb39 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/K_commaaccent.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + K+commaaccentcomb + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/K_commaaccent.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/K_commaaccent.ss01.glif new file mode 100644 index 00000000..51954baa --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/K_commaaccent.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + K.ss01+commaaccentcomb + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/K_jecyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/K_jecyr.glif new file mode 100644 index 00000000..e6a4acf7 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/K_jecyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ka-cy+acute.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/K_oppacyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/K_oppacyr.glif new file mode 100644 index 00000000..3fdc8b2e --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/K_oppacyr.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + C-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/K_sicyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/K_sicyr.glif new file mode 100644 index 00000000..acbbbf27 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/K_sicyr.glif @@ -0,0 +1,98 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + З-10 + com.fontlab.metricsRight + З + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/L_.glif b/sources/FixelText-ExtraLight.ufo/glyphs/L_.glif new file mode 100644 index 00000000..24227ad9 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/L_.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/L_acute.glif b/sources/FixelText-ExtraLight.ufo/glyphs/L_acute.glif new file mode 100644 index 00000000..70c5f133 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/L_acute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + L+acute.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/L_caron.glif b/sources/FixelText-ExtraLight.ufo/glyphs/L_caron.glif new file mode 100644 index 00000000..5f1c7a3d --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/L_caron.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + com.fontlab.recipe + L+caron.salt + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/L_commaaccent.glif b/sources/FixelText-ExtraLight.ufo/glyphs/L_commaaccent.glif new file mode 100644 index 00000000..0183103f --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/L_commaaccent.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + L+commaaccentcomb + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/L_dot.glif b/sources/FixelText-ExtraLight.ufo/glyphs/L_dot.glif new file mode 100644 index 00000000..0e2c2896 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/L_dot.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + com.fontlab.metricsRight + L + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/L_hacyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/L_hacyr.glif new file mode 100644 index 00000000..e832bdfa --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/L_hacyr.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + X + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/L_jecyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/L_jecyr.glif new file mode 100644 index 00000000..c0d1aa8b --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/L_jecyr.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Ь + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/L_jekomicyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/L_jekomicyr.glif new file mode 100644 index 00000000..8fbb887f --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/L_jekomicyr.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Njekomicyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/L_slash.glif b/sources/FixelText-ExtraLight.ufo/glyphs/L_slash.glif new file mode 100644 index 00000000..7e6f95c7 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/L_slash.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + L-80 + com.fontlab.metricsRight + L + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/M_.glif b/sources/FixelText-ExtraLight.ufo/glyphs/M_.glif new file mode 100644 index 00000000..36710c59 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/M_.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/M_.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/M_.ss01.glif new file mode 100644 index 00000000..42aa8c17 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/M_.ss01.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H-25 + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/N_.glif b/sources/FixelText-ExtraLight.ufo/glyphs/N_.glif new file mode 100644 index 00000000..7d3566b6 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/N_.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/N_.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/N_.ss01.glif new file mode 100644 index 00000000..64d2ef72 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/N_.ss01.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H-10 + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/N_U_L_L_.glif b/sources/FixelText-ExtraLight.ufo/glyphs/N_U_L_L_.glif new file mode 100644 index 00000000..1ad177ae --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/N_U_L_L_.glif @@ -0,0 +1,4 @@ + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/N_acute.glif b/sources/FixelText-ExtraLight.ufo/glyphs/N_acute.glif new file mode 100644 index 00000000..5f03d332 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/N_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N+acute.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/N_acute.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/N_acute.ss01.glif new file mode 100644 index 00000000..0128f48e --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/N_acute.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N.ss01+acute.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/N_caron.glif b/sources/FixelText-ExtraLight.ufo/glyphs/N_caron.glif new file mode 100644 index 00000000..2dbb6d34 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/N_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N+caron.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/N_caron.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/N_caron.ss01.glif new file mode 100644 index 00000000..e0aa4c17 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/N_caron.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N.ss01+caron.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/N_commaaccent.glif b/sources/FixelText-ExtraLight.ufo/glyphs/N_commaaccent.glif new file mode 100644 index 00000000..9a958e44 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/N_commaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N+commaaccentcomb + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/N_commaaccent.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/N_commaaccent.ss01.glif new file mode 100644 index 00000000..8c0f8b44 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/N_commaaccent.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N.ss01+commaaccentcomb + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/N_jecyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/N_jecyr.glif new file mode 100644 index 00000000..9d4e7dcc --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/N_jecyr.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Н + com.fontlab.metricsRight + Ь + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/N_jekomicyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/N_jekomicyr.glif new file mode 100644 index 00000000..786ddfcb --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/N_jekomicyr.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + |u + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/N_tilde.glif b/sources/FixelText-ExtraLight.ufo/glyphs/N_tilde.glif new file mode 100644 index 00000000..3f7f5360 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/N_tilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N+tilde.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/N_tilde.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/N_tilde.ss01.glif new file mode 100644 index 00000000..154985f2 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/N_tilde.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N.ss01+tilde.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/O_-cy.accented.glif b/sources/FixelText-ExtraLight.ufo/glyphs/O_-cy.accented.glif new file mode 100644 index 00000000..066bb927 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/O_-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+acute.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/O_-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/O_-cy.glif new file mode 100644 index 00000000..3a818ca7 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/O_-cy.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/O_.glif b/sources/FixelText-ExtraLight.ufo/glyphs/O_.glif new file mode 100644 index 00000000..90e2431c --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/O_.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/O_B_inocular-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/O_B_inocular-cy.glif new file mode 100644 index 00000000..d3d4ebb7 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/O_B_inocular-cy.glif @@ -0,0 +1,81 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/O_D_oubleM_onocular-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/O_D_oubleM_onocular-cy.glif new file mode 100644 index 00000000..c9fcb85c --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/O_D_oubleM_onocular-cy.glif @@ -0,0 +1,119 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + com.fontlab.recipe + DoubleO-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/O_E_.glif b/sources/FixelText-ExtraLight.ufo/glyphs/O_E_.glif new file mode 100644 index 00000000..322b0dd3 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/O_E_.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + E + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/O_M_onocular-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/O_M_onocular-cy.glif new file mode 100644 index 00000000..34a276b5 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/O_M_onocular-cy.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/O_acute.glif b/sources/FixelText-ExtraLight.ufo/glyphs/O_acute.glif new file mode 100644 index 00000000..9b223a9e --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/O_acute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+acute.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/O_barcyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/O_barcyr.glif new file mode 100644 index 00000000..05e5e347 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/O_barcyr.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + r() + com.fontlab.metricsRight + O + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/O_bardieresiscyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/O_bardieresiscyr.glif new file mode 100644 index 00000000..8e3ad308 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/O_bardieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Obarcyr+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/O_breve.glif b/sources/FixelText-ExtraLight.ufo/glyphs/O_breve.glif new file mode 100644 index 00000000..528b0d6f --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/O_breve.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+breve.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/O_circumflex.glif b/sources/FixelText-ExtraLight.ufo/glyphs/O_circumflex.glif new file mode 100644 index 00000000..68f357d4 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/O_circumflex.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+circumflex.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/O_dieresis.glif b/sources/FixelText-ExtraLight.ufo/glyphs/O_dieresis.glif new file mode 100644 index 00000000..dfbd72ef --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/O_dieresis.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+dieresis.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/O_dieresiscyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/O_dieresiscyr.glif new file mode 100644 index 00000000..2acc1a68 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/O_dieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/O_grave.glif b/sources/FixelText-ExtraLight.ufo/glyphs/O_grave.glif new file mode 100644 index 00000000..45d7e738 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/O_grave.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+grave.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/O_hungarumlaut.glif b/sources/FixelText-ExtraLight.ufo/glyphs/O_hungarumlaut.glif new file mode 100644 index 00000000..3e2dac83 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/O_hungarumlaut.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+hungarumlaut.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/O_macron.glif b/sources/FixelText-ExtraLight.ufo/glyphs/O_macron.glif new file mode 100644 index 00000000..1554f7c6 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/O_macron.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+macron.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/O_mega.glif b/sources/FixelText-ExtraLight.ufo/glyphs/O_mega.glif new file mode 100644 index 00000000..5276c15b --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/O_mega.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O+10 + com.fontlab.metricsRight + O+10 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/O_megaB_road-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/O_megaB_road-cy.glif new file mode 100644 index 00000000..32fd94c8 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/O_megaB_road-cy.glif @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O+10 + com.fontlab.metricsRight + O+10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/O_megacyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/O_megacyr.glif new file mode 100644 index 00000000..69a0ea38 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/O_megacyr.glif @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O+10 + com.fontlab.metricsRight + O+10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/O_megaroundcyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/O_megaroundcyr.glif new file mode 100644 index 00000000..4dbf7a74 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/O_megaroundcyr.glif @@ -0,0 +1,81 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/O_megatitlocyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/O_megatitlocyr.glif new file mode 100644 index 00000000..163f1ad1 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/O_megatitlocyr.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O+10 + com.fontlab.metricsRight + O+10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/O_slash.glif b/sources/FixelText-ExtraLight.ufo/glyphs/O_slash.glif new file mode 100644 index 00000000..4372b818 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/O_slash.glif @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/O_slashacute.glif b/sources/FixelText-ExtraLight.ufo/glyphs/O_slashacute.glif new file mode 100644 index 00000000..ef6e0863 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/O_slashacute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Oslash+acute.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/O_tcyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/O_tcyr.glif new file mode 100644 index 00000000..0a9195df --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/O_tcyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Omegacyr+uni2DEE.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/O_tilde.glif b/sources/FixelText-ExtraLight.ufo/glyphs/O_tilde.glif new file mode 100644 index 00000000..d1476bba --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/O_tilde.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+tilde.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/P_.glif b/sources/FixelText-ExtraLight.ufo/glyphs/P_.glif new file mode 100644 index 00000000..a24d689e --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/P_.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/P_alochkacyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/P_alochkacyr.glif new file mode 100644 index 00000000..571e2d4f --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/P_alochkacyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/P_e-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/P_e-cy.glif new file mode 100644 index 00000000..dc8134ea --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/P_e-cy.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/P_ehookcyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/P_ehookcyr.glif new file mode 100644 index 00000000..9db03e52 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/P_ehookcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + П + com.fontlab.metricsRight + Shhacyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/P_etailcyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/P_etailcyr.glif new file mode 100644 index 00000000..79cb4978 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/P_etailcyr.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/P_sicyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/P_sicyr.glif new file mode 100644 index 00000000..04dcd305 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/P_sicyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + U-20 + com.fontlab.metricsRight + U-20 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/Q_.glif b/sources/FixelText-ExtraLight.ufo/glyphs/Q_.glif new file mode 100644 index 00000000..ca6062e3 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/Q_.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/Q_.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/Q_.ss01.glif new file mode 100644 index 00000000..7ad49a6c --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/Q_.ss01.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/Q_acyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/Q_acyr.glif new file mode 100644 index 00000000..8c62c2aa --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/Q_acyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Q + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/R_.glif b/sources/FixelText-ExtraLight.ufo/glyphs/R_.glif new file mode 100644 index 00000000..3f32ca9f --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/R_.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/R_acute.glif b/sources/FixelText-ExtraLight.ufo/glyphs/R_acute.glif new file mode 100644 index 00000000..b6829479 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/R_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + R+acute.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/R_caron.glif b/sources/FixelText-ExtraLight.ufo/glyphs/R_caron.glif new file mode 100644 index 00000000..60c3f1da --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/R_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + R+caron.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/R_commaaccent.glif b/sources/FixelText-ExtraLight.ufo/glyphs/R_commaaccent.glif new file mode 100644 index 00000000..0157bc0b --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/R_commaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + R+commaaccentcomb + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/R_eversedzecyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/R_eversedzecyr.glif new file mode 100644 index 00000000..3b690775 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/R_eversedzecyr.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + + com.fontlab.metricsRight + + com.fontlab.recipe + З + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/R_hacyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/R_hacyr.glif new file mode 100644 index 00000000..b1617ff1 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/R_hacyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + P + com.fontlab.metricsRight + X + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/S_.glif b/sources/FixelText-ExtraLight.ufo/glyphs/S_.glif new file mode 100644 index 00000000..0495211f --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/S_.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/S_acute.glif b/sources/FixelText-ExtraLight.ufo/glyphs/S_acute.glif new file mode 100644 index 00000000..e64b8257 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/S_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + S+acute.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/S_caron.glif b/sources/FixelText-ExtraLight.ufo/glyphs/S_caron.glif new file mode 100644 index 00000000..f0c9bc2a --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/S_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + S+caron.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/S_cedilla.glif b/sources/FixelText-ExtraLight.ufo/glyphs/S_cedilla.glif new file mode 100644 index 00000000..6d0cf86e --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/S_cedilla.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + S+cedilla + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/S_chwa.glif b/sources/FixelText-ExtraLight.ufo/glyphs/S_chwa.glif new file mode 100644 index 00000000..1070b37a --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/S_chwa.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Schwacyr + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/S_chwacyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/S_chwacyr.glif new file mode 100644 index 00000000..d75e2bf3 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/S_chwacyr.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O-10 + com.fontlab.metricsRight + O + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/S_chwadieresiscyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/S_chwadieresiscyr.glif new file mode 100644 index 00000000..945082e8 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/S_chwadieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Schwacyr+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/S_circumflex.glif b/sources/FixelText-ExtraLight.ufo/glyphs/S_circumflex.glif new file mode 100644 index 00000000..5644d28f --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/S_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + S+circumflex.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/S_commaaccent.glif b/sources/FixelText-ExtraLight.ufo/glyphs/S_commaaccent.glif new file mode 100644 index 00000000..3f3077c8 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/S_commaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + S+commaaccentcomb + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/S_emisoftcyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/S_emisoftcyr.glif new file mode 100644 index 00000000..66c890ad --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/S_emisoftcyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Yat + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/S_ha-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/S_ha-cy.glif new file mode 100644 index 00000000..b58f4889 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/S_ha-cy.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/S_hcha-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/S_hcha-cy.glif new file mode 100644 index 00000000..90816dbc --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/S_hcha-cy.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Д + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/S_hhacyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/S_hhacyr.glif new file mode 100644 index 00000000..77b5bf69 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/S_hhacyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.metricsLeft + Н + com.fontlab.metricsRight + Tshecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/S_hhatailcyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/S_hhatailcyr.glif new file mode 100644 index 00000000..df5875c7 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/S_hhatailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/S_hwe-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/S_hwe-cy.glif new file mode 100644 index 00000000..b484c206 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/S_hwe-cy.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Щ + com.fontlab.metricsRight + Щ-20 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/S_jekomicyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/S_jekomicyr.glif new file mode 100644 index 00000000..4e2c2373 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/S_jekomicyr.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + |Schwa + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/S_oftsign-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/S_oftsign-cy.glif new file mode 100644 index 00000000..3d60292f --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/S_oftsign-cy.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + P + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/T_.glif b/sources/FixelText-ExtraLight.ufo/glyphs/T_.glif new file mode 100644 index 00000000..72eaf1f5 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/T_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/T_bar.glif b/sources/FixelText-ExtraLight.ufo/glyphs/T_bar.glif new file mode 100644 index 00000000..e3c38538 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/T_bar.glif @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/T_caron.glif b/sources/FixelText-ExtraLight.ufo/glyphs/T_caron.glif new file mode 100644 index 00000000..0e0b2180 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/T_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + T+caron.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/T_cedilla.glif b/sources/FixelText-ExtraLight.ufo/glyphs/T_cedilla.glif new file mode 100644 index 00000000..64cbbd1d --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/T_cedilla.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + T+cedilla + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/T_che-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/T_che-cy.glif new file mode 100644 index 00000000..393fc77a --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/T_che-cy.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Tetsecyr-20 + com.fontlab.metricsRight + Ч + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/T_commaaccent.glif b/sources/FixelText-ExtraLight.ufo/glyphs/T_commaaccent.glif new file mode 100644 index 00000000..4130da56 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/T_commaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + T+commaaccentcomb + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/T_e-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/T_e-cy.glif new file mode 100644 index 00000000..110f47c1 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/T_e-cy.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + com.fontlab.recipe + T + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/T_eW_ithM_iddleH_ook-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/T_eW_ithM_iddleH_ook-cy.glif new file mode 100644 index 00000000..14b2676b --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/T_eW_ithM_iddleH_ook-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Djecyr + com.fontlab.metricsRight + Gehookcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/T_etailcyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/T_etailcyr.glif new file mode 100644 index 00000000..743f3fd6 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/T_etailcyr.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/T_etsecyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/T_etsecyr.glif new file mode 100644 index 00000000..1a4084ac --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/T_etsecyr.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Tshecyr + com.fontlab.metricsRight + Ц + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/T_horn.glif b/sources/FixelText-ExtraLight.ufo/glyphs/T_horn.glif new file mode 100644 index 00000000..062e86ad --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/T_horn.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + P + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/T_jekomicyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/T_jekomicyr.glif new file mode 100644 index 00000000..5a029f5b --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/T_jekomicyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + Njekomicyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/T_se-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/T_se-cy.glif new file mode 100644 index 00000000..ef9b1bac --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/T_se-cy.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Д + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/T_seR_eversed-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/T_seR_eversed-cy.glif new file mode 100644 index 00000000..9401496d --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/T_seR_eversed-cy.glif @@ -0,0 +1,20 @@ + + + + + + + + + + com.fontlab.metricsLeft + + com.fontlab.metricsRight + H + com.fontlab.recipe + Ц + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/T_shecyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/T_shecyr.glif new file mode 100644 index 00000000..c0e0cfab --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/T_shecyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + n + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/T_sse-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/T_sse-cy.glif new file mode 100644 index 00000000..4c24e710 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/T_sse-cy.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + T + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/T_swe-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/T_swe-cy.glif new file mode 100644 index 00000000..ccc1e5a0 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/T_swe-cy.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Shwe-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/T_we-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/T_we-cy.glif new file mode 100644 index 00000000..c52942ca --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/T_we-cy.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + T + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/U_-cy.accented.glif b/sources/FixelText-ExtraLight.ufo/glyphs/U_-cy.accented.glif new file mode 100644 index 00000000..0b0abbb9 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/U_-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + У+acute.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/U_-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/U_-cy.glif new file mode 100644 index 00000000..60f3c5ec --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/U_-cy.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Y+10 + com.fontlab.metricsRight + Y+5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/U_-cy.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/U_-cy.ss01.glif new file mode 100644 index 00000000..4a36ddcc --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/U_-cy.ss01.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/U_.glif b/sources/FixelText-ExtraLight.ufo/glyphs/U_.glif new file mode 100644 index 00000000..f91dceb2 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/U_.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H-10 + com.fontlab.metricsRight + H-10 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/U_acute.glif b/sources/FixelText-ExtraLight.ufo/glyphs/U_acute.glif new file mode 100644 index 00000000..997c27cd --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/U_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+acute.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/U_acutedblcyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/U_acutedblcyr.glif new file mode 100644 index 00000000..812a6c0b --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/U_acutedblcyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U-cy+hungarumlaut.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/U_breve.glif b/sources/FixelText-ExtraLight.ufo/glyphs/U_breve.glif new file mode 100644 index 00000000..024dfe6b --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/U_breve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+breve.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/U_circumflex.glif b/sources/FixelText-ExtraLight.ufo/glyphs/U_circumflex.glif new file mode 100644 index 00000000..ce49502c --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/U_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+circumflex.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/U_dieresis.glif b/sources/FixelText-ExtraLight.ufo/glyphs/U_dieresis.glif new file mode 100644 index 00000000..16f950e5 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/U_dieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+dieresis.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/U_dieresiscyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/U_dieresiscyr.glif new file mode 100644 index 00000000..cd36f3e6 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/U_dieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/U_grave.glif b/sources/FixelText-ExtraLight.ufo/glyphs/U_grave.glif new file mode 100644 index 00000000..6df41980 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/U_grave.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+grave.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/U_hungarumlaut.glif b/sources/FixelText-ExtraLight.ufo/glyphs/U_hungarumlaut.glif new file mode 100644 index 00000000..f9db8735 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/U_hungarumlaut.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+hungarumlaut.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/U_kM_onograph-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/U_kM_onograph-cy.glif new file mode 100644 index 00000000..930ad028 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/U_kM_onograph-cy.glif @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/U_kcyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/U_kcyr.glif new file mode 100644 index 00000000..84896640 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/U_kcyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + y + com.fontlab.recipe + О_у + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/U_macron.glif b/sources/FixelText-ExtraLight.ufo/glyphs/U_macron.glif new file mode 100644 index 00000000..aa7ee23b --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/U_macron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+macron.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/U_macroncyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/U_macroncyr.glif new file mode 100644 index 00000000..e0e2e965 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/U_macroncyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U-cy+macron.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/U_ogonek.glif b/sources/FixelText-ExtraLight.ufo/glyphs/U_ogonek.glif new file mode 100644 index 00000000..093d2328 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/U_ogonek.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + U+ogonek + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/U_ring.glif b/sources/FixelText-ExtraLight.ufo/glyphs/U_ring.glif new file mode 100644 index 00000000..11ab5dc2 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/U_ring.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+ring.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/U_short-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/U_short-cy.glif new file mode 100644 index 00000000..4f930c88 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/U_short-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ucyr+breve.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/U_short-cy.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/U_short-cy.ss01.glif new file mode 100644 index 00000000..a3009ea1 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/U_short-cy.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ucyr.ss01+breve.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/U_straightcyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/U_straightcyr.glif new file mode 100644 index 00000000..7b778edc --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/U_straightcyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsRight + Y + com.fontlab.recipe + Y + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/U_straightstrokecyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/U_straightstrokecyr.glif new file mode 100644 index 00000000..db414b93 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/U_straightstrokecyr.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/U_tilde.glif b/sources/FixelText-ExtraLight.ufo/glyphs/U_tilde.glif new file mode 100644 index 00000000..0fde895a --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/U_tilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+tilde.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/V_.glif b/sources/FixelText-ExtraLight.ufo/glyphs/V_.glif new file mode 100644 index 00000000..e595dc98 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/V_.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/V_.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/V_.ss01.glif new file mode 100644 index 00000000..e63b8bb4 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/V_.ss01.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/V_e-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/V_e-cy.glif new file mode 100644 index 00000000..160b4024 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/V_e-cy.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + B + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/W_.glif b/sources/FixelText-ExtraLight.ufo/glyphs/W_.glif new file mode 100644 index 00000000..5cc851df --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/W_.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/W_.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/W_.ss01.glif new file mode 100644 index 00000000..1c38cf0a --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/W_.ss01.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |A + com.fontlab.metricsRight + |A + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/W_acute.glif b/sources/FixelText-ExtraLight.ufo/glyphs/W_acute.glif new file mode 100644 index 00000000..4d05ee76 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/W_acute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W+acute.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/W_acute.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/W_acute.ss01.glif new file mode 100644 index 00000000..080e58ed --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/W_acute.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W.ss01+acute.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/W_circumflex.glif b/sources/FixelText-ExtraLight.ufo/glyphs/W_circumflex.glif new file mode 100644 index 00000000..ce7198d2 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/W_circumflex.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W+circumflex.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/W_circumflex.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/W_circumflex.ss01.glif new file mode 100644 index 00000000..a0f3123d --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/W_circumflex.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W.ss01+circumflex.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/W_dieresis.glif b/sources/FixelText-ExtraLight.ufo/glyphs/W_dieresis.glif new file mode 100644 index 00000000..a6a3695a --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/W_dieresis.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + W+dieresis.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/W_dieresis.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/W_dieresis.ss01.glif new file mode 100644 index 00000000..4d0b351f --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/W_dieresis.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W.ss01+dieresis.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/W_ecyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/W_ecyr.glif new file mode 100644 index 00000000..6f7a7c5b --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/W_ecyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/W_grave.glif b/sources/FixelText-ExtraLight.ufo/glyphs/W_grave.glif new file mode 100644 index 00000000..18484718 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/W_grave.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W+grave.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/W_grave.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/W_grave.ss01.glif new file mode 100644 index 00000000..c8a847e7 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/W_grave.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W.ss01+grave.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/X_.glif b/sources/FixelText-ExtraLight.ufo/glyphs/X_.glif new file mode 100644 index 00000000..40c67ad9 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/X_.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/X_.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/X_.ss01.glif new file mode 100644 index 00000000..4b516d09 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/X_.ss01.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/X_atailcyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/X_atailcyr.glif new file mode 100644 index 00000000..3501d04c --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/X_atailcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + X + com.fontlab.metricsRight + Katailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/Y_.glif b/sources/FixelText-ExtraLight.ufo/glyphs/Y_.glif new file mode 100644 index 00000000..32077dc7 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/Y_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/Y_.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/Y_.ss01.glif new file mode 100644 index 00000000..97f60275 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/Y_.ss01.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/Y_acute.glif b/sources/FixelText-ExtraLight.ufo/glyphs/Y_acute.glif new file mode 100644 index 00000000..a9a010a6 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/Y_acute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y+acute.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/Y_acute.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/Y_acute.ss01.glif new file mode 100644 index 00000000..e4942810 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/Y_acute.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y.ss01+acute.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/Y_aecyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/Y_aecyr.glif new file mode 100644 index 00000000..527a7880 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/Y_aecyr.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Я + com.fontlab.metricsRight + E + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/Y_atI_otified-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/Y_atI_otified-cy.glif new file mode 100644 index 00000000..1810849c --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/Y_atI_otified-cy.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + com.fontlab.metricsRight + Yatcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/Y_atcyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/Y_atcyr.glif new file mode 100644 index 00000000..88dafc9c --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/Y_atcyr.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Т + com.fontlab.metricsRight + Ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/Y_circumflex.glif b/sources/FixelText-ExtraLight.ufo/glyphs/Y_circumflex.glif new file mode 100644 index 00000000..5191f257 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/Y_circumflex.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y+circumflex.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/Y_circumflex.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/Y_circumflex.ss01.glif new file mode 100644 index 00000000..6f1d07a0 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/Y_circumflex.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y.ss01+circumflex.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/Y_dieresis.glif b/sources/FixelText-ExtraLight.ufo/glyphs/Y_dieresis.glif new file mode 100644 index 00000000..7acc7502 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/Y_dieresis.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y+dieresis.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/Y_dieresis.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/Y_dieresis.ss01.glif new file mode 100644 index 00000000..035b6680 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/Y_dieresis.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y.ss01+dieresis.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/Y_erN_eutral-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/Y_erN_eutral-cy.glif new file mode 100644 index 00000000..1d7f3d56 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/Y_erN_eutral-cy.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Hardsign-cy + com.fontlab.metricsRight + Ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/Y_eru-cy.accented.glif b/sources/FixelText-ExtraLight.ufo/glyphs/Y_eru-cy.accented.glif new file mode 100644 index 00000000..e6816071 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/Y_eru-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ы+acute.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/Y_eru-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/Y_eru-cy.glif new file mode 100644 index 00000000..42101059 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/Y_eru-cy.glif @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/Y_eru-cymacron.glif b/sources/FixelText-ExtraLight.ufo/glyphs/Y_eru-cymacron.glif new file mode 100644 index 00000000..1dead985 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/Y_eru-cymacron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ы+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/Y_eruB_ackY_er-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/Y_eruB_ackY_er-cy.glif new file mode 100644 index 00000000..cae0c574 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/Y_eruB_ackY_er-cy.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Hardsign + com.fontlab.metricsRight + I + com.fontlab.recipe + Hardsign-cy_I + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/Y_i-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/Y_i-cy.glif new file mode 100644 index 00000000..5972648e --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/Y_i-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Idieresis + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/Y_longdieresiscyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/Y_longdieresiscyr.glif new file mode 100644 index 00000000..af1ec507 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/Y_longdieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Yeru-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/Y_n-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/Y_n-cy.glif new file mode 100644 index 00000000..4cd5c6dc --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/Y_n-cy.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |Izhitsa + com.fontlab.metricsRight + |Izhitsa + com.fontlab.recipe + Izhitsa + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/Y_uR_eversed-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/Y_uR_eversed-cy.glif new file mode 100644 index 00000000..746b4b5d --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/Y_uR_eversed-cy.glif @@ -0,0 +1,20 @@ + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + H + com.fontlab.recipe + Ю + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/Y_usB_lended-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/Y_usB_lended-cy.glif new file mode 100644 index 00000000..64e6c027 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/Y_usB_lended-cy.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Yusbigcyr + com.fontlab.metricsRight + Yusbigcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/Y_usC_losedlittle-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/Y_usC_losedlittle-cy.glif new file mode 100644 index 00000000..d5446097 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/Y_usC_losedlittle-cy.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + A + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/Y_usbigcyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/Y_usbigcyr.glif new file mode 100644 index 00000000..7a713c19 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/Y_usbigcyr.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ж + com.fontlab.metricsRight + Ж + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/Y_usbigiotifiedcyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/Y_usbigiotifiedcyr.glif new file mode 100644 index 00000000..de0a2b6c --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/Y_usbigiotifiedcyr.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + Ж + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/Y_usiotifiedC_losedL_ittle-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/Y_usiotifiedC_losedL_ittle-cy.glif new file mode 100644 index 00000000..8f2d7126 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/Y_usiotifiedC_losedL_ittle-cy.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + A + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/Y_uslittlecyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/Y_uslittlecyr.glif new file mode 100644 index 00000000..6cf1f3ab --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/Y_uslittlecyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + А-5 + com.fontlab.metricsRight + А-5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/Y_uslittleiotifiedcyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/Y_uslittleiotifiedcyr.glif new file mode 100644 index 00000000..1b62d145 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/Y_uslittleiotifiedcyr.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + А-5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/Z_.glif b/sources/FixelText-ExtraLight.ufo/glyphs/Z_.glif new file mode 100644 index 00000000..4147c199 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/Z_.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/Z_.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/Z_.ss01.glif new file mode 100644 index 00000000..3e8db2cd --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/Z_.ss01.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/Z_acute.glif b/sources/FixelText-ExtraLight.ufo/glyphs/Z_acute.glif new file mode 100644 index 00000000..59e86254 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/Z_acute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Z+acute.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/Z_acute.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/Z_acute.ss01.glif new file mode 100644 index 00000000..264f7122 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/Z_acute.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Z.ss01+acute.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/Z_caron.glif b/sources/FixelText-ExtraLight.ufo/glyphs/Z_caron.glif new file mode 100644 index 00000000..d340d7bc --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/Z_caron.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Z+caron.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/Z_caron.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/Z_caron.ss01.glif new file mode 100644 index 00000000..1e0944a0 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/Z_caron.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Z.ss01+caron.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/Z_dotaccent.glif b/sources/FixelText-ExtraLight.ufo/glyphs/Z_dotaccent.glif new file mode 100644 index 00000000..3b451d59 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/Z_dotaccent.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Z+dotaccent.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/Z_dotaccent.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/Z_dotaccent.ss01.glif new file mode 100644 index 00000000..8e4b808d --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/Z_dotaccent.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Z.ss01+dotaccent.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/Z_e-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/Z_e-cy.glif new file mode 100644 index 00000000..a041c2c3 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/Z_e-cy.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |C + com.fontlab.metricsRight + B + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/Z_edieresiscyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/Z_edieresiscyr.glif new file mode 100644 index 00000000..146dc4d1 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/Z_edieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ze-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/Z_emlya-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/Z_emlya-cy.glif new file mode 100644 index 00000000..f687b15a --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/Z_emlya-cy.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Z-10 + com.fontlab.metricsRight + Z + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/Z_etailcyr.B_S_H_.glif b/sources/FixelText-ExtraLight.ufo/glyphs/Z_etailcyr.B_S_H_.glif new file mode 100644 index 00000000..5807b3ad --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/Z_etailcyr.B_S_H_.glif @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + З + com.fontlab.metricsRight + З + com.fontlab.recipe + Zetailcyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/Z_etailcyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/Z_etailcyr.glif new file mode 100644 index 00000000..a86a038c --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/Z_etailcyr.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + З + com.fontlab.metricsRight + З + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/Z_he-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/Z_he-cy.glif new file mode 100644 index 00000000..1f6271bf --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/Z_he-cy.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |K + com.fontlab.metricsRight + K + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/Z_he-cy.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/Z_he-cy.ss01.glif new file mode 100644 index 00000000..6d78ee3f --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/Z_he-cy.ss01.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |K + com.fontlab.metricsRight + K + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/Z_hebrevecyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/Z_hebrevecyr.glif new file mode 100644 index 00000000..e7460214 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/Z_hebrevecyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Zhe-cy+breve.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/Z_hedieresiscyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/Z_hedieresiscyr.glif new file mode 100644 index 00000000..0b1c2fcd --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/Z_hedieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Zhe-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/Z_hetailcyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/Z_hetailcyr.glif new file mode 100644 index 00000000..74ca485a --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/Z_hetailcyr.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ж + com.fontlab.metricsRight + Katailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/Z_hwe-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/Z_hwe-cy.glif new file mode 100644 index 00000000..6ea20448 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/Z_hwe-cy.glif @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + З + com.fontlab.metricsRight + Ж + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/Z_jekomicyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/Z_jekomicyr.glif new file mode 100644 index 00000000..dc75f036 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/Z_jekomicyr.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Dzjekomicyr + com.fontlab.metricsRight + Njekomicyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/_notdef.glif b/sources/FixelText-ExtraLight.ufo/glyphs/_notdef.glif new file mode 100644 index 00000000..7261060b --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/_notdef.glif @@ -0,0 +1,178 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + =55 + com.schriftgestaltung.Glyphs.rightMetricsKey + =55 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/_perc-circule.glif b/sources/FixelText-ExtraLight.ufo/glyphs/_perc-circule.glif new file mode 100644 index 00000000..0f77e7f6 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/_perc-circule.glif @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.schriftgestaltung.Glyphs.Export + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/a-cy.accented.glif b/sources/FixelText-ExtraLight.ufo/glyphs/a-cy.accented.glif new file mode 100644 index 00000000..68621b30 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/a-cy.accented.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+acute + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/a-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/a-cy.glif new file mode 100644 index 00000000..adab61d2 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/a-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/a-cy.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/a-cy.ss01.glif new file mode 100644 index 00000000..c8dd19ff --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/a-cy.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/a.glif b/sources/FixelText-ExtraLight.ufo/glyphs/a.glif new file mode 100644 index 00000000..cbe47580 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/a.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + n-10 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/a.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/a.ss01.glif new file mode 100644 index 00000000..2b5e74a5 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/a.ss01.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/aacute.glif b/sources/FixelText-ExtraLight.ufo/glyphs/aacute.glif new file mode 100644 index 00000000..608fa1a8 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/aacute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+acute + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/aacute.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/aacute.ss01.glif new file mode 100644 index 00000000..e6c63737 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/aacute.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+acute + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/abreve.glif b/sources/FixelText-ExtraLight.ufo/glyphs/abreve.glif new file mode 100644 index 00000000..1ad52da4 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/abreve.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+breve + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/abreve.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/abreve.ss01.glif new file mode 100644 index 00000000..4929e5fb --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/abreve.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+breve + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/abrevecyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/abrevecyr.glif new file mode 100644 index 00000000..e5f4adc0 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/abrevecyr.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+breve + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/acaron.glif b/sources/FixelText-ExtraLight.ufo/glyphs/acaron.glif new file mode 100644 index 00000000..718683c4 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/acaron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+caron + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/acircumflex.glif b/sources/FixelText-ExtraLight.ufo/glyphs/acircumflex.glif new file mode 100644 index 00000000..3aaadfd5 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/acircumflex.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+circumflex + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/acircumflex.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/acircumflex.ss01.glif new file mode 100644 index 00000000..a39fc4bf --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/acircumflex.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+circumflex + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/acute.case.glif b/sources/FixelText-ExtraLight.ufo/glyphs/acute.case.glif new file mode 100644 index 00000000..2ec7992d --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/acute.case.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/acute.glif b/sources/FixelText-ExtraLight.ufo/glyphs/acute.glif new file mode 100644 index 00000000..38260a77 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/acute.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/adieresis.glif b/sources/FixelText-ExtraLight.ufo/glyphs/adieresis.glif new file mode 100644 index 00000000..5819303f --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/adieresis.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+dieresis + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/adieresis.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/adieresis.ss01.glif new file mode 100644 index 00000000..666c0c0d --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/adieresis.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+dieresis + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/adieresiscyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/adieresiscyr.glif new file mode 100644 index 00000000..3d76903a --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/adieresiscyr.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/ae.glif b/sources/FixelText-ExtraLight.ufo/glyphs/ae.glif new file mode 100644 index 00000000..83f12332 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/ae.glif @@ -0,0 +1,101 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + a + com.fontlab.metricsRight + e + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/ae.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/ae.ss01.glif new file mode 100644 index 00000000..ab2aea0b --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/ae.ss01.glif @@ -0,0 +1,96 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + a + com.fontlab.metricsRight + e.ss01 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/aeacute.glif b/sources/FixelText-ExtraLight.ufo/glyphs/aeacute.glif new file mode 100644 index 00000000..8720c458 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/aeacute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ae+acute + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/agrave.glif b/sources/FixelText-ExtraLight.ufo/glyphs/agrave.glif new file mode 100644 index 00000000..97bc2997 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/agrave.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+grave + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/agrave.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/agrave.ss01.glif new file mode 100644 index 00000000..ad3e36bc --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/agrave.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+grave + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/aiecyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/aiecyr.glif new file mode 100644 index 00000000..e364b7cf --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/aiecyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ae + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/amacron.glif b/sources/FixelText-ExtraLight.ufo/glyphs/amacron.glif new file mode 100644 index 00000000..660a1534 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/amacron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+macron + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/amacron.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/amacron.ss01.glif new file mode 100644 index 00000000..103e96fe --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/amacron.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+macron + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/ampersand.glif b/sources/FixelText-ExtraLight.ufo/glyphs/ampersand.glif new file mode 100644 index 00000000..6f9b97d6 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/ampersand.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/aogonek.glif b/sources/FixelText-ExtraLight.ufo/glyphs/aogonek.glif new file mode 100644 index 00000000..badda08d --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/aogonek.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+ogonek + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/aogonek.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/aogonek.ss01.glif new file mode 100644 index 00000000..67ebf2c1 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/aogonek.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+ogonek + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/apostrophemod.glif b/sources/FixelText-ExtraLight.ufo/glyphs/apostrophemod.glif new file mode 100644 index 00000000..9b716dcf --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/apostrophemod.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + apostrophe + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/approxequal.glif b/sources/FixelText-ExtraLight.ufo/glyphs/approxequal.glif new file mode 100644 index 00000000..c629a0c3 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/approxequal.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/aring.glif b/sources/FixelText-ExtraLight.ufo/glyphs/aring.glif new file mode 100644 index 00000000..290294a4 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/aring.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+ring + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/aring.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/aring.ss01.glif new file mode 100644 index 00000000..da1c1b0f --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/aring.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+ring + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/arrowdown.case.glif b/sources/FixelText-ExtraLight.ufo/glyphs/arrowdown.case.glif new file mode 100644 index 00000000..97414f39 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/arrowdown.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + arrowup + com.fontlab.metricsRight + arrowup + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/arrowdown.glif b/sources/FixelText-ExtraLight.ufo/glyphs/arrowdown.glif new file mode 100644 index 00000000..b856dac8 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/arrowdown.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + arrowup + com.fontlab.metricsRight + arrowup + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/arrowdown.ss01.case.glif b/sources/FixelText-ExtraLight.ufo/glyphs/arrowdown.ss01.case.glif new file mode 100644 index 00000000..2816a051 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/arrowdown.ss01.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + arrowup + com.fontlab.metricsRight + arrowup + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/arrowdown.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/arrowdown.ss01.glif new file mode 100644 index 00000000..5e28d7d2 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/arrowdown.ss01.glif @@ -0,0 +1,15 @@ + + + + + + + + + com.fontlab.metricsLeft + arrowup + com.fontlab.metricsRight + arrowup + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/arrowleft.case.glif b/sources/FixelText-ExtraLight.ufo/glyphs/arrowleft.case.glif new file mode 100644 index 00000000..7ef36ed5 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/arrowleft.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + arrowleft + com.fontlab.metricsRight + arrowleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/arrowleft.glif b/sources/FixelText-ExtraLight.ufo/glyphs/arrowleft.glif new file mode 100644 index 00000000..1c62f3b7 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/arrowleft.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/arrowleft.ss01.case.glif b/sources/FixelText-ExtraLight.ufo/glyphs/arrowleft.ss01.case.glif new file mode 100644 index 00000000..f9f5ae26 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/arrowleft.ss01.case.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + arrowleft + com.fontlab.metricsRight + arrowleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/arrowleft.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/arrowleft.ss01.glif new file mode 100644 index 00000000..f2f6a405 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/arrowleft.ss01.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + arrowleft + com.fontlab.metricsRight + arrowleft + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/arrowright.case.glif b/sources/FixelText-ExtraLight.ufo/glyphs/arrowright.case.glif new file mode 100644 index 00000000..b1fe4527 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/arrowright.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |arrowleft + com.fontlab.metricsRight + |arrowleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/arrowright.glif b/sources/FixelText-ExtraLight.ufo/glyphs/arrowright.glif new file mode 100644 index 00000000..7f7cb884 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/arrowright.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + |arrowleft + com.fontlab.metricsRight + |arrowleft + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/arrowright.ss01.case.glif b/sources/FixelText-ExtraLight.ufo/glyphs/arrowright.ss01.case.glif new file mode 100644 index 00000000..8c1c8039 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/arrowright.ss01.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |arrowleft + com.fontlab.metricsRight + |arrowleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/arrowright.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/arrowright.ss01.glif new file mode 100644 index 00000000..5d2b9793 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/arrowright.ss01.glif @@ -0,0 +1,15 @@ + + + + + + + + + com.fontlab.metricsLeft + |arrowleft + com.fontlab.metricsRight + |arrowleft + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/arrowup.case.glif b/sources/FixelText-ExtraLight.ufo/glyphs/arrowup.case.glif new file mode 100644 index 00000000..9cbcbc9c --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/arrowup.case.glif @@ -0,0 +1,15 @@ + + + + + + + + + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/arrowup.glif b/sources/FixelText-ExtraLight.ufo/glyphs/arrowup.glif new file mode 100644 index 00000000..51d733f6 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/arrowup.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + l() + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/arrowup.ss01.case.glif b/sources/FixelText-ExtraLight.ufo/glyphs/arrowup.ss01.case.glif new file mode 100644 index 00000000..6b6c7810 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/arrowup.ss01.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + arrowup + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/arrowup.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/arrowup.ss01.glif new file mode 100644 index 00000000..3eb5336d --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/arrowup.ss01.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + arrowup + com.fontlab.metricsRight + l() + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/asciicircum.glif b/sources/FixelText-ExtraLight.ufo/glyphs/asciicircum.glif new file mode 100644 index 00000000..ab8907f9 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/asciicircum.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/asciitilde.glif b/sources/FixelText-ExtraLight.ufo/glyphs/asciitilde.glif new file mode 100644 index 00000000..3f21cf99 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/asciitilde.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/asterisk.glif b/sources/FixelText-ExtraLight.ufo/glyphs/asterisk.glif new file mode 100644 index 00000000..ea836ad5 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/asterisk.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/at.case.glif b/sources/FixelText-ExtraLight.ufo/glyphs/at.case.glif new file mode 100644 index 00000000..e985ea84 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/at.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/at.glif b/sources/FixelText-ExtraLight.ufo/glyphs/at.glif new file mode 100644 index 00000000..887e5b9a --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/at.glif @@ -0,0 +1,92 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/atilde.glif b/sources/FixelText-ExtraLight.ufo/glyphs/atilde.glif new file mode 100644 index 00000000..2f2a467b --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/atilde.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+tilde + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/atilde.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/atilde.ss01.glif new file mode 100644 index 00000000..1e23eb14 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/atilde.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+tilde + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/b.glif b/sources/FixelText-ExtraLight.ufo/glyphs/b.glif new file mode 100644 index 00000000..a278fa96 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/b.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/b.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/b.ss01.glif new file mode 100644 index 00000000..fa618fff --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/b.ss01.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/backslash.case.glif b/sources/FixelText-ExtraLight.ufo/glyphs/backslash.case.glif new file mode 100644 index 00000000..93edee70 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/backslash.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + backslash + com.fontlab.metricsRight + backslash + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/backslash.glif b/sources/FixelText-ExtraLight.ufo/glyphs/backslash.glif new file mode 100644 index 00000000..36ae07dc --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/backslash.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/bar.case.glif b/sources/FixelText-ExtraLight.ufo/glyphs/bar.case.glif new file mode 100644 index 00000000..1e89908b --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/bar.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + H-10 + com.fontlab.metricsRight + H-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/bar.glif b/sources/FixelText-ExtraLight.ufo/glyphs/bar.glif new file mode 100644 index 00000000..86067d61 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/bar.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H-10 + com.fontlab.metricsRight + H-10 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/be-cy.S_R_B_.glif b/sources/FixelText-ExtraLight.ufo/glyphs/be-cy.S_R_B_.glif new file mode 100644 index 00000000..c0436794 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/be-cy.S_R_B_.glif @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/be-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/be-cy.glif new file mode 100644 index 00000000..1d97aaaf --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/be-cy.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/bishopblack.glif b/sources/FixelText-ExtraLight.ufo/glyphs/bishopblack.glif new file mode 100644 index 00000000..1fa62b40 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/bishopblack.glif @@ -0,0 +1,241 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =10 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/bishopwhite.glif b/sources/FixelText-ExtraLight.ufo/glyphs/bishopwhite.glif new file mode 100644 index 00000000..7ccd6c14 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/bishopwhite.glif @@ -0,0 +1,331 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/braceleft.case.glif b/sources/FixelText-ExtraLight.ufo/glyphs/braceleft.case.glif new file mode 100644 index 00000000..0baf6ae5 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/braceleft.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |braceright.case + com.fontlab.metricsRight + |braceright.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/braceleft.glif b/sources/FixelText-ExtraLight.ufo/glyphs/braceleft.glif new file mode 100644 index 00000000..c40ecd93 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/braceleft.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/braceright.case.glif b/sources/FixelText-ExtraLight.ufo/glyphs/braceright.case.glif new file mode 100644 index 00000000..22e04fc6 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/braceright.case.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/braceright.glif b/sources/FixelText-ExtraLight.ufo/glyphs/braceright.glif new file mode 100644 index 00000000..4f1a1ccd --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/braceright.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/bracketangleleft.case.glif b/sources/FixelText-ExtraLight.ufo/glyphs/bracketangleleft.case.glif new file mode 100644 index 00000000..0e3bd4e2 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/bracketangleleft.case.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + parenleft.case + com.fontlab.metricsRight + parenleft.case + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/bracketangleleft.glif b/sources/FixelText-ExtraLight.ufo/glyphs/bracketangleleft.glif new file mode 100644 index 00000000..f5d8ae51 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/bracketangleleft.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + parenleft + com.fontlab.metricsRight + parenleft + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/bracketangleright.case.glif b/sources/FixelText-ExtraLight.ufo/glyphs/bracketangleright.case.glif new file mode 100644 index 00000000..a046a3ba --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/bracketangleright.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |bracketangleleft.case + com.fontlab.metricsRight + |bracketangleleft.case + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/bracketangleright.glif b/sources/FixelText-ExtraLight.ufo/glyphs/bracketangleright.glif new file mode 100644 index 00000000..e04a403a --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/bracketangleright.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.metricsLeft + |bracketangleleft + com.fontlab.metricsRight + |bracketangleleft + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/bracketleft.case.glif b/sources/FixelText-ExtraLight.ufo/glyphs/bracketleft.case.glif new file mode 100644 index 00000000..41b52f61 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/bracketleft.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |bracketright.case + com.fontlab.metricsRight + |bracketright.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/bracketleft.glif b/sources/FixelText-ExtraLight.ufo/glyphs/bracketleft.glif new file mode 100644 index 00000000..b2bc00c0 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/bracketleft.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/bracketright.case.glif b/sources/FixelText-ExtraLight.ufo/glyphs/bracketright.case.glif new file mode 100644 index 00000000..d912e91e --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/bracketright.case.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |bracketleft + com.fontlab.metricsRight + |bracketleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/bracketright.glif b/sources/FixelText-ExtraLight.ufo/glyphs/bracketright.glif new file mode 100644 index 00000000..81c3d351 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/bracketright.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |bracketleft + com.fontlab.metricsRight + |bracketleft + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/breve.case.glif b/sources/FixelText-ExtraLight.ufo/glyphs/breve.case.glif new file mode 100644 index 00000000..0b88c3eb --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/breve.case.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/breve.glif b/sources/FixelText-ExtraLight.ufo/glyphs/breve.glif new file mode 100644 index 00000000..15c36c88 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/breve.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/brokenbar.case.glif b/sources/FixelText-ExtraLight.ufo/glyphs/brokenbar.case.glif new file mode 100644 index 00000000..abfcc373 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/brokenbar.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + bar + com.fontlab.metricsRight + bar + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/brokenbar.glif b/sources/FixelText-ExtraLight.ufo/glyphs/brokenbar.glif new file mode 100644 index 00000000..23ef336e --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/brokenbar.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + bar + com.fontlab.metricsRight + bar + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/bullet.case.glif b/sources/FixelText-ExtraLight.ufo/glyphs/bullet.case.glif new file mode 100644 index 00000000..a2628ed2 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/bullet.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + period + com.fontlab.metricsRight + period + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/bullet.glif b/sources/FixelText-ExtraLight.ufo/glyphs/bullet.glif new file mode 100644 index 00000000..37f2369f --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/bullet.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + period + com.fontlab.metricsRight + period + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/c.glif b/sources/FixelText-ExtraLight.ufo/glyphs/c.glif new file mode 100644 index 00000000..0bfcb72e --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/c.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/cacute.glif b/sources/FixelText-ExtraLight.ufo/glyphs/cacute.glif new file mode 100644 index 00000000..47648f6e --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/cacute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+acute + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/caron.case.glif b/sources/FixelText-ExtraLight.ufo/glyphs/caron.case.glif new file mode 100644 index 00000000..99a4616a --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/caron.case.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/caron.glif b/sources/FixelText-ExtraLight.ufo/glyphs/caron.glif new file mode 100644 index 00000000..a271d4be --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/caron.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/caron.salt.glif b/sources/FixelText-ExtraLight.ufo/glyphs/caron.salt.glif new file mode 100644 index 00000000..a20c3a98 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/caron.salt.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/ccaron.glif b/sources/FixelText-ExtraLight.ufo/glyphs/ccaron.glif new file mode 100644 index 00000000..986fbe12 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/ccaron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+caron + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/ccedilla.glif b/sources/FixelText-ExtraLight.ufo/glyphs/ccedilla.glif new file mode 100644 index 00000000..1e620878 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/ccedilla.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+cedilla + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/cche-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/cche-cy.glif new file mode 100644 index 00000000..690a8ee4 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/cche-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ч + com.fontlab.metricsRight + ч + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/ccircumflex.glif b/sources/FixelText-ExtraLight.ufo/glyphs/ccircumflex.glif new file mode 100644 index 00000000..ef3487d8 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/ccircumflex.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+circumflex + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/cdotaccent.glif b/sources/FixelText-ExtraLight.ufo/glyphs/cdotaccent.glif new file mode 100644 index 00000000..0301a403 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/cdotaccent.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+dotaccent + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/cedilla.glif b/sources/FixelText-ExtraLight.ufo/glyphs/cedilla.glif new file mode 100644 index 00000000..a4fd5150 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/cedilla.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/cent.glif b/sources/FixelText-ExtraLight.ufo/glyphs/cent.glif new file mode 100644 index 00000000..2f88953a --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/cent.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + c + com.fontlab.metricsRight + c + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/che-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/che-cy.glif new file mode 100644 index 00000000..4e7d87fe --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/che-cy.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + u-10 + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/cheabkhcyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/cheabkhcyr.glif new file mode 100644 index 00000000..002b2f7b --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/cheabkhcyr.glif @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + e + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/cheabkhtailcyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/cheabkhtailcyr.glif new file mode 100644 index 00000000..69b2a2a0 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/cheabkhtailcyr.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + cheabkhcyr + com.fontlab.metricsRight + cheabkhcyr + com.fontlab.recipe + cheabkhcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/chedieresiscyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/chedieresiscyr.glif new file mode 100644 index 00000000..f5df4f76 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/chedieresiscyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + che-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/chekhakascyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/chekhakascyr.glif new file mode 100644 index 00000000..64583379 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/chekhakascyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ч + com.fontlab.metricsRight + н + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/chetailcyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/chetailcyr.glif new file mode 100644 index 00000000..412b361c --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/chetailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ч + com.fontlab.metricsRight + entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/chevertcyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/chevertcyr.glif new file mode 100644 index 00000000..45b8cbf5 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/chevertcyr.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ч + com.fontlab.metricsRight + н + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/circumflex.case.glif b/sources/FixelText-ExtraLight.ufo/glyphs/circumflex.case.glif new file mode 100644 index 00000000..c2eba276 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/circumflex.case.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/circumflex.glif b/sources/FixelText-ExtraLight.ufo/glyphs/circumflex.glif new file mode 100644 index 00000000..54094a84 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/circumflex.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/clubwhite.glif b/sources/FixelText-ExtraLight.ufo/glyphs/clubwhite.glif new file mode 100644 index 00000000..2dbac1dc --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/clubwhite.glif @@ -0,0 +1,155 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/colon.case.glif b/sources/FixelText-ExtraLight.ufo/glyphs/colon.case.glif new file mode 100644 index 00000000..896a15e1 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/colon.case.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/colon.glif b/sources/FixelText-ExtraLight.ufo/glyphs/colon.glif new file mode 100644 index 00000000..99940566 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/colon.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/colontriangularmod.glif b/sources/FixelText-ExtraLight.ufo/glyphs/colontriangularmod.glif new file mode 100644 index 00000000..56148069 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/colontriangularmod.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + colon + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/comma.glif b/sources/FixelText-ExtraLight.ufo/glyphs/comma.glif new file mode 100644 index 00000000..458b718b --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/comma.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/commaaccentcomb.glif b/sources/FixelText-ExtraLight.ufo/glyphs/commaaccentcomb.glif new file mode 100644 index 00000000..da4a3ecf --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/commaaccentcomb.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/commaaccentcomb.salt.glif b/sources/FixelText-ExtraLight.ufo/glyphs/commaaccentcomb.salt.glif new file mode 100644 index 00000000..572193cb --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/commaaccentcomb.salt.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/contents.plist b/sources/FixelText-ExtraLight.ufo/glyphs/contents.plist new file mode 100644 index 00000000..2830b2de --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/contents.plist @@ -0,0 +1,2352 @@ + + + + + .notdef + _notdef.glif + A + A_.glif + A-cy + A_-cy.glif + A-cy.accented + A_-cy.accented.glif + A-cy.ss01 + A_-cy.ss01.glif + A.ss01 + A_.ss01.glif + AE + A_E_.glif + AE.ss01 + A_E_.ss01.glif + AEacute + A_E_acute.glif + Aacute + A_acute.glif + Aacute.ss01 + A_acute.ss01.glif + Abreve + A_breve.glif + Abreve.ss01 + A_breve.ss01.glif + Abrevecyr + A_brevecyr.glif + Acaron + A_caron.glif + Acircumflex + A_circumflex.glif + Acircumflex.ss01 + A_circumflex.ss01.glif + Adieresis + A_dieresis.glif + Adieresis.ss01 + A_dieresis.ss01.glif + Adieresiscyr + A_dieresiscyr.glif + Agrave + A_grave.glif + Agrave.ss01 + A_grave.ss01.glif + Aiecyr + A_iecyr.glif + Amacron + A_macron.glif + Amacron.ss01 + A_macron.ss01.glif + Aogonek + A_ogonek.glif + Aogonek.ss01 + A_ogonek.ss01.glif + Aring + A_ring.glif + Aring.ss01 + A_ring.ss01.glif + Atilde + A_tilde.glif + Atilde.ss01 + A_tilde.ss01.glif + B + B_.glif + Be-cy + B_e-cy.glif + C + C_.glif + CR + C_R_.glif + Cacute + C_acute.glif + Ccaron + C_caron.glif + Ccedilla + C_cedilla.glif + Cche-cy + C_che-cy.glif + Ccircumflex + C_circumflex.glif + Cdotaccent + C_dotaccent.glif + Che-cy + C_he-cy.glif + Cheabkhcyr + C_heabkhcyr.glif + Cheabkhtailcyr + C_heabkhtailcyr.glif + Chedieresiscyr + C_hedieresiscyr.glif + Chekhakascyr + C_hekhakascyr.glif + Chetailcyr + C_hetailcyr.glif + Chevertcyr + C_hevertcyr.glif + CrossedO-cy + C_rossedO_-cy.glif + D + D_.glif + Dcaron + D_caron.glif + Dchecyr + D_checyr.glif + Dcroat + D_croat.glif + De-cy + D_e-cy.glif + De-cy.BGR + D_e-cy.B_G_R_.glif + DeSoft-cy + D_eS_oft-cy.glif + Dekomicyr + D_ekomicyr.glif + Delta + D_elta.glif + Djecyr + D_jecyr.glif + Djekomicyr + D_jekomicyr.glif + Djerv-cy + D_jerv-cy.glif + DoubleO-cy + D_oubleO_-cy.glif + Dwe-cy + D_we-cy.glif + Dze-cy + D_ze-cy.glif + DzeReversed-cy + D_zeR_eversed-cy.glif + Dzeabkhcyr + D_zeabkhcyr.glif + Dzelo-cy + D_zelo-cy.glif + Dzhecyr + D_zhecyr.glif + Dzjekomicyr + D_zjekomicyr.glif + Dzwe-cy + D_zwe-cy.glif + Dzze-cy + D_zze-cy.glif + Dzzhecyr + D_zzhecyr.glif + E + E_.glif + E-cy + E_-cy.glif + E-cy.accented + E_-cy.accented.glif + Eacute + E_acute.glif + Ebreve + E_breve.glif + Ecaron + E_caron.glif + Ecircumflex + E_circumflex.glif + Edieresis + E_dieresis.glif + Edotaccent + E_dotaccent.glif + Ef-cy + E_f-cy.glif + Ef-cy.BGR + E_f-cy.B_G_R_.glif + Egrave + E_grave.glif + Eiotifiedcyr + E_iotifiedcyr.glif + El-cy + E_l-cy.glif + El-cy.BGR + E_l-cy.B_G_R_.glif + ElSoft-cy + E_lS_oft-cy.glif + Elhookcyr + E_lhookcyr.glif + Elmiddlehookcyr + E_lmiddlehookcyr.glif + Elsharptailcyr + E_lsharptailcyr.glif + Elsmallcyr + E_lsmallcyr.glif + Eltailcyr + E_ltailcyr.glif + Em-cy + E_m-cy.glif + Em-cy.ss01 + E_m-cy.ss01.glif + EmSoft-cy + E_mS_oft-cy.glif + Emacron + E_macron.glif + Emsharptailcyr + E_msharptailcyr.glif + En-cy + E_n-cy.glif + Eng + E_ng.glif + Eng.ss01 + E_ng.ss01.glif + Engecyr + E_ngecyr.glif + Enhookcyr + E_nhookcyr.glif + Enhookleftcyr + E_nhookleftcyr.glif + Enmiddlehookcyr + E_nmiddlehookcyr.glif + Ensharptailcyr + E_nsharptailcyr.glif + Entailcyr + E_ntailcyr.glif + Eogonek + E_ogonek.glif + Er-cy + E_r-cy.glif + Ereversed-cy + E_reversed-cy.glif + Ereversed-cy.accented + E_reversed-cy.accented.glif + Ereverseddieresiscyr + E_reverseddieresiscyr.glif + Ertickcyr + E_rtickcyr.glif + Es-cy + E_s-cy.glif + Estailcyr + E_stailcyr.glif + Estailcyr.BSH + E_stailcyr.B_S_H_.glif + Estailcyr.CHU + E_stailcyr.C_H_U_.glif + Eth + E_th.glif + F + F_.glif + Fitacyr + F_itacyr.glif + G + G_.glif + G.ss01 + G_.ss01.glif + Gacute + G_acute.glif + Gacute.ss01 + G_acute.ss01.glif + Gbreve + G_breve.glif + Gbreve.ss01 + G_breve.ss01.glif + Gcircumflex + G_circumflex.glif + Gcircumflex.ss01 + G_circumflex.ss01.glif + Gcommaaccent + G_commaaccent.glif + Gcommaaccent.ss01 + G_commaaccent.ss01.glif + Gdotaccent + G_dotaccent.glif + Gdotaccent.ss01 + G_dotaccent.ss01.glif + Ge-cy + G_e-cy.glif + Gehookcyr + G_ehookcyr.glif + Gehookstrokecyr + G_ehookstrokecyr.glif + Germandbls + G_ermandbls.glif + Gestrokecyr + G_estrokecyr.glif + Gestrokecyr.BSH + G_estrokecyr.B_S_H_.glif + Getailcyr + G_etailcyr.glif + Gheupturn-cy + G_heupturn-cy.glif + Gjecyr + G_jecyr.glif + H + H_.glif + Ha-cy + H_a-cy.glif + Ha-cy.ss01 + H_a-cy.ss01.glif + Haabkhcyr + H_aabkhcyr.glif + Hahookcyr + H_ahookcyr.glif + Hardsign-cy + H_ardsign-cy.glif + Hastrokecyr + H_astrokecyr.glif + Hbar + H_bar.glif + Hcircumflex + H_circumflex.glif + Hwe-cy + H_we-cy.glif + I + I_.glif + I-cy + I_-cy.glif + IJ + I_J_.glif + Ia-cy + I_a-cy.glif + Ia-cy.accented + I_a-cy.accented.glif + Ia-cy.ss01 + I_a-cy.ss01.glif + Iacute + I_acute.glif + Ibreve + I_breve.glif + Icircumflex + I_circumflex.glif + Idieresis + I_dieresis.glif + Idieresiscyr + I_dieresiscyr.glif + Idotaccent + I_dotaccent.glif + Ie-cy + I_e-cy.glif + Iebrevecyr + I_ebrevecyr.glif + Iegravecyr + I_egravecyr.glif + Igrave + I_grave.glif + Igravecyr + I_gravecyr.glif + Ii-cy + I_i-cy.glif + Ii-cy.accented + I_i-cy.accented.glif + Iishort-cy + I_ishort-cy.glif + Imacron + I_macron.glif + Imacroncyr + I_macroncyr.glif + Io-cy + I_o-cy.glif + Io-cy.accented + I_o-cy.accented.glif + Iogonek + I_ogonek.glif + Iota-cy + I_ota-cy.glif + IotifiedA-cy + I_otifiedA_-cy.glif + Ishortsharptailcyr + I_shortsharptailcyr.glif + Itilde + I_tilde.glif + Iu-cy + I_u-cy.glif + Iu-cy.accented + I_u-cy.accented.glif + Izhitsacyr + I_zhitsacyr.glif + Izhitsagravedblcyr + I_zhitsagravedblcyr.glif + J + J_.glif + J.ss01 + J_.ss01.glif + Jcircumflex + J_circumflex.glif + Jcircumflex.ss01 + J_circumflex.ss01.glif + Jecyr + J_ecyr.glif + K + K_.glif + K.ss01 + K_.ss01.glif + Ka-cy + K_a-cy.glif + Ka-cy.ss01 + K_a-cy.ss01.glif + Kaaleutcyr + K_aaleutcyr.glif + Kabashkcyr + K_abashkcyr.glif + Kahookcyr + K_ahookcyr.glif + Kastrokecyr + K_astrokecyr.glif + Katailcyr + K_atailcyr.glif + Kaverticalstrokecyr + K_averticalstrokecyr.glif + Kcommaaccent + K_commaaccent.glif + Kcommaaccent.ss01 + K_commaaccent.ss01.glif + Kjecyr + K_jecyr.glif + Koppacyr + K_oppacyr.glif + Ksicyr + K_sicyr.glif + L + L_.glif + Lacute + L_acute.glif + Lcaron + L_caron.glif + Lcommaaccent + L_commaaccent.glif + Ldot + L_dot.glif + Lhacyr + L_hacyr.glif + Ljecyr + L_jecyr.glif + Ljekomicyr + L_jekomicyr.glif + Lslash + L_slash.glif + M + M_.glif + M.ss01 + M_.ss01.glif + N + N_.glif + N.ss01 + N_.ss01.glif + NULL + N_U_L_L_.glif + Nacute + N_acute.glif + Nacute.ss01 + N_acute.ss01.glif + Ncaron + N_caron.glif + Ncaron.ss01 + N_caron.ss01.glif + Ncommaaccent + N_commaaccent.glif + Ncommaaccent.ss01 + N_commaaccent.ss01.glif + Njecyr + N_jecyr.glif + Njekomicyr + N_jekomicyr.glif + Ntilde + N_tilde.glif + Ntilde.ss01 + N_tilde.ss01.glif + O + O_.glif + O-cy + O_-cy.glif + O-cy.accented + O_-cy.accented.glif + OBinocular-cy + O_B_inocular-cy.glif + ODoubleMonocular-cy + O_D_oubleM_onocular-cy.glif + OE + O_E_.glif + OMonocular-cy + O_M_onocular-cy.glif + Oacute + O_acute.glif + Obarcyr + O_barcyr.glif + Obardieresiscyr + O_bardieresiscyr.glif + Obreve + O_breve.glif + Ocircumflex + O_circumflex.glif + Odieresis + O_dieresis.glif + Odieresiscyr + O_dieresiscyr.glif + Ograve + O_grave.glif + Ohungarumlaut + O_hungarumlaut.glif + Omacron + O_macron.glif + Omega + O_mega.glif + OmegaBroad-cy + O_megaB_road-cy.glif + Omegacyr + O_megacyr.glif + Omegaroundcyr + O_megaroundcyr.glif + Omegatitlocyr + O_megatitlocyr.glif + Oslash + O_slash.glif + Oslashacute + O_slashacute.glif + Otcyr + O_tcyr.glif + Otilde + O_tilde.glif + P + P_.glif + Palochkacyr + P_alochkacyr.glif + Pe-cy + P_e-cy.glif + Pehookcyr + P_ehookcyr.glif + Petailcyr + P_etailcyr.glif + Psicyr + P_sicyr.glif + Q + Q_.glif + Q.ss01 + Q_.ss01.glif + Qacyr + Q_acyr.glif + R + R_.glif + Racute + R_acute.glif + Rcaron + R_caron.glif + Rcommaaccent + R_commaaccent.glif + Reversedzecyr + R_eversedzecyr.glif + Rhacyr + R_hacyr.glif + S + S_.glif + Sacute + S_acute.glif + Scaron + S_caron.glif + Scedilla + S_cedilla.glif + Schwa + S_chwa.glif + Schwacyr + S_chwacyr.glif + Schwadieresiscyr + S_chwadieresiscyr.glif + Scircumflex + S_circumflex.glif + Scommaaccent + S_commaaccent.glif + Semisoftcyr + S_emisoftcyr.glif + Sha-cy + S_ha-cy.glif + Shcha-cy + S_hcha-cy.glif + Shhacyr + S_hhacyr.glif + Shhatailcyr + S_hhatailcyr.glif + Shwe-cy + S_hwe-cy.glif + Sjekomicyr + S_jekomicyr.glif + Softsign-cy + S_oftsign-cy.glif + T + T_.glif + Tbar + T_bar.glif + Tcaron + T_caron.glif + Tcedilla + T_cedilla.glif + Tche-cy + T_che-cy.glif + Tcommaaccent + T_commaaccent.glif + Te-cy + T_e-cy.glif + TeWithMiddleHook-cy + T_eW_ithM_iddleH_ook-cy.glif + Tetailcyr + T_etailcyr.glif + Tetsecyr + T_etsecyr.glif + Thorn + T_horn.glif + Tjekomicyr + T_jekomicyr.glif + Tse-cy + T_se-cy.glif + TseReversed-cy + T_seR_eversed-cy.glif + Tshecyr + T_shecyr.glif + Tsse-cy + T_sse-cy.glif + Tswe-cy + T_swe-cy.glif + Twe-cy + T_we-cy.glif + U + U_.glif + U-cy + U_-cy.glif + U-cy.accented + U_-cy.accented.glif + U-cy.ss01 + U_-cy.ss01.glif + Uacute + U_acute.glif + Uacutedblcyr + U_acutedblcyr.glif + Ubreve + U_breve.glif + Ucircumflex + U_circumflex.glif + Udieresis + U_dieresis.glif + Udieresiscyr + U_dieresiscyr.glif + Ugrave + U_grave.glif + Uhungarumlaut + U_hungarumlaut.glif + UkMonograph-cy + U_kM_onograph-cy.glif + Ukcyr + U_kcyr.glif + Umacron + U_macron.glif + Umacroncyr + U_macroncyr.glif + Uogonek + U_ogonek.glif + Uring + U_ring.glif + Ushort-cy + U_short-cy.glif + Ushort-cy.ss01 + U_short-cy.ss01.glif + Ustraightcyr + U_straightcyr.glif + Ustraightstrokecyr + U_straightstrokecyr.glif + Utilde + U_tilde.glif + V + V_.glif + V.ss01 + V_.ss01.glif + Ve-cy + V_e-cy.glif + W + W_.glif + W.ss01 + W_.ss01.glif + Wacute + W_acute.glif + Wacute.ss01 + W_acute.ss01.glif + Wcircumflex + W_circumflex.glif + Wcircumflex.ss01 + W_circumflex.ss01.glif + Wdieresis + W_dieresis.glif + Wdieresis.ss01 + W_dieresis.ss01.glif + Wecyr + W_ecyr.glif + Wgrave + W_grave.glif + Wgrave.ss01 + W_grave.ss01.glif + X + X_.glif + X.ss01 + X_.ss01.glif + Xatailcyr + X_atailcyr.glif + Y + Y_.glif + Y.ss01 + Y_.ss01.glif + Yacute + Y_acute.glif + Yacute.ss01 + Y_acute.ss01.glif + Yaecyr + Y_aecyr.glif + YatIotified-cy + Y_atI_otified-cy.glif + Yatcyr + Y_atcyr.glif + Ycircumflex + Y_circumflex.glif + Ycircumflex.ss01 + Y_circumflex.ss01.glif + Ydieresis + Y_dieresis.glif + Ydieresis.ss01 + Y_dieresis.ss01.glif + YerNeutral-cy + Y_erN_eutral-cy.glif + Yeru-cy + Y_eru-cy.glif + Yeru-cy.accented + Y_eru-cy.accented.glif + Yeru-cymacron + Y_eru-cymacron.glif + YeruBackYer-cy + Y_eruB_ackY_er-cy.glif + Yi-cy + Y_i-cy.glif + Ylongdieresiscyr + Y_longdieresiscyr.glif + Yn-cy + Y_n-cy.glif + YuReversed-cy + Y_uR_eversed-cy.glif + YusBlended-cy + Y_usB_lended-cy.glif + YusClosedlittle-cy + Y_usC_losedlittle-cy.glif + Yusbigcyr + Y_usbigcyr.glif + Yusbigiotifiedcyr + Y_usbigiotifiedcyr.glif + YusiotifiedClosedLittle-cy + Y_usiotifiedC_losedL_ittle-cy.glif + Yuslittlecyr + Y_uslittlecyr.glif + Yuslittleiotifiedcyr + Y_uslittleiotifiedcyr.glif + Z + Z_.glif + Z.ss01 + Z_.ss01.glif + Zacute + Z_acute.glif + Zacute.ss01 + Z_acute.ss01.glif + Zcaron + Z_caron.glif + Zcaron.ss01 + Z_caron.ss01.glif + Zdotaccent + Z_dotaccent.glif + Zdotaccent.ss01 + Z_dotaccent.ss01.glif + Ze-cy + Z_e-cy.glif + Zedieresiscyr + Z_edieresiscyr.glif + Zemlya-cy + Z_emlya-cy.glif + Zetailcyr + Z_etailcyr.glif + Zetailcyr.BSH + Z_etailcyr.B_S_H_.glif + Zhe-cy + Z_he-cy.glif + Zhe-cy.ss01 + Z_he-cy.ss01.glif + Zhebrevecyr + Z_hebrevecyr.glif + Zhedieresiscyr + Z_hedieresiscyr.glif + Zhetailcyr + Z_hetailcyr.glif + Zhwe-cy + Z_hwe-cy.glif + Zjekomicyr + Z_jekomicyr.glif + _perc-circule + _perc-circule.glif + a + a.glif + a-cy + a-cy.glif + a-cy.accented + a-cy.accented.glif + a-cy.ss01 + a-cy.ss01.glif + a.ss01 + a.ss01.glif + aacute + aacute.glif + aacute.ss01 + aacute.ss01.glif + abreve + abreve.glif + abreve.ss01 + abreve.ss01.glif + abrevecyr + abrevecyr.glif + acaron + acaron.glif + acircumflex + acircumflex.glif + acircumflex.ss01 + acircumflex.ss01.glif + acute + acute.glif + acute.case + acute.case.glif + adieresis + adieresis.glif + adieresis.ss01 + adieresis.ss01.glif + adieresiscyr + adieresiscyr.glif + ae + ae.glif + ae.ss01 + ae.ss01.glif + aeacute + aeacute.glif + agrave + agrave.glif + agrave.ss01 + agrave.ss01.glif + aiecyr + aiecyr.glif + amacron + amacron.glif + amacron.ss01 + amacron.ss01.glif + ampersand + ampersand.glif + aogonek + aogonek.glif + aogonek.ss01 + aogonek.ss01.glif + apostrophemod + apostrophemod.glif + approxequal + approxequal.glif + aring + aring.glif + aring.ss01 + aring.ss01.glif + arrowdown + arrowdown.glif + arrowdown.case + arrowdown.case.glif + arrowdown.ss01 + arrowdown.ss01.glif + arrowdown.ss01.case + arrowdown.ss01.case.glif + arrowleft + arrowleft.glif + arrowleft.case + arrowleft.case.glif + arrowleft.ss01 + arrowleft.ss01.glif + arrowleft.ss01.case + arrowleft.ss01.case.glif + arrowright + arrowright.glif + arrowright.case + arrowright.case.glif + arrowright.ss01 + arrowright.ss01.glif + arrowright.ss01.case + arrowright.ss01.case.glif + arrowup + arrowup.glif + arrowup.case + arrowup.case.glif + arrowup.ss01 + arrowup.ss01.glif + arrowup.ss01.case + arrowup.ss01.case.glif + asciicircum + asciicircum.glif + asciitilde + asciitilde.glif + asterisk + asterisk.glif + at + at.glif + at.case + at.case.glif + atilde + atilde.glif + atilde.ss01 + atilde.ss01.glif + b + b.glif + b.ss01 + b.ss01.glif + backslash + backslash.glif + backslash.case + backslash.case.glif + bar + bar.glif + bar.case + bar.case.glif + be-cy + be-cy.glif + be-cy.SRB + be-cy.S_R_B_.glif + bishopblack + bishopblack.glif + bishopwhite + bishopwhite.glif + braceleft + braceleft.glif + braceleft.case + braceleft.case.glif + braceright + braceright.glif + braceright.case + braceright.case.glif + bracketangleleft + bracketangleleft.glif + bracketangleleft.case + bracketangleleft.case.glif + bracketangleright + bracketangleright.glif + bracketangleright.case + bracketangleright.case.glif + bracketleft + bracketleft.glif + bracketleft.case + bracketleft.case.glif + bracketright + bracketright.glif + bracketright.case + bracketright.case.glif + breve + breve.glif + breve.case + breve.case.glif + brokenbar + brokenbar.glif + brokenbar.case + brokenbar.case.glif + bullet + bullet.glif + bullet.case + bullet.case.glif + c + c.glif + cacute + cacute.glif + caron + caron.glif + caron.case + caron.case.glif + caron.salt + caron.salt.glif + ccaron + ccaron.glif + ccedilla + ccedilla.glif + cche-cy + cche-cy.glif + ccircumflex + ccircumflex.glif + cdotaccent + cdotaccent.glif + cedilla + cedilla.glif + cent + cent.glif + che-cy + che-cy.glif + cheabkhcyr + cheabkhcyr.glif + cheabkhtailcyr + cheabkhtailcyr.glif + chedieresiscyr + chedieresiscyr.glif + chekhakascyr + chekhakascyr.glif + chetailcyr + chetailcyr.glif + chevertcyr + chevertcyr.glif + circumflex + circumflex.glif + circumflex.case + circumflex.case.glif + clubwhite + clubwhite.glif + colon + colon.glif + colon.case + colon.case.glif + colontriangularmod + colontriangularmod.glif + comma + comma.glif + commaaccentcomb + commaaccentcomb.glif + commaaccentcomb.salt + commaaccentcomb.salt.glif + copyright + copyright.glif + crossedo-cy + crossedo-cy.glif + crossedswords + crossedswords.glif + currency + currency.glif + d + d.glif + d.ss01 + d.ss01.glif + dagger + dagger.glif + daggerdbl + daggerdbl.glif + dcaron + dcaron.glif + dcaron.ss01 + dcaron.ss01.glif + dchecyr + dchecyr.glif + dcroat + dcroat.glif + dcroat.ss01 + dcroat.ss01.glif + de-cy + de-cy.glif + de-cy.BGR + de-cy.B_G_R_.glif + de-cy.ss01 + de-cy.ss01.glif + deSoft-cy + deS_oft-cy.glif + degree + degree.glif + dekomicyr + dekomicyr.glif + diamondwhite-misc + diamondwhite-misc.glif + dieresis + dieresis.glif + dieresis.alt + dieresis.alt.glif + dieresis.case + dieresis.case.glif + dieresisacute + dieresisacute.glif + dieresiscase.alt + dieresiscase.alt.glif + divide + divide.glif + djecyr + djecyr.glif + djekomicyr + djekomicyr.glif + djerv-cy + djerv-cy.glif + dollar + dollar.glif + dotaccent + dotaccent.glif + dotaccent.case + dotaccent.case.glif + doubleo-cy + doubleo-cy.glif + dramsignarmn + dramsignarmn.glif + dwe-cy + dwe-cy.glif + dze-cy + dze-cy.glif + dzeReversed-cy + dzeR_eversed-cy.glif + dzeabkhcyr + dzeabkhcyr.glif + dzelo-cy + dzelo-cy.glif + dzhecyr + dzhecyr.glif + dzjekomicyr + dzjekomicyr.glif + dzwe-cy + dzwe-cy.glif + dzze-cy + dzze-cy.glif + dzzhecyr + dzzhecyr.glif + e + e.glif + e-cy + e-cy.glif + e-cy.accented + e-cy.accented.glif + e-cy.hist + e-cy.hist.glif + e.ss01 + e.ss01.glif + eacute + eacute.glif + eacute.ss01 + eacute.ss01.glif + ebreve + ebreve.glif + ebreve.ss01 + ebreve.ss01.glif + ecaron + ecaron.glif + ecaron.ss01 + ecaron.ss01.glif + ecircumflex + ecircumflex.glif + ecircumflex.ss01 + ecircumflex.ss01.glif + edieresis + edieresis.glif + edieresis.ss01 + edieresis.ss01.glif + edotaccent + edotaccent.glif + edotaccent.ss01 + edotaccent.ss01.glif + ef-cy + ef-cy.glif + egrave + egrave.glif + egrave.ss01 + egrave.ss01.glif + eight + eight.glif + eight.osf + eight.osf.glif + eight.tf + eight.tf.glif + eiotifiedcyr + eiotifiedcyr.glif + eiotifiedcyr.BGR + eiotifiedcyr.B_G_R_.glif + el-cy + el-cy.glif + el-cy.BGR + el-cy.B_G_R_.glif + el-cy.ss01 + el-cy.ss01.glif + elSoft-cy + elS_oft-cy.glif + elhookcyr + elhookcyr.glif + ellipsis + ellipsis.glif + elmiddlehookcyr + elmiddlehookcyr.glif + elsharptailcyr + elsharptailcyr.glif + eltailcyr + eltailcyr.glif + em-cy + em-cy.glif + emSoft-cy + emS_oft-cy.glif + emacron + emacron.glif + emacron.ss01 + emacron.ss01.glif + emdash + emdash.glif + emdash.case + emdash.case.glif + emsharptailcyr + emsharptailcyr.glif + en-cy + en-cy.glif + enclosingcirclecomb + enclosingcirclecomb.glif + endash + endash.glif + endash.case + endash.case.glif + eng + eng.glif + engecyr + engecyr.glif + enhookcyr + enhookcyr.glif + enhookleftcyr + enhookleftcyr.glif + enmiddlehookcyr + enmiddlehookcyr.glif + ensharptailcyr + ensharptailcyr.glif + entailcyr + entailcyr.glif + eogonek + eogonek.glif + eogonek.ss01 + eogonek.ss01.glif + equal + equal.glif + er-cy + er-cy.glif + er-cy.ss01 + er-cy.ss01.glif + ereversed-cy + ereversed-cy.glif + ereversed-cy.accented + ereversed-cy.accented.glif + ereverseddieresiscyr + ereverseddieresiscyr.glif + ertickcyr + ertickcyr.glif + es-cy + es-cy.glif + estailcyr + estailcyr.glif + estailcyr.BSH + estailcyr.B_S_H_.glif + estailcyr.CHU + estailcyr.C_H_U_.glif + estimated + estimated.glif + eth + eth.glif + eturned + eturned.glif + euro + euro.glif + exclam + exclam.glif + exclamdown + exclamdown.glif + exclamdown.case + exclamdown.case.glif + f + f.glif + f.ss01 + f.ss01.glif + f_f + f_f.glif + f_f.ss01 + f_f.ss01.glif + f_f_i + f_f_i.glif + f_f_i.ss01 + f_f_i.ss01.glif + f_f_l + f_f_l.glif + f_f_l.ss01 + f_f_l.ss01.glif + fi + fi.glif + fi.ss01 + fi.ss01.glif + fitacyr + fitacyr.glif + five + five.glif + five.osf + five.osf.glif + five.tf + five.tf.glif + fl + fl.glif + fl.ss01 + fl.ss01.glif + floretteblack + floretteblack.glif + floretteoutlinedpetalledblackeight + floretteoutlinedpetalledblackeight.glif + florettewhite + florettewhite.glif + florin + florin.glif + flower + flower.glif + four + four.glif + four.osf + four.osf.glif + four.tf + four.tf.glif + fraction + fraction.glif + g + g.glif + g.ss01 + g.ss01.glif + gacute + gacute.glif + gacute.ss01 + gacute.ss01.glif + gbreve + gbreve.glif + gbreve.ss01 + gbreve.ss01.glif + gcircumflex + gcircumflex.glif + gcircumflex.ss01 + gcircumflex.ss01.glif + gcommaaccent + gcommaaccent.glif + gcommaaccent.ss01 + gcommaaccent.ss01.glif + gdotaccent + gdotaccent.glif + gdotaccent.ss01 + gdotaccent.ss01.glif + ge-cy + ge-cy.glif + ge-cy.BGR + ge-cy.B_G_R_.glif + ge-cy.SRB + ge-cy.S_R_B_.glif + gehookcyr + gehookcyr.glif + gehookstrokecyr + gehookstrokecyr.glif + germandbls + germandbls.glif + germandbls.ss01 + germandbls.ss01.glif + gestrokecyr + gestrokecyr.glif + gestrokecyr.BSH + gestrokecyr.B_S_H_.glif + getailcyr + getailcyr.glif + gheupturn-cy + gheupturn-cy.glif + gjecyr + gjecyr.glif + gjecyr.SRB + gjecyr.S_R_B_.glif + grave + grave.glif + grave.case + grave.case.glif + greater + greater.glif + greaterequal + greaterequal.glif + guillemetleft + guillemetleft.glif + guillemetleft.case + guillemetleft.case.glif + guillemetright + guillemetright.glif + guillemetright.case + guillemetright.case.glif + guilsinglleft + guilsinglleft.glif + guilsinglleft.case + guilsinglleft.case.glif + guilsinglright + guilsinglright.glif + guilsinglright.case + guilsinglright.case.glif + h + h.glif + ha-cy + ha-cy.glif + haabkhcyr + haabkhcyr.glif + hahookcyr + hahookcyr.glif + hardsign-cy + hardsign-cy.glif + hardsign-cy.BGR + hardsign-cy.B_G_R_.glif + hardsign-cy.ss01 + hardsign-cy.ss01.glif + hastrokecyr + hastrokecyr.glif + hbar + hbar.glif + hcircumflex + hcircumflex.glif + heart + heart.glif + heartwhite + heartwhite.glif + hryvnia + hryvnia.glif + hundredmillionscomb-cy + hundredmillionscomb-cy.glif + hundredthousandscombcyr + hundredthousandscombcyr.glif + hungarumlaut + hungarumlaut.glif + hungarumlaut.case + hungarumlaut.case.glif + hwe-cy + hwe-cy.glif + hyphen + hyphen.glif + hyphen.case + hyphen.case.glif + i + i.glif + i-cy + i-cy.glif + ia-cy + ia-cy.glif + ia-cy.accented + ia-cy.accented.glif + ia-cy.ss01 + ia-cy.ss01.glif + iacute + iacute.glif + ibreve + ibreve.glif + icircumflex + icircumflex.glif + idieresis + idieresis.glif + idieresiscyr + idieresiscyr.glif + idotless + idotless.glif + ie-cy + ie-cy.glif + ie-cy.ss01 + ie-cy.ss01.glif + iebrevecyr + iebrevecyr.glif + iegravecyr + iegravecyr.glif + iegravecyr.SRB + iegravecyr.S_R_B_.glif + igrave + igrave.glif + igravecyr + igravecyr.glif + igravecyr.SRB + igravecyr.S_R_B_.glif + ii-cy + ii-cy.glif + ii-cy.BGR + ii-cy.B_G_R_.glif + ii-cy.accented + ii-cy.accented.glif + iishort-cy + iishort-cy.glif + iishort-cy.BGR + iishort-cy.B_G_R_.glif + ij + ij.glif + imacron + imacron.glif + imacroncyr + imacroncyr.glif + increment + increment.glif + infinity + infinity.glif + integral + integral.glif + io-cy + io-cy.glif + io-cy.accented + io-cy.accented.glif + io-cy.ss01 + io-cy.ss01.glif + iogonek + iogonek.glif + iota-cy + iota-cy.glif + iotifieda-cy + iotifieda-cy.glif + iotifieda-cy.BGR + iotifieda-cy.B_G_R_.glif + iotifieda-cy.hist + iotifieda-cy.hist.glif + ishortsharptailcyr + ishortsharptailcyr.glif + itilde + itilde.glif + iu-cy + iu-cy.glif + iu-cy.BGR + iu-cy.B_G_R_.glif + iu-cy.accented + iu-cy.accented.glif + izhitsacyr + izhitsacyr.glif + izhitsagravedblcyr + izhitsagravedblcyr.glif + j + j.glif + jcircumflex + jcircumflex.glif + jdotless + jdotless.glif + je-cy + je-cy.glif + k + k.glif + ka-cy + ka-cy.glif + ka-cy.BGR + ka-cy.B_G_R_.glif + kaaleutcyr + kaaleutcyr.glif + kabashkcyr + kabashkcyr.glif + kahookcyr + kahookcyr.glif + kastrokecyr + kastrokecyr.glif + katailcyr + katailcyr.glif + kaverticalstrokecyr + kaverticalstrokecyr.glif + kcommaaccent + kcommaaccent.glif + kgreenlandic + kgreenlandic.glif + kjecyr + kjecyr.glif + knightblack + knightblack.glif + knightwhite + knightwhite.glif + koppacyr + koppacyr.glif + ksicyr + ksicyr.glif + l + l.glif + l.ss01 + l.ss01.glif + lacute + lacute.glif + lacute.ss01 + lacute.ss01.glif + lcaron + lcaron.glif + lcaron.ss01 + lcaron.ss01.glif + lcommaaccent + lcommaaccent.glif + lcommaaccent.ss01 + lcommaaccent.ss01.glif + ldot + ldot.glif + ldot.ss01 + ldot.ss01.glif + leo + leo.glif + less + less.glif + lessequal + lessequal.glif + lhacyr + lhacyr.glif + ljecyr + ljecyr.glif + ljecyr.ss01 + ljecyr.ss01.glif + ljekomicyr + ljekomicyr.glif + longs + longs.glif + lslash + lslash.glif + lslash.ss01 + lslash.ss01.glif + m + m.glif + macron + macron.glif + macron-fwd + macron-fwd.glif + macron-fwd.alt + macron-fwd.alt.glif + macron.case + macron.case.glif + macronacute.SRB + macronacute.S_R_B_.glif + millionscombcyr + millionscombcyr.glif + minus + minus.glif + minute + minute.glif + mu + mu.glif + multiply + multiply.glif + n + n.glif + nacute + nacute.glif + napostrophe + napostrophe.glif + ncaron + ncaron.glif + ncommaaccent + ncommaaccent.glif + neptune + neptune.glif + nine + nine.glif + nine.osf + nine.osf.glif + nine.tf + nine.tf.glif + njecyr + njecyr.glif + njecyr.ss01 + njecyr.ss01.glif + njekomicyr + njekomicyr.glif + notequal + notequal.glif + ntilde + ntilde.glif + numbersign + numbersign.glif + numero + numero.glif + numero.ss01 + numero.ss01.glif + o + o.glif + o-cy + o-cy.glif + o-cy.accented + o-cy.accented.glif + oBinocular-cy + oB_inocular-cy.glif + oDoubleMonocular-cy + oD_oubleM_onocular-cy.glif + oMonocular-cy + oM_onocular-cy.glif + oacute + oacute.glif + obarcyr + obarcyr.glif + obardieresiscyr + obardieresiscyr.glif + obreve + obreve.glif + ocircumflex + ocircumflex.glif + odieresis + odieresis.glif + odieresiscyr + odieresiscyr.glif + oe + oe.glif + oe.ss01 + oe.ss01.glif + ogonek + ogonek.glif + ograve + ograve.glif + ohungarumlaut + ohungarumlaut.glif + omacron + omacron.glif + omegaBroad-cy + omegaB_road-cy.glif + omegacyr + omegacyr.glif + omegaroundcyr + omegaroundcyr.glif + omegatitlocyr + omegatitlocyr.glif + omultiocular-cy + omultiocular-cy.glif + omultiocular-cy.alt + omultiocular-cy.alt.glif + one + one.glif + one.osf + one.osf.glif + one.tf + one.tf.glif + onehalf + onehalf.glif + onequarter + onequarter.glif + onesuperior + onesuperior.glif + ordfeminine + ordfeminine.glif + ordmasculine + ordmasculine.glif + oslash + oslash.glif + oslashacute + oslashacute.glif + otcyr + otcyr.glif + otilde + otilde.glif + p + p.glif + p.ss01 + p.ss01.glif + palatcombcyr + palatcombcyr.glif + palochkacyr + palochkacyr.glif + paragraph + paragraph.glif + parenleft + parenleft.glif + parenleft.case + parenleft.case.glif + parenright + parenright.glif + parenright.case + parenright.case.glif + partialdiff + partialdiff.glif + pe-cy + pe-cy.glif + pe-cy.BGR + pe-cy.B_G_R_.glif + pe-cy.SRB + pe-cy.S_R_B_.glif + pehookcyr + pehookcyr.glif + percent + percent.glif + period + period.glif + periodcentered + periodcentered.glif + perthousand + perthousand.glif + petailcyr + petailcyr.glif + pi + pi.glif + plus + plus.glif + plusminus + plusminus.glif + pokrytiecombcyr + pokrytiecombcyr.glif + product + product.glif + proportional + proportional.glif + psicyr + psicyr.glif + q + q.glif + q.ss01 + q.ss01.glif + qacyr + qacyr.glif + question + question.glif + questiondown + questiondown.glif + questiondown.case + questiondown.case.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 + radical + radical.glif + rcaron + rcaron.glif + rcommaaccent + rcommaaccent.glif + registered + registered.glif + reversedzecyr + reversedzecyr.glif + rhacyr + rhacyr.glif + ring + ring.glif + ring.case + ring.case.glif + rookblack + rookblack.glif + ruble + ruble.glif + s + s.glif + sacute + sacute.glif + scaron + scaron.glif + scedilla + scedilla.glif + schwacyr + schwacyr.glif + schwadieresiscyr + schwadieresiscyr.glif + scircumflex + scircumflex.glif + scommaaccent + scommaaccent.glif + second + second.glif + section + section.glif + semicolon + semicolon.glif + semicolon.case + semicolon.case.glif + semisoftcyr + semisoftcyr.glif + seven + seven.glif + seven.osf + seven.osf.glif + seven.tf + seven.tf.glif + sha-cy + sha-cy.glif + sha-cy.BGR + sha-cy.B_G_R_.glif + shcha-cy + shcha-cy.glif + shcha-cy.BGR + shcha-cy.B_G_R_.glif + shhacyr + shhacyr.glif + shhatailcyr + shhatailcyr.glif + shwe-cy + shwe-cy.glif + six + six.glif + six.osf + six.osf.glif + six.tf + six.tf.glif + sjekomicyr + sjekomicyr.glif + slash + slash.glif + slash.case + slash.case.glif + softsign-cy + softsign-cy.glif + softsign-cy.BGR + softsign-cy.B_G_R_.glif + softsign-cy.ss01 + softsign-cy.ss01.glif + space + space.glif + spadewhite + spadewhite.glif + sterling + sterling.glif + summation + summation.glif + t + t.glif + t.ss01 + t.ss01.glif + tbar + tbar.glif + tbar.ss01 + tbar.ss01.glif + tcaron + tcaron.glif + tcaron.ss01 + tcaron.ss01.glif + tcedilla + tcedilla.glif + tcedilla.ss01 + tcedilla.ss01.glif + tche-cy + tche-cy.glif + tcommaaccent + tcommaaccent.glif + tcommaaccent.ss01 + tcommaaccent.ss01.glif + te-cy + te-cy.glif + te-cy.BGR + te-cy.B_G_R_.glif + te-cy.SRB + te-cy.S_R_B_.glif + te-cy.ss01 + te-cy.ss01.glif + tenge + tenge.glif + tenmillionscomb-cy + tenmillionscomb-cy.glif + tetailcyr + tetailcyr.glif + tetsecyr + tetsecyr.glif + tewithmiddlehook-cy + tewithmiddlehook-cy.glif + thorn + thorn.glif + thousandmillionscomb-cy + thousandmillionscomb-cy.glif + thousandscyr + thousandscyr.glif + thousandscyr.dnom + thousandscyr.dnom.glif + three + three.glif + three.osf + three.osf.glif + three.tf + three.tf.glif + threequarters + threequarters.glif + threesuperior + threesuperior.glif + tilde + tilde.glif + tilde.case + tilde.case.glif + titlocombcyr + titlocombcyr.glif + tjekomicyr + tjekomicyr.glif + trademark + trademark.glif + tse-cy + tse-cy.glif + tse-cy.BGR + tse-cy.B_G_R_.glif + tseReversed-cy + tseR_eversed-cy.glif + tshecyr + tshecyr.glif + tsse-cy + tsse-cy.glif + tswe-cy + tswe-cy.glif + twe-cy + twe-cy.glif + two + two.glif + two.osf + two.osf.glif + two.tf + two.tf.glif + twosuperior + twosuperior.glif + u + u.glif + u-cy + u-cy.glif + u-cy.accented + u-cy.accented.glif + uacute + uacute.glif + uacutedblcyr + uacutedblcyr.glif + ubreve + ubreve.glif + ucircumflex + ucircumflex.glif + udieresis + udieresis.glif + udieresiscyr + udieresiscyr.glif + ugrave + ugrave.glif + uhungarumlaut + uhungarumlaut.glif + ukMonograph-cy + ukM_onograph-cy.glif + ukcyr + ukcyr.glif + umacron + umacron.glif + umacroncyr + umacroncyr.glif + underscore + underscore.glif + uni1C80 + uni1C_80.glif + uni1C81 + uni1C_81.glif + uni1C82 + uni1C_82.glif + uni1C83 + uni1C_83.glif + uni1C84 + uni1C_84.glif + uni1C85 + uni1C_85.glif + uni1C86 + uni1C_86.glif + uni1C87 + uni1C_87.glif + uni1C88 + uni1C_88.glif + uni1EBC + uni1E_B_C_.glif + uni1EBD + uni1E_B_D_.glif + uni2010 + uni2010.glif + uni2DEE + uni2D_E_E_.glif + uni2DEE.case + uni2D_E_E_.case.glif + uniE000 + uniE_000.glif + uniE000.alt + uniE_000.alt.glif + uniE01A + uniE_01A_.glif + uniF43A + uniF_43A_.glif + uniF43B + uniF_43B_.glif + uniF45D + uniF_45D_.glif + uniF45E + uniF_45E_.glif + uniF45F + uniF_45F_.glif + uniF475 + uniF_475.glif + uniF476 + uniF_476.glif + uniF477 + uniF_477.glif + uniF478 + uniF_478.glif + uniF479 + uniF_479.glif + uniF498 + uniF_498.glif + uniF499 + uniF_499.glif + uniF49A + uniF_49A_.glif + uniF49B + uniF_49B_.glif + uniF49C + uniF_49C_.glif + uniF49D + uniF_49D_.glif + uniF49E + uniF_49E_.glif + uniF49F + uniF_49F_.glif + uniF4C6 + uniF_4C_6.glif + uniF4C7 + uniF_4C_7.glif + uniF4CC + uniF_4C_C_.glif + uniF4CD + uniF_4C_D_.glif + uniF4D2 + uniF_4D_2.glif + uniF4D3 + uniF_4D_3.glif + uniF4D4 + uniF_4D_4.glif + uniF4D5 + uniF_4D_5.glif + uniF4D6 + uniF_4D_6.glif + uniF4D7 + uniF_4D_7.glif + uniF4D8 + uniF_4D_8.glif + uniF4D9 + uniF_4D_9.glif + uniF50E + uniF_50E_.glif + uniF50F + uniF_50F_.glif + uniF510 + uniF_510.glif + uniF511 + uniF_511.glif + uniF512 + uniF_512.glif + uniF513 + uniF_513.glif + uniF514 + uniF_514.glif + uniF515 + uniF_515.glif + uniF516 + uniF_516.glif + uniF517 + uniF_517.glif + uniF518 + uniF_518.glif + uniF519 + uniF_519.glif + uniF51A + uniF_51A_.glif + uniF51B + uniF_51B_.glif + uniF51C + uniF_51C_.glif + uniF51D + uniF_51D_.glif + uniF51E + uniF_51E_.glif + uniF51F + uniF_51F_.glif + uniF521 + uniF_521.glif + uniF522 + uniF_522.glif + uniF523 + uniF_523.glif + uniF524 + uniF_524.glif + uniF525 + uniF_525.glif + uniF526 + uniF_526.glif + uniF527 + uniF_527.glif + uniF528 + uniF_528.glif + uniF529 + uniF_529.glif + uniF52A + uniF_52A_.glif + uniF52B + uniF_52B_.glif + uniF52C + uniF_52C_.glif + uniF52D + uniF_52D_.glif + uniF52E + uniF_52E_.glif + uniF52F + uniF_52F_.glif + uniF532 + uniF_532.glif + uniF533 + uniF_533.glif + uniF536 + uniF_536.glif + uniF537 + uniF_537.glif + uniF538 + uniF_538.glif + uniF539 + uniF_539.glif + uniF830 + uniF_830.glif + uniF831 + uniF_831.glif + uniF833 + uniF_833.glif + uniF834 + uniF_834.glif + uniF839 + uniF_839.glif + uniF83A + uniF_83A_.glif + uniF86F + uniF_86F_.glif + uniF870 + uniF_870.glif + uniF872 + uniF_872.glif + uniF873 + uniF_873.glif + uniF875 + uniF_875.glif + uniF876 + uniF_876.glif + uniF878 + uniF_878.glif + uniF879 + uniF_879.glif + uniF87B + uniF_87B_.glif + uniF87C + uniF_87C_.glif + uniF87E + uniF_87E_.glif + uniF87F + uniF_87F_.glif + uogonek + uogonek.glif + uring + uring.glif + ushort-cy + ushort-cy.glif + ustraightcyr + ustraightcyr.glif + ustraightstrokecyr + ustraightstrokecyr.glif + utilde + utilde.glif + v + v.glif + ve-cy + ve-cy.glif + ve-cy.BGR + ve-cy.B_G_R_.glif + ve-cy.ss01 + ve-cy.ss01.glif + virgo + virgo.glif + vzmetcomb-cy + vzmetcomb-cy.glif + w + w.glif + wacute + wacute.glif + wcircumflex + wcircumflex.glif + wdieresis + wdieresis.glif + wecyr + wecyr.glif + wgrave + wgrave.glif + x + x.glif + xatailcyr + xatailcyr.glif + y + y.glif + yacute + yacute.glif + yaecyr + yaecyr.glif + yatIotified-cy + yatI_otified-cy.glif + yatcyr + yatcyr.glif + yatcyr.BGR + yatcyr.B_G_R_.glif + ycircumflex + ycircumflex.glif + ydieresis + ydieresis.glif + yen + yen.glif + yen.ss01 + yen.ss01.glif + yerNeutral-cy + yerN_eutral-cy.glif + yeru-cy + yeru-cy.glif + yeru-cy.accented + yeru-cy.accented.glif + yeru-cy.ss01 + yeru-cy.ss01.glif + yeruBackyer-cy + yeruB_ackyer-cy.glif + yi-cy + yi-cy.glif + yi-cy.alt + yi-cy.alt.glif + ylongdieresiscyr + ylongdieresiscyr.glif + yn-cy + yn-cy.glif + yuReversed-cy + yuR_eversed-cy.glif + yusBlended-cy + yusB_lended-cy.glif + yusClosedlittle-cy + yusC_losedlittle-cy.glif + yusbigcyr + yusbigcyr.glif + yusbigiotifiedcyr + yusbigiotifiedcyr.glif + yusbigiotifiedcyr.BGR + yusbigiotifiedcyr.B_G_R_.glif + yusiotifiedClosedLittle-cy + yusiotifiedC_losedL_ittle-cy.glif + yuslittlecyr + yuslittlecyr.glif + yuslittleiotifiedcyr + yuslittleiotifiedcyr.glif + z + z.glif + zacute + zacute.glif + zcaron + zcaron.glif + zdotaccent + zdotaccent.glif + ze-cy + ze-cy.glif + ze-cy.BGR + ze-cy.B_G_R_.glif + zedieresiscyr + zedieresiscyr.glif + zemlya-cy + zemlya-cy.glif + zero + zero.glif + zero.osf + zero.osf.glif + zero.tf + zero.tf.glif + zetailcyr + zetailcyr.glif + zetailcyr.BSH + zetailcyr.B_S_H_.glif + zhe-cy + zhe-cy.glif + zhe-cy.BGR + zhe-cy.B_G_R_.glif + zhebrevecyr + zhebrevecyr.glif + zhedieresiscyr + zhedieresiscyr.glif + zhetailcyr + zhetailcyr.glif + zhwe-cy + zhwe-cy.glif + zjekomicyr + zjekomicyr.glif + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/copyright.glif b/sources/FixelText-ExtraLight.ufo/glyphs/copyright.glif new file mode 100644 index 00000000..fe76e0b5 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/copyright.glif @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/crossedo-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/crossedo-cy.glif new file mode 100644 index 00000000..6f021c61 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/crossedo-cy.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + com.fontlab.recipe + o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/crossedswords.glif b/sources/FixelText-ExtraLight.ufo/glyphs/crossedswords.glif new file mode 100644 index 00000000..72845b0f --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/crossedswords.glif @@ -0,0 +1,103 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/currency.glif b/sources/FixelText-ExtraLight.ufo/glyphs/currency.glif new file mode 100644 index 00000000..c1422df7 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/currency.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/d.glif b/sources/FixelText-ExtraLight.ufo/glyphs/d.glif new file mode 100644 index 00000000..b215db25 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/d.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/d.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/d.ss01.glif new file mode 100644 index 00000000..4c5d1d52 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/d.ss01.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/dagger.glif b/sources/FixelText-ExtraLight.ufo/glyphs/dagger.glif new file mode 100644 index 00000000..488145ab --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/dagger.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/daggerdbl.glif b/sources/FixelText-ExtraLight.ufo/glyphs/daggerdbl.glif new file mode 100644 index 00000000..9cb80962 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/daggerdbl.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/dcaron.glif b/sources/FixelText-ExtraLight.ufo/glyphs/dcaron.glif new file mode 100644 index 00000000..cd2b32f9 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/dcaron.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + d+caron.salt + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/dcaron.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/dcaron.ss01.glif new file mode 100644 index 00000000..95f3ce7d --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/dcaron.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + d.ss01+caron.salt + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/dchecyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/dchecyr.glif new file mode 100644 index 00000000..32646aac --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/dchecyr.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + д+10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/dcroat.glif b/sources/FixelText-ExtraLight.ufo/glyphs/dcroat.glif new file mode 100644 index 00000000..136281d3 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/dcroat.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + d + com.fontlab.metricsRight + |hbar + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/dcroat.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/dcroat.ss01.glif new file mode 100644 index 00000000..b587e8c4 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/dcroat.ss01.glif @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + d.ss01 + com.fontlab.metricsRight + |hbar + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/de-cy.B_G_R_.glif b/sources/FixelText-ExtraLight.ufo/glyphs/de-cy.B_G_R_.glif new file mode 100644 index 00000000..e6ca3668 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/de-cy.B_G_R_.glif @@ -0,0 +1,77 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + q + com.fontlab.metricsRight + q + com.fontlab.recipe + uni1C81 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/de-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/de-cy.glif new file mode 100644 index 00000000..51329030 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/de-cy.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/de-cy.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/de-cy.ss01.glif new file mode 100644 index 00000000..fcb9c404 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/de-cy.ss01.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/deS_oft-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/deS_oft-cy.glif new file mode 100644 index 00000000..f44dcf06 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/deS_oft-cy.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + д + com.fontlab.metricsRight + ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/degree.glif b/sources/FixelText-ExtraLight.ufo/glyphs/degree.glif new file mode 100644 index 00000000..749605a9 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/degree.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/dekomicyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/dekomicyr.glif new file mode 100644 index 00000000..ab21b22d --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/dekomicyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + d + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/diamondwhite-misc.glif b/sources/FixelText-ExtraLight.ufo/glyphs/diamondwhite-misc.glif new file mode 100644 index 00000000..eda183ed --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/diamondwhite-misc.glif @@ -0,0 +1,145 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =47 + com.fontlab.metricsRight + =47 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/dieresis.alt.glif b/sources/FixelText-ExtraLight.ufo/glyphs/dieresis.alt.glif new file mode 100644 index 00000000..90ada341 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/dieresis.alt.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 1,0.6,0.994,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/dieresis.case.glif b/sources/FixelText-ExtraLight.ufo/glyphs/dieresis.case.glif new file mode 100644 index 00000000..bbd5c0e9 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/dieresis.case.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/dieresis.glif b/sources/FixelText-ExtraLight.ufo/glyphs/dieresis.glif new file mode 100644 index 00000000..85f8dfa5 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/dieresis.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/dieresisacute.glif b/sources/FixelText-ExtraLight.ufo/glyphs/dieresisacute.glif new file mode 100644 index 00000000..dfa7032a --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/dieresisacute.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/dieresiscase.alt.glif b/sources/FixelText-ExtraLight.ufo/glyphs/dieresiscase.alt.glif new file mode 100644 index 00000000..2d85b03a --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/dieresiscase.alt.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 1,0.6,0.994,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/divide.glif b/sources/FixelText-ExtraLight.ufo/glyphs/divide.glif new file mode 100644 index 00000000..c818e587 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/divide.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/djecyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/djecyr.glif new file mode 100644 index 00000000..b4654f68 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/djecyr.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hbar + com.fontlab.metricsRight + h + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/djekomicyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/djekomicyr.glif new file mode 100644 index 00000000..14c2633c --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/djekomicyr.glif @@ -0,0 +1,73 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + d + com.fontlab.metricsRight + njekomicyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/djerv-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/djerv-cy.glif new file mode 100644 index 00000000..b285d58d --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/djerv-cy.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + r() + com.fontlab.metricsRight + п-30 + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/dollar.glif b/sources/FixelText-ExtraLight.ufo/glyphs/dollar.glif new file mode 100644 index 00000000..47cc8808 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/dollar.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + S + com.fontlab.metricsRight + S + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/dotaccent.case.glif b/sources/FixelText-ExtraLight.ufo/glyphs/dotaccent.case.glif new file mode 100644 index 00000000..d3abaa0b --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/dotaccent.case.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/dotaccent.glif b/sources/FixelText-ExtraLight.ufo/glyphs/dotaccent.glif new file mode 100644 index 00000000..21009fb6 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/dotaccent.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/doubleo-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/doubleo-cy.glif new file mode 100644 index 00000000..b0cfb60c --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/doubleo-cy.glif @@ -0,0 +1,91 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + com.fontlab.recipe + o_o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/dramsignarmn.glif b/sources/FixelText-ExtraLight.ufo/glyphs/dramsignarmn.glif new file mode 100644 index 00000000..fcf025fe --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/dramsignarmn.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/dwe-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/dwe-cy.glif new file mode 100644 index 00000000..a987de99 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/dwe-cy.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + д + com.fontlab.metricsRight + д + com.fontlab.recipe + д + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/dze-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/dze-cy.glif new file mode 100644 index 00000000..386a1c76 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/dze-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + s + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/dzeR_eversed-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/dzeR_eversed-cy.glif new file mode 100644 index 00000000..8ecbed3a --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/dzeR_eversed-cy.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |s + com.fontlab.metricsRight + |s + com.fontlab.recipe + s + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/dzeabkhcyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/dzeabkhcyr.glif new file mode 100644 index 00000000..58e9486d --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/dzeabkhcyr.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + z-30 + com.fontlab.metricsRight + з-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/dzelo-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/dzelo-cy.glif new file mode 100644 index 00000000..5aa886fa --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/dzelo-cy.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/dzhecyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/dzhecyr.glif new file mode 100644 index 00000000..86d6ad5a --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/dzhecyr.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/dzjekomicyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/dzjekomicyr.glif new file mode 100644 index 00000000..949ec097 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/dzjekomicyr.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + zjekomicyr + com.fontlab.metricsRight + ц-5 + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/dzwe-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/dzwe-cy.glif new file mode 100644 index 00000000..59e8112d --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/dzwe-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + s + com.fontlab.metricsRight + s + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/dzze-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/dzze-cy.glif new file mode 100644 index 00000000..ef3077dc --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/dzze-cy.glif @@ -0,0 +1,84 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + д + com.fontlab.metricsRight + д-30 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/dzzhecyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/dzzhecyr.glif new file mode 100644 index 00000000..031f3367 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/dzzhecyr.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + д+5 + com.fontlab.metricsRight + ж+5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/e-cy.accented.glif b/sources/FixelText-ExtraLight.ufo/glyphs/e-cy.accented.glif new file mode 100644 index 00000000..27e0da65 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/e-cy.accented.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+acute + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/e-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/e-cy.glif new file mode 100644 index 00000000..499787ce --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/e-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + c + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/e-cy.hist.glif b/sources/FixelText-ExtraLight.ufo/glyphs/e-cy.hist.glif new file mode 100644 index 00000000..58502467 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/e-cy.hist.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + c + com.fontlab.recipe + uni1C83 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/e.glif b/sources/FixelText-ExtraLight.ufo/glyphs/e.glif new file mode 100644 index 00000000..655ea07f --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/e.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/e.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/e.ss01.glif new file mode 100644 index 00000000..e11df4f5 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/e.ss01.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + O-5 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/eacute.glif b/sources/FixelText-ExtraLight.ufo/glyphs/eacute.glif new file mode 100644 index 00000000..4ae4b292 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/eacute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+acute + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/eacute.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/eacute.ss01.glif new file mode 100644 index 00000000..6dbb6cf4 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/eacute.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+acute + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/ebreve.glif b/sources/FixelText-ExtraLight.ufo/glyphs/ebreve.glif new file mode 100644 index 00000000..a9243c96 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/ebreve.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+breve + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/ebreve.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/ebreve.ss01.glif new file mode 100644 index 00000000..6815fd39 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/ebreve.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+breve + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/ecaron.glif b/sources/FixelText-ExtraLight.ufo/glyphs/ecaron.glif new file mode 100644 index 00000000..d16b2575 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/ecaron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+caron + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/ecaron.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/ecaron.ss01.glif new file mode 100644 index 00000000..75f12c55 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/ecaron.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+caron + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/ecircumflex.glif b/sources/FixelText-ExtraLight.ufo/glyphs/ecircumflex.glif new file mode 100644 index 00000000..4188b1e7 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/ecircumflex.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+circumflex + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/ecircumflex.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/ecircumflex.ss01.glif new file mode 100644 index 00000000..3ff529bb --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/ecircumflex.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+circumflex + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/edieresis.glif b/sources/FixelText-ExtraLight.ufo/glyphs/edieresis.glif new file mode 100644 index 00000000..30356f96 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/edieresis.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsLeft + e + com.fontlab.metricsRight + e + com.fontlab.recipe + e+dieresis + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/edieresis.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/edieresis.ss01.glif new file mode 100644 index 00000000..d0bbfa29 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/edieresis.ss01.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsLeft + e + com.fontlab.metricsRight + e + com.fontlab.recipe + e.ss01+dieresis + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/edotaccent.glif b/sources/FixelText-ExtraLight.ufo/glyphs/edotaccent.glif new file mode 100644 index 00000000..9b2cbd00 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/edotaccent.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+dotaccent + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/edotaccent.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/edotaccent.ss01.glif new file mode 100644 index 00000000..5d5555a1 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/edotaccent.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+dotaccent + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/ef-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/ef-cy.glif new file mode 100644 index 00000000..c449afb2 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/ef-cy.glif @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/egrave.glif b/sources/FixelText-ExtraLight.ufo/glyphs/egrave.glif new file mode 100644 index 00000000..592d7942 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/egrave.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+grave + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/egrave.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/egrave.ss01.glif new file mode 100644 index 00000000..fa893807 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/egrave.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+grave + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/eight.glif b/sources/FixelText-ExtraLight.ufo/glyphs/eight.glif new file mode 100644 index 00000000..3c425595 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/eight.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/eight.osf.glif b/sources/FixelText-ExtraLight.ufo/glyphs/eight.osf.glif new file mode 100644 index 00000000..5c060186 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/eight.osf.glif @@ -0,0 +1,15 @@ + + + + + + + + + com.fontlab.metricsLeft + eight + com.fontlab.metricsRight + eight + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/eight.tf.glif b/sources/FixelText-ExtraLight.ufo/glyphs/eight.tf.glif new file mode 100644 index 00000000..5dfdf0b7 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/eight.tf.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/eiotifiedcyr.B_G_R_.glif b/sources/FixelText-ExtraLight.ufo/glyphs/eiotifiedcyr.B_G_R_.glif new file mode 100644 index 00000000..f0fc5c06 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/eiotifiedcyr.B_G_R_.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + c + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/eiotifiedcyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/eiotifiedcyr.glif new file mode 100644 index 00000000..83553cc0 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/eiotifiedcyr.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + c + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/el-cy.B_G_R_.glif b/sources/FixelText-ExtraLight.ufo/glyphs/el-cy.B_G_R_.glif new file mode 100644 index 00000000..b5a5ed09 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/el-cy.B_G_R_.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + v + com.fontlab.metricsRight + v + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/el-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/el-cy.glif new file mode 100644 index 00000000..ef9586a4 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/el-cy.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/el-cy.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/el-cy.ss01.glif new file mode 100644 index 00000000..69fa0df9 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/el-cy.ss01.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/elS_oft-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/elS_oft-cy.glif new file mode 100644 index 00000000..8075d8cb --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/elS_oft-cy.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/elhookcyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/elhookcyr.glif new file mode 100644 index 00000000..f9df2d09 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/elhookcyr.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + н + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/ellipsis.glif b/sources/FixelText-ExtraLight.ufo/glyphs/ellipsis.glif new file mode 100644 index 00000000..fabd3285 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/ellipsis.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/elmiddlehookcyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/elmiddlehookcyr.glif new file mode 100644 index 00000000..d42eebdb --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/elmiddlehookcyr.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + enmiddlehookcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/elsharptailcyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/elsharptailcyr.glif new file mode 100644 index 00000000..361f27a5 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/elsharptailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + ensharptailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/eltailcyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/eltailcyr.glif new file mode 100644 index 00000000..e64e24b4 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/eltailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/em-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/em-cy.glif new file mode 100644 index 00000000..2b21ee49 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/em-cy.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/emS_oft-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/emS_oft-cy.glif new file mode 100644 index 00000000..22e13fa5 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/emS_oft-cy.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + м + com.fontlab.metricsRight + ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/emacron.glif b/sources/FixelText-ExtraLight.ufo/glyphs/emacron.glif new file mode 100644 index 00000000..1f233951 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/emacron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+macron + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/emacron.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/emacron.ss01.glif new file mode 100644 index 00000000..a6464f66 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/emacron.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+macron + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/emdash.case.glif b/sources/FixelText-ExtraLight.ufo/glyphs/emdash.case.glif new file mode 100644 index 00000000..4e5dc190 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/emdash.case.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/emdash.glif b/sources/FixelText-ExtraLight.ufo/glyphs/emdash.glif new file mode 100644 index 00000000..8d0978cf --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/emdash.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/emsharptailcyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/emsharptailcyr.glif new file mode 100644 index 00000000..e3c8351a --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/emsharptailcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + м + com.fontlab.metricsRight + ensharptailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/en-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/en-cy.glif new file mode 100644 index 00000000..f3199c7d --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/en-cy.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/enclosingcirclecomb.glif b/sources/FixelText-ExtraLight.ufo/glyphs/enclosingcirclecomb.glif new file mode 100644 index 00000000..9030a6ed --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/enclosingcirclecomb.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/endash.case.glif b/sources/FixelText-ExtraLight.ufo/glyphs/endash.case.glif new file mode 100644 index 00000000..18f5a192 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/endash.case.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/endash.glif b/sources/FixelText-ExtraLight.ufo/glyphs/endash.glif new file mode 100644 index 00000000..6f55afc7 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/endash.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/eng.glif b/sources/FixelText-ExtraLight.ufo/glyphs/eng.glif new file mode 100644 index 00000000..a96851b2 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/eng.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + n + com.fontlab.metricsRight + dotlessj + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/engecyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/engecyr.glif new file mode 100644 index 00000000..6661c972 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/engecyr.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/enhookcyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/enhookcyr.glif new file mode 100644 index 00000000..3d3850eb --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/enhookcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/enhookleftcyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/enhookleftcyr.glif new file mode 100644 index 00000000..b65067f4 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/enhookleftcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + j + com.fontlab.metricsRight + н + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/enmiddlehookcyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/enmiddlehookcyr.glif new file mode 100644 index 00000000..b16c4f6b --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/enmiddlehookcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + softsign-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/ensharptailcyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/ensharptailcyr.glif new file mode 100644 index 00000000..6fc7bf79 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/ensharptailcyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + д + com.fontlab.recipe + entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/entailcyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/entailcyr.glif new file mode 100644 index 00000000..d310491c --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/entailcyr.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + ц + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/eogonek.glif b/sources/FixelText-ExtraLight.ufo/glyphs/eogonek.glif new file mode 100644 index 00000000..0e374e3c --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/eogonek.glif @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + e+ogonek + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/eogonek.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/eogonek.ss01.glif new file mode 100644 index 00000000..45c82c0a --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/eogonek.ss01.glif @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + e.ss01+ogonek + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/equal.glif b/sources/FixelText-ExtraLight.ufo/glyphs/equal.glif new file mode 100644 index 00000000..87d0c6cf --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/equal.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/er-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/er-cy.glif new file mode 100644 index 00000000..b9111954 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/er-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + p + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/er-cy.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/er-cy.ss01.glif new file mode 100644 index 00000000..491ab814 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/er-cy.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + p.ss01 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/ereversed-cy.accented.glif b/sources/FixelText-ExtraLight.ufo/glyphs/ereversed-cy.accented.glif new file mode 100644 index 00000000..98699ee9 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/ereversed-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + э+acute + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/ereversed-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/ereversed-cy.glif new file mode 100644 index 00000000..d35fecfd --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/ereversed-cy.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |c + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/ereverseddieresiscyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/ereverseddieresiscyr.glif new file mode 100644 index 00000000..aa9155ec --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/ereverseddieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ereversed-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/ertickcyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/ertickcyr.glif new file mode 100644 index 00000000..73f5dc44 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/ertickcyr.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + p + com.fontlab.metricsRight + p + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/es-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/es-cy.glif new file mode 100644 index 00000000..7e44d3b7 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/es-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/estailcyr.B_S_H_.glif b/sources/FixelText-ExtraLight.ufo/glyphs/estailcyr.B_S_H_.glif new file mode 100644 index 00000000..d3852320 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/estailcyr.B_S_H_.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + c + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/estailcyr.C_H_U_.glif b/sources/FixelText-ExtraLight.ufo/glyphs/estailcyr.C_H_U_.glif new file mode 100644 index 00000000..27066ef4 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/estailcyr.C_H_U_.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+cedilla + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/estailcyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/estailcyr.glif new file mode 100644 index 00000000..26992e60 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/estailcyr.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + с + com.fontlab.metricsRight + с + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/estimated.glif b/sources/FixelText-ExtraLight.ufo/glyphs/estimated.glif new file mode 100644 index 00000000..d6489e46 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/estimated.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/eth.glif b/sources/FixelText-ExtraLight.ufo/glyphs/eth.glif new file mode 100644 index 00000000..0aeeeabd --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/eth.glif @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/eturned.glif b/sources/FixelText-ExtraLight.ufo/glyphs/eturned.glif new file mode 100644 index 00000000..c96686d8 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/eturned.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + schwacyr + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/euro.glif b/sources/FixelText-ExtraLight.ufo/glyphs/euro.glif new file mode 100644 index 00000000..1e1641b4 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/euro.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + C + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/exclam.glif b/sources/FixelText-ExtraLight.ufo/glyphs/exclam.glif new file mode 100644 index 00000000..e024d0a9 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/exclam.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/exclamdown.case.glif b/sources/FixelText-ExtraLight.ufo/glyphs/exclamdown.case.glif new file mode 100644 index 00000000..6f9ee40a --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/exclamdown.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + exclamdown + com.fontlab.metricsRight + exclamdown + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/exclamdown.glif b/sources/FixelText-ExtraLight.ufo/glyphs/exclamdown.glif new file mode 100644 index 00000000..6eff6329 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/exclamdown.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/f.glif b/sources/FixelText-ExtraLight.ufo/glyphs/f.glif new file mode 100644 index 00000000..0fe74e35 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/f.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/f.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/f.ss01.glif new file mode 100644 index 00000000..f5855121 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/f.ss01.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/f_f.glif b/sources/FixelText-ExtraLight.ufo/glyphs/f_f.glif new file mode 100644 index 00000000..0fbc774f --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/f_f.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f + com.fontlab.metricsRight + f + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/f_f.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/f_f.ss01.glif new file mode 100644 index 00000000..fa37ec0e --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/f_f.ss01.glif @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f.ss01 + com.fontlab.metricsRight + f.ss01 + com.fontlab.recipe + f.ss01_f.ss01 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/f_f_i.glif b/sources/FixelText-ExtraLight.ufo/glyphs/f_f_i.glif new file mode 100644 index 00000000..132a5bdd --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/f_f_i.glif @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f + com.fontlab.metricsRight + i + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/f_f_i.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/f_f_i.ss01.glif new file mode 100644 index 00000000..5f9846d7 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/f_f_i.ss01.glif @@ -0,0 +1,88 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f.ss01 + com.fontlab.metricsRight + i + com.fontlab.recipe + f.ss01_f.ss01_i + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/f_f_l.glif b/sources/FixelText-ExtraLight.ufo/glyphs/f_f_l.glif new file mode 100644 index 00000000..47e6a8df --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/f_f_l.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f + com.fontlab.metricsRight + l + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/f_f_l.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/f_f_l.ss01.glif new file mode 100644 index 00000000..57094b31 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/f_f_l.ss01.glif @@ -0,0 +1,86 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f.ss01 + com.fontlab.metricsRight + l.ss01 + com.fontlab.recipe + f.ss01_f.ss01_l.ss01 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/fi.glif b/sources/FixelText-ExtraLight.ufo/glyphs/fi.glif new file mode 100644 index 00000000..38711ccf --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/fi.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f + com.fontlab.metricsRight + i + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/fi.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/fi.ss01.glif new file mode 100644 index 00000000..6bfae381 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/fi.ss01.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f.ss01 + com.fontlab.metricsRight + i + com.fontlab.recipe + f.ss01_i + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/fitacyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/fitacyr.glif new file mode 100644 index 00000000..05f0f429 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/fitacyr.glif @@ -0,0 +1,76 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + obarcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/five.glif b/sources/FixelText-ExtraLight.ufo/glyphs/five.glif new file mode 100644 index 00000000..9c496daa --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/five.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/five.osf.glif b/sources/FixelText-ExtraLight.ufo/glyphs/five.osf.glif new file mode 100644 index 00000000..2a64b08d --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/five.osf.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + five + com.fontlab.metricsRight + five + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/five.tf.glif b/sources/FixelText-ExtraLight.ufo/glyphs/five.tf.glif new file mode 100644 index 00000000..8a9db450 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/five.tf.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/fl.glif b/sources/FixelText-ExtraLight.ufo/glyphs/fl.glif new file mode 100644 index 00000000..a277cd3b --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/fl.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f + com.fontlab.metricsRight + l + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/fl.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/fl.ss01.glif new file mode 100644 index 00000000..7f1e09e6 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/fl.ss01.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f.ss01 + com.fontlab.metricsRight + l.ss01 + com.fontlab.recipe + f.ss01_l.ss01 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/floretteblack.glif b/sources/FixelText-ExtraLight.ufo/glyphs/floretteblack.glif new file mode 100644 index 00000000..81b781c7 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/floretteblack.glif @@ -0,0 +1,522 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/floretteoutlinedpetalledblackeight.glif b/sources/FixelText-ExtraLight.ufo/glyphs/floretteoutlinedpetalledblackeight.glif new file mode 100644 index 00000000..8da6f394 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/floretteoutlinedpetalledblackeight.glif @@ -0,0 +1,693 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/florettewhite.glif b/sources/FixelText-ExtraLight.ufo/glyphs/florettewhite.glif new file mode 100644 index 00000000..2bede2b5 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/florettewhite.glif @@ -0,0 +1,417 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/florin.glif b/sources/FixelText-ExtraLight.ufo/glyphs/florin.glif new file mode 100644 index 00000000..03ffe8d7 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/florin.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/flower.glif b/sources/FixelText-ExtraLight.ufo/glyphs/flower.glif new file mode 100644 index 00000000..05a810d3 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/flower.glif @@ -0,0 +1,278 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/four.glif b/sources/FixelText-ExtraLight.ufo/glyphs/four.glif new file mode 100644 index 00000000..f392902c --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/four.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/four.osf.glif b/sources/FixelText-ExtraLight.ufo/glyphs/four.osf.glif new file mode 100644 index 00000000..11b7cee2 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/four.osf.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + four + com.fontlab.metricsRight + four + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/four.tf.glif b/sources/FixelText-ExtraLight.ufo/glyphs/four.tf.glif new file mode 100644 index 00000000..916c801f --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/four.tf.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/fraction.glif b/sources/FixelText-ExtraLight.ufo/glyphs/fraction.glif new file mode 100644 index 00000000..6bc68a9d --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/fraction.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/g.glif b/sources/FixelText-ExtraLight.ufo/glyphs/g.glif new file mode 100644 index 00000000..9408df94 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/g.glif @@ -0,0 +1,94 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/g.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/g.ss01.glif new file mode 100644 index 00000000..127f8718 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/g.ss01.glif @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/gacute.glif b/sources/FixelText-ExtraLight.ufo/glyphs/gacute.glif new file mode 100644 index 00000000..9aa56d49 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/gacute.glif @@ -0,0 +1,109 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + g+acute + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/gacute.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/gacute.ss01.glif new file mode 100644 index 00000000..a093f6c5 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/gacute.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + g.ss01+acute + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/gbreve.glif b/sources/FixelText-ExtraLight.ufo/glyphs/gbreve.glif new file mode 100644 index 00000000..fd01be74 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/gbreve.glif @@ -0,0 +1,119 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + g+breve + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/gbreve.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/gbreve.ss01.glif new file mode 100644 index 00000000..62ddea74 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/gbreve.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + g.ss01+breve + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/gcircumflex.glif b/sources/FixelText-ExtraLight.ufo/glyphs/gcircumflex.glif new file mode 100644 index 00000000..30b8190f --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/gcircumflex.glif @@ -0,0 +1,113 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + g+circumflex + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/gcircumflex.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/gcircumflex.ss01.glif new file mode 100644 index 00000000..0a73d70d --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/gcircumflex.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + g.ss01+circumflex + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/gcommaaccent.glif b/sources/FixelText-ExtraLight.ufo/glyphs/gcommaaccent.glif new file mode 100644 index 00000000..8c0bc029 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/gcommaaccent.glif @@ -0,0 +1,121 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + g+commaaccentcomb.salt + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/gcommaaccent.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/gcommaaccent.ss01.glif new file mode 100644 index 00000000..fe37708c --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/gcommaaccent.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + g.ss01+commaaccentcomb.salt + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/gdotaccent.glif b/sources/FixelText-ExtraLight.ufo/glyphs/gdotaccent.glif new file mode 100644 index 00000000..5d955cd4 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/gdotaccent.glif @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + g+dotaccent + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/gdotaccent.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/gdotaccent.ss01.glif new file mode 100644 index 00000000..9dc91eab --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/gdotaccent.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + g.ss01+dotaccent + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/ge-cy.B_G_R_.glif b/sources/FixelText-ExtraLight.ufo/glyphs/ge-cy.B_G_R_.glif new file mode 100644 index 00000000..21e7e082 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/ge-cy.B_G_R_.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |s+5 + com.fontlab.metricsRight + |s+5 + com.fontlab.recipe + dzeReversed-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/ge-cy.S_R_B_.glif b/sources/FixelText-ExtraLight.ufo/glyphs/ge-cy.S_R_B_.glif new file mode 100644 index 00000000..933a80d4 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/ge-cy.S_R_B_.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + iota-cy+macron + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/ge-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/ge-cy.glif new file mode 100644 index 00000000..8ad18e3a --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/ge-cy.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + т + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/gehookcyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/gehookcyr.glif new file mode 100644 index 00000000..5e93c6b0 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/gehookcyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + г + com.fontlab.metricsRight + enmiddlehookcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/gehookstrokecyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/gehookstrokecyr.glif new file mode 100644 index 00000000..2a421eed --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/gehookstrokecyr.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + gestrokecyr + com.fontlab.metricsRight + gestrokecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/germandbls.glif b/sources/FixelText-ExtraLight.ufo/glyphs/germandbls.glif new file mode 100644 index 00000000..f525efd3 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/germandbls.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + h-5 + com.fontlab.metricsRight + з + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/germandbls.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/germandbls.ss01.glif new file mode 100644 index 00000000..46151687 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/germandbls.ss01.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f.ss01 + com.fontlab.metricsRight + з + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/gestrokecyr.B_S_H_.glif b/sources/FixelText-ExtraLight.ufo/glyphs/gestrokecyr.B_S_H_.glif new file mode 100644 index 00000000..6faf18ca --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/gestrokecyr.B_S_H_.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + г + com.fontlab.metricsRight + gestrokecyr + com.fontlab.recipe + gestrokecyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/gestrokecyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/gestrokecyr.glif new file mode 100644 index 00000000..1f9bec2a --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/gestrokecyr.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + г + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/getailcyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/getailcyr.glif new file mode 100644 index 00000000..9b4fabcd --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/getailcyr.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + г + com.fontlab.metricsRight + г + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/gheupturn-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/gheupturn-cy.glif new file mode 100644 index 00000000..184082f8 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/gheupturn-cy.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + г + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/gjecyr.S_R_B_.glif b/sources/FixelText-ExtraLight.ufo/glyphs/gjecyr.S_R_B_.glif new file mode 100644 index 00000000..4bcd9769 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/gjecyr.S_R_B_.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + iota-cy+macronacute.SRB + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/gjecyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/gjecyr.glif new file mode 100644 index 00000000..b5d4eca7 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/gjecyr.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/grave.case.glif b/sources/FixelText-ExtraLight.ufo/glyphs/grave.case.glif new file mode 100644 index 00000000..abbc6468 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/grave.case.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/grave.glif b/sources/FixelText-ExtraLight.ufo/glyphs/grave.glif new file mode 100644 index 00000000..b053c5ce --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/grave.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/greater.glif b/sources/FixelText-ExtraLight.ufo/glyphs/greater.glif new file mode 100644 index 00000000..d2243252 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/greater.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |less + com.fontlab.metricsRight + |less + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/greaterequal.glif b/sources/FixelText-ExtraLight.ufo/glyphs/greaterequal.glif new file mode 100644 index 00000000..f340e595 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/greaterequal.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/guillemetleft.case.glif b/sources/FixelText-ExtraLight.ufo/glyphs/guillemetleft.case.glif new file mode 100644 index 00000000..4c1f8680 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/guillemetleft.case.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + guilsinglleft + com.fontlab.metricsRight + guilsinglleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/guillemetleft.glif b/sources/FixelText-ExtraLight.ufo/glyphs/guillemetleft.glif new file mode 100644 index 00000000..92eba8f0 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/guillemetleft.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + guilsinglleft + com.fontlab.metricsRight + guilsinglleft + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/guillemetright.case.glif b/sources/FixelText-ExtraLight.ufo/glyphs/guillemetright.case.glif new file mode 100644 index 00000000..79035a1a --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/guillemetright.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |guillemetleft.case + com.fontlab.metricsRight + |guillemetleft.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/guillemetright.glif b/sources/FixelText-ExtraLight.ufo/glyphs/guillemetright.glif new file mode 100644 index 00000000..236fb04d --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/guillemetright.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |guilsinglleft + com.fontlab.metricsRight + |guilsinglleft + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/guilsinglleft.case.glif b/sources/FixelText-ExtraLight.ufo/glyphs/guilsinglleft.case.glif new file mode 100644 index 00000000..af755b30 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/guilsinglleft.case.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/guilsinglleft.glif b/sources/FixelText-ExtraLight.ufo/glyphs/guilsinglleft.glif new file mode 100644 index 00000000..ce2c0b24 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/guilsinglleft.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/guilsinglright.case.glif b/sources/FixelText-ExtraLight.ufo/glyphs/guilsinglright.case.glif new file mode 100644 index 00000000..c73ea9bc --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/guilsinglright.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |guilsinglleft + com.fontlab.metricsRight + |guilsinglleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/guilsinglright.glif b/sources/FixelText-ExtraLight.ufo/glyphs/guilsinglright.glif new file mode 100644 index 00000000..ea2fbcd6 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/guilsinglright.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + |guilsinglleft + com.fontlab.metricsRight + |guilsinglleft + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/h.glif b/sources/FixelText-ExtraLight.ufo/glyphs/h.glif new file mode 100644 index 00000000..8a80f04c --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/h.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + com.fontlab.metricsRight + n + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/ha-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/ha-cy.glif new file mode 100644 index 00000000..02d69101 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/ha-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + x + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/haabkhcyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/haabkhcyr.glif new file mode 100644 index 00000000..7e36e422 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/haabkhcyr.glif @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + |o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/hahookcyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/hahookcyr.glif new file mode 100644 index 00000000..0ab649ca --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/hahookcyr.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + x + com.fontlab.metricsRight + x + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/hardsign-cy.B_G_R_.glif b/sources/FixelText-ExtraLight.ufo/glyphs/hardsign-cy.B_G_R_.glif new file mode 100644 index 00000000..5668c84a --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/hardsign-cy.B_G_R_.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/hardsign-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/hardsign-cy.glif new file mode 100644 index 00000000..3bae47ea --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/hardsign-cy.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/hardsign-cy.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/hardsign-cy.ss01.glif new file mode 100644 index 00000000..734c7d39 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/hardsign-cy.ss01.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/hastrokecyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/hastrokecyr.glif new file mode 100644 index 00000000..650a3950 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/hastrokecyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + x + com.fontlab.metricsRight + x + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/hbar.glif b/sources/FixelText-ExtraLight.ufo/glyphs/hbar.glif new file mode 100644 index 00000000..1405ee1b --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/hbar.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + h + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/hcircumflex.glif b/sources/FixelText-ExtraLight.ufo/glyphs/hcircumflex.glif new file mode 100644 index 00000000..accb3524 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/hcircumflex.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + h+circumflex.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/heart.glif b/sources/FixelText-ExtraLight.ufo/glyphs/heart.glif new file mode 100644 index 00000000..e490b465 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/heart.glif @@ -0,0 +1,320 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/heartwhite.glif b/sources/FixelText-ExtraLight.ufo/glyphs/heartwhite.glif new file mode 100644 index 00000000..89d85b60 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/heartwhite.glif @@ -0,0 +1,189 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =43 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/hryvnia.glif b/sources/FixelText-ExtraLight.ufo/glyphs/hryvnia.glif new file mode 100644 index 00000000..b15ee2f8 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/hryvnia.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/hundredmillionscomb-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/hundredmillionscomb-cy.glif new file mode 100644 index 00000000..a4c0f256 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/hundredmillionscomb-cy.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/hundredthousandscombcyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/hundredthousandscombcyr.glif new file mode 100644 index 00000000..69db9118 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/hundredthousandscombcyr.glif @@ -0,0 +1,141 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/hungarumlaut.case.glif b/sources/FixelText-ExtraLight.ufo/glyphs/hungarumlaut.case.glif new file mode 100644 index 00000000..58bc9ea1 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/hungarumlaut.case.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/hungarumlaut.glif b/sources/FixelText-ExtraLight.ufo/glyphs/hungarumlaut.glif new file mode 100644 index 00000000..191b76c2 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/hungarumlaut.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/hwe-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/hwe-cy.glif new file mode 100644 index 00000000..dc6e6efb --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/hwe-cy.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + h + com.fontlab.metricsRight + h + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/hyphen.case.glif b/sources/FixelText-ExtraLight.ufo/glyphs/hyphen.case.glif new file mode 100644 index 00000000..fe64ed29 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/hyphen.case.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.metricsLeft + hyphen + com.fontlab.metricsRight + hyphen + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/hyphen.glif b/sources/FixelText-ExtraLight.ufo/glyphs/hyphen.glif new file mode 100644 index 00000000..f6a28d9b --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/hyphen.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/i-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/i-cy.glif new file mode 100644 index 00000000..26231a96 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/i-cy.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + i + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/i.glif b/sources/FixelText-ExtraLight.ufo/glyphs/i.glif new file mode 100644 index 00000000..c890fc69 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/i.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + dotlessi+dotaccent + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/ia-cy.accented.glif b/sources/FixelText-ExtraLight.ufo/glyphs/ia-cy.accented.glif new file mode 100644 index 00000000..b2a6b5c4 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/ia-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + я+acute + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/ia-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/ia-cy.glif new file mode 100644 index 00000000..f98ca0ae --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/ia-cy.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/ia-cy.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/ia-cy.ss01.glif new file mode 100644 index 00000000..6e7ef9ec --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/ia-cy.ss01.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/iacute.glif b/sources/FixelText-ExtraLight.ufo/glyphs/iacute.glif new file mode 100644 index 00000000..cc92920a --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/iacute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + dotlessi+acute + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/ibreve.glif b/sources/FixelText-ExtraLight.ufo/glyphs/ibreve.glif new file mode 100644 index 00000000..c1fb204b --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/ibreve.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + dotlessi+breve + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/icircumflex.glif b/sources/FixelText-ExtraLight.ufo/glyphs/icircumflex.glif new file mode 100644 index 00000000..d725aa84 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/icircumflex.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + dotlessi+circumflex + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/idieresis.glif b/sources/FixelText-ExtraLight.ufo/glyphs/idieresis.glif new file mode 100644 index 00000000..4b995dca --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/idieresis.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + idotless+dieresis.alt + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/idieresiscyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/idieresiscyr.glif new file mode 100644 index 00000000..9bd1fa96 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/idieresiscyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ii-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/idotless.glif b/sources/FixelText-ExtraLight.ufo/glyphs/idotless.glif new file mode 100644 index 00000000..559855ae --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/idotless.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/ie-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/ie-cy.glif new file mode 100644 index 00000000..568f1288 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/ie-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/ie-cy.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/ie-cy.ss01.glif new file mode 100644 index 00000000..7c60b1cd --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/ie-cy.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/iebrevecyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/iebrevecyr.glif new file mode 100644 index 00000000..7c03b1b2 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/iebrevecyr.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+breve + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/iegravecyr.S_R_B_.glif b/sources/FixelText-ExtraLight.ufo/glyphs/iegravecyr.S_R_B_.glif new file mode 100644 index 00000000..e91cc8ac --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/iegravecyr.S_R_B_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+grave + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/iegravecyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/iegravecyr.glif new file mode 100644 index 00000000..53493c51 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/iegravecyr.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+grave + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/igrave.glif b/sources/FixelText-ExtraLight.ufo/glyphs/igrave.glif new file mode 100644 index 00000000..cfc2cea0 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/igrave.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + dotlessi+grave + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/igravecyr.S_R_B_.glif b/sources/FixelText-ExtraLight.ufo/glyphs/igravecyr.S_R_B_.glif new file mode 100644 index 00000000..5e05dc1c --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/igravecyr.S_R_B_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+grave + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/igravecyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/igravecyr.glif new file mode 100644 index 00000000..4827b36f --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/igravecyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ii-cy+grave + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/ii-cy.B_G_R_.glif b/sources/FixelText-ExtraLight.ufo/glyphs/ii-cy.B_G_R_.glif new file mode 100644 index 00000000..d46f83b8 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/ii-cy.B_G_R_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/ii-cy.accented.glif b/sources/FixelText-ExtraLight.ufo/glyphs/ii-cy.accented.glif new file mode 100644 index 00000000..abf100f3 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/ii-cy.accented.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + и+acute + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/ii-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/ii-cy.glif new file mode 100644 index 00000000..2be10224 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/ii-cy.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/iishort-cy.B_G_R_.glif b/sources/FixelText-ExtraLight.ufo/glyphs/iishort-cy.B_G_R_.glif new file mode 100644 index 00000000..a51cc1ab --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/iishort-cy.B_G_R_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/iishort-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/iishort-cy.glif new file mode 100644 index 00000000..a2fb0e35 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/iishort-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + icyr+breve + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/ij.glif b/sources/FixelText-ExtraLight.ufo/glyphs/ij.glif new file mode 100644 index 00000000..d015aacf --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/ij.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + i + com.fontlab.metricsRight + j + com.fontlab.recipe + i_j + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/imacron.glif b/sources/FixelText-ExtraLight.ufo/glyphs/imacron.glif new file mode 100644 index 00000000..70b10a77 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/imacron.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =5 + com.fontlab.metricsRight + =5 + com.fontlab.recipe + idotless+macron + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/imacroncyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/imacroncyr.glif new file mode 100644 index 00000000..81473a7d --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/imacroncyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ii-cy+macron + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/increment.glif b/sources/FixelText-ExtraLight.ufo/glyphs/increment.glif new file mode 100644 index 00000000..36e39374 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/increment.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/infinity.glif b/sources/FixelText-ExtraLight.ufo/glyphs/infinity.glif new file mode 100644 index 00000000..3f11a145 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/infinity.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/integral.glif b/sources/FixelText-ExtraLight.ufo/glyphs/integral.glif new file mode 100644 index 00000000..f38c3b42 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/integral.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/io-cy.accented.glif b/sources/FixelText-ExtraLight.ufo/glyphs/io-cy.accented.glif new file mode 100644 index 00000000..a0323c4e --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/io-cy.accented.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsLeft + e + com.fontlab.metricsRight + e + com.fontlab.recipe + e+dieresisacute + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/io-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/io-cy.glif new file mode 100644 index 00000000..dca90bc3 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/io-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + edieresis + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/io-cy.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/io-cy.ss01.glif new file mode 100644 index 00000000..87554078 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/io-cy.ss01.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + edieresis.ss01 + com.schriftgestaltung.Glyphs.ComponentInfo + + + alignment + -1 + index + 0 + name + edieresis.ss01 + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/iogonek.glif b/sources/FixelText-ExtraLight.ufo/glyphs/iogonek.glif new file mode 100644 index 00000000..5d748bdc --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/iogonek.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + i+ogonek + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/iota-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/iota-cy.glif new file mode 100644 index 00000000..a6f47cc5 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/iota-cy.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l.ss01 + com.fontlab.metricsRight + l.ss01 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/iotifieda-cy.B_G_R_.glif b/sources/FixelText-ExtraLight.ufo/glyphs/iotifieda-cy.B_G_R_.glif new file mode 100644 index 00000000..b3dea0be --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/iotifieda-cy.B_G_R_.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + el-cy.BGR + com.fontlab.recipe + iotifieda-cy + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/iotifieda-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/iotifieda-cy.glif new file mode 100644 index 00000000..53932f6e --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/iotifieda-cy.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + yusClosedlittle-cy + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/iotifieda-cy.hist.glif b/sources/FixelText-ExtraLight.ufo/glyphs/iotifieda-cy.hist.glif new file mode 100644 index 00000000..4ef85e28 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/iotifieda-cy.hist.glif @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + reversedzecyr + com.fontlab.metricsRight + a + public.markColor + 0.6,0.997,1,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/ishortsharptailcyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/ishortsharptailcyr.glif new file mode 100644 index 00000000..517b6599 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/ishortsharptailcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + й + com.fontlab.metricsRight + ensharptailcyr + com.fontlab.recipe + й + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/itilde.glif b/sources/FixelText-ExtraLight.ufo/glyphs/itilde.glif new file mode 100644 index 00000000..c2df300c --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/itilde.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + dotlessi+tilde + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/iu-cy.B_G_R_.glif b/sources/FixelText-ExtraLight.ufo/glyphs/iu-cy.B_G_R_.glif new file mode 100644 index 00000000..476090f2 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/iu-cy.B_G_R_.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + o + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/iu-cy.accented.glif b/sources/FixelText-ExtraLight.ufo/glyphs/iu-cy.accented.glif new file mode 100644 index 00000000..0164eeb9 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/iu-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ю+acute + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/iu-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/iu-cy.glif new file mode 100644 index 00000000..3ecce1fb --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/iu-cy.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/izhitsacyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/izhitsacyr.glif new file mode 100644 index 00000000..dcf88824 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/izhitsacyr.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + v + com.fontlab.metricsRight + + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/izhitsagravedblcyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/izhitsagravedblcyr.glif new file mode 100644 index 00000000..e415e191 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/izhitsagravedblcyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + com.fontlab.metricsLeft + izhitsacyr + com.fontlab.metricsRight + izhitsacyr + com.fontlab.recipe + izhitsacyr+hungarumlaut + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/j.glif b/sources/FixelText-ExtraLight.ufo/glyphs/j.glif new file mode 100644 index 00000000..e4e47c30 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/j.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + i + com.fontlab.recipe + dotlessj+dotaccent + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/jcircumflex.glif b/sources/FixelText-ExtraLight.ufo/glyphs/jcircumflex.glif new file mode 100644 index 00000000..8af68a1a --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/jcircumflex.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + dotlessj+circumflex + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/jdotless.glif b/sources/FixelText-ExtraLight.ufo/glyphs/jdotless.glif new file mode 100644 index 00000000..791cf82c --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/jdotless.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + l + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/je-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/je-cy.glif new file mode 100644 index 00000000..c65c41c1 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/je-cy.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + j + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/k.glif b/sources/FixelText-ExtraLight.ufo/glyphs/k.glif new file mode 100644 index 00000000..e6d494d3 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/k.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/ka-cy.B_G_R_.glif b/sources/FixelText-ExtraLight.ufo/glyphs/ka-cy.B_G_R_.glif new file mode 100644 index 00000000..4b4b8a1d --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/ka-cy.B_G_R_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + k + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/ka-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/ka-cy.glif new file mode 100644 index 00000000..a9f75c80 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/ka-cy.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + k + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/kaaleutcyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/kaaleutcyr.glif new file mode 100644 index 00000000..eeb6bd3a --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/kaaleutcyr.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + k + com.fontlab.metricsRight + k + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/kabashkcyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/kabashkcyr.glif new file mode 100644 index 00000000..0af4ec84 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/kabashkcyr.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hardsign-cy + com.fontlab.metricsRight + k + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/kahookcyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/kahookcyr.glif new file mode 100644 index 00000000..557db2d7 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/kahookcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + n + com.fontlab.metricsRight + k+10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/kastrokecyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/kastrokecyr.glif new file mode 100644 index 00000000..467fb9b2 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/kastrokecyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hbar + com.fontlab.metricsRight + k + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/katailcyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/katailcyr.glif new file mode 100644 index 00000000..41793814 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/katailcyr.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + k + com.fontlab.metricsRight + к-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/kaverticalstrokecyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/kaverticalstrokecyr.glif new file mode 100644 index 00000000..a621a327 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/kaverticalstrokecyr.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + k + com.fontlab.metricsRight + k + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/kcommaaccent.glif b/sources/FixelText-ExtraLight.ufo/glyphs/kcommaaccent.glif new file mode 100644 index 00000000..8f4c0e50 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/kcommaaccent.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsLeft + k + com.fontlab.metricsRight + k + com.fontlab.recipe + k+commaaccentcomb + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/kgreenlandic.glif b/sources/FixelText-ExtraLight.ufo/glyphs/kgreenlandic.glif new file mode 100644 index 00000000..ab7187a3 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/kgreenlandic.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + kacyr + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/kjecyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/kjecyr.glif new file mode 100644 index 00000000..7bd70db2 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/kjecyr.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/knightblack.glif b/sources/FixelText-ExtraLight.ufo/glyphs/knightblack.glif new file mode 100644 index 00000000..59d9394b --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/knightblack.glif @@ -0,0 +1,313 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/knightwhite.glif b/sources/FixelText-ExtraLight.ufo/glyphs/knightwhite.glif new file mode 100644 index 00000000..9f145d85 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/knightwhite.glif @@ -0,0 +1,320 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/koppacyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/koppacyr.glif new file mode 100644 index 00000000..e82690a5 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/koppacyr.glif @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + c-20 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/ksicyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/ksicyr.glif new file mode 100644 index 00000000..0bcac704 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/ksicyr.glif @@ -0,0 +1,102 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + з-10 + com.fontlab.metricsRight + з + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/l.glif b/sources/FixelText-ExtraLight.ufo/glyphs/l.glif new file mode 100644 index 00000000..c4552e71 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/l.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/l.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/l.ss01.glif new file mode 100644 index 00000000..0f051ac0 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/l.ss01.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/lacute.glif b/sources/FixelText-ExtraLight.ufo/glyphs/lacute.glif new file mode 100644 index 00000000..ff5d267b --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/lacute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l+acute.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/lacute.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/lacute.ss01.glif new file mode 100644 index 00000000..ab9b5db8 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/lacute.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l.ss01+acute.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/layerinfo.plist b/sources/FixelText-ExtraLight.ufo/glyphs/layerinfo.plist new file mode 100644 index 00000000..8c198655 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/layerinfo.plist @@ -0,0 +1,21 @@ + + + + + lib + + com.fontlab.layer.name + Body + com.fontlab.layer.opacity + 1 + com.fontlab.layer.visible + + com.fontlab.layer.locked + + com.fontlab.layer.service + + com.fontlab.layer.wireframe + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/lcaron.glif b/sources/FixelText-ExtraLight.ufo/glyphs/lcaron.glif new file mode 100644 index 00000000..dd20fa5f --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/lcaron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l+caron.salt + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/lcaron.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/lcaron.ss01.glif new file mode 100644 index 00000000..6f7004a6 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/lcaron.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l.ss01+caron.salt + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/lcommaaccent.glif b/sources/FixelText-ExtraLight.ufo/glyphs/lcommaaccent.glif new file mode 100644 index 00000000..762f559f --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/lcommaaccent.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l+commaaccentcomb + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/lcommaaccent.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/lcommaaccent.ss01.glif new file mode 100644 index 00000000..b63dd4c1 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/lcommaaccent.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l.ss01+commaaccentcomb + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/ldot.glif b/sources/FixelText-ExtraLight.ufo/glyphs/ldot.glif new file mode 100644 index 00000000..cd0e0870 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/ldot.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/ldot.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/ldot.ss01.glif new file mode 100644 index 00000000..13566408 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/ldot.ss01.glif @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + l.ss01_periodcentered + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/leo.glif b/sources/FixelText-ExtraLight.ufo/glyphs/leo.glif new file mode 100644 index 00000000..ffa3b3ee --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/leo.glif @@ -0,0 +1,494 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/less.glif b/sources/FixelText-ExtraLight.ufo/glyphs/less.glif new file mode 100644 index 00000000..4a821f4f --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/less.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/lessequal.glif b/sources/FixelText-ExtraLight.ufo/glyphs/lessequal.glif new file mode 100644 index 00000000..e13425e1 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/lessequal.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/lhacyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/lhacyr.glif new file mode 100644 index 00000000..8fc957ed --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/lhacyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + х + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/ljecyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/ljecyr.glif new file mode 100644 index 00000000..aacc0d57 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/ljecyr.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + ь + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/ljecyr.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/ljecyr.ss01.glif new file mode 100644 index 00000000..82a16e1c --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/ljecyr.ss01.glif @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + ь + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/ljekomicyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/ljekomicyr.glif new file mode 100644 index 00000000..ef20d625 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/ljekomicyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + njekomicyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/longs.glif b/sources/FixelText-ExtraLight.ufo/glyphs/longs.glif new file mode 100644 index 00000000..3fb98a2e --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/longs.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + n + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/lslash.glif b/sources/FixelText-ExtraLight.ufo/glyphs/lslash.glif new file mode 100644 index 00000000..29fd2fab --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/lslash.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Lslash+12 + com.fontlab.metricsRight + |Lslash+12 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/lslash.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/lslash.ss01.glif new file mode 100644 index 00000000..bffe5699 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/lslash.ss01.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Lslash-10 + com.fontlab.metricsRight + |Lslash + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/m.glif b/sources/FixelText-ExtraLight.ufo/glyphs/m.glif new file mode 100644 index 00000000..8af66337 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/m.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + n + com.fontlab.metricsRight + n + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/macron-fwd.alt.glif b/sources/FixelText-ExtraLight.ufo/glyphs/macron-fwd.alt.glif new file mode 100644 index 00000000..c0f79d48 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/macron-fwd.alt.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/macron-fwd.glif b/sources/FixelText-ExtraLight.ufo/glyphs/macron-fwd.glif new file mode 100644 index 00000000..5fc1668c --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/macron-fwd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/macron.case.glif b/sources/FixelText-ExtraLight.ufo/glyphs/macron.case.glif new file mode 100644 index 00000000..e9a36c9c --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/macron.case.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/macron.glif b/sources/FixelText-ExtraLight.ufo/glyphs/macron.glif new file mode 100644 index 00000000..bc4ec51e --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/macron.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/macronacute.S_R_B_.glif b/sources/FixelText-ExtraLight.ufo/glyphs/macronacute.S_R_B_.glif new file mode 100644 index 00000000..5a383b32 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/macronacute.S_R_B_.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + macron+acute + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/millionscombcyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/millionscombcyr.glif new file mode 100644 index 00000000..b2f6dce9 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/millionscombcyr.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/minus.glif b/sources/FixelText-ExtraLight.ufo/glyphs/minus.glif new file mode 100644 index 00000000..9aacf6d7 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/minus.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/minute.glif b/sources/FixelText-ExtraLight.ufo/glyphs/minute.glif new file mode 100644 index 00000000..c03aeb64 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/minute.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/mu.glif b/sources/FixelText-ExtraLight.ufo/glyphs/mu.glif new file mode 100644 index 00000000..3c3d2e8b --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/mu.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + p + com.fontlab.metricsRight + u + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/multiply.glif b/sources/FixelText-ExtraLight.ufo/glyphs/multiply.glif new file mode 100644 index 00000000..2a0b5dbf --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/multiply.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/n.glif b/sources/FixelText-ExtraLight.ufo/glyphs/n.glif new file mode 100644 index 00000000..30224b9d --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/n.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/nacute.glif b/sources/FixelText-ExtraLight.ufo/glyphs/nacute.glif new file mode 100644 index 00000000..32d7c2b1 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/nacute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + n+acute + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/napostrophe.glif b/sources/FixelText-ExtraLight.ufo/glyphs/napostrophe.glif new file mode 100644 index 00000000..1a0ee6ab --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/napostrophe.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + com.fontlab.metricsRight + n + com.schriftgestaltung.Glyphs.ComponentInfo + + + alignment + -1 + index + 0 + name + n + + + alignment + -1 + index + 1 + name + quoteright + + + com.schriftgestaltung.Glyphs.rightMetricsKey + n + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/ncaron.glif b/sources/FixelText-ExtraLight.ufo/glyphs/ncaron.glif new file mode 100644 index 00000000..8706f6df --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/ncaron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + n+caron + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/ncommaaccent.glif b/sources/FixelText-ExtraLight.ufo/glyphs/ncommaaccent.glif new file mode 100644 index 00000000..26607913 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/ncommaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + n+commaaccentcomb + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/neptune.glif b/sources/FixelText-ExtraLight.ufo/glyphs/neptune.glif new file mode 100644 index 00000000..f159ce23 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/neptune.glif @@ -0,0 +1,125 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ш + com.fontlab.metricsRight + Ш + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/nine.glif b/sources/FixelText-ExtraLight.ufo/glyphs/nine.glif new file mode 100644 index 00000000..ce3e1836 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/nine.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + |six + com.fontlab.metricsRight + |six + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/nine.osf.glif b/sources/FixelText-ExtraLight.ufo/glyphs/nine.osf.glif new file mode 100644 index 00000000..3a449b0e --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/nine.osf.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |six + com.fontlab.metricsRight + |six + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/nine.tf.glif b/sources/FixelText-ExtraLight.ufo/glyphs/nine.tf.glif new file mode 100644 index 00000000..07b292a4 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/nine.tf.glif @@ -0,0 +1,7 @@ + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/njecyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/njecyr.glif new file mode 100644 index 00000000..a783084d --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/njecyr.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + ь + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/njecyr.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/njecyr.ss01.glif new file mode 100644 index 00000000..1dfdbbec --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/njecyr.ss01.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + ь + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/njekomicyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/njekomicyr.glif new file mode 100644 index 00000000..2ede6b88 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/njekomicyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + |u + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/notequal.glif b/sources/FixelText-ExtraLight.ufo/glyphs/notequal.glif new file mode 100644 index 00000000..0b6b9863 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/notequal.glif @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/ntilde.glif b/sources/FixelText-ExtraLight.ufo/glyphs/ntilde.glif new file mode 100644 index 00000000..a122c596 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/ntilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + n+tilde + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/numbersign.glif b/sources/FixelText-ExtraLight.ufo/glyphs/numbersign.glif new file mode 100644 index 00000000..fee8e781 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/numbersign.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/numero.glif b/sources/FixelText-ExtraLight.ufo/glyphs/numero.glif new file mode 100644 index 00000000..b6947cb3 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/numero.glif @@ -0,0 +1,90 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + N + com.fontlab.recipe + N+ordmasculine + com.schriftgestaltung.Glyphs.ComponentInfo + + + alignment + -1 + index + 0 + name + N + + + alignment + -1 + index + 1 + name + ordmasculine + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/numero.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/numero.ss01.glif new file mode 100644 index 00000000..53929898 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/numero.ss01.glif @@ -0,0 +1,95 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + N.ss01 + com.fontlab.metricsRight + ordmasculine + com.fontlab.recipe + N.ss01+ordmasculine + com.schriftgestaltung.Glyphs.ComponentInfo + + + alignment + -1 + index + 0 + name + ordmasculine + + + alignment + -1 + index + 1 + name + N.ss01 + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/o-cy.accented.glif b/sources/FixelText-ExtraLight.ufo/glyphs/o-cy.accented.glif new file mode 100644 index 00000000..38fdad2c --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/o-cy.accented.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+acute + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/o-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/o-cy.glif new file mode 100644 index 00000000..4a48a036 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/o-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/o.glif b/sources/FixelText-ExtraLight.ufo/glyphs/o.glif new file mode 100644 index 00000000..230fb88a --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/o.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/oB_inocular-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/oB_inocular-cy.glif new file mode 100644 index 00000000..bf6ba696 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/oB_inocular-cy.glif @@ -0,0 +1,81 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/oD_oubleM_onocular-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/oD_oubleM_onocular-cy.glif new file mode 100644 index 00000000..dca1dd0b --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/oD_oubleM_onocular-cy.glif @@ -0,0 +1,121 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + com.fontlab.recipe + doubleo-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/oM_onocular-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/oM_onocular-cy.glif new file mode 100644 index 00000000..5a00d140 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/oM_onocular-cy.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/oacute.glif b/sources/FixelText-ExtraLight.ufo/glyphs/oacute.glif new file mode 100644 index 00000000..cf110d31 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/oacute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+acute + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/obarcyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/obarcyr.glif new file mode 100644 index 00000000..681e9342 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/obarcyr.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/obardieresiscyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/obardieresiscyr.glif new file mode 100644 index 00000000..dfff6c99 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/obardieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + obarcyr+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/obreve.glif b/sources/FixelText-ExtraLight.ufo/glyphs/obreve.glif new file mode 100644 index 00000000..30afc991 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/obreve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+breve + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/ocircumflex.glif b/sources/FixelText-ExtraLight.ufo/glyphs/ocircumflex.glif new file mode 100644 index 00000000..a8f2ea44 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/ocircumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+circumflex + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/odieresis.glif b/sources/FixelText-ExtraLight.ufo/glyphs/odieresis.glif new file mode 100644 index 00000000..4a1804b2 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/odieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+dieresis + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/odieresiscyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/odieresiscyr.glif new file mode 100644 index 00000000..9d587cfe --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/odieresiscyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/oe.glif b/sources/FixelText-ExtraLight.ufo/glyphs/oe.glif new file mode 100644 index 00000000..b88d181d --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/oe.glif @@ -0,0 +1,86 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + e + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/oe.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/oe.ss01.glif new file mode 100644 index 00000000..4cbda7bb --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/oe.ss01.glif @@ -0,0 +1,95 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + e.ss01 + public.markColor + 0.6,0.997,1,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/ogonek.glif b/sources/FixelText-ExtraLight.ufo/glyphs/ogonek.glif new file mode 100644 index 00000000..5bb6dbf3 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/ogonek.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/ograve.glif b/sources/FixelText-ExtraLight.ufo/glyphs/ograve.glif new file mode 100644 index 00000000..4641571c --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/ograve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+grave + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/ohungarumlaut.glif b/sources/FixelText-ExtraLight.ufo/glyphs/ohungarumlaut.glif new file mode 100644 index 00000000..b7da6856 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/ohungarumlaut.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+hungarumlaut + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/omacron.glif b/sources/FixelText-ExtraLight.ufo/glyphs/omacron.glif new file mode 100644 index 00000000..111c4c38 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/omacron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+macron + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/omegaB_road-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/omegaB_road-cy.glif new file mode 100644 index 00000000..2fd774c5 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/omegaB_road-cy.glif @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o+5 + com.fontlab.metricsRight + o+5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/omegacyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/omegacyr.glif new file mode 100644 index 00000000..aace87f0 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/omegacyr.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + w + com.fontlab.metricsRight + w + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/omegaroundcyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/omegaroundcyr.glif new file mode 100644 index 00000000..faa0b4ca --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/omegaroundcyr.glif @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/omegatitlocyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/omegatitlocyr.glif new file mode 100644 index 00000000..4b00ab61 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/omegatitlocyr.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o+5 + com.fontlab.metricsRight + o+5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/omultiocular-cy.alt.glif b/sources/FixelText-ExtraLight.ufo/glyphs/omultiocular-cy.alt.glif new file mode 100644 index 00000000..6cee5a5c --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/omultiocular-cy.alt.glif @@ -0,0 +1,367 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + oMonocular-cy + com.fontlab.metricsRight + oMonocular-cy + public.markColor + 0.6,0.997,1,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/omultiocular-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/omultiocular-cy.glif new file mode 100644 index 00000000..8d2b9500 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/omultiocular-cy.glif @@ -0,0 +1,516 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + oMonocular-cy + com.fontlab.metricsRight + oMonocular-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/one.glif b/sources/FixelText-ExtraLight.ufo/glyphs/one.glif new file mode 100644 index 00000000..884e2cf8 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/one.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =40 + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/one.osf.glif b/sources/FixelText-ExtraLight.ufo/glyphs/one.osf.glif new file mode 100644 index 00000000..e0f04e36 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/one.osf.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + one + com.fontlab.metricsRight + one + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/one.tf.glif b/sources/FixelText-ExtraLight.ufo/glyphs/one.tf.glif new file mode 100644 index 00000000..e852b3a8 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/one.tf.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/onehalf.glif b/sources/FixelText-ExtraLight.ufo/glyphs/onehalf.glif new file mode 100644 index 00000000..46a8ba51 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/onehalf.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/onequarter.glif b/sources/FixelText-ExtraLight.ufo/glyphs/onequarter.glif new file mode 100644 index 00000000..71d67b18 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/onequarter.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/onesuperior.glif b/sources/FixelText-ExtraLight.ufo/glyphs/onesuperior.glif new file mode 100644 index 00000000..84f2b073 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/onesuperior.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/ordfeminine.glif b/sources/FixelText-ExtraLight.ufo/glyphs/ordfeminine.glif new file mode 100644 index 00000000..5004f808 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/ordfeminine.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/ordmasculine.glif b/sources/FixelText-ExtraLight.ufo/glyphs/ordmasculine.glif new file mode 100644 index 00000000..2e85900b --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/ordmasculine.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/oslash.glif b/sources/FixelText-ExtraLight.ufo/glyphs/oslash.glif new file mode 100644 index 00000000..2ad1b2e2 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/oslash.glif @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/oslashacute.glif b/sources/FixelText-ExtraLight.ufo/glyphs/oslashacute.glif new file mode 100644 index 00000000..1aeb810e --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/oslashacute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + oslash+acute + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/otcyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/otcyr.glif new file mode 100644 index 00000000..01f55744 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/otcyr.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsRight + w + com.fontlab.recipe + omegacyr+uni2DEE + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/otilde.glif b/sources/FixelText-ExtraLight.ufo/glyphs/otilde.glif new file mode 100644 index 00000000..8c6dcca2 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/otilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+tilde + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/p.glif b/sources/FixelText-ExtraLight.ufo/glyphs/p.glif new file mode 100644 index 00000000..5890d705 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/p.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/p.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/p.ss01.glif new file mode 100644 index 00000000..4201181b --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/p.ss01.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/palatcombcyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/palatcombcyr.glif new file mode 100644 index 00000000..d835d747 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/palatcombcyr.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/palochkacyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/palochkacyr.glif new file mode 100644 index 00000000..393c2a5b --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/palochkacyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/paragraph.glif b/sources/FixelText-ExtraLight.ufo/glyphs/paragraph.glif new file mode 100644 index 00000000..b0dd0b5a --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/paragraph.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |P + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/parenleft.case.glif b/sources/FixelText-ExtraLight.ufo/glyphs/parenleft.case.glif new file mode 100644 index 00000000..46e665a2 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/parenleft.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |parenright.case + com.fontlab.metricsRight + |parenright.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/parenleft.glif b/sources/FixelText-ExtraLight.ufo/glyphs/parenleft.glif new file mode 100644 index 00000000..b290f09a --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/parenleft.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/parenright.case.glif b/sources/FixelText-ExtraLight.ufo/glyphs/parenright.case.glif new file mode 100644 index 00000000..6eeb0870 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/parenright.case.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + parenright + com.fontlab.metricsRight + parenright + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/parenright.glif b/sources/FixelText-ExtraLight.ufo/glyphs/parenright.glif new file mode 100644 index 00000000..215e9759 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/parenright.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/partialdiff.glif b/sources/FixelText-ExtraLight.ufo/glyphs/partialdiff.glif new file mode 100644 index 00000000..f5f1abab --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/partialdiff.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/pe-cy.B_G_R_.glif b/sources/FixelText-ExtraLight.ufo/glyphs/pe-cy.B_G_R_.glif new file mode 100644 index 00000000..bf4a6180 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/pe-cy.B_G_R_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + n + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/pe-cy.S_R_B_.glif b/sources/FixelText-ExtraLight.ufo/glyphs/pe-cy.S_R_B_.glif new file mode 100644 index 00000000..043c713d --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/pe-cy.S_R_B_.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+macron-fwd.alt + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/pe-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/pe-cy.glif new file mode 100644 index 00000000..5309a857 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/pe-cy.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/pehookcyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/pehookcyr.glif new file mode 100644 index 00000000..844bdbb1 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/pehookcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + п + com.fontlab.metricsRight + enmiddlehookcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/percent.glif b/sources/FixelText-ExtraLight.ufo/glyphs/percent.glif new file mode 100644 index 00000000..852a96f5 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/percent.glif @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/period.glif b/sources/FixelText-ExtraLight.ufo/glyphs/period.glif new file mode 100644 index 00000000..e1fb3f34 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/period.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/periodcentered.glif b/sources/FixelText-ExtraLight.ufo/glyphs/periodcentered.glif new file mode 100644 index 00000000..15780e02 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/periodcentered.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/perthousand.glif b/sources/FixelText-ExtraLight.ufo/glyphs/perthousand.glif new file mode 100644 index 00000000..7e87b00c --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/perthousand.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/petailcyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/petailcyr.glif new file mode 100644 index 00000000..9e4e66b5 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/petailcyr.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + п + com.fontlab.metricsRight + entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/pi.glif b/sources/FixelText-ExtraLight.ufo/glyphs/pi.glif new file mode 100644 index 00000000..1f412064 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/pi.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f + com.fontlab.metricsRight + t + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/plus.glif b/sources/FixelText-ExtraLight.ufo/glyphs/plus.glif new file mode 100644 index 00000000..cc3279b3 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/plus.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/plusminus.glif b/sources/FixelText-ExtraLight.ufo/glyphs/plusminus.glif new file mode 100644 index 00000000..50c658f4 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/plusminus.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/pokrytiecombcyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/pokrytiecombcyr.glif new file mode 100644 index 00000000..6799fb17 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/pokrytiecombcyr.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/product.glif b/sources/FixelText-ExtraLight.ufo/glyphs/product.glif new file mode 100644 index 00000000..fbe57b4e --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/product.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/proportional.glif b/sources/FixelText-ExtraLight.ufo/glyphs/proportional.glif new file mode 100644 index 00000000..0852128f --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/proportional.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/psicyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/psicyr.glif new file mode 100644 index 00000000..3e171710 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/psicyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + u + com.fontlab.metricsRight + |u + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/q.glif b/sources/FixelText-ExtraLight.ufo/glyphs/q.glif new file mode 100644 index 00000000..30e03056 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/q.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/q.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/q.ss01.glif new file mode 100644 index 00000000..217d1979 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/q.ss01.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/qacyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/qacyr.glif new file mode 100644 index 00000000..fe927b1f --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/qacyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + q + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/question.glif b/sources/FixelText-ExtraLight.ufo/glyphs/question.glif new file mode 100644 index 00000000..8ae1a357 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/question.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/questiondown.case.glif b/sources/FixelText-ExtraLight.ufo/glyphs/questiondown.case.glif new file mode 100644 index 00000000..ba8f7653 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/questiondown.case.glif @@ -0,0 +1,19 @@ + + + + + + + + + com.fontlab.metricsLeft + |question + com.fontlab.metricsRight + |question + com.fontlab.recipe + questiondown + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/questiondown.glif b/sources/FixelText-ExtraLight.ufo/glyphs/questiondown.glif new file mode 100644 index 00000000..8ba6cc42 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/questiondown.glif @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |question + com.fontlab.metricsRight + |question + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/quotedbl.glif b/sources/FixelText-ExtraLight.ufo/glyphs/quotedbl.glif new file mode 100644 index 00000000..def53f25 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/quotedbl.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/quotedblbase.glif b/sources/FixelText-ExtraLight.ufo/glyphs/quotedblbase.glif new file mode 100644 index 00000000..80cc1c4c --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/quotedblbase.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + comma + com.fontlab.metricsRight + comma + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/quotedblleft.glif b/sources/FixelText-ExtraLight.ufo/glyphs/quotedblleft.glif new file mode 100644 index 00000000..6170ce02 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/quotedblleft.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + |comma + com.fontlab.metricsRight + |comma + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/quotedblright.glif b/sources/FixelText-ExtraLight.ufo/glyphs/quotedblright.glif new file mode 100644 index 00000000..ba670b85 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/quotedblright.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.metricsLeft + comma+20 + com.fontlab.metricsRight + comma-20 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/quoteleft.glif b/sources/FixelText-ExtraLight.ufo/glyphs/quoteleft.glif new file mode 100644 index 00000000..9d4497db --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/quoteleft.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + quotedblleft + com.fontlab.metricsRight + quotedblleft + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/quoteright.glif b/sources/FixelText-ExtraLight.ufo/glyphs/quoteright.glif new file mode 100644 index 00000000..bf40d756 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/quoteright.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + com.fontlab.metricsLeft + quotedblright + com.fontlab.metricsRight + quotedblright + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/quotesinglbase.glif b/sources/FixelText-ExtraLight.ufo/glyphs/quotesinglbase.glif new file mode 100644 index 00000000..37251cc6 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/quotesinglbase.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + com.fontlab.recipe + comma + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/quotesingle.glif b/sources/FixelText-ExtraLight.ufo/glyphs/quotesingle.glif new file mode 100644 index 00000000..9d39cac7 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/quotesingle.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/r.glif b/sources/FixelText-ExtraLight.ufo/glyphs/r.glif new file mode 100644 index 00000000..2317b9a8 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/r.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/racute.glif b/sources/FixelText-ExtraLight.ufo/glyphs/racute.glif new file mode 100644 index 00000000..4ed56e59 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/racute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + r+acute + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/radical.glif b/sources/FixelText-ExtraLight.ufo/glyphs/radical.glif new file mode 100644 index 00000000..1a598c9f --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/radical.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + V + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/rcaron.glif b/sources/FixelText-ExtraLight.ufo/glyphs/rcaron.glif new file mode 100644 index 00000000..c9a35e2f --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/rcaron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + r+caron + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/rcommaaccent.glif b/sources/FixelText-ExtraLight.ufo/glyphs/rcommaaccent.glif new file mode 100644 index 00000000..a636d65b --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/rcommaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + r+commaaccentcomb + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/registered.glif b/sources/FixelText-ExtraLight.ufo/glyphs/registered.glif new file mode 100644 index 00000000..e3f1bfd2 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/registered.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/reversedzecyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/reversedzecyr.glif new file mode 100644 index 00000000..788c06cd --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/reversedzecyr.glif @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + + com.fontlab.metricsRight + + com.fontlab.recipe + з + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/rhacyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/rhacyr.glif new file mode 100644 index 00000000..2c591075 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/rhacyr.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + p + com.fontlab.metricsRight + x + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/ring.case.glif b/sources/FixelText-ExtraLight.ufo/glyphs/ring.case.glif new file mode 100644 index 00000000..3538955c --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/ring.case.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/ring.glif b/sources/FixelText-ExtraLight.ufo/glyphs/ring.glif new file mode 100644 index 00000000..832e6434 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/ring.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/rookblack.glif b/sources/FixelText-ExtraLight.ufo/glyphs/rookblack.glif new file mode 100644 index 00000000..b03925d6 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/rookblack.glif @@ -0,0 +1,270 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/ruble.glif b/sources/FixelText-ExtraLight.ufo/glyphs/ruble.glif new file mode 100644 index 00000000..a7a46f6f --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/ruble.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + P + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/s.glif b/sources/FixelText-ExtraLight.ufo/glyphs/s.glif new file mode 100644 index 00000000..bbff1d3e --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/s.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/sacute.glif b/sources/FixelText-ExtraLight.ufo/glyphs/sacute.glif new file mode 100644 index 00000000..75186f38 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/sacute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + s+acute + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/scaron.glif b/sources/FixelText-ExtraLight.ufo/glyphs/scaron.glif new file mode 100644 index 00000000..1d4dec3a --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/scaron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + s+caron + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/scedilla.glif b/sources/FixelText-ExtraLight.ufo/glyphs/scedilla.glif new file mode 100644 index 00000000..3db47943 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/scedilla.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + s+cedilla + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/schwacyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/schwacyr.glif new file mode 100644 index 00000000..06fddcaf --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/schwacyr.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |e + com.fontlab.metricsRight + o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/schwadieresiscyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/schwadieresiscyr.glif new file mode 100644 index 00000000..f2d85253 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/schwadieresiscyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + schwacyr+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/scircumflex.glif b/sources/FixelText-ExtraLight.ufo/glyphs/scircumflex.glif new file mode 100644 index 00000000..9ca48cf7 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/scircumflex.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + s+circumflex + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/scommaaccent.glif b/sources/FixelText-ExtraLight.ufo/glyphs/scommaaccent.glif new file mode 100644 index 00000000..e732de52 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/scommaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + s+commaaccentcomb + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/second.glif b/sources/FixelText-ExtraLight.ufo/glyphs/second.glif new file mode 100644 index 00000000..a6f2ac47 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/second.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/section.glif b/sources/FixelText-ExtraLight.ufo/glyphs/section.glif new file mode 100644 index 00000000..2524c63d --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/section.glif @@ -0,0 +1,87 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + S + com.fontlab.metricsRight + S + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/semicolon.case.glif b/sources/FixelText-ExtraLight.ufo/glyphs/semicolon.case.glif new file mode 100644 index 00000000..2e9eaab9 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/semicolon.case.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.metricsLeft + semicolon + com.fontlab.metricsRight + semicolon + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/semicolon.glif b/sources/FixelText-ExtraLight.ufo/glyphs/semicolon.glif new file mode 100644 index 00000000..173d584f --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/semicolon.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/semisoftcyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/semisoftcyr.glif new file mode 100644 index 00000000..ac211e13 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/semisoftcyr.glif @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + t + com.fontlab.metricsRight + ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/seven.glif b/sources/FixelText-ExtraLight.ufo/glyphs/seven.glif new file mode 100644 index 00000000..336a6dcd --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/seven.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/seven.osf.glif b/sources/FixelText-ExtraLight.ufo/glyphs/seven.osf.glif new file mode 100644 index 00000000..9b57ffac --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/seven.osf.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + seven + com.fontlab.metricsRight + seven + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/seven.tf.glif b/sources/FixelText-ExtraLight.ufo/glyphs/seven.tf.glif new file mode 100644 index 00000000..1a5d7e25 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/seven.tf.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/sha-cy.B_G_R_.glif b/sources/FixelText-ExtraLight.ufo/glyphs/sha-cy.B_G_R_.glif new file mode 100644 index 00000000..c4f3ecc6 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/sha-cy.B_G_R_.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + u + com.fontlab.metricsRight + l + com.fontlab.recipe + m + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/sha-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/sha-cy.glif new file mode 100644 index 00000000..eb5c004e --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/sha-cy.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/shcha-cy.B_G_R_.glif b/sources/FixelText-ExtraLight.ufo/glyphs/shcha-cy.B_G_R_.glif new file mode 100644 index 00000000..ac8dbb35 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/shcha-cy.B_G_R_.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + u + com.fontlab.metricsRight + щ + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/shcha-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/shcha-cy.glif new file mode 100644 index 00000000..6ee67690 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/shcha-cy.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + д + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/shhacyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/shhacyr.glif new file mode 100644 index 00000000..72e72cb2 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/shhacyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsRight + n + com.fontlab.recipe + h + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/shhatailcyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/shhatailcyr.glif new file mode 100644 index 00000000..534729fe --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/shhatailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + h + com.fontlab.metricsRight + entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/shwe-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/shwe-cy.glif new file mode 100644 index 00000000..de95855a --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/shwe-cy.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + щ + com.fontlab.metricsRight + щ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/six.glif b/sources/FixelText-ExtraLight.ufo/glyphs/six.glif new file mode 100644 index 00000000..e20a2f00 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/six.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/six.osf.glif b/sources/FixelText-ExtraLight.ufo/glyphs/six.osf.glif new file mode 100644 index 00000000..12cdd6e7 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/six.osf.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + six + com.fontlab.metricsRight + six + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/six.tf.glif b/sources/FixelText-ExtraLight.ufo/glyphs/six.tf.glif new file mode 100644 index 00000000..df49705e --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/six.tf.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/sjekomicyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/sjekomicyr.glif new file mode 100644 index 00000000..8c1ce831 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/sjekomicyr.glif @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + e + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/slash.case.glif b/sources/FixelText-ExtraLight.ufo/glyphs/slash.case.glif new file mode 100644 index 00000000..35cc7aa0 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/slash.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + slash + com.fontlab.metricsRight + slash + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/slash.glif b/sources/FixelText-ExtraLight.ufo/glyphs/slash.glif new file mode 100644 index 00000000..79d3b103 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/slash.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/softsign-cy.B_G_R_.glif b/sources/FixelText-ExtraLight.ufo/glyphs/softsign-cy.B_G_R_.glif new file mode 100644 index 00000000..0c9658ad --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/softsign-cy.B_G_R_.glif @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + u + com.fontlab.metricsRight + ь-5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/softsign-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/softsign-cy.glif new file mode 100644 index 00000000..cd90b205 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/softsign-cy.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/softsign-cy.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/softsign-cy.ss01.glif new file mode 100644 index 00000000..c267052c --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/softsign-cy.ss01.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/space.glif b/sources/FixelText-ExtraLight.ufo/glyphs/space.glif new file mode 100644 index 00000000..0a8f9a9d --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/space.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/spadewhite.glif b/sources/FixelText-ExtraLight.ufo/glyphs/spadewhite.glif new file mode 100644 index 00000000..438512e1 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/spadewhite.glif @@ -0,0 +1,453 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/sterling.glif b/sources/FixelText-ExtraLight.ufo/glyphs/sterling.glif new file mode 100644 index 00000000..78bc55be --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/sterling.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/summation.glif b/sources/FixelText-ExtraLight.ufo/glyphs/summation.glif new file mode 100644 index 00000000..2c0460c6 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/summation.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/t.glif b/sources/FixelText-ExtraLight.ufo/glyphs/t.glif new file mode 100644 index 00000000..ceba469d --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/t.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/t.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/t.ss01.glif new file mode 100644 index 00000000..66468e2c --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/t.ss01.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/tbar.glif b/sources/FixelText-ExtraLight.ufo/glyphs/tbar.glif new file mode 100644 index 00000000..abb48072 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/tbar.glif @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/tbar.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/tbar.ss01.glif new file mode 100644 index 00000000..7e1c5de6 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/tbar.ss01.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/tcaron.glif b/sources/FixelText-ExtraLight.ufo/glyphs/tcaron.glif new file mode 100644 index 00000000..b719a4a9 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/tcaron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.metricsLeft + t + com.fontlab.metricsRight + t + com.fontlab.recipe + t+caron.salt + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/tcaron.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/tcaron.ss01.glif new file mode 100644 index 00000000..2731bf45 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/tcaron.ss01.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + com.fontlab.recipe + t.ss01+caron.salt + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/tcedilla.glif b/sources/FixelText-ExtraLight.ufo/glyphs/tcedilla.glif new file mode 100644 index 00000000..1a203857 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/tcedilla.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + t+cedilla + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/tcedilla.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/tcedilla.ss01.glif new file mode 100644 index 00000000..db8eccb1 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/tcedilla.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + t.ss01+cedilla + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/tche-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/tche-cy.glif new file mode 100644 index 00000000..475a661d --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/tche-cy.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + tetsecyr-20 + com.fontlab.metricsRight + ч + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/tcommaaccent.glif b/sources/FixelText-ExtraLight.ufo/glyphs/tcommaaccent.glif new file mode 100644 index 00000000..35052c1e --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/tcommaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + t+commaaccentcomb + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/tcommaaccent.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/tcommaaccent.ss01.glif new file mode 100644 index 00000000..23cc9950 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/tcommaaccent.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + t.ss01+commaaccentcomb + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/te-cy.B_G_R_.glif b/sources/FixelText-ExtraLight.ufo/glyphs/te-cy.B_G_R_.glif new file mode 100644 index 00000000..8b0ff8bb --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/te-cy.B_G_R_.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + m + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/te-cy.S_R_B_.glif b/sources/FixelText-ExtraLight.ufo/glyphs/te-cy.S_R_B_.glif new file mode 100644 index 00000000..6249f0ae --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/te-cy.S_R_B_.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ш.BGR+macron-fwd + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/te-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/te-cy.glif new file mode 100644 index 00000000..01fbc962 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/te-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/te-cy.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/te-cy.ss01.glif new file mode 100644 index 00000000..252cd20f --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/te-cy.ss01.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/tenge.glif b/sources/FixelText-ExtraLight.ufo/glyphs/tenge.glif new file mode 100644 index 00000000..679ee973 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/tenge.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + T + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/tenmillionscomb-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/tenmillionscomb-cy.glif new file mode 100644 index 00000000..38b7b525 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/tenmillionscomb-cy.glif @@ -0,0 +1,109 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/tetailcyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/tetailcyr.glif new file mode 100644 index 00000000..b2de64eb --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/tetailcyr.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + т + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/tetsecyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/tetsecyr.glif new file mode 100644 index 00000000..ef838177 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/tetsecyr.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + т + com.fontlab.metricsRight + ц + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/tewithmiddlehook-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/tewithmiddlehook-cy.glif new file mode 100644 index 00000000..1f6063d6 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/tewithmiddlehook-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + т + com.fontlab.metricsRight + gehookcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/thorn.glif b/sources/FixelText-ExtraLight.ufo/glyphs/thorn.glif new file mode 100644 index 00000000..cb1e4847 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/thorn.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + b + com.fontlab.metricsRight + b + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/thousandmillionscomb-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/thousandmillionscomb-cy.glif new file mode 100644 index 00000000..72e3cb9d --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/thousandmillionscomb-cy.glif @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/thousandscyr.dnom.glif b/sources/FixelText-ExtraLight.ufo/glyphs/thousandscyr.dnom.glif new file mode 100644 index 00000000..07fe1839 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/thousandscyr.dnom.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + | + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/thousandscyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/thousandscyr.glif new file mode 100644 index 00000000..274d4003 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/thousandscyr.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + | + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/three.glif b/sources/FixelText-ExtraLight.ufo/glyphs/three.glif new file mode 100644 index 00000000..187ef5e9 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/three.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/three.osf.glif b/sources/FixelText-ExtraLight.ufo/glyphs/three.osf.glif new file mode 100644 index 00000000..0f6d7c40 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/three.osf.glif @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + three + com.fontlab.metricsRight + three + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/three.tf.glif b/sources/FixelText-ExtraLight.ufo/glyphs/three.tf.glif new file mode 100644 index 00000000..b0b955cf --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/three.tf.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/threequarters.glif b/sources/FixelText-ExtraLight.ufo/glyphs/threequarters.glif new file mode 100644 index 00000000..dbaac198 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/threequarters.glif @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/threesuperior.glif b/sources/FixelText-ExtraLight.ufo/glyphs/threesuperior.glif new file mode 100644 index 00000000..ed3301af --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/threesuperior.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/tilde.case.glif b/sources/FixelText-ExtraLight.ufo/glyphs/tilde.case.glif new file mode 100644 index 00000000..672c50e9 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/tilde.case.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/tilde.glif b/sources/FixelText-ExtraLight.ufo/glyphs/tilde.glif new file mode 100644 index 00000000..24fb432b --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/tilde.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/titlocombcyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/titlocombcyr.glif new file mode 100644 index 00000000..200b8bc3 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/titlocombcyr.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/tjekomicyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/tjekomicyr.glif new file mode 100644 index 00000000..39439b37 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/tjekomicyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + т + com.fontlab.metricsRight + njekomicyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/trademark.glif b/sources/FixelText-ExtraLight.ufo/glyphs/trademark.glif new file mode 100644 index 00000000..02965120 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/trademark.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/tse-cy.B_G_R_.glif b/sources/FixelText-ExtraLight.ufo/glyphs/tse-cy.B_G_R_.glif new file mode 100644 index 00000000..61859ab3 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/tse-cy.B_G_R_.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + u + com.fontlab.metricsRight + ц + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/tse-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/tse-cy.glif new file mode 100644 index 00000000..b90e4022 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/tse-cy.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + д + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/tseR_eversed-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/tseR_eversed-cy.glif new file mode 100644 index 00000000..6e5e107d --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/tseR_eversed-cy.glif @@ -0,0 +1,20 @@ + + + + + + + + + + com.fontlab.metricsLeft + + com.fontlab.metricsRight + н + com.fontlab.recipe + ц + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/tshecyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/tshecyr.glif new file mode 100644 index 00000000..41783fa3 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/tshecyr.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + hbar + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/tsse-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/tsse-cy.glif new file mode 100644 index 00000000..29481f03 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/tsse-cy.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + т + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/tswe-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/tswe-cy.glif new file mode 100644 index 00000000..d7e7a898 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/tswe-cy.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ш + com.fontlab.metricsRight + shwe-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/twe-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/twe-cy.glif new file mode 100644 index 00000000..5c4d86f6 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/twe-cy.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + т.ss01 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/two.glif b/sources/FixelText-ExtraLight.ufo/glyphs/two.glif new file mode 100644 index 00000000..833ff12b --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/two.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/two.osf.glif b/sources/FixelText-ExtraLight.ufo/glyphs/two.osf.glif new file mode 100644 index 00000000..732c03f7 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/two.osf.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + two + com.fontlab.metricsRight + two + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/two.tf.glif b/sources/FixelText-ExtraLight.ufo/glyphs/two.tf.glif new file mode 100644 index 00000000..e5790615 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/two.tf.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/twosuperior.glif b/sources/FixelText-ExtraLight.ufo/glyphs/twosuperior.glif new file mode 100644 index 00000000..b40714a1 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/twosuperior.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/u-cy.accented.glif b/sources/FixelText-ExtraLight.ufo/glyphs/u-cy.accented.glif new file mode 100644 index 00000000..b9e783e6 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/u-cy.accented.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + y+acute + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/u-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/u-cy.glif new file mode 100644 index 00000000..739c990c --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/u-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + y + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/u.glif b/sources/FixelText-ExtraLight.ufo/glyphs/u.glif new file mode 100644 index 00000000..e803de36 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/u.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |n + com.fontlab.metricsRight + l + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/uacute.glif b/sources/FixelText-ExtraLight.ufo/glyphs/uacute.glif new file mode 100644 index 00000000..4c8db9c8 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/uacute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+acute + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/uacutedblcyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/uacutedblcyr.glif new file mode 100644 index 00000000..1a4725c8 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/uacutedblcyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u-cy+hungarumlaut + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/ubreve.glif b/sources/FixelText-ExtraLight.ufo/glyphs/ubreve.glif new file mode 100644 index 00000000..70c93069 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/ubreve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+breve + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/ucircumflex.glif b/sources/FixelText-ExtraLight.ufo/glyphs/ucircumflex.glif new file mode 100644 index 00000000..b2da6421 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/ucircumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+circumflex + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/udieresis.glif b/sources/FixelText-ExtraLight.ufo/glyphs/udieresis.glif new file mode 100644 index 00000000..59fa5858 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/udieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+dieresis + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/udieresiscyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/udieresiscyr.glif new file mode 100644 index 00000000..e7e1f48b --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/udieresiscyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/ugrave.glif b/sources/FixelText-ExtraLight.ufo/glyphs/ugrave.glif new file mode 100644 index 00000000..0c174bba --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/ugrave.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+grave + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/uhungarumlaut.glif b/sources/FixelText-ExtraLight.ufo/glyphs/uhungarumlaut.glif new file mode 100644 index 00000000..f7240a98 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/uhungarumlaut.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+hungarumlaut + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/ukM_onograph-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/ukM_onograph-cy.glif new file mode 100644 index 00000000..caa1e71b --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/ukM_onograph-cy.glif @@ -0,0 +1,78 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + y-30 + com.fontlab.metricsRight + y-20 + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/ukcyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/ukcyr.glif new file mode 100644 index 00000000..d396fbf3 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/ukcyr.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + y + com.fontlab.recipe + uni1C82_у + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/umacron.glif b/sources/FixelText-ExtraLight.ufo/glyphs/umacron.glif new file mode 100644 index 00000000..7f602bd7 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/umacron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+macron + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/umacroncyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/umacroncyr.glif new file mode 100644 index 00000000..370a8eeb --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/umacroncyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u-cy+macron + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/underscore.glif b/sources/FixelText-ExtraLight.ufo/glyphs/underscore.glif new file mode 100644 index 00000000..99979f56 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/underscore.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/uni1C_80.glif b/sources/FixelText-ExtraLight.ufo/glyphs/uni1C_80.glif new file mode 100644 index 00000000..8e59bcbe --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/uni1C_80.glif @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + б + com.fontlab.metricsRight + o-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/uni1C_81.glif b/sources/FixelText-ExtraLight.ufo/glyphs/uni1C_81.glif new file mode 100644 index 00000000..7da5c531 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/uni1C_81.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + д-10 + com.fontlab.metricsRight + | + com.fontlab.recipe + д + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/uni1C_82.glif b/sources/FixelText-ExtraLight.ufo/glyphs/uni1C_82.glif new file mode 100644 index 00000000..f1315f3b --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/uni1C_82.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/uni1C_83.glif b/sources/FixelText-ExtraLight.ufo/glyphs/uni1C_83.glif new file mode 100644 index 00000000..c7a0b61b --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/uni1C_83.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + c + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/uni1C_84.glif b/sources/FixelText-ExtraLight.ufo/glyphs/uni1C_84.glif new file mode 100644 index 00000000..c9c94ad6 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/uni1C_84.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/uni1C_85.glif b/sources/FixelText-ExtraLight.ufo/glyphs/uni1C_85.glif new file mode 100644 index 00000000..671ec00e --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/uni1C_85.glif @@ -0,0 +1,20 @@ + + + + + + + + + + com.fontlab.metricsLeft + ш + com.fontlab.metricsRight + l() + com.fontlab.recipe + ш + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/uni1C_86.glif b/sources/FixelText-ExtraLight.ufo/glyphs/uni1C_86.glif new file mode 100644 index 00000000..368a742b --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/uni1C_86.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + uni1C84 + com.fontlab.metricsRight + ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/uni1C_87.glif b/sources/FixelText-ExtraLight.ufo/glyphs/uni1C_87.glif new file mode 100644 index 00000000..f3c896a6 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/uni1C_87.glif @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + uni1C84-40 + com.fontlab.metricsRight + ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/uni1C_88.glif b/sources/FixelText-ExtraLight.ufo/glyphs/uni1C_88.glif new file mode 100644 index 00000000..8eaf8fc5 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/uni1C_88.glif @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/uni1E_B_C_.glif b/sources/FixelText-ExtraLight.ufo/glyphs/uni1E_B_C_.glif new file mode 100644 index 00000000..a82acd5d --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/uni1E_B_C_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+tilde.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/uni1E_B_D_.glif b/sources/FixelText-ExtraLight.ufo/glyphs/uni1E_B_D_.glif new file mode 100644 index 00000000..0ffcd4fd --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/uni1E_B_D_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+tilde + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/uni2010.glif b/sources/FixelText-ExtraLight.ufo/glyphs/uni2010.glif new file mode 100644 index 00000000..10fc5ace --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/uni2010.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + hyphen + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/uni2D_E_E_.case.glif b/sources/FixelText-ExtraLight.ufo/glyphs/uni2D_E_E_.case.glif new file mode 100644 index 00000000..e97267ae --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/uni2D_E_E_.case.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/uni2D_E_E_.glif b/sources/FixelText-ExtraLight.ufo/glyphs/uni2D_E_E_.glif new file mode 100644 index 00000000..90ffd233 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/uni2D_E_E_.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/uniE_000.alt.glif b/sources/FixelText-ExtraLight.ufo/glyphs/uniE_000.alt.glif new file mode 100644 index 00000000..e4de970e --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/uniE_000.alt.glif @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + ї_ї + public.markColor + 0.6,0.997,1,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/uniE_000.glif b/sources/FixelText-ExtraLight.ufo/glyphs/uniE_000.glif new file mode 100644 index 00000000..80cb8d00 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/uniE_000.glif @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + ї_ї + public.markColor + 0.6,0.997,1,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/uniE_01A_.glif b/sources/FixelText-ExtraLight.ufo/glyphs/uniE_01A_.glif new file mode 100644 index 00000000..c11e2de0 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/uniE_01A_.glif @@ -0,0 +1,115 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/uniF_43A_.glif b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_43A_.glif new file mode 100644 index 00000000..e3c099ac --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_43A_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/uniF_43B_.glif b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_43B_.glif new file mode 100644 index 00000000..3995d42f --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_43B_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ustraightcyr+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/uniF_45D_.glif b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_45D_.glif new file mode 100644 index 00000000..05228a61 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_45D_.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Є+acute.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/uniF_45E_.glif b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_45E_.glif new file mode 100644 index 00000000..9616f3ea --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_45E_.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Iacute + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/uniF_45F_.glif b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_45F_.glif new file mode 100644 index 00000000..7f1ba4c1 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_45F_.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + com.fontlab.recipe + I+dieresiscase.alt+acute.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/uniF_475.glif b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_475.glif new file mode 100644 index 00000000..e221d999 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_475.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + є+acute + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/uniF_476.glif b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_476.glif new file mode 100644 index 00000000..df22f0a4 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_476.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + iacute + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/uniF_477.glif b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_477.glif new file mode 100644 index 00000000..c0ab70d6 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_477.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + dotlessi+dieresisacute + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/uniF_478.glif b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_478.glif new file mode 100644 index 00000000..d66b9239 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_478.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Yat+acute.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/uniF_479.glif b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_479.glif new file mode 100644 index 00000000..f41dcad3 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_479.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + yat+acute + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/uniF_498.glif b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_498.glif new file mode 100644 index 00000000..f2f25cb4 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_498.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ю+dieresis.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/uniF_499.glif b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_499.glif new file mode 100644 index 00000000..a66c7d65 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_499.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ю+dieresis + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/uniF_49A_.glif b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_49A_.glif new file mode 100644 index 00000000..25ce8216 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_49A_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Obarcyr+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/uniF_49B_.glif b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_49B_.glif new file mode 100644 index 00000000..4c7b6c63 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_49B_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + obarcyr+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/uniF_49C_.glif b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_49C_.glif new file mode 100644 index 00000000..7a1c1a39 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_49C_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Schwacyr+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/uniF_49D_.glif b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_49D_.glif new file mode 100644 index 00000000..62942058 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_49D_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + schwacyr+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/uniF_49E_.glif b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_49E_.glif new file mode 100644 index 00000000..43d6b7f6 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_49E_.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Yatcyr + com.fontlab.metricsRight + Tshecyr + com.fontlab.recipe + Shhacyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/uniF_49F_.glif b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_49F_.glif new file mode 100644 index 00000000..3a5c6263 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_49F_.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + hbar + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/uniF_4C_6.glif b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_4C_6.glif new file mode 100644 index 00000000..4c70d0d5 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_4C_6.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ч + com.fontlab.metricsRight + Ч + com.fontlab.recipe + Ч + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/uniF_4C_7.glif b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_4C_7.glif new file mode 100644 index 00000000..c832de9c --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_4C_7.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ч + com.fontlab.metricsRight + ч + com.fontlab.recipe + ч+enhookcyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/uniF_4C_C_.glif b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_4C_C_.glif new file mode 100644 index 00000000..ed02c9cf --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_4C_C_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + У+acute.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/uniF_4C_D_.glif b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_4C_D_.glif new file mode 100644 index 00000000..e0f18f36 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_4C_D_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + y+acute + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/uniF_4D_2.glif b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_4D_2.glif new file mode 100644 index 00000000..6d4afd2f --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_4D_2.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+grave.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/uniF_4D_3.glif b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_4D_3.glif new file mode 100644 index 00000000..546689a5 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_4D_3.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+grave + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/uniF_4D_4.glif b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_4D_4.glif new file mode 100644 index 00000000..fb086388 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_4D_4.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + P+caron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/uniF_4D_5.glif b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_4D_5.glif new file mode 100644 index 00000000..02b310c6 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_4D_5.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + p+caron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/uniF_4D_6.glif b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_4D_6.glif new file mode 100644 index 00000000..95f0d35a --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_4D_6.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Э+dotaccent.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/uniF_4D_7.glif b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_4D_7.glif new file mode 100644 index 00000000..32202dd1 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_4D_7.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + э+dotaccent + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/uniF_4D_8.glif b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_4D_8.glif new file mode 100644 index 00000000..5e4c0d74 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_4D_8.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Я+dieresis.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/uniF_4D_9.glif b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_4D_9.glif new file mode 100644 index 00000000..da8fbb8e --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_4D_9.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + я+dieresis + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/uniF_50E_.glif b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_50E_.glif new file mode 100644 index 00000000..552be7e4 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_50E_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/uniF_50F_.glif b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_50F_.glif new file mode 100644 index 00000000..78ea38f3 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_50F_.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/uniF_510.glif b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_510.glif new file mode 100644 index 00000000..4bbeec18 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_510.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/uniF_511.glif b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_511.glif new file mode 100644 index 00000000..7960be8b --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_511.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/uniF_512.glif b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_512.glif new file mode 100644 index 00000000..79a1b6fd --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_512.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + com.fontlab.metricsLeft + E + com.fontlab.metricsRight + E + com.fontlab.recipe + E+dieresis.case+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/uniF_513.glif b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_513.glif new file mode 100644 index 00000000..660c3c23 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_513.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.recipe + e+dieresis+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/uniF_514.glif b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_514.glif new file mode 100644 index 00000000..0d724db4 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_514.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + com.fontlab.metricsLeft + E + com.fontlab.metricsRight + E + com.fontlab.recipe + E+dieresis.case+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/uniF_515.glif b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_515.glif new file mode 100644 index 00000000..e7275f3d --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_515.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.recipe + e+dieresis+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/uniF_516.glif b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_516.glif new file mode 100644 index 00000000..77d730e3 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_516.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + З+caron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/uniF_517.glif b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_517.glif new file mode 100644 index 00000000..98b03df7 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_517.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + з+caron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/uniF_518.glif b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_518.glif new file mode 100644 index 00000000..94ddf15c --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_518.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/uniF_519.glif b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_519.glif new file mode 100644 index 00000000..c3129d25 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_519.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/uniF_51A_.glif b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_51A_.glif new file mode 100644 index 00000000..6a4944a1 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_51A_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/uniF_51B_.glif b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_51B_.glif new file mode 100644 index 00000000..a4640005 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_51B_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/uniF_51C_.glif b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_51C_.glif new file mode 100644 index 00000000..7eaae153 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_51C_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Obarcyr+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/uniF_51D_.glif b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_51D_.glif new file mode 100644 index 00000000..28c26e13 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_51D_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + obarcyr+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/uniF_51E_.glif b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_51E_.glif new file mode 100644 index 00000000..f0e309c7 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_51E_.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + com.fontlab.recipe + Obarcyr+dieresis.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/uniF_51F_.glif b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_51F_.glif new file mode 100644 index 00000000..96c39322 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_51F_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.recipe + obarcyr+dieresis+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/uniF_521.glif b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_521.glif new file mode 100644 index 00000000..a8cd5707 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_521.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ы+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/uniF_522.glif b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_522.glif new file mode 100644 index 00000000..572fa798 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_522.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Э+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/uniF_523.glif b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_523.glif new file mode 100644 index 00000000..3dd4479f --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_523.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + э+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/uniF_524.glif b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_524.glif new file mode 100644 index 00000000..c90ffc9a --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_524.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Э+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/uniF_525.glif b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_525.glif new file mode 100644 index 00000000..cbe70aba --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_525.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + э+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/uniF_526.glif b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_526.glif new file mode 100644 index 00000000..7ad3910d --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_526.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Є+dieresis.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/uniF_527.glif b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_527.glif new file mode 100644 index 00000000..e92acf8f --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_527.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + є+dieresis + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/uniF_528.glif b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_528.glif new file mode 100644 index 00000000..2208dc0b --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_528.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Я+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/uniF_529.glif b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_529.glif new file mode 100644 index 00000000..f6d56eb7 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_529.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + я+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/uniF_52A_.glif b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_52A_.glif new file mode 100644 index 00000000..8cfe6fed --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_52A_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Я+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/uniF_52B_.glif b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_52B_.glif new file mode 100644 index 00000000..e15905f5 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_52B_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + я+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/uniF_52C_.glif b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_52C_.glif new file mode 100644 index 00000000..2cabb425 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_52C_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ю+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/uniF_52D_.glif b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_52D_.glif new file mode 100644 index 00000000..3d9068c7 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_52D_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ю+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/uniF_52E_.glif b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_52E_.glif new file mode 100644 index 00000000..11b2ef60 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_52E_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ю+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/uniF_52F_.glif b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_52F_.glif new file mode 100644 index 00000000..182effe8 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_52F_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ю+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/uniF_532.glif b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_532.glif new file mode 100644 index 00000000..30a4141f --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_532.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Й + com.fontlab.metricsRight + Й + com.fontlab.recipe + Й + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/uniF_533.glif b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_533.glif new file mode 100644 index 00000000..aabd4824 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_533.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + l() + com.fontlab.recipe + й+enhookcyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/uniF_536.glif b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_536.glif new file mode 100644 index 00000000..d5a3044d --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_536.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ы+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/uniF_537.glif b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_537.glif new file mode 100644 index 00000000..81264c74 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_537.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ы+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/uniF_538.glif b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_538.glif new file mode 100644 index 00000000..cda5d52a --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_538.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Reversedzecyr+dieresis.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/uniF_539.glif b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_539.glif new file mode 100644 index 00000000..7a1c0452 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_539.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + reversedzecyr+dieresis + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/uniF_830.glif b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_830.glif new file mode 100644 index 00000000..8a9c1848 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_830.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+circumflex.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/uniF_831.glif b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_831.glif new file mode 100644 index 00000000..cdf7dfc8 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_831.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+circumflex + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/uniF_833.glif b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_833.glif new file mode 100644 index 00000000..5d18cd00 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_833.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+circumflex.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/uniF_834.glif b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_834.glif new file mode 100644 index 00000000..8a8502f1 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_834.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+circumflex + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/uniF_839.glif b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_839.glif new file mode 100644 index 00000000..f7420d2e --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_839.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+circumflex.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/uniF_83A_.glif b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_83A_.glif new file mode 100644 index 00000000..d9c1949c --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_83A_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+circumflex + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/uniF_86F_.glif b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_86F_.glif new file mode 100644 index 00000000..c845cb94 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_86F_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + K+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/uniF_870.glif b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_870.glif new file mode 100644 index 00000000..b820eeb1 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_870.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + к+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/uniF_872.glif b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_872.glif new file mode 100644 index 00000000..29f3aa95 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_872.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Л+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/uniF_873.glif b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_873.glif new file mode 100644 index 00000000..ce2113de --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_873.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + л+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/uniF_875.glif b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_875.glif new file mode 100644 index 00000000..831d2008 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_875.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/uniF_876.glif b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_876.glif new file mode 100644 index 00000000..0bc8d388 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_876.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/uniF_878.glif b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_878.glif new file mode 100644 index 00000000..334b36de --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_878.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + X+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/uniF_879.glif b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_879.glif new file mode 100644 index 00000000..b252c7d3 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_879.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + x+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/uniF_87B_.glif b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_87B_.glif new file mode 100644 index 00000000..421707ed --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_87B_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ц+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/uniF_87C_.glif b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_87C_.glif new file mode 100644 index 00000000..309252f0 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_87C_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ц+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/uniF_87E_.glif b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_87E_.glif new file mode 100644 index 00000000..e0ed13bc --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_87E_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ч+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/uniF_87F_.glif b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_87F_.glif new file mode 100644 index 00000000..52816355 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/uniF_87F_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ч+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/uogonek.glif b/sources/FixelText-ExtraLight.ufo/glyphs/uogonek.glif new file mode 100644 index 00000000..6b005a05 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/uogonek.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+ogonek + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/uring.glif b/sources/FixelText-ExtraLight.ufo/glyphs/uring.glif new file mode 100644 index 00000000..73589dd5 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/uring.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+ring + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/ushort-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/ushort-cy.glif new file mode 100644 index 00000000..2ea85c19 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/ushort-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + uni0443+breve + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/ustraightcyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/ustraightcyr.glif new file mode 100644 index 00000000..31a53438 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/ustraightcyr.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + v + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/ustraightstrokecyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/ustraightstrokecyr.glif new file mode 100644 index 00000000..c6400784 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/ustraightstrokecyr.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/utilde.glif b/sources/FixelText-ExtraLight.ufo/glyphs/utilde.glif new file mode 100644 index 00000000..4b0dc220 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/utilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+tilde + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/v.glif b/sources/FixelText-ExtraLight.ufo/glyphs/v.glif new file mode 100644 index 00000000..8445fab1 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/v.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/ve-cy.B_G_R_.glif b/sources/FixelText-ExtraLight.ufo/glyphs/ve-cy.B_G_R_.glif new file mode 100644 index 00000000..d070837d --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/ve-cy.B_G_R_.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + b-5 + com.fontlab.metricsRight + b + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/ve-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/ve-cy.glif new file mode 100644 index 00000000..49f62290 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/ve-cy.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/ve-cy.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/ve-cy.ss01.glif new file mode 100644 index 00000000..85015f53 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/ve-cy.ss01.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/virgo.glif b/sources/FixelText-ExtraLight.ufo/glyphs/virgo.glif new file mode 100644 index 00000000..061e3f5a --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/virgo.glif @@ -0,0 +1,224 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =55 + com.fontlab.metricsRight + =35 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/vzmetcomb-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/vzmetcomb-cy.glif new file mode 100644 index 00000000..d1e12bdd --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/vzmetcomb-cy.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/w.glif b/sources/FixelText-ExtraLight.ufo/glyphs/w.glif new file mode 100644 index 00000000..2707e067 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/w.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/wacute.glif b/sources/FixelText-ExtraLight.ufo/glyphs/wacute.glif new file mode 100644 index 00000000..0ad389fa --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/wacute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + w+acute + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/wcircumflex.glif b/sources/FixelText-ExtraLight.ufo/glyphs/wcircumflex.glif new file mode 100644 index 00000000..7663f1ea --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/wcircumflex.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + w+circumflex + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/wdieresis.glif b/sources/FixelText-ExtraLight.ufo/glyphs/wdieresis.glif new file mode 100644 index 00000000..ed2fab1d --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/wdieresis.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + w+dieresis + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/wecyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/wecyr.glif new file mode 100644 index 00000000..4858559a --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/wecyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + w + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/wgrave.glif b/sources/FixelText-ExtraLight.ufo/glyphs/wgrave.glif new file mode 100644 index 00000000..e4d9825a --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/wgrave.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + w+grave + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/x.glif b/sources/FixelText-ExtraLight.ufo/glyphs/x.glif new file mode 100644 index 00000000..9b992d08 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/x.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/xatailcyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/xatailcyr.glif new file mode 100644 index 00000000..9ff58ebb --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/xatailcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + x + com.fontlab.metricsRight + zhetailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/y.glif b/sources/FixelText-ExtraLight.ufo/glyphs/y.glif new file mode 100644 index 00000000..64472f98 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/y.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/yacute.glif b/sources/FixelText-ExtraLight.ufo/glyphs/yacute.glif new file mode 100644 index 00000000..747cfac3 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/yacute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + y+acute + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/yaecyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/yaecyr.glif new file mode 100644 index 00000000..4daba2e3 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/yaecyr.glif @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + я + com.fontlab.metricsRight + e + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/yatI_otified-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/yatI_otified-cy.glif new file mode 100644 index 00000000..e38164c4 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/yatI_otified-cy.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + com.fontlab.metricsRight + yatcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/yatcyr.B_G_R_.glif b/sources/FixelText-ExtraLight.ufo/glyphs/yatcyr.B_G_R_.glif new file mode 100644 index 00000000..fd0b0ad1 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/yatcyr.B_G_R_.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hardsign-cy + com.fontlab.metricsRight + ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/yatcyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/yatcyr.glif new file mode 100644 index 00000000..ef8509c7 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/yatcyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hardsign-cy + com.fontlab.metricsRight + ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/ycircumflex.glif b/sources/FixelText-ExtraLight.ufo/glyphs/ycircumflex.glif new file mode 100644 index 00000000..f803e650 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/ycircumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + y+circumflex + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/ydieresis.glif b/sources/FixelText-ExtraLight.ufo/glyphs/ydieresis.glif new file mode 100644 index 00000000..603330b8 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/ydieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + y+dieresis + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/yen.glif b/sources/FixelText-ExtraLight.ufo/glyphs/yen.glif new file mode 100644 index 00000000..6abd770c --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/yen.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/yen.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/yen.ss01.glif new file mode 100644 index 00000000..91cd1cc9 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/yen.ss01.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/yerN_eutral-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/yerN_eutral-cy.glif new file mode 100644 index 00000000..d49fe211 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/yerN_eutral-cy.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hardsign-cy + com.fontlab.metricsRight + ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/yeru-cy.accented.glif b/sources/FixelText-ExtraLight.ufo/glyphs/yeru-cy.accented.glif new file mode 100644 index 00000000..71780742 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/yeru-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ы+acute + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/yeru-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/yeru-cy.glif new file mode 100644 index 00000000..e7ae092b --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/yeru-cy.glif @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/yeru-cy.ss01.glif b/sources/FixelText-ExtraLight.ufo/glyphs/yeru-cy.ss01.glif new file mode 100644 index 00000000..e87ca0d0 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/yeru-cy.ss01.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/yeruB_ackyer-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/yeruB_ackyer-cy.glif new file mode 100644 index 00000000..6fdc1d22 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/yeruB_ackyer-cy.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hardsign-cy + com.fontlab.metricsRight + dotlessi + com.fontlab.recipe + hardsign-cy_dotlessi + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/yi-cy.alt.glif b/sources/FixelText-ExtraLight.ufo/glyphs/yi-cy.alt.glif new file mode 100644 index 00000000..5fdf160e --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/yi-cy.alt.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.recipe + idieresis + public.markColor + 0.6,0.997,1,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/yi-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/yi-cy.glif new file mode 100644 index 00000000..81338c08 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/yi-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + idieresis + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/ylongdieresiscyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/ylongdieresiscyr.glif new file mode 100644 index 00000000..23c317a1 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/ylongdieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + yeru-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/yn-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/yn-cy.glif new file mode 100644 index 00000000..8efa8f94 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/yn-cy.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |izhitsacyr + com.fontlab.metricsRight + |izhitsacyr + com.fontlab.recipe + izhitsa + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/yuR_eversed-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/yuR_eversed-cy.glif new file mode 100644 index 00000000..5f334672 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/yuR_eversed-cy.glif @@ -0,0 +1,20 @@ + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l + com.fontlab.recipe + ю + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/yusB_lended-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/yusB_lended-cy.glif new file mode 100644 index 00000000..560bd78f --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/yusB_lended-cy.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + yusbigcyr + com.fontlab.metricsRight + yusbigcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/yusC_losedlittle-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/yusC_losedlittle-cy.glif new file mode 100644 index 00000000..ddbb4421 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/yusC_losedlittle-cy.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + yuslittlecyr + com.fontlab.metricsRight + yuslittlecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/yusbigcyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/yusbigcyr.glif new file mode 100644 index 00000000..89bb0870 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/yusbigcyr.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/yusbigiotifiedcyr.B_G_R_.glif b/sources/FixelText-ExtraLight.ufo/glyphs/yusbigiotifiedcyr.B_G_R_.glif new file mode 100644 index 00000000..4bda9fb6 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/yusbigiotifiedcyr.B_G_R_.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + com.fontlab.metricsRight + ж + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/yusbigiotifiedcyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/yusbigiotifiedcyr.glif new file mode 100644 index 00000000..f9e44b92 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/yusbigiotifiedcyr.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + ж + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/yusiotifiedC_losedL_ittle-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/yusiotifiedC_losedL_ittle-cy.glif new file mode 100644 index 00000000..d4ef55d9 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/yusiotifiedC_losedL_ittle-cy.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + yusClosedlittle-cy + com.fontlab.recipe + yusClosedlittle-cy+н + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/yuslittlecyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/yuslittlecyr.glif new file mode 100644 index 00000000..36aff324 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/yuslittlecyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + v-5 + com.fontlab.metricsRight + v-5 + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/yuslittleiotifiedcyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/yuslittleiotifiedcyr.glif new file mode 100644 index 00000000..2255a4b2 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/yuslittleiotifiedcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + v-10 + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/z.glif b/sources/FixelText-ExtraLight.ufo/glyphs/z.glif new file mode 100644 index 00000000..b5fa2fd6 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/z.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/zacute.glif b/sources/FixelText-ExtraLight.ufo/glyphs/zacute.glif new file mode 100644 index 00000000..f1abf5bf --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/zacute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + z+acute + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/zcaron.glif b/sources/FixelText-ExtraLight.ufo/glyphs/zcaron.glif new file mode 100644 index 00000000..396306ff --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/zcaron.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + z+caron + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/zdotaccent.glif b/sources/FixelText-ExtraLight.ufo/glyphs/zdotaccent.glif new file mode 100644 index 00000000..702e21a2 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/zdotaccent.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + z+dotaccent + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/ze-cy.B_G_R_.glif b/sources/FixelText-ExtraLight.ufo/glyphs/ze-cy.B_G_R_.glif new file mode 100644 index 00000000..615c1456 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/ze-cy.B_G_R_.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |c-12 + com.fontlab.metricsRight + в-5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/ze-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/ze-cy.glif new file mode 100644 index 00000000..ecf6cc6c --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/ze-cy.glif @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |c-5 + com.fontlab.metricsRight + в + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/zedieresiscyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/zedieresiscyr.glif new file mode 100644 index 00000000..d00e5a90 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/zedieresiscyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ze-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/zemlya-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/zemlya-cy.glif new file mode 100644 index 00000000..5c85e80e --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/zemlya-cy.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + z-10 + com.fontlab.metricsRight + z + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/zero.glif b/sources/FixelText-ExtraLight.ufo/glyphs/zero.glif new file mode 100644 index 00000000..b1983b97 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/zero.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/zero.osf.glif b/sources/FixelText-ExtraLight.ufo/glyphs/zero.osf.glif new file mode 100644 index 00000000..3f3edbe5 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/zero.osf.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + zero + com.fontlab.metricsRight + zero + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/zero.tf.glif b/sources/FixelText-ExtraLight.ufo/glyphs/zero.tf.glif new file mode 100644 index 00000000..132e6fa9 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/zero.tf.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/zetailcyr.B_S_H_.glif b/sources/FixelText-ExtraLight.ufo/glyphs/zetailcyr.B_S_H_.glif new file mode 100644 index 00000000..2d58e423 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/zetailcyr.B_S_H_.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + з + com.fontlab.metricsRight + з + com.fontlab.recipe + з + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/zetailcyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/zetailcyr.glif new file mode 100644 index 00000000..9ef719c7 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/zetailcyr.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + з + com.fontlab.metricsRight + з + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/zhe-cy.B_G_R_.glif b/sources/FixelText-ExtraLight.ufo/glyphs/zhe-cy.B_G_R_.glif new file mode 100644 index 00000000..d7caf444 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/zhe-cy.B_G_R_.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |k + com.fontlab.metricsRight + k + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/zhe-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/zhe-cy.glif new file mode 100644 index 00000000..6ea7323c --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/zhe-cy.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |k + com.fontlab.metricsRight + k + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/zhebrevecyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/zhebrevecyr.glif new file mode 100644 index 00000000..2a08b6ed --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/zhebrevecyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + zhe-cy+breve + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/zhedieresiscyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/zhedieresiscyr.glif new file mode 100644 index 00000000..a5be68df --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/zhedieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + zhe-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/zhetailcyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/zhetailcyr.glif new file mode 100644 index 00000000..75bd499e --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/zhetailcyr.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ж + com.fontlab.metricsRight + katailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/zhwe-cy.glif b/sources/FixelText-ExtraLight.ufo/glyphs/zhwe-cy.glif new file mode 100644 index 00000000..e05d0fd7 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/zhwe-cy.glif @@ -0,0 +1,87 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + з + com.fontlab.metricsRight + ж + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/glyphs/zjekomicyr.glif b/sources/FixelText-ExtraLight.ufo/glyphs/zjekomicyr.glif new file mode 100644 index 00000000..38e6f1aa --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/glyphs/zjekomicyr.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + з-20 + com.fontlab.metricsRight + njekomicyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-ExtraLight.ufo/groups.plist b/sources/FixelText-ExtraLight.ufo/groups.plist new file mode 100644 index 00000000..0215e532 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/groups.plist @@ -0,0 +1,2992 @@ + + + + + accent + + grave + acute.case + grave.case + acute + + case + + arrowdown.case + arrowdown.ss01.case + arrowleft.case + arrowleft.ss01.case + arrowright.case + arrowright.ss01.case + arrowup.case + arrowup.ss01.case + backslash.case + bar.case + braceleft.case + braceright.case + bracketleft.case + bracketright.case + brokenbar.case + bullet.case + colon.case + emdash.case + endash.case + exclamdown.case + guillemetleft.case + guillemetright.case + guilsinglleft.case + guilsinglright.case + hyphen.case + parenleft.case + parenright.case + questiondown.case + semicolon.case + at.case + bracketangleleft.case + bracketangleright.case + slash.case + + case_def + + arrowdown + arrowdown.ss01 + arrowleft + arrowleft.ss01 + arrowright + arrowright.ss01 + arrowup + arrowup.ss01 + backslash + bar + braceleft + braceright + bracketleft + bracketright + brokenbar + bullet + colon + emdash + endash + exclamdown + guillemetleft + guillemetright + guilsinglleft + guilsinglright + hyphen + parenleft + parenright + questiondown + semicolon + at + bracketangleleft + bracketangleright + slash + + cpsp + + 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 + Agrave + Aacute + Acircumflex + Atilde + Adieresis + Aring + AE + Ccedilla + Egrave + Eacute + Ecircumflex + Edieresis + Igrave + Iacute + Icircumflex + Idieresis + Eth + Ntilde + Ograve + Oacute + Ocircumflex + Otilde + Odieresis + Oslash + Ugrave + Uacute + Ucircumflex + Udieresis + Yacute + Thorn + Amacron + Abreve + Aogonek + Cacute + Ccircumflex + Cdotaccent + Ccaron + Dcaron + Dcroat + Emacron + Ebreve + Edotaccent + Eogonek + Ecaron + Gcircumflex + Gbreve + Gdotaccent + Gcommaaccent + Hcircumflex + Hbar + Itilde + Imacron + Ibreve + Iogonek + Idotaccent + IJ + Jcircumflex + Kcommaaccent + Lacute + Lcommaaccent + Lcaron + Ldot + Lslash + Nacute + Ncommaaccent + Ncaron + Eng + Omacron + Obreve + Ohungarumlaut + OE + Racute + Rcommaaccent + Rcaron + Sacute + Scircumflex + Scedilla + Scaron + Tcedilla + Tcaron + Tbar + Utilde + Umacron + Ubreve + Uring + Uhungarumlaut + Uogonek + Wcircumflex + Ycircumflex + Ydieresis + Zacute + Zdotaccent + Zcaron + Schwa + Acaron + Gacute + AEacute + Oslashacute + Scommaaccent + Tcommaaccent + Delta + Omega + Iegravecyr + uniF43A + A-cy.accented + E-cy.accented + Ii-cy.accented + O-cy.accented + U-cy.accented + Yeru-cy.accented + Ereversed-cy.accented + Iu-cy.accented + Ia-cy.accented + Io-cy.accented + uniF498 + uniF49A + uniF49C + uniF49E + uniF4C6 + uniF4CC + uniF4D2 + uniF4D4 + uniF4D6 + uniF4D8 + uniF50E + uniF510 + uniF512 + uniF514 + uniF516 + uniF518 + uniF51A + uniF51C + uniF51E + Yeru-cymacron + uniF522 + uniF524 + uniF526 + uniF528 + uniF52A + uniF52C + uniF52E + uniF532 + uniF536 + uniF538 + uniF830 + uniF833 + uniF839 + uniF86F + uniF872 + uniF875 + uniF878 + uniF87B + uniF87E + Io-cy + Djecyr + Gjecyr + E-cy + Dze-cy + I-cy + Yi-cy + Jecyr + Ljecyr + Njecyr + Tshecyr + Kjecyr + Igravecyr + Ushort-cy + Dzhecyr + A-cy + Be-cy + Ve-cy + Ge-cy + De-cy + Ie-cy + Zhe-cy + Ze-cy + Ii-cy + Iishort-cy + Ka-cy + El-cy + Em-cy + En-cy + O-cy + Pe-cy + Er-cy + Es-cy + Te-cy + U-cy + Ef-cy + Ha-cy + Tse-cy + Che-cy + Sha-cy + Shcha-cy + Hardsign-cy + Yeru-cy + Softsign-cy + Ereversed-cy + Iu-cy + Ia-cy + Omegacyr + Yatcyr + Eiotifiedcyr + Yuslittlecyr + Yuslittleiotifiedcyr + Yusbigcyr + Yusbigiotifiedcyr + Ksicyr + Psicyr + Fitacyr + Izhitsacyr + Izhitsagravedblcyr + Ukcyr + Omegaroundcyr + Omegatitlocyr + Otcyr + Koppacyr + Ishortsharptailcyr + Semisoftcyr + Ertickcyr + Gheupturn-cy + Gestrokecyr + Gehookcyr + Zhetailcyr + Zetailcyr + Katailcyr + Kaverticalstrokecyr + Kastrokecyr + Kabashkcyr + Entailcyr + Engecyr + Pehookcyr + Haabkhcyr + Estailcyr + Tetailcyr + Ustraightcyr + Ustraightstrokecyr + Xatailcyr + Tetsecyr + Chetailcyr + Chevertcyr + Shhacyr + Cheabkhcyr + Cheabkhtailcyr + Palochkacyr + Zhebrevecyr + Kahookcyr + Elsharptailcyr + Enhookcyr + Ensharptailcyr + Chekhakascyr + Emsharptailcyr + Abrevecyr + Adieresiscyr + Aiecyr + Iebrevecyr + Schwacyr + Schwadieresiscyr + Zhedieresiscyr + Zedieresiscyr + Dzeabkhcyr + Imacroncyr + Idieresiscyr + Odieresiscyr + Obarcyr + Obardieresiscyr + Ereverseddieresiscyr + Umacroncyr + Udieresiscyr + Uacutedblcyr + Chedieresiscyr + Getailcyr + Ylongdieresiscyr + Gehookstrokecyr + Hahookcyr + Hastrokecyr + Dekomicyr + Djekomicyr + Zjekomicyr + Dzjekomicyr + Ljekomicyr + Njekomicyr + Sjekomicyr + Tjekomicyr + Reversedzecyr + Elhookcyr + Lhacyr + Rhacyr + Yaecyr + Qacyr + Wecyr + Kaaleutcyr + Elmiddlehookcyr + Enmiddlehookcyr + Petailcyr + Shhatailcyr + Enhookleftcyr + Dzzhecyr + Dchecyr + Eltailcyr + Wgrave + Wacute + Wdieresis + Germandbls + uni1EBC + Zemlya-cy + Dzelo-cy + DzeReversed-cy + Iota-cy + Djerv-cy + UkMonograph-cy + OmegaBroad-cy + YerNeutral-cy + YeruBackYer-cy + YatIotified-cy + YuReversed-cy + IotifiedA-cy + YusClosedlittle-cy + YusBlended-cy + YusiotifiedClosedLittle-cy + Yn-cy + TseReversed-cy + DeSoft-cy + ElSoft-cy + EmSoft-cy + OMonocular-cy + OBinocular-cy + ODoubleMonocular-cy + Dwe-cy + Dzwe-cy + Zhwe-cy + Cche-cy + Dzze-cy + TeWithMiddleHook-cy + Twe-cy + Tswe-cy + Tsse-cy + Tche-cy + Hwe-cy + Shwe-cy + DoubleO-cy + CrossedO-cy + A-cy.ss01 + A.ss01 + AE.ss01 + Aacute.ss01 + Abreve.ss01 + Acircumflex.ss01 + Adieresis.ss01 + Agrave.ss01 + Amacron.ss01 + Aogonek.ss01 + Aring.ss01 + Atilde.ss01 + Em-cy.ss01 + Eng.ss01 + G.ss01 + Gacute.ss01 + Gbreve.ss01 + Gcircumflex.ss01 + Gcommaaccent.ss01 + Gdotaccent.ss01 + Ha-cy.ss01 + Ia-cy.ss01 + J.ss01 + Jcircumflex.ss01 + K.ss01 + Ka-cy.ss01 + Kcommaaccent.ss01 + M.ss01 + N.ss01 + Nacute.ss01 + Ncaron.ss01 + Ncommaaccent.ss01 + Ntilde.ss01 + Q.ss01 + U-cy.ss01 + Ushort-cy.ss01 + V.ss01 + W.ss01 + Wacute.ss01 + Wcircumflex.ss01 + Wdieresis.ss01 + Wgrave.ss01 + X.ss01 + Y.ss01 + Yacute.ss01 + Ycircumflex.ss01 + Ydieresis.ss01 + Z.ss01 + Zacute.ss01 + Zcaron.ss01 + Zdotaccent.ss01 + Zetailcyr.BSH + Gestrokecyr.BSH + Estailcyr.BSH + Estailcyr.CHU + Zhe-cy.ss01 + + locl.SRB + + be-cy.SRB + iegravecyr.SRB + igravecyr.SRB + + loclSRB_def + + be-cy + iegravecyr + igravecyr + + locl_BGR + + De-cy.BGR + Ef-cy.BGR + El-cy.BGR + de-cy.BGR + eiotifiedcyr.BGR + el-cy.BGR + ge-cy.BGR + hardsign-cy.BGR + ii-cy.BGR + iishort-cy.BGR + iotifieda-cy.BGR + iu-cy.BGR + ka-cy.BGR + pe-cy.BGR + sha-cy.BGR + shcha-cy.BGR + softsign-cy.BGR + te-cy.BGR + tse-cy.BGR + ve-cy.BGR + yatcyr.BGR + yusbigiotifiedcyr.BGR + ze-cy.BGR + zhe-cy.BGR + + locl_def + + De-cy + Ef-cy + El-cy + de-cy + eiotifiedcyr + el-cy + ge-cy + hardsign-cy + ii-cy + iishort-cy + iotifieda-cy + iu-cy + ka-cy + pe-cy + sha-cy + shcha-cy + softsign-cy + te-cy + tse-cy + ve-cy + yatcyr + yusbigiotifiedcyr + ze-cy + zhe-cy + + pics + + neptune + leo + virgo + bishopwhite + knightwhite + rookblack + bishopblack + knightblack + heartwhite + diamondwhite-misc + spadewhite + heart + clubwhite + crossedswords + flower + floretteblack + florettewhite + floretteoutlinedpetalledblackeight + + pics_def + + A + B + C + D + E + F + G + H + I + J + K + L + M + N + O + P + Q + R + + public.kern1.A.ss012 + + A-cy.ss01 + A.ss01 + Aacute.ss01 + Abreve.ss01 + Acircumflex.ss01 + Adieresis.ss01 + Agrave.ss01 + Amacron.ss01 + Aogonek.ss01 + Aring.ss01 + Atilde.ss01 + + public.kern1.A2 + + A + A-cy + A-cy.accented + Aacute + Abreve + Abrevecyr + Acaron + Acircumflex + Adieresis + Adieresiscyr + Agrave + Amacron + Aogonek + Aring + Atilde + De-cy.BGR + Delta + El-cy.BGR + IotifiedA-cy + Yn-cy + YusClosedlittle-cy + YusiotifiedClosedLittle-cy + Yuslittlecyr + Yuslittleiotifiedcyr + uniF50E + uniF830 + + public.kern1.AE + + AE + AE.ss01 + AEacute + Aiecyr + + public.kern1.C1 + + C + Cacute + Ccaron + Ccedilla + Ccircumflex + Cdotaccent + E-cy + Eiotifiedcyr + Es-cy + Estailcyr + Estailcyr.BSH + Estailcyr.CHU + Reversedzecyr + uniF45D + uniF526 + uniF538 + uniF875 + + public.kern1.Decyr + + Chetailcyr + De-cy + Dwe-cy + Dzze-cy + Elsharptailcyr + Eltailcyr + Emsharptailcyr + Ensharptailcyr + Entailcyr + Ishortsharptailcyr + Petailcyr + Shcha-cy + Shwe-cy + Tetsecyr + Tse-cy + Tswe-cy + uniF87B + + public.kern1.E1 + + E + E-cy.accented + Eacute + Ebreve + Ecaron + Ecircumflex + Edieresis + Edotaccent + Egrave + Emacron + Eogonek + Ie-cy + Iebrevecyr + Io-cy + Io-cy.accented + Yaecyr + uni1EBC + uniF510 + uniF512 + uniF514 + uniF833 + + public.kern1.G.ss01 + + G.ss01 + Gacute.ss01 + Gbreve.ss01 + Gcircumflex.ss01 + Gcommaaccent.ss01 + Gdotaccent.ss01 + + public.kern1.G1 + + G + Gacute + Gbreve + Gcircumflex + Gcommaaccent + Gdotaccent + + public.kern1.Ge-cy + + DeSoft-cy + ElSoft-cy + EmSoft-cy + Engecyr + Ge-cy + Gehookstrokecyr + Gestrokecyr + Gestrokecyr.BSH + Getailcyr + Gheupturn-cy + Gjecyr + TseReversed-cy + YeruBackYer-cy + uniF872 + + public.kern1.H + + Eng + Eng.ss01 + H + Hbar + Hcircumflex + I + Iacute + Ibreve + Icircumflex + Idieresis + Idotaccent + Igrave + Imacron + Iogonek + Itilde + J.ss01 + Jcircumflex.ss01 + M + M.ss01 + N + N.ss01 + Nacute + Nacute.ss01 + Ncaron + Ncaron.ss01 + Ncommaaccent + Ncommaaccent.ss01 + Ntilde + Ntilde.ss01 + + public.kern1.Hardcyr + + Hardsign-cy + Ljecyr + Njecyr + Semisoftcyr + Shhacyr + Softsign-cy + YatIotified-cy + Yatcyr + YerNeutral-cy + uniF478 + + public.kern1.J1 + + J + Jcircumflex + Jecyr + + public.kern1.K + + K + K.ss01 + Ka-cy + Ka-cy.ss01 + Kaaleutcyr + Kabashkcyr + Kastrokecyr + Kcommaaccent + Kcommaaccent.ss01 + Kjecyr + uniF86F + + public.kern1.L + + L + Lacute + Lcaron + Lcommaaccent + Lslash + + public.kern1.O + + Cheabkhcyr + Cheabkhtailcyr + CrossedO-cy + D + Dcaron + Dcroat + DoubleO-cy + Ef-cy + Ef-cy.BGR + Ereversed-cy + Ereversed-cy.accented + Ereverseddieresiscyr + Eth + Fitacyr + Iu-cy + Iu-cy.accented + O + O-cy + O-cy.accented + OBinocular-cy + ODoubleMonocular-cy + OMonocular-cy + Oacute + Obarcyr + Obardieresiscyr + Obreve + Ocircumflex + Odieresis + Odieresiscyr + Ograve + Ohungarumlaut + Omacron + Omega + Omegaroundcyr + Oslash + Oslashacute + Otilde + Q + Qacyr + Schwa + Schwacyr + Schwadieresiscyr + Sjekomicyr + uniF498 + uniF49A + uniF49C + uniF4D2 + uniF4D6 + uniF518 + uniF51A + uniF51C + uniF51E + uniF522 + uniF524 + uniF52C + uniF52E + uniF839 + + public.kern1.Oslash.alt + + Ha-cy + Ha-cy.ss01 + Hahookcyr + Lhacyr + Rhacyr + X + X.ss01 + uniF878 + + public.kern1.P + + Er-cy + Ertickcyr + P + uniF4D4 + + public.kern1.R + + R + Racute + Rcaron + Rcommaaccent + + public.kern1.S1 + + Dzwe-cy + S + Sacute + Scaron + Scedilla + Scircumflex + Scommaaccent + + public.kern1.T1 + + Koppacyr + T + Tcaron + Tcedilla + Tcommaaccent + Te-cy + Tetailcyr + Tsse-cy + Twe-cy + + public.kern1.U1 + + OmegaBroad-cy + Omegacyr + Omegatitlocyr + Otcyr + Psicyr + U + Uacute + Ubreve + Ucircumflex + Udieresis + Ugrave + Uhungarumlaut + Umacron + Uogonek + Uring + Utilde + + public.kern1.Ucyr1 + + U-cy + U-cy.accented + U-cy.ss01 + Uacutedblcyr + Udieresiscyr + Umacroncyr + Ushort-cy + Ushort-cy.ss01 + uniF4CC + + public.kern1.V + + Izhitsacyr + Izhitsagravedblcyr + V + V.ss01 + + public.kern1.W.ss011 + + W.ss01 + Wacute.ss01 + Wcircumflex.ss01 + Wdieresis.ss01 + Wgrave.ss01 + + public.kern1.W1 + + W + Wacute + Wcircumflex + Wdieresis + Wecyr + Wgrave + + public.kern1.Y.ss011 + + Y.ss01 + Yacute.ss01 + Ycircumflex.ss01 + Ydieresis.ss01 + + public.kern1.Y1 + + Ustraightcyr + Ustraightstrokecyr + Y + Yacute + Ycircumflex + Ydieresis + uniF43A + + public.kern1.Yacyr + + Cche-cy + Che-cy + Chedieresiscyr + Chekhakascyr + Chevertcyr + Dekomicyr + Elhookcyr + Em-cy + En-cy + Enhookcyr + Enhookleftcyr + I-cy + Ia-cy + Ia-cy.accented + Ia-cy.ss01 + Idieresiscyr + Ii-cy + Ii-cy.accented + Iishort-cy + Imacroncyr + Palochkacyr + Pe-cy + Sha-cy + Tche-cy + Yeru-cy + Yeru-cy.accented + Yeru-cymacron + Yi-cy + Ylongdieresiscyr + YuReversed-cy + palochkacyr + uniF45E + uniF45F + uniF4C6 + uniF4D8 + uniF528 + uniF52A + uniF532 + uniF536 + uniF87E + + public.kern1.Z1 + + Dzelo-cy + Z + Z.ss01 + Zacute + Zacute.ss01 + Zcaron + Zcaron.ss01 + Zdotaccent + Zdotaccent.ss01 + Zemlya-cy + + public.kern1.Ze-cy + + Dzeabkhcyr + Ksicyr + Ze-cy + Zedieresiscyr + Zetailcyr + Zetailcyr.BSH + uniF516 + + public.kern1.Zhe-cy + + Dzzhecyr + Katailcyr + Kaverticalstrokecyr + Xatailcyr + YusBlended-cy + Yusbigcyr + Yusbigiotifiedcyr + Zhe-cy + Zhebrevecyr + Zhedieresiscyr + Zhetailcyr + Zhwe-cy + + public.kern1.a1 + + a + aacute + abreve + acaron + acircumflex + adieresis + agrave + amacron + aogonek + aring + atilde + + public.kern1.c1 + + c + cacute + ccaron + ccedilla + ccircumflex + cdotaccent + e-cy + e-cy.hist + eiotifiedcyr + eiotifiedcyr.BGR + es-cy + estailcyr + estailcyr.BSH + estailcyr.CHU + koppacyr + reversedzecyr + sjekomicyr + uni1C83 + uniF475 + uniF527 + uniF539 + uniF876 + + public.kern1.comma1 + + comma + quotedblbase + quotesinglbase + + public.kern1.copyright1 + + copyright + registered + + public.kern1.dcaron + + dcaron + dcaron.ss01 + lcaron + + public.kern1.decyr1 + + chetailcyr + dchecyr + de-cy + de-cy.ss01 + dwe-cy + dzze-cy + elsharptailcyr + eltailcyr + emsharptailcyr + ensharptailcyr + entailcyr + ishortsharptailcyr + petailcyr + shcha-cy + shcha-cy.BGR + shhatailcyr + shwe-cy + tetsecyr + tse-cy + tse-cy.BGR + tswe-cy + uniF87C + + public.kern1.e.ss011 + + e.ss01 + eacute.ss01 + ebreve.ss01 + ecaron.ss01 + ecircumflex.ss01 + edieresis.ss01 + edotaccent.ss01 + egrave.ss01 + emacron.ss01 + eogonek.ss01 + oe.ss01 + + public.kern1.e1 + + ae + aeacute + aiecyr + cheabkhcyr + cheabkhtailcyr + e + e-cy.accented + eacute + ebreve + ecaron + ecircumflex + edieresis + edotaccent + egrave + emacron + eogonek + ie-cy + iebrevecyr + iegravecyr + iegravecyr.SRB + io-cy + io-cy.accented + uni1EBD + uniF511 + uniF513 + uniF515 + uniF834 + yaecyr + + public.kern1.el-cy.BGR + + el-cy.BGR + iotifieda-cy + iotifieda-cy.BGR + uni1C81 + yn-cy + yusClosedlittle-cy + yusiotifiedClosedLittle-cy + yuslittlecyr + yuslittleiotifiedcyr + + public.kern1.emdash1 + + emdash + endash + hyphen + + public.kern1.f1 + + f + f_f + + public.kern1.fi + + f_f_i + fi + + public.kern1.five1 + + five + five.tf + + public.kern1.four1 + + four + four.tf + + public.kern1.g.ss011 + + g.ss01 + gacute.ss01 + gbreve.ss01 + gcircumflex.ss01 + gcommaaccent.ss01 + gdotaccent.ss01 + + public.kern1.g1 + + g + gacute + gbreve + gcircumflex + gcommaaccent + gdotaccent + + public.kern1.gecyr + + deSoft-cy + elSoft-cy + emSoft-cy + engecyr + ge-cy + gehookstrokecyr + gestrokecyr + gestrokecyr.BSH + getailcyr + gheupturn-cy + gjecyr + + public.kern1.guillemotright1 + + guillemetright + guilsinglright + + public.kern1.hardcyr + + Tjekomicyr + djekomicyr + elmiddlehookcyr + enmiddlehookcyr + gehookcyr + hardsign-cy + hardsign-cy.BGR + hardsign-cy.ss01 + ljecyr + ljecyr.ss01 + ljekomicyr + njecyr + njecyr.ss01 + njekomicyr + pehookcyr + semisoftcyr + softsign-cy + softsign-cy.BGR + softsign-cy.ss01 + tewithmiddlehook-cy + tjekomicyr + uni1C86 + uni1C87 + uniF479 + yatIotified-cy + yatcyr + yatcyr.BGR + yerNeutral-cy + zjekomicyr + + public.kern1.i1 + + Djekomicyr + Ljekomicyr + Njekomicyr + Zjekomicyr + i + i-cy + iacute + icircumflex + igrave + imacron + iogonek + itilde + uniF476 + yi-cy.alt + + public.kern1.icyr1 + + cche-cy + che-cy + chedieresiscyr + chekhakascyr + chevertcyr + de-cy.BGR + el-cy + elhookcyr + em-cy + en-cy + enhookcyr + enhookleftcyr + ia-cy + ia-cy.accented + idieresiscyr + igravecyr + ii-cy + ii-cy.accented + iishort-cy + imacroncyr + mu + pe-cy + psicyr + q + qacyr + sha-cy + sha-cy.BGR + tche-cy + tseReversed-cy + ubreve + uni1C85 + uniF4C7 + uniF4D9 + uniF521 + uniF529 + uniF52B + uniF533 + uniF537 + uniF873 + uniF87F + utilde + yeru-cy + yeru-cy.accented + yeru-cy.ss01 + yeruBackyer-cy + ylongdieresiscyr + yuReversed-cy + + public.kern1.j1 + + ij + j + jcircumflex + jdotless + + public.kern1.k + + k + ka-cy + ka-cy.BGR + kaaleutcyr + kabashkcyr + kastrokecyr + kcommaaccent + kgreenlandic + kjecyr + uniF870 + + public.kern1.l + + f_f_l + fl + l + lacute + lcommaaccent + + public.kern1.l.ss011 + + Iota-cy + iota-cy + l.ss01 + lacute.ss01 + lcommaaccent.ss01 + + public.kern1.n + + Djecyr + Elmiddlehookcyr + Enmiddlehookcyr + Gehookcyr + Hwe-cy + Kahookcyr + Pehookcyr + Shhatailcyr + TeWithMiddleHook-cy + Tshecyr + a-cy.accented + a-cy.ss01 + a.ss01 + aacute.ss01 + abreve.ss01 + abrevecyr + acircumflex.ss01 + adieresis.ss01 + adieresiscyr + agrave.ss01 + aogonek.ss01 + aring.ss01 + atilde.ss01 + djecyr + el-cy.ss01 + h + hbar + hcircumflex + hwe-cy + ia-cy.ss01 + iotifieda-cy.hist + m + n + nacute + napostrophe + ncaron + ncommaaccent + ntilde + pe-cy.BGR + q.ss01 + shhacyr + te-cy.BGR + tshecyr + uniF49E + uniF49F + uniF50F + uniF831 + + public.kern1.numero + + numero + numero.ss01 + + public.kern1.o1 + + b + b.ss01 + be-cy.SRB + crossedo-cy + ef-cy + er-cy + er-cy.ss01 + ereversed-cy + ereversed-cy.accented + ereverseddieresiscyr + ertickcyr + eturned + fitacyr + iu-cy + iu-cy.BGR + iu-cy.accented + o + o-cy + o-cy.accented + oBinocular-cy + oDoubleMonocular-cy + oMonocular-cy + oacute + obarcyr + obardieresiscyr + obreve + ocircumflex + odieresis + odieresiscyr + ograve + ohungarumlaut + omacron + omegaBroad-cy + omegaroundcyr + omegatitlocyr + oslashacute + otilde + p + p.ss01 + schwacyr + schwadieresiscyr + thorn + uni1C82 + uniF499 + uniF49D + uniF4D3 + uniF4D5 + uniF4D7 + uniF519 + uniF51B + uniF51D + uniF51F + uniF523 + uniF525 + uniF52D + uniF52F + uniF83A + + public.kern1.period1 + + ellipsis + period + + public.kern1.quotedbl1 + + quotedbl + quotesingle + + public.kern1.quoteleft1 + + quotedblleft + quoteleft + + public.kern1.quoteright1 + + apostrophemod + minute + quotedblright + quoteright + second + + public.kern1.s1 + + dzwe-cy + s + sacute + scaron + scedilla + scircumflex + scommaaccent + + public.kern1.t.ss011 + + t.ss01 + tcedilla.ss01 + tcommaaccent.ss01 + + public.kern1.t1 + + t + tcaron + tcedilla + tcommaaccent + + public.kern1.te-cy + + te-cy + tetailcyr + tsse-cy + twe-cy + + public.kern1.u1 + + igravecyr.SRB + ii-cy.BGR + iishort-cy.BGR + pe-cy.SRB + te-cy.SRB + u + uacute + ucircumflex + udieresis + ugrave + uhungarumlaut + umacron + uogonek + uring + + public.kern1.uni0435.ss011 + + ie-cy.ss01 + io-cy.ss01 + + public.kern1.v + + izhitsacyr + izhitsagravedblcyr + v + + public.kern1.w1 + + omegacyr + otcyr + w + wacute + wcircumflex + wdieresis + wecyr + wgrave + + public.kern1.x + + ha-cy + hahookcyr + lhacyr + rhacyr + uniF879 + x + + public.kern1.y1 + + Ukcyr + u-cy + u-cy.accented + uacutedblcyr + udieresiscyr + ukcyr + umacroncyr + uniF43B + uniF4CD + ushort-cy + ustraightcyr + ustraightstrokecyr + y + yacute + ycircumflex + ydieresis + + public.kern1.z1 + + dzelo-cy + z + zacute + zcaron + zdotaccent + zemlya-cy + + public.kern1.ze-cy + + dzeabkhcyr + ksicyr + uniF517 + ze-cy + ze-cy.BGR + zedieresiscyr + zetailcyr + zetailcyr.BSH + + public.kern1.zhe-cy + + dzzhecyr + katailcyr + kaverticalstrokecyr + xatailcyr + yusBlended-cy + yusbigcyr + yusbigiotifiedcyr + yusbigiotifiedcyr.BGR + zhe-cy + zhe-cy.BGR + zhebrevecyr + zhedieresiscyr + zhetailcyr + zhwe-cy + + public.kern2.A.ss01 + + A.ss01 + AE.ss01 + Aacute.ss01 + Acircumflex.ss01 + Adieresis.ss01 + Agrave.ss01 + Amacron.ss01 + Aogonek.ss01 + Atilde.ss01 + + public.kern2.A.ss012 + + A-cy.ss01 + Abreve.ss01 + Aring.ss01 + + public.kern2.A2 + + A + A-cy + A-cy.accented + AE + AEacute + Aacute + Abreve + Abrevecyr + Acaron + Acircumflex + Adieresis + Adieresiscyr + Agrave + Aiecyr + Amacron + Aogonek + Aring + Atilde + De-cy.BGR + Delta + El-cy.BGR + Yn-cy + YusClosedlittle-cy + Yuslittlecyr + uniF50E + uniF830 + + public.kern2.B + + B + D + Dcaron + E + Eacute + Ecaron + Ecircumflex + Edieresis + Edotaccent + Egrave + Emacron + Eogonek + F + H + Hbar + Hcircumflex + I + Iacute + Ibreve + Icircumflex + Idieresis + Idotaccent + Igrave + Imacron + Iogonek + Itilde + K + K.ss01 + Kcommaaccent + Kcommaaccent.ss01 + L + Lacute + Lcaron + Lcommaaccent + Ldot + M + N + N.ss01 + Nacute + Nacute.ss01 + Ncaron + Ncaron.ss01 + Ncommaaccent + Ncommaaccent.ss01 + Ntilde + Ntilde.ss01 + P + R + Racute + Rcaron + Rcommaaccent + Thorn + uni1EBC + + public.kern2.Che-cy + + Cche-cy + Che-cy + Chedieresiscyr + Chekhakascyr + Chetailcyr + Chevertcyr + uniF4C6 + uniF87E + + public.kern2.De-cy + + Dchecyr + De-cy + DeSoft-cy + Dwe-cy + Dzze-cy + Dzzhecyr + TseReversed-cy + + public.kern2.El-cy + + El-cy + ElSoft-cy + Elhookcyr + Elmiddlehookcyr + Elsharptailcyr + Eltailcyr + Lhacyr + Ljekomicyr + uniF872 + + public.kern2.Eth + + Dcroat + Eth + Gestrokecyr + + public.kern2.G + + C + Cacute + Ccaron + Ccedilla + Ccircumflex + Cdotaccent + CrossedO-cy + DoubleO-cy + E-cy + Ef-cy.BGR + Es-cy + Estailcyr + Estailcyr.BSH + Estailcyr.CHU + Fitacyr + G + G.ss01 + Gacute + Gacute.ss01 + Gbreve + Gbreve.ss01 + Gcircumflex + Gcircumflex.ss01 + Gcommaaccent + Gcommaaccent.ss01 + Gdotaccent + Gdotaccent.ss01 + Haabkhcyr + Koppacyr + O + O-cy + O-cy.accented + OBinocular-cy + ODoubleMonocular-cy + OE + OMonocular-cy + Oacute + Obarcyr + Obardieresiscyr + Obreve + Ocircumflex + Odieresis + Odieresiscyr + Ograve + Ohungarumlaut + Omacron + Omegaroundcyr + Oslash + Otilde + Q + Q.ss01 + Qacyr + Schwacyr + Schwadieresiscyr + Sjekomicyr + Ukcyr + YuReversed-cy + uniF45D + uniF49A + uniF49C + uniF4D2 + uniF518 + uniF51A + uniF51C + uniF51E + uniF526 + uniF839 + uniF875 + + public.kern2.Gecyr + + Be-cy + E-cy.accented + Eiotifiedcyr + Em-cy + EmSoft-cy + Emsharptailcyr + En-cy + Engecyr + Enhookcyr + Enhookleftcyr + Enmiddlehookcyr + Ensharptailcyr + Entailcyr + Er-cy + Ertickcyr + Gehookcyr + Gestrokecyr.BSH + Getailcyr + Gheupturn-cy + Gjecyr + Hwe-cy + I-cy + Iebrevecyr + Ii-cy + Ii-cy.accented + Io-cy.accented + IotifiedA-cy + Iu-cy.accented + Ka-cy + Kaaleutcyr + Kahookcyr + Katailcyr + Kaverticalstrokecyr + Kjecyr + Njekomicyr + Palochkacyr + Pe-cy + Pehookcyr + Petailcyr + Rhacyr + Shhacyr + Shhatailcyr + Shwe-cy + Tswe-cy + Ve-cy + Yeru-cy.accented + Yeru-cymacron + Yi-cy + Ylongdieresiscyr + Yusbigiotifiedcyr + YusiotifiedClosedLittle-cy + Yuslittleiotifiedcyr + palochkacyr + uniF45E + uniF45F + uniF498 + uniF4D4 + uniF510 + uniF512 + uniF514 + uniF52C + uniF52E + uniF532 + uniF536 + uniF833 + uniF86F + uniF87B + + public.kern2.Ia-cy + + Ia-cy + Ia-cy.accented + Yaecyr + uniF4D8 + uniF528 + uniF52A + + public.kern2.Iishort-cy + + Idieresiscyr + Iishort-cy + Imacroncyr + Ishortsharptailcyr + + public.kern2.J + + J + Jcircumflex + Jecyr + + public.kern2.Oslash.alt + + Ha-cy.ss01 + Hahookcyr + X + X.ss01 + Xatailcyr + uniF878 + + public.kern2.S + + Dzwe-cy + S + Sacute + Scaron + Scedilla + Scircumflex + Scommaaccent + + public.kern2.T + + Djecyr + T + Tcaron + Tcedilla + Tche-cy + Tcommaaccent + Te-cy + TeWithMiddleHook-cy + Tetailcyr + Tetsecyr + Tjekomicyr + Tshecyr + Tsse-cy + Twe-cy + + public.kern2.U + + Iota-cy + OmegaBroad-cy + Omegacyr + Omegatitlocyr + Otcyr + Psicyr + U + Uacute + Ubreve + Ucircumflex + Udieresis + Ugrave + Uhungarumlaut + Umacron + Uogonek + Uring + Utilde + + public.kern2.Ucyr.ss01 + + U-cy.accented + U-cy.ss01 + Uacutedblcyr + Udieresiscyr + Umacroncyr + Ushort-cy.ss01 + uniF4CC + + public.kern2.V + + Izhitsacyr + Izhitsagravedblcyr + V + V.ss01 + + public.kern2.W + + W + W.ss01 + Wacute + Wacute.ss01 + Wcircumflex + Wcircumflex.ss01 + Wdieresis + Wdieresis.ss01 + Wecyr + Wgrave + Wgrave.ss01 + + public.kern2.Y + + Ustraightcyr + Ustraightstrokecyr + Y + Y.ss01 + Yacute + Yacute.ss01 + Ycircumflex + Ycircumflex.ss01 + Ydieresis + Ydieresis.ss01 + uniF43A + + public.kern2.Z + + Dzelo-cy + Z + Z.ss01 + Zacute + Zacute.ss01 + Zcaron + Zcaron.ss01 + Zdotaccent + Zdotaccent.ss01 + Zemlya-cy + + public.kern2.Ze-cy1 + + Dzeabkhcyr + Ksicyr + Ze-cy + Zedieresiscyr + Zetailcyr + Zetailcyr.BSH + Zhwe-cy + uniF516 + + public.kern2.Zhe-cy1 + + YusBlended-cy + Yusbigcyr + Zhe-cy + Zhebrevecyr + Zhedieresiscyr + Zhetailcyr + + public.kern2.a + + a + a-cy + a-cy.accented + aacute + abreve + abrevecyr + acaron + acircumflex + adieresis + adieresiscyr + ae + aeacute + agrave + aiecyr + amacron + aogonek + aring + atilde + uniF50F + uniF831 + + public.kern2.acute.case + + acute.case + hungarumlaut.case + + public.kern2.che-cy + + cche-cy + che-cy + chedieresiscyr + chekhakascyr + chetailcyr + chevertcyr + uniF4C7 + uniF87F + + public.kern2.comma + + comma + quotedblbase + quotesinglbase + + public.kern2.copyright + + copyright + registered + + public.kern2.decyr.ss01 + + de-cy.ss01 + deSoft-cy + dwe-cy + dzze-cy + dzzhecyr + tseReversed-cy + + public.kern2.el-cy + + el-cy + el-cy.ss01 + elSoft-cy + elhookcyr + elmiddlehookcyr + elsharptailcyr + eltailcyr + lhacyr + ljecyr.ss01 + ljekomicyr + uniF873 + + public.kern2.el-cy.BGR1 + + el-cy.BGR + uni1C81 + yn-cy + yusClosedlittle-cy + yuslittlecyr + + public.kern2.emdash + + emdash + endash + hyphen + + public.kern2.f + + f + f_f + f_f_i + f_f_l + fi + fl + gestrokecyr + + public.kern2.f_f.ss01 + + f_f.ss01 + f_f_i.ss01 + f_f_l.ss01 + + public.kern2.fi.ss01 + + fi.ss01 + fl.ss01 + + public.kern2.five + + five + five.tf + + public.kern2.four + + four + four.tf + + public.kern2.g + + g + gacute + gbreve + gcircumflex + gcommaaccent + gdotaccent + + public.kern2.g.ss01 + + g.ss01 + gacute.ss01 + gbreve.ss01 + gcircumflex.ss01 + gcommaaccent.ss01 + gdotaccent.ss01 + + public.kern2.guillemotleft + + guillemetleft + guilsinglleft + + public.kern2.guillemotright + + guillemetright + guilsinglright + + public.kern2.h + + eiotifiedcyr.BGR + h + hcircumflex + hwe-cy + iotifieda-cy.BGR + iu-cy.BGR + k + ka-cy.BGR + kcommaaccent + l + lacute + lcaron + lcommaaccent + ldot + shhacyr + shhatailcyr + ve-cy.BGR + yatcyr.BGR + yusbigiotifiedcyr.BGR + + public.kern2.i1 + + i + i-cy + iacute + icircumflex + igrave + imacron + iogonek + itilde + uniF476 + yi-cy.alt + + public.kern2.ia-cy + + ia-cy + ia-cy.accented + ia-cy.ss01 + uniF4D9 + uniF529 + uniF52B + yaecyr + + public.kern2.j + + enhookleftcyr + j + jcircumflex + jdotless + + public.kern2.l.ss01 + + l.ss01 + lacute.ss01 + lcaron.ss01 + lcommaaccent.ss01 + ldot.ss01 + + public.kern2.m + + eiotifiedcyr + em-cy + emSoft-cy + emsharptailcyr + en-cy + eng + engecyr + enhookcyr + enmiddlehookcyr + ensharptailcyr + entailcyr + er-cy + er-cy.ss01 + ertickcyr + ge-cy + gehookcyr + gehookstrokecyr + gestrokecyr.BSH + getailcyr + gheupturn-cy + gjecyr + idieresiscyr + idotless + igravecyr + ii-cy + ii-cy.accented + iishort-cy + imacroncyr + iotifieda-cy + ishortsharptailcyr + iu-cy + iu-cy.accented + ka-cy + kaaleutcyr + kahookcyr + katailcyr + kaverticalstrokecyr + kgreenlandic + kjecyr + m + mu + n + nacute + ncaron + ncommaaccent + njecyr.ss01 + njekomicyr + ntilde + p + p.ss01 + pe-cy + pe-cy.BGR + pehookcyr + petailcyr + psicyr + r + racute + rcaron + rcommaaccent + rhacyr + sha-cy + shcha-cy + shwe-cy + softsign-cy + softsign-cy.BGR + softsign-cy.ss01 + te-cy.BGR + tse-cy + tswe-cy + uni1C85 + uniF499 + uniF4D5 + uniF521 + uniF52D + uniF52F + uniF533 + uniF537 + uniF870 + uniF87C + ve-cy + ve-cy.ss01 + yatIotified-cy + yeru-cy + yeru-cy.accented + yeru-cy.ss01 + ylongdieresiscyr + yusbigiotifiedcyr + yusiotifiedClosedLittle-cy + yuslittleiotifiedcyr + + public.kern2.o + + Dekomicyr + Djekomicyr + a-cy.ss01 + a.ss01 + aacute.ss01 + abreve.ss01 + acircumflex.ss01 + adieresis.ss01 + agrave.ss01 + amacron.ss01 + aogonek.ss01 + aring.ss01 + atilde.ss01 + c + cacute + ccaron + ccedilla + ccircumflex + cdotaccent + cent + crossedo-cy + d + d.ss01 + dcaron + dcaron.ss01 + dcroat + dcroat.ss01 + de-cy.BGR + dekomicyr + djekomicyr + e + e-cy + e-cy.accented + e-cy.hist + e.ss01 + eacute + eacute.ss01 + ebreve + ebreve.ss01 + ecaron + ecaron.ss01 + ecircumflex + ecircumflex.ss01 + edieresis + edieresis.ss01 + edotaccent + edotaccent.ss01 + ef-cy + egrave + egrave.ss01 + emacron + emacron.ss01 + eogonek + eogonek.ss01 + es-cy + estailcyr + estailcyr.BSH + estailcyr.CHU + eth + eturned + fitacyr + haabkhcyr + ie-cy + ie-cy.ss01 + iebrevecyr + iegravecyr + iegravecyr.SRB + io-cy + io-cy.accented + io-cy.ss01 + koppacyr + o + o-cy + o-cy.accented + oBinocular-cy + oDoubleMonocular-cy + oMonocular-cy + oacute + obarcyr + obardieresiscyr + obreve + ocircumflex + odieresis + odieresiscyr + oe.ss01 + ograve + ohungarumlaut + omacron + omegaBroad-cy + omegaroundcyr + omegatitlocyr + oslashacute + otilde + q + q.ss01 + qacyr + schwacyr + schwadieresiscyr + sjekomicyr + ukcyr + uni1C82 + uni1C83 + uni1EBD + uniF475 + uniF49D + uniF4D3 + uniF511 + uniF513 + uniF515 + uniF519 + uniF51B + uniF51D + uniF51F + uniF527 + uniF834 + uniF83A + uniF876 + yuReversed-cy + + public.kern2.percent + + percent + perthousand + + public.kern2.period + + ellipsis + period + + public.kern2.quotedbl + + quotedbl + quotesingle + + public.kern2.quoteleft + + quotedblleft + quoteleft + + public.kern2.quoteright + + apostrophemod + minute + quotedblright + quoteright + second + + public.kern2.s + + dzwe-cy + s + sacute + scaron + scedilla + scircumflex + scommaaccent + + public.kern2.t + + t + t.ss01 + tbar.ss01 + tcaron + tcaron.ss01 + tcedilla + tcedilla.ss01 + tcommaaccent + tcommaaccent.ss01 + + public.kern2.tecyr + + tche-cy + te-cy.ss01 + tetailcyr + tetsecyr + tewithmiddlehook-cy + tjekomicyr + tsse-cy + twe-cy + + public.kern2.u + + igravecyr.SRB + ii-cy.BGR + iishort-cy.BGR + iota-cy + pe-cy.SRB + sha-cy.BGR + shcha-cy.BGR + te-cy.SRB + tse-cy.BGR + u + uacute + ubreve + ucircumflex + udieresis + ugrave + uhungarumlaut + umacron + uogonek + uring + utilde + + public.kern2.v1 + + izhitsacyr + izhitsagravedblcyr + v + + public.kern2.w + + omegacyr + otcyr + w + wacute + wcircumflex + wdieresis + wecyr + wgrave + + public.kern2.x + + ha-cy + hahookcyr + uniF879 + x + + public.kern2.y + + u-cy + u-cy.accented + uacutedblcyr + udieresiscyr + umacroncyr + uniF43B + uniF4CD + ustraightcyr + ustraightstrokecyr + y + yacute + ycircumflex + ydieresis + + public.kern2.z + + dzelo-cy + z + zacute + zcaron + zdotaccent + zemlya-cy + + public.kern2.ze-cy1 + + dzeabkhcyr + ksicyr + uniF517 + ze-cy + ze-cy.BGR + zedieresiscyr + zetailcyr + zetailcyr.BSH + zhwe-cy + + public.kern2.zero + + uni1C80 + zero + zero.tf + + public.kern2.zhe-cy1 + + xatailcyr + yusBlended-cy + yusbigcyr + zhe-cy + zhe-cy.BGR + zhebrevecyr + zhedieresiscyr + zhetailcyr + + ss01 + + A-cy.ss01 + A.ss01 + AE.ss01 + Aacute.ss01 + Abreve.ss01 + Acircumflex.ss01 + Adieresis.ss01 + Agrave.ss01 + Amacron.ss01 + Aogonek.ss01 + Aring.ss01 + Atilde.ss01 + Em-cy.ss01 + Eng.ss01 + G.ss01 + Gacute.ss01 + Gbreve.ss01 + Gcircumflex.ss01 + Gcommaaccent.ss01 + Gdotaccent.ss01 + Ha-cy.ss01 + Ia-cy.ss01 + J.ss01 + Jcircumflex.ss01 + K.ss01 + Ka-cy.ss01 + Kcommaaccent.ss01 + M.ss01 + N.ss01 + Nacute.ss01 + Ncaron.ss01 + Ncommaaccent.ss01 + Ntilde.ss01 + Q.ss01 + U-cy.ss01 + Ushort-cy.ss01 + V.ss01 + W.ss01 + Wacute.ss01 + Wcircumflex.ss01 + Wdieresis.ss01 + Wgrave.ss01 + X.ss01 + Y.ss01 + Yacute.ss01 + Ycircumflex.ss01 + Ydieresis.ss01 + Z.ss01 + Zacute.ss01 + Zcaron.ss01 + Zdotaccent.ss01 + Zhe-cy.ss01 + a-cy.ss01 + a.ss01 + aacute.ss01 + abreve.ss01 + acircumflex.ss01 + adieresis.ss01 + ae.ss01 + agrave.ss01 + amacron.ss01 + aogonek.ss01 + aring.ss01 + arrowdown.ss01 + arrowdown.ss01.case + arrowleft.ss01 + arrowleft.ss01.case + arrowright.ss01 + arrowright.ss01.case + arrowup.ss01 + arrowup.ss01.case + atilde.ss01 + b.ss01 + d.ss01 + dcaron.ss01 + dcroat.ss01 + de-cy.ss01 + e.ss01 + eacute.ss01 + ebreve.ss01 + ecaron.ss01 + ecircumflex.ss01 + edieresis.ss01 + edotaccent.ss01 + egrave.ss01 + el-cy.ss01 + emacron.ss01 + eogonek.ss01 + er-cy.ss01 + f.ss01 + f_f.ss01 + f_f_i.ss01 + f_f_l.ss01 + fi.ss01 + fl.ss01 + g.ss01 + gacute.ss01 + gbreve.ss01 + gcircumflex.ss01 + gcommaaccent.ss01 + gdotaccent.ss01 + germandbls.ss01 + hardsign-cy.ss01 + ia-cy.ss01 + ie-cy.ss01 + io-cy.ss01 + l.ss01 + lacute.ss01 + lcaron.ss01 + lcommaaccent.ss01 + ldot.ss01 + ljecyr.ss01 + lslash.ss01 + njecyr.ss01 + numero.ss01 + oe.ss01 + p.ss01 + q.ss01 + softsign-cy.ss01 + t.ss01 + tbar.ss01 + tcaron.ss01 + tcedilla.ss01 + tcommaaccent.ss01 + te-cy.ss01 + ve-cy.ss01 + yen.ss01 + yeru-cy.ss01 + + ss01_def + + A-cy + A + AE + Aacute + Abreve + Acircumflex + Adieresis + Agrave + Amacron + Aogonek + Aring + Atilde + Em-cy + Eng + G + Gacute + Gbreve + Gcircumflex + Gcommaaccent + Gdotaccent + Ha-cy + Ia-cy + J + Jcircumflex + K + Ka-cy + Kcommaaccent + M + N + Nacute + Ncaron + Ncommaaccent + Ntilde + Q + U-cy + Ushort-cy + V + W + Wacute + Wcircumflex + Wdieresis + Wgrave + X + Y + Yacute + Ycircumflex + Ydieresis + Z + Zacute + Zcaron + Zdotaccent + Zhe-cy + a-cy + a + aacute + abreve + acircumflex + adieresis + ae + agrave + amacron + aogonek + aring + arrowdown + arrowdown.case + arrowleft + arrowleft.case + arrowright + arrowright.case + arrowup + arrowup.case + atilde + b + d + dcaron + dcroat + de-cy + e + eacute + ebreve + ecaron + ecircumflex + edieresis + edotaccent + egrave + el-cy + emacron + eogonek + er-cy + f + f_f + f_f_i + f_f_l + fi + fl + g + gacute + gbreve + gcircumflex + gcommaaccent + gdotaccent + germandbls + hardsign-cy + ia-cy + ie-cy + io-cy + l + lacute + lcaron + lcommaaccent + ldot + ljecyr + lslash + njecyr + numero + oe + p + q + softsign-cy + t + tbar + tcaron + tcedilla + tcommaaccent + te-cy + ve-cy + yen + yeru-cy + + + diff --git a/sources/FixelText-ExtraLight.ufo/kerning.plist b/sources/FixelText-ExtraLight.ufo/kerning.plist new file mode 100644 index 00000000..850a3ab4 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/kerning.plist @@ -0,0 +1,2024 @@ + + + + + Zhe-cy + + public.kern2.G + -23 + + space + + public.kern2.W + -3 + public.kern2.Y + -23 + + uni1C82 + + public.kern2.y + -73 + + public.kern1.A.ss012 + + public.kern2.G + -10 + public.kern2.T + -10 + public.kern2.U + -7 + public.kern2.Ucyr.ss01 + -10 + public.kern2.V + -10 + public.kern2.W + -7 + public.kern2.Y + -18 + public.kern2.Z + -3 + public.kern2.a + -3 + public.kern2.emdash + -3 + public.kern2.o + -7 + public.kern2.quotedbl + -13 + public.kern2.quoteright + -13 + public.kern2.tecyr + -10 + public.kern2.u + -7 + public.kern2.w + -10 + public.kern2.x + 1 + public.kern2.y + -3 + + public.kern1.A2 + + public.kern2.G + -7 + public.kern2.T + -13 + public.kern2.U + -3 + public.kern2.Ucyr.ss01 + -7 + public.kern2.V + -8 + public.kern2.W + -7 + public.kern2.Y + -17 + public.kern2.Z + 3 + public.kern2.a + -2 + public.kern2.decyr.ss01 + 1 + public.kern2.emdash + -3 + public.kern2.g + 2 + public.kern2.j + -7 + public.kern2.o + -3 + public.kern2.period + 10 + public.kern2.quotedbl + -17 + public.kern2.quoteright + -20 + public.kern2.t + -3 + public.kern2.tecyr + -10 + public.kern2.u + -2 + public.kern2.w + -7 + public.kern2.y + -13 + public.kern2.z + 3 + + public.kern1.C1 + + public.kern2.G + -2 + public.kern2.Oslash.alt + -2 + public.kern2.Y + -7 + public.kern2.Z + -3 + public.kern2.emdash + -7 + public.kern2.g + -2 + public.kern2.j + -2 + public.kern2.o + -3 + public.kern2.period + -7 + public.kern2.u + -1 + public.kern2.x + -2 + + public.kern1.Decyr + + public.kern2.G + -3 + public.kern2.Ucyr.ss01 + -10 + public.kern2.a + -3 + public.kern2.comma + 10 + public.kern2.emdash + -3 + public.kern2.o + -3 + public.kern2.period + 3 + public.kern2.quoteright + -10 + public.kern2.tecyr + -7 + + public.kern1.E1 + + public.kern2.G + -2 + public.kern2.J + 3 + public.kern2.o + -3 + public.kern2.period + 7 + public.kern2.quotedbl + 3 + public.kern2.w + -2 + public.kern2.y + -3 + + public.kern1.G.ss01 + + public.kern2.A.ss01 + 3 + public.kern2.T + -3 + public.kern2.V + -7 + public.kern2.W + -3 + public.kern2.Y + -7 + public.kern2.quotedbl + -3 + public.kern2.quoteright + -7 + public.kern2.t + -1 + public.kern2.w + -8 + public.kern2.y + -7 + + public.kern1.G1 + + public.kern2.G + 3 + public.kern2.T + -3 + public.kern2.V + -7 + public.kern2.W + -3 + public.kern2.Y + -7 + public.kern2.comma + 3 + public.kern2.emdash + 7 + public.kern2.period + 3 + + public.kern1.Ge-cy + + public.kern2.A.ss012 + -10 + public.kern2.A2 + -10 + public.kern2.G + -3 + public.kern2.Gecyr + 3 + public.kern2.T + 20 + public.kern2.a + -20 + public.kern2.comma + -27 + public.kern2.emdash + -20 + public.kern2.guillemotright + -17 + public.kern2.i1 + 7 + public.kern2.m + -20 + public.kern2.o + -27 + public.kern2.period + -30 + public.kern2.x + -17 + public.kern2.y + -17 + + public.kern1.H + + public.kern2.comma + -7 + public.kern2.j + -3 + public.kern2.quoteright + -7 + + public.kern1.Hardcyr + + public.kern2.A.ss012 + 3 + public.kern2.Oslash.alt + -2 + public.kern2.T + -37 + public.kern2.Ucyr.ss01 + -23 + public.kern2.quotedbl + -40 + public.kern2.quoteright + -23 + public.kern2.tecyr + -10 + public.kern2.x + -7 + public.kern2.y + -10 + + public.kern1.J1 + + public.kern2.A.ss012 + 1 + public.kern2.A2 + -3 + public.kern2.S + -7 + public.kern2.Z + -3 + public.kern2.comma + -10 + public.kern2.period + -10 + + public.kern1.K + + public.kern2.G + -43 + public.kern2.J + 3 + public.kern2.S + -3 + public.kern2.U + -1 + public.kern2.a + -3 + public.kern2.emdash + -20 + public.kern2.f + -2 + public.kern2.g + -7 + public.kern2.j + -3 + public.kern2.o + -13 + public.kern2.period + 3 + public.kern2.quoteright + -10 + public.kern2.t + -10 + public.kern2.tecyr + -13 + public.kern2.u + -10 + public.kern2.w + -10 + public.kern2.y + -13 + + public.kern1.L + + public.kern2.G + -13 + public.kern2.J + 3 + public.kern2.T + -30 + public.kern2.U + -13 + public.kern2.V + -33 + public.kern2.W + -20 + public.kern2.Y + -30 + public.kern2.a + -3 + public.kern2.emdash + -27 + public.kern2.guillemotleft + -10 + public.kern2.j + -3 + public.kern2.o + -13 + public.kern2.quotedbl + -30 + public.kern2.quoteright + -23 + public.kern2.t + -7 + public.kern2.u + -3 + public.kern2.w + -20 + public.kern2.y + -30 + public.kern2.z + 3 + + public.kern1.O + + Zhe-cy + -23 + public.kern2.A.ss012 + 2 + public.kern2.A2 + -7 + public.kern2.J + -13 + public.kern2.Oslash.alt + -7 + public.kern2.T + -10 + public.kern2.Ucyr.ss01 + -10 + public.kern2.V + -10 + public.kern2.W + -3 + public.kern2.Y + -13 + public.kern2.Z + -13 + public.kern2.a + -3 + public.kern2.comma + -20 + public.kern2.decyr.ss01 + -7 + public.kern2.emdash + 7 + public.kern2.j + -3 + public.kern2.period + -17 + public.kern2.quotedbl + -7 + public.kern2.x + -3 + public.kern2.z + -3 + + public.kern1.Oslash.alt + + public.kern2.G + -10 + public.kern2.S + -2 + public.kern2.a + -3 + public.kern2.comma + 3 + public.kern2.emdash + -7 + public.kern2.f + -2 + public.kern2.g + -2 + public.kern2.j + -3 + public.kern2.o + -10 + public.kern2.period + 3 + public.kern2.quoteright + -13 + public.kern2.s + -2 + public.kern2.t + -3 + public.kern2.tecyr + -7 + public.kern2.u + -3 + public.kern2.w + -7 + public.kern2.y + -7 + + public.kern1.P + + public.kern2.A.ss01 + -13 + public.kern2.A.ss012 + -13 + public.kern2.A2 + -20 + public.kern2.J + -23 + public.kern2.Oslash.alt + -10 + public.kern2.T + -7 + public.kern2.Ucyr.ss01 + -7 + public.kern2.V + -2 + public.kern2.W + -2 + public.kern2.Y + -3 + public.kern2.Z + -13 + public.kern2.a + -7 + public.kern2.comma + -37 + public.kern2.decyr.ss01 + -10 + public.kern2.emdash + -1 + public.kern2.g + -3 + public.kern2.g.ss01 + -7 + public.kern2.j + -10 + public.kern2.o + -10 + public.kern2.period + -43 + public.kern2.quotedbl + -7 + public.kern2.s + -7 + public.kern2.tecyr + 1 + public.kern2.x + -2 + public.kern2.z + -3 + + public.kern1.R + + public.kern2.G + -3 + public.kern2.T + -7 + public.kern2.U + -7 + public.kern2.V + -5 + public.kern2.W + -2 + public.kern2.Y + -7 + public.kern2.a + -2 + public.kern2.emdash + -3 + public.kern2.j + -3 + public.kern2.o + -7 + public.kern2.quotedbl + -7 + public.kern2.quoteright + -3 + public.kern2.s + -2 + public.kern2.t + -2 + public.kern2.u + -7 + public.kern2.w + -2 + public.kern2.y + -2 + + public.kern1.S1 + + public.kern2.Oslash.alt + -2 + public.kern2.T + -2 + public.kern2.V + -3 + public.kern2.W + -3 + public.kern2.Y + -10 + public.kern2.Z + -3 + public.kern2.comma + -3 + public.kern2.emdash + 3 + public.kern2.g + -7 + public.kern2.j + -3 + public.kern2.quotedbl + -10 + public.kern2.quoteright + -10 + public.kern2.t + -2 + public.kern2.w + -3 + public.kern2.x + -2 + public.kern2.y + -3 + + public.kern1.T1 + + public.kern2.A.ss01 + -7 + public.kern2.A.ss012 + -15 + public.kern2.A2 + -13 + public.kern2.G + -10 + public.kern2.J + -23 + public.kern2.S + -3 + public.kern2.T + 13 + public.kern2.V + 7 + public.kern2.W + 7 + public.kern2.Y + 3 + public.kern2.a + -20 + public.kern2.comma + -17 + public.kern2.decyr.ss01 + -27 + public.kern2.emdash + -23 + public.kern2.f + -3 + public.kern2.g + -23 + public.kern2.guillemotleft + -17 + public.kern2.guillemotright + -20 + public.kern2.i1 + 7 + public.kern2.j + -7 + public.kern2.m + -20 + public.kern2.o + -27 + public.kern2.period + -23 + public.kern2.quotedbl + 7 + public.kern2.quoteright + -7 + public.kern2.s + -20 + public.kern2.tecyr + -20 + public.kern2.u + -18 + public.kern2.w + -20 + public.kern2.x + -20 + public.kern2.y + -20 + public.kern2.z + -17 + + public.kern1.U1 + + public.kern2.A.ss01 + -3 + public.kern2.A.ss012 + -1 + public.kern2.A2 + -3 + public.kern2.J + -7 + public.kern2.Z + -7 + public.kern2.comma + -10 + public.kern2.j + -7 + public.kern2.period + -10 + public.kern2.quoteright + -13 + public.kern2.z + -3 + + public.kern1.Ucyr1 + + public.kern2.A.ss012 + -7 + public.kern2.A2 + -7 + public.kern2.G + -7 + public.kern2.Gecyr + -3 + public.kern2.T + 3 + public.kern2.a + -17 + public.kern2.comma + -30 + public.kern2.decyr.ss01 + -17 + public.kern2.emdash + -17 + public.kern2.guillemotright + -20 + public.kern2.i1 + 7 + public.kern2.m + -20 + public.kern2.o + -23 + public.kern2.period + -30 + public.kern2.tecyr + -7 + public.kern2.x + -7 + public.kern2.y + -10 + + public.kern1.V + + public.kern2.A.ss01 + -20 + public.kern2.A.ss012 + -7 + public.kern2.A2 + -8 + public.kern2.G + -10 + public.kern2.J + -27 + public.kern2.S + -3 + public.kern2.T + 7 + public.kern2.a + -17 + public.kern2.comma + -33 + public.kern2.emdash + -13 + public.kern2.f + -2 + public.kern2.g + -13 + public.kern2.g.ss01 + -13 + public.kern2.guillemotleft + -13 + public.kern2.guillemotright + -10 + public.kern2.j + -7 + public.kern2.m + -17 + public.kern2.o + -20 + public.kern2.period + -33 + public.kern2.quotedbl + 3 + public.kern2.quoteright + -3 + public.kern2.s + -13 + public.kern2.t + -3 + public.kern2.u + -17 + public.kern2.w + -3 + public.kern2.x + -7 + public.kern2.y + -7 + public.kern2.z + -7 + + public.kern1.W.ss011 + + public.kern2.A.ss01 + -3 + public.kern2.A.ss012 + -3 + public.kern2.A2 + -7 + public.kern2.G + -4 + public.kern2.J + -10 + public.kern2.S + -3 + public.kern2.T + 10 + public.kern2.Y + 3 + public.kern2.Z + -3 + public.kern2.a + -7 + public.kern2.comma + -20 + public.kern2.emdash + -7 + public.kern2.g + -5 + public.kern2.g.ss01 + -4 + public.kern2.guillemotright + -4 + public.kern2.i1 + -3 + public.kern2.m + -3 + public.kern2.o + -13 + public.kern2.period + -27 + public.kern2.quotedbl + 3 + public.kern2.quoteright + 7 + public.kern2.s + -4 + public.kern2.u + -3 + public.kern2.w + -6 + public.kern2.y + -4 + public.kern2.z + -3 + + public.kern1.W1 + + public.kern2.A.ss01 + -13 + public.kern2.A.ss012 + -3 + public.kern2.A2 + -7 + public.kern2.G + -3 + public.kern2.J + -23 + public.kern2.S + -2 + public.kern2.T + 7 + public.kern2.Z + -3 + public.kern2.a + -13 + public.kern2.comma + -13 + public.kern2.emdash + -7 + public.kern2.g + -10 + public.kern2.guillemotleft + -10 + public.kern2.guillemotright + -3 + public.kern2.i1 + 3 + public.kern2.j + -7 + public.kern2.m + -10 + public.kern2.o + -17 + public.kern2.period + -13 + public.kern2.quoteright + -7 + public.kern2.s + -7 + public.kern2.u + -7 + public.kern2.w + -2 + public.kern2.x + -3 + public.kern2.y + -3 + public.kern2.z + -7 + + public.kern1.Y.ss011 + + public.kern2.A.ss01 + -17 + public.kern2.A.ss012 + -23 + public.kern2.G + -10 + public.kern2.S + -1 + public.kern2.a + -17 + public.kern2.comma + -30 + public.kern2.emdash + -17 + public.kern2.i1 + 3 + public.kern2.m + -23 + public.kern2.o + -33 + public.kern2.period + -30 + public.kern2.quoteright + -10 + public.kern2.s + -19 + public.kern2.u + -20 + public.kern2.w + -13 + + public.kern1.Y1 + + public.kern2.A.ss012 + -10 + public.kern2.A2 + -17 + public.kern2.G + -13 + public.kern2.J + -27 + public.kern2.S + -10 + public.kern2.T + 3 + public.kern2.a + -23 + public.kern2.comma + -27 + public.kern2.emdash + -20 + public.kern2.f + -10 + public.kern2.g + -20 + public.kern2.guillemotleft + -23 + public.kern2.guillemotright + -20 + public.kern2.i1 + -7 + public.kern2.j + -10 + public.kern2.m + -27 + public.kern2.o + -33 + public.kern2.period + -33 + public.kern2.quotedbl + 3 + public.kern2.quoteright + -7 + public.kern2.s + -23 + public.kern2.t + -3 + public.kern2.u + -23 + public.kern2.w + -10 + public.kern2.x + -13 + public.kern2.y + -13 + public.kern2.z + -17 + + public.kern1.Yacyr + + public.kern2.Ucyr.ss01 + -3 + + public.kern1.Z1 + + public.kern2.A.ss01 + 3 + public.kern2.A.ss012 + 7 + public.kern2.G + -7 + public.kern2.T + 3 + public.kern2.U + -7 + public.kern2.W + 3 + public.kern2.a + -3 + public.kern2.comma + 3 + public.kern2.emdash + -13 + public.kern2.f + -1 + public.kern2.i1 + 3 + public.kern2.o + -10 + public.kern2.period + 3 + public.kern2.quoteright + -13 + public.kern2.s + -3 + public.kern2.t + -3 + public.kern2.u + -7 + public.kern2.w + -7 + public.kern2.y + -3 + + public.kern1.a1 + + public.kern2.A.ss012 + 3 + public.kern2.G + -2 + public.kern2.S + -7 + public.kern2.T + -23 + public.kern2.Ucyr.ss01 + -1 + public.kern2.V + -20 + public.kern2.W + -13 + public.kern2.Y + -27 + public.kern2.comma + -3 + public.kern2.j + -7 + public.kern2.quotedbl + -13 + public.kern2.quoteright + -20 + public.kern2.t + -2 + public.kern2.tecyr + -1 + public.kern2.u + -3 + public.kern2.w + -5 + public.kern2.y + -7 + public.kern2.z + 2 + + public.kern1.c1 + + public.kern2.A2 + 7 + public.kern2.G + 3 + public.kern2.T + -17 + public.kern2.Ucyr.ss01 + -17 + public.kern2.V + -10 + public.kern2.W + -7 + public.kern2.Y + -17 + public.kern2.g + 2 + public.kern2.period + -7 + public.kern2.quotedbl + -10 + public.kern2.quoteright + -7 + + public.kern1.comma1 + + public.kern2.A.ss01 + 3 + public.kern2.G + -17 + public.kern2.J + 7 + public.kern2.T + -23 + public.kern2.U + -10 + public.kern2.V + -27 + public.kern2.W + -10 + public.kern2.Y + -33 + public.kern2.a + -7 + public.kern2.five + -7 + public.kern2.h + -7 + public.kern2.i1 + -7 + public.kern2.m + -7 + public.kern2.o + -10 + public.kern2.t + -10 + public.kern2.u + -10 + public.kern2.w + -10 + public.kern2.x + -7 + public.kern2.y + -23 + public.kern2.z + -3 + public.kern2.zero + -10 + + public.kern1.dcaron + + public.kern2.B + 7 + public.kern2.G + 3 + public.kern2.Oslash.alt + 20 + public.kern2.S + 7 + public.kern2.T + 30 + public.kern2.U + 10 + public.kern2.V + 27 + public.kern2.W + 20 + public.kern2.Y + 27 + public.kern2.Z + 17 + public.kern2.a + 3 + public.kern2.f + 17 + public.kern2.fi.ss01 + 17 + public.kern2.h + 13 + public.kern2.i1 + 13 + public.kern2.j + 3 + public.kern2.m + 3 + public.kern2.s + 3 + public.kern2.t + 13 + public.kern2.w + 10 + public.kern2.x + 10 + public.kern2.y + 10 + public.kern2.z + 10 + + public.kern1.decyr1 + + public.kern2.A2 + 3 + public.kern2.T + -27 + public.kern2.Ucyr.ss01 + -13 + public.kern2.comma + 3 + public.kern2.decyr.ss01 + 5 + public.kern2.emdash + -3 + public.kern2.o + -7 + public.kern2.period + 3 + public.kern2.quoteright + -7 + public.kern2.tecyr + -7 + public.kern2.y + -3 + + public.kern1.e.ss011 + + public.kern2.Oslash.alt + -3 + public.kern2.V + -17 + public.kern2.quotedbl + -13 + public.kern2.quoteright + -10 + + public.kern1.e1 + + public.kern2.A.ss012 + 3 + public.kern2.A2 + -2 + public.kern2.Oslash.alt + -7 + public.kern2.T + -27 + public.kern2.Ucyr.ss01 + -23 + public.kern2.V + -20 + public.kern2.W + -17 + public.kern2.Y + -37 + public.kern2.Z + -3 + public.kern2.comma + -7 + public.kern2.j + -7 + public.kern2.period + -7 + public.kern2.quotedbl + -10 + public.kern2.quoteright + -13 + public.kern2.w + -3 + public.kern2.x + -7 + public.kern2.y + -7 + public.kern2.z + -3 + + public.kern1.emdash1 + + public.kern2.A.ss01 + 3 + public.kern2.A2 + -3 + public.kern2.G + 7 + public.kern2.J + -17 + public.kern2.Oslash.alt + -7 + public.kern2.S + -10 + public.kern2.T + -23 + public.kern2.Ucyr.ss01 + -17 + public.kern2.V + -13 + public.kern2.W + -7 + public.kern2.Y + -20 + public.kern2.Z + -7 + public.kern2.decyr.ss01 + -10 + public.kern2.five + -7 + public.kern2.four + 7 + public.kern2.g.ss01 + 3 + public.kern2.j + -7 + public.kern2.o + 3 + public.kern2.tecyr + -13 + public.kern2.x + -7 + public.kern2.y + -3 + public.kern2.z + -10 + + public.kern1.f1 + + public.kern2.A.ss012 + -3 + public.kern2.A2 + -7 + public.kern2.J + -20 + public.kern2.S + 3 + public.kern2.T + 3 + public.kern2.V + 3 + public.kern2.Y + 3 + public.kern2.a + -2 + public.kern2.comma + -13 + public.kern2.emdash + -7 + public.kern2.f + 3 + public.kern2.g + -3 + public.kern2.o + -10 + public.kern2.period + -23 + public.kern2.quotedbl + 7 + public.kern2.quoteright + 7 + public.kern2.s + -7 + public.kern2.t + 5 + public.kern2.y + 7 + + public.kern1.five1 + + public.kern2.comma + -10 + public.kern2.period + -5 + + public.kern1.four1 + + public.kern2.emdash + -7 + public.kern2.five + 3 + public.kern2.four + 3 + public.kern2.quotedbl + -7 + + public.kern1.g.ss011 + + public.kern2.V + -7 + public.kern2.quoteright + 3 + + public.kern1.g1 + + public.kern2.A2 + 2 + public.kern2.T + -27 + public.kern2.V + -7 + public.kern2.W + -3 + public.kern2.Y + -10 + public.kern2.comma + 3 + public.kern2.f + 3 + public.kern2.j + 5 + public.kern2.quotedbl + -3 + public.kern2.y + 3 + + public.kern1.gecyr + + public.kern2.A2 + -3 + public.kern2.T + -13 + public.kern2.Ucyr.ss01 + -7 + public.kern2.comma + -27 + public.kern2.decyr.ss01 + -10 + public.kern2.emdash + -17 + public.kern2.o + -7 + public.kern2.period + -27 + public.kern2.quoteright + 7 + public.kern2.tecyr + 7 + public.kern2.x + 3 + public.kern2.y + 7 + + public.kern1.guillemotright1 + + public.kern2.J + -13 + public.kern2.T + -17 + public.kern2.V + -13 + public.kern2.W + -10 + public.kern2.Y + -23 + + public.kern1.hardcyr + + public.kern2.Oslash.alt + -3 + public.kern2.T + -23 + public.kern2.Ucyr.ss01 + -20 + public.kern2.quotedbl + -37 + public.kern2.quoteright + -30 + public.kern2.tecyr + -30 + public.kern2.x + -7 + public.kern2.y + -17 + + public.kern1.i1 + + public.kern2.T + 7 + public.kern2.V + 7 + public.kern2.W + 3 + public.kern2.Y + 7 + public.kern2.i1 + 7 + public.kern2.j + -13 + public.kern2.quoteright + -3 + + public.kern1.icyr1 + + public.kern2.T + -20 + public.kern2.Ucyr.ss01 + -20 + public.kern2.V + -17 + public.kern2.W + -7 + public.kern2.Y + -27 + public.kern2.quoteright + -7 + + public.kern1.j1 + + public.kern2.quoteright + -7 + + public.kern1.k + + public.kern2.A.ss012 + 3 + public.kern2.A2 + 3 + public.kern2.G + -3 + public.kern2.J + 3 + public.kern2.T + -20 + public.kern2.Ucyr.ss01 + -7 + public.kern2.W + -7 + public.kern2.Y + -7 + public.kern2.a + -3 + public.kern2.emdash + -13 + public.kern2.o + -7 + public.kern2.x + 3 + + public.kern1.l + + public.kern2.quoteright + -7 + + public.kern1.l.ss011 + + public.kern2.A.ss01 + 7 + public.kern2.V + -13 + public.kern2.W + -13 + public.kern2.f + -13 + public.kern2.j + -7 + public.kern2.quotedbl + -7 + public.kern2.t + -3 + public.kern2.w + -10 + public.kern2.y + -10 + + public.kern1.n + + public.kern2.T + -22 + public.kern2.Ucyr.ss01 + -23 + public.kern2.V + -20 + public.kern2.W + -13 + public.kern2.Y + -33 + public.kern2.j + -7 + public.kern2.quotedbl + -10 + public.kern2.quoteright + -7 + public.kern2.tecyr + -3 + public.kern2.w + -5 + public.kern2.y + -7 + + public.kern1.o1 + + public.kern2.A2 + -3 + public.kern2.J + -7 + public.kern2.Oslash.alt + -10 + public.kern2.S + -3 + public.kern2.T + -27 + public.kern2.Ucyr.ss01 + -30 + public.kern2.V + -20 + public.kern2.W + -17 + public.kern2.Y + -33 + public.kern2.Z + -10 + public.kern2.a + -2 + public.kern2.comma + -13 + public.kern2.j + -7 + public.kern2.period + -17 + public.kern2.quotedbl + -13 + public.kern2.quoteright + -13 + public.kern2.s + -3 + public.kern2.tecyr + -7 + public.kern2.w + -5 + public.kern2.x + -8 + public.kern2.y + -8 + public.kern2.z + -7 + + public.kern1.period1 + + public.kern2.A.ss01 + 7 + public.kern2.A.ss012 + 10 + public.kern2.A2 + 10 + public.kern2.G + -17 + public.kern2.J + 7 + public.kern2.Oslash.alt + 3 + public.kern2.T + -23 + public.kern2.U + -10 + public.kern2.Ucyr.ss01 + -7 + public.kern2.V + -23 + public.kern2.W + -13 + public.kern2.Y + -33 + public.kern2.Z + 3 + public.kern2.five + -3 + public.kern2.j + -7 + public.kern2.o + -17 + public.kern2.t + -10 + public.kern2.tecyr + -20 + public.kern2.u + -10 + public.kern2.w + -10 + public.kern2.y + -25 + public.kern2.zero + -3 + + public.kern1.quotedbl1 + + public.kern2.A.ss01 + -17 + public.kern2.A.ss012 + -10 + public.kern2.A2 + -17 + public.kern2.G + -7 + public.kern2.J + -27 + public.kern2.T + 10 + public.kern2.V + 3 + public.kern2.W + 3 + public.kern2.Y + 3 + public.kern2.Z + -3 + public.kern2.a + -10 + public.kern2.decyr.ss01 + -13 + public.kern2.four + -20 + public.kern2.g + -10 + public.kern2.g.ss01 + -7 + public.kern2.j + -7 + public.kern2.o + -13 + public.kern2.period + -3 + public.kern2.s + -10 + public.kern2.x + -3 + public.kern2.z + -3 + public.kern2.zero + -7 + + public.kern1.quoteleft1 + + public.kern2.A.ss01 + -20 + public.kern2.A2 + -17 + public.kern2.G + -7 + public.kern2.J + -13 + public.kern2.Oslash.alt + 3 + public.kern2.T + 13 + public.kern2.V + 7 + public.kern2.W + 10 + public.kern2.Y + 10 + public.kern2.a + -10 + public.kern2.f + 3 + public.kern2.g + -17 + public.kern2.g.ss01 + -13 + public.kern2.i1 + 10 + public.kern2.j + -3 + public.kern2.m + -7 + public.kern2.o + -20 + public.kern2.s + -10 + public.kern2.u + -7 + public.kern2.w + -10 + public.kern2.x + -10 + public.kern2.y + -7 + public.kern2.z + -10 + + public.kern1.quoteright1 + + public.kern2.A.ss01 + -20 + public.kern2.A2 + -20 + public.kern2.B + -3 + public.kern2.G + -13 + public.kern2.J + -17 + public.kern2.Oslash.alt + -3 + public.kern2.S + -10 + public.kern2.T + 3 + public.kern2.U + -7 + public.kern2.V + 3 + public.kern2.W + 7 + public.kern2.Z + -7 + public.kern2.a + -23 + public.kern2.g + -27 + public.kern2.g.ss01 + -23 + public.kern2.h + -10 + public.kern2.i1 + -7 + public.kern2.m + -10 + public.kern2.o + -30 + public.kern2.s + -23 + public.kern2.t + -3 + public.kern2.u + -10 + public.kern2.w + -13 + public.kern2.x + -13 + public.kern2.y + -10 + public.kern2.z + -20 + + public.kern1.s1 + + public.kern2.A2 + 3 + public.kern2.J + 3 + public.kern2.Oslash.alt + -2 + public.kern2.T + -20 + public.kern2.V + -13 + public.kern2.W + -7 + public.kern2.Y + -20 + public.kern2.Z + -3 + public.kern2.comma + -3 + public.kern2.period + -7 + public.kern2.quotedbl + -10 + public.kern2.quoteright + -7 + public.kern2.x + -3 + + public.kern1.t.ss011 + + public.kern2.emdash + -3 + + public.kern1.t1 + + public.kern2.G + -3 + public.kern2.J + 7 + public.kern2.T + -5 + public.kern2.V + -7 + public.kern2.W + -3 + public.kern2.Y + -8 + public.kern2.emdash + -10 + public.kern2.h + 3 + public.kern2.o + -3 + public.kern2.t + 3 + public.kern2.y + 3 + public.kern2.z + 7 + + public.kern1.u1 + + public.kern2.T + -20 + public.kern2.V + -17 + public.kern2.W + -10 + public.kern2.Y + -27 + public.kern2.j + -7 + public.kern2.quoteright + -7 + + public.kern1.uni0435.ss011 + + public.kern2.T + -23 + public.kern2.Ucyr.ss01 + -20 + public.kern2.V + -17 + public.kern2.W + -7 + public.kern2.Y + -20 + public.kern2.w + -1 + public.kern2.x + -3 + public.kern2.y + -3 + + public.kern1.w1 + + public.kern2.A.ss012 + -1 + public.kern2.A2 + -7 + public.kern2.J + -10 + public.kern2.Oslash.alt + -7 + public.kern2.S + -7 + public.kern2.T + -20 + public.kern2.V + -3 + public.kern2.W + -2 + public.kern2.Y + -10 + public.kern2.Z + -10 + public.kern2.a + -5 + public.kern2.comma + -7 + public.kern2.g.ss01 + -3 + public.kern2.j + -3 + public.kern2.o + -5 + public.kern2.period + -10 + + public.kern1.x + + public.kern2.G + -3 + public.kern2.S + -3 + public.kern2.T + -20 + public.kern2.Ucyr.ss01 + -7 + public.kern2.V + -7 + public.kern2.W + -3 + public.kern2.Y + -13 + public.kern2.emdash + -7 + public.kern2.o + -8 + public.kern2.quotedbl + -3 + public.kern2.s + -3 + + public.kern1.y1 + + public.kern2.A.ss012 + -1 + public.kern2.A2 + -7 + public.kern2.J + -13 + public.kern2.Oslash.alt + -10 + public.kern2.T + -20 + public.kern2.Ucyr.ss01 + -2 + public.kern2.V + -7 + public.kern2.W + -2 + public.kern2.Y + -13 + public.kern2.Z + -7 + public.kern2.a + -2 + public.kern2.comma + -13 + public.kern2.decyr.ss01 + -7 + public.kern2.f + 7 + public.kern2.g + -3 + public.kern2.g.ss01 + -7 + public.kern2.j + -3 + public.kern2.o + -3 + public.kern2.period + -27 + public.kern2.quoteright + 7 + public.kern2.t + 3 + public.kern2.tecyr + 3 + + public.kern1.z1 + + public.kern2.A2 + 3 + public.kern2.S + -7 + public.kern2.T + -17 + public.kern2.V + -7 + public.kern2.W + -7 + public.kern2.Y + -17 + public.kern2.comma + 3 + public.kern2.f + 3 + public.kern2.o + -7 + public.kern2.quotedbl + -7 + public.kern2.quoteright + -3 + + + diff --git a/sources/FixelText-ExtraLight.ufo/layercontents.plist b/sources/FixelText-ExtraLight.ufo/layercontents.plist new file mode 100644 index 00000000..7a35a5cf --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/layercontents.plist @@ -0,0 +1,10 @@ + + + + + + public.default + glyphs + + + diff --git a/sources/FixelText-ExtraLight.ufo/lib.plist b/sources/FixelText-ExtraLight.ufo/lib.plist new file mode 100644 index 00000000..c0069150 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/lib.plist @@ -0,0 +1,1671 @@ + + + + + com.fontlab.v2.tth + + stems + + 69 + + width + 69 + horizontal + + round + + 35 + 3 + 47 + 4 + 60 + 5 + 0 + 7 + 22 + 8 + + + 74 + + width + 74 + horizontal + + round + + 19 + 2 + 35 + 3 + 47 + 4 + 60 + 5 + 72 + 6 + 0 + 7 + 20 + 8 + + + 76 + + width + 76 + horizontal + + round + + 19 + 2 + 35 + 3 + 72 + 6 + 0 + 7 + 20 + 8 + + + 80 + + width + 80 + horizontal + + round + + 29 + 3 + 47 + 4 + 60 + 5 + 72 + 6 + 0 + 7 + 20 + 8 + + + 99 + + width + 99 + horizontal + + round + + 19 + 2 + 29 + 3 + 37 + 4 + 48 + 5 + 58 + 6 + 0 + 7 + 16 + 8 + + + 74 + + width + 74 + horizontal + + round + + 19 + 2 + 35 + 3 + 47 + 4 + 60 + 5 + 72 + 6 + 0 + 7 + 20 + 8 + + + 80 + + width + 80 + horizontal + + round + + 29 + 3 + 47 + 4 + 60 + 5 + 72 + 6 + 0 + 7 + 20 + 8 + + + 93 + + width + 93 + horizontal + + round + + 19 + 2 + 29 + 3 + 37 + 4 + 48 + 5 + 58 + 6 + 0 + 7 + 16 + 8 + + + + + com.schriftgestaltung.disablesAutomaticAlignment + + com.schriftgestaltung.fontMasterID + master01 + com.schriftgestaltung.glyphOrder + + com.schriftgestaltung.master.name + regular + com.schriftgestaltung.useNiceNames + + com.schriftgestaltung.weightValue + 400 + public.postscriptNames + + A-cy + uni0410 + A-cy.ss01 + uni0410.ss01 + Be-cy + uni0411 + Che-cy + uni0427 + De-cy + uni0414 + Dze-cy + uni0405 + E-cy + uni0404 + Ef-cy + uni0424 + El-cy + uni041B + Em-cy + uni041C + Em-cy.ss01 + uni041C.ss01 + En-cy + uni041D + Er-cy + uni0420 + Ereversed-cy + uni042D + Es-cy + uni0421 + Gacute + uni01F4 + Gacute.ss01 + uni01F4.ss01 + Gcommaaccent + uni0122 + Gcommaaccent.ss01 + uni0122.ss01 + Ge-cy + uni0413 + Germandbls + uni1E9E + Gheupturn-cy + uni0490 + Ha-cy + uni0425 + Ha-cy.ss01 + uni0425.ss01 + Hardsign-cy + uni042A + I-cy + uni0406 + Ia-cy + uni042F + Ia-cy.ss01 + uni042F.ss01 + Ie-cy + uni0415 + Ii-cy + uni0418 + Iishort-cy + uni0419 + Io-cy + uni0401 + Iu-cy + uni042E + Ka-cy + uni041A + Ka-cy.ss01 + uni041A.ss01 + Kcommaaccent + uni0136 + Kcommaaccent.ss01 + uni0136.ss01 + Lcommaaccent + uni013B + Ncommaaccent + uni0145 + Ncommaaccent.ss01 + uni0145.ss01 + O-cy + uni041E + Pe-cy + uni041F + Rcommaaccent + uni0156 + Scommaaccent + uni0218 + Sha-cy + uni0428 + Shcha-cy + uni0429 + Softsign-cy + uni042C + Tcedilla + uni0162 + Tcommaaccent + uni021A + Te-cy + uni0422 + Tse-cy + uni0426 + U-cy + uni0423 + U-cy.ss01 + uni0423.ss01 + Ushort-cy + uni040E + Ushort-cy.ss01 + uni040E.ss01 + Ve-cy + uni0412 + Yeru-cy + uni042B + Yi-cy + uni0407 + Ze-cy + uni0417 + Zhe-cy + uni0416 + Zhe-cy.ss01 + uni0416.ss01 + _perc-circule + _perccircule + a-cy + uni0430 + a-cy.ss01 + uni0430.ss01 + be-cy + uni0431 + che-cy + uni0447 + commaaccentcomb + uni0326 + commaaccentcomb.salt + uni0326.salt + de-cy + uni0434 + de-cy.ss01 + uni0434.ss01 + dze-cy + uni0455 + e-cy + uni0454 + ef-cy + uni0444 + el-cy + uni043B + el-cy.ss01 + uni043B.ss01 + em-cy + uni043C + en-cy + uni043D + er-cy + uni0440 + er-cy.ss01 + uni0440.ss01 + ereversed-cy + uni044D + es-cy + uni0441 + euro + Euro + gacute + uni01F5 + gacute.ss01 + uni01F5.ss01 + gcommaaccent + uni0123 + gcommaaccent.ss01 + uni0123.ss01 + ge-cy + uni0433 + gheupturn-cy + uni0491 + guillemetleft + guillemotleft + guillemetright + guillemotright + ha-cy + uni0445 + hardsign-cy + uni044A + hardsign-cy.ss01 + uni044A.ss01 + hryvnia + uni20B4 + i-cy + uni0456 + ia-cy + uni044F + ia-cy.ss01 + uni044F.ss01 + idotless + dotlessi + ie-cy + uni0435 + ie-cy.ss01 + uni0435.ss01 + ii-cy + uni0438 + iishort-cy + uni0439 + io-cy + uni0451 + io-cy.ss01 + uni0451.ss01 + iu-cy + uni044E + jdotless + uni0237 + je-cy + uni0458 + ka-cy + uni043A + kcommaaccent + uni0137 + lcommaaccent + uni013C + lcommaaccent.ss01 + uni013C.ss01 + ncommaaccent + uni0146 + numero + uni2116 + numero.ss01 + uni2116.ss01 + o-cy + uni043E + onesuperior + uni00B9 + pe-cy + uni043F + rcommaaccent + uni0157 + scommaaccent + uni0219 + sha-cy + uni0448 + shcha-cy + uni0449 + softsign-cy + uni044C + softsign-cy.ss01 + uni044C.ss01 + tcedilla + uni0163 + tcedilla.ss01 + uni0163.ss01 + tcommaaccent + uni021B + tcommaaccent.ss01 + uni021B.ss01 + te-cy + uni0442 + te-cy.ss01 + uni0442.ss01 + threesuperior + uni00B3 + tse-cy + uni0446 + twosuperior + uni00B2 + u-cy + uni0443 + ushort-cy + uni045E + ve-cy + uni0432 + ve-cy.ss01 + uni0432.ss01 + yeru-cy + uni044B + yeru-cy.ss01 + uni044B.ss01 + yi-cy + uni0457 + ze-cy + uni0437 + zhe-cy + uni0436 + + public.skipExportGlyphs + + Oslash.bold + oslash.bold + _perc-circule + + public.glyphOrder + + .notdef + NULL + CR + space + A + Aacute + Abreve + Acircumflex + Adieresis + Agrave + Amacron + Aogonek + Aring + Atilde + AE + B + C + Cacute + Ccaron + Ccedilla + Ccircumflex + Cdotaccent + D + Eth + Dcaron + Dcroat + E + Eacute + Ebreve + Ecaron + Ecircumflex + Edieresis + Edotaccent + Egrave + Emacron + Eogonek + F + G + Gacute + Gbreve + Gcircumflex + Gcommaaccent + Gdotaccent + H + Hbar + Hcircumflex + I + IJ + Iacute + Ibreve + Icircumflex + Idieresis + Idotaccent + Igrave + Imacron + Iogonek + Itilde + J + Jcircumflex + K + Kcommaaccent + L + Lacute + Lcaron + Lcommaaccent + Ldot + Lslash + M + N + Nacute + Ncaron + Ncommaaccent + Eng + Ntilde + O + Oacute + Obreve + Ocircumflex + Odieresis + Ograve + Ohungarumlaut + Omacron + Oslash + Otilde + OE + P + Thorn + Q + R + Racute + Rcaron + Rcommaaccent + S + Sacute + Scaron + Scedilla + Scircumflex + Scommaaccent + Germandbls + T + Tbar + Tcaron + Tcedilla + Tcommaaccent + U + Uacute + Ubreve + Ucircumflex + Udieresis + Ugrave + Uhungarumlaut + Umacron + Uogonek + Uring + Utilde + V + W + Wacute + Wcircumflex + Wdieresis + Wgrave + X + Y + Yacute + Ycircumflex + Ydieresis + Z + Zacute + Zcaron + Zdotaccent + A.ss01 + Aacute.ss01 + Abreve.ss01 + Acircumflex.ss01 + Adieresis.ss01 + Agrave.ss01 + Amacron.ss01 + Aogonek.ss01 + Aring.ss01 + Atilde.ss01 + AE.ss01 + G.ss01 + Gacute.ss01 + Gbreve.ss01 + Gcircumflex.ss01 + Gcommaaccent.ss01 + Gdotaccent.ss01 + J.ss01 + Jcircumflex.ss01 + K.ss01 + Kcommaaccent.ss01 + M.ss01 + N.ss01 + Nacute.ss01 + Ncaron.ss01 + Ncommaaccent.ss01 + Eng.ss01 + Ntilde.ss01 + Q.ss01 + V.ss01 + W.ss01 + Wacute.ss01 + Wcircumflex.ss01 + Wdieresis.ss01 + Wgrave.ss01 + X.ss01 + Y.ss01 + Yacute.ss01 + Ycircumflex.ss01 + Ydieresis.ss01 + Z.ss01 + Zacute.ss01 + Zcaron.ss01 + Zdotaccent.ss01 + a + aacute + abreve + acircumflex + adieresis + agrave + amacron + aogonek + aring + atilde + ae + b + c + cacute + ccaron + ccedilla + ccircumflex + cdotaccent + d + eth + dcaron + dcroat + e + eacute + ebreve + ecaron + ecircumflex + edieresis + edotaccent + egrave + emacron + eogonek + f + g + gacute + gbreve + gcircumflex + gcommaaccent + gdotaccent + h + hbar + hcircumflex + i + idotless + iacute + ibreve + icircumflex + idieresis + igrave + ij + imacron + iogonek + itilde + j + jdotless + jcircumflex + k + kcommaaccent + kgreenlandic + l + lacute + lcaron + lcommaaccent + ldot + lslash + m + n + nacute + napostrophe + ncaron + ncommaaccent + eng + ntilde + o + oacute + obreve + ocircumflex + odieresis + ograve + ohungarumlaut + omacron + oslash + otilde + oe + p + thorn + q + r + racute + rcaron + rcommaaccent + s + sacute + scaron + scedilla + scircumflex + scommaaccent + germandbls + t + tbar + tcaron + tcedilla + tcommaaccent + u + uacute + ubreve + ucircumflex + udieresis + ugrave + uhungarumlaut + umacron + uogonek + uring + utilde + v + w + wacute + wcircumflex + wdieresis + wgrave + x + y + yacute + ycircumflex + ydieresis + z + zacute + zcaron + zdotaccent + a.ss01 + aacute.ss01 + abreve.ss01 + acircumflex.ss01 + adieresis.ss01 + agrave.ss01 + amacron.ss01 + aogonek.ss01 + aring.ss01 + atilde.ss01 + ae.ss01 + b.ss01 + d.ss01 + dcaron.ss01 + dcroat.ss01 + e.ss01 + eacute.ss01 + ebreve.ss01 + ecaron.ss01 + ecircumflex.ss01 + edieresis.ss01 + edotaccent.ss01 + egrave.ss01 + emacron.ss01 + eogonek.ss01 + f.ss01 + g.ss01 + gacute.ss01 + gbreve.ss01 + gcircumflex.ss01 + gcommaaccent.ss01 + gdotaccent.ss01 + l.ss01 + lacute.ss01 + lcaron.ss01 + lcommaaccent.ss01 + ldot.ss01 + lslash.ss01 + oe.ss01 + p.ss01 + q.ss01 + germandbls.ss01 + t.ss01 + tbar.ss01 + tcaron.ss01 + tcedilla.ss01 + tcommaaccent.ss01 + f_f + f_f_i + f_f_l + fi + fl + f_f.ss01 + f_f_i.ss01 + f_f_l.ss01 + fi.ss01 + fl.ss01 + ordfeminine + ordmasculine + A-cy + Be-cy + Ve-cy + Ge-cy + Gheupturn-cy + De-cy + Ie-cy + Io-cy + Zhe-cy + Ze-cy + Ii-cy + Iishort-cy + Ka-cy + El-cy + Em-cy + En-cy + O-cy + Pe-cy + Er-cy + Es-cy + Te-cy + U-cy + Ushort-cy + Ef-cy + Ha-cy + Che-cy + Tse-cy + Sha-cy + Shcha-cy + Softsign-cy + Hardsign-cy + Yeru-cy + Dze-cy + E-cy + Ereversed-cy + I-cy + Yi-cy + Iu-cy + Ia-cy + A-cy.ss01 + Zhe-cy.ss01 + Ka-cy.ss01 + Em-cy.ss01 + U-cy.ss01 + Ushort-cy.ss01 + Ha-cy.ss01 + Ia-cy.ss01 + a-cy + be-cy + ve-cy + ge-cy + gheupturn-cy + de-cy + ie-cy + io-cy + zhe-cy + ze-cy + ii-cy + iishort-cy + ka-cy + el-cy + em-cy + en-cy + o-cy + pe-cy + er-cy + es-cy + te-cy + u-cy + ushort-cy + ef-cy + ha-cy + che-cy + tse-cy + sha-cy + shcha-cy + softsign-cy + hardsign-cy + yeru-cy + dze-cy + e-cy + ereversed-cy + i-cy + yi-cy + je-cy + iu-cy + ia-cy + a-cy.ss01 + ve-cy.ss01 + de-cy.ss01 + ie-cy.ss01 + io-cy.ss01 + el-cy.ss01 + er-cy.ss01 + te-cy.ss01 + softsign-cy.ss01 + hardsign-cy.ss01 + yeru-cy.ss01 + ia-cy.ss01 + zero + one + two + three + four + five + six + seven + eight + nine + zero.osf + one.osf + two.osf + three.osf + four.osf + five.osf + six.osf + seven.osf + nine.osf + zero.tf + one.tf + two.tf + three.tf + four.tf + five.tf + six.tf + seven.tf + eight.tf + nine.tf + onesuperior + twosuperior + threesuperior + period + comma + colon + semicolon + ellipsis + exclam + exclamdown + question + questiondown + periodcentered + bullet + asterisk + numbersign + slash + backslash + parenleft + parenright + braceleft + braceright + bracketleft + bracketright + hyphen + endash + emdash + underscore + quotesinglbase + quotedblbase + quotedblleft + quotedblright + quoteleft + quoteright + guillemetleft + guillemetright + guilsinglleft + guilsinglright + quotedbl + quotesingle + cent + currency + dollar + euro + hryvnia + sterling + yen + yen.ss01 + plus + minus + multiply + divide + equal + greater + less + asciitilde + asciicircum + percent + perthousand + at + ampersand + paragraph + section + copyright + registered + trademark + degree + bar + brokenbar + dagger + daggerdbl + numero + estimated + numero.ss01 + commaaccentcomb + dieresis + dotaccent + grave + acute + hungarumlaut + circumflex + caron + breve + ring + tilde + macron + cedilla + ogonek + dieresis.case + dotaccent.case + grave.case + acute.case + hungarumlaut.case + circumflex.case + caron.case + breve.case + ring.case + tilde.case + macron.case + commaaccentcomb.salt + caron.salt + uniE01A + _perc-circule + eight.osf + ruble + Ljecyr + Njecyr + Jecyr + dzhecyr + Dzhecyr + ljecyr + njecyr + Tshecyr + Djecyr + tshecyr + djecyr + tenge + ljecyr.ss01 + njecyr.ss01 + dramsignarmn + gjecyr + kjecyr + neptune + florin + plusminus + fraction + onequarter + onehalf + threequarters + mu + lessequal + greaterequal + minute + second + Schwacyr + schwacyr + Gestrokecyr + gestrokecyr + Obarcyr + obarcyr + Entailcyr + entailcyr + Katailcyr + katailcyr + Ustraightstrokecyr + ustraightstrokecyr + Shhacyr + shhacyr + ustraightcyr + Ustraightcyr + partialdiff + increment + integral + summation + radical + infinity + Omega + pi + longs + Delta + product + notequal + proportional + approxequal + Schwa + eturned + Oslashacute + oslashacute + AEacute + aeacute + uni2010 + Aiecyr + aiecyr + uni1EBC + uni1EBD + Acaron + acaron + Gjecyr + Kjecyr + uniE000 + uniE000.alt + arrowleft + arrowup + arrowright + arrowdown + arrowdown.ss01 + arrowleft.ss01 + arrowright.ss01 + arrowup.ss01 + yi-cy.alt + Omegacyr + omegacyr + Yatcyr + yatcyr + Eiotifiedcyr + eiotifiedcyr + Ksicyr + ksicyr + Shwe-cy + Fitacyr + fitacyr + Koppacyr + Iegravecyr + Igravecyr + iegravecyr + igravecyr + Zhebrevecyr + zhebrevecyr + Abrevecyr + abrevecyr + Adieresiscyr + adieresiscyr + Iebrevecyr + iebrevecyr + Schwadieresiscyr + schwadieresiscyr + Zhedieresiscyr + zhedieresiscyr + Zedieresiscyr + zedieresiscyr + Imacroncyr + imacroncyr + Idieresiscyr + idieresiscyr + Odieresiscyr + odieresiscyr + Umacroncyr + umacroncyr + Udieresiscyr + udieresiscyr + Uacutedblcyr + uacutedblcyr + Dekomicyr + dekomicyr + Wecyr + wecyr + Qacyr + qacyr + Ylongdieresiscyr + ylongdieresiscyr + Chedieresiscyr + chedieresiscyr + Obardieresiscyr + obardieresiscyr + Ereverseddieresiscyr + ereverseddieresiscyr + Zhetailcyr + zhetailcyr + Tetailcyr + tetailcyr + Xatailcyr + xatailcyr + Chetailcyr + chetailcyr + Chekhakascyr + chekhakascyr + Getailcyr + getailcyr + Petailcyr + petailcyr + Eltailcyr + eltailcyr + Shhatailcyr + shhatailcyr + Palochkacyr + palochkacyr + Dzzhecyr + Yaecyr + yaecyr + Tetsecyr + tetsecyr + Engecyr + engecyr + kabashkcyr + Kabashkcyr + semisoftcyr + Semisoftcyr + Reversedzecyr + reversedzecyr + Elmiddlehookcyr + Enmiddlehookcyr + Enhookcyr + Kahookcyr + Pehookcyr + Gehookcyr + parenleft.case + parenright.case + hyphen.case + bracketleft.case + bracketright.case + braceleft.case + braceright.case + exclamdown.case + guillemetleft.case + guillemetright.case + endash.case + emdash.case + bullet.case + guilsinglleft.case + guilsinglright.case + arrowleft.case + arrowup.case + arrowright.case + arrowdown.case + arrowdown.ss01.case + arrowleft.ss01.case + arrowright.ss01.case + arrowup.ss01.case + Enhookleftcyr + enhookleftcyr + enhookcyr + gehookcyr + pehookcyr + kahookcyr + enmiddlehookcyr + elmiddlehookcyr + kastrokecyr + Kastrokecyr + Chevertcyr + chevertcyr + Kaverticalstrokecyr + kaverticalstrokecyr + Elhookcyr + elhookcyr + zetailcyr + Zetailcyr + Estailcyr + estailcyr + Haabkhcyr + koppacyr + ukcyr + Ukcyr + omegaroundcyr + Izhitsagravedblcyr + izhitsagravedblcyr + izhitsacyr + Izhitsacyr + Yusbigcyr + yusbigcyr + Psicyr + psicyr + Omegaroundcyr + Yuslittlecyr + yuslittlecyr + yuslittleiotifiedcyr + Yuslittleiotifiedcyr + Yusbigiotifiedcyr + yusbigiotifiedcyr + Omegatitlocyr + omegatitlocyr + Otcyr + otcyr + uni2DEE + uni2DEE.case + ertickcyr + Ertickcyr + Lhacyr + lhacyr + ensharptailcyr + Ensharptailcyr + emsharptailcyr + elsharptailcyr + ishortsharptailcyr + Ishortsharptailcyr + Emsharptailcyr + Elsharptailcyr + njekomicyr + Njekomicyr + ljekomicyr + tjekomicyr + djekomicyr + zjekomicyr + colon.case + questiondown.case + slash.case + semicolon.case + backslash.case + bar.case + brokenbar.case + dzjekomicyr + Cheabkhcyr + cheabkhcyr + cheabkhtailcyr + sjekomicyr + Sjekomicyr + Ljekomicyr + Tjekomicyr + Djekomicyr + kaaleutcyr + dzzhecyr + haabkhcyr + Dchecyr + dchecyr + dzeabkhcyr + Dzeabkhcyr + palatcombcyr + Cheabkhtailcyr + Dzjekomicyr + Zjekomicyr + rhacyr + Rhacyr + Kaaleutcyr + thousandscyr + titlocombcyr + pokrytiecombcyr + hundredthousandscombcyr + millionscombcyr + Gehookstrokecyr + gehookstrokecyr + Hahookcyr + hahookcyr + Hastrokecyr + uni1C80 + uni1C81 + uni1C82 + uni1C83 + uni1C84 + uni1C85 + uni1C86 + uni1C87 + Zemlya-cy + zemlya-cy + Dzelo-cy + dzelo-cy + DzeReversed-cy + dzeReversed-cy + Iota-cy + iota-cy + Djerv-cy + djerv-cy + UkMonograph-cy + ukMonograph-cy + OmegaBroad-cy + omegaBroad-cy + YerNeutral-cy + yerNeutral-cy + YeruBackYer-cy + yeruBackyer-cy + YatIotified-cy + yatIotified-cy + YuReversed-cy + yuReversed-cy + IotifiedA-cy + iotifieda-cy + YusClosedlittle-cy + yusClosedlittle-cy + YusBlended-cy + yusBlended-cy + YusiotifiedClosedLittle-cy + yusiotifiedClosedLittle-cy + Yn-cy + yn-cy + TseReversed-cy + tseReversed-cy + DeSoft-cy + deSoft-cy + ElSoft-cy + elSoft-cy + EmSoft-cy + emSoft-cy + OMonocular-cy + oMonocular-cy + OBinocular-cy + oBinocular-cy + ODoubleMonocular-cy + oDoubleMonocular-cy + omultiocular-cy + vzmetcomb-cy + tenmillionscomb-cy + hundredmillionscomb-cy + thousandmillionscomb-cy + Dwe-cy + dwe-cy + Dzwe-cy + dzwe-cy + Zhwe-cy + zhwe-cy + Cche-cy + cche-cy + Dzze-cy + dzze-cy + TeWithMiddleHook-cy + tewithmiddlehook-cy + Twe-cy + twe-cy + Tswe-cy + tswe-cy + Tsse-cy + tsse-cy + Tche-cy + tche-cy + Hwe-cy + hwe-cy + shwe-cy + DoubleO-cy + doubleo-cy + CrossedO-cy + crossedo-cy + hastrokecyr + uniF43A + A-cy.accented + E-cy.accented + Ii-cy.accented + O-cy.accented + U-cy.accented + Yeru-cy.accented + Ereversed-cy.accented + Iu-cy.accented + Ia-cy.accented + Io-cy.accented + uniF498 + uniF49A + uniF49C + uniF49E + uniF4C6 + uniF4CC + uniF4D2 + uniF4D4 + uniF4D6 + uniF4D8 + Zetailcyr.BSH + Estailcyr.CHU + uniF50E + uniF510 + uniF512 + uniF514 + uniF516 + uniF518 + uniF51A + uniF51C + uniF51E + Yeru-cymacron + uniF522 + uniF524 + uniF526 + uniF528 + uniF52A + uniF52C + uniF52E + uniF532 + uniF536 + uniF538 + Gestrokecyr.BSH + Estailcyr.BSH + uniF830 + uniF833 + uniF839 + uniF86F + uniF872 + uniF875 + uniF878 + uniF87B + uniF87E + apostrophemod + colontriangularmod + uni1C88 + uniF87F + uniF87C + uniF879 + uniF876 + uniF873 + uniF870 + uniF83A + uniF834 + uniF831 + zetailcyr.BSH + estailcyr.CHU + uniF50F + uniF511 + uniF513 + uniF515 + uniF517 + uniF519 + uniF51B + uniF51D + uniF51F + uniF521 + uniF523 + uniF525 + uniF527 + uniF529 + uniF52B + uniF52D + uniF52F + uniF533 + uniF537 + uniF539 + gestrokecyr.BSH + estailcyr.BSH + uniF499 + uniF49B + uniF49D + uniF49F + uniF4C7 + uniF4CD + uniF4D3 + uniF4D5 + uniF4D7 + uniF4D9 + a-cy.accented + e-cy.accented + ii-cy.accented + o-cy.accented + u-cy.accented + yeru-cy.accented + ereversed-cy.accented + iu-cy.accented + ia-cy.accented + io-cy.accented + uniF43B + at.case + dieresis.alt + dieresiscase.alt + e-cy.hist + omultiocular-cy.alt + iotifieda-cy.hist + be-cy.SRB + ve-cy.BGR + ge-cy.BGR + de-cy.BGR + zhe-cy.BGR + ze-cy.BGR + ii-cy.BGR + iishort-cy.BGR + ka-cy.BGR + el-cy.BGR + pe-cy.BGR + te-cy.BGR + tse-cy.BGR + sha-cy.BGR + shcha-cy.BGR + hardsign-cy.BGR + softsign-cy.BGR + iu-cy.BGR + yatcyr.BGR + eiotifiedcyr.BGR + yusbigiotifiedcyr.BGR + iotifieda-cy.BGR + De-cy.BGR + El-cy.BGR + Ef-cy.BGR + dieresisacute + uniF45D + uniF45E + uniF45F + uniF475 + uniF476 + uniF477 + uniF478 + uniF479 + Elsmallcyr + enclosingcirclecomb + ge-cy.SRB + pe-cy.SRB + te-cy.SRB + gjecyr.SRB + macron-fwd + macron-fwd.alt + macronacute.SRB + iegravecyr.SRB + igravecyr.SRB + flower + knightwhite + knightblack + floretteblack + florettewhite + floretteoutlinedpetalledblackeight + rookblack + bishopblack + leo + heartwhite + diamondwhite-misc + spadewhite + clubwhite + bishopwhite + heart + crossedswords + virgo + thousandscyr.dnom + bracketangleleft + bracketangleright + bracketangleleft.case + bracketangleright.case + + + diff --git a/sources/FixelText-ExtraLight.ufo/metainfo.plist b/sources/FixelText-ExtraLight.ufo/metainfo.plist new file mode 100644 index 00000000..10582b84 --- /dev/null +++ b/sources/FixelText-ExtraLight.ufo/metainfo.plist @@ -0,0 +1,10 @@ + + + + + creator + com.fontlab.ufoLib + formatVersion + 3 + + diff --git a/sources/FixelText-Light.ufo/features.fea b/sources/FixelText-Light.ufo/features.fea new file mode 100644 index 00000000..302ade93 --- /dev/null +++ b/sources/FixelText-Light.ufo/features.fea @@ -0,0 +1,573 @@ +#> classes +#/> otclasses +@ss01_def = [A-cy A AE Aacute Abreve Acircumflex Adieresis Agrave Amacron Aogonek Aring Atilde Em-cy Eng G Gacute Gbreve Gcircumflex Gcommaaccent Gdotaccent Ha-cy Ia-cy J Jcircumflex K Ka-cy Kcommaaccent M N Nacute Ncaron Ncommaaccent Ntilde Q U-cy Ushort-cy V W Wacute Wcircumflex Wdieresis Wgrave X Y Yacute Ycircumflex Ydieresis Z Zacute Zcaron Zdotaccent Zhe-cy a-cy a aacute abreve acircumflex adieresis ae agrave amacron aogonek aring arrowdown arrowdown.case arrowleft arrowleft.case arrowright arrowright.case arrowup arrowup.case atilde b d dcaron dcroat de-cy e eacute ebreve ecaron ecircumflex edieresis edotaccent egrave el-cy emacron eogonek er-cy f f_f f_f_i f_f_l fi fl g gacute gbreve gcircumflex gcommaaccent gdotaccent germandbls hardsign-cy ia-cy ie-cy io-cy l lacute lcaron lcommaaccent ldot ljecyr lslash njecyr numero oe p q softsign-cy t tbar tcaron tcedilla tcommaaccent te-cy ve-cy yen yeru-cy]; +@ss01 = [A-cy.ss01 A.ss01 AE.ss01 Aacute.ss01 Abreve.ss01 Acircumflex.ss01 Adieresis.ss01 Agrave.ss01 Amacron.ss01 Aogonek.ss01 Aring.ss01 Atilde.ss01 Em-cy.ss01 Eng.ss01 G.ss01 Gacute.ss01 Gbreve.ss01 Gcircumflex.ss01 Gcommaaccent.ss01 Gdotaccent.ss01 Ha-cy.ss01 Ia-cy.ss01 J.ss01 Jcircumflex.ss01 K.ss01 Ka-cy.ss01 Kcommaaccent.ss01 M.ss01 N.ss01 Nacute.ss01 Ncaron.ss01 Ncommaaccent.ss01 Ntilde.ss01 Q.ss01 U-cy.ss01 Ushort-cy.ss01 V.ss01 W.ss01 Wacute.ss01 Wcircumflex.ss01 Wdieresis.ss01 Wgrave.ss01 X.ss01 Y.ss01 Yacute.ss01 Ycircumflex.ss01 Ydieresis.ss01 Z.ss01 Zacute.ss01 Zcaron.ss01 Zdotaccent.ss01 Zhe-cy.ss01 a-cy.ss01 a.ss01 aacute.ss01 abreve.ss01 acircumflex.ss01 adieresis.ss01 ae.ss01 agrave.ss01 amacron.ss01 aogonek.ss01 aring.ss01 arrowdown.ss01 arrowdown.ss01.case arrowleft.ss01 arrowleft.ss01.case arrowright.ss01 arrowright.ss01.case arrowup.ss01 arrowup.ss01.case atilde.ss01 b.ss01 d.ss01 dcaron.ss01 dcroat.ss01 de-cy.ss01 e.ss01 eacute.ss01 ebreve.ss01 ecaron.ss01 ecircumflex.ss01 edieresis.ss01 edotaccent.ss01 egrave.ss01 el-cy.ss01 emacron.ss01 eogonek.ss01 er-cy.ss01 f.ss01 f_f.ss01 f_f_i.ss01 f_f_l.ss01 fi.ss01 fl.ss01 g.ss01 gacute.ss01 gbreve.ss01 gcircumflex.ss01 gcommaaccent.ss01 gdotaccent.ss01 germandbls.ss01 hardsign-cy.ss01 ia-cy.ss01 ie-cy.ss01 io-cy.ss01 l.ss01 lacute.ss01 lcaron.ss01 lcommaaccent.ss01 ldot.ss01 ljecyr.ss01 lslash.ss01 njecyr.ss01 numero.ss01 oe.ss01 p.ss01 q.ss01 softsign-cy.ss01 t.ss01 tbar.ss01 tcaron.ss01 tcedilla.ss01 tcommaaccent.ss01 te-cy.ss01 ve-cy.ss01 yen.ss01 yeru-cy.ss01]; +@case = [arrowdown.case arrowdown.ss01.case arrowleft.case arrowleft.ss01.case arrowright.case arrowright.ss01.case arrowup.case arrowup.ss01.case backslash.case bar.case braceleft.case braceright.case bracketleft.case bracketright.case brokenbar.case bullet.case colon.case emdash.case endash.case exclamdown.case guillemetleft.case guillemetright.case guilsinglleft.case guilsinglright.case hyphen.case parenleft.case parenright.case questiondown.case semicolon.case at.case bracketangleleft.case bracketangleright.case slash.case]; +@case_def = [arrowdown arrowdown.ss01 arrowleft arrowleft.ss01 arrowright arrowright.ss01 arrowup arrowup.ss01 backslash bar braceleft braceright bracketleft bracketright brokenbar bullet colon emdash endash exclamdown guillemetleft guillemetright guilsinglleft guilsinglright hyphen parenleft parenright questiondown semicolon at bracketangleleft bracketangleright slash]; +@cpsp = [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 Agrave Aacute Acircumflex Atilde Adieresis Aring AE Ccedilla Egrave Eacute Ecircumflex Edieresis Igrave Iacute Icircumflex Idieresis Eth Ntilde Ograve Oacute Ocircumflex Otilde Odieresis Oslash Ugrave Uacute Ucircumflex Udieresis Yacute Thorn Amacron Abreve Aogonek Cacute Ccircumflex Cdotaccent Ccaron Dcaron Dcroat Emacron Ebreve Edotaccent Eogonek Ecaron Gcircumflex Gbreve Gdotaccent Gcommaaccent Hcircumflex Hbar Itilde Imacron Ibreve Iogonek Idotaccent IJ Jcircumflex Kcommaaccent Lacute Lcommaaccent Lcaron Ldot Lslash Nacute Ncommaaccent Ncaron Eng Omacron Obreve Ohungarumlaut OE Racute Rcommaaccent Rcaron Sacute Scircumflex Scedilla Scaron Tcedilla Tcaron Tbar Utilde Umacron Ubreve Uring Uhungarumlaut Uogonek Wcircumflex Ycircumflex Ydieresis Zacute Zdotaccent Zcaron Schwa Acaron Gacute AEacute Oslashacute Scommaaccent Tcommaaccent Delta Omega Iegravecyr uniF43A A-cy.accented E-cy.accented Ii-cy.accented O-cy.accented U-cy.accented Yeru-cy.accented Ereversed-cy.accented Iu-cy.accented Ia-cy.accented Io-cy.accented uniF498 uniF49A uniF49C uniF49E uniF4C6 uniF4CC uniF4D2 uniF4D4 uniF4D6 uniF4D8 uniF50E uniF510 uniF512 uniF514 uniF516 uniF518 uniF51A uniF51C uniF51E Yeru-cymacron uniF522 uniF524 uniF526 uniF528 uniF52A uniF52C uniF52E uniF532 uniF536 uniF538 uniF830 uniF833 uniF839 uniF86F uniF872 uniF875 uniF878 uniF87B uniF87E Io-cy Djecyr Gjecyr E-cy Dze-cy I-cy Yi-cy Jecyr Ljecyr Njecyr Tshecyr Kjecyr Igravecyr Ushort-cy Dzhecyr A-cy Be-cy Ve-cy Ge-cy De-cy Ie-cy Zhe-cy Ze-cy Ii-cy Iishort-cy Ka-cy El-cy Em-cy En-cy O-cy Pe-cy Er-cy Es-cy Te-cy U-cy Ef-cy Ha-cy Tse-cy Che-cy Sha-cy Shcha-cy Hardsign-cy Yeru-cy Softsign-cy Ereversed-cy Iu-cy Ia-cy Omegacyr Yatcyr Eiotifiedcyr Yuslittlecyr Yuslittleiotifiedcyr Yusbigcyr Yusbigiotifiedcyr Ksicyr Psicyr Fitacyr Izhitsacyr Izhitsagravedblcyr Ukcyr Omegaroundcyr Omegatitlocyr Otcyr Koppacyr Ishortsharptailcyr Semisoftcyr Ertickcyr Gheupturn-cy Gestrokecyr Gehookcyr Zhetailcyr Zetailcyr Katailcyr Kaverticalstrokecyr Kastrokecyr Kabashkcyr Entailcyr Engecyr Pehookcyr Haabkhcyr Estailcyr Tetailcyr Ustraightcyr Ustraightstrokecyr Xatailcyr Tetsecyr Chetailcyr Chevertcyr Shhacyr Cheabkhcyr Cheabkhtailcyr Palochkacyr Zhebrevecyr Kahookcyr Elsharptailcyr Enhookcyr Ensharptailcyr Chekhakascyr Emsharptailcyr Abrevecyr Adieresiscyr Aiecyr Iebrevecyr Schwacyr Schwadieresiscyr Zhedieresiscyr Zedieresiscyr Dzeabkhcyr Imacroncyr Idieresiscyr Odieresiscyr Obarcyr Obardieresiscyr Ereverseddieresiscyr Umacroncyr Udieresiscyr Uacutedblcyr Chedieresiscyr Getailcyr Ylongdieresiscyr Gehookstrokecyr Hahookcyr Hastrokecyr Dekomicyr Djekomicyr Zjekomicyr Dzjekomicyr Ljekomicyr Njekomicyr Sjekomicyr Tjekomicyr Reversedzecyr Elhookcyr Lhacyr Rhacyr Yaecyr Qacyr Wecyr Kaaleutcyr Elmiddlehookcyr Enmiddlehookcyr Petailcyr Shhatailcyr Enhookleftcyr Dzzhecyr Dchecyr Eltailcyr Wgrave Wacute Wdieresis Germandbls uni1EBC Zemlya-cy Dzelo-cy DzeReversed-cy Iota-cy Djerv-cy UkMonograph-cy OmegaBroad-cy YerNeutral-cy YeruBackYer-cy YatIotified-cy YuReversed-cy IotifiedA-cy YusClosedlittle-cy YusBlended-cy YusiotifiedClosedLittle-cy Yn-cy TseReversed-cy DeSoft-cy ElSoft-cy EmSoft-cy OMonocular-cy OBinocular-cy ODoubleMonocular-cy Dwe-cy Dzwe-cy Zhwe-cy Cche-cy Dzze-cy TeWithMiddleHook-cy Twe-cy Tswe-cy Tsse-cy Tche-cy Hwe-cy Shwe-cy DoubleO-cy CrossedO-cy A-cy.ss01 A.ss01 AE.ss01 Aacute.ss01 Abreve.ss01 Acircumflex.ss01 Adieresis.ss01 Agrave.ss01 Amacron.ss01 Aogonek.ss01 Aring.ss01 Atilde.ss01 Em-cy.ss01 Eng.ss01 G.ss01 Gacute.ss01 Gbreve.ss01 Gcircumflex.ss01 Gcommaaccent.ss01 Gdotaccent.ss01 Ha-cy.ss01 Ia-cy.ss01 J.ss01 Jcircumflex.ss01 K.ss01 Ka-cy.ss01 Kcommaaccent.ss01 M.ss01 N.ss01 Nacute.ss01 Ncaron.ss01 Ncommaaccent.ss01 Ntilde.ss01 Q.ss01 U-cy.ss01 Ushort-cy.ss01 V.ss01 W.ss01 Wacute.ss01 Wcircumflex.ss01 Wdieresis.ss01 Wgrave.ss01 X.ss01 Y.ss01 Yacute.ss01 Ycircumflex.ss01 Ydieresis.ss01 Z.ss01 Zacute.ss01 Zcaron.ss01 Zdotaccent.ss01 Zetailcyr.BSH Gestrokecyr.BSH Estailcyr.BSH Estailcyr.CHU Zhe-cy.ss01]; +@locl_BGR = [De-cy.BGR Ef-cy.BGR El-cy.BGR de-cy.BGR eiotifiedcyr.BGR el-cy.BGR ge-cy.BGR hardsign-cy.BGR ii-cy.BGR iishort-cy.BGR iotifieda-cy.BGR iu-cy.BGR ka-cy.BGR pe-cy.BGR sha-cy.BGR shcha-cy.BGR softsign-cy.BGR te-cy.BGR tse-cy.BGR ve-cy.BGR yatcyr.BGR yusbigiotifiedcyr.BGR ze-cy.BGR zhe-cy.BGR]; +@locl_def = [De-cy Ef-cy El-cy de-cy eiotifiedcyr el-cy ge-cy hardsign-cy ii-cy iishort-cy iotifieda-cy iu-cy ka-cy pe-cy sha-cy shcha-cy softsign-cy te-cy tse-cy ve-cy yatcyr yusbigiotifiedcyr ze-cy zhe-cy]; +@locl.SRB = [be-cy.SRB iegravecyr.SRB igravecyr.SRB]; +@loclSRB_def = [be-cy iegravecyr igravecyr]; +@accent = [grave acute.case grave.case acute]; +@pics = [neptune leo virgo bishopwhite knightwhite rookblack bishopblack knightblack heartwhite diamondwhite-misc spadewhite heart clubwhite crossedswords flower floretteblack florettewhite floretteoutlinedpetalledblackeight]; +@pics_def = [A B C D E F G H I J K L M N O P Q R]; +#/< otclasses + +#/> tags +@tag.omultiocular-cy.alt = [omultiocular-cy]; +@tag.yi-cy_yi-cy.alt = [uniE000]; +#/< tags +#< classes + +# automatic +@Uppercase = [ A Aacute Abreve Acircumflex Adieresis Agrave Amacron Aogonek Aring Atilde AE B C Cacute Ccaron Ccedilla Ccircumflex Cdotaccent D Eth Dcaron Dcroat E Eacute Ebreve Ecaron Ecircumflex Edieresis Edotaccent Egrave Emacron Eogonek F G Gacute Gbreve Gcircumflex Gcommaaccent Gdotaccent H Hbar Hcircumflex I IJ Iacute Ibreve Icircumflex Idieresis Idotaccent Igrave Imacron Iogonek Itilde J Jcircumflex K Kcommaaccent L Lacute Lcaron Lcommaaccent Ldot Lslash M N Nacute Ncaron Ncommaaccent Eng Ntilde O Oacute Obreve Ocircumflex Odieresis Ograve Ohungarumlaut Omacron Oslash Otilde OE P Thorn Q R Racute Rcaron Rcommaaccent S Sacute Scaron Scedilla Scircumflex Scommaaccent Germandbls T Tbar Tcaron Tcedilla Tcommaaccent U Uacute Ubreve Ucircumflex Udieresis Ugrave Uhungarumlaut Umacron Uogonek Uring Utilde V W Wacute Wcircumflex Wdieresis Wgrave X Y Yacute Ycircumflex Ydieresis Z Zacute Zcaron Zdotaccent A.ss01 Aacute.ss01 Abreve.ss01 Acircumflex.ss01 Adieresis.ss01 Agrave.ss01 Amacron.ss01 Aogonek.ss01 Aring.ss01 Atilde.ss01 AE.ss01 G.ss01 Gacute.ss01 Gbreve.ss01 Gcircumflex.ss01 Gcommaaccent.ss01 Gdotaccent.ss01 J.ss01 Jcircumflex.ss01 K.ss01 Kcommaaccent.ss01 M.ss01 N.ss01 Nacute.ss01 Ncaron.ss01 Ncommaaccent.ss01 Eng.ss01 Ntilde.ss01 Q.ss01 V.ss01 W.ss01 Wacute.ss01 Wcircumflex.ss01 Wdieresis.ss01 Wgrave.ss01 X.ss01 Y.ss01 Yacute.ss01 Ycircumflex.ss01 Ydieresis.ss01 Z.ss01 Zacute.ss01 Zcaron.ss01 Zdotaccent.ss01 A-cy Be-cy Ve-cy Ge-cy Gheupturn-cy De-cy Ie-cy Io-cy Zhe-cy Ze-cy Ii-cy Iishort-cy Ka-cy El-cy Em-cy En-cy O-cy Pe-cy Er-cy Es-cy Te-cy U-cy Ushort-cy Ef-cy Ha-cy Che-cy Tse-cy Sha-cy Shcha-cy Softsign-cy Hardsign-cy Yeru-cy Dze-cy E-cy Ereversed-cy I-cy Yi-cy Iu-cy Ia-cy A-cy.ss01 Zhe-cy.ss01 Ka-cy.ss01 Em-cy.ss01 U-cy.ss01 Ushort-cy.ss01 Ha-cy.ss01 Ia-cy.ss01 ]; + +# Prefix: Languagesystems +# automatic +languagesystem DFLT dflt; + +languagesystem latn dflt; +languagesystem latn ROM; +languagesystem latn MOL; +languagesystem latn CAT; +languagesystem cyrl dflt; +languagesystem cyrl BGR; +languagesystem cyrl BSH; +languagesystem cyrl CHU; +languagesystem cyrl SRB; +languagesystem cyrl MKD; + +lookup liga_accent { + sub @accent by [grave grave grave grave]; +} liga_accent; +feature aalt { +# Access All Alternates + +#> feature + feature locl; + feature sups; + feature case; + feature lnum; + feature pnum; + feature tnum; + feature onum; + feature salt; + feature ss01; + feature hist; +#< feature +} aalt; +feature ccmp { +# automatic +lookup ccmp_Other_1 { + @Markscomb = [dieresis dotaccent grave acute hungarumlaut circumflex caron breve ring tilde macron]; + @MarkscombCase = [dieresis.case dotaccent.case grave.case acute.case hungarumlaut.case circumflex.case caron.case breve.case ring.case tilde.case macron.case]; + sub @Markscomb @Markscomb' by @MarkscombCase; + sub @cpsp @Markscomb' by @MarkscombCase; +} ccmp_Other_1; + +lookup ccmp_Other_2 { + sub @Markscomb' @MarkscombCase by @MarkscombCase; + sub @MarkscombCase @Markscomb' by @MarkscombCase; +} ccmp_Other_2; +} ccmp; + +feature locl { +# automatic + +script latn; + language ROM; + language MOL; + sub Scedilla by Scommaaccent; + sub scedilla by scommaaccent; + sub Tcedilla by Tcommaaccent; + sub tcedilla by tcommaaccent; + +script latn; + language CAT; + sub l' periodcentered' l by ldot; + sub L' periodcentered' L by Ldot; + +script cyrl; # Cyrillic + language SRB ; # Serbian + + lookup locl_SRB_MCD { + # GSUB lookup 20, type 11 (Single) + sub @loclSRB_def by @locl.SRB; + } locl_SRB_MCD; + + language MKD ; # Serbian + lookup locl_SRB_MCD; + + language BSH ; # Bashkir + sub [Gestrokecyr gestrokecyr Zetailcyr zetailcyr] by [Gestrokecyr.BSH gestrokecyr.BSH Zetailcyr.BSH zetailcyr.BSH]; + sub [Estailcyr estailcyr] by [Estailcyr.BSH estailcyr.BSH]; + + language CHU ; # Chuvash + sub [Estailcyr estailcyr] by [Estailcyr.CHU estailcyr.CHU]; + + language BGR ; # Bulgarian + sub @locl_def by @locl_BGR; + +} locl; + +feature sups { +# Superscript + +#> feature + sub one by onesuperior; + sub three by threesuperior; + sub two by twosuperior; +#< feature +} sups; +feature ordn { +# Ordinals + +#> feature + sub [zero one two three four five six seven eight nine] [A a]' by ordfeminine; + sub [zero one two three four five six seven eight nine] [O o]' by ordmasculine; + sub N o period by numero; +#< feature +} ordn; +feature case { +# Case Sensitive Forms + +#> feature + + sub @case_def by @case; + +#< feature +} case; +feature liga { +# Standard Ligatures + +#> feature +sub f f i by f_f_i; +sub f f l by f_f_l; +sub f f by f_f; +sub f i by fi; +sub f l by fl; +sub yi-cy yi-cy by uniE000; +sub hyphen greater by arrowright; +sub less hyphen by arrowleft; +sub backslash bar slash by arrowdown; +sub slash bar backslash by arrowup; + + lookup accent_2 { + sub E-cy @accent' lookup liga_accent; + sub I-cy @accent' lookup liga_accent; + sub Yi-cy @accent' lookup liga_accent; + sub A-cy @accent' lookup liga_accent; + sub Ie-cy @accent' lookup liga_accent; + sub Ii-cy @accent' lookup liga_accent; + sub O-cy @accent' lookup liga_accent; + sub U-cy @accent' lookup liga_accent; + sub Yeru-cy @accent' lookup liga_accent; + sub Ereversed-cy @accent' lookup liga_accent; + sub Iu-cy @accent' lookup liga_accent; + sub Ia-cy @accent' lookup liga_accent; + sub Io-cy @accent' lookup liga_accent; + sub Yatcyr @accent' lookup liga_accent; + + sub e-cy @accent' lookup liga_accent; + sub i-cy @accent' lookup liga_accent; + sub yi-cy @accent' lookup liga_accent; + sub a-cy @accent' lookup liga_accent; + sub ie-cy @accent' lookup liga_accent; + sub ii-cy @accent' lookup liga_accent; + sub o-cy @accent' lookup liga_accent; + sub u-cy @accent' lookup liga_accent; + sub yeru-cy @accent' lookup liga_accent; + sub ereversed-cy @accent' lookup liga_accent; + sub iu-cy @accent' lookup liga_accent; + sub ia-cy @accent' lookup liga_accent; + sub io-cy @accent' lookup liga_accent; + sub yatcyr @accent' lookup liga_accent; + } accent_2; + + lookup accent_3 { + sub E-cy grave by uniF45D; + sub I-cy grave by uniF45E; + sub Yi-cy grave by uniF45F; + sub A-cy grave by A-cy.accented; + sub Ie-cy grave by E-cy.accented; + sub Ii-cy grave by Ii-cy.accented; + sub O-cy grave by O-cy.accented; + sub U-cy grave by U-cy.accented; + sub Yeru-cy grave by Yeru-cy.accented; + sub Ereversed-cy grave by Ereversed-cy.accented; + sub Iu-cy grave by Iu-cy.accented; + sub Ia-cy grave by Ia-cy.accented; + sub Io-cy grave by Io-cy.accented; + sub Yatcyr grave by uniF478; + + sub e-cy grave by uniF475; + sub i-cy grave by uniF476; + sub yi-cy grave by uniF477; + sub a-cy grave by a-cy.accented; + sub ie-cy grave by e-cy.accented; + sub ii-cy grave by ii-cy.accented; + sub o-cy grave by o-cy.accented; + sub u-cy grave by u-cy.accented; + sub yeru-cy grave by yeru-cy.accented; + sub ereversed-cy grave by ereversed-cy.accented; + sub iu-cy grave by iu-cy.accented; + sub ia-cy grave by ia-cy.accented; + sub io-cy grave by io-cy.accented; + sub yatcyr grave by uniF479; + } accent_3; + +#< feature +} liga; +feature dlig { +# Discretionary Ligatures + +#> feature + +sub M a c P a w l o g o by uniE01A; +sub M P a w l o g o by uniE01A; +sub M P l o g o by uniE01A; +sub M A C P A W L O G O by uniE01A; +sub m a c p a w l o g o by uniE01A; +sub t r i d e n t by neptune; +sub t r y z u b by neptune; +sub u k r a i n e s i g n by neptune; +sub T R I D E N T by neptune; +sub T R Y Z U B by neptune; +sub U k r a i n e S i g n by neptune; +sub T r y z u b by neptune; +sub T r i d e n t by neptune; +sub Te-cy Er-cy Ii-cy Ze-cy U-cy Be-cy by neptune; + +#< feature +} dlig; +feature lnum { +# Lining Figures + +#> feature + sub eight.osf by eight.tf; + sub eight by eight.tf; + sub five.osf by five.tf; + sub five by five.tf; + sub four.osf by four.tf; + sub four by four.tf; + sub nine.osf by nine.tf; + sub nine by nine.tf; + sub one.osf by one.tf; + sub one by one.tf; + sub seven.osf by seven.tf; + sub seven by seven.tf; + sub six.osf by six.tf; + sub six by six.tf; + sub three.osf by three.tf; + sub three by three.tf; + sub two.osf by two.tf; + sub two by two.tf; + sub zero.osf by zero.tf; + sub zero by zero.tf; +#< feature +} lnum; +feature pnum { +# Proportional Figures + +#> feature + sub eight.tf by eight.osf; + sub eight by eight.osf; + sub five.tf by five.osf; + sub five by five.osf; + sub four.tf by four.osf; + sub four by four.osf; + sub nine.tf by nine.osf; + sub nine by nine.osf; + sub one.tf by one.osf; + sub one by one.osf; + sub seven.tf by seven.osf; + sub seven by seven.osf; + sub six.tf by six.osf; + sub six by six.osf; + sub three.tf by three.osf; + sub three by three.osf; + sub two.tf by two.osf; + sub two by two.osf; + sub zero.tf by zero.osf; + sub zero by zero.osf; +#< feature +} pnum; +feature tnum { +# Tabular Figures + +#> feature + sub eight by eight.tf; + sub eight.osf by eight.tf; + sub five by five.tf; + sub five.osf by five.tf; + sub four by four.tf; + sub four.osf by four.tf; + sub nine by nine.tf; + sub nine.osf by nine.tf; + sub one by one.tf; + sub one.osf by one.tf; + sub seven by seven.tf; + sub seven.osf by seven.tf; + sub six by six.tf; + sub six.osf by six.tf; + sub three by three.tf; + sub three.osf by three.tf; + sub two by two.tf; + sub two.osf by two.tf; + sub zero by zero.tf; + sub zero.osf by zero.tf; +#< feature +} tnum; +feature onum { +# Oldstyle Figures + +#> feature + sub eight by eight.osf; + sub eight.tf by eight.osf; + sub five by five.osf; + sub five.tf by five.osf; + sub four by four.osf; + sub four.tf by four.osf; + sub nine by nine.osf; + sub nine.tf by nine.osf; + sub one by one.osf; + sub one.tf by one.osf; + sub seven by seven.osf; + sub seven.tf by seven.osf; + sub six by six.osf; + sub six.tf by six.osf; + sub three by three.osf; + sub three.tf by three.osf; + sub two by two.osf; + sub two.tf by two.osf; + sub zero by zero.osf; + sub zero.tf by zero.osf; +#< feature +} onum; +feature salt { +# Stylistic Alternates + +#> feature + sub A from [A.ss01]; + sub A-cy from [A-cy.ss01]; + sub AE from [AE.ss01]; + sub Aacute from [Aacute.ss01]; + sub Abreve from [Abreve.ss01]; + sub Acircumflex from [Acircumflex.ss01]; + sub Adieresis from [Adieresis.ss01]; + sub Agrave from [Agrave.ss01]; + sub Amacron from [Amacron.ss01]; + sub Aogonek from [Aogonek.ss01]; + sub Aring from [Aring.ss01]; + sub Atilde from [Atilde.ss01]; + sub Em-cy from [Em-cy.ss01]; + sub Eng from [Eng.ss01]; + sub G from [G.ss01]; + sub Gacute from [Gacute.ss01]; + sub Gbreve from [Gbreve.ss01]; + sub Gcircumflex from [Gcircumflex.ss01]; + sub Gcommaaccent from [Gcommaaccent.ss01]; + sub Gdotaccent from [Gdotaccent.ss01]; + sub Ha-cy from [Ha-cy.ss01]; + sub Ia-cy from [Ia-cy.ss01]; + sub J from [J.ss01]; + sub Jcircumflex from [Jcircumflex.ss01]; + sub K from [K.ss01]; + sub Ka-cy from [Ka-cy.ss01]; + sub Kcommaaccent from [Kcommaaccent.ss01]; + sub M from [M.ss01]; + sub N from [N.ss01]; + sub Nacute from [Nacute.ss01]; + sub Ncaron from [Ncaron.ss01]; + sub Ncommaaccent from [Ncommaaccent.ss01]; + sub Ntilde from [Ntilde.ss01]; + sub Q from [Q.ss01]; + sub U-cy from [U-cy.ss01]; + sub Ushort-cy from [Ushort-cy.ss01]; + sub V from [V.ss01]; + sub W from [W.ss01]; + sub Wacute from [Wacute.ss01]; + sub Wcircumflex from [Wcircumflex.ss01]; + sub Wdieresis from [Wdieresis.ss01]; + sub Wgrave from [Wgrave.ss01]; + sub X from [X.ss01]; + sub Y from [Y.ss01]; + sub Yacute from [Yacute.ss01]; + sub Ycircumflex from [Ycircumflex.ss01]; + sub Ydieresis from [Ydieresis.ss01]; + sub Z from [Z.ss01]; + sub Zacute from [Zacute.ss01]; + sub Zcaron from [Zcaron.ss01]; + sub Zdotaccent from [Zdotaccent.ss01]; + sub Zhe-cy from [Zhe-cy.ss01]; + sub a from [a.ss01]; + sub a-cy from [a-cy.ss01]; + sub aacute from [aacute.ss01]; + sub abreve from [abreve.ss01]; + sub acircumflex from [acircumflex.ss01]; + sub adieresis from [adieresis.ss01]; + sub ae from [ae.ss01]; + sub agrave from [agrave.ss01]; + sub amacron from [amacron.ss01]; + sub aogonek from [aogonek.ss01]; + sub aring from [aring.ss01]; + sub arrowdown from [arrowdown.ss01]; + sub arrowleft from [arrowleft.ss01]; + sub arrowright from [arrowright.ss01]; + sub arrowup from [arrowup.ss01]; + sub atilde from [atilde.ss01]; + sub b from [b.ss01]; + sub caron from [caron.salt]; + sub commaaccentcomb from [commaaccentcomb.salt]; + sub d from [d.ss01]; + sub dcaron from [dcaron.ss01]; + sub dcroat from [dcroat.ss01]; + sub de-cy from [de-cy.ss01]; + sub e from [e.ss01]; + sub eacute from [eacute.ss01]; + sub ebreve from [ebreve.ss01]; + sub ecaron from [ecaron.ss01]; + sub ecircumflex from [ecircumflex.ss01]; + sub edieresis from [edieresis.ss01]; + sub edotaccent from [edotaccent.ss01]; + sub egrave from [egrave.ss01]; + sub el-cy from [el-cy.ss01]; + sub emacron from [emacron.ss01]; + sub eogonek from [eogonek.ss01]; + sub er-cy from [er-cy.ss01]; + sub f from [f.ss01]; + sub f_f from [f_f.ss01]; + sub f_f_i from [f_f_i.ss01]; + sub f_f_l from [f_f_l.ss01]; + sub fi from [fi.ss01]; + sub fl from [fl.ss01]; + sub g from [g.ss01]; + sub gacute from [gacute.ss01]; + sub gbreve from [gbreve.ss01]; + sub gcircumflex from [gcircumflex.ss01]; + sub gcommaaccent from [gcommaaccent.ss01]; + sub gdotaccent from [gdotaccent.ss01]; + sub germandbls from [germandbls.ss01]; + sub hardsign-cy from [hardsign-cy.ss01]; + sub ia-cy from [ia-cy.ss01]; + sub ie-cy from [ie-cy.ss01]; + sub io-cy from [io-cy.ss01]; + sub l from [l.ss01]; + sub lacute from [lacute.ss01]; + sub lcaron from [lcaron.ss01]; + sub lcommaaccent from [lcommaaccent.ss01]; + sub ldot from [ldot.ss01]; + sub ljecyr from [ljecyr.ss01]; + sub lslash from [lslash.ss01]; + sub njecyr from [njecyr.ss01]; + sub numero from [numero.ss01]; + sub oe from [oe.ss01]; + sub p from [p.ss01]; + sub q from [q.ss01]; + sub softsign-cy from [softsign-cy.ss01]; + sub t from [t.ss01]; + sub tbar from [tbar.ss01]; + sub tcaron from [tcaron.ss01]; + sub tcedilla from [tcedilla.ss01]; + sub tcommaaccent from [tcommaaccent.ss01]; + sub te-cy from [te-cy.ss01]; + sub uniE000 from [uniE000.alt]; + sub ve-cy from [ve-cy.ss01]; + sub yen from [yen.ss01]; + sub yeru-cy from [yeru-cy.ss01]; +#< feature +} salt; +feature ss03 { +# Stylistic Set 01–20 + +#> feature + featureNames { + name "Bulgarian forms"; + name 1 "Bulgarian forms"; + }; + + sub @locl_def by @locl_BGR; + +#< feature +} ss03; +feature ss04 { +# Stylistic Set 01–20 + +#> feature + featureNames { + name "Serbian/Macedonian forms"; + name 1 "Serbian/Macedonian forms"; + }; + + sub @loclSRB_def by @locl.SRB; + +#< feature +} ss04; +feature ss01 { +# Stylistic Set 01–20 + +#> feature + + featureNames { + name "Humanistic forms"; + name 1 "Humanistic forms"; + }; + + sub @ss01_def by @ss01; + +#< feature +} ss01; +feature ss05 { +# Stylistic Set 01–20 + +#> feature + + featureNames { + name "Ukrainian pictograms"; + name 1 "Ukrainian pictograms"; + }; + + sub @pics_def by @pics; + +#< feature +} ss05; +feature hist { +# Historical Forms + +#> feature + sub e-cy by e-cy.hist; + sub s by longs; +#< feature +} hist; +feature frac { +# Fractions + +#> feature +lookup frac_precomposed { + + sub one slash four by onequarter; + sub one slash two by onehalf; + sub three slash four by threequarters; + sub one fraction four by onequarter; + sub one fraction two by onehalf; + sub three fraction four by threequarters; +} frac_precomposed; +#< feature +} frac; +feature cpsp { +# Capital Spacing + +#> feature + + pos @cpsp <5 0 10 0>; + +#< feature +} cpsp; +feature dnom { +# Denominator + +#> feature + sub thousandscyr by thousandscyr.dnom; +#< feature +} dnom; diff --git a/sources/FixelText-Light.ufo/fontinfo.plist b/sources/FixelText-Light.ufo/fontinfo.plist new file mode 100644 index 00000000..7107e291 --- /dev/null +++ b/sources/FixelText-Light.ufo/fontinfo.plist @@ -0,0 +1,207 @@ + + + + + ascender + 720 + capHeight + 700 + descender + -200 + familyName + Fixel Text + guidelines + + + angle + 0 + name + m + x + 0 + y + 112.667 + + + angle + 0 + name + m + x + 0 + y + 189 + + + italicAngle + 0 + openTypeGaspRangeRecords + + + rangeGaspBehavior + + 0 + 1 + 2 + 3 + + rangeMaxPPEM + 65535 + + + openTypeHeadCreated + 2023/09/05 09:25:12 + openTypeHeadFlags + + + openTypeHheaAscender + 720 + openTypeHheaCaretOffset + -0 + openTypeHheaDescender + -190 + openTypeHheaLineGap + 100 + openTypeNameDesigner + AlfaBravo + openTypeNameDesignerURL + https://alfabravo.design/ + openTypeNameManufacturer + Kyrylo Tkachov, Marchela Mozhyna, Serhii Makarenko, Maria Weinstein, Zakhar Kryvoshyya + + openTypeNameManufacturerURL + https://macpaw.com/ + openTypeNamePreferredFamilyName + Fixel Text + openTypeNamePreferredSubfamilyName + Light + openTypeNameVersion + Version 1.200 + openTypeOS2CodePageRanges + + 0 + 1 + 2 + 4 + 7 + 29 + + openTypeOS2Panose + + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + + openTypeOS2Selection + + + openTypeOS2StrikeoutPosition + 300 + openTypeOS2StrikeoutSize + 50 + openTypeOS2SubscriptXOffset + -0 + openTypeOS2SubscriptXSize + 650 + openTypeOS2SubscriptYOffset + 75 + openTypeOS2SubscriptYSize + 600 + openTypeOS2SuperscriptXOffset + -0 + openTypeOS2SuperscriptXSize + 650 + openTypeOS2SuperscriptYOffset + 350 + openTypeOS2SuperscriptYSize + 600 + openTypeOS2Type + + 2 + + openTypeOS2TypoAscender + 720 + openTypeOS2TypoDescender + -200 + openTypeOS2TypoLineGap + 290 + openTypeOS2UnicodeRanges + + 0 + 1 + 2 + 9 + 31 + 33 + 60 + + openTypeOS2WeightClass + 300 + openTypeOS2WidthClass + 4 + openTypeOS2WinAscent + 750 + openTypeOS2WinDescent + 250 + postscriptBlueFuzz + 1 + postscriptBlueScale + 0.039625 + postscriptBlueShift + 7 + postscriptBlueValues + + -20 + 0 + + postscriptFontName + FixelText-Light + postscriptForceBold + + postscriptFullName + Fixel Text Light + postscriptIsFixedPitch + + postscriptStemSnapH + + 69 + 74 + 76 + 80 + 99 + + postscriptStemSnapV + + 74 + 80 + 93 + + postscriptUnderlinePosition + -100 + postscriptUnderlineThickness + 50 + postscriptWeightName + Light + styleMapFamilyName + Fixel Text Light + styleMapStyleName + regular + styleName + Light + unitsPerEm + 1000 + versionMajor + 1 + versionMinor + 200 + xHeight + 520 + + diff --git a/sources/FixelText-Light.ufo/glyphs/A_-cy.accented.glif b/sources/FixelText-Light.ufo/glyphs/A_-cy.accented.glif new file mode 100644 index 00000000..fa79c7ef --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/A_-cy.accented.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+acute.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/A_-cy.glif b/sources/FixelText-Light.ufo/glyphs/A_-cy.glif new file mode 100644 index 00000000..9a6668d7 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/A_-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A + + + diff --git a/sources/FixelText-Light.ufo/glyphs/A_-cy.ss01.glif b/sources/FixelText-Light.ufo/glyphs/A_-cy.ss01.glif new file mode 100644 index 00000000..2a68c637 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/A_-cy.ss01.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + com.fontlab.recipe + A + + + diff --git a/sources/FixelText-Light.ufo/glyphs/A_.glif b/sources/FixelText-Light.ufo/glyphs/A_.glif new file mode 100644 index 00000000..323466a1 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/A_.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/A_.ss01.glif b/sources/FixelText-Light.ufo/glyphs/A_.ss01.glif new file mode 100644 index 00000000..4fac9487 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/A_.ss01.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/A_E_.glif b/sources/FixelText-Light.ufo/glyphs/A_E_.glif new file mode 100644 index 00000000..21194123 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/A_E_.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + A + com.fontlab.metricsRight + E + + + diff --git a/sources/FixelText-Light.ufo/glyphs/A_E_.ss01.glif b/sources/FixelText-Light.ufo/glyphs/A_E_.ss01.glif new file mode 100644 index 00000000..ef0799e5 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/A_E_.ss01.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + A.ss01 + com.fontlab.metricsRight + E + + + diff --git a/sources/FixelText-Light.ufo/glyphs/A_E_acute.glif b/sources/FixelText-Light.ufo/glyphs/A_E_acute.glif new file mode 100644 index 00000000..3b6397d4 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/A_E_acute.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + AE+acute.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/A_acute.glif b/sources/FixelText-Light.ufo/glyphs/A_acute.glif new file mode 100644 index 00000000..1d1b08ff --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/A_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+acute.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/A_acute.ss01.glif b/sources/FixelText-Light.ufo/glyphs/A_acute.ss01.glif new file mode 100644 index 00000000..16f04c67 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/A_acute.ss01.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + A.ss01+acute.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/A_breve.glif b/sources/FixelText-Light.ufo/glyphs/A_breve.glif new file mode 100644 index 00000000..9b69a326 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/A_breve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+breve.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/A_breve.ss01.glif b/sources/FixelText-Light.ufo/glyphs/A_breve.ss01.glif new file mode 100644 index 00000000..8bea35bd --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/A_breve.ss01.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + A.ss01+breve.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/A_brevecyr.glif b/sources/FixelText-Light.ufo/glyphs/A_brevecyr.glif new file mode 100644 index 00000000..34e4cdf6 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/A_brevecyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+breve.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/A_caron.glif b/sources/FixelText-Light.ufo/glyphs/A_caron.glif new file mode 100644 index 00000000..b2bd5f9e --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/A_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+caron.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/A_circumflex.glif b/sources/FixelText-Light.ufo/glyphs/A_circumflex.glif new file mode 100644 index 00000000..23a6d923 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/A_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+circumflex.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/A_circumflex.ss01.glif b/sources/FixelText-Light.ufo/glyphs/A_circumflex.ss01.glif new file mode 100644 index 00000000..8ac7ce00 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/A_circumflex.ss01.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + A.ss01+circumflex.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/A_dieresis.glif b/sources/FixelText-Light.ufo/glyphs/A_dieresis.glif new file mode 100644 index 00000000..30e463ea --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/A_dieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+dieresis.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/A_dieresis.ss01.glif b/sources/FixelText-Light.ufo/glyphs/A_dieresis.ss01.glif new file mode 100644 index 00000000..4a6cd4f9 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/A_dieresis.ss01.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + A.ss01+dieresis.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/A_dieresiscyr.glif b/sources/FixelText-Light.ufo/glyphs/A_dieresiscyr.glif new file mode 100644 index 00000000..2ec291aa --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/A_dieresiscyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/A_grave.glif b/sources/FixelText-Light.ufo/glyphs/A_grave.glif new file mode 100644 index 00000000..2ab28b26 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/A_grave.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+grave.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/A_grave.ss01.glif b/sources/FixelText-Light.ufo/glyphs/A_grave.ss01.glif new file mode 100644 index 00000000..35d272c5 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/A_grave.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A.ss01+grave.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/A_iecyr.glif b/sources/FixelText-Light.ufo/glyphs/A_iecyr.glif new file mode 100644 index 00000000..1149fdd3 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/A_iecyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + AE + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/A_macron.glif b/sources/FixelText-Light.ufo/glyphs/A_macron.glif new file mode 100644 index 00000000..14c77a32 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/A_macron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+macron.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/A_macron.ss01.glif b/sources/FixelText-Light.ufo/glyphs/A_macron.ss01.glif new file mode 100644 index 00000000..dca9e874 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/A_macron.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A.ss01+macron.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/A_ogonek.glif b/sources/FixelText-Light.ufo/glyphs/A_ogonek.glif new file mode 100644 index 00000000..b4276050 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/A_ogonek.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+ogonek + + + diff --git a/sources/FixelText-Light.ufo/glyphs/A_ogonek.ss01.glif b/sources/FixelText-Light.ufo/glyphs/A_ogonek.ss01.glif new file mode 100644 index 00000000..64e2e0a8 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/A_ogonek.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A.ss01+ogonek + + + diff --git a/sources/FixelText-Light.ufo/glyphs/A_ring.glif b/sources/FixelText-Light.ufo/glyphs/A_ring.glif new file mode 100644 index 00000000..73664e8e --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/A_ring.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+ring.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/A_ring.ss01.glif b/sources/FixelText-Light.ufo/glyphs/A_ring.ss01.glif new file mode 100644 index 00000000..90fcca19 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/A_ring.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A.ss01+ring.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/A_tilde.glif b/sources/FixelText-Light.ufo/glyphs/A_tilde.glif new file mode 100644 index 00000000..af7fea09 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/A_tilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+tilde.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/A_tilde.ss01.glif b/sources/FixelText-Light.ufo/glyphs/A_tilde.ss01.glif new file mode 100644 index 00000000..d3f040b4 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/A_tilde.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A.ss01+tilde.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/B_.glif b/sources/FixelText-Light.ufo/glyphs/B_.glif new file mode 100644 index 00000000..609be014 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/B_.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + + + diff --git a/sources/FixelText-Light.ufo/glyphs/B_e-cy.glif b/sources/FixelText-Light.ufo/glyphs/B_e-cy.glif new file mode 100644 index 00000000..39a83857 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/B_e-cy.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + B-10 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/C_.glif b/sources/FixelText-Light.ufo/glyphs/C_.glif new file mode 100644 index 00000000..a0288300 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/C_.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + + + diff --git a/sources/FixelText-Light.ufo/glyphs/C_R_.glif b/sources/FixelText-Light.ufo/glyphs/C_R_.glif new file mode 100644 index 00000000..a38a285e --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/C_R_.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/C_acute.glif b/sources/FixelText-Light.ufo/glyphs/C_acute.glif new file mode 100644 index 00000000..a3a6cf52 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/C_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+acute.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/C_caron.glif b/sources/FixelText-Light.ufo/glyphs/C_caron.glif new file mode 100644 index 00000000..e1eb6262 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/C_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+caron.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/C_cedilla.glif b/sources/FixelText-Light.ufo/glyphs/C_cedilla.glif new file mode 100644 index 00000000..e214bdcd --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/C_cedilla.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+cedilla + + + diff --git a/sources/FixelText-Light.ufo/glyphs/C_che-cy.glif b/sources/FixelText-Light.ufo/glyphs/C_che-cy.glif new file mode 100644 index 00000000..52e61bb4 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/C_che-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ч + com.fontlab.metricsRight + Ч + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/C_circumflex.glif b/sources/FixelText-Light.ufo/glyphs/C_circumflex.glif new file mode 100644 index 00000000..efa9475d --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/C_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+circumflex.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/C_dotaccent.glif b/sources/FixelText-Light.ufo/glyphs/C_dotaccent.glif new file mode 100644 index 00000000..8b666fef --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/C_dotaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+dotaccent.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/C_he-cy.glif b/sources/FixelText-Light.ufo/glyphs/C_he-cy.glif new file mode 100644 index 00000000..849cb879 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/C_he-cy.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-Light.ufo/glyphs/C_heabkhcyr.glif b/sources/FixelText-Light.ufo/glyphs/C_heabkhcyr.glif new file mode 100644 index 00000000..d8998390 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/C_heabkhcyr.glif @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + |Schwa + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/C_heabkhtailcyr.glif b/sources/FixelText-Light.ufo/glyphs/C_heabkhtailcyr.glif new file mode 100644 index 00000000..32357c40 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/C_heabkhtailcyr.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Cheabkhcyr + com.fontlab.metricsRight + Cheabkhcyr + com.fontlab.recipe + Cheabkhcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/C_hedieresiscyr.glif b/sources/FixelText-Light.ufo/glyphs/C_hedieresiscyr.glif new file mode 100644 index 00000000..9cb58c0b --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/C_hedieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Che-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/C_hekhakascyr.glif b/sources/FixelText-Light.ufo/glyphs/C_hekhakascyr.glif new file mode 100644 index 00000000..72a72aa3 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/C_hekhakascyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ч + com.fontlab.metricsRight + H + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/C_hetailcyr.glif b/sources/FixelText-Light.ufo/glyphs/C_hetailcyr.glif new file mode 100644 index 00000000..6a5b3e17 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/C_hetailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ч + com.fontlab.metricsRight + Entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/C_hevertcyr.glif b/sources/FixelText-Light.ufo/glyphs/C_hevertcyr.glif new file mode 100644 index 00000000..e3781cf9 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/C_hevertcyr.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ч + com.fontlab.metricsRight + Н + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/C_rossedO_-cy.glif b/sources/FixelText-Light.ufo/glyphs/C_rossedO_-cy.glif new file mode 100644 index 00000000..8345601d --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/C_rossedO_-cy.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + com.fontlab.recipe + O + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/D_.glif b/sources/FixelText-Light.ufo/glyphs/D_.glif new file mode 100644 index 00000000..a66af592 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/D_.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-Light.ufo/glyphs/D_caron.glif b/sources/FixelText-Light.ufo/glyphs/D_caron.glif new file mode 100644 index 00000000..4936a39e --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/D_caron.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + D+caron.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/D_checyr.glif b/sources/FixelText-Light.ufo/glyphs/D_checyr.glif new file mode 100644 index 00000000..8939f17b --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/D_checyr.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Д+10 + com.fontlab.metricsRight + Д + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/D_croat.glif b/sources/FixelText-Light.ufo/glyphs/D_croat.glif new file mode 100644 index 00000000..923f66d7 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/D_croat.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + D + com.fontlab.recipe + Eth + + + diff --git a/sources/FixelText-Light.ufo/glyphs/D_e-cy.B_G_R_.glif b/sources/FixelText-Light.ufo/glyphs/D_e-cy.B_G_R_.glif new file mode 100644 index 00000000..9c8d3c2f --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/D_e-cy.B_G_R_.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + l() + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/D_e-cy.glif b/sources/FixelText-Light.ufo/glyphs/D_e-cy.glif new file mode 100644 index 00000000..064017fc --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/D_e-cy.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/D_eS_oft-cy.glif b/sources/FixelText-Light.ufo/glyphs/D_eS_oft-cy.glif new file mode 100644 index 00000000..f545581d --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/D_eS_oft-cy.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Д + com.fontlab.metricsRight + Ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/D_ekomicyr.glif b/sources/FixelText-Light.ufo/glyphs/D_ekomicyr.glif new file mode 100644 index 00000000..ca5be64f --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/D_ekomicyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.metricsLeft + |P + com.fontlab.metricsRight + H + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/D_elta.glif b/sources/FixelText-Light.ufo/glyphs/D_elta.glif new file mode 100644 index 00000000..0d7923ee --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/D_elta.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + A + + + diff --git a/sources/FixelText-Light.ufo/glyphs/D_jecyr.glif b/sources/FixelText-Light.ufo/glyphs/D_jecyr.glif new file mode 100644 index 00000000..990fea70 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/D_jecyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelText-Light.ufo/glyphs/D_jekomicyr.glif b/sources/FixelText-Light.ufo/glyphs/D_jekomicyr.glif new file mode 100644 index 00000000..d3b4573d --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/D_jekomicyr.glif @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Dekomicyr + com.fontlab.metricsRight + Njekomicyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/D_jerv-cy.glif b/sources/FixelText-Light.ufo/glyphs/D_jerv-cy.glif new file mode 100644 index 00000000..7d3d0593 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/D_jerv-cy.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + r() + com.fontlab.metricsRight + O + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/D_oubleO_-cy.glif b/sources/FixelText-Light.ufo/glyphs/D_oubleO_-cy.glif new file mode 100644 index 00000000..d0b9eb7b --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/D_oubleO_-cy.glif @@ -0,0 +1,91 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + com.fontlab.recipe + O_O + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/D_we-cy.glif b/sources/FixelText-Light.ufo/glyphs/D_we-cy.glif new file mode 100644 index 00000000..c4333f13 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/D_we-cy.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Д + com.fontlab.metricsRight + Д + com.fontlab.recipe + Д + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/D_ze-cy.glif b/sources/FixelText-Light.ufo/glyphs/D_ze-cy.glif new file mode 100644 index 00000000..5b8ee1ab --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/D_ze-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + S + + + diff --git a/sources/FixelText-Light.ufo/glyphs/D_zeR_eversed-cy.glif b/sources/FixelText-Light.ufo/glyphs/D_zeR_eversed-cy.glif new file mode 100644 index 00000000..1a01396b --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/D_zeR_eversed-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + S + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/D_zeabkhcyr.glif b/sources/FixelText-Light.ufo/glyphs/D_zeabkhcyr.glif new file mode 100644 index 00000000..5e128f21 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/D_zeabkhcyr.glif @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + З-10 + com.fontlab.metricsRight + З-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/D_zelo-cy.glif b/sources/FixelText-Light.ufo/glyphs/D_zelo-cy.glif new file mode 100644 index 00000000..77ca1e4e --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/D_zelo-cy.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/D_zhecyr.glif b/sources/FixelText-Light.ufo/glyphs/D_zhecyr.glif new file mode 100644 index 00000000..0e188d9b --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/D_zhecyr.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-Light.ufo/glyphs/D_zjekomicyr.glif b/sources/FixelText-Light.ufo/glyphs/D_zjekomicyr.glif new file mode 100644 index 00000000..a5fa3052 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/D_zjekomicyr.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + З-10 + com.fontlab.metricsRight + Ц-5 + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/D_zwe-cy.glif b/sources/FixelText-Light.ufo/glyphs/D_zwe-cy.glif new file mode 100644 index 00000000..3ca54b1f --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/D_zwe-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + S + com.fontlab.metricsRight + S + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/D_zze-cy.glif b/sources/FixelText-Light.ufo/glyphs/D_zze-cy.glif new file mode 100644 index 00000000..f0538099 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/D_zze-cy.glif @@ -0,0 +1,84 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Д + com.fontlab.metricsRight + Д-20 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/D_zzhecyr.glif b/sources/FixelText-Light.ufo/glyphs/D_zzhecyr.glif new file mode 100644 index 00000000..0fdc5fda --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/D_zzhecyr.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Д + com.fontlab.metricsRight + Ж + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/E_-cy.accented.glif b/sources/FixelText-Light.ufo/glyphs/E_-cy.accented.glif new file mode 100644 index 00000000..44b26890 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/E_-cy.accented.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+acute.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/E_-cy.glif b/sources/FixelText-Light.ufo/glyphs/E_-cy.glif new file mode 100644 index 00000000..ab88d25a --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/E_-cy.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + C + com.fontlab.metricsRight + C + + + diff --git a/sources/FixelText-Light.ufo/glyphs/E_.glif b/sources/FixelText-Light.ufo/glyphs/E_.glif new file mode 100644 index 00000000..f70b8970 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/E_.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + com.fontlab.metricsRight + F+10 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/E_acute.glif b/sources/FixelText-Light.ufo/glyphs/E_acute.glif new file mode 100644 index 00000000..94601a8e --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/E_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+acute.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/E_breve.glif b/sources/FixelText-Light.ufo/glyphs/E_breve.glif new file mode 100644 index 00000000..c55eada7 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/E_breve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+breve.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/E_caron.glif b/sources/FixelText-Light.ufo/glyphs/E_caron.glif new file mode 100644 index 00000000..45d9b9a0 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/E_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+caron.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/E_circumflex.glif b/sources/FixelText-Light.ufo/glyphs/E_circumflex.glif new file mode 100644 index 00000000..980649ba --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/E_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+circumflex.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/E_dieresis.glif b/sources/FixelText-Light.ufo/glyphs/E_dieresis.glif new file mode 100644 index 00000000..98227e57 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/E_dieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+dieresiscase.alt + + + diff --git a/sources/FixelText-Light.ufo/glyphs/E_dotaccent.glif b/sources/FixelText-Light.ufo/glyphs/E_dotaccent.glif new file mode 100644 index 00000000..93518122 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/E_dotaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+dotaccent.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/E_f-cy.B_G_R_.glif b/sources/FixelText-Light.ufo/glyphs/E_f-cy.B_G_R_.glif new file mode 100644 index 00000000..5d9c4606 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/E_f-cy.B_G_R_.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/E_f-cy.glif b/sources/FixelText-Light.ufo/glyphs/E_f-cy.glif new file mode 100644 index 00000000..00622032 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/E_f-cy.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-Light.ufo/glyphs/E_grave.glif b/sources/FixelText-Light.ufo/glyphs/E_grave.glif new file mode 100644 index 00000000..ca5e386f --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/E_grave.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+grave.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/E_iotifiedcyr.glif b/sources/FixelText-Light.ufo/glyphs/E_iotifiedcyr.glif new file mode 100644 index 00000000..5f969a8a --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/E_iotifiedcyr.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + C + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/E_l-cy.B_G_R_.glif b/sources/FixelText-Light.ufo/glyphs/E_l-cy.B_G_R_.glif new file mode 100644 index 00000000..04ce52ad --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/E_l-cy.B_G_R_.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + A + com.fontlab.metricsRight + l() + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/E_l-cy.glif b/sources/FixelText-Light.ufo/glyphs/E_l-cy.glif new file mode 100644 index 00000000..bc9ef139 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/E_l-cy.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-Light.ufo/glyphs/E_lS_oft-cy.glif b/sources/FixelText-Light.ufo/glyphs/E_lS_oft-cy.glif new file mode 100644 index 00000000..8d55e78d --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/E_lS_oft-cy.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/E_lhookcyr.glif b/sources/FixelText-Light.ufo/glyphs/E_lhookcyr.glif new file mode 100644 index 00000000..beb705a2 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/E_lhookcyr.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Л + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/E_lmiddlehookcyr.glif b/sources/FixelText-Light.ufo/glyphs/E_lmiddlehookcyr.glif new file mode 100644 index 00000000..93a511e8 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/E_lmiddlehookcyr.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Shhacyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/E_lsharptailcyr.glif b/sources/FixelText-Light.ufo/glyphs/E_lsharptailcyr.glif new file mode 100644 index 00000000..5d9ac640 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/E_lsharptailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Ensharptailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/E_lsmallcyr.glif b/sources/FixelText-Light.ufo/glyphs/E_lsmallcyr.glif new file mode 100644 index 00000000..0e2ada85 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/E_lsmallcyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + el-cy.BGR + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/E_ltailcyr.glif b/sources/FixelText-Light.ufo/glyphs/E_ltailcyr.glif new file mode 100644 index 00000000..ae513500 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/E_ltailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/E_m-cy.glif b/sources/FixelText-Light.ufo/glyphs/E_m-cy.glif new file mode 100644 index 00000000..f49d5fc8 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/E_m-cy.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + M + + + diff --git a/sources/FixelText-Light.ufo/glyphs/E_m-cy.ss01.glif b/sources/FixelText-Light.ufo/glyphs/E_m-cy.ss01.glif new file mode 100644 index 00000000..342b3be5 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/E_m-cy.ss01.glif @@ -0,0 +1,13 @@ + + + + + + + + + com.fontlab.recipe + M + + + diff --git a/sources/FixelText-Light.ufo/glyphs/E_mS_oft-cy.glif b/sources/FixelText-Light.ufo/glyphs/E_mS_oft-cy.glif new file mode 100644 index 00000000..c69459d9 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/E_mS_oft-cy.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + M + com.fontlab.metricsRight + Ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/E_macron.glif b/sources/FixelText-Light.ufo/glyphs/E_macron.glif new file mode 100644 index 00000000..69f0c726 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/E_macron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+macron.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/E_msharptailcyr.glif b/sources/FixelText-Light.ufo/glyphs/E_msharptailcyr.glif new file mode 100644 index 00000000..cbb371a2 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/E_msharptailcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Н + com.fontlab.metricsRight + Ensharptailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/E_n-cy.glif b/sources/FixelText-Light.ufo/glyphs/E_n-cy.glif new file mode 100644 index 00000000..8a90702f --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/E_n-cy.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + H + + + diff --git a/sources/FixelText-Light.ufo/glyphs/E_ng.glif b/sources/FixelText-Light.ufo/glyphs/E_ng.glif new file mode 100644 index 00000000..e1600fff --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/E_ng.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + N + com.fontlab.metricsRight + l() + + + diff --git a/sources/FixelText-Light.ufo/glyphs/E_ng.ss01.glif b/sources/FixelText-Light.ufo/glyphs/E_ng.ss01.glif new file mode 100644 index 00000000..2b4b0b17 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/E_ng.ss01.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + N.ss01 + com.fontlab.metricsRight + J.ss01 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/E_ngecyr.glif b/sources/FixelText-Light.ufo/glyphs/E_ngecyr.glif new file mode 100644 index 00000000..73d23c94 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/E_ngecyr.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/E_nhookcyr.glif b/sources/FixelText-Light.ufo/glyphs/E_nhookcyr.glif new file mode 100644 index 00000000..8c2c9bf5 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/E_nhookcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/E_nhookleftcyr.glif b/sources/FixelText-Light.ufo/glyphs/E_nhookleftcyr.glif new file mode 100644 index 00000000..2a9d157f --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/E_nhookleftcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + r()-159 + com.fontlab.metricsRight + H + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/E_nmiddlehookcyr.glif b/sources/FixelText-Light.ufo/glyphs/E_nmiddlehookcyr.glif new file mode 100644 index 00000000..aa29ac28 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/E_nmiddlehookcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Shhacyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/E_nsharptailcyr.glif b/sources/FixelText-Light.ufo/glyphs/E_nsharptailcyr.glif new file mode 100644 index 00000000..419c72f3 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/E_nsharptailcyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Н + com.fontlab.metricsRight + Д + com.fontlab.recipe + Entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/E_ntailcyr.glif b/sources/FixelText-Light.ufo/glyphs/E_ntailcyr.glif new file mode 100644 index 00000000..99c30637 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/E_ntailcyr.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Ц + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/E_ogonek.glif b/sources/FixelText-Light.ufo/glyphs/E_ogonek.glif new file mode 100644 index 00000000..837891c6 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/E_ogonek.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+ogonek + + + diff --git a/sources/FixelText-Light.ufo/glyphs/E_r-cy.glif b/sources/FixelText-Light.ufo/glyphs/E_r-cy.glif new file mode 100644 index 00000000..02dd7ba2 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/E_r-cy.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + P + + + diff --git a/sources/FixelText-Light.ufo/glyphs/E_reversed-cy.accented.glif b/sources/FixelText-Light.ufo/glyphs/E_reversed-cy.accented.glif new file mode 100644 index 00000000..2af5eb48 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/E_reversed-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Э+acute.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/E_reversed-cy.glif b/sources/FixelText-Light.ufo/glyphs/E_reversed-cy.glif new file mode 100644 index 00000000..8c46fccb --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/E_reversed-cy.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |C + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-Light.ufo/glyphs/E_reverseddieresiscyr.glif b/sources/FixelText-Light.ufo/glyphs/E_reverseddieresiscyr.glif new file mode 100644 index 00000000..4d71d7fd --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/E_reverseddieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ereversed-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/E_rtickcyr.glif b/sources/FixelText-Light.ufo/glyphs/E_rtickcyr.glif new file mode 100644 index 00000000..b9cd4eb0 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/E_rtickcyr.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + P + com.fontlab.metricsRight + P + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/E_s-cy.glif b/sources/FixelText-Light.ufo/glyphs/E_s-cy.glif new file mode 100644 index 00000000..9a2fff41 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/E_s-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C + + + diff --git a/sources/FixelText-Light.ufo/glyphs/E_stailcyr.B_S_H_.glif b/sources/FixelText-Light.ufo/glyphs/E_stailcyr.B_S_H_.glif new file mode 100644 index 00000000..81b35f93 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/E_stailcyr.B_S_H_.glif @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + C + com.fontlab.metricsRight + C + com.fontlab.recipe + C + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/E_stailcyr.C_H_U_.glif b/sources/FixelText-Light.ufo/glyphs/E_stailcyr.C_H_U_.glif new file mode 100644 index 00000000..c6851f1a --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/E_stailcyr.C_H_U_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+cedilla.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/E_stailcyr.glif b/sources/FixelText-Light.ufo/glyphs/E_stailcyr.glif new file mode 100644 index 00000000..22c7d1d7 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/E_stailcyr.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + С + com.fontlab.metricsRight + С + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/E_th.glif b/sources/FixelText-Light.ufo/glyphs/E_th.glif new file mode 100644 index 00000000..fea2e7f3 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/E_th.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + D + + + diff --git a/sources/FixelText-Light.ufo/glyphs/F_.glif b/sources/FixelText-Light.ufo/glyphs/F_.glif new file mode 100644 index 00000000..0e91f450 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/F_.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + + + diff --git a/sources/FixelText-Light.ufo/glyphs/F_itacyr.glif b/sources/FixelText-Light.ufo/glyphs/F_itacyr.glif new file mode 100644 index 00000000..3348142d --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/F_itacyr.glif @@ -0,0 +1,78 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + com.fontlab.recipe + Obarcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/G_.glif b/sources/FixelText-Light.ufo/glyphs/G_.glif new file mode 100644 index 00000000..cd5d783c --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/G_.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O+18 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/G_.ss01.glif b/sources/FixelText-Light.ufo/glyphs/G_.ss01.glif new file mode 100644 index 00000000..fbdf2701 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/G_.ss01.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O+10 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/G_acute.glif b/sources/FixelText-Light.ufo/glyphs/G_acute.glif new file mode 100644 index 00000000..2f8978ed --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/G_acute.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + G+acute.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/G_acute.ss01.glif b/sources/FixelText-Light.ufo/glyphs/G_acute.ss01.glif new file mode 100644 index 00000000..9f83600e --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/G_acute.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G.ss01+acute.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/G_breve.glif b/sources/FixelText-Light.ufo/glyphs/G_breve.glif new file mode 100644 index 00000000..9b08b37b --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/G_breve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G+breve.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/G_breve.ss01.glif b/sources/FixelText-Light.ufo/glyphs/G_breve.ss01.glif new file mode 100644 index 00000000..80c55b52 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/G_breve.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G.ss01+breve.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/G_circumflex.glif b/sources/FixelText-Light.ufo/glyphs/G_circumflex.glif new file mode 100644 index 00000000..fddfabf6 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/G_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G+circumflex.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/G_circumflex.ss01.glif b/sources/FixelText-Light.ufo/glyphs/G_circumflex.ss01.glif new file mode 100644 index 00000000..5b65706c --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/G_circumflex.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G.ss01+circumflex.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/G_commaaccent.glif b/sources/FixelText-Light.ufo/glyphs/G_commaaccent.glif new file mode 100644 index 00000000..15d124e0 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/G_commaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G+commaaccentcomb + + + diff --git a/sources/FixelText-Light.ufo/glyphs/G_commaaccent.ss01.glif b/sources/FixelText-Light.ufo/glyphs/G_commaaccent.ss01.glif new file mode 100644 index 00000000..795a210c --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/G_commaaccent.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G.ss01+commaaccentcomb + + + diff --git a/sources/FixelText-Light.ufo/glyphs/G_dotaccent.glif b/sources/FixelText-Light.ufo/glyphs/G_dotaccent.glif new file mode 100644 index 00000000..2bd25ebd --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/G_dotaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G+dotaccent.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/G_dotaccent.ss01.glif b/sources/FixelText-Light.ufo/glyphs/G_dotaccent.ss01.glif new file mode 100644 index 00000000..4b1165a7 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/G_dotaccent.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G.ss01+dotaccent.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/G_e-cy.glif b/sources/FixelText-Light.ufo/glyphs/G_e-cy.glif new file mode 100644 index 00000000..24a12ac3 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/G_e-cy.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + T + + + diff --git a/sources/FixelText-Light.ufo/glyphs/G_ehookcyr.glif b/sources/FixelText-Light.ufo/glyphs/G_ehookcyr.glif new file mode 100644 index 00000000..dad489f8 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/G_ehookcyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Г + com.fontlab.metricsRight + Tshecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/G_ehookstrokecyr.glif b/sources/FixelText-Light.ufo/glyphs/G_ehookstrokecyr.glif new file mode 100644 index 00000000..a3b7d595 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/G_ehookstrokecyr.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Gestrokecyr + com.fontlab.metricsRight + Gestrokecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/G_ermandbls.glif b/sources/FixelText-Light.ufo/glyphs/G_ermandbls.glif new file mode 100644 index 00000000..e6a92812 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/G_ermandbls.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + U + com.fontlab.metricsRight + B-5 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/G_estrokecyr.B_S_H_.glif b/sources/FixelText-Light.ufo/glyphs/G_estrokecyr.B_S_H_.glif new file mode 100644 index 00000000..b614a9d5 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/G_estrokecyr.B_S_H_.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + F + com.fontlab.metricsRight + Gestrokecyr + com.fontlab.recipe + Gestrokecyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/G_estrokecyr.glif b/sources/FixelText-Light.ufo/glyphs/G_estrokecyr.glif new file mode 100644 index 00000000..b9a74e65 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/G_estrokecyr.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + Г + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/G_etailcyr.glif b/sources/FixelText-Light.ufo/glyphs/G_etailcyr.glif new file mode 100644 index 00000000..1803b5a9 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/G_etailcyr.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Г + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/G_heupturn-cy.glif b/sources/FixelText-Light.ufo/glyphs/G_heupturn-cy.glif new file mode 100644 index 00000000..82bcbfb1 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/G_heupturn-cy.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Г + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/G_jecyr.glif b/sources/FixelText-Light.ufo/glyphs/G_jecyr.glif new file mode 100644 index 00000000..8800d062 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/G_jecyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ge-cy+acute.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/H_.glif b/sources/FixelText-Light.ufo/glyphs/H_.glif new file mode 100644 index 00000000..2ba88b38 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/H_.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + com.fontlab.metricsRight + I + + + diff --git a/sources/FixelText-Light.ufo/glyphs/H_a-cy.glif b/sources/FixelText-Light.ufo/glyphs/H_a-cy.glif new file mode 100644 index 00000000..72b17892 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/H_a-cy.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + X + + + diff --git a/sources/FixelText-Light.ufo/glyphs/H_a-cy.ss01.glif b/sources/FixelText-Light.ufo/glyphs/H_a-cy.ss01.glif new file mode 100644 index 00000000..5843c6f4 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/H_a-cy.ss01.glif @@ -0,0 +1,14 @@ + + + + + + + + + + com.fontlab.recipe + X + + + diff --git a/sources/FixelText-Light.ufo/glyphs/H_aabkhcyr.glif b/sources/FixelText-Light.ufo/glyphs/H_aabkhcyr.glif new file mode 100644 index 00000000..463855a2 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/H_aabkhcyr.glif @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/H_ahookcyr.glif b/sources/FixelText-Light.ufo/glyphs/H_ahookcyr.glif new file mode 100644 index 00000000..8fd15c01 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/H_ahookcyr.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + X + com.fontlab.metricsRight + X + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/H_ardsign-cy.glif b/sources/FixelText-Light.ufo/glyphs/H_ardsign-cy.glif new file mode 100644 index 00000000..d1a6ac18 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/H_ardsign-cy.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + Ь + + + diff --git a/sources/FixelText-Light.ufo/glyphs/H_astrokecyr.glif b/sources/FixelText-Light.ufo/glyphs/H_astrokecyr.glif new file mode 100644 index 00000000..9df2953c --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/H_astrokecyr.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + X + com.fontlab.metricsRight + X + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/H_bar.glif b/sources/FixelText-Light.ufo/glyphs/H_bar.glif new file mode 100644 index 00000000..c6583944 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/H_bar.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + r() + com.fontlab.metricsRight + H + com.schriftgestaltung.Glyphs.rightMetricsKey + H + + + diff --git a/sources/FixelText-Light.ufo/glyphs/H_circumflex.glif b/sources/FixelText-Light.ufo/glyphs/H_circumflex.glif new file mode 100644 index 00000000..5e669c87 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/H_circumflex.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + H+circumflex.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/H_we-cy.glif b/sources/FixelText-Light.ufo/glyphs/H_we-cy.glif new file mode 100644 index 00000000..2f6c2f26 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/H_we-cy.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Iota-cy + com.fontlab.metricsRight + Tshecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/I_-cy.glif b/sources/FixelText-Light.ufo/glyphs/I_-cy.glif new file mode 100644 index 00000000..77205a1e --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/I_-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I + + + diff --git a/sources/FixelText-Light.ufo/glyphs/I_.glif b/sources/FixelText-Light.ufo/glyphs/I_.glif new file mode 100644 index 00000000..701b679a --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/I_.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/I_J_.glif b/sources/FixelText-Light.ufo/glyphs/I_J_.glif new file mode 100644 index 00000000..bb78f803 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/I_J_.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + I_J + + + diff --git a/sources/FixelText-Light.ufo/glyphs/I_a-cy.accented.glif b/sources/FixelText-Light.ufo/glyphs/I_a-cy.accented.glif new file mode 100644 index 00000000..cdf8e227 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/I_a-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Я+acute.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/I_a-cy.glif b/sources/FixelText-Light.ufo/glyphs/I_a-cy.glif new file mode 100644 index 00000000..c611fa3d --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/I_a-cy.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |R+10 + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-Light.ufo/glyphs/I_a-cy.ss01.glif b/sources/FixelText-Light.ufo/glyphs/I_a-cy.ss01.glif new file mode 100644 index 00000000..9c4246be --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/I_a-cy.ss01.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-Light.ufo/glyphs/I_acute.glif b/sources/FixelText-Light.ufo/glyphs/I_acute.glif new file mode 100644 index 00000000..7f1d6fe8 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/I_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+acute.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/I_breve.glif b/sources/FixelText-Light.ufo/glyphs/I_breve.glif new file mode 100644 index 00000000..a2bcb3cb --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/I_breve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+breve.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/I_circumflex.glif b/sources/FixelText-Light.ufo/glyphs/I_circumflex.glif new file mode 100644 index 00000000..5dde0169 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/I_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+circumflex.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/I_dieresis.glif b/sources/FixelText-Light.ufo/glyphs/I_dieresis.glif new file mode 100644 index 00000000..ab7109e2 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/I_dieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+dieresiscase.alt + + + diff --git a/sources/FixelText-Light.ufo/glyphs/I_dieresiscyr.glif b/sources/FixelText-Light.ufo/glyphs/I_dieresiscyr.glif new file mode 100644 index 00000000..4674b984 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/I_dieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ii-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/I_dotaccent.glif b/sources/FixelText-Light.ufo/glyphs/I_dotaccent.glif new file mode 100644 index 00000000..7bb46d95 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/I_dotaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+dotaccent.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/I_e-cy.glif b/sources/FixelText-Light.ufo/glyphs/I_e-cy.glif new file mode 100644 index 00000000..2bde88d8 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/I_e-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E + + + diff --git a/sources/FixelText-Light.ufo/glyphs/I_ebrevecyr.glif b/sources/FixelText-Light.ufo/glyphs/I_ebrevecyr.glif new file mode 100644 index 00000000..1e01f617 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/I_ebrevecyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+breve.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/I_egravecyr.glif b/sources/FixelText-Light.ufo/glyphs/I_egravecyr.glif new file mode 100644 index 00000000..d6397ae5 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/I_egravecyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+grave.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/I_grave.glif b/sources/FixelText-Light.ufo/glyphs/I_grave.glif new file mode 100644 index 00000000..3f9ec965 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/I_grave.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+grave.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/I_gravecyr.glif b/sources/FixelText-Light.ufo/glyphs/I_gravecyr.glif new file mode 100644 index 00000000..e01c4d5f --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/I_gravecyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ii-cy+grave.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/I_i-cy.accented.glif b/sources/FixelText-Light.ufo/glyphs/I_i-cy.accented.glif new file mode 100644 index 00000000..4d057718 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/I_i-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + И+acute.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/I_i-cy.glif b/sources/FixelText-Light.ufo/glyphs/I_i-cy.glif new file mode 100644 index 00000000..6c740887 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/I_i-cy.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-Light.ufo/glyphs/I_ishort-cy.glif b/sources/FixelText-Light.ufo/glyphs/I_ishort-cy.glif new file mode 100644 index 00000000..9814c6ae --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/I_ishort-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + uni0418+breve.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/I_macron.glif b/sources/FixelText-Light.ufo/glyphs/I_macron.glif new file mode 100644 index 00000000..33059261 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/I_macron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+macron.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/I_macroncyr.glif b/sources/FixelText-Light.ufo/glyphs/I_macroncyr.glif new file mode 100644 index 00000000..598c0e1b --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/I_macroncyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ii-cy+macron.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/I_o-cy.accented.glif b/sources/FixelText-Light.ufo/glyphs/I_o-cy.accented.glif new file mode 100644 index 00000000..fc33f6c8 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/I_o-cy.accented.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + com.fontlab.recipe + E+dieresis.case+acute.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/I_o-cy.glif b/sources/FixelText-Light.ufo/glyphs/I_o-cy.glif new file mode 100644 index 00000000..79fb9739 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/I_o-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Edieresis + + + diff --git a/sources/FixelText-Light.ufo/glyphs/I_ogonek.glif b/sources/FixelText-Light.ufo/glyphs/I_ogonek.glif new file mode 100644 index 00000000..15d8d200 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/I_ogonek.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+ogonek + + + diff --git a/sources/FixelText-Light.ufo/glyphs/I_ota-cy.glif b/sources/FixelText-Light.ufo/glyphs/I_ota-cy.glif new file mode 100644 index 00000000..2f3e90f6 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/I_ota-cy.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |J + com.fontlab.metricsRight + |J + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/I_otifiedA_-cy.glif b/sources/FixelText-Light.ufo/glyphs/I_otifiedA_-cy.glif new file mode 100644 index 00000000..3e3d29b1 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/I_otifiedA_-cy.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + com.fontlab.metricsRight + A + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/I_shortsharptailcyr.glif b/sources/FixelText-Light.ufo/glyphs/I_shortsharptailcyr.glif new file mode 100644 index 00000000..0efa7d56 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/I_shortsharptailcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Й + com.fontlab.metricsRight + Ensharptailcyr + com.fontlab.recipe + Й + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/I_tilde.glif b/sources/FixelText-Light.ufo/glyphs/I_tilde.glif new file mode 100644 index 00000000..5d5c7fa8 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/I_tilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+tilde.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/I_u-cy.accented.glif b/sources/FixelText-Light.ufo/glyphs/I_u-cy.accented.glif new file mode 100644 index 00000000..0eb7bf68 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/I_u-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ю+acute.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/I_u-cy.glif b/sources/FixelText-Light.ufo/glyphs/I_u-cy.glif new file mode 100644 index 00000000..a94f5f9f --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/I_u-cy.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-Light.ufo/glyphs/I_zhitsacyr.glif b/sources/FixelText-Light.ufo/glyphs/I_zhitsacyr.glif new file mode 100644 index 00000000..e4f78002 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/I_zhitsacyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + V + com.fontlab.metricsRight + + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/I_zhitsagravedblcyr.glif b/sources/FixelText-Light.ufo/glyphs/I_zhitsagravedblcyr.glif new file mode 100644 index 00000000..fe72fb94 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/I_zhitsagravedblcyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + com.fontlab.metricsLeft + Izhitsacyr + com.fontlab.metricsRight + Izhitsacyr + com.fontlab.recipe + Izhitsacyr+hungarumlaut.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/J_.glif b/sources/FixelText-Light.ufo/glyphs/J_.glif new file mode 100644 index 00000000..e9a87799 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/J_.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + U + + + diff --git a/sources/FixelText-Light.ufo/glyphs/J_.ss01.glif b/sources/FixelText-Light.ufo/glyphs/J_.ss01.glif new file mode 100644 index 00000000..3924df5a --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/J_.ss01.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + U + + + diff --git a/sources/FixelText-Light.ufo/glyphs/J_circumflex.glif b/sources/FixelText-Light.ufo/glyphs/J_circumflex.glif new file mode 100644 index 00000000..d214ffce --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/J_circumflex.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + J+circumflex.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/J_circumflex.ss01.glif b/sources/FixelText-Light.ufo/glyphs/J_circumflex.ss01.glif new file mode 100644 index 00000000..4054fcf1 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/J_circumflex.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + J.ss01+circumflex.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/J_ecyr.glif b/sources/FixelText-Light.ufo/glyphs/J_ecyr.glif new file mode 100644 index 00000000..90a49c0a --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/J_ecyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsLeft + J + com.fontlab.metricsRight + J + com.fontlab.recipe + J + + + diff --git a/sources/FixelText-Light.ufo/glyphs/K_.glif b/sources/FixelText-Light.ufo/glyphs/K_.glif new file mode 100644 index 00000000..f2c39dd3 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/K_.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + + + diff --git a/sources/FixelText-Light.ufo/glyphs/K_.ss01.glif b/sources/FixelText-Light.ufo/glyphs/K_.ss01.glif new file mode 100644 index 00000000..84765434 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/K_.ss01.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + + + diff --git a/sources/FixelText-Light.ufo/glyphs/K_a-cy.glif b/sources/FixelText-Light.ufo/glyphs/K_a-cy.glif new file mode 100644 index 00000000..23fa4bfc --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/K_a-cy.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.recipe + K + + + diff --git a/sources/FixelText-Light.ufo/glyphs/K_a-cy.ss01.glif b/sources/FixelText-Light.ufo/glyphs/K_a-cy.ss01.glif new file mode 100644 index 00000000..626314c5 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/K_a-cy.ss01.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.recipe + K + + + diff --git a/sources/FixelText-Light.ufo/glyphs/K_aaleutcyr.glif b/sources/FixelText-Light.ufo/glyphs/K_aaleutcyr.glif new file mode 100644 index 00000000..2365c513 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/K_aaleutcyr.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + K + com.fontlab.metricsRight + K + com.fontlab.recipe + K + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/K_abashkcyr.glif b/sources/FixelText-Light.ufo/glyphs/K_abashkcyr.glif new file mode 100644 index 00000000..0bc986be --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/K_abashkcyr.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Hardsign-cy + com.fontlab.metricsRight + K + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/K_ahookcyr.glif b/sources/FixelText-Light.ufo/glyphs/K_ahookcyr.glif new file mode 100644 index 00000000..8f5c4744 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/K_ahookcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + K + com.fontlab.metricsRight + Djecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/K_astrokecyr.glif b/sources/FixelText-Light.ufo/glyphs/K_astrokecyr.glif new file mode 100644 index 00000000..d6737d22 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/K_astrokecyr.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Yatcyr + com.fontlab.metricsRight + K + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/K_atailcyr.glif b/sources/FixelText-Light.ufo/glyphs/K_atailcyr.glif new file mode 100644 index 00000000..bd7d27f3 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/K_atailcyr.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + К-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/K_averticalstrokecyr.glif b/sources/FixelText-Light.ufo/glyphs/K_averticalstrokecyr.glif new file mode 100644 index 00000000..b71290f3 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/K_averticalstrokecyr.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + K + com.fontlab.metricsRight + Ж + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/K_commaaccent.glif b/sources/FixelText-Light.ufo/glyphs/K_commaaccent.glif new file mode 100644 index 00000000..130ae801 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/K_commaaccent.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + K+commaaccentcomb + + + diff --git a/sources/FixelText-Light.ufo/glyphs/K_commaaccent.ss01.glif b/sources/FixelText-Light.ufo/glyphs/K_commaaccent.ss01.glif new file mode 100644 index 00000000..144a2831 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/K_commaaccent.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + K.ss01+commaaccentcomb + + + diff --git a/sources/FixelText-Light.ufo/glyphs/K_jecyr.glif b/sources/FixelText-Light.ufo/glyphs/K_jecyr.glif new file mode 100644 index 00000000..7626d4e4 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/K_jecyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ka-cy+acute.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/K_oppacyr.glif b/sources/FixelText-Light.ufo/glyphs/K_oppacyr.glif new file mode 100644 index 00000000..ca9ff8e5 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/K_oppacyr.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + C-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/K_sicyr.glif b/sources/FixelText-Light.ufo/glyphs/K_sicyr.glif new file mode 100644 index 00000000..45ea8be1 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/K_sicyr.glif @@ -0,0 +1,98 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + З-10 + com.fontlab.metricsRight + З + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/L_.glif b/sources/FixelText-Light.ufo/glyphs/L_.glif new file mode 100644 index 00000000..2957f3c4 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/L_.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + + + diff --git a/sources/FixelText-Light.ufo/glyphs/L_acute.glif b/sources/FixelText-Light.ufo/glyphs/L_acute.glif new file mode 100644 index 00000000..7aae00de --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/L_acute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + L+acute.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/L_caron.glif b/sources/FixelText-Light.ufo/glyphs/L_caron.glif new file mode 100644 index 00000000..31bd5963 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/L_caron.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + com.fontlab.recipe + L+caron.salt + + + diff --git a/sources/FixelText-Light.ufo/glyphs/L_commaaccent.glif b/sources/FixelText-Light.ufo/glyphs/L_commaaccent.glif new file mode 100644 index 00000000..d0b37ad0 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/L_commaaccent.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + L+commaaccentcomb + + + diff --git a/sources/FixelText-Light.ufo/glyphs/L_dot.glif b/sources/FixelText-Light.ufo/glyphs/L_dot.glif new file mode 100644 index 00000000..317af395 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/L_dot.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + com.fontlab.metricsRight + L + + + diff --git a/sources/FixelText-Light.ufo/glyphs/L_hacyr.glif b/sources/FixelText-Light.ufo/glyphs/L_hacyr.glif new file mode 100644 index 00000000..891d2190 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/L_hacyr.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + X + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/L_jecyr.glif b/sources/FixelText-Light.ufo/glyphs/L_jecyr.glif new file mode 100644 index 00000000..2f9bcfc8 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/L_jecyr.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Ь + + + diff --git a/sources/FixelText-Light.ufo/glyphs/L_jekomicyr.glif b/sources/FixelText-Light.ufo/glyphs/L_jekomicyr.glif new file mode 100644 index 00000000..4f3c139a --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/L_jekomicyr.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Njekomicyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/L_slash.glif b/sources/FixelText-Light.ufo/glyphs/L_slash.glif new file mode 100644 index 00000000..ae47d832 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/L_slash.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + L-80 + com.fontlab.metricsRight + L + + + diff --git a/sources/FixelText-Light.ufo/glyphs/M_.glif b/sources/FixelText-Light.ufo/glyphs/M_.glif new file mode 100644 index 00000000..51bff3ab --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/M_.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-Light.ufo/glyphs/M_.ss01.glif b/sources/FixelText-Light.ufo/glyphs/M_.ss01.glif new file mode 100644 index 00000000..6bd56aec --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/M_.ss01.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H-25 + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-Light.ufo/glyphs/N_.glif b/sources/FixelText-Light.ufo/glyphs/N_.glif new file mode 100644 index 00000000..66046e1c --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/N_.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-Light.ufo/glyphs/N_.ss01.glif b/sources/FixelText-Light.ufo/glyphs/N_.ss01.glif new file mode 100644 index 00000000..2e2aeb3f --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/N_.ss01.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H-10 + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-Light.ufo/glyphs/N_U_L_L_.glif b/sources/FixelText-Light.ufo/glyphs/N_U_L_L_.glif new file mode 100644 index 00000000..1ad177ae --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/N_U_L_L_.glif @@ -0,0 +1,4 @@ + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/N_acute.glif b/sources/FixelText-Light.ufo/glyphs/N_acute.glif new file mode 100644 index 00000000..9718eaef --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/N_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N+acute.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/N_acute.ss01.glif b/sources/FixelText-Light.ufo/glyphs/N_acute.ss01.glif new file mode 100644 index 00000000..1b9cf15b --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/N_acute.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N.ss01+acute.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/N_caron.glif b/sources/FixelText-Light.ufo/glyphs/N_caron.glif new file mode 100644 index 00000000..4dc2705d --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/N_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N+caron.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/N_caron.ss01.glif b/sources/FixelText-Light.ufo/glyphs/N_caron.ss01.glif new file mode 100644 index 00000000..68b75d9a --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/N_caron.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N.ss01+caron.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/N_commaaccent.glif b/sources/FixelText-Light.ufo/glyphs/N_commaaccent.glif new file mode 100644 index 00000000..181a69d6 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/N_commaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N+commaaccentcomb + + + diff --git a/sources/FixelText-Light.ufo/glyphs/N_commaaccent.ss01.glif b/sources/FixelText-Light.ufo/glyphs/N_commaaccent.ss01.glif new file mode 100644 index 00000000..593ef30b --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/N_commaaccent.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N.ss01+commaaccentcomb + + + diff --git a/sources/FixelText-Light.ufo/glyphs/N_jecyr.glif b/sources/FixelText-Light.ufo/glyphs/N_jecyr.glif new file mode 100644 index 00000000..a73b9ea7 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/N_jecyr.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Н + com.fontlab.metricsRight + Ь + + + diff --git a/sources/FixelText-Light.ufo/glyphs/N_jekomicyr.glif b/sources/FixelText-Light.ufo/glyphs/N_jekomicyr.glif new file mode 100644 index 00000000..48559590 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/N_jekomicyr.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + |u + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/N_tilde.glif b/sources/FixelText-Light.ufo/glyphs/N_tilde.glif new file mode 100644 index 00000000..4514d94e --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/N_tilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N+tilde.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/N_tilde.ss01.glif b/sources/FixelText-Light.ufo/glyphs/N_tilde.ss01.glif new file mode 100644 index 00000000..87f1c3ac --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/N_tilde.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N.ss01+tilde.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/O_-cy.accented.glif b/sources/FixelText-Light.ufo/glyphs/O_-cy.accented.glif new file mode 100644 index 00000000..f489c9ef --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/O_-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+acute.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/O_-cy.glif b/sources/FixelText-Light.ufo/glyphs/O_-cy.glif new file mode 100644 index 00000000..eb158036 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/O_-cy.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O + + + diff --git a/sources/FixelText-Light.ufo/glyphs/O_.glif b/sources/FixelText-Light.ufo/glyphs/O_.glif new file mode 100644 index 00000000..53a02eeb --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/O_.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/O_B_inocular-cy.glif b/sources/FixelText-Light.ufo/glyphs/O_B_inocular-cy.glif new file mode 100644 index 00000000..d6431dfe --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/O_B_inocular-cy.glif @@ -0,0 +1,81 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/O_D_oubleM_onocular-cy.glif b/sources/FixelText-Light.ufo/glyphs/O_D_oubleM_onocular-cy.glif new file mode 100644 index 00000000..a4406247 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/O_D_oubleM_onocular-cy.glif @@ -0,0 +1,119 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + com.fontlab.recipe + DoubleO-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/O_E_.glif b/sources/FixelText-Light.ufo/glyphs/O_E_.glif new file mode 100644 index 00000000..cea2e838 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/O_E_.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + E + + + diff --git a/sources/FixelText-Light.ufo/glyphs/O_M_onocular-cy.glif b/sources/FixelText-Light.ufo/glyphs/O_M_onocular-cy.glif new file mode 100644 index 00000000..d98d3b14 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/O_M_onocular-cy.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/O_acute.glif b/sources/FixelText-Light.ufo/glyphs/O_acute.glif new file mode 100644 index 00000000..244a6603 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/O_acute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+acute.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/O_barcyr.glif b/sources/FixelText-Light.ufo/glyphs/O_barcyr.glif new file mode 100644 index 00000000..d060b305 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/O_barcyr.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + r() + com.fontlab.metricsRight + O + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/O_bardieresiscyr.glif b/sources/FixelText-Light.ufo/glyphs/O_bardieresiscyr.glif new file mode 100644 index 00000000..5cba4109 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/O_bardieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Obarcyr+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/O_breve.glif b/sources/FixelText-Light.ufo/glyphs/O_breve.glif new file mode 100644 index 00000000..c0927102 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/O_breve.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+breve.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/O_circumflex.glif b/sources/FixelText-Light.ufo/glyphs/O_circumflex.glif new file mode 100644 index 00000000..877441ed --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/O_circumflex.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+circumflex.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/O_dieresis.glif b/sources/FixelText-Light.ufo/glyphs/O_dieresis.glif new file mode 100644 index 00000000..fe8bbfc0 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/O_dieresis.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+dieresis.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/O_dieresiscyr.glif b/sources/FixelText-Light.ufo/glyphs/O_dieresiscyr.glif new file mode 100644 index 00000000..8e5d1012 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/O_dieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/O_grave.glif b/sources/FixelText-Light.ufo/glyphs/O_grave.glif new file mode 100644 index 00000000..3aec094a --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/O_grave.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+grave.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/O_hungarumlaut.glif b/sources/FixelText-Light.ufo/glyphs/O_hungarumlaut.glif new file mode 100644 index 00000000..a1545790 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/O_hungarumlaut.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+hungarumlaut.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/O_macron.glif b/sources/FixelText-Light.ufo/glyphs/O_macron.glif new file mode 100644 index 00000000..1f58487f --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/O_macron.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+macron.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/O_mega.glif b/sources/FixelText-Light.ufo/glyphs/O_mega.glif new file mode 100644 index 00000000..ab0152ff --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/O_mega.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O+10 + com.fontlab.metricsRight + O+10 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/O_megaB_road-cy.glif b/sources/FixelText-Light.ufo/glyphs/O_megaB_road-cy.glif new file mode 100644 index 00000000..6e41567a --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/O_megaB_road-cy.glif @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O+10 + com.fontlab.metricsRight + O+10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/O_megacyr.glif b/sources/FixelText-Light.ufo/glyphs/O_megacyr.glif new file mode 100644 index 00000000..da3e5312 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/O_megacyr.glif @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O+10 + com.fontlab.metricsRight + O+10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/O_megaroundcyr.glif b/sources/FixelText-Light.ufo/glyphs/O_megaroundcyr.glif new file mode 100644 index 00000000..0fa95bd5 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/O_megaroundcyr.glif @@ -0,0 +1,81 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/O_megatitlocyr.glif b/sources/FixelText-Light.ufo/glyphs/O_megatitlocyr.glif new file mode 100644 index 00000000..25a9950f --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/O_megatitlocyr.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O+10 + com.fontlab.metricsRight + O+10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/O_slash.glif b/sources/FixelText-Light.ufo/glyphs/O_slash.glif new file mode 100644 index 00000000..2961084c --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/O_slash.glif @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-Light.ufo/glyphs/O_slashacute.glif b/sources/FixelText-Light.ufo/glyphs/O_slashacute.glif new file mode 100644 index 00000000..2f335697 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/O_slashacute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Oslash+acute.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/O_tcyr.glif b/sources/FixelText-Light.ufo/glyphs/O_tcyr.glif new file mode 100644 index 00000000..fc7c9701 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/O_tcyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Omegacyr+uni2DEE.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/O_tilde.glif b/sources/FixelText-Light.ufo/glyphs/O_tilde.glif new file mode 100644 index 00000000..82d472b7 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/O_tilde.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+tilde.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/P_.glif b/sources/FixelText-Light.ufo/glyphs/P_.glif new file mode 100644 index 00000000..ce8d71ae --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/P_.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + + + diff --git a/sources/FixelText-Light.ufo/glyphs/P_alochkacyr.glif b/sources/FixelText-Light.ufo/glyphs/P_alochkacyr.glif new file mode 100644 index 00000000..d2f35da4 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/P_alochkacyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/P_e-cy.glif b/sources/FixelText-Light.ufo/glyphs/P_e-cy.glif new file mode 100644 index 00000000..873329ef --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/P_e-cy.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-Light.ufo/glyphs/P_ehookcyr.glif b/sources/FixelText-Light.ufo/glyphs/P_ehookcyr.glif new file mode 100644 index 00000000..c79f155d --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/P_ehookcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + П + com.fontlab.metricsRight + Shhacyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/P_etailcyr.glif b/sources/FixelText-Light.ufo/glyphs/P_etailcyr.glif new file mode 100644 index 00000000..9a26bc3f --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/P_etailcyr.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/P_sicyr.glif b/sources/FixelText-Light.ufo/glyphs/P_sicyr.glif new file mode 100644 index 00000000..5c10f294 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/P_sicyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + U-20 + com.fontlab.metricsRight + U-20 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/Q_.glif b/sources/FixelText-Light.ufo/glyphs/Q_.glif new file mode 100644 index 00000000..d851994f --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/Q_.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-Light.ufo/glyphs/Q_.ss01.glif b/sources/FixelText-Light.ufo/glyphs/Q_.ss01.glif new file mode 100644 index 00000000..2fdc7e52 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/Q_.ss01.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-Light.ufo/glyphs/Q_acyr.glif b/sources/FixelText-Light.ufo/glyphs/Q_acyr.glif new file mode 100644 index 00000000..8c62c2aa --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/Q_acyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Q + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/R_.glif b/sources/FixelText-Light.ufo/glyphs/R_.glif new file mode 100644 index 00000000..b74def62 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/R_.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + + + diff --git a/sources/FixelText-Light.ufo/glyphs/R_acute.glif b/sources/FixelText-Light.ufo/glyphs/R_acute.glif new file mode 100644 index 00000000..4b0111da --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/R_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + R+acute.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/R_caron.glif b/sources/FixelText-Light.ufo/glyphs/R_caron.glif new file mode 100644 index 00000000..168510a5 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/R_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + R+caron.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/R_commaaccent.glif b/sources/FixelText-Light.ufo/glyphs/R_commaaccent.glif new file mode 100644 index 00000000..d6b7670c --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/R_commaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + R+commaaccentcomb + + + diff --git a/sources/FixelText-Light.ufo/glyphs/R_eversedzecyr.glif b/sources/FixelText-Light.ufo/glyphs/R_eversedzecyr.glif new file mode 100644 index 00000000..2683d15a --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/R_eversedzecyr.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + + com.fontlab.metricsRight + + com.fontlab.recipe + З + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/R_hacyr.glif b/sources/FixelText-Light.ufo/glyphs/R_hacyr.glif new file mode 100644 index 00000000..e1f30670 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/R_hacyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + P + com.fontlab.metricsRight + X + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/S_.glif b/sources/FixelText-Light.ufo/glyphs/S_.glif new file mode 100644 index 00000000..6dd9ec31 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/S_.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/S_acute.glif b/sources/FixelText-Light.ufo/glyphs/S_acute.glif new file mode 100644 index 00000000..d848e990 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/S_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + S+acute.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/S_caron.glif b/sources/FixelText-Light.ufo/glyphs/S_caron.glif new file mode 100644 index 00000000..469918c3 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/S_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + S+caron.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/S_cedilla.glif b/sources/FixelText-Light.ufo/glyphs/S_cedilla.glif new file mode 100644 index 00000000..452034ad --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/S_cedilla.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + S+cedilla + + + diff --git a/sources/FixelText-Light.ufo/glyphs/S_chwa.glif b/sources/FixelText-Light.ufo/glyphs/S_chwa.glif new file mode 100644 index 00000000..b4fab498 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/S_chwa.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Schwacyr + + + diff --git a/sources/FixelText-Light.ufo/glyphs/S_chwacyr.glif b/sources/FixelText-Light.ufo/glyphs/S_chwacyr.glif new file mode 100644 index 00000000..2bd9a01f --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/S_chwacyr.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O-10 + com.fontlab.metricsRight + O + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/S_chwadieresiscyr.glif b/sources/FixelText-Light.ufo/glyphs/S_chwadieresiscyr.glif new file mode 100644 index 00000000..106c082f --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/S_chwadieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Schwacyr+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/S_circumflex.glif b/sources/FixelText-Light.ufo/glyphs/S_circumflex.glif new file mode 100644 index 00000000..47db1db4 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/S_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + S+circumflex.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/S_commaaccent.glif b/sources/FixelText-Light.ufo/glyphs/S_commaaccent.glif new file mode 100644 index 00000000..cd189793 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/S_commaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + S+commaaccentcomb + + + diff --git a/sources/FixelText-Light.ufo/glyphs/S_emisoftcyr.glif b/sources/FixelText-Light.ufo/glyphs/S_emisoftcyr.glif new file mode 100644 index 00000000..a124f002 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/S_emisoftcyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Yat + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/S_ha-cy.glif b/sources/FixelText-Light.ufo/glyphs/S_ha-cy.glif new file mode 100644 index 00000000..bc6a9e97 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/S_ha-cy.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-Light.ufo/glyphs/S_hcha-cy.glif b/sources/FixelText-Light.ufo/glyphs/S_hcha-cy.glif new file mode 100644 index 00000000..696c16c1 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/S_hcha-cy.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Д + + + diff --git a/sources/FixelText-Light.ufo/glyphs/S_hhacyr.glif b/sources/FixelText-Light.ufo/glyphs/S_hhacyr.glif new file mode 100644 index 00000000..77b5bf69 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/S_hhacyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.metricsLeft + Н + com.fontlab.metricsRight + Tshecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/S_hhatailcyr.glif b/sources/FixelText-Light.ufo/glyphs/S_hhatailcyr.glif new file mode 100644 index 00000000..245bcfae --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/S_hhatailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/S_hwe-cy.glif b/sources/FixelText-Light.ufo/glyphs/S_hwe-cy.glif new file mode 100644 index 00000000..e9fbed7d --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/S_hwe-cy.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Щ + com.fontlab.metricsRight + Щ-20 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/S_jekomicyr.glif b/sources/FixelText-Light.ufo/glyphs/S_jekomicyr.glif new file mode 100644 index 00000000..aab9c285 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/S_jekomicyr.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + |Schwa + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/S_oftsign-cy.glif b/sources/FixelText-Light.ufo/glyphs/S_oftsign-cy.glif new file mode 100644 index 00000000..ddc1ce1b --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/S_oftsign-cy.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + P + + + diff --git a/sources/FixelText-Light.ufo/glyphs/T_.glif b/sources/FixelText-Light.ufo/glyphs/T_.glif new file mode 100644 index 00000000..6964b30b --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/T_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/T_bar.glif b/sources/FixelText-Light.ufo/glyphs/T_bar.glif new file mode 100644 index 00000000..04b42c9d --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/T_bar.glif @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/T_caron.glif b/sources/FixelText-Light.ufo/glyphs/T_caron.glif new file mode 100644 index 00000000..34b75018 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/T_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + T+caron.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/T_cedilla.glif b/sources/FixelText-Light.ufo/glyphs/T_cedilla.glif new file mode 100644 index 00000000..4d5ffe20 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/T_cedilla.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + T+cedilla + + + diff --git a/sources/FixelText-Light.ufo/glyphs/T_che-cy.glif b/sources/FixelText-Light.ufo/glyphs/T_che-cy.glif new file mode 100644 index 00000000..5d5c1cd6 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/T_che-cy.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Tetsecyr-20 + com.fontlab.metricsRight + Ч + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/T_commaaccent.glif b/sources/FixelText-Light.ufo/glyphs/T_commaaccent.glif new file mode 100644 index 00000000..b63872ab --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/T_commaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + T+commaaccentcomb + + + diff --git a/sources/FixelText-Light.ufo/glyphs/T_e-cy.glif b/sources/FixelText-Light.ufo/glyphs/T_e-cy.glif new file mode 100644 index 00000000..110f47c1 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/T_e-cy.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + com.fontlab.recipe + T + + + diff --git a/sources/FixelText-Light.ufo/glyphs/T_eW_ithM_iddleH_ook-cy.glif b/sources/FixelText-Light.ufo/glyphs/T_eW_ithM_iddleH_ook-cy.glif new file mode 100644 index 00000000..9e87dfc1 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/T_eW_ithM_iddleH_ook-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Djecyr + com.fontlab.metricsRight + Gehookcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/T_etailcyr.glif b/sources/FixelText-Light.ufo/glyphs/T_etailcyr.glif new file mode 100644 index 00000000..7ae2b437 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/T_etailcyr.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/T_etsecyr.glif b/sources/FixelText-Light.ufo/glyphs/T_etsecyr.glif new file mode 100644 index 00000000..bce5c169 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/T_etsecyr.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Tshecyr + com.fontlab.metricsRight + Ц + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/T_horn.glif b/sources/FixelText-Light.ufo/glyphs/T_horn.glif new file mode 100644 index 00000000..9957bea7 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/T_horn.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + P + + + diff --git a/sources/FixelText-Light.ufo/glyphs/T_jekomicyr.glif b/sources/FixelText-Light.ufo/glyphs/T_jekomicyr.glif new file mode 100644 index 00000000..20979a77 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/T_jekomicyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + Njekomicyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/T_se-cy.glif b/sources/FixelText-Light.ufo/glyphs/T_se-cy.glif new file mode 100644 index 00000000..04810f61 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/T_se-cy.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Д + + + diff --git a/sources/FixelText-Light.ufo/glyphs/T_seR_eversed-cy.glif b/sources/FixelText-Light.ufo/glyphs/T_seR_eversed-cy.glif new file mode 100644 index 00000000..9dd3eb2d --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/T_seR_eversed-cy.glif @@ -0,0 +1,20 @@ + + + + + + + + + + com.fontlab.metricsLeft + + com.fontlab.metricsRight + H + com.fontlab.recipe + Ц + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/T_shecyr.glif b/sources/FixelText-Light.ufo/glyphs/T_shecyr.glif new file mode 100644 index 00000000..87f6274e --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/T_shecyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + n + + + diff --git a/sources/FixelText-Light.ufo/glyphs/T_sse-cy.glif b/sources/FixelText-Light.ufo/glyphs/T_sse-cy.glif new file mode 100644 index 00000000..9039cc4b --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/T_sse-cy.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + T + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/T_swe-cy.glif b/sources/FixelText-Light.ufo/glyphs/T_swe-cy.glif new file mode 100644 index 00000000..3fdc2fd4 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/T_swe-cy.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Shwe-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/T_we-cy.glif b/sources/FixelText-Light.ufo/glyphs/T_we-cy.glif new file mode 100644 index 00000000..493f2b38 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/T_we-cy.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + T + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/U_-cy.accented.glif b/sources/FixelText-Light.ufo/glyphs/U_-cy.accented.glif new file mode 100644 index 00000000..68f4f7be --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/U_-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + У+acute.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/U_-cy.glif b/sources/FixelText-Light.ufo/glyphs/U_-cy.glif new file mode 100644 index 00000000..b90f4907 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/U_-cy.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Y+10 + com.fontlab.metricsRight + Y+5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/U_-cy.ss01.glif b/sources/FixelText-Light.ufo/glyphs/U_-cy.ss01.glif new file mode 100644 index 00000000..9f88627d --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/U_-cy.ss01.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/U_.glif b/sources/FixelText-Light.ufo/glyphs/U_.glif new file mode 100644 index 00000000..603ada02 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/U_.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H-10 + com.fontlab.metricsRight + H-10 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/U_acute.glif b/sources/FixelText-Light.ufo/glyphs/U_acute.glif new file mode 100644 index 00000000..b5ca0fe3 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/U_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+acute.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/U_acutedblcyr.glif b/sources/FixelText-Light.ufo/glyphs/U_acutedblcyr.glif new file mode 100644 index 00000000..f3254176 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/U_acutedblcyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U-cy+hungarumlaut.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/U_breve.glif b/sources/FixelText-Light.ufo/glyphs/U_breve.glif new file mode 100644 index 00000000..21bde13d --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/U_breve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+breve.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/U_circumflex.glif b/sources/FixelText-Light.ufo/glyphs/U_circumflex.glif new file mode 100644 index 00000000..9a0f4b02 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/U_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+circumflex.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/U_dieresis.glif b/sources/FixelText-Light.ufo/glyphs/U_dieresis.glif new file mode 100644 index 00000000..4d38c17c --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/U_dieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+dieresis.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/U_dieresiscyr.glif b/sources/FixelText-Light.ufo/glyphs/U_dieresiscyr.glif new file mode 100644 index 00000000..b42401ce --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/U_dieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/U_grave.glif b/sources/FixelText-Light.ufo/glyphs/U_grave.glif new file mode 100644 index 00000000..e966a6a4 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/U_grave.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+grave.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/U_hungarumlaut.glif b/sources/FixelText-Light.ufo/glyphs/U_hungarumlaut.glif new file mode 100644 index 00000000..a32c81ff --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/U_hungarumlaut.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+hungarumlaut.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/U_kM_onograph-cy.glif b/sources/FixelText-Light.ufo/glyphs/U_kM_onograph-cy.glif new file mode 100644 index 00000000..83a190ef --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/U_kM_onograph-cy.glif @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/U_kcyr.glif b/sources/FixelText-Light.ufo/glyphs/U_kcyr.glif new file mode 100644 index 00000000..fc95f8a1 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/U_kcyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + y + com.fontlab.recipe + О_у + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/U_macron.glif b/sources/FixelText-Light.ufo/glyphs/U_macron.glif new file mode 100644 index 00000000..799deb4f --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/U_macron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+macron.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/U_macroncyr.glif b/sources/FixelText-Light.ufo/glyphs/U_macroncyr.glif new file mode 100644 index 00000000..363d4952 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/U_macroncyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U-cy+macron.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/U_ogonek.glif b/sources/FixelText-Light.ufo/glyphs/U_ogonek.glif new file mode 100644 index 00000000..e6035bf2 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/U_ogonek.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + U+ogonek + + + diff --git a/sources/FixelText-Light.ufo/glyphs/U_ring.glif b/sources/FixelText-Light.ufo/glyphs/U_ring.glif new file mode 100644 index 00000000..e6a11962 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/U_ring.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+ring.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/U_short-cy.glif b/sources/FixelText-Light.ufo/glyphs/U_short-cy.glif new file mode 100644 index 00000000..715928c0 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/U_short-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ucyr+breve.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/U_short-cy.ss01.glif b/sources/FixelText-Light.ufo/glyphs/U_short-cy.ss01.glif new file mode 100644 index 00000000..5568dfda --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/U_short-cy.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ucyr.ss01+breve.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/U_straightcyr.glif b/sources/FixelText-Light.ufo/glyphs/U_straightcyr.glif new file mode 100644 index 00000000..7b778edc --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/U_straightcyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsRight + Y + com.fontlab.recipe + Y + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/U_straightstrokecyr.glif b/sources/FixelText-Light.ufo/glyphs/U_straightstrokecyr.glif new file mode 100644 index 00000000..54e7937d --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/U_straightstrokecyr.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/U_tilde.glif b/sources/FixelText-Light.ufo/glyphs/U_tilde.glif new file mode 100644 index 00000000..948949ec --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/U_tilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+tilde.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/V_.glif b/sources/FixelText-Light.ufo/glyphs/V_.glif new file mode 100644 index 00000000..b0a72422 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/V_.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/V_.ss01.glif b/sources/FixelText-Light.ufo/glyphs/V_.ss01.glif new file mode 100644 index 00000000..a9a5cc22 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/V_.ss01.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/V_e-cy.glif b/sources/FixelText-Light.ufo/glyphs/V_e-cy.glif new file mode 100644 index 00000000..52ea9fba --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/V_e-cy.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + B + + + diff --git a/sources/FixelText-Light.ufo/glyphs/W_.glif b/sources/FixelText-Light.ufo/glyphs/W_.glif new file mode 100644 index 00000000..692753fc --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/W_.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/W_.ss01.glif b/sources/FixelText-Light.ufo/glyphs/W_.ss01.glif new file mode 100644 index 00000000..0bfdb057 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/W_.ss01.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |A + com.fontlab.metricsRight + |A + + + diff --git a/sources/FixelText-Light.ufo/glyphs/W_acute.glif b/sources/FixelText-Light.ufo/glyphs/W_acute.glif new file mode 100644 index 00000000..2df3a307 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/W_acute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W+acute.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/W_acute.ss01.glif b/sources/FixelText-Light.ufo/glyphs/W_acute.ss01.glif new file mode 100644 index 00000000..e91aaecd --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/W_acute.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W.ss01+acute.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/W_circumflex.glif b/sources/FixelText-Light.ufo/glyphs/W_circumflex.glif new file mode 100644 index 00000000..5bf4e7c4 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/W_circumflex.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W+circumflex.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/W_circumflex.ss01.glif b/sources/FixelText-Light.ufo/glyphs/W_circumflex.ss01.glif new file mode 100644 index 00000000..f07ea67b --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/W_circumflex.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W.ss01+circumflex.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/W_dieresis.glif b/sources/FixelText-Light.ufo/glyphs/W_dieresis.glif new file mode 100644 index 00000000..1e930c20 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/W_dieresis.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + W+dieresis.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/W_dieresis.ss01.glif b/sources/FixelText-Light.ufo/glyphs/W_dieresis.ss01.glif new file mode 100644 index 00000000..99dc88f3 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/W_dieresis.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W.ss01+dieresis.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/W_ecyr.glif b/sources/FixelText-Light.ufo/glyphs/W_ecyr.glif new file mode 100644 index 00000000..22ad14fb --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/W_ecyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/W_grave.glif b/sources/FixelText-Light.ufo/glyphs/W_grave.glif new file mode 100644 index 00000000..cd2cecf6 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/W_grave.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W+grave.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/W_grave.ss01.glif b/sources/FixelText-Light.ufo/glyphs/W_grave.ss01.glif new file mode 100644 index 00000000..3d0133d0 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/W_grave.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W.ss01+grave.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/X_.glif b/sources/FixelText-Light.ufo/glyphs/X_.glif new file mode 100644 index 00000000..9068de90 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/X_.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/X_.ss01.glif b/sources/FixelText-Light.ufo/glyphs/X_.ss01.glif new file mode 100644 index 00000000..ab4b10c0 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/X_.ss01.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/X_atailcyr.glif b/sources/FixelText-Light.ufo/glyphs/X_atailcyr.glif new file mode 100644 index 00000000..c370e952 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/X_atailcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + X + com.fontlab.metricsRight + Katailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/Y_.glif b/sources/FixelText-Light.ufo/glyphs/Y_.glif new file mode 100644 index 00000000..211f1b0e --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/Y_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/Y_.ss01.glif b/sources/FixelText-Light.ufo/glyphs/Y_.ss01.glif new file mode 100644 index 00000000..293ba671 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/Y_.ss01.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/Y_acute.glif b/sources/FixelText-Light.ufo/glyphs/Y_acute.glif new file mode 100644 index 00000000..8adcd274 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/Y_acute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y+acute.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/Y_acute.ss01.glif b/sources/FixelText-Light.ufo/glyphs/Y_acute.ss01.glif new file mode 100644 index 00000000..b5326468 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/Y_acute.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y.ss01+acute.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/Y_aecyr.glif b/sources/FixelText-Light.ufo/glyphs/Y_aecyr.glif new file mode 100644 index 00000000..f87ce4dd --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/Y_aecyr.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Я + com.fontlab.metricsRight + E + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/Y_atI_otified-cy.glif b/sources/FixelText-Light.ufo/glyphs/Y_atI_otified-cy.glif new file mode 100644 index 00000000..28da2ae0 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/Y_atI_otified-cy.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + com.fontlab.metricsRight + Yatcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/Y_atcyr.glif b/sources/FixelText-Light.ufo/glyphs/Y_atcyr.glif new file mode 100644 index 00000000..0c8f07a3 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/Y_atcyr.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Т + com.fontlab.metricsRight + Ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/Y_circumflex.glif b/sources/FixelText-Light.ufo/glyphs/Y_circumflex.glif new file mode 100644 index 00000000..849059e2 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/Y_circumflex.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y+circumflex.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/Y_circumflex.ss01.glif b/sources/FixelText-Light.ufo/glyphs/Y_circumflex.ss01.glif new file mode 100644 index 00000000..410f937b --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/Y_circumflex.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y.ss01+circumflex.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/Y_dieresis.glif b/sources/FixelText-Light.ufo/glyphs/Y_dieresis.glif new file mode 100644 index 00000000..ef4f7a95 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/Y_dieresis.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y+dieresis.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/Y_dieresis.ss01.glif b/sources/FixelText-Light.ufo/glyphs/Y_dieresis.ss01.glif new file mode 100644 index 00000000..43245163 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/Y_dieresis.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y.ss01+dieresis.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/Y_erN_eutral-cy.glif b/sources/FixelText-Light.ufo/glyphs/Y_erN_eutral-cy.glif new file mode 100644 index 00000000..7787da77 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/Y_erN_eutral-cy.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Hardsign-cy + com.fontlab.metricsRight + Ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/Y_eru-cy.accented.glif b/sources/FixelText-Light.ufo/glyphs/Y_eru-cy.accented.glif new file mode 100644 index 00000000..399a3c36 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/Y_eru-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ы+acute.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/Y_eru-cy.glif b/sources/FixelText-Light.ufo/glyphs/Y_eru-cy.glif new file mode 100644 index 00000000..a13d8270 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/Y_eru-cy.glif @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-Light.ufo/glyphs/Y_eru-cymacron.glif b/sources/FixelText-Light.ufo/glyphs/Y_eru-cymacron.glif new file mode 100644 index 00000000..d4169f8f --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/Y_eru-cymacron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ы+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/Y_eruB_ackY_er-cy.glif b/sources/FixelText-Light.ufo/glyphs/Y_eruB_ackY_er-cy.glif new file mode 100644 index 00000000..9c853162 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/Y_eruB_ackY_er-cy.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Hardsign + com.fontlab.metricsRight + I + com.fontlab.recipe + Hardsign-cy_I + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/Y_i-cy.glif b/sources/FixelText-Light.ufo/glyphs/Y_i-cy.glif new file mode 100644 index 00000000..04a9b4db --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/Y_i-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Idieresis + + + diff --git a/sources/FixelText-Light.ufo/glyphs/Y_longdieresiscyr.glif b/sources/FixelText-Light.ufo/glyphs/Y_longdieresiscyr.glif new file mode 100644 index 00000000..b8ec3d3c --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/Y_longdieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Yeru-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/Y_n-cy.glif b/sources/FixelText-Light.ufo/glyphs/Y_n-cy.glif new file mode 100644 index 00000000..d529bcff --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/Y_n-cy.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |Izhitsa + com.fontlab.metricsRight + |Izhitsa + com.fontlab.recipe + Izhitsa + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/Y_uR_eversed-cy.glif b/sources/FixelText-Light.ufo/glyphs/Y_uR_eversed-cy.glif new file mode 100644 index 00000000..746b4b5d --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/Y_uR_eversed-cy.glif @@ -0,0 +1,20 @@ + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + H + com.fontlab.recipe + Ю + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/Y_usB_lended-cy.glif b/sources/FixelText-Light.ufo/glyphs/Y_usB_lended-cy.glif new file mode 100644 index 00000000..63a1b846 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/Y_usB_lended-cy.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Yusbigcyr + com.fontlab.metricsRight + Yusbigcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/Y_usC_losedlittle-cy.glif b/sources/FixelText-Light.ufo/glyphs/Y_usC_losedlittle-cy.glif new file mode 100644 index 00000000..1bf1a3b4 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/Y_usC_losedlittle-cy.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + A + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/Y_usbigcyr.glif b/sources/FixelText-Light.ufo/glyphs/Y_usbigcyr.glif new file mode 100644 index 00000000..6f6a0b85 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/Y_usbigcyr.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ж + com.fontlab.metricsRight + Ж + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/Y_usbigiotifiedcyr.glif b/sources/FixelText-Light.ufo/glyphs/Y_usbigiotifiedcyr.glif new file mode 100644 index 00000000..248634c1 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/Y_usbigiotifiedcyr.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + Ж + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/Y_usiotifiedC_losedL_ittle-cy.glif b/sources/FixelText-Light.ufo/glyphs/Y_usiotifiedC_losedL_ittle-cy.glif new file mode 100644 index 00000000..ba904b01 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/Y_usiotifiedC_losedL_ittle-cy.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + A + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/Y_uslittlecyr.glif b/sources/FixelText-Light.ufo/glyphs/Y_uslittlecyr.glif new file mode 100644 index 00000000..ea2ae069 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/Y_uslittlecyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + А-5 + com.fontlab.metricsRight + А-5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/Y_uslittleiotifiedcyr.glif b/sources/FixelText-Light.ufo/glyphs/Y_uslittleiotifiedcyr.glif new file mode 100644 index 00000000..7a277e00 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/Y_uslittleiotifiedcyr.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + А-5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/Z_.glif b/sources/FixelText-Light.ufo/glyphs/Z_.glif new file mode 100644 index 00000000..e605f091 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/Z_.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/Z_.ss01.glif b/sources/FixelText-Light.ufo/glyphs/Z_.ss01.glif new file mode 100644 index 00000000..4d6d55d4 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/Z_.ss01.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/Z_acute.glif b/sources/FixelText-Light.ufo/glyphs/Z_acute.glif new file mode 100644 index 00000000..e07f4b71 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/Z_acute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Z+acute.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/Z_acute.ss01.glif b/sources/FixelText-Light.ufo/glyphs/Z_acute.ss01.glif new file mode 100644 index 00000000..5fb49d5d --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/Z_acute.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Z.ss01+acute.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/Z_caron.glif b/sources/FixelText-Light.ufo/glyphs/Z_caron.glif new file mode 100644 index 00000000..a20a9587 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/Z_caron.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Z+caron.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/Z_caron.ss01.glif b/sources/FixelText-Light.ufo/glyphs/Z_caron.ss01.glif new file mode 100644 index 00000000..bec6c97b --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/Z_caron.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Z.ss01+caron.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/Z_dotaccent.glif b/sources/FixelText-Light.ufo/glyphs/Z_dotaccent.glif new file mode 100644 index 00000000..f78aef52 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/Z_dotaccent.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Z+dotaccent.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/Z_dotaccent.ss01.glif b/sources/FixelText-Light.ufo/glyphs/Z_dotaccent.ss01.glif new file mode 100644 index 00000000..ab16ed1c --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/Z_dotaccent.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Z.ss01+dotaccent.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/Z_e-cy.glif b/sources/FixelText-Light.ufo/glyphs/Z_e-cy.glif new file mode 100644 index 00000000..404bdd08 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/Z_e-cy.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |C + com.fontlab.metricsRight + B + + + diff --git a/sources/FixelText-Light.ufo/glyphs/Z_edieresiscyr.glif b/sources/FixelText-Light.ufo/glyphs/Z_edieresiscyr.glif new file mode 100644 index 00000000..5be370dc --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/Z_edieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ze-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/Z_emlya-cy.glif b/sources/FixelText-Light.ufo/glyphs/Z_emlya-cy.glif new file mode 100644 index 00000000..246d1c09 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/Z_emlya-cy.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Z-10 + com.fontlab.metricsRight + Z + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/Z_etailcyr.B_S_H_.glif b/sources/FixelText-Light.ufo/glyphs/Z_etailcyr.B_S_H_.glif new file mode 100644 index 00000000..2976e36f --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/Z_etailcyr.B_S_H_.glif @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + З + com.fontlab.metricsRight + З + com.fontlab.recipe + Zetailcyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/Z_etailcyr.glif b/sources/FixelText-Light.ufo/glyphs/Z_etailcyr.glif new file mode 100644 index 00000000..cbeaeb63 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/Z_etailcyr.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + З + com.fontlab.metricsRight + З + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/Z_he-cy.glif b/sources/FixelText-Light.ufo/glyphs/Z_he-cy.glif new file mode 100644 index 00000000..f1732962 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/Z_he-cy.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |K + com.fontlab.metricsRight + K + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/Z_he-cy.ss01.glif b/sources/FixelText-Light.ufo/glyphs/Z_he-cy.ss01.glif new file mode 100644 index 00000000..708c73bf --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/Z_he-cy.ss01.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |K + com.fontlab.metricsRight + K + + + diff --git a/sources/FixelText-Light.ufo/glyphs/Z_hebrevecyr.glif b/sources/FixelText-Light.ufo/glyphs/Z_hebrevecyr.glif new file mode 100644 index 00000000..505a1f54 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/Z_hebrevecyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Zhe-cy+breve.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/Z_hedieresiscyr.glif b/sources/FixelText-Light.ufo/glyphs/Z_hedieresiscyr.glif new file mode 100644 index 00000000..b12ca5c1 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/Z_hedieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Zhe-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/Z_hetailcyr.glif b/sources/FixelText-Light.ufo/glyphs/Z_hetailcyr.glif new file mode 100644 index 00000000..8752ec50 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/Z_hetailcyr.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ж + com.fontlab.metricsRight + Katailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/Z_hwe-cy.glif b/sources/FixelText-Light.ufo/glyphs/Z_hwe-cy.glif new file mode 100644 index 00000000..2fc7f368 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/Z_hwe-cy.glif @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + З + com.fontlab.metricsRight + Ж + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/Z_jekomicyr.glif b/sources/FixelText-Light.ufo/glyphs/Z_jekomicyr.glif new file mode 100644 index 00000000..654741cb --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/Z_jekomicyr.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Dzjekomicyr + com.fontlab.metricsRight + Njekomicyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/_notdef.glif b/sources/FixelText-Light.ufo/glyphs/_notdef.glif new file mode 100644 index 00000000..7261060b --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/_notdef.glif @@ -0,0 +1,178 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + =55 + com.schriftgestaltung.Glyphs.rightMetricsKey + =55 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/_perc-circule.glif b/sources/FixelText-Light.ufo/glyphs/_perc-circule.glif new file mode 100644 index 00000000..db64b873 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/_perc-circule.glif @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.schriftgestaltung.Glyphs.Export + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/a-cy.accented.glif b/sources/FixelText-Light.ufo/glyphs/a-cy.accented.glif new file mode 100644 index 00000000..37ff1adb --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/a-cy.accented.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+acute + + + diff --git a/sources/FixelText-Light.ufo/glyphs/a-cy.glif b/sources/FixelText-Light.ufo/glyphs/a-cy.glif new file mode 100644 index 00000000..19471bc8 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/a-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a + + + diff --git a/sources/FixelText-Light.ufo/glyphs/a-cy.ss01.glif b/sources/FixelText-Light.ufo/glyphs/a-cy.ss01.glif new file mode 100644 index 00000000..60eb6310 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/a-cy.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/a.glif b/sources/FixelText-Light.ufo/glyphs/a.glif new file mode 100644 index 00000000..925f46bd --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/a.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + n-10 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/a.ss01.glif b/sources/FixelText-Light.ufo/glyphs/a.ss01.glif new file mode 100644 index 00000000..aaeedbf0 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/a.ss01.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/aacute.glif b/sources/FixelText-Light.ufo/glyphs/aacute.glif new file mode 100644 index 00000000..df154f62 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/aacute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+acute + + + diff --git a/sources/FixelText-Light.ufo/glyphs/aacute.ss01.glif b/sources/FixelText-Light.ufo/glyphs/aacute.ss01.glif new file mode 100644 index 00000000..a72fdcb0 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/aacute.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+acute + + + diff --git a/sources/FixelText-Light.ufo/glyphs/abreve.glif b/sources/FixelText-Light.ufo/glyphs/abreve.glif new file mode 100644 index 00000000..969c815f --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/abreve.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+breve + + + diff --git a/sources/FixelText-Light.ufo/glyphs/abreve.ss01.glif b/sources/FixelText-Light.ufo/glyphs/abreve.ss01.glif new file mode 100644 index 00000000..255edd5b --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/abreve.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+breve + + + diff --git a/sources/FixelText-Light.ufo/glyphs/abrevecyr.glif b/sources/FixelText-Light.ufo/glyphs/abrevecyr.glif new file mode 100644 index 00000000..fa9cbcfc --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/abrevecyr.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+breve + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/acaron.glif b/sources/FixelText-Light.ufo/glyphs/acaron.glif new file mode 100644 index 00000000..dc3182f6 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/acaron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+caron + + + diff --git a/sources/FixelText-Light.ufo/glyphs/acircumflex.glif b/sources/FixelText-Light.ufo/glyphs/acircumflex.glif new file mode 100644 index 00000000..825dae98 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/acircumflex.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+circumflex + + + diff --git a/sources/FixelText-Light.ufo/glyphs/acircumflex.ss01.glif b/sources/FixelText-Light.ufo/glyphs/acircumflex.ss01.glif new file mode 100644 index 00000000..a05f5041 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/acircumflex.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+circumflex + + + diff --git a/sources/FixelText-Light.ufo/glyphs/acute.case.glif b/sources/FixelText-Light.ufo/glyphs/acute.case.glif new file mode 100644 index 00000000..e5aebda0 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/acute.case.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/acute.glif b/sources/FixelText-Light.ufo/glyphs/acute.glif new file mode 100644 index 00000000..c0f75831 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/acute.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/adieresis.glif b/sources/FixelText-Light.ufo/glyphs/adieresis.glif new file mode 100644 index 00000000..802fe2c4 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/adieresis.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+dieresis + + + diff --git a/sources/FixelText-Light.ufo/glyphs/adieresis.ss01.glif b/sources/FixelText-Light.ufo/glyphs/adieresis.ss01.glif new file mode 100644 index 00000000..576e1613 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/adieresis.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+dieresis + + + diff --git a/sources/FixelText-Light.ufo/glyphs/adieresiscyr.glif b/sources/FixelText-Light.ufo/glyphs/adieresiscyr.glif new file mode 100644 index 00000000..ff11634c --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/adieresiscyr.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/ae.glif b/sources/FixelText-Light.ufo/glyphs/ae.glif new file mode 100644 index 00000000..632d6d40 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/ae.glif @@ -0,0 +1,101 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + a + com.fontlab.metricsRight + e + + + diff --git a/sources/FixelText-Light.ufo/glyphs/ae.ss01.glif b/sources/FixelText-Light.ufo/glyphs/ae.ss01.glif new file mode 100644 index 00000000..71dfcd5f --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/ae.ss01.glif @@ -0,0 +1,96 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + a + com.fontlab.metricsRight + e.ss01 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/aeacute.glif b/sources/FixelText-Light.ufo/glyphs/aeacute.glif new file mode 100644 index 00000000..8e67d02e --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/aeacute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ae+acute + + + diff --git a/sources/FixelText-Light.ufo/glyphs/agrave.glif b/sources/FixelText-Light.ufo/glyphs/agrave.glif new file mode 100644 index 00000000..bc3a3e38 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/agrave.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+grave + + + diff --git a/sources/FixelText-Light.ufo/glyphs/agrave.ss01.glif b/sources/FixelText-Light.ufo/glyphs/agrave.ss01.glif new file mode 100644 index 00000000..bd2e6035 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/agrave.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+grave + + + diff --git a/sources/FixelText-Light.ufo/glyphs/aiecyr.glif b/sources/FixelText-Light.ufo/glyphs/aiecyr.glif new file mode 100644 index 00000000..e8ccb781 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/aiecyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ae + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/amacron.glif b/sources/FixelText-Light.ufo/glyphs/amacron.glif new file mode 100644 index 00000000..d3995f1e --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/amacron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+macron + + + diff --git a/sources/FixelText-Light.ufo/glyphs/amacron.ss01.glif b/sources/FixelText-Light.ufo/glyphs/amacron.ss01.glif new file mode 100644 index 00000000..c44eb42a --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/amacron.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+macron + + + diff --git a/sources/FixelText-Light.ufo/glyphs/ampersand.glif b/sources/FixelText-Light.ufo/glyphs/ampersand.glif new file mode 100644 index 00000000..9884f945 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/ampersand.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/aogonek.glif b/sources/FixelText-Light.ufo/glyphs/aogonek.glif new file mode 100644 index 00000000..e98a1c28 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/aogonek.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+ogonek + + + diff --git a/sources/FixelText-Light.ufo/glyphs/aogonek.ss01.glif b/sources/FixelText-Light.ufo/glyphs/aogonek.ss01.glif new file mode 100644 index 00000000..4ee05b03 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/aogonek.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+ogonek + + + diff --git a/sources/FixelText-Light.ufo/glyphs/apostrophemod.glif b/sources/FixelText-Light.ufo/glyphs/apostrophemod.glif new file mode 100644 index 00000000..49603ef3 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/apostrophemod.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + apostrophe + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/approxequal.glif b/sources/FixelText-Light.ufo/glyphs/approxequal.glif new file mode 100644 index 00000000..d35497a1 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/approxequal.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/aring.glif b/sources/FixelText-Light.ufo/glyphs/aring.glif new file mode 100644 index 00000000..d286eb58 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/aring.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+ring + + + diff --git a/sources/FixelText-Light.ufo/glyphs/aring.ss01.glif b/sources/FixelText-Light.ufo/glyphs/aring.ss01.glif new file mode 100644 index 00000000..f7f73f24 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/aring.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+ring + + + diff --git a/sources/FixelText-Light.ufo/glyphs/arrowdown.case.glif b/sources/FixelText-Light.ufo/glyphs/arrowdown.case.glif new file mode 100644 index 00000000..27720a4c --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/arrowdown.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + arrowup + com.fontlab.metricsRight + arrowup + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/arrowdown.glif b/sources/FixelText-Light.ufo/glyphs/arrowdown.glif new file mode 100644 index 00000000..d0f979c7 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/arrowdown.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + arrowup + com.fontlab.metricsRight + arrowup + + + diff --git a/sources/FixelText-Light.ufo/glyphs/arrowdown.ss01.case.glif b/sources/FixelText-Light.ufo/glyphs/arrowdown.ss01.case.glif new file mode 100644 index 00000000..33f73638 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/arrowdown.ss01.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + arrowup + com.fontlab.metricsRight + arrowup + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/arrowdown.ss01.glif b/sources/FixelText-Light.ufo/glyphs/arrowdown.ss01.glif new file mode 100644 index 00000000..e89094a0 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/arrowdown.ss01.glif @@ -0,0 +1,15 @@ + + + + + + + + + com.fontlab.metricsLeft + arrowup + com.fontlab.metricsRight + arrowup + + + diff --git a/sources/FixelText-Light.ufo/glyphs/arrowleft.case.glif b/sources/FixelText-Light.ufo/glyphs/arrowleft.case.glif new file mode 100644 index 00000000..b53e38a4 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/arrowleft.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + arrowleft + com.fontlab.metricsRight + arrowleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/arrowleft.glif b/sources/FixelText-Light.ufo/glyphs/arrowleft.glif new file mode 100644 index 00000000..dbfe36df --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/arrowleft.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/arrowleft.ss01.case.glif b/sources/FixelText-Light.ufo/glyphs/arrowleft.ss01.case.glif new file mode 100644 index 00000000..cd43db2a --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/arrowleft.ss01.case.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + arrowleft + com.fontlab.metricsRight + arrowleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/arrowleft.ss01.glif b/sources/FixelText-Light.ufo/glyphs/arrowleft.ss01.glif new file mode 100644 index 00000000..ced0ad39 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/arrowleft.ss01.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + arrowleft + com.fontlab.metricsRight + arrowleft + + + diff --git a/sources/FixelText-Light.ufo/glyphs/arrowright.case.glif b/sources/FixelText-Light.ufo/glyphs/arrowright.case.glif new file mode 100644 index 00000000..e2044b56 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/arrowright.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |arrowleft + com.fontlab.metricsRight + |arrowleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/arrowright.glif b/sources/FixelText-Light.ufo/glyphs/arrowright.glif new file mode 100644 index 00000000..68abfb04 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/arrowright.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + |arrowleft + com.fontlab.metricsRight + |arrowleft + + + diff --git a/sources/FixelText-Light.ufo/glyphs/arrowright.ss01.case.glif b/sources/FixelText-Light.ufo/glyphs/arrowright.ss01.case.glif new file mode 100644 index 00000000..663c65fe --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/arrowright.ss01.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |arrowleft + com.fontlab.metricsRight + |arrowleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/arrowright.ss01.glif b/sources/FixelText-Light.ufo/glyphs/arrowright.ss01.glif new file mode 100644 index 00000000..3687dcc2 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/arrowright.ss01.glif @@ -0,0 +1,15 @@ + + + + + + + + + com.fontlab.metricsLeft + |arrowleft + com.fontlab.metricsRight + |arrowleft + + + diff --git a/sources/FixelText-Light.ufo/glyphs/arrowup.case.glif b/sources/FixelText-Light.ufo/glyphs/arrowup.case.glif new file mode 100644 index 00000000..81b22d37 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/arrowup.case.glif @@ -0,0 +1,15 @@ + + + + + + + + + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/arrowup.glif b/sources/FixelText-Light.ufo/glyphs/arrowup.glif new file mode 100644 index 00000000..45d96a12 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/arrowup.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + l() + + + diff --git a/sources/FixelText-Light.ufo/glyphs/arrowup.ss01.case.glif b/sources/FixelText-Light.ufo/glyphs/arrowup.ss01.case.glif new file mode 100644 index 00000000..4cb94be2 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/arrowup.ss01.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + arrowup + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/arrowup.ss01.glif b/sources/FixelText-Light.ufo/glyphs/arrowup.ss01.glif new file mode 100644 index 00000000..b15e23cc --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/arrowup.ss01.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + arrowup + com.fontlab.metricsRight + l() + + + diff --git a/sources/FixelText-Light.ufo/glyphs/asciicircum.glif b/sources/FixelText-Light.ufo/glyphs/asciicircum.glif new file mode 100644 index 00000000..0bd9fc04 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/asciicircum.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/asciitilde.glif b/sources/FixelText-Light.ufo/glyphs/asciitilde.glif new file mode 100644 index 00000000..528fa61c --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/asciitilde.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/asterisk.glif b/sources/FixelText-Light.ufo/glyphs/asterisk.glif new file mode 100644 index 00000000..528a9258 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/asterisk.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/at.case.glif b/sources/FixelText-Light.ufo/glyphs/at.case.glif new file mode 100644 index 00000000..3a07cd2d --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/at.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/at.glif b/sources/FixelText-Light.ufo/glyphs/at.glif new file mode 100644 index 00000000..80dc799f --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/at.glif @@ -0,0 +1,92 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-Light.ufo/glyphs/atilde.glif b/sources/FixelText-Light.ufo/glyphs/atilde.glif new file mode 100644 index 00000000..2d8a5d32 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/atilde.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+tilde + + + diff --git a/sources/FixelText-Light.ufo/glyphs/atilde.ss01.glif b/sources/FixelText-Light.ufo/glyphs/atilde.ss01.glif new file mode 100644 index 00000000..48393ea1 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/atilde.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+tilde + + + diff --git a/sources/FixelText-Light.ufo/glyphs/b.glif b/sources/FixelText-Light.ufo/glyphs/b.glif new file mode 100644 index 00000000..97b0a963 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/b.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelText-Light.ufo/glyphs/b.ss01.glif b/sources/FixelText-Light.ufo/glyphs/b.ss01.glif new file mode 100644 index 00000000..86477db6 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/b.ss01.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/backslash.case.glif b/sources/FixelText-Light.ufo/glyphs/backslash.case.glif new file mode 100644 index 00000000..5f808211 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/backslash.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + backslash + com.fontlab.metricsRight + backslash + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/backslash.glif b/sources/FixelText-Light.ufo/glyphs/backslash.glif new file mode 100644 index 00000000..6b5828e9 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/backslash.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/bar.case.glif b/sources/FixelText-Light.ufo/glyphs/bar.case.glif new file mode 100644 index 00000000..d650ebcb --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/bar.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + H-10 + com.fontlab.metricsRight + H-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/bar.glif b/sources/FixelText-Light.ufo/glyphs/bar.glif new file mode 100644 index 00000000..ba506c2f --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/bar.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H-10 + com.fontlab.metricsRight + H-10 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/be-cy.S_R_B_.glif b/sources/FixelText-Light.ufo/glyphs/be-cy.S_R_B_.glif new file mode 100644 index 00000000..30194a0d --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/be-cy.S_R_B_.glif @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/be-cy.glif b/sources/FixelText-Light.ufo/glyphs/be-cy.glif new file mode 100644 index 00000000..e825e822 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/be-cy.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelText-Light.ufo/glyphs/bishopblack.glif b/sources/FixelText-Light.ufo/glyphs/bishopblack.glif new file mode 100644 index 00000000..6ab1fb4c --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/bishopblack.glif @@ -0,0 +1,241 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =10 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/bishopwhite.glif b/sources/FixelText-Light.ufo/glyphs/bishopwhite.glif new file mode 100644 index 00000000..5a3e2ad4 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/bishopwhite.glif @@ -0,0 +1,331 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/braceleft.case.glif b/sources/FixelText-Light.ufo/glyphs/braceleft.case.glif new file mode 100644 index 00000000..0baf6ae5 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/braceleft.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |braceright.case + com.fontlab.metricsRight + |braceright.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/braceleft.glif b/sources/FixelText-Light.ufo/glyphs/braceleft.glif new file mode 100644 index 00000000..509a3ea9 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/braceleft.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/braceright.case.glif b/sources/FixelText-Light.ufo/glyphs/braceright.case.glif new file mode 100644 index 00000000..8d8a614f --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/braceright.case.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/braceright.glif b/sources/FixelText-Light.ufo/glyphs/braceright.glif new file mode 100644 index 00000000..13db567b --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/braceright.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/bracketangleleft.case.glif b/sources/FixelText-Light.ufo/glyphs/bracketangleleft.case.glif new file mode 100644 index 00000000..0fe10863 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/bracketangleleft.case.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + parenleft.case + com.fontlab.metricsRight + parenleft.case + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/bracketangleleft.glif b/sources/FixelText-Light.ufo/glyphs/bracketangleleft.glif new file mode 100644 index 00000000..94abf373 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/bracketangleleft.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + parenleft + com.fontlab.metricsRight + parenleft + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/bracketangleright.case.glif b/sources/FixelText-Light.ufo/glyphs/bracketangleright.case.glif new file mode 100644 index 00000000..e1936d48 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/bracketangleright.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |bracketangleleft.case + com.fontlab.metricsRight + |bracketangleleft.case + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/bracketangleright.glif b/sources/FixelText-Light.ufo/glyphs/bracketangleright.glif new file mode 100644 index 00000000..8c5c8a0c --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/bracketangleright.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.metricsLeft + |bracketangleleft + com.fontlab.metricsRight + |bracketangleleft + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/bracketleft.case.glif b/sources/FixelText-Light.ufo/glyphs/bracketleft.case.glif new file mode 100644 index 00000000..b1da86ea --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/bracketleft.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |bracketright.case + com.fontlab.metricsRight + |bracketright.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/bracketleft.glif b/sources/FixelText-Light.ufo/glyphs/bracketleft.glif new file mode 100644 index 00000000..3377566e --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/bracketleft.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + + + diff --git a/sources/FixelText-Light.ufo/glyphs/bracketright.case.glif b/sources/FixelText-Light.ufo/glyphs/bracketright.case.glif new file mode 100644 index 00000000..79cd36dd --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/bracketright.case.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |bracketleft + com.fontlab.metricsRight + |bracketleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/bracketright.glif b/sources/FixelText-Light.ufo/glyphs/bracketright.glif new file mode 100644 index 00000000..1faf0db2 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/bracketright.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |bracketleft + com.fontlab.metricsRight + |bracketleft + + + diff --git a/sources/FixelText-Light.ufo/glyphs/breve.case.glif b/sources/FixelText-Light.ufo/glyphs/breve.case.glif new file mode 100644 index 00000000..ff05d54d --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/breve.case.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/breve.glif b/sources/FixelText-Light.ufo/glyphs/breve.glif new file mode 100644 index 00000000..bed58ee0 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/breve.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/brokenbar.case.glif b/sources/FixelText-Light.ufo/glyphs/brokenbar.case.glif new file mode 100644 index 00000000..596af8d2 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/brokenbar.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + bar + com.fontlab.metricsRight + bar + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/brokenbar.glif b/sources/FixelText-Light.ufo/glyphs/brokenbar.glif new file mode 100644 index 00000000..280b84a5 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/brokenbar.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + bar + com.fontlab.metricsRight + bar + + + diff --git a/sources/FixelText-Light.ufo/glyphs/bullet.case.glif b/sources/FixelText-Light.ufo/glyphs/bullet.case.glif new file mode 100644 index 00000000..44363cf1 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/bullet.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + period + com.fontlab.metricsRight + period + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/bullet.glif b/sources/FixelText-Light.ufo/glyphs/bullet.glif new file mode 100644 index 00000000..0e138ba9 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/bullet.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + period + com.fontlab.metricsRight + period + + + diff --git a/sources/FixelText-Light.ufo/glyphs/c.glif b/sources/FixelText-Light.ufo/glyphs/c.glif new file mode 100644 index 00000000..1bbe5791 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/c.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + + + diff --git a/sources/FixelText-Light.ufo/glyphs/cacute.glif b/sources/FixelText-Light.ufo/glyphs/cacute.glif new file mode 100644 index 00000000..8b831d88 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/cacute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+acute + + + diff --git a/sources/FixelText-Light.ufo/glyphs/caron.case.glif b/sources/FixelText-Light.ufo/glyphs/caron.case.glif new file mode 100644 index 00000000..433f0a4f --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/caron.case.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/caron.glif b/sources/FixelText-Light.ufo/glyphs/caron.glif new file mode 100644 index 00000000..b05f236b --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/caron.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/caron.salt.glif b/sources/FixelText-Light.ufo/glyphs/caron.salt.glif new file mode 100644 index 00000000..ca6943e7 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/caron.salt.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/ccaron.glif b/sources/FixelText-Light.ufo/glyphs/ccaron.glif new file mode 100644 index 00000000..5c035297 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/ccaron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+caron + + + diff --git a/sources/FixelText-Light.ufo/glyphs/ccedilla.glif b/sources/FixelText-Light.ufo/glyphs/ccedilla.glif new file mode 100644 index 00000000..0b161854 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/ccedilla.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+cedilla + + + diff --git a/sources/FixelText-Light.ufo/glyphs/cche-cy.glif b/sources/FixelText-Light.ufo/glyphs/cche-cy.glif new file mode 100644 index 00000000..8b03d1b0 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/cche-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ч + com.fontlab.metricsRight + ч + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/ccircumflex.glif b/sources/FixelText-Light.ufo/glyphs/ccircumflex.glif new file mode 100644 index 00000000..f92e440b --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/ccircumflex.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+circumflex + + + diff --git a/sources/FixelText-Light.ufo/glyphs/cdotaccent.glif b/sources/FixelText-Light.ufo/glyphs/cdotaccent.glif new file mode 100644 index 00000000..e758712a --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/cdotaccent.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+dotaccent + + + diff --git a/sources/FixelText-Light.ufo/glyphs/cedilla.glif b/sources/FixelText-Light.ufo/glyphs/cedilla.glif new file mode 100644 index 00000000..eb8f2076 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/cedilla.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/cent.glif b/sources/FixelText-Light.ufo/glyphs/cent.glif new file mode 100644 index 00000000..7aa1206f --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/cent.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + c + com.fontlab.metricsRight + c + + + diff --git a/sources/FixelText-Light.ufo/glyphs/che-cy.glif b/sources/FixelText-Light.ufo/glyphs/che-cy.glif new file mode 100644 index 00000000..7b69ff91 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/che-cy.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + u-10 + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelText-Light.ufo/glyphs/cheabkhcyr.glif b/sources/FixelText-Light.ufo/glyphs/cheabkhcyr.glif new file mode 100644 index 00000000..24358f96 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/cheabkhcyr.glif @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + e + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/cheabkhtailcyr.glif b/sources/FixelText-Light.ufo/glyphs/cheabkhtailcyr.glif new file mode 100644 index 00000000..e0493d13 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/cheabkhtailcyr.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + cheabkhcyr + com.fontlab.metricsRight + cheabkhcyr + com.fontlab.recipe + cheabkhcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/chedieresiscyr.glif b/sources/FixelText-Light.ufo/glyphs/chedieresiscyr.glif new file mode 100644 index 00000000..42417aea --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/chedieresiscyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + che-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/chekhakascyr.glif b/sources/FixelText-Light.ufo/glyphs/chekhakascyr.glif new file mode 100644 index 00000000..d1f924e9 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/chekhakascyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ч + com.fontlab.metricsRight + н + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/chetailcyr.glif b/sources/FixelText-Light.ufo/glyphs/chetailcyr.glif new file mode 100644 index 00000000..adffabe8 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/chetailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ч + com.fontlab.metricsRight + entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/chevertcyr.glif b/sources/FixelText-Light.ufo/glyphs/chevertcyr.glif new file mode 100644 index 00000000..8b5140e4 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/chevertcyr.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ч + com.fontlab.metricsRight + н + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/circumflex.case.glif b/sources/FixelText-Light.ufo/glyphs/circumflex.case.glif new file mode 100644 index 00000000..6a264c44 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/circumflex.case.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/circumflex.glif b/sources/FixelText-Light.ufo/glyphs/circumflex.glif new file mode 100644 index 00000000..46f5bff0 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/circumflex.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/clubwhite.glif b/sources/FixelText-Light.ufo/glyphs/clubwhite.glif new file mode 100644 index 00000000..d9104ba6 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/clubwhite.glif @@ -0,0 +1,155 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/colon.case.glif b/sources/FixelText-Light.ufo/glyphs/colon.case.glif new file mode 100644 index 00000000..9d9646e8 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/colon.case.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/colon.glif b/sources/FixelText-Light.ufo/glyphs/colon.glif new file mode 100644 index 00000000..eba17152 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/colon.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/colontriangularmod.glif b/sources/FixelText-Light.ufo/glyphs/colontriangularmod.glif new file mode 100644 index 00000000..a9cd8daf --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/colontriangularmod.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + colon + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/comma.glif b/sources/FixelText-Light.ufo/glyphs/comma.glif new file mode 100644 index 00000000..5fba4b80 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/comma.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/commaaccentcomb.glif b/sources/FixelText-Light.ufo/glyphs/commaaccentcomb.glif new file mode 100644 index 00000000..9bea92d2 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/commaaccentcomb.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/commaaccentcomb.salt.glif b/sources/FixelText-Light.ufo/glyphs/commaaccentcomb.salt.glif new file mode 100644 index 00000000..5cd6efe3 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/commaaccentcomb.salt.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/contents.plist b/sources/FixelText-Light.ufo/glyphs/contents.plist new file mode 100644 index 00000000..2830b2de --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/contents.plist @@ -0,0 +1,2352 @@ + + + + + .notdef + _notdef.glif + A + A_.glif + A-cy + A_-cy.glif + A-cy.accented + A_-cy.accented.glif + A-cy.ss01 + A_-cy.ss01.glif + A.ss01 + A_.ss01.glif + AE + A_E_.glif + AE.ss01 + A_E_.ss01.glif + AEacute + A_E_acute.glif + Aacute + A_acute.glif + Aacute.ss01 + A_acute.ss01.glif + Abreve + A_breve.glif + Abreve.ss01 + A_breve.ss01.glif + Abrevecyr + A_brevecyr.glif + Acaron + A_caron.glif + Acircumflex + A_circumflex.glif + Acircumflex.ss01 + A_circumflex.ss01.glif + Adieresis + A_dieresis.glif + Adieresis.ss01 + A_dieresis.ss01.glif + Adieresiscyr + A_dieresiscyr.glif + Agrave + A_grave.glif + Agrave.ss01 + A_grave.ss01.glif + Aiecyr + A_iecyr.glif + Amacron + A_macron.glif + Amacron.ss01 + A_macron.ss01.glif + Aogonek + A_ogonek.glif + Aogonek.ss01 + A_ogonek.ss01.glif + Aring + A_ring.glif + Aring.ss01 + A_ring.ss01.glif + Atilde + A_tilde.glif + Atilde.ss01 + A_tilde.ss01.glif + B + B_.glif + Be-cy + B_e-cy.glif + C + C_.glif + CR + C_R_.glif + Cacute + C_acute.glif + Ccaron + C_caron.glif + Ccedilla + C_cedilla.glif + Cche-cy + C_che-cy.glif + Ccircumflex + C_circumflex.glif + Cdotaccent + C_dotaccent.glif + Che-cy + C_he-cy.glif + Cheabkhcyr + C_heabkhcyr.glif + Cheabkhtailcyr + C_heabkhtailcyr.glif + Chedieresiscyr + C_hedieresiscyr.glif + Chekhakascyr + C_hekhakascyr.glif + Chetailcyr + C_hetailcyr.glif + Chevertcyr + C_hevertcyr.glif + CrossedO-cy + C_rossedO_-cy.glif + D + D_.glif + Dcaron + D_caron.glif + Dchecyr + D_checyr.glif + Dcroat + D_croat.glif + De-cy + D_e-cy.glif + De-cy.BGR + D_e-cy.B_G_R_.glif + DeSoft-cy + D_eS_oft-cy.glif + Dekomicyr + D_ekomicyr.glif + Delta + D_elta.glif + Djecyr + D_jecyr.glif + Djekomicyr + D_jekomicyr.glif + Djerv-cy + D_jerv-cy.glif + DoubleO-cy + D_oubleO_-cy.glif + Dwe-cy + D_we-cy.glif + Dze-cy + D_ze-cy.glif + DzeReversed-cy + D_zeR_eversed-cy.glif + Dzeabkhcyr + D_zeabkhcyr.glif + Dzelo-cy + D_zelo-cy.glif + Dzhecyr + D_zhecyr.glif + Dzjekomicyr + D_zjekomicyr.glif + Dzwe-cy + D_zwe-cy.glif + Dzze-cy + D_zze-cy.glif + Dzzhecyr + D_zzhecyr.glif + E + E_.glif + E-cy + E_-cy.glif + E-cy.accented + E_-cy.accented.glif + Eacute + E_acute.glif + Ebreve + E_breve.glif + Ecaron + E_caron.glif + Ecircumflex + E_circumflex.glif + Edieresis + E_dieresis.glif + Edotaccent + E_dotaccent.glif + Ef-cy + E_f-cy.glif + Ef-cy.BGR + E_f-cy.B_G_R_.glif + Egrave + E_grave.glif + Eiotifiedcyr + E_iotifiedcyr.glif + El-cy + E_l-cy.glif + El-cy.BGR + E_l-cy.B_G_R_.glif + ElSoft-cy + E_lS_oft-cy.glif + Elhookcyr + E_lhookcyr.glif + Elmiddlehookcyr + E_lmiddlehookcyr.glif + Elsharptailcyr + E_lsharptailcyr.glif + Elsmallcyr + E_lsmallcyr.glif + Eltailcyr + E_ltailcyr.glif + Em-cy + E_m-cy.glif + Em-cy.ss01 + E_m-cy.ss01.glif + EmSoft-cy + E_mS_oft-cy.glif + Emacron + E_macron.glif + Emsharptailcyr + E_msharptailcyr.glif + En-cy + E_n-cy.glif + Eng + E_ng.glif + Eng.ss01 + E_ng.ss01.glif + Engecyr + E_ngecyr.glif + Enhookcyr + E_nhookcyr.glif + Enhookleftcyr + E_nhookleftcyr.glif + Enmiddlehookcyr + E_nmiddlehookcyr.glif + Ensharptailcyr + E_nsharptailcyr.glif + Entailcyr + E_ntailcyr.glif + Eogonek + E_ogonek.glif + Er-cy + E_r-cy.glif + Ereversed-cy + E_reversed-cy.glif + Ereversed-cy.accented + E_reversed-cy.accented.glif + Ereverseddieresiscyr + E_reverseddieresiscyr.glif + Ertickcyr + E_rtickcyr.glif + Es-cy + E_s-cy.glif + Estailcyr + E_stailcyr.glif + Estailcyr.BSH + E_stailcyr.B_S_H_.glif + Estailcyr.CHU + E_stailcyr.C_H_U_.glif + Eth + E_th.glif + F + F_.glif + Fitacyr + F_itacyr.glif + G + G_.glif + G.ss01 + G_.ss01.glif + Gacute + G_acute.glif + Gacute.ss01 + G_acute.ss01.glif + Gbreve + G_breve.glif + Gbreve.ss01 + G_breve.ss01.glif + Gcircumflex + G_circumflex.glif + Gcircumflex.ss01 + G_circumflex.ss01.glif + Gcommaaccent + G_commaaccent.glif + Gcommaaccent.ss01 + G_commaaccent.ss01.glif + Gdotaccent + G_dotaccent.glif + Gdotaccent.ss01 + G_dotaccent.ss01.glif + Ge-cy + G_e-cy.glif + Gehookcyr + G_ehookcyr.glif + Gehookstrokecyr + G_ehookstrokecyr.glif + Germandbls + G_ermandbls.glif + Gestrokecyr + G_estrokecyr.glif + Gestrokecyr.BSH + G_estrokecyr.B_S_H_.glif + Getailcyr + G_etailcyr.glif + Gheupturn-cy + G_heupturn-cy.glif + Gjecyr + G_jecyr.glif + H + H_.glif + Ha-cy + H_a-cy.glif + Ha-cy.ss01 + H_a-cy.ss01.glif + Haabkhcyr + H_aabkhcyr.glif + Hahookcyr + H_ahookcyr.glif + Hardsign-cy + H_ardsign-cy.glif + Hastrokecyr + H_astrokecyr.glif + Hbar + H_bar.glif + Hcircumflex + H_circumflex.glif + Hwe-cy + H_we-cy.glif + I + I_.glif + I-cy + I_-cy.glif + IJ + I_J_.glif + Ia-cy + I_a-cy.glif + Ia-cy.accented + I_a-cy.accented.glif + Ia-cy.ss01 + I_a-cy.ss01.glif + Iacute + I_acute.glif + Ibreve + I_breve.glif + Icircumflex + I_circumflex.glif + Idieresis + I_dieresis.glif + Idieresiscyr + I_dieresiscyr.glif + Idotaccent + I_dotaccent.glif + Ie-cy + I_e-cy.glif + Iebrevecyr + I_ebrevecyr.glif + Iegravecyr + I_egravecyr.glif + Igrave + I_grave.glif + Igravecyr + I_gravecyr.glif + Ii-cy + I_i-cy.glif + Ii-cy.accented + I_i-cy.accented.glif + Iishort-cy + I_ishort-cy.glif + Imacron + I_macron.glif + Imacroncyr + I_macroncyr.glif + Io-cy + I_o-cy.glif + Io-cy.accented + I_o-cy.accented.glif + Iogonek + I_ogonek.glif + Iota-cy + I_ota-cy.glif + IotifiedA-cy + I_otifiedA_-cy.glif + Ishortsharptailcyr + I_shortsharptailcyr.glif + Itilde + I_tilde.glif + Iu-cy + I_u-cy.glif + Iu-cy.accented + I_u-cy.accented.glif + Izhitsacyr + I_zhitsacyr.glif + Izhitsagravedblcyr + I_zhitsagravedblcyr.glif + J + J_.glif + J.ss01 + J_.ss01.glif + Jcircumflex + J_circumflex.glif + Jcircumflex.ss01 + J_circumflex.ss01.glif + Jecyr + J_ecyr.glif + K + K_.glif + K.ss01 + K_.ss01.glif + Ka-cy + K_a-cy.glif + Ka-cy.ss01 + K_a-cy.ss01.glif + Kaaleutcyr + K_aaleutcyr.glif + Kabashkcyr + K_abashkcyr.glif + Kahookcyr + K_ahookcyr.glif + Kastrokecyr + K_astrokecyr.glif + Katailcyr + K_atailcyr.glif + Kaverticalstrokecyr + K_averticalstrokecyr.glif + Kcommaaccent + K_commaaccent.glif + Kcommaaccent.ss01 + K_commaaccent.ss01.glif + Kjecyr + K_jecyr.glif + Koppacyr + K_oppacyr.glif + Ksicyr + K_sicyr.glif + L + L_.glif + Lacute + L_acute.glif + Lcaron + L_caron.glif + Lcommaaccent + L_commaaccent.glif + Ldot + L_dot.glif + Lhacyr + L_hacyr.glif + Ljecyr + L_jecyr.glif + Ljekomicyr + L_jekomicyr.glif + Lslash + L_slash.glif + M + M_.glif + M.ss01 + M_.ss01.glif + N + N_.glif + N.ss01 + N_.ss01.glif + NULL + N_U_L_L_.glif + Nacute + N_acute.glif + Nacute.ss01 + N_acute.ss01.glif + Ncaron + N_caron.glif + Ncaron.ss01 + N_caron.ss01.glif + Ncommaaccent + N_commaaccent.glif + Ncommaaccent.ss01 + N_commaaccent.ss01.glif + Njecyr + N_jecyr.glif + Njekomicyr + N_jekomicyr.glif + Ntilde + N_tilde.glif + Ntilde.ss01 + N_tilde.ss01.glif + O + O_.glif + O-cy + O_-cy.glif + O-cy.accented + O_-cy.accented.glif + OBinocular-cy + O_B_inocular-cy.glif + ODoubleMonocular-cy + O_D_oubleM_onocular-cy.glif + OE + O_E_.glif + OMonocular-cy + O_M_onocular-cy.glif + Oacute + O_acute.glif + Obarcyr + O_barcyr.glif + Obardieresiscyr + O_bardieresiscyr.glif + Obreve + O_breve.glif + Ocircumflex + O_circumflex.glif + Odieresis + O_dieresis.glif + Odieresiscyr + O_dieresiscyr.glif + Ograve + O_grave.glif + Ohungarumlaut + O_hungarumlaut.glif + Omacron + O_macron.glif + Omega + O_mega.glif + OmegaBroad-cy + O_megaB_road-cy.glif + Omegacyr + O_megacyr.glif + Omegaroundcyr + O_megaroundcyr.glif + Omegatitlocyr + O_megatitlocyr.glif + Oslash + O_slash.glif + Oslashacute + O_slashacute.glif + Otcyr + O_tcyr.glif + Otilde + O_tilde.glif + P + P_.glif + Palochkacyr + P_alochkacyr.glif + Pe-cy + P_e-cy.glif + Pehookcyr + P_ehookcyr.glif + Petailcyr + P_etailcyr.glif + Psicyr + P_sicyr.glif + Q + Q_.glif + Q.ss01 + Q_.ss01.glif + Qacyr + Q_acyr.glif + R + R_.glif + Racute + R_acute.glif + Rcaron + R_caron.glif + Rcommaaccent + R_commaaccent.glif + Reversedzecyr + R_eversedzecyr.glif + Rhacyr + R_hacyr.glif + S + S_.glif + Sacute + S_acute.glif + Scaron + S_caron.glif + Scedilla + S_cedilla.glif + Schwa + S_chwa.glif + Schwacyr + S_chwacyr.glif + Schwadieresiscyr + S_chwadieresiscyr.glif + Scircumflex + S_circumflex.glif + Scommaaccent + S_commaaccent.glif + Semisoftcyr + S_emisoftcyr.glif + Sha-cy + S_ha-cy.glif + Shcha-cy + S_hcha-cy.glif + Shhacyr + S_hhacyr.glif + Shhatailcyr + S_hhatailcyr.glif + Shwe-cy + S_hwe-cy.glif + Sjekomicyr + S_jekomicyr.glif + Softsign-cy + S_oftsign-cy.glif + T + T_.glif + Tbar + T_bar.glif + Tcaron + T_caron.glif + Tcedilla + T_cedilla.glif + Tche-cy + T_che-cy.glif + Tcommaaccent + T_commaaccent.glif + Te-cy + T_e-cy.glif + TeWithMiddleHook-cy + T_eW_ithM_iddleH_ook-cy.glif + Tetailcyr + T_etailcyr.glif + Tetsecyr + T_etsecyr.glif + Thorn + T_horn.glif + Tjekomicyr + T_jekomicyr.glif + Tse-cy + T_se-cy.glif + TseReversed-cy + T_seR_eversed-cy.glif + Tshecyr + T_shecyr.glif + Tsse-cy + T_sse-cy.glif + Tswe-cy + T_swe-cy.glif + Twe-cy + T_we-cy.glif + U + U_.glif + U-cy + U_-cy.glif + U-cy.accented + U_-cy.accented.glif + U-cy.ss01 + U_-cy.ss01.glif + Uacute + U_acute.glif + Uacutedblcyr + U_acutedblcyr.glif + Ubreve + U_breve.glif + Ucircumflex + U_circumflex.glif + Udieresis + U_dieresis.glif + Udieresiscyr + U_dieresiscyr.glif + Ugrave + U_grave.glif + Uhungarumlaut + U_hungarumlaut.glif + UkMonograph-cy + U_kM_onograph-cy.glif + Ukcyr + U_kcyr.glif + Umacron + U_macron.glif + Umacroncyr + U_macroncyr.glif + Uogonek + U_ogonek.glif + Uring + U_ring.glif + Ushort-cy + U_short-cy.glif + Ushort-cy.ss01 + U_short-cy.ss01.glif + Ustraightcyr + U_straightcyr.glif + Ustraightstrokecyr + U_straightstrokecyr.glif + Utilde + U_tilde.glif + V + V_.glif + V.ss01 + V_.ss01.glif + Ve-cy + V_e-cy.glif + W + W_.glif + W.ss01 + W_.ss01.glif + Wacute + W_acute.glif + Wacute.ss01 + W_acute.ss01.glif + Wcircumflex + W_circumflex.glif + Wcircumflex.ss01 + W_circumflex.ss01.glif + Wdieresis + W_dieresis.glif + Wdieresis.ss01 + W_dieresis.ss01.glif + Wecyr + W_ecyr.glif + Wgrave + W_grave.glif + Wgrave.ss01 + W_grave.ss01.glif + X + X_.glif + X.ss01 + X_.ss01.glif + Xatailcyr + X_atailcyr.glif + Y + Y_.glif + Y.ss01 + Y_.ss01.glif + Yacute + Y_acute.glif + Yacute.ss01 + Y_acute.ss01.glif + Yaecyr + Y_aecyr.glif + YatIotified-cy + Y_atI_otified-cy.glif + Yatcyr + Y_atcyr.glif + Ycircumflex + Y_circumflex.glif + Ycircumflex.ss01 + Y_circumflex.ss01.glif + Ydieresis + Y_dieresis.glif + Ydieresis.ss01 + Y_dieresis.ss01.glif + YerNeutral-cy + Y_erN_eutral-cy.glif + Yeru-cy + Y_eru-cy.glif + Yeru-cy.accented + Y_eru-cy.accented.glif + Yeru-cymacron + Y_eru-cymacron.glif + YeruBackYer-cy + Y_eruB_ackY_er-cy.glif + Yi-cy + Y_i-cy.glif + Ylongdieresiscyr + Y_longdieresiscyr.glif + Yn-cy + Y_n-cy.glif + YuReversed-cy + Y_uR_eversed-cy.glif + YusBlended-cy + Y_usB_lended-cy.glif + YusClosedlittle-cy + Y_usC_losedlittle-cy.glif + Yusbigcyr + Y_usbigcyr.glif + Yusbigiotifiedcyr + Y_usbigiotifiedcyr.glif + YusiotifiedClosedLittle-cy + Y_usiotifiedC_losedL_ittle-cy.glif + Yuslittlecyr + Y_uslittlecyr.glif + Yuslittleiotifiedcyr + Y_uslittleiotifiedcyr.glif + Z + Z_.glif + Z.ss01 + Z_.ss01.glif + Zacute + Z_acute.glif + Zacute.ss01 + Z_acute.ss01.glif + Zcaron + Z_caron.glif + Zcaron.ss01 + Z_caron.ss01.glif + Zdotaccent + Z_dotaccent.glif + Zdotaccent.ss01 + Z_dotaccent.ss01.glif + Ze-cy + Z_e-cy.glif + Zedieresiscyr + Z_edieresiscyr.glif + Zemlya-cy + Z_emlya-cy.glif + Zetailcyr + Z_etailcyr.glif + Zetailcyr.BSH + Z_etailcyr.B_S_H_.glif + Zhe-cy + Z_he-cy.glif + Zhe-cy.ss01 + Z_he-cy.ss01.glif + Zhebrevecyr + Z_hebrevecyr.glif + Zhedieresiscyr + Z_hedieresiscyr.glif + Zhetailcyr + Z_hetailcyr.glif + Zhwe-cy + Z_hwe-cy.glif + Zjekomicyr + Z_jekomicyr.glif + _perc-circule + _perc-circule.glif + a + a.glif + a-cy + a-cy.glif + a-cy.accented + a-cy.accented.glif + a-cy.ss01 + a-cy.ss01.glif + a.ss01 + a.ss01.glif + aacute + aacute.glif + aacute.ss01 + aacute.ss01.glif + abreve + abreve.glif + abreve.ss01 + abreve.ss01.glif + abrevecyr + abrevecyr.glif + acaron + acaron.glif + acircumflex + acircumflex.glif + acircumflex.ss01 + acircumflex.ss01.glif + acute + acute.glif + acute.case + acute.case.glif + adieresis + adieresis.glif + adieresis.ss01 + adieresis.ss01.glif + adieresiscyr + adieresiscyr.glif + ae + ae.glif + ae.ss01 + ae.ss01.glif + aeacute + aeacute.glif + agrave + agrave.glif + agrave.ss01 + agrave.ss01.glif + aiecyr + aiecyr.glif + amacron + amacron.glif + amacron.ss01 + amacron.ss01.glif + ampersand + ampersand.glif + aogonek + aogonek.glif + aogonek.ss01 + aogonek.ss01.glif + apostrophemod + apostrophemod.glif + approxequal + approxequal.glif + aring + aring.glif + aring.ss01 + aring.ss01.glif + arrowdown + arrowdown.glif + arrowdown.case + arrowdown.case.glif + arrowdown.ss01 + arrowdown.ss01.glif + arrowdown.ss01.case + arrowdown.ss01.case.glif + arrowleft + arrowleft.glif + arrowleft.case + arrowleft.case.glif + arrowleft.ss01 + arrowleft.ss01.glif + arrowleft.ss01.case + arrowleft.ss01.case.glif + arrowright + arrowright.glif + arrowright.case + arrowright.case.glif + arrowright.ss01 + arrowright.ss01.glif + arrowright.ss01.case + arrowright.ss01.case.glif + arrowup + arrowup.glif + arrowup.case + arrowup.case.glif + arrowup.ss01 + arrowup.ss01.glif + arrowup.ss01.case + arrowup.ss01.case.glif + asciicircum + asciicircum.glif + asciitilde + asciitilde.glif + asterisk + asterisk.glif + at + at.glif + at.case + at.case.glif + atilde + atilde.glif + atilde.ss01 + atilde.ss01.glif + b + b.glif + b.ss01 + b.ss01.glif + backslash + backslash.glif + backslash.case + backslash.case.glif + bar + bar.glif + bar.case + bar.case.glif + be-cy + be-cy.glif + be-cy.SRB + be-cy.S_R_B_.glif + bishopblack + bishopblack.glif + bishopwhite + bishopwhite.glif + braceleft + braceleft.glif + braceleft.case + braceleft.case.glif + braceright + braceright.glif + braceright.case + braceright.case.glif + bracketangleleft + bracketangleleft.glif + bracketangleleft.case + bracketangleleft.case.glif + bracketangleright + bracketangleright.glif + bracketangleright.case + bracketangleright.case.glif + bracketleft + bracketleft.glif + bracketleft.case + bracketleft.case.glif + bracketright + bracketright.glif + bracketright.case + bracketright.case.glif + breve + breve.glif + breve.case + breve.case.glif + brokenbar + brokenbar.glif + brokenbar.case + brokenbar.case.glif + bullet + bullet.glif + bullet.case + bullet.case.glif + c + c.glif + cacute + cacute.glif + caron + caron.glif + caron.case + caron.case.glif + caron.salt + caron.salt.glif + ccaron + ccaron.glif + ccedilla + ccedilla.glif + cche-cy + cche-cy.glif + ccircumflex + ccircumflex.glif + cdotaccent + cdotaccent.glif + cedilla + cedilla.glif + cent + cent.glif + che-cy + che-cy.glif + cheabkhcyr + cheabkhcyr.glif + cheabkhtailcyr + cheabkhtailcyr.glif + chedieresiscyr + chedieresiscyr.glif + chekhakascyr + chekhakascyr.glif + chetailcyr + chetailcyr.glif + chevertcyr + chevertcyr.glif + circumflex + circumflex.glif + circumflex.case + circumflex.case.glif + clubwhite + clubwhite.glif + colon + colon.glif + colon.case + colon.case.glif + colontriangularmod + colontriangularmod.glif + comma + comma.glif + commaaccentcomb + commaaccentcomb.glif + commaaccentcomb.salt + commaaccentcomb.salt.glif + copyright + copyright.glif + crossedo-cy + crossedo-cy.glif + crossedswords + crossedswords.glif + currency + currency.glif + d + d.glif + d.ss01 + d.ss01.glif + dagger + dagger.glif + daggerdbl + daggerdbl.glif + dcaron + dcaron.glif + dcaron.ss01 + dcaron.ss01.glif + dchecyr + dchecyr.glif + dcroat + dcroat.glif + dcroat.ss01 + dcroat.ss01.glif + de-cy + de-cy.glif + de-cy.BGR + de-cy.B_G_R_.glif + de-cy.ss01 + de-cy.ss01.glif + deSoft-cy + deS_oft-cy.glif + degree + degree.glif + dekomicyr + dekomicyr.glif + diamondwhite-misc + diamondwhite-misc.glif + dieresis + dieresis.glif + dieresis.alt + dieresis.alt.glif + dieresis.case + dieresis.case.glif + dieresisacute + dieresisacute.glif + dieresiscase.alt + dieresiscase.alt.glif + divide + divide.glif + djecyr + djecyr.glif + djekomicyr + djekomicyr.glif + djerv-cy + djerv-cy.glif + dollar + dollar.glif + dotaccent + dotaccent.glif + dotaccent.case + dotaccent.case.glif + doubleo-cy + doubleo-cy.glif + dramsignarmn + dramsignarmn.glif + dwe-cy + dwe-cy.glif + dze-cy + dze-cy.glif + dzeReversed-cy + dzeR_eversed-cy.glif + dzeabkhcyr + dzeabkhcyr.glif + dzelo-cy + dzelo-cy.glif + dzhecyr + dzhecyr.glif + dzjekomicyr + dzjekomicyr.glif + dzwe-cy + dzwe-cy.glif + dzze-cy + dzze-cy.glif + dzzhecyr + dzzhecyr.glif + e + e.glif + e-cy + e-cy.glif + e-cy.accented + e-cy.accented.glif + e-cy.hist + e-cy.hist.glif + e.ss01 + e.ss01.glif + eacute + eacute.glif + eacute.ss01 + eacute.ss01.glif + ebreve + ebreve.glif + ebreve.ss01 + ebreve.ss01.glif + ecaron + ecaron.glif + ecaron.ss01 + ecaron.ss01.glif + ecircumflex + ecircumflex.glif + ecircumflex.ss01 + ecircumflex.ss01.glif + edieresis + edieresis.glif + edieresis.ss01 + edieresis.ss01.glif + edotaccent + edotaccent.glif + edotaccent.ss01 + edotaccent.ss01.glif + ef-cy + ef-cy.glif + egrave + egrave.glif + egrave.ss01 + egrave.ss01.glif + eight + eight.glif + eight.osf + eight.osf.glif + eight.tf + eight.tf.glif + eiotifiedcyr + eiotifiedcyr.glif + eiotifiedcyr.BGR + eiotifiedcyr.B_G_R_.glif + el-cy + el-cy.glif + el-cy.BGR + el-cy.B_G_R_.glif + el-cy.ss01 + el-cy.ss01.glif + elSoft-cy + elS_oft-cy.glif + elhookcyr + elhookcyr.glif + ellipsis + ellipsis.glif + elmiddlehookcyr + elmiddlehookcyr.glif + elsharptailcyr + elsharptailcyr.glif + eltailcyr + eltailcyr.glif + em-cy + em-cy.glif + emSoft-cy + emS_oft-cy.glif + emacron + emacron.glif + emacron.ss01 + emacron.ss01.glif + emdash + emdash.glif + emdash.case + emdash.case.glif + emsharptailcyr + emsharptailcyr.glif + en-cy + en-cy.glif + enclosingcirclecomb + enclosingcirclecomb.glif + endash + endash.glif + endash.case + endash.case.glif + eng + eng.glif + engecyr + engecyr.glif + enhookcyr + enhookcyr.glif + enhookleftcyr + enhookleftcyr.glif + enmiddlehookcyr + enmiddlehookcyr.glif + ensharptailcyr + ensharptailcyr.glif + entailcyr + entailcyr.glif + eogonek + eogonek.glif + eogonek.ss01 + eogonek.ss01.glif + equal + equal.glif + er-cy + er-cy.glif + er-cy.ss01 + er-cy.ss01.glif + ereversed-cy + ereversed-cy.glif + ereversed-cy.accented + ereversed-cy.accented.glif + ereverseddieresiscyr + ereverseddieresiscyr.glif + ertickcyr + ertickcyr.glif + es-cy + es-cy.glif + estailcyr + estailcyr.glif + estailcyr.BSH + estailcyr.B_S_H_.glif + estailcyr.CHU + estailcyr.C_H_U_.glif + estimated + estimated.glif + eth + eth.glif + eturned + eturned.glif + euro + euro.glif + exclam + exclam.glif + exclamdown + exclamdown.glif + exclamdown.case + exclamdown.case.glif + f + f.glif + f.ss01 + f.ss01.glif + f_f + f_f.glif + f_f.ss01 + f_f.ss01.glif + f_f_i + f_f_i.glif + f_f_i.ss01 + f_f_i.ss01.glif + f_f_l + f_f_l.glif + f_f_l.ss01 + f_f_l.ss01.glif + fi + fi.glif + fi.ss01 + fi.ss01.glif + fitacyr + fitacyr.glif + five + five.glif + five.osf + five.osf.glif + five.tf + five.tf.glif + fl + fl.glif + fl.ss01 + fl.ss01.glif + floretteblack + floretteblack.glif + floretteoutlinedpetalledblackeight + floretteoutlinedpetalledblackeight.glif + florettewhite + florettewhite.glif + florin + florin.glif + flower + flower.glif + four + four.glif + four.osf + four.osf.glif + four.tf + four.tf.glif + fraction + fraction.glif + g + g.glif + g.ss01 + g.ss01.glif + gacute + gacute.glif + gacute.ss01 + gacute.ss01.glif + gbreve + gbreve.glif + gbreve.ss01 + gbreve.ss01.glif + gcircumflex + gcircumflex.glif + gcircumflex.ss01 + gcircumflex.ss01.glif + gcommaaccent + gcommaaccent.glif + gcommaaccent.ss01 + gcommaaccent.ss01.glif + gdotaccent + gdotaccent.glif + gdotaccent.ss01 + gdotaccent.ss01.glif + ge-cy + ge-cy.glif + ge-cy.BGR + ge-cy.B_G_R_.glif + ge-cy.SRB + ge-cy.S_R_B_.glif + gehookcyr + gehookcyr.glif + gehookstrokecyr + gehookstrokecyr.glif + germandbls + germandbls.glif + germandbls.ss01 + germandbls.ss01.glif + gestrokecyr + gestrokecyr.glif + gestrokecyr.BSH + gestrokecyr.B_S_H_.glif + getailcyr + getailcyr.glif + gheupturn-cy + gheupturn-cy.glif + gjecyr + gjecyr.glif + gjecyr.SRB + gjecyr.S_R_B_.glif + grave + grave.glif + grave.case + grave.case.glif + greater + greater.glif + greaterequal + greaterequal.glif + guillemetleft + guillemetleft.glif + guillemetleft.case + guillemetleft.case.glif + guillemetright + guillemetright.glif + guillemetright.case + guillemetright.case.glif + guilsinglleft + guilsinglleft.glif + guilsinglleft.case + guilsinglleft.case.glif + guilsinglright + guilsinglright.glif + guilsinglright.case + guilsinglright.case.glif + h + h.glif + ha-cy + ha-cy.glif + haabkhcyr + haabkhcyr.glif + hahookcyr + hahookcyr.glif + hardsign-cy + hardsign-cy.glif + hardsign-cy.BGR + hardsign-cy.B_G_R_.glif + hardsign-cy.ss01 + hardsign-cy.ss01.glif + hastrokecyr + hastrokecyr.glif + hbar + hbar.glif + hcircumflex + hcircumflex.glif + heart + heart.glif + heartwhite + heartwhite.glif + hryvnia + hryvnia.glif + hundredmillionscomb-cy + hundredmillionscomb-cy.glif + hundredthousandscombcyr + hundredthousandscombcyr.glif + hungarumlaut + hungarumlaut.glif + hungarumlaut.case + hungarumlaut.case.glif + hwe-cy + hwe-cy.glif + hyphen + hyphen.glif + hyphen.case + hyphen.case.glif + i + i.glif + i-cy + i-cy.glif + ia-cy + ia-cy.glif + ia-cy.accented + ia-cy.accented.glif + ia-cy.ss01 + ia-cy.ss01.glif + iacute + iacute.glif + ibreve + ibreve.glif + icircumflex + icircumflex.glif + idieresis + idieresis.glif + idieresiscyr + idieresiscyr.glif + idotless + idotless.glif + ie-cy + ie-cy.glif + ie-cy.ss01 + ie-cy.ss01.glif + iebrevecyr + iebrevecyr.glif + iegravecyr + iegravecyr.glif + iegravecyr.SRB + iegravecyr.S_R_B_.glif + igrave + igrave.glif + igravecyr + igravecyr.glif + igravecyr.SRB + igravecyr.S_R_B_.glif + ii-cy + ii-cy.glif + ii-cy.BGR + ii-cy.B_G_R_.glif + ii-cy.accented + ii-cy.accented.glif + iishort-cy + iishort-cy.glif + iishort-cy.BGR + iishort-cy.B_G_R_.glif + ij + ij.glif + imacron + imacron.glif + imacroncyr + imacroncyr.glif + increment + increment.glif + infinity + infinity.glif + integral + integral.glif + io-cy + io-cy.glif + io-cy.accented + io-cy.accented.glif + io-cy.ss01 + io-cy.ss01.glif + iogonek + iogonek.glif + iota-cy + iota-cy.glif + iotifieda-cy + iotifieda-cy.glif + iotifieda-cy.BGR + iotifieda-cy.B_G_R_.glif + iotifieda-cy.hist + iotifieda-cy.hist.glif + ishortsharptailcyr + ishortsharptailcyr.glif + itilde + itilde.glif + iu-cy + iu-cy.glif + iu-cy.BGR + iu-cy.B_G_R_.glif + iu-cy.accented + iu-cy.accented.glif + izhitsacyr + izhitsacyr.glif + izhitsagravedblcyr + izhitsagravedblcyr.glif + j + j.glif + jcircumflex + jcircumflex.glif + jdotless + jdotless.glif + je-cy + je-cy.glif + k + k.glif + ka-cy + ka-cy.glif + ka-cy.BGR + ka-cy.B_G_R_.glif + kaaleutcyr + kaaleutcyr.glif + kabashkcyr + kabashkcyr.glif + kahookcyr + kahookcyr.glif + kastrokecyr + kastrokecyr.glif + katailcyr + katailcyr.glif + kaverticalstrokecyr + kaverticalstrokecyr.glif + kcommaaccent + kcommaaccent.glif + kgreenlandic + kgreenlandic.glif + kjecyr + kjecyr.glif + knightblack + knightblack.glif + knightwhite + knightwhite.glif + koppacyr + koppacyr.glif + ksicyr + ksicyr.glif + l + l.glif + l.ss01 + l.ss01.glif + lacute + lacute.glif + lacute.ss01 + lacute.ss01.glif + lcaron + lcaron.glif + lcaron.ss01 + lcaron.ss01.glif + lcommaaccent + lcommaaccent.glif + lcommaaccent.ss01 + lcommaaccent.ss01.glif + ldot + ldot.glif + ldot.ss01 + ldot.ss01.glif + leo + leo.glif + less + less.glif + lessequal + lessequal.glif + lhacyr + lhacyr.glif + ljecyr + ljecyr.glif + ljecyr.ss01 + ljecyr.ss01.glif + ljekomicyr + ljekomicyr.glif + longs + longs.glif + lslash + lslash.glif + lslash.ss01 + lslash.ss01.glif + m + m.glif + macron + macron.glif + macron-fwd + macron-fwd.glif + macron-fwd.alt + macron-fwd.alt.glif + macron.case + macron.case.glif + macronacute.SRB + macronacute.S_R_B_.glif + millionscombcyr + millionscombcyr.glif + minus + minus.glif + minute + minute.glif + mu + mu.glif + multiply + multiply.glif + n + n.glif + nacute + nacute.glif + napostrophe + napostrophe.glif + ncaron + ncaron.glif + ncommaaccent + ncommaaccent.glif + neptune + neptune.glif + nine + nine.glif + nine.osf + nine.osf.glif + nine.tf + nine.tf.glif + njecyr + njecyr.glif + njecyr.ss01 + njecyr.ss01.glif + njekomicyr + njekomicyr.glif + notequal + notequal.glif + ntilde + ntilde.glif + numbersign + numbersign.glif + numero + numero.glif + numero.ss01 + numero.ss01.glif + o + o.glif + o-cy + o-cy.glif + o-cy.accented + o-cy.accented.glif + oBinocular-cy + oB_inocular-cy.glif + oDoubleMonocular-cy + oD_oubleM_onocular-cy.glif + oMonocular-cy + oM_onocular-cy.glif + oacute + oacute.glif + obarcyr + obarcyr.glif + obardieresiscyr + obardieresiscyr.glif + obreve + obreve.glif + ocircumflex + ocircumflex.glif + odieresis + odieresis.glif + odieresiscyr + odieresiscyr.glif + oe + oe.glif + oe.ss01 + oe.ss01.glif + ogonek + ogonek.glif + ograve + ograve.glif + ohungarumlaut + ohungarumlaut.glif + omacron + omacron.glif + omegaBroad-cy + omegaB_road-cy.glif + omegacyr + omegacyr.glif + omegaroundcyr + omegaroundcyr.glif + omegatitlocyr + omegatitlocyr.glif + omultiocular-cy + omultiocular-cy.glif + omultiocular-cy.alt + omultiocular-cy.alt.glif + one + one.glif + one.osf + one.osf.glif + one.tf + one.tf.glif + onehalf + onehalf.glif + onequarter + onequarter.glif + onesuperior + onesuperior.glif + ordfeminine + ordfeminine.glif + ordmasculine + ordmasculine.glif + oslash + oslash.glif + oslashacute + oslashacute.glif + otcyr + otcyr.glif + otilde + otilde.glif + p + p.glif + p.ss01 + p.ss01.glif + palatcombcyr + palatcombcyr.glif + palochkacyr + palochkacyr.glif + paragraph + paragraph.glif + parenleft + parenleft.glif + parenleft.case + parenleft.case.glif + parenright + parenright.glif + parenright.case + parenright.case.glif + partialdiff + partialdiff.glif + pe-cy + pe-cy.glif + pe-cy.BGR + pe-cy.B_G_R_.glif + pe-cy.SRB + pe-cy.S_R_B_.glif + pehookcyr + pehookcyr.glif + percent + percent.glif + period + period.glif + periodcentered + periodcentered.glif + perthousand + perthousand.glif + petailcyr + petailcyr.glif + pi + pi.glif + plus + plus.glif + plusminus + plusminus.glif + pokrytiecombcyr + pokrytiecombcyr.glif + product + product.glif + proportional + proportional.glif + psicyr + psicyr.glif + q + q.glif + q.ss01 + q.ss01.glif + qacyr + qacyr.glif + question + question.glif + questiondown + questiondown.glif + questiondown.case + questiondown.case.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 + radical + radical.glif + rcaron + rcaron.glif + rcommaaccent + rcommaaccent.glif + registered + registered.glif + reversedzecyr + reversedzecyr.glif + rhacyr + rhacyr.glif + ring + ring.glif + ring.case + ring.case.glif + rookblack + rookblack.glif + ruble + ruble.glif + s + s.glif + sacute + sacute.glif + scaron + scaron.glif + scedilla + scedilla.glif + schwacyr + schwacyr.glif + schwadieresiscyr + schwadieresiscyr.glif + scircumflex + scircumflex.glif + scommaaccent + scommaaccent.glif + second + second.glif + section + section.glif + semicolon + semicolon.glif + semicolon.case + semicolon.case.glif + semisoftcyr + semisoftcyr.glif + seven + seven.glif + seven.osf + seven.osf.glif + seven.tf + seven.tf.glif + sha-cy + sha-cy.glif + sha-cy.BGR + sha-cy.B_G_R_.glif + shcha-cy + shcha-cy.glif + shcha-cy.BGR + shcha-cy.B_G_R_.glif + shhacyr + shhacyr.glif + shhatailcyr + shhatailcyr.glif + shwe-cy + shwe-cy.glif + six + six.glif + six.osf + six.osf.glif + six.tf + six.tf.glif + sjekomicyr + sjekomicyr.glif + slash + slash.glif + slash.case + slash.case.glif + softsign-cy + softsign-cy.glif + softsign-cy.BGR + softsign-cy.B_G_R_.glif + softsign-cy.ss01 + softsign-cy.ss01.glif + space + space.glif + spadewhite + spadewhite.glif + sterling + sterling.glif + summation + summation.glif + t + t.glif + t.ss01 + t.ss01.glif + tbar + tbar.glif + tbar.ss01 + tbar.ss01.glif + tcaron + tcaron.glif + tcaron.ss01 + tcaron.ss01.glif + tcedilla + tcedilla.glif + tcedilla.ss01 + tcedilla.ss01.glif + tche-cy + tche-cy.glif + tcommaaccent + tcommaaccent.glif + tcommaaccent.ss01 + tcommaaccent.ss01.glif + te-cy + te-cy.glif + te-cy.BGR + te-cy.B_G_R_.glif + te-cy.SRB + te-cy.S_R_B_.glif + te-cy.ss01 + te-cy.ss01.glif + tenge + tenge.glif + tenmillionscomb-cy + tenmillionscomb-cy.glif + tetailcyr + tetailcyr.glif + tetsecyr + tetsecyr.glif + tewithmiddlehook-cy + tewithmiddlehook-cy.glif + thorn + thorn.glif + thousandmillionscomb-cy + thousandmillionscomb-cy.glif + thousandscyr + thousandscyr.glif + thousandscyr.dnom + thousandscyr.dnom.glif + three + three.glif + three.osf + three.osf.glif + three.tf + three.tf.glif + threequarters + threequarters.glif + threesuperior + threesuperior.glif + tilde + tilde.glif + tilde.case + tilde.case.glif + titlocombcyr + titlocombcyr.glif + tjekomicyr + tjekomicyr.glif + trademark + trademark.glif + tse-cy + tse-cy.glif + tse-cy.BGR + tse-cy.B_G_R_.glif + tseReversed-cy + tseR_eversed-cy.glif + tshecyr + tshecyr.glif + tsse-cy + tsse-cy.glif + tswe-cy + tswe-cy.glif + twe-cy + twe-cy.glif + two + two.glif + two.osf + two.osf.glif + two.tf + two.tf.glif + twosuperior + twosuperior.glif + u + u.glif + u-cy + u-cy.glif + u-cy.accented + u-cy.accented.glif + uacute + uacute.glif + uacutedblcyr + uacutedblcyr.glif + ubreve + ubreve.glif + ucircumflex + ucircumflex.glif + udieresis + udieresis.glif + udieresiscyr + udieresiscyr.glif + ugrave + ugrave.glif + uhungarumlaut + uhungarumlaut.glif + ukMonograph-cy + ukM_onograph-cy.glif + ukcyr + ukcyr.glif + umacron + umacron.glif + umacroncyr + umacroncyr.glif + underscore + underscore.glif + uni1C80 + uni1C_80.glif + uni1C81 + uni1C_81.glif + uni1C82 + uni1C_82.glif + uni1C83 + uni1C_83.glif + uni1C84 + uni1C_84.glif + uni1C85 + uni1C_85.glif + uni1C86 + uni1C_86.glif + uni1C87 + uni1C_87.glif + uni1C88 + uni1C_88.glif + uni1EBC + uni1E_B_C_.glif + uni1EBD + uni1E_B_D_.glif + uni2010 + uni2010.glif + uni2DEE + uni2D_E_E_.glif + uni2DEE.case + uni2D_E_E_.case.glif + uniE000 + uniE_000.glif + uniE000.alt + uniE_000.alt.glif + uniE01A + uniE_01A_.glif + uniF43A + uniF_43A_.glif + uniF43B + uniF_43B_.glif + uniF45D + uniF_45D_.glif + uniF45E + uniF_45E_.glif + uniF45F + uniF_45F_.glif + uniF475 + uniF_475.glif + uniF476 + uniF_476.glif + uniF477 + uniF_477.glif + uniF478 + uniF_478.glif + uniF479 + uniF_479.glif + uniF498 + uniF_498.glif + uniF499 + uniF_499.glif + uniF49A + uniF_49A_.glif + uniF49B + uniF_49B_.glif + uniF49C + uniF_49C_.glif + uniF49D + uniF_49D_.glif + uniF49E + uniF_49E_.glif + uniF49F + uniF_49F_.glif + uniF4C6 + uniF_4C_6.glif + uniF4C7 + uniF_4C_7.glif + uniF4CC + uniF_4C_C_.glif + uniF4CD + uniF_4C_D_.glif + uniF4D2 + uniF_4D_2.glif + uniF4D3 + uniF_4D_3.glif + uniF4D4 + uniF_4D_4.glif + uniF4D5 + uniF_4D_5.glif + uniF4D6 + uniF_4D_6.glif + uniF4D7 + uniF_4D_7.glif + uniF4D8 + uniF_4D_8.glif + uniF4D9 + uniF_4D_9.glif + uniF50E + uniF_50E_.glif + uniF50F + uniF_50F_.glif + uniF510 + uniF_510.glif + uniF511 + uniF_511.glif + uniF512 + uniF_512.glif + uniF513 + uniF_513.glif + uniF514 + uniF_514.glif + uniF515 + uniF_515.glif + uniF516 + uniF_516.glif + uniF517 + uniF_517.glif + uniF518 + uniF_518.glif + uniF519 + uniF_519.glif + uniF51A + uniF_51A_.glif + uniF51B + uniF_51B_.glif + uniF51C + uniF_51C_.glif + uniF51D + uniF_51D_.glif + uniF51E + uniF_51E_.glif + uniF51F + uniF_51F_.glif + uniF521 + uniF_521.glif + uniF522 + uniF_522.glif + uniF523 + uniF_523.glif + uniF524 + uniF_524.glif + uniF525 + uniF_525.glif + uniF526 + uniF_526.glif + uniF527 + uniF_527.glif + uniF528 + uniF_528.glif + uniF529 + uniF_529.glif + uniF52A + uniF_52A_.glif + uniF52B + uniF_52B_.glif + uniF52C + uniF_52C_.glif + uniF52D + uniF_52D_.glif + uniF52E + uniF_52E_.glif + uniF52F + uniF_52F_.glif + uniF532 + uniF_532.glif + uniF533 + uniF_533.glif + uniF536 + uniF_536.glif + uniF537 + uniF_537.glif + uniF538 + uniF_538.glif + uniF539 + uniF_539.glif + uniF830 + uniF_830.glif + uniF831 + uniF_831.glif + uniF833 + uniF_833.glif + uniF834 + uniF_834.glif + uniF839 + uniF_839.glif + uniF83A + uniF_83A_.glif + uniF86F + uniF_86F_.glif + uniF870 + uniF_870.glif + uniF872 + uniF_872.glif + uniF873 + uniF_873.glif + uniF875 + uniF_875.glif + uniF876 + uniF_876.glif + uniF878 + uniF_878.glif + uniF879 + uniF_879.glif + uniF87B + uniF_87B_.glif + uniF87C + uniF_87C_.glif + uniF87E + uniF_87E_.glif + uniF87F + uniF_87F_.glif + uogonek + uogonek.glif + uring + uring.glif + ushort-cy + ushort-cy.glif + ustraightcyr + ustraightcyr.glif + ustraightstrokecyr + ustraightstrokecyr.glif + utilde + utilde.glif + v + v.glif + ve-cy + ve-cy.glif + ve-cy.BGR + ve-cy.B_G_R_.glif + ve-cy.ss01 + ve-cy.ss01.glif + virgo + virgo.glif + vzmetcomb-cy + vzmetcomb-cy.glif + w + w.glif + wacute + wacute.glif + wcircumflex + wcircumflex.glif + wdieresis + wdieresis.glif + wecyr + wecyr.glif + wgrave + wgrave.glif + x + x.glif + xatailcyr + xatailcyr.glif + y + y.glif + yacute + yacute.glif + yaecyr + yaecyr.glif + yatIotified-cy + yatI_otified-cy.glif + yatcyr + yatcyr.glif + yatcyr.BGR + yatcyr.B_G_R_.glif + ycircumflex + ycircumflex.glif + ydieresis + ydieresis.glif + yen + yen.glif + yen.ss01 + yen.ss01.glif + yerNeutral-cy + yerN_eutral-cy.glif + yeru-cy + yeru-cy.glif + yeru-cy.accented + yeru-cy.accented.glif + yeru-cy.ss01 + yeru-cy.ss01.glif + yeruBackyer-cy + yeruB_ackyer-cy.glif + yi-cy + yi-cy.glif + yi-cy.alt + yi-cy.alt.glif + ylongdieresiscyr + ylongdieresiscyr.glif + yn-cy + yn-cy.glif + yuReversed-cy + yuR_eversed-cy.glif + yusBlended-cy + yusB_lended-cy.glif + yusClosedlittle-cy + yusC_losedlittle-cy.glif + yusbigcyr + yusbigcyr.glif + yusbigiotifiedcyr + yusbigiotifiedcyr.glif + yusbigiotifiedcyr.BGR + yusbigiotifiedcyr.B_G_R_.glif + yusiotifiedClosedLittle-cy + yusiotifiedC_losedL_ittle-cy.glif + yuslittlecyr + yuslittlecyr.glif + yuslittleiotifiedcyr + yuslittleiotifiedcyr.glif + z + z.glif + zacute + zacute.glif + zcaron + zcaron.glif + zdotaccent + zdotaccent.glif + ze-cy + ze-cy.glif + ze-cy.BGR + ze-cy.B_G_R_.glif + zedieresiscyr + zedieresiscyr.glif + zemlya-cy + zemlya-cy.glif + zero + zero.glif + zero.osf + zero.osf.glif + zero.tf + zero.tf.glif + zetailcyr + zetailcyr.glif + zetailcyr.BSH + zetailcyr.B_S_H_.glif + zhe-cy + zhe-cy.glif + zhe-cy.BGR + zhe-cy.B_G_R_.glif + zhebrevecyr + zhebrevecyr.glif + zhedieresiscyr + zhedieresiscyr.glif + zhetailcyr + zhetailcyr.glif + zhwe-cy + zhwe-cy.glif + zjekomicyr + zjekomicyr.glif + + diff --git a/sources/FixelText-Light.ufo/glyphs/copyright.glif b/sources/FixelText-Light.ufo/glyphs/copyright.glif new file mode 100644 index 00000000..d18bfe6e --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/copyright.glif @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-Light.ufo/glyphs/crossedo-cy.glif b/sources/FixelText-Light.ufo/glyphs/crossedo-cy.glif new file mode 100644 index 00000000..13ec927f --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/crossedo-cy.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + com.fontlab.recipe + o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/crossedswords.glif b/sources/FixelText-Light.ufo/glyphs/crossedswords.glif new file mode 100644 index 00000000..3b3a49db --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/crossedswords.glif @@ -0,0 +1,103 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/currency.glif b/sources/FixelText-Light.ufo/glyphs/currency.glif new file mode 100644 index 00000000..a23791ee --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/currency.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/d.glif b/sources/FixelText-Light.ufo/glyphs/d.glif new file mode 100644 index 00000000..c7a41e60 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/d.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l + + + diff --git a/sources/FixelText-Light.ufo/glyphs/d.ss01.glif b/sources/FixelText-Light.ufo/glyphs/d.ss01.glif new file mode 100644 index 00000000..7c118fe6 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/d.ss01.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/dagger.glif b/sources/FixelText-Light.ufo/glyphs/dagger.glif new file mode 100644 index 00000000..2d346e82 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/dagger.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/daggerdbl.glif b/sources/FixelText-Light.ufo/glyphs/daggerdbl.glif new file mode 100644 index 00000000..1b3eb9f6 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/daggerdbl.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/dcaron.glif b/sources/FixelText-Light.ufo/glyphs/dcaron.glif new file mode 100644 index 00000000..44234771 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/dcaron.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + d+caron.salt + + + diff --git a/sources/FixelText-Light.ufo/glyphs/dcaron.ss01.glif b/sources/FixelText-Light.ufo/glyphs/dcaron.ss01.glif new file mode 100644 index 00000000..74bc9401 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/dcaron.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + d.ss01+caron.salt + + + diff --git a/sources/FixelText-Light.ufo/glyphs/dchecyr.glif b/sources/FixelText-Light.ufo/glyphs/dchecyr.glif new file mode 100644 index 00000000..318102c3 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/dchecyr.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + д+10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/dcroat.glif b/sources/FixelText-Light.ufo/glyphs/dcroat.glif new file mode 100644 index 00000000..cd1ede3f --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/dcroat.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + d + com.fontlab.metricsRight + |hbar + + + diff --git a/sources/FixelText-Light.ufo/glyphs/dcroat.ss01.glif b/sources/FixelText-Light.ufo/glyphs/dcroat.ss01.glif new file mode 100644 index 00000000..d9e4025a --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/dcroat.ss01.glif @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + d.ss01 + com.fontlab.metricsRight + |hbar + + + diff --git a/sources/FixelText-Light.ufo/glyphs/de-cy.B_G_R_.glif b/sources/FixelText-Light.ufo/glyphs/de-cy.B_G_R_.glif new file mode 100644 index 00000000..09918769 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/de-cy.B_G_R_.glif @@ -0,0 +1,77 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + q + com.fontlab.metricsRight + q + com.fontlab.recipe + uni1C81 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/de-cy.glif b/sources/FixelText-Light.ufo/glyphs/de-cy.glif new file mode 100644 index 00000000..ddcdc308 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/de-cy.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/de-cy.ss01.glif b/sources/FixelText-Light.ufo/glyphs/de-cy.ss01.glif new file mode 100644 index 00000000..730607d1 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/de-cy.ss01.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/deS_oft-cy.glif b/sources/FixelText-Light.ufo/glyphs/deS_oft-cy.glif new file mode 100644 index 00000000..096f0b58 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/deS_oft-cy.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + д + com.fontlab.metricsRight + ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/degree.glif b/sources/FixelText-Light.ufo/glyphs/degree.glif new file mode 100644 index 00000000..57e52dac --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/degree.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/dekomicyr.glif b/sources/FixelText-Light.ufo/glyphs/dekomicyr.glif new file mode 100644 index 00000000..440f04ce --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/dekomicyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + d + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/diamondwhite-misc.glif b/sources/FixelText-Light.ufo/glyphs/diamondwhite-misc.glif new file mode 100644 index 00000000..a1f9a578 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/diamondwhite-misc.glif @@ -0,0 +1,145 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =43 + com.fontlab.metricsRight + =43 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/dieresis.alt.glif b/sources/FixelText-Light.ufo/glyphs/dieresis.alt.glif new file mode 100644 index 00000000..89fef938 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/dieresis.alt.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 1,0.6,0.994,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/dieresis.case.glif b/sources/FixelText-Light.ufo/glyphs/dieresis.case.glif new file mode 100644 index 00000000..7ee93c24 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/dieresis.case.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/dieresis.glif b/sources/FixelText-Light.ufo/glyphs/dieresis.glif new file mode 100644 index 00000000..bfd61362 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/dieresis.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/dieresisacute.glif b/sources/FixelText-Light.ufo/glyphs/dieresisacute.glif new file mode 100644 index 00000000..0c943fb3 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/dieresisacute.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/dieresiscase.alt.glif b/sources/FixelText-Light.ufo/glyphs/dieresiscase.alt.glif new file mode 100644 index 00000000..6b2d6623 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/dieresiscase.alt.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 1,0.6,0.994,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/divide.glif b/sources/FixelText-Light.ufo/glyphs/divide.glif new file mode 100644 index 00000000..8fdefd37 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/divide.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/djecyr.glif b/sources/FixelText-Light.ufo/glyphs/djecyr.glif new file mode 100644 index 00000000..eef240f1 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/djecyr.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hbar + com.fontlab.metricsRight + h + + + diff --git a/sources/FixelText-Light.ufo/glyphs/djekomicyr.glif b/sources/FixelText-Light.ufo/glyphs/djekomicyr.glif new file mode 100644 index 00000000..d3a3f30c --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/djekomicyr.glif @@ -0,0 +1,73 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + d + com.fontlab.metricsRight + njekomicyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/djerv-cy.glif b/sources/FixelText-Light.ufo/glyphs/djerv-cy.glif new file mode 100644 index 00000000..0139e476 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/djerv-cy.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + r() + com.fontlab.metricsRight + п-30 + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/dollar.glif b/sources/FixelText-Light.ufo/glyphs/dollar.glif new file mode 100644 index 00000000..eed97231 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/dollar.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + S + com.fontlab.metricsRight + S + + + diff --git a/sources/FixelText-Light.ufo/glyphs/dotaccent.case.glif b/sources/FixelText-Light.ufo/glyphs/dotaccent.case.glif new file mode 100644 index 00000000..359cf04f --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/dotaccent.case.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/dotaccent.glif b/sources/FixelText-Light.ufo/glyphs/dotaccent.glif new file mode 100644 index 00000000..e82ee42c --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/dotaccent.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/doubleo-cy.glif b/sources/FixelText-Light.ufo/glyphs/doubleo-cy.glif new file mode 100644 index 00000000..bf2974a8 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/doubleo-cy.glif @@ -0,0 +1,91 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + com.fontlab.recipe + o_o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/dramsignarmn.glif b/sources/FixelText-Light.ufo/glyphs/dramsignarmn.glif new file mode 100644 index 00000000..7c52440d --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/dramsignarmn.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/dwe-cy.glif b/sources/FixelText-Light.ufo/glyphs/dwe-cy.glif new file mode 100644 index 00000000..7224a297 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/dwe-cy.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + д + com.fontlab.metricsRight + д + com.fontlab.recipe + д + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/dze-cy.glif b/sources/FixelText-Light.ufo/glyphs/dze-cy.glif new file mode 100644 index 00000000..684af473 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/dze-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + s + + + diff --git a/sources/FixelText-Light.ufo/glyphs/dzeR_eversed-cy.glif b/sources/FixelText-Light.ufo/glyphs/dzeR_eversed-cy.glif new file mode 100644 index 00000000..381684cb --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/dzeR_eversed-cy.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |s + com.fontlab.metricsRight + |s + com.fontlab.recipe + s + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/dzeabkhcyr.glif b/sources/FixelText-Light.ufo/glyphs/dzeabkhcyr.glif new file mode 100644 index 00000000..6db60f3d --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/dzeabkhcyr.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + z-30 + com.fontlab.metricsRight + з-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/dzelo-cy.glif b/sources/FixelText-Light.ufo/glyphs/dzelo-cy.glif new file mode 100644 index 00000000..9a425eed --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/dzelo-cy.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/dzhecyr.glif b/sources/FixelText-Light.ufo/glyphs/dzhecyr.glif new file mode 100644 index 00000000..095116a0 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/dzhecyr.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelText-Light.ufo/glyphs/dzjekomicyr.glif b/sources/FixelText-Light.ufo/glyphs/dzjekomicyr.glif new file mode 100644 index 00000000..a648c891 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/dzjekomicyr.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + zjekomicyr + com.fontlab.metricsRight + ц-5 + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/dzwe-cy.glif b/sources/FixelText-Light.ufo/glyphs/dzwe-cy.glif new file mode 100644 index 00000000..b74c1490 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/dzwe-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + s + com.fontlab.metricsRight + s + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/dzze-cy.glif b/sources/FixelText-Light.ufo/glyphs/dzze-cy.glif new file mode 100644 index 00000000..29d4c2e1 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/dzze-cy.glif @@ -0,0 +1,84 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + д + com.fontlab.metricsRight + д-30 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/dzzhecyr.glif b/sources/FixelText-Light.ufo/glyphs/dzzhecyr.glif new file mode 100644 index 00000000..e7cc7cb2 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/dzzhecyr.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + д+5 + com.fontlab.metricsRight + ж+5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/e-cy.accented.glif b/sources/FixelText-Light.ufo/glyphs/e-cy.accented.glif new file mode 100644 index 00000000..74c91c41 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/e-cy.accented.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+acute + + + diff --git a/sources/FixelText-Light.ufo/glyphs/e-cy.glif b/sources/FixelText-Light.ufo/glyphs/e-cy.glif new file mode 100644 index 00000000..bdf5935d --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/e-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + c + + + diff --git a/sources/FixelText-Light.ufo/glyphs/e-cy.hist.glif b/sources/FixelText-Light.ufo/glyphs/e-cy.hist.glif new file mode 100644 index 00000000..ed209b2d --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/e-cy.hist.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + c + com.fontlab.recipe + uni1C83 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/e.glif b/sources/FixelText-Light.ufo/glyphs/e.glif new file mode 100644 index 00000000..a31f9568 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/e.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + + + diff --git a/sources/FixelText-Light.ufo/glyphs/e.ss01.glif b/sources/FixelText-Light.ufo/glyphs/e.ss01.glif new file mode 100644 index 00000000..de62651f --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/e.ss01.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + O-5 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/eacute.glif b/sources/FixelText-Light.ufo/glyphs/eacute.glif new file mode 100644 index 00000000..6a56566a --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/eacute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+acute + + + diff --git a/sources/FixelText-Light.ufo/glyphs/eacute.ss01.glif b/sources/FixelText-Light.ufo/glyphs/eacute.ss01.glif new file mode 100644 index 00000000..403ec636 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/eacute.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+acute + + + diff --git a/sources/FixelText-Light.ufo/glyphs/ebreve.glif b/sources/FixelText-Light.ufo/glyphs/ebreve.glif new file mode 100644 index 00000000..c939eb00 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/ebreve.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+breve + + + diff --git a/sources/FixelText-Light.ufo/glyphs/ebreve.ss01.glif b/sources/FixelText-Light.ufo/glyphs/ebreve.ss01.glif new file mode 100644 index 00000000..06c59515 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/ebreve.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+breve + + + diff --git a/sources/FixelText-Light.ufo/glyphs/ecaron.glif b/sources/FixelText-Light.ufo/glyphs/ecaron.glif new file mode 100644 index 00000000..94dc6682 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/ecaron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+caron + + + diff --git a/sources/FixelText-Light.ufo/glyphs/ecaron.ss01.glif b/sources/FixelText-Light.ufo/glyphs/ecaron.ss01.glif new file mode 100644 index 00000000..088ca225 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/ecaron.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+caron + + + diff --git a/sources/FixelText-Light.ufo/glyphs/ecircumflex.glif b/sources/FixelText-Light.ufo/glyphs/ecircumflex.glif new file mode 100644 index 00000000..161cd3a6 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/ecircumflex.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+circumflex + + + diff --git a/sources/FixelText-Light.ufo/glyphs/ecircumflex.ss01.glif b/sources/FixelText-Light.ufo/glyphs/ecircumflex.ss01.glif new file mode 100644 index 00000000..29f5194a --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/ecircumflex.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+circumflex + + + diff --git a/sources/FixelText-Light.ufo/glyphs/edieresis.glif b/sources/FixelText-Light.ufo/glyphs/edieresis.glif new file mode 100644 index 00000000..b820ae39 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/edieresis.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsLeft + e + com.fontlab.metricsRight + e + com.fontlab.recipe + e+dieresis + + + diff --git a/sources/FixelText-Light.ufo/glyphs/edieresis.ss01.glif b/sources/FixelText-Light.ufo/glyphs/edieresis.ss01.glif new file mode 100644 index 00000000..5e191c80 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/edieresis.ss01.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsLeft + e + com.fontlab.metricsRight + e + com.fontlab.recipe + e.ss01+dieresis + + + diff --git a/sources/FixelText-Light.ufo/glyphs/edotaccent.glif b/sources/FixelText-Light.ufo/glyphs/edotaccent.glif new file mode 100644 index 00000000..d796bb5c --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/edotaccent.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+dotaccent + + + diff --git a/sources/FixelText-Light.ufo/glyphs/edotaccent.ss01.glif b/sources/FixelText-Light.ufo/glyphs/edotaccent.ss01.glif new file mode 100644 index 00000000..e8bc10b6 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/edotaccent.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+dotaccent + + + diff --git a/sources/FixelText-Light.ufo/glyphs/ef-cy.glif b/sources/FixelText-Light.ufo/glyphs/ef-cy.glif new file mode 100644 index 00000000..2bdcf9dd --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/ef-cy.glif @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/egrave.glif b/sources/FixelText-Light.ufo/glyphs/egrave.glif new file mode 100644 index 00000000..106ac6b1 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/egrave.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+grave + + + diff --git a/sources/FixelText-Light.ufo/glyphs/egrave.ss01.glif b/sources/FixelText-Light.ufo/glyphs/egrave.ss01.glif new file mode 100644 index 00000000..9a611869 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/egrave.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+grave + + + diff --git a/sources/FixelText-Light.ufo/glyphs/eight.glif b/sources/FixelText-Light.ufo/glyphs/eight.glif new file mode 100644 index 00000000..97829668 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/eight.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/eight.osf.glif b/sources/FixelText-Light.ufo/glyphs/eight.osf.glif new file mode 100644 index 00000000..5c060186 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/eight.osf.glif @@ -0,0 +1,15 @@ + + + + + + + + + com.fontlab.metricsLeft + eight + com.fontlab.metricsRight + eight + + + diff --git a/sources/FixelText-Light.ufo/glyphs/eight.tf.glif b/sources/FixelText-Light.ufo/glyphs/eight.tf.glif new file mode 100644 index 00000000..cbd8a58a --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/eight.tf.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/eiotifiedcyr.B_G_R_.glif b/sources/FixelText-Light.ufo/glyphs/eiotifiedcyr.B_G_R_.glif new file mode 100644 index 00000000..0d078d6e --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/eiotifiedcyr.B_G_R_.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + c + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/eiotifiedcyr.glif b/sources/FixelText-Light.ufo/glyphs/eiotifiedcyr.glif new file mode 100644 index 00000000..87e6e9bb --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/eiotifiedcyr.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + c + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/el-cy.B_G_R_.glif b/sources/FixelText-Light.ufo/glyphs/el-cy.B_G_R_.glif new file mode 100644 index 00000000..a01e2176 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/el-cy.B_G_R_.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + v + com.fontlab.metricsRight + v + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/el-cy.glif b/sources/FixelText-Light.ufo/glyphs/el-cy.glif new file mode 100644 index 00000000..76d25d1b --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/el-cy.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelText-Light.ufo/glyphs/el-cy.ss01.glif b/sources/FixelText-Light.ufo/glyphs/el-cy.ss01.glif new file mode 100644 index 00000000..422db442 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/el-cy.ss01.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelText-Light.ufo/glyphs/elS_oft-cy.glif b/sources/FixelText-Light.ufo/glyphs/elS_oft-cy.glif new file mode 100644 index 00000000..64889f2b --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/elS_oft-cy.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/elhookcyr.glif b/sources/FixelText-Light.ufo/glyphs/elhookcyr.glif new file mode 100644 index 00000000..637bd39c --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/elhookcyr.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + н + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/ellipsis.glif b/sources/FixelText-Light.ufo/glyphs/ellipsis.glif new file mode 100644 index 00000000..1692b2fc --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/ellipsis.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/elmiddlehookcyr.glif b/sources/FixelText-Light.ufo/glyphs/elmiddlehookcyr.glif new file mode 100644 index 00000000..fb18e4bd --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/elmiddlehookcyr.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + enmiddlehookcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/elsharptailcyr.glif b/sources/FixelText-Light.ufo/glyphs/elsharptailcyr.glif new file mode 100644 index 00000000..836a5cbf --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/elsharptailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + ensharptailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/eltailcyr.glif b/sources/FixelText-Light.ufo/glyphs/eltailcyr.glif new file mode 100644 index 00000000..a19f11ad --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/eltailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/em-cy.glif b/sources/FixelText-Light.ufo/glyphs/em-cy.glif new file mode 100644 index 00000000..16aecea7 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/em-cy.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelText-Light.ufo/glyphs/emS_oft-cy.glif b/sources/FixelText-Light.ufo/glyphs/emS_oft-cy.glif new file mode 100644 index 00000000..63c737d2 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/emS_oft-cy.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + м + com.fontlab.metricsRight + ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/emacron.glif b/sources/FixelText-Light.ufo/glyphs/emacron.glif new file mode 100644 index 00000000..513fbcd6 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/emacron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+macron + + + diff --git a/sources/FixelText-Light.ufo/glyphs/emacron.ss01.glif b/sources/FixelText-Light.ufo/glyphs/emacron.ss01.glif new file mode 100644 index 00000000..457416a0 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/emacron.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+macron + + + diff --git a/sources/FixelText-Light.ufo/glyphs/emdash.case.glif b/sources/FixelText-Light.ufo/glyphs/emdash.case.glif new file mode 100644 index 00000000..a567da1a --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/emdash.case.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/emdash.glif b/sources/FixelText-Light.ufo/glyphs/emdash.glif new file mode 100644 index 00000000..51c5fa80 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/emdash.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/emsharptailcyr.glif b/sources/FixelText-Light.ufo/glyphs/emsharptailcyr.glif new file mode 100644 index 00000000..5296aaa1 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/emsharptailcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + м + com.fontlab.metricsRight + ensharptailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/en-cy.glif b/sources/FixelText-Light.ufo/glyphs/en-cy.glif new file mode 100644 index 00000000..7782ee0d --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/en-cy.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/enclosingcirclecomb.glif b/sources/FixelText-Light.ufo/glyphs/enclosingcirclecomb.glif new file mode 100644 index 00000000..f9348c9c --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/enclosingcirclecomb.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/endash.case.glif b/sources/FixelText-Light.ufo/glyphs/endash.case.glif new file mode 100644 index 00000000..fbc6f56d --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/endash.case.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/endash.glif b/sources/FixelText-Light.ufo/glyphs/endash.glif new file mode 100644 index 00000000..b534e4e6 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/endash.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/eng.glif b/sources/FixelText-Light.ufo/glyphs/eng.glif new file mode 100644 index 00000000..a62ff250 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/eng.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + n + com.fontlab.metricsRight + dotlessj + + + diff --git a/sources/FixelText-Light.ufo/glyphs/engecyr.glif b/sources/FixelText-Light.ufo/glyphs/engecyr.glif new file mode 100644 index 00000000..5c01e02a --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/engecyr.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/enhookcyr.glif b/sources/FixelText-Light.ufo/glyphs/enhookcyr.glif new file mode 100644 index 00000000..11b38a71 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/enhookcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/enhookleftcyr.glif b/sources/FixelText-Light.ufo/glyphs/enhookleftcyr.glif new file mode 100644 index 00000000..b9bb85db --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/enhookleftcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + j + com.fontlab.metricsRight + н + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/enmiddlehookcyr.glif b/sources/FixelText-Light.ufo/glyphs/enmiddlehookcyr.glif new file mode 100644 index 00000000..6baa981a --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/enmiddlehookcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + softsign-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/ensharptailcyr.glif b/sources/FixelText-Light.ufo/glyphs/ensharptailcyr.glif new file mode 100644 index 00000000..65725a67 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/ensharptailcyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + д + com.fontlab.recipe + entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/entailcyr.glif b/sources/FixelText-Light.ufo/glyphs/entailcyr.glif new file mode 100644 index 00000000..ad7b7e13 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/entailcyr.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + ц + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/eogonek.glif b/sources/FixelText-Light.ufo/glyphs/eogonek.glif new file mode 100644 index 00000000..8ad10408 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/eogonek.glif @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + e+ogonek + + + diff --git a/sources/FixelText-Light.ufo/glyphs/eogonek.ss01.glif b/sources/FixelText-Light.ufo/glyphs/eogonek.ss01.glif new file mode 100644 index 00000000..cd6460d5 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/eogonek.ss01.glif @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + e.ss01+ogonek + + + diff --git a/sources/FixelText-Light.ufo/glyphs/equal.glif b/sources/FixelText-Light.ufo/glyphs/equal.glif new file mode 100644 index 00000000..f97ccd11 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/equal.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/er-cy.glif b/sources/FixelText-Light.ufo/glyphs/er-cy.glif new file mode 100644 index 00000000..7a028602 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/er-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + p + + + diff --git a/sources/FixelText-Light.ufo/glyphs/er-cy.ss01.glif b/sources/FixelText-Light.ufo/glyphs/er-cy.ss01.glif new file mode 100644 index 00000000..864edb0c --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/er-cy.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + p.ss01 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/ereversed-cy.accented.glif b/sources/FixelText-Light.ufo/glyphs/ereversed-cy.accented.glif new file mode 100644 index 00000000..9eab9bce --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/ereversed-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + э+acute + + + diff --git a/sources/FixelText-Light.ufo/glyphs/ereversed-cy.glif b/sources/FixelText-Light.ufo/glyphs/ereversed-cy.glif new file mode 100644 index 00000000..3805ba1d --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/ereversed-cy.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |c + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelText-Light.ufo/glyphs/ereverseddieresiscyr.glif b/sources/FixelText-Light.ufo/glyphs/ereverseddieresiscyr.glif new file mode 100644 index 00000000..0d67bd9f --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/ereverseddieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ereversed-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/ertickcyr.glif b/sources/FixelText-Light.ufo/glyphs/ertickcyr.glif new file mode 100644 index 00000000..0f0ba042 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/ertickcyr.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + p + com.fontlab.metricsRight + p + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/es-cy.glif b/sources/FixelText-Light.ufo/glyphs/es-cy.glif new file mode 100644 index 00000000..dce16212 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/es-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c + + + diff --git a/sources/FixelText-Light.ufo/glyphs/estailcyr.B_S_H_.glif b/sources/FixelText-Light.ufo/glyphs/estailcyr.B_S_H_.glif new file mode 100644 index 00000000..0628fc21 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/estailcyr.B_S_H_.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + c + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/estailcyr.C_H_U_.glif b/sources/FixelText-Light.ufo/glyphs/estailcyr.C_H_U_.glif new file mode 100644 index 00000000..c1c45346 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/estailcyr.C_H_U_.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+cedilla + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/estailcyr.glif b/sources/FixelText-Light.ufo/glyphs/estailcyr.glif new file mode 100644 index 00000000..bd2051d8 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/estailcyr.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + с + com.fontlab.metricsRight + с + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/estimated.glif b/sources/FixelText-Light.ufo/glyphs/estimated.glif new file mode 100644 index 00000000..9a1ee5b3 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/estimated.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-Light.ufo/glyphs/eth.glif b/sources/FixelText-Light.ufo/glyphs/eth.glif new file mode 100644 index 00000000..21cc58c6 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/eth.glif @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelText-Light.ufo/glyphs/eturned.glif b/sources/FixelText-Light.ufo/glyphs/eturned.glif new file mode 100644 index 00000000..cf160776 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/eturned.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + schwacyr + + + diff --git a/sources/FixelText-Light.ufo/glyphs/euro.glif b/sources/FixelText-Light.ufo/glyphs/euro.glif new file mode 100644 index 00000000..c3aa6374 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/euro.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + C + + + diff --git a/sources/FixelText-Light.ufo/glyphs/exclam.glif b/sources/FixelText-Light.ufo/glyphs/exclam.glif new file mode 100644 index 00000000..4e670c2f --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/exclam.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/exclamdown.case.glif b/sources/FixelText-Light.ufo/glyphs/exclamdown.case.glif new file mode 100644 index 00000000..88bad440 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/exclamdown.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + exclamdown + com.fontlab.metricsRight + exclamdown + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/exclamdown.glif b/sources/FixelText-Light.ufo/glyphs/exclamdown.glif new file mode 100644 index 00000000..2473394c --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/exclamdown.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/f.glif b/sources/FixelText-Light.ufo/glyphs/f.glif new file mode 100644 index 00000000..9a975054 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/f.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/f.ss01.glif b/sources/FixelText-Light.ufo/glyphs/f.ss01.glif new file mode 100644 index 00000000..979c2c5f --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/f.ss01.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/f_f.glif b/sources/FixelText-Light.ufo/glyphs/f_f.glif new file mode 100644 index 00000000..169886c4 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/f_f.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f + com.fontlab.metricsRight + f + + + diff --git a/sources/FixelText-Light.ufo/glyphs/f_f.ss01.glif b/sources/FixelText-Light.ufo/glyphs/f_f.ss01.glif new file mode 100644 index 00000000..2c112fdf --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/f_f.ss01.glif @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f.ss01 + com.fontlab.metricsRight + f.ss01 + com.fontlab.recipe + f.ss01_f.ss01 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/f_f_i.glif b/sources/FixelText-Light.ufo/glyphs/f_f_i.glif new file mode 100644 index 00000000..f262bbec --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/f_f_i.glif @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f + com.fontlab.metricsRight + i + + + diff --git a/sources/FixelText-Light.ufo/glyphs/f_f_i.ss01.glif b/sources/FixelText-Light.ufo/glyphs/f_f_i.ss01.glif new file mode 100644 index 00000000..0e4fb9b2 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/f_f_i.ss01.glif @@ -0,0 +1,88 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f.ss01 + com.fontlab.metricsRight + i + com.fontlab.recipe + f.ss01_f.ss01_i + + + diff --git a/sources/FixelText-Light.ufo/glyphs/f_f_l.glif b/sources/FixelText-Light.ufo/glyphs/f_f_l.glif new file mode 100644 index 00000000..1dda1eec --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/f_f_l.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f + com.fontlab.metricsRight + l + + + diff --git a/sources/FixelText-Light.ufo/glyphs/f_f_l.ss01.glif b/sources/FixelText-Light.ufo/glyphs/f_f_l.ss01.glif new file mode 100644 index 00000000..f93a7323 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/f_f_l.ss01.glif @@ -0,0 +1,86 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f.ss01 + com.fontlab.metricsRight + l.ss01 + com.fontlab.recipe + f.ss01_f.ss01_l.ss01 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/fi.glif b/sources/FixelText-Light.ufo/glyphs/fi.glif new file mode 100644 index 00000000..d788d062 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/fi.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f + com.fontlab.metricsRight + i + + + diff --git a/sources/FixelText-Light.ufo/glyphs/fi.ss01.glif b/sources/FixelText-Light.ufo/glyphs/fi.ss01.glif new file mode 100644 index 00000000..29a7c746 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/fi.ss01.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f.ss01 + com.fontlab.metricsRight + i + com.fontlab.recipe + f.ss01_i + + + diff --git a/sources/FixelText-Light.ufo/glyphs/fitacyr.glif b/sources/FixelText-Light.ufo/glyphs/fitacyr.glif new file mode 100644 index 00000000..aa7553a1 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/fitacyr.glif @@ -0,0 +1,76 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + obarcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/five.glif b/sources/FixelText-Light.ufo/glyphs/five.glif new file mode 100644 index 00000000..bc89d161 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/five.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/five.osf.glif b/sources/FixelText-Light.ufo/glyphs/five.osf.glif new file mode 100644 index 00000000..083d3c73 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/five.osf.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + five + com.fontlab.metricsRight + five + + + diff --git a/sources/FixelText-Light.ufo/glyphs/five.tf.glif b/sources/FixelText-Light.ufo/glyphs/five.tf.glif new file mode 100644 index 00000000..517859ea --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/five.tf.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/fl.glif b/sources/FixelText-Light.ufo/glyphs/fl.glif new file mode 100644 index 00000000..dad5a216 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/fl.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f + com.fontlab.metricsRight + l + + + diff --git a/sources/FixelText-Light.ufo/glyphs/fl.ss01.glif b/sources/FixelText-Light.ufo/glyphs/fl.ss01.glif new file mode 100644 index 00000000..e69e1c80 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/fl.ss01.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f.ss01 + com.fontlab.metricsRight + l.ss01 + com.fontlab.recipe + f.ss01_l.ss01 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/floretteblack.glif b/sources/FixelText-Light.ufo/glyphs/floretteblack.glif new file mode 100644 index 00000000..36dd2679 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/floretteblack.glif @@ -0,0 +1,522 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/floretteoutlinedpetalledblackeight.glif b/sources/FixelText-Light.ufo/glyphs/floretteoutlinedpetalledblackeight.glif new file mode 100644 index 00000000..0a76cdb1 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/floretteoutlinedpetalledblackeight.glif @@ -0,0 +1,693 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/florettewhite.glif b/sources/FixelText-Light.ufo/glyphs/florettewhite.glif new file mode 100644 index 00000000..c51e1c17 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/florettewhite.glif @@ -0,0 +1,417 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/florin.glif b/sources/FixelText-Light.ufo/glyphs/florin.glif new file mode 100644 index 00000000..08cc1247 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/florin.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/flower.glif b/sources/FixelText-Light.ufo/glyphs/flower.glif new file mode 100644 index 00000000..6f2ebc4f --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/flower.glif @@ -0,0 +1,278 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/four.glif b/sources/FixelText-Light.ufo/glyphs/four.glif new file mode 100644 index 00000000..836ec36e --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/four.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/four.osf.glif b/sources/FixelText-Light.ufo/glyphs/four.osf.glif new file mode 100644 index 00000000..f7ed6521 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/four.osf.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + four + com.fontlab.metricsRight + four + + + diff --git a/sources/FixelText-Light.ufo/glyphs/four.tf.glif b/sources/FixelText-Light.ufo/glyphs/four.tf.glif new file mode 100644 index 00000000..640a974a --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/four.tf.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/fraction.glif b/sources/FixelText-Light.ufo/glyphs/fraction.glif new file mode 100644 index 00000000..cd323d5c --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/fraction.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/g.glif b/sources/FixelText-Light.ufo/glyphs/g.glif new file mode 100644 index 00000000..9e495276 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/g.glif @@ -0,0 +1,94 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/g.ss01.glif b/sources/FixelText-Light.ufo/glyphs/g.ss01.glif new file mode 100644 index 00000000..e2a62fdc --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/g.ss01.glif @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/gacute.glif b/sources/FixelText-Light.ufo/glyphs/gacute.glif new file mode 100644 index 00000000..b9649cbd --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/gacute.glif @@ -0,0 +1,109 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + g+acute + + + diff --git a/sources/FixelText-Light.ufo/glyphs/gacute.ss01.glif b/sources/FixelText-Light.ufo/glyphs/gacute.ss01.glif new file mode 100644 index 00000000..4012f2c8 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/gacute.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + g.ss01+acute + + + diff --git a/sources/FixelText-Light.ufo/glyphs/gbreve.glif b/sources/FixelText-Light.ufo/glyphs/gbreve.glif new file mode 100644 index 00000000..b1c81a2f --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/gbreve.glif @@ -0,0 +1,119 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + g+breve + + + diff --git a/sources/FixelText-Light.ufo/glyphs/gbreve.ss01.glif b/sources/FixelText-Light.ufo/glyphs/gbreve.ss01.glif new file mode 100644 index 00000000..ce9819b5 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/gbreve.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + g.ss01+breve + + + diff --git a/sources/FixelText-Light.ufo/glyphs/gcircumflex.glif b/sources/FixelText-Light.ufo/glyphs/gcircumflex.glif new file mode 100644 index 00000000..576a201b --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/gcircumflex.glif @@ -0,0 +1,113 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + g+circumflex + + + diff --git a/sources/FixelText-Light.ufo/glyphs/gcircumflex.ss01.glif b/sources/FixelText-Light.ufo/glyphs/gcircumflex.ss01.glif new file mode 100644 index 00000000..15e506a8 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/gcircumflex.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + g.ss01+circumflex + + + diff --git a/sources/FixelText-Light.ufo/glyphs/gcommaaccent.glif b/sources/FixelText-Light.ufo/glyphs/gcommaaccent.glif new file mode 100644 index 00000000..b9145fa8 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/gcommaaccent.glif @@ -0,0 +1,121 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + g+commaaccentcomb.salt + + + diff --git a/sources/FixelText-Light.ufo/glyphs/gcommaaccent.ss01.glif b/sources/FixelText-Light.ufo/glyphs/gcommaaccent.ss01.glif new file mode 100644 index 00000000..0ac7ae13 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/gcommaaccent.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + g.ss01+commaaccentcomb.salt + + + diff --git a/sources/FixelText-Light.ufo/glyphs/gdotaccent.glif b/sources/FixelText-Light.ufo/glyphs/gdotaccent.glif new file mode 100644 index 00000000..ff220e27 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/gdotaccent.glif @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + g+dotaccent + + + diff --git a/sources/FixelText-Light.ufo/glyphs/gdotaccent.ss01.glif b/sources/FixelText-Light.ufo/glyphs/gdotaccent.ss01.glif new file mode 100644 index 00000000..98c4fdd3 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/gdotaccent.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + g.ss01+dotaccent + + + diff --git a/sources/FixelText-Light.ufo/glyphs/ge-cy.B_G_R_.glif b/sources/FixelText-Light.ufo/glyphs/ge-cy.B_G_R_.glif new file mode 100644 index 00000000..152283ce --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/ge-cy.B_G_R_.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |s+5 + com.fontlab.metricsRight + |s+5 + com.fontlab.recipe + dzeReversed-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/ge-cy.S_R_B_.glif b/sources/FixelText-Light.ufo/glyphs/ge-cy.S_R_B_.glif new file mode 100644 index 00000000..9ca4441a --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/ge-cy.S_R_B_.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + iota-cy+macron + + + diff --git a/sources/FixelText-Light.ufo/glyphs/ge-cy.glif b/sources/FixelText-Light.ufo/glyphs/ge-cy.glif new file mode 100644 index 00000000..03eae73c --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/ge-cy.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + т + + + diff --git a/sources/FixelText-Light.ufo/glyphs/gehookcyr.glif b/sources/FixelText-Light.ufo/glyphs/gehookcyr.glif new file mode 100644 index 00000000..8a897e0a --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/gehookcyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + г + com.fontlab.metricsRight + enmiddlehookcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/gehookstrokecyr.glif b/sources/FixelText-Light.ufo/glyphs/gehookstrokecyr.glif new file mode 100644 index 00000000..b515a2a6 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/gehookstrokecyr.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + gestrokecyr + com.fontlab.metricsRight + gestrokecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/germandbls.glif b/sources/FixelText-Light.ufo/glyphs/germandbls.glif new file mode 100644 index 00000000..8362ba5b --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/germandbls.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + h-5 + com.fontlab.metricsRight + з + + + diff --git a/sources/FixelText-Light.ufo/glyphs/germandbls.ss01.glif b/sources/FixelText-Light.ufo/glyphs/germandbls.ss01.glif new file mode 100644 index 00000000..7d0c4780 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/germandbls.ss01.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f.ss01 + com.fontlab.metricsRight + з + + + diff --git a/sources/FixelText-Light.ufo/glyphs/gestrokecyr.B_S_H_.glif b/sources/FixelText-Light.ufo/glyphs/gestrokecyr.B_S_H_.glif new file mode 100644 index 00000000..29eecc03 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/gestrokecyr.B_S_H_.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + г + com.fontlab.metricsRight + gestrokecyr + com.fontlab.recipe + gestrokecyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/gestrokecyr.glif b/sources/FixelText-Light.ufo/glyphs/gestrokecyr.glif new file mode 100644 index 00000000..ce58e2fc --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/gestrokecyr.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + г + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/getailcyr.glif b/sources/FixelText-Light.ufo/glyphs/getailcyr.glif new file mode 100644 index 00000000..dd70b4f1 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/getailcyr.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + г + com.fontlab.metricsRight + г + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/gheupturn-cy.glif b/sources/FixelText-Light.ufo/glyphs/gheupturn-cy.glif new file mode 100644 index 00000000..0013eafd --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/gheupturn-cy.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + г + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/gjecyr.S_R_B_.glif b/sources/FixelText-Light.ufo/glyphs/gjecyr.S_R_B_.glif new file mode 100644 index 00000000..46851733 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/gjecyr.S_R_B_.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + iota-cy+macronacute.SRB + + + diff --git a/sources/FixelText-Light.ufo/glyphs/gjecyr.glif b/sources/FixelText-Light.ufo/glyphs/gjecyr.glif new file mode 100644 index 00000000..2f02bd43 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/gjecyr.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/grave.case.glif b/sources/FixelText-Light.ufo/glyphs/grave.case.glif new file mode 100644 index 00000000..cfdfa8ab --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/grave.case.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/grave.glif b/sources/FixelText-Light.ufo/glyphs/grave.glif new file mode 100644 index 00000000..b217fbe4 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/grave.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/greater.glif b/sources/FixelText-Light.ufo/glyphs/greater.glif new file mode 100644 index 00000000..a2184055 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/greater.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |less + com.fontlab.metricsRight + |less + + + diff --git a/sources/FixelText-Light.ufo/glyphs/greaterequal.glif b/sources/FixelText-Light.ufo/glyphs/greaterequal.glif new file mode 100644 index 00000000..61110a1d --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/greaterequal.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/guillemetleft.case.glif b/sources/FixelText-Light.ufo/glyphs/guillemetleft.case.glif new file mode 100644 index 00000000..aa14b2ca --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/guillemetleft.case.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + guilsinglleft + com.fontlab.metricsRight + guilsinglleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/guillemetleft.glif b/sources/FixelText-Light.ufo/glyphs/guillemetleft.glif new file mode 100644 index 00000000..fc083a8e --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/guillemetleft.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + guilsinglleft + com.fontlab.metricsRight + guilsinglleft + + + diff --git a/sources/FixelText-Light.ufo/glyphs/guillemetright.case.glif b/sources/FixelText-Light.ufo/glyphs/guillemetright.case.glif new file mode 100644 index 00000000..fe76d8a9 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/guillemetright.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |guillemetleft.case + com.fontlab.metricsRight + |guillemetleft.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/guillemetright.glif b/sources/FixelText-Light.ufo/glyphs/guillemetright.glif new file mode 100644 index 00000000..f92a04ee --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/guillemetright.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |guilsinglleft + com.fontlab.metricsRight + |guilsinglleft + + + diff --git a/sources/FixelText-Light.ufo/glyphs/guilsinglleft.case.glif b/sources/FixelText-Light.ufo/glyphs/guilsinglleft.case.glif new file mode 100644 index 00000000..ba635f05 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/guilsinglleft.case.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/guilsinglleft.glif b/sources/FixelText-Light.ufo/glyphs/guilsinglleft.glif new file mode 100644 index 00000000..91eb88b6 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/guilsinglleft.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/guilsinglright.case.glif b/sources/FixelText-Light.ufo/glyphs/guilsinglright.case.glif new file mode 100644 index 00000000..24a520af --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/guilsinglright.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |guilsinglleft + com.fontlab.metricsRight + |guilsinglleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/guilsinglright.glif b/sources/FixelText-Light.ufo/glyphs/guilsinglright.glif new file mode 100644 index 00000000..e6dd2291 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/guilsinglright.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + |guilsinglleft + com.fontlab.metricsRight + |guilsinglleft + + + diff --git a/sources/FixelText-Light.ufo/glyphs/h.glif b/sources/FixelText-Light.ufo/glyphs/h.glif new file mode 100644 index 00000000..e10f10b3 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/h.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + com.fontlab.metricsRight + n + + + diff --git a/sources/FixelText-Light.ufo/glyphs/ha-cy.glif b/sources/FixelText-Light.ufo/glyphs/ha-cy.glif new file mode 100644 index 00000000..642e3fee --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/ha-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + x + + + diff --git a/sources/FixelText-Light.ufo/glyphs/haabkhcyr.glif b/sources/FixelText-Light.ufo/glyphs/haabkhcyr.glif new file mode 100644 index 00000000..a53b2da3 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/haabkhcyr.glif @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + |o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/hahookcyr.glif b/sources/FixelText-Light.ufo/glyphs/hahookcyr.glif new file mode 100644 index 00000000..6b9cfcf1 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/hahookcyr.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + x + com.fontlab.metricsRight + x + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/hardsign-cy.B_G_R_.glif b/sources/FixelText-Light.ufo/glyphs/hardsign-cy.B_G_R_.glif new file mode 100644 index 00000000..818524f7 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/hardsign-cy.B_G_R_.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/hardsign-cy.glif b/sources/FixelText-Light.ufo/glyphs/hardsign-cy.glif new file mode 100644 index 00000000..74950ed1 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/hardsign-cy.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/hardsign-cy.ss01.glif b/sources/FixelText-Light.ufo/glyphs/hardsign-cy.ss01.glif new file mode 100644 index 00000000..9b2d72ea --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/hardsign-cy.ss01.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/hastrokecyr.glif b/sources/FixelText-Light.ufo/glyphs/hastrokecyr.glif new file mode 100644 index 00000000..b120bf54 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/hastrokecyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + x + com.fontlab.metricsRight + x + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/hbar.glif b/sources/FixelText-Light.ufo/glyphs/hbar.glif new file mode 100644 index 00000000..e93b205e --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/hbar.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + h + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/hcircumflex.glif b/sources/FixelText-Light.ufo/glyphs/hcircumflex.glif new file mode 100644 index 00000000..059185cd --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/hcircumflex.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + h+circumflex.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/heart.glif b/sources/FixelText-Light.ufo/glyphs/heart.glif new file mode 100644 index 00000000..935c720f --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/heart.glif @@ -0,0 +1,320 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/heartwhite.glif b/sources/FixelText-Light.ufo/glyphs/heartwhite.glif new file mode 100644 index 00000000..bbddb1a1 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/heartwhite.glif @@ -0,0 +1,189 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =37 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/hryvnia.glif b/sources/FixelText-Light.ufo/glyphs/hryvnia.glif new file mode 100644 index 00000000..0c1ebf01 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/hryvnia.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/hundredmillionscomb-cy.glif b/sources/FixelText-Light.ufo/glyphs/hundredmillionscomb-cy.glif new file mode 100644 index 00000000..6c63849b --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/hundredmillionscomb-cy.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/hundredthousandscombcyr.glif b/sources/FixelText-Light.ufo/glyphs/hundredthousandscombcyr.glif new file mode 100644 index 00000000..ce9d0e89 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/hundredthousandscombcyr.glif @@ -0,0 +1,141 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/hungarumlaut.case.glif b/sources/FixelText-Light.ufo/glyphs/hungarumlaut.case.glif new file mode 100644 index 00000000..96445619 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/hungarumlaut.case.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/hungarumlaut.glif b/sources/FixelText-Light.ufo/glyphs/hungarumlaut.glif new file mode 100644 index 00000000..1b24db79 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/hungarumlaut.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/hwe-cy.glif b/sources/FixelText-Light.ufo/glyphs/hwe-cy.glif new file mode 100644 index 00000000..499cf3a0 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/hwe-cy.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + h + com.fontlab.metricsRight + h + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/hyphen.case.glif b/sources/FixelText-Light.ufo/glyphs/hyphen.case.glif new file mode 100644 index 00000000..851eaad8 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/hyphen.case.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.metricsLeft + hyphen + com.fontlab.metricsRight + hyphen + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/hyphen.glif b/sources/FixelText-Light.ufo/glyphs/hyphen.glif new file mode 100644 index 00000000..0ddd3c0f --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/hyphen.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/i-cy.glif b/sources/FixelText-Light.ufo/glyphs/i-cy.glif new file mode 100644 index 00000000..ab31692f --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/i-cy.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + i + + + diff --git a/sources/FixelText-Light.ufo/glyphs/i.glif b/sources/FixelText-Light.ufo/glyphs/i.glif new file mode 100644 index 00000000..720df1e1 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/i.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + dotlessi+dotaccent + + + diff --git a/sources/FixelText-Light.ufo/glyphs/ia-cy.accented.glif b/sources/FixelText-Light.ufo/glyphs/ia-cy.accented.glif new file mode 100644 index 00000000..8105fe75 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/ia-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + я+acute + + + diff --git a/sources/FixelText-Light.ufo/glyphs/ia-cy.glif b/sources/FixelText-Light.ufo/glyphs/ia-cy.glif new file mode 100644 index 00000000..04c86750 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/ia-cy.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelText-Light.ufo/glyphs/ia-cy.ss01.glif b/sources/FixelText-Light.ufo/glyphs/ia-cy.ss01.glif new file mode 100644 index 00000000..86ebefd0 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/ia-cy.ss01.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/iacute.glif b/sources/FixelText-Light.ufo/glyphs/iacute.glif new file mode 100644 index 00000000..47b6156d --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/iacute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + dotlessi+acute + + + diff --git a/sources/FixelText-Light.ufo/glyphs/ibreve.glif b/sources/FixelText-Light.ufo/glyphs/ibreve.glif new file mode 100644 index 00000000..74834bb2 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/ibreve.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + dotlessi+breve + + + diff --git a/sources/FixelText-Light.ufo/glyphs/icircumflex.glif b/sources/FixelText-Light.ufo/glyphs/icircumflex.glif new file mode 100644 index 00000000..bf4e92b1 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/icircumflex.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + dotlessi+circumflex + + + diff --git a/sources/FixelText-Light.ufo/glyphs/idieresis.glif b/sources/FixelText-Light.ufo/glyphs/idieresis.glif new file mode 100644 index 00000000..1ff3e349 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/idieresis.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + idotless+dieresis.alt + + + diff --git a/sources/FixelText-Light.ufo/glyphs/idieresiscyr.glif b/sources/FixelText-Light.ufo/glyphs/idieresiscyr.glif new file mode 100644 index 00000000..946af6fa --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/idieresiscyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ii-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/idotless.glif b/sources/FixelText-Light.ufo/glyphs/idotless.glif new file mode 100644 index 00000000..83d96427 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/idotless.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/ie-cy.glif b/sources/FixelText-Light.ufo/glyphs/ie-cy.glif new file mode 100644 index 00000000..0263fa53 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/ie-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e + + + diff --git a/sources/FixelText-Light.ufo/glyphs/ie-cy.ss01.glif b/sources/FixelText-Light.ufo/glyphs/ie-cy.ss01.glif new file mode 100644 index 00000000..3ec3245c --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/ie-cy.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/iebrevecyr.glif b/sources/FixelText-Light.ufo/glyphs/iebrevecyr.glif new file mode 100644 index 00000000..90184e36 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/iebrevecyr.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+breve + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/iegravecyr.S_R_B_.glif b/sources/FixelText-Light.ufo/glyphs/iegravecyr.S_R_B_.glif new file mode 100644 index 00000000..310213d5 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/iegravecyr.S_R_B_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+grave + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/iegravecyr.glif b/sources/FixelText-Light.ufo/glyphs/iegravecyr.glif new file mode 100644 index 00000000..c13974d2 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/iegravecyr.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+grave + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/igrave.glif b/sources/FixelText-Light.ufo/glyphs/igrave.glif new file mode 100644 index 00000000..f1658bbe --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/igrave.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + dotlessi+grave + + + diff --git a/sources/FixelText-Light.ufo/glyphs/igravecyr.S_R_B_.glif b/sources/FixelText-Light.ufo/glyphs/igravecyr.S_R_B_.glif new file mode 100644 index 00000000..7b6f5d3e --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/igravecyr.S_R_B_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+grave + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/igravecyr.glif b/sources/FixelText-Light.ufo/glyphs/igravecyr.glif new file mode 100644 index 00000000..4e673712 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/igravecyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ii-cy+grave + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/ii-cy.B_G_R_.glif b/sources/FixelText-Light.ufo/glyphs/ii-cy.B_G_R_.glif new file mode 100644 index 00000000..e84ce26e --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/ii-cy.B_G_R_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/ii-cy.accented.glif b/sources/FixelText-Light.ufo/glyphs/ii-cy.accented.glif new file mode 100644 index 00000000..7ec3d00c --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/ii-cy.accented.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + и+acute + + + diff --git a/sources/FixelText-Light.ufo/glyphs/ii-cy.glif b/sources/FixelText-Light.ufo/glyphs/ii-cy.glif new file mode 100644 index 00000000..1d6e76b5 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/ii-cy.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelText-Light.ufo/glyphs/iishort-cy.B_G_R_.glif b/sources/FixelText-Light.ufo/glyphs/iishort-cy.B_G_R_.glif new file mode 100644 index 00000000..43b27934 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/iishort-cy.B_G_R_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/iishort-cy.glif b/sources/FixelText-Light.ufo/glyphs/iishort-cy.glif new file mode 100644 index 00000000..db86b197 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/iishort-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + icyr+breve + + + diff --git a/sources/FixelText-Light.ufo/glyphs/ij.glif b/sources/FixelText-Light.ufo/glyphs/ij.glif new file mode 100644 index 00000000..69f868c0 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/ij.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + i + com.fontlab.metricsRight + j + com.fontlab.recipe + i_j + + + diff --git a/sources/FixelText-Light.ufo/glyphs/imacron.glif b/sources/FixelText-Light.ufo/glyphs/imacron.glif new file mode 100644 index 00000000..15b8e56d --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/imacron.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =5 + com.fontlab.metricsRight + =5 + com.fontlab.recipe + idotless+macron + + + diff --git a/sources/FixelText-Light.ufo/glyphs/imacroncyr.glif b/sources/FixelText-Light.ufo/glyphs/imacroncyr.glif new file mode 100644 index 00000000..b3728f85 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/imacroncyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ii-cy+macron + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/increment.glif b/sources/FixelText-Light.ufo/glyphs/increment.glif new file mode 100644 index 00000000..36e39374 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/increment.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/infinity.glif b/sources/FixelText-Light.ufo/glyphs/infinity.glif new file mode 100644 index 00000000..ab7f91d9 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/infinity.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/integral.glif b/sources/FixelText-Light.ufo/glyphs/integral.glif new file mode 100644 index 00000000..6b1293ff --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/integral.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/io-cy.accented.glif b/sources/FixelText-Light.ufo/glyphs/io-cy.accented.glif new file mode 100644 index 00000000..5127cefe --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/io-cy.accented.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsLeft + e + com.fontlab.metricsRight + e + com.fontlab.recipe + e+dieresisacute + + + diff --git a/sources/FixelText-Light.ufo/glyphs/io-cy.glif b/sources/FixelText-Light.ufo/glyphs/io-cy.glif new file mode 100644 index 00000000..01d73832 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/io-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + edieresis + + + diff --git a/sources/FixelText-Light.ufo/glyphs/io-cy.ss01.glif b/sources/FixelText-Light.ufo/glyphs/io-cy.ss01.glif new file mode 100644 index 00000000..d1ee5a08 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/io-cy.ss01.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + edieresis.ss01 + com.schriftgestaltung.Glyphs.ComponentInfo + + + alignment + -1 + index + 0 + name + edieresis.ss01 + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/iogonek.glif b/sources/FixelText-Light.ufo/glyphs/iogonek.glif new file mode 100644 index 00000000..408d3f25 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/iogonek.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + i+ogonek + + + diff --git a/sources/FixelText-Light.ufo/glyphs/iota-cy.glif b/sources/FixelText-Light.ufo/glyphs/iota-cy.glif new file mode 100644 index 00000000..66d0088c --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/iota-cy.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l.ss01 + com.fontlab.metricsRight + l.ss01 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/iotifieda-cy.B_G_R_.glif b/sources/FixelText-Light.ufo/glyphs/iotifieda-cy.B_G_R_.glif new file mode 100644 index 00000000..f9934fec --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/iotifieda-cy.B_G_R_.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + el-cy.BGR + com.fontlab.recipe + iotifieda-cy + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/iotifieda-cy.glif b/sources/FixelText-Light.ufo/glyphs/iotifieda-cy.glif new file mode 100644 index 00000000..29eb1434 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/iotifieda-cy.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + yusClosedlittle-cy + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/iotifieda-cy.hist.glif b/sources/FixelText-Light.ufo/glyphs/iotifieda-cy.hist.glif new file mode 100644 index 00000000..044d2fd8 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/iotifieda-cy.hist.glif @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + reversedzecyr + com.fontlab.metricsRight + a + public.markColor + 0.6,0.997,1,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/ishortsharptailcyr.glif b/sources/FixelText-Light.ufo/glyphs/ishortsharptailcyr.glif new file mode 100644 index 00000000..c1613735 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/ishortsharptailcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + й + com.fontlab.metricsRight + ensharptailcyr + com.fontlab.recipe + й + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/itilde.glif b/sources/FixelText-Light.ufo/glyphs/itilde.glif new file mode 100644 index 00000000..9fb63fdd --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/itilde.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + dotlessi+tilde + + + diff --git a/sources/FixelText-Light.ufo/glyphs/iu-cy.B_G_R_.glif b/sources/FixelText-Light.ufo/glyphs/iu-cy.B_G_R_.glif new file mode 100644 index 00000000..4cbb7219 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/iu-cy.B_G_R_.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + o + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/iu-cy.accented.glif b/sources/FixelText-Light.ufo/glyphs/iu-cy.accented.glif new file mode 100644 index 00000000..b844a68f --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/iu-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ю+acute + + + diff --git a/sources/FixelText-Light.ufo/glyphs/iu-cy.glif b/sources/FixelText-Light.ufo/glyphs/iu-cy.glif new file mode 100644 index 00000000..56d69ddd --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/iu-cy.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelText-Light.ufo/glyphs/izhitsacyr.glif b/sources/FixelText-Light.ufo/glyphs/izhitsacyr.glif new file mode 100644 index 00000000..874814b7 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/izhitsacyr.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + v + com.fontlab.metricsRight + + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/izhitsagravedblcyr.glif b/sources/FixelText-Light.ufo/glyphs/izhitsagravedblcyr.glif new file mode 100644 index 00000000..9d9b938c --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/izhitsagravedblcyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + com.fontlab.metricsLeft + izhitsacyr + com.fontlab.metricsRight + izhitsacyr + com.fontlab.recipe + izhitsacyr+hungarumlaut + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/j.glif b/sources/FixelText-Light.ufo/glyphs/j.glif new file mode 100644 index 00000000..fbdf600e --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/j.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + i + com.fontlab.recipe + dotlessj+dotaccent + + + diff --git a/sources/FixelText-Light.ufo/glyphs/jcircumflex.glif b/sources/FixelText-Light.ufo/glyphs/jcircumflex.glif new file mode 100644 index 00000000..34a5542f --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/jcircumflex.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + dotlessj+circumflex + + + diff --git a/sources/FixelText-Light.ufo/glyphs/jdotless.glif b/sources/FixelText-Light.ufo/glyphs/jdotless.glif new file mode 100644 index 00000000..643bcce5 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/jdotless.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + l + + + diff --git a/sources/FixelText-Light.ufo/glyphs/je-cy.glif b/sources/FixelText-Light.ufo/glyphs/je-cy.glif new file mode 100644 index 00000000..b2802249 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/je-cy.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + j + + + diff --git a/sources/FixelText-Light.ufo/glyphs/k.glif b/sources/FixelText-Light.ufo/glyphs/k.glif new file mode 100644 index 00000000..69708579 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/k.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + + + diff --git a/sources/FixelText-Light.ufo/glyphs/ka-cy.B_G_R_.glif b/sources/FixelText-Light.ufo/glyphs/ka-cy.B_G_R_.glif new file mode 100644 index 00000000..43d29d04 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/ka-cy.B_G_R_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + k + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/ka-cy.glif b/sources/FixelText-Light.ufo/glyphs/ka-cy.glif new file mode 100644 index 00000000..ee260308 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/ka-cy.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + k + + + diff --git a/sources/FixelText-Light.ufo/glyphs/kaaleutcyr.glif b/sources/FixelText-Light.ufo/glyphs/kaaleutcyr.glif new file mode 100644 index 00000000..d0574c75 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/kaaleutcyr.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + k + com.fontlab.metricsRight + k + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/kabashkcyr.glif b/sources/FixelText-Light.ufo/glyphs/kabashkcyr.glif new file mode 100644 index 00000000..ebb9bfa0 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/kabashkcyr.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hardsign-cy + com.fontlab.metricsRight + k + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/kahookcyr.glif b/sources/FixelText-Light.ufo/glyphs/kahookcyr.glif new file mode 100644 index 00000000..1fdb6713 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/kahookcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + n + com.fontlab.metricsRight + k+10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/kastrokecyr.glif b/sources/FixelText-Light.ufo/glyphs/kastrokecyr.glif new file mode 100644 index 00000000..f20ea708 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/kastrokecyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hbar + com.fontlab.metricsRight + k + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/katailcyr.glif b/sources/FixelText-Light.ufo/glyphs/katailcyr.glif new file mode 100644 index 00000000..ef304c73 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/katailcyr.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + k + com.fontlab.metricsRight + к-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/kaverticalstrokecyr.glif b/sources/FixelText-Light.ufo/glyphs/kaverticalstrokecyr.glif new file mode 100644 index 00000000..a156860e --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/kaverticalstrokecyr.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + k + com.fontlab.metricsRight + k + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/kcommaaccent.glif b/sources/FixelText-Light.ufo/glyphs/kcommaaccent.glif new file mode 100644 index 00000000..e0165033 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/kcommaaccent.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsLeft + k + com.fontlab.metricsRight + k + com.fontlab.recipe + k+commaaccentcomb + + + diff --git a/sources/FixelText-Light.ufo/glyphs/kgreenlandic.glif b/sources/FixelText-Light.ufo/glyphs/kgreenlandic.glif new file mode 100644 index 00000000..6d65d4dd --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/kgreenlandic.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + kacyr + + + diff --git a/sources/FixelText-Light.ufo/glyphs/kjecyr.glif b/sources/FixelText-Light.ufo/glyphs/kjecyr.glif new file mode 100644 index 00000000..a9641075 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/kjecyr.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/knightblack.glif b/sources/FixelText-Light.ufo/glyphs/knightblack.glif new file mode 100644 index 00000000..169cbadd --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/knightblack.glif @@ -0,0 +1,313 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/knightwhite.glif b/sources/FixelText-Light.ufo/glyphs/knightwhite.glif new file mode 100644 index 00000000..fe305485 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/knightwhite.glif @@ -0,0 +1,320 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/koppacyr.glif b/sources/FixelText-Light.ufo/glyphs/koppacyr.glif new file mode 100644 index 00000000..9a706554 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/koppacyr.glif @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + c-20 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/ksicyr.glif b/sources/FixelText-Light.ufo/glyphs/ksicyr.glif new file mode 100644 index 00000000..b427b8f7 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/ksicyr.glif @@ -0,0 +1,102 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + з-10 + com.fontlab.metricsRight + з + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/l.glif b/sources/FixelText-Light.ufo/glyphs/l.glif new file mode 100644 index 00000000..1a8bc572 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/l.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/l.ss01.glif b/sources/FixelText-Light.ufo/glyphs/l.ss01.glif new file mode 100644 index 00000000..9be4b973 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/l.ss01.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/lacute.glif b/sources/FixelText-Light.ufo/glyphs/lacute.glif new file mode 100644 index 00000000..66215d97 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/lacute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l+acute.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/lacute.ss01.glif b/sources/FixelText-Light.ufo/glyphs/lacute.ss01.glif new file mode 100644 index 00000000..a93dc422 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/lacute.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l.ss01+acute.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/layerinfo.plist b/sources/FixelText-Light.ufo/glyphs/layerinfo.plist new file mode 100644 index 00000000..8c198655 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/layerinfo.plist @@ -0,0 +1,21 @@ + + + + + lib + + com.fontlab.layer.name + Body + com.fontlab.layer.opacity + 1 + com.fontlab.layer.visible + + com.fontlab.layer.locked + + com.fontlab.layer.service + + com.fontlab.layer.wireframe + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/lcaron.glif b/sources/FixelText-Light.ufo/glyphs/lcaron.glif new file mode 100644 index 00000000..d343e64c --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/lcaron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l+caron.salt + + + diff --git a/sources/FixelText-Light.ufo/glyphs/lcaron.ss01.glif b/sources/FixelText-Light.ufo/glyphs/lcaron.ss01.glif new file mode 100644 index 00000000..f2d9daba --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/lcaron.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l.ss01+caron.salt + + + diff --git a/sources/FixelText-Light.ufo/glyphs/lcommaaccent.glif b/sources/FixelText-Light.ufo/glyphs/lcommaaccent.glif new file mode 100644 index 00000000..cd0757a9 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/lcommaaccent.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l+commaaccentcomb + + + diff --git a/sources/FixelText-Light.ufo/glyphs/lcommaaccent.ss01.glif b/sources/FixelText-Light.ufo/glyphs/lcommaaccent.ss01.glif new file mode 100644 index 00000000..720f2d21 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/lcommaaccent.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l.ss01+commaaccentcomb + + + diff --git a/sources/FixelText-Light.ufo/glyphs/ldot.glif b/sources/FixelText-Light.ufo/glyphs/ldot.glif new file mode 100644 index 00000000..989e088a --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/ldot.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/ldot.ss01.glif b/sources/FixelText-Light.ufo/glyphs/ldot.ss01.glif new file mode 100644 index 00000000..2883935b --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/ldot.ss01.glif @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + l.ss01_periodcentered + + + diff --git a/sources/FixelText-Light.ufo/glyphs/leo.glif b/sources/FixelText-Light.ufo/glyphs/leo.glif new file mode 100644 index 00000000..9ebd0426 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/leo.glif @@ -0,0 +1,494 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/less.glif b/sources/FixelText-Light.ufo/glyphs/less.glif new file mode 100644 index 00000000..ff0c220d --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/less.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/lessequal.glif b/sources/FixelText-Light.ufo/glyphs/lessequal.glif new file mode 100644 index 00000000..0236f35b --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/lessequal.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/lhacyr.glif b/sources/FixelText-Light.ufo/glyphs/lhacyr.glif new file mode 100644 index 00000000..e40802e9 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/lhacyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + х + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/ljecyr.glif b/sources/FixelText-Light.ufo/glyphs/ljecyr.glif new file mode 100644 index 00000000..d32c41a6 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/ljecyr.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + ь + + + diff --git a/sources/FixelText-Light.ufo/glyphs/ljecyr.ss01.glif b/sources/FixelText-Light.ufo/glyphs/ljecyr.ss01.glif new file mode 100644 index 00000000..677a31ef --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/ljecyr.ss01.glif @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + ь + + + diff --git a/sources/FixelText-Light.ufo/glyphs/ljekomicyr.glif b/sources/FixelText-Light.ufo/glyphs/ljekomicyr.glif new file mode 100644 index 00000000..b2fa7574 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/ljekomicyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + njekomicyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/longs.glif b/sources/FixelText-Light.ufo/glyphs/longs.glif new file mode 100644 index 00000000..f706685c --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/longs.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + n + + + diff --git a/sources/FixelText-Light.ufo/glyphs/lslash.glif b/sources/FixelText-Light.ufo/glyphs/lslash.glif new file mode 100644 index 00000000..8fd5f079 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/lslash.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Lslash+12 + com.fontlab.metricsRight + |Lslash+12 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/lslash.ss01.glif b/sources/FixelText-Light.ufo/glyphs/lslash.ss01.glif new file mode 100644 index 00000000..b3af4e7e --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/lslash.ss01.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Lslash-10 + com.fontlab.metricsRight + |Lslash + + + diff --git a/sources/FixelText-Light.ufo/glyphs/m.glif b/sources/FixelText-Light.ufo/glyphs/m.glif new file mode 100644 index 00000000..d88c5330 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/m.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + n + com.fontlab.metricsRight + n + + + diff --git a/sources/FixelText-Light.ufo/glyphs/macron-fwd.alt.glif b/sources/FixelText-Light.ufo/glyphs/macron-fwd.alt.glif new file mode 100644 index 00000000..04d82788 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/macron-fwd.alt.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/macron-fwd.glif b/sources/FixelText-Light.ufo/glyphs/macron-fwd.glif new file mode 100644 index 00000000..d75c3f15 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/macron-fwd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/macron.case.glif b/sources/FixelText-Light.ufo/glyphs/macron.case.glif new file mode 100644 index 00000000..e4a2e86b --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/macron.case.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/macron.glif b/sources/FixelText-Light.ufo/glyphs/macron.glif new file mode 100644 index 00000000..f950904f --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/macron.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/macronacute.S_R_B_.glif b/sources/FixelText-Light.ufo/glyphs/macronacute.S_R_B_.glif new file mode 100644 index 00000000..56fa85ea --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/macronacute.S_R_B_.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + macron+acute + + + diff --git a/sources/FixelText-Light.ufo/glyphs/millionscombcyr.glif b/sources/FixelText-Light.ufo/glyphs/millionscombcyr.glif new file mode 100644 index 00000000..b404fcab --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/millionscombcyr.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/minus.glif b/sources/FixelText-Light.ufo/glyphs/minus.glif new file mode 100644 index 00000000..68432886 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/minus.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/minute.glif b/sources/FixelText-Light.ufo/glyphs/minute.glif new file mode 100644 index 00000000..222d9daa --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/minute.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/mu.glif b/sources/FixelText-Light.ufo/glyphs/mu.glif new file mode 100644 index 00000000..9b726c05 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/mu.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + p + com.fontlab.metricsRight + u + + + diff --git a/sources/FixelText-Light.ufo/glyphs/multiply.glif b/sources/FixelText-Light.ufo/glyphs/multiply.glif new file mode 100644 index 00000000..d2899ea5 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/multiply.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/n.glif b/sources/FixelText-Light.ufo/glyphs/n.glif new file mode 100644 index 00000000..c768f842 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/n.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/nacute.glif b/sources/FixelText-Light.ufo/glyphs/nacute.glif new file mode 100644 index 00000000..d66c4a0e --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/nacute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + n+acute + + + diff --git a/sources/FixelText-Light.ufo/glyphs/napostrophe.glif b/sources/FixelText-Light.ufo/glyphs/napostrophe.glif new file mode 100644 index 00000000..6ca47ef9 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/napostrophe.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + com.fontlab.metricsRight + n + com.schriftgestaltung.Glyphs.ComponentInfo + + + alignment + -1 + index + 0 + name + n + + + alignment + -1 + index + 1 + name + quoteright + + + com.schriftgestaltung.Glyphs.rightMetricsKey + n + + + diff --git a/sources/FixelText-Light.ufo/glyphs/ncaron.glif b/sources/FixelText-Light.ufo/glyphs/ncaron.glif new file mode 100644 index 00000000..82801684 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/ncaron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + n+caron + + + diff --git a/sources/FixelText-Light.ufo/glyphs/ncommaaccent.glif b/sources/FixelText-Light.ufo/glyphs/ncommaaccent.glif new file mode 100644 index 00000000..ce899cd9 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/ncommaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + n+commaaccentcomb + + + diff --git a/sources/FixelText-Light.ufo/glyphs/neptune.glif b/sources/FixelText-Light.ufo/glyphs/neptune.glif new file mode 100644 index 00000000..eca0909d --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/neptune.glif @@ -0,0 +1,125 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ш + com.fontlab.metricsRight + Ш + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/nine.glif b/sources/FixelText-Light.ufo/glyphs/nine.glif new file mode 100644 index 00000000..c13e2a54 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/nine.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + |six + com.fontlab.metricsRight + |six + + + diff --git a/sources/FixelText-Light.ufo/glyphs/nine.osf.glif b/sources/FixelText-Light.ufo/glyphs/nine.osf.glif new file mode 100644 index 00000000..50e02159 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/nine.osf.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |six + com.fontlab.metricsRight + |six + + + diff --git a/sources/FixelText-Light.ufo/glyphs/nine.tf.glif b/sources/FixelText-Light.ufo/glyphs/nine.tf.glif new file mode 100644 index 00000000..0bc5e3a4 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/nine.tf.glif @@ -0,0 +1,7 @@ + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/njecyr.glif b/sources/FixelText-Light.ufo/glyphs/njecyr.glif new file mode 100644 index 00000000..1cd5c0ff --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/njecyr.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + ь + + + diff --git a/sources/FixelText-Light.ufo/glyphs/njecyr.ss01.glif b/sources/FixelText-Light.ufo/glyphs/njecyr.ss01.glif new file mode 100644 index 00000000..cde8db8f --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/njecyr.ss01.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + ь + + + diff --git a/sources/FixelText-Light.ufo/glyphs/njekomicyr.glif b/sources/FixelText-Light.ufo/glyphs/njekomicyr.glif new file mode 100644 index 00000000..90e61810 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/njekomicyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + |u + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/notequal.glif b/sources/FixelText-Light.ufo/glyphs/notequal.glif new file mode 100644 index 00000000..f99016e1 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/notequal.glif @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/ntilde.glif b/sources/FixelText-Light.ufo/glyphs/ntilde.glif new file mode 100644 index 00000000..9c60b52a --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/ntilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + n+tilde + + + diff --git a/sources/FixelText-Light.ufo/glyphs/numbersign.glif b/sources/FixelText-Light.ufo/glyphs/numbersign.glif new file mode 100644 index 00000000..a6d751cf --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/numbersign.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/numero.glif b/sources/FixelText-Light.ufo/glyphs/numero.glif new file mode 100644 index 00000000..2865b703 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/numero.glif @@ -0,0 +1,90 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + N + com.fontlab.recipe + N+ordmasculine + com.schriftgestaltung.Glyphs.ComponentInfo + + + alignment + -1 + index + 0 + name + N + + + alignment + -1 + index + 1 + name + ordmasculine + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/numero.ss01.glif b/sources/FixelText-Light.ufo/glyphs/numero.ss01.glif new file mode 100644 index 00000000..0176cd66 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/numero.ss01.glif @@ -0,0 +1,95 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + N.ss01 + com.fontlab.metricsRight + ordmasculine + com.fontlab.recipe + N.ss01+ordmasculine + com.schriftgestaltung.Glyphs.ComponentInfo + + + alignment + -1 + index + 0 + name + ordmasculine + + + alignment + -1 + index + 1 + name + N.ss01 + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/o-cy.accented.glif b/sources/FixelText-Light.ufo/glyphs/o-cy.accented.glif new file mode 100644 index 00000000..ae2d755d --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/o-cy.accented.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+acute + + + diff --git a/sources/FixelText-Light.ufo/glyphs/o-cy.glif b/sources/FixelText-Light.ufo/glyphs/o-cy.glif new file mode 100644 index 00000000..b11a5058 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/o-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o + + + diff --git a/sources/FixelText-Light.ufo/glyphs/o.glif b/sources/FixelText-Light.ufo/glyphs/o.glif new file mode 100644 index 00000000..7bbbf6ba --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/o.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/oB_inocular-cy.glif b/sources/FixelText-Light.ufo/glyphs/oB_inocular-cy.glif new file mode 100644 index 00000000..5cbb496c --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/oB_inocular-cy.glif @@ -0,0 +1,81 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/oD_oubleM_onocular-cy.glif b/sources/FixelText-Light.ufo/glyphs/oD_oubleM_onocular-cy.glif new file mode 100644 index 00000000..f8ac62d5 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/oD_oubleM_onocular-cy.glif @@ -0,0 +1,121 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + com.fontlab.recipe + doubleo-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/oM_onocular-cy.glif b/sources/FixelText-Light.ufo/glyphs/oM_onocular-cy.glif new file mode 100644 index 00000000..cf9c5b81 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/oM_onocular-cy.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/oacute.glif b/sources/FixelText-Light.ufo/glyphs/oacute.glif new file mode 100644 index 00000000..8ce293e3 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/oacute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+acute + + + diff --git a/sources/FixelText-Light.ufo/glyphs/obarcyr.glif b/sources/FixelText-Light.ufo/glyphs/obarcyr.glif new file mode 100644 index 00000000..21658b36 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/obarcyr.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/obardieresiscyr.glif b/sources/FixelText-Light.ufo/glyphs/obardieresiscyr.glif new file mode 100644 index 00000000..bb43d0e3 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/obardieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + obarcyr+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/obreve.glif b/sources/FixelText-Light.ufo/glyphs/obreve.glif new file mode 100644 index 00000000..087cc9cf --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/obreve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+breve + + + diff --git a/sources/FixelText-Light.ufo/glyphs/ocircumflex.glif b/sources/FixelText-Light.ufo/glyphs/ocircumflex.glif new file mode 100644 index 00000000..3ce18ef7 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/ocircumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+circumflex + + + diff --git a/sources/FixelText-Light.ufo/glyphs/odieresis.glif b/sources/FixelText-Light.ufo/glyphs/odieresis.glif new file mode 100644 index 00000000..4738d6e5 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/odieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+dieresis + + + diff --git a/sources/FixelText-Light.ufo/glyphs/odieresiscyr.glif b/sources/FixelText-Light.ufo/glyphs/odieresiscyr.glif new file mode 100644 index 00000000..9cca8b33 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/odieresiscyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/oe.glif b/sources/FixelText-Light.ufo/glyphs/oe.glif new file mode 100644 index 00000000..2186eecc --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/oe.glif @@ -0,0 +1,86 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + e + + + diff --git a/sources/FixelText-Light.ufo/glyphs/oe.ss01.glif b/sources/FixelText-Light.ufo/glyphs/oe.ss01.glif new file mode 100644 index 00000000..1a2a2773 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/oe.ss01.glif @@ -0,0 +1,95 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + e.ss01 + public.markColor + 0.6,0.997,1,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/ogonek.glif b/sources/FixelText-Light.ufo/glyphs/ogonek.glif new file mode 100644 index 00000000..413e8f6e --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/ogonek.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/ograve.glif b/sources/FixelText-Light.ufo/glyphs/ograve.glif new file mode 100644 index 00000000..c4f42bc0 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/ograve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+grave + + + diff --git a/sources/FixelText-Light.ufo/glyphs/ohungarumlaut.glif b/sources/FixelText-Light.ufo/glyphs/ohungarumlaut.glif new file mode 100644 index 00000000..ce7ee26a --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/ohungarumlaut.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+hungarumlaut + + + diff --git a/sources/FixelText-Light.ufo/glyphs/omacron.glif b/sources/FixelText-Light.ufo/glyphs/omacron.glif new file mode 100644 index 00000000..96f5ed2a --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/omacron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+macron + + + diff --git a/sources/FixelText-Light.ufo/glyphs/omegaB_road-cy.glif b/sources/FixelText-Light.ufo/glyphs/omegaB_road-cy.glif new file mode 100644 index 00000000..469fcbe2 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/omegaB_road-cy.glif @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o+5 + com.fontlab.metricsRight + o+5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/omegacyr.glif b/sources/FixelText-Light.ufo/glyphs/omegacyr.glif new file mode 100644 index 00000000..6620d112 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/omegacyr.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + w + com.fontlab.metricsRight + w + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/omegaroundcyr.glif b/sources/FixelText-Light.ufo/glyphs/omegaroundcyr.glif new file mode 100644 index 00000000..40ff652b --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/omegaroundcyr.glif @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/omegatitlocyr.glif b/sources/FixelText-Light.ufo/glyphs/omegatitlocyr.glif new file mode 100644 index 00000000..c07f9b17 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/omegatitlocyr.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o+5 + com.fontlab.metricsRight + o+5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/omultiocular-cy.alt.glif b/sources/FixelText-Light.ufo/glyphs/omultiocular-cy.alt.glif new file mode 100644 index 00000000..71fa1484 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/omultiocular-cy.alt.glif @@ -0,0 +1,367 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + oMonocular-cy + com.fontlab.metricsRight + oMonocular-cy + public.markColor + 0.6,0.997,1,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/omultiocular-cy.glif b/sources/FixelText-Light.ufo/glyphs/omultiocular-cy.glif new file mode 100644 index 00000000..6007e94f --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/omultiocular-cy.glif @@ -0,0 +1,516 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + oMonocular-cy + com.fontlab.metricsRight + oMonocular-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/one.glif b/sources/FixelText-Light.ufo/glyphs/one.glif new file mode 100644 index 00000000..86406f0f --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/one.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =40 + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-Light.ufo/glyphs/one.osf.glif b/sources/FixelText-Light.ufo/glyphs/one.osf.glif new file mode 100644 index 00000000..516335a2 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/one.osf.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + one + com.fontlab.metricsRight + one + + + diff --git a/sources/FixelText-Light.ufo/glyphs/one.tf.glif b/sources/FixelText-Light.ufo/glyphs/one.tf.glif new file mode 100644 index 00000000..e3e1ca1d --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/one.tf.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/onehalf.glif b/sources/FixelText-Light.ufo/glyphs/onehalf.glif new file mode 100644 index 00000000..1ee2c5d4 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/onehalf.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/onequarter.glif b/sources/FixelText-Light.ufo/glyphs/onequarter.glif new file mode 100644 index 00000000..09c71b1f --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/onequarter.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/onesuperior.glif b/sources/FixelText-Light.ufo/glyphs/onesuperior.glif new file mode 100644 index 00000000..9bb996b5 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/onesuperior.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/ordfeminine.glif b/sources/FixelText-Light.ufo/glyphs/ordfeminine.glif new file mode 100644 index 00000000..8023e4ea --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/ordfeminine.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/ordmasculine.glif b/sources/FixelText-Light.ufo/glyphs/ordmasculine.glif new file mode 100644 index 00000000..5135be6e --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/ordmasculine.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/oslash.glif b/sources/FixelText-Light.ufo/glyphs/oslash.glif new file mode 100644 index 00000000..d5ea8edb --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/oslash.glif @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelText-Light.ufo/glyphs/oslashacute.glif b/sources/FixelText-Light.ufo/glyphs/oslashacute.glif new file mode 100644 index 00000000..f5763d86 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/oslashacute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + oslash+acute + + + diff --git a/sources/FixelText-Light.ufo/glyphs/otcyr.glif b/sources/FixelText-Light.ufo/glyphs/otcyr.glif new file mode 100644 index 00000000..964dc7fd --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/otcyr.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsRight + w + com.fontlab.recipe + omegacyr+uni2DEE + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/otilde.glif b/sources/FixelText-Light.ufo/glyphs/otilde.glif new file mode 100644 index 00000000..5e7ac63c --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/otilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+tilde + + + diff --git a/sources/FixelText-Light.ufo/glyphs/p.glif b/sources/FixelText-Light.ufo/glyphs/p.glif new file mode 100644 index 00000000..f616a7aa --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/p.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelText-Light.ufo/glyphs/p.ss01.glif b/sources/FixelText-Light.ufo/glyphs/p.ss01.glif new file mode 100644 index 00000000..a4f91534 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/p.ss01.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/palatcombcyr.glif b/sources/FixelText-Light.ufo/glyphs/palatcombcyr.glif new file mode 100644 index 00000000..4e34e10f --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/palatcombcyr.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/palochkacyr.glif b/sources/FixelText-Light.ufo/glyphs/palochkacyr.glif new file mode 100644 index 00000000..96198672 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/palochkacyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/paragraph.glif b/sources/FixelText-Light.ufo/glyphs/paragraph.glif new file mode 100644 index 00000000..e324e6a0 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/paragraph.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |P + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-Light.ufo/glyphs/parenleft.case.glif b/sources/FixelText-Light.ufo/glyphs/parenleft.case.glif new file mode 100644 index 00000000..2edff401 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/parenleft.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |parenright.case + com.fontlab.metricsRight + |parenright.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/parenleft.glif b/sources/FixelText-Light.ufo/glyphs/parenleft.glif new file mode 100644 index 00000000..5c7fc0a1 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/parenleft.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/parenright.case.glif b/sources/FixelText-Light.ufo/glyphs/parenright.case.glif new file mode 100644 index 00000000..9b2fe59b --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/parenright.case.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + parenright + com.fontlab.metricsRight + parenright + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/parenright.glif b/sources/FixelText-Light.ufo/glyphs/parenright.glif new file mode 100644 index 00000000..1b6bf433 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/parenright.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/partialdiff.glif b/sources/FixelText-Light.ufo/glyphs/partialdiff.glif new file mode 100644 index 00000000..00f17038 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/partialdiff.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-Light.ufo/glyphs/pe-cy.B_G_R_.glif b/sources/FixelText-Light.ufo/glyphs/pe-cy.B_G_R_.glif new file mode 100644 index 00000000..b869201b --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/pe-cy.B_G_R_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + n + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/pe-cy.S_R_B_.glif b/sources/FixelText-Light.ufo/glyphs/pe-cy.S_R_B_.glif new file mode 100644 index 00000000..24b82cdd --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/pe-cy.S_R_B_.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+macron-fwd.alt + + + diff --git a/sources/FixelText-Light.ufo/glyphs/pe-cy.glif b/sources/FixelText-Light.ufo/glyphs/pe-cy.glif new file mode 100644 index 00000000..03b62090 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/pe-cy.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelText-Light.ufo/glyphs/pehookcyr.glif b/sources/FixelText-Light.ufo/glyphs/pehookcyr.glif new file mode 100644 index 00000000..025d8873 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/pehookcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + п + com.fontlab.metricsRight + enmiddlehookcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/percent.glif b/sources/FixelText-Light.ufo/glyphs/percent.glif new file mode 100644 index 00000000..18f2dfe2 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/percent.glif @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/period.glif b/sources/FixelText-Light.ufo/glyphs/period.glif new file mode 100644 index 00000000..a732c9b0 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/period.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/periodcentered.glif b/sources/FixelText-Light.ufo/glyphs/periodcentered.glif new file mode 100644 index 00000000..9ff5f31a --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/periodcentered.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/perthousand.glif b/sources/FixelText-Light.ufo/glyphs/perthousand.glif new file mode 100644 index 00000000..d0c06888 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/perthousand.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/petailcyr.glif b/sources/FixelText-Light.ufo/glyphs/petailcyr.glif new file mode 100644 index 00000000..1426d615 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/petailcyr.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + п + com.fontlab.metricsRight + entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/pi.glif b/sources/FixelText-Light.ufo/glyphs/pi.glif new file mode 100644 index 00000000..187f0e18 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/pi.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f + com.fontlab.metricsRight + t + + + diff --git a/sources/FixelText-Light.ufo/glyphs/plus.glif b/sources/FixelText-Light.ufo/glyphs/plus.glif new file mode 100644 index 00000000..265f752b --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/plus.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/plusminus.glif b/sources/FixelText-Light.ufo/glyphs/plusminus.glif new file mode 100644 index 00000000..1e594ab2 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/plusminus.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/pokrytiecombcyr.glif b/sources/FixelText-Light.ufo/glyphs/pokrytiecombcyr.glif new file mode 100644 index 00000000..37895417 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/pokrytiecombcyr.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/product.glif b/sources/FixelText-Light.ufo/glyphs/product.glif new file mode 100644 index 00000000..98e4ac3b --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/product.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/proportional.glif b/sources/FixelText-Light.ufo/glyphs/proportional.glif new file mode 100644 index 00000000..eee63322 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/proportional.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/psicyr.glif b/sources/FixelText-Light.ufo/glyphs/psicyr.glif new file mode 100644 index 00000000..c51284bc --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/psicyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + u + com.fontlab.metricsRight + |u + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/q.glif b/sources/FixelText-Light.ufo/glyphs/q.glif new file mode 100644 index 00000000..631a21ed --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/q.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l + + + diff --git a/sources/FixelText-Light.ufo/glyphs/q.ss01.glif b/sources/FixelText-Light.ufo/glyphs/q.ss01.glif new file mode 100644 index 00000000..9b83d74b --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/q.ss01.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/qacyr.glif b/sources/FixelText-Light.ufo/glyphs/qacyr.glif new file mode 100644 index 00000000..6705951e --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/qacyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + q + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/question.glif b/sources/FixelText-Light.ufo/glyphs/question.glif new file mode 100644 index 00000000..a02b8bac --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/question.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/questiondown.case.glif b/sources/FixelText-Light.ufo/glyphs/questiondown.case.glif new file mode 100644 index 00000000..169e5048 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/questiondown.case.glif @@ -0,0 +1,19 @@ + + + + + + + + + com.fontlab.metricsLeft + |question + com.fontlab.metricsRight + |question + com.fontlab.recipe + questiondown + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/questiondown.glif b/sources/FixelText-Light.ufo/glyphs/questiondown.glif new file mode 100644 index 00000000..6ebf1b24 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/questiondown.glif @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |question + com.fontlab.metricsRight + |question + + + diff --git a/sources/FixelText-Light.ufo/glyphs/quotedbl.glif b/sources/FixelText-Light.ufo/glyphs/quotedbl.glif new file mode 100644 index 00000000..fa1018b8 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/quotedbl.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/quotedblbase.glif b/sources/FixelText-Light.ufo/glyphs/quotedblbase.glif new file mode 100644 index 00000000..829e3350 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/quotedblbase.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + comma + com.fontlab.metricsRight + comma + + + diff --git a/sources/FixelText-Light.ufo/glyphs/quotedblleft.glif b/sources/FixelText-Light.ufo/glyphs/quotedblleft.glif new file mode 100644 index 00000000..2b89c3da --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/quotedblleft.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + |comma + com.fontlab.metricsRight + |comma + + + diff --git a/sources/FixelText-Light.ufo/glyphs/quotedblright.glif b/sources/FixelText-Light.ufo/glyphs/quotedblright.glif new file mode 100644 index 00000000..7bc73546 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/quotedblright.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.metricsLeft + comma+20 + com.fontlab.metricsRight + comma-20 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/quoteleft.glif b/sources/FixelText-Light.ufo/glyphs/quoteleft.glif new file mode 100644 index 00000000..ba3eef5b --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/quoteleft.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + quotedblleft + com.fontlab.metricsRight + quotedblleft + + + diff --git a/sources/FixelText-Light.ufo/glyphs/quoteright.glif b/sources/FixelText-Light.ufo/glyphs/quoteright.glif new file mode 100644 index 00000000..d4d48390 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/quoteright.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + com.fontlab.metricsLeft + quotedblright + com.fontlab.metricsRight + quotedblright + + + diff --git a/sources/FixelText-Light.ufo/glyphs/quotesinglbase.glif b/sources/FixelText-Light.ufo/glyphs/quotesinglbase.glif new file mode 100644 index 00000000..038ecc22 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/quotesinglbase.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + com.fontlab.recipe + comma + + + diff --git a/sources/FixelText-Light.ufo/glyphs/quotesingle.glif b/sources/FixelText-Light.ufo/glyphs/quotesingle.glif new file mode 100644 index 00000000..d3bd1605 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/quotesingle.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/r.glif b/sources/FixelText-Light.ufo/glyphs/r.glif new file mode 100644 index 00000000..5920b5cc --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/r.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + + + diff --git a/sources/FixelText-Light.ufo/glyphs/racute.glif b/sources/FixelText-Light.ufo/glyphs/racute.glif new file mode 100644 index 00000000..e3ff1073 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/racute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + r+acute + + + diff --git a/sources/FixelText-Light.ufo/glyphs/radical.glif b/sources/FixelText-Light.ufo/glyphs/radical.glif new file mode 100644 index 00000000..e0633cab --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/radical.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + V + + + diff --git a/sources/FixelText-Light.ufo/glyphs/rcaron.glif b/sources/FixelText-Light.ufo/glyphs/rcaron.glif new file mode 100644 index 00000000..454dd25c --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/rcaron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + r+caron + + + diff --git a/sources/FixelText-Light.ufo/glyphs/rcommaaccent.glif b/sources/FixelText-Light.ufo/glyphs/rcommaaccent.glif new file mode 100644 index 00000000..fc1f08c4 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/rcommaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + r+commaaccentcomb + + + diff --git a/sources/FixelText-Light.ufo/glyphs/registered.glif b/sources/FixelText-Light.ufo/glyphs/registered.glif new file mode 100644 index 00000000..cf0174b2 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/registered.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-Light.ufo/glyphs/reversedzecyr.glif b/sources/FixelText-Light.ufo/glyphs/reversedzecyr.glif new file mode 100644 index 00000000..00219765 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/reversedzecyr.glif @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + + com.fontlab.metricsRight + + com.fontlab.recipe + з + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/rhacyr.glif b/sources/FixelText-Light.ufo/glyphs/rhacyr.glif new file mode 100644 index 00000000..26d987a9 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/rhacyr.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + p + com.fontlab.metricsRight + x + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/ring.case.glif b/sources/FixelText-Light.ufo/glyphs/ring.case.glif new file mode 100644 index 00000000..f1f3207f --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/ring.case.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/ring.glif b/sources/FixelText-Light.ufo/glyphs/ring.glif new file mode 100644 index 00000000..0bb30ce4 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/ring.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/rookblack.glif b/sources/FixelText-Light.ufo/glyphs/rookblack.glif new file mode 100644 index 00000000..ddb9a574 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/rookblack.glif @@ -0,0 +1,270 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/ruble.glif b/sources/FixelText-Light.ufo/glyphs/ruble.glif new file mode 100644 index 00000000..6c5bcb10 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/ruble.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + P + + + diff --git a/sources/FixelText-Light.ufo/glyphs/s.glif b/sources/FixelText-Light.ufo/glyphs/s.glif new file mode 100644 index 00000000..24294e9d --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/s.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/sacute.glif b/sources/FixelText-Light.ufo/glyphs/sacute.glif new file mode 100644 index 00000000..de262cd8 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/sacute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + s+acute + + + diff --git a/sources/FixelText-Light.ufo/glyphs/scaron.glif b/sources/FixelText-Light.ufo/glyphs/scaron.glif new file mode 100644 index 00000000..b023b3da --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/scaron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + s+caron + + + diff --git a/sources/FixelText-Light.ufo/glyphs/scedilla.glif b/sources/FixelText-Light.ufo/glyphs/scedilla.glif new file mode 100644 index 00000000..ea7d9d32 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/scedilla.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + s+cedilla + + + diff --git a/sources/FixelText-Light.ufo/glyphs/schwacyr.glif b/sources/FixelText-Light.ufo/glyphs/schwacyr.glif new file mode 100644 index 00000000..8b625b06 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/schwacyr.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |e + com.fontlab.metricsRight + o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/schwadieresiscyr.glif b/sources/FixelText-Light.ufo/glyphs/schwadieresiscyr.glif new file mode 100644 index 00000000..80e30617 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/schwadieresiscyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + schwacyr+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/scircumflex.glif b/sources/FixelText-Light.ufo/glyphs/scircumflex.glif new file mode 100644 index 00000000..21729eea --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/scircumflex.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + s+circumflex + + + diff --git a/sources/FixelText-Light.ufo/glyphs/scommaaccent.glif b/sources/FixelText-Light.ufo/glyphs/scommaaccent.glif new file mode 100644 index 00000000..4ef6e913 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/scommaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + s+commaaccentcomb + + + diff --git a/sources/FixelText-Light.ufo/glyphs/second.glif b/sources/FixelText-Light.ufo/glyphs/second.glif new file mode 100644 index 00000000..3913e59f --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/second.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/section.glif b/sources/FixelText-Light.ufo/glyphs/section.glif new file mode 100644 index 00000000..265eeda4 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/section.glif @@ -0,0 +1,87 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + S + com.fontlab.metricsRight + S + + + diff --git a/sources/FixelText-Light.ufo/glyphs/semicolon.case.glif b/sources/FixelText-Light.ufo/glyphs/semicolon.case.glif new file mode 100644 index 00000000..0f88b401 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/semicolon.case.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.metricsLeft + semicolon + com.fontlab.metricsRight + semicolon + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/semicolon.glif b/sources/FixelText-Light.ufo/glyphs/semicolon.glif new file mode 100644 index 00000000..e06dcac0 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/semicolon.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/semisoftcyr.glif b/sources/FixelText-Light.ufo/glyphs/semisoftcyr.glif new file mode 100644 index 00000000..06d06d3c --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/semisoftcyr.glif @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + t + com.fontlab.metricsRight + ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/seven.glif b/sources/FixelText-Light.ufo/glyphs/seven.glif new file mode 100644 index 00000000..9f879b73 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/seven.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/seven.osf.glif b/sources/FixelText-Light.ufo/glyphs/seven.osf.glif new file mode 100644 index 00000000..983f22e2 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/seven.osf.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + seven + com.fontlab.metricsRight + seven + + + diff --git a/sources/FixelText-Light.ufo/glyphs/seven.tf.glif b/sources/FixelText-Light.ufo/glyphs/seven.tf.glif new file mode 100644 index 00000000..f9cd9240 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/seven.tf.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/sha-cy.B_G_R_.glif b/sources/FixelText-Light.ufo/glyphs/sha-cy.B_G_R_.glif new file mode 100644 index 00000000..74eca4fd --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/sha-cy.B_G_R_.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + u + com.fontlab.metricsRight + l + com.fontlab.recipe + m + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/sha-cy.glif b/sources/FixelText-Light.ufo/glyphs/sha-cy.glif new file mode 100644 index 00000000..ec4631fc --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/sha-cy.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelText-Light.ufo/glyphs/shcha-cy.B_G_R_.glif b/sources/FixelText-Light.ufo/glyphs/shcha-cy.B_G_R_.glif new file mode 100644 index 00000000..063cdb10 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/shcha-cy.B_G_R_.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + u + com.fontlab.metricsRight + щ + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/shcha-cy.glif b/sources/FixelText-Light.ufo/glyphs/shcha-cy.glif new file mode 100644 index 00000000..438366d1 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/shcha-cy.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + д + + + diff --git a/sources/FixelText-Light.ufo/glyphs/shhacyr.glif b/sources/FixelText-Light.ufo/glyphs/shhacyr.glif new file mode 100644 index 00000000..d1e04f8a --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/shhacyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsRight + n + com.fontlab.recipe + h + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/shhatailcyr.glif b/sources/FixelText-Light.ufo/glyphs/shhatailcyr.glif new file mode 100644 index 00000000..47a7cd02 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/shhatailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + h + com.fontlab.metricsRight + entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/shwe-cy.glif b/sources/FixelText-Light.ufo/glyphs/shwe-cy.glif new file mode 100644 index 00000000..4c0bcb03 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/shwe-cy.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + щ + com.fontlab.metricsRight + щ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/six.glif b/sources/FixelText-Light.ufo/glyphs/six.glif new file mode 100644 index 00000000..e482410e --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/six.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/six.osf.glif b/sources/FixelText-Light.ufo/glyphs/six.osf.glif new file mode 100644 index 00000000..a7d4a1c0 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/six.osf.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + six + com.fontlab.metricsRight + six + + + diff --git a/sources/FixelText-Light.ufo/glyphs/six.tf.glif b/sources/FixelText-Light.ufo/glyphs/six.tf.glif new file mode 100644 index 00000000..cf79b013 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/six.tf.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/sjekomicyr.glif b/sources/FixelText-Light.ufo/glyphs/sjekomicyr.glif new file mode 100644 index 00000000..fd357578 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/sjekomicyr.glif @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + e + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/slash.case.glif b/sources/FixelText-Light.ufo/glyphs/slash.case.glif new file mode 100644 index 00000000..36c2d932 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/slash.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + slash + com.fontlab.metricsRight + slash + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/slash.glif b/sources/FixelText-Light.ufo/glyphs/slash.glif new file mode 100644 index 00000000..0ec3f2ec --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/slash.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/softsign-cy.B_G_R_.glif b/sources/FixelText-Light.ufo/glyphs/softsign-cy.B_G_R_.glif new file mode 100644 index 00000000..d67f76a8 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/softsign-cy.B_G_R_.glif @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + u + com.fontlab.metricsRight + ь-5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/softsign-cy.glif b/sources/FixelText-Light.ufo/glyphs/softsign-cy.glif new file mode 100644 index 00000000..800457c3 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/softsign-cy.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + + + diff --git a/sources/FixelText-Light.ufo/glyphs/softsign-cy.ss01.glif b/sources/FixelText-Light.ufo/glyphs/softsign-cy.ss01.glif new file mode 100644 index 00000000..e382adfb --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/softsign-cy.ss01.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/space.glif b/sources/FixelText-Light.ufo/glyphs/space.glif new file mode 100644 index 00000000..1be1e85a --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/space.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/spadewhite.glif b/sources/FixelText-Light.ufo/glyphs/spadewhite.glif new file mode 100644 index 00000000..ca276718 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/spadewhite.glif @@ -0,0 +1,453 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/sterling.glif b/sources/FixelText-Light.ufo/glyphs/sterling.glif new file mode 100644 index 00000000..fc69d391 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/sterling.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/summation.glif b/sources/FixelText-Light.ufo/glyphs/summation.glif new file mode 100644 index 00000000..978c478a --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/summation.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/t.glif b/sources/FixelText-Light.ufo/glyphs/t.glif new file mode 100644 index 00000000..f7848630 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/t.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/t.ss01.glif b/sources/FixelText-Light.ufo/glyphs/t.ss01.glif new file mode 100644 index 00000000..1bd53a17 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/t.ss01.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/tbar.glif b/sources/FixelText-Light.ufo/glyphs/tbar.glif new file mode 100644 index 00000000..661245d2 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/tbar.glif @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/tbar.ss01.glif b/sources/FixelText-Light.ufo/glyphs/tbar.ss01.glif new file mode 100644 index 00000000..83127d48 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/tbar.ss01.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/tcaron.glif b/sources/FixelText-Light.ufo/glyphs/tcaron.glif new file mode 100644 index 00000000..bca1ea0b --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/tcaron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.metricsLeft + t + com.fontlab.metricsRight + t + com.fontlab.recipe + t+caron.salt + + + diff --git a/sources/FixelText-Light.ufo/glyphs/tcaron.ss01.glif b/sources/FixelText-Light.ufo/glyphs/tcaron.ss01.glif new file mode 100644 index 00000000..4805ce81 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/tcaron.ss01.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + com.fontlab.recipe + t.ss01+caron.salt + + + diff --git a/sources/FixelText-Light.ufo/glyphs/tcedilla.glif b/sources/FixelText-Light.ufo/glyphs/tcedilla.glif new file mode 100644 index 00000000..0e80329e --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/tcedilla.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + t+cedilla + + + diff --git a/sources/FixelText-Light.ufo/glyphs/tcedilla.ss01.glif b/sources/FixelText-Light.ufo/glyphs/tcedilla.ss01.glif new file mode 100644 index 00000000..6bb7b85a --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/tcedilla.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + t.ss01+cedilla + + + diff --git a/sources/FixelText-Light.ufo/glyphs/tche-cy.glif b/sources/FixelText-Light.ufo/glyphs/tche-cy.glif new file mode 100644 index 00000000..de82cd00 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/tche-cy.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + tetsecyr-20 + com.fontlab.metricsRight + ч + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/tcommaaccent.glif b/sources/FixelText-Light.ufo/glyphs/tcommaaccent.glif new file mode 100644 index 00000000..17cc2c01 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/tcommaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + t+commaaccentcomb + + + diff --git a/sources/FixelText-Light.ufo/glyphs/tcommaaccent.ss01.glif b/sources/FixelText-Light.ufo/glyphs/tcommaaccent.ss01.glif new file mode 100644 index 00000000..1c7e8b2e --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/tcommaaccent.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + t.ss01+commaaccentcomb + + + diff --git a/sources/FixelText-Light.ufo/glyphs/te-cy.B_G_R_.glif b/sources/FixelText-Light.ufo/glyphs/te-cy.B_G_R_.glif new file mode 100644 index 00000000..8b0ff8bb --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/te-cy.B_G_R_.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + m + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/te-cy.S_R_B_.glif b/sources/FixelText-Light.ufo/glyphs/te-cy.S_R_B_.glif new file mode 100644 index 00000000..37ecea32 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/te-cy.S_R_B_.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ш.BGR+macron-fwd + + + diff --git a/sources/FixelText-Light.ufo/glyphs/te-cy.glif b/sources/FixelText-Light.ufo/glyphs/te-cy.glif new file mode 100644 index 00000000..bf81fa5c --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/te-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/te-cy.ss01.glif b/sources/FixelText-Light.ufo/glyphs/te-cy.ss01.glif new file mode 100644 index 00000000..92847806 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/te-cy.ss01.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/tenge.glif b/sources/FixelText-Light.ufo/glyphs/tenge.glif new file mode 100644 index 00000000..7838197b --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/tenge.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + T + + + diff --git a/sources/FixelText-Light.ufo/glyphs/tenmillionscomb-cy.glif b/sources/FixelText-Light.ufo/glyphs/tenmillionscomb-cy.glif new file mode 100644 index 00000000..5abe08fd --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/tenmillionscomb-cy.glif @@ -0,0 +1,109 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/tetailcyr.glif b/sources/FixelText-Light.ufo/glyphs/tetailcyr.glif new file mode 100644 index 00000000..df1a5b6f --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/tetailcyr.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + т + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/tetsecyr.glif b/sources/FixelText-Light.ufo/glyphs/tetsecyr.glif new file mode 100644 index 00000000..0c8eb148 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/tetsecyr.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + т + com.fontlab.metricsRight + ц + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/tewithmiddlehook-cy.glif b/sources/FixelText-Light.ufo/glyphs/tewithmiddlehook-cy.glif new file mode 100644 index 00000000..13efed1a --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/tewithmiddlehook-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + т + com.fontlab.metricsRight + gehookcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/thorn.glif b/sources/FixelText-Light.ufo/glyphs/thorn.glif new file mode 100644 index 00000000..3037f06b --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/thorn.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + b + com.fontlab.metricsRight + b + + + diff --git a/sources/FixelText-Light.ufo/glyphs/thousandmillionscomb-cy.glif b/sources/FixelText-Light.ufo/glyphs/thousandmillionscomb-cy.glif new file mode 100644 index 00000000..a9396945 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/thousandmillionscomb-cy.glif @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/thousandscyr.dnom.glif b/sources/FixelText-Light.ufo/glyphs/thousandscyr.dnom.glif new file mode 100644 index 00000000..1bfb4ee6 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/thousandscyr.dnom.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + | + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/thousandscyr.glif b/sources/FixelText-Light.ufo/glyphs/thousandscyr.glif new file mode 100644 index 00000000..a37b2a88 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/thousandscyr.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + | + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/three.glif b/sources/FixelText-Light.ufo/glyphs/three.glif new file mode 100644 index 00000000..0ea61c00 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/three.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/three.osf.glif b/sources/FixelText-Light.ufo/glyphs/three.osf.glif new file mode 100644 index 00000000..52d54ee7 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/three.osf.glif @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + three + com.fontlab.metricsRight + three + + + diff --git a/sources/FixelText-Light.ufo/glyphs/three.tf.glif b/sources/FixelText-Light.ufo/glyphs/three.tf.glif new file mode 100644 index 00000000..0cce4109 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/three.tf.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/threequarters.glif b/sources/FixelText-Light.ufo/glyphs/threequarters.glif new file mode 100644 index 00000000..3d761aa3 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/threequarters.glif @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/threesuperior.glif b/sources/FixelText-Light.ufo/glyphs/threesuperior.glif new file mode 100644 index 00000000..97da26be --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/threesuperior.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/tilde.case.glif b/sources/FixelText-Light.ufo/glyphs/tilde.case.glif new file mode 100644 index 00000000..edcb3ebf --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/tilde.case.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/tilde.glif b/sources/FixelText-Light.ufo/glyphs/tilde.glif new file mode 100644 index 00000000..de0f5805 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/tilde.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/titlocombcyr.glif b/sources/FixelText-Light.ufo/glyphs/titlocombcyr.glif new file mode 100644 index 00000000..3c8bfc3a --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/titlocombcyr.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/tjekomicyr.glif b/sources/FixelText-Light.ufo/glyphs/tjekomicyr.glif new file mode 100644 index 00000000..ed49b415 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/tjekomicyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + т + com.fontlab.metricsRight + njekomicyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/trademark.glif b/sources/FixelText-Light.ufo/glyphs/trademark.glif new file mode 100644 index 00000000..3387439b --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/trademark.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/tse-cy.B_G_R_.glif b/sources/FixelText-Light.ufo/glyphs/tse-cy.B_G_R_.glif new file mode 100644 index 00000000..200d85da --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/tse-cy.B_G_R_.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + u + com.fontlab.metricsRight + ц + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/tse-cy.glif b/sources/FixelText-Light.ufo/glyphs/tse-cy.glif new file mode 100644 index 00000000..077112d5 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/tse-cy.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + д + + + diff --git a/sources/FixelText-Light.ufo/glyphs/tseR_eversed-cy.glif b/sources/FixelText-Light.ufo/glyphs/tseR_eversed-cy.glif new file mode 100644 index 00000000..6e5e107d --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/tseR_eversed-cy.glif @@ -0,0 +1,20 @@ + + + + + + + + + + com.fontlab.metricsLeft + + com.fontlab.metricsRight + н + com.fontlab.recipe + ц + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/tshecyr.glif b/sources/FixelText-Light.ufo/glyphs/tshecyr.glif new file mode 100644 index 00000000..0da02fd7 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/tshecyr.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + hbar + + + diff --git a/sources/FixelText-Light.ufo/glyphs/tsse-cy.glif b/sources/FixelText-Light.ufo/glyphs/tsse-cy.glif new file mode 100644 index 00000000..81e3dcc5 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/tsse-cy.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + т + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/tswe-cy.glif b/sources/FixelText-Light.ufo/glyphs/tswe-cy.glif new file mode 100644 index 00000000..92061cc4 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/tswe-cy.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ш + com.fontlab.metricsRight + shwe-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/twe-cy.glif b/sources/FixelText-Light.ufo/glyphs/twe-cy.glif new file mode 100644 index 00000000..5c4d86f6 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/twe-cy.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + т.ss01 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/two.glif b/sources/FixelText-Light.ufo/glyphs/two.glif new file mode 100644 index 00000000..2ce408d5 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/two.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/two.osf.glif b/sources/FixelText-Light.ufo/glyphs/two.osf.glif new file mode 100644 index 00000000..7610bec8 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/two.osf.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + two + com.fontlab.metricsRight + two + + + diff --git a/sources/FixelText-Light.ufo/glyphs/two.tf.glif b/sources/FixelText-Light.ufo/glyphs/two.tf.glif new file mode 100644 index 00000000..d188ebac --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/two.tf.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/twosuperior.glif b/sources/FixelText-Light.ufo/glyphs/twosuperior.glif new file mode 100644 index 00000000..66fbfbd4 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/twosuperior.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/u-cy.accented.glif b/sources/FixelText-Light.ufo/glyphs/u-cy.accented.glif new file mode 100644 index 00000000..1de7dfac --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/u-cy.accented.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + y+acute + + + diff --git a/sources/FixelText-Light.ufo/glyphs/u-cy.glif b/sources/FixelText-Light.ufo/glyphs/u-cy.glif new file mode 100644 index 00000000..d7c9bea5 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/u-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + y + + + diff --git a/sources/FixelText-Light.ufo/glyphs/u.glif b/sources/FixelText-Light.ufo/glyphs/u.glif new file mode 100644 index 00000000..b3aafbb5 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/u.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |n + com.fontlab.metricsRight + l + + + diff --git a/sources/FixelText-Light.ufo/glyphs/uacute.glif b/sources/FixelText-Light.ufo/glyphs/uacute.glif new file mode 100644 index 00000000..fdc5ba13 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/uacute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+acute + + + diff --git a/sources/FixelText-Light.ufo/glyphs/uacutedblcyr.glif b/sources/FixelText-Light.ufo/glyphs/uacutedblcyr.glif new file mode 100644 index 00000000..dc3fca9d --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/uacutedblcyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u-cy+hungarumlaut + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/ubreve.glif b/sources/FixelText-Light.ufo/glyphs/ubreve.glif new file mode 100644 index 00000000..4b562b47 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/ubreve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+breve + + + diff --git a/sources/FixelText-Light.ufo/glyphs/ucircumflex.glif b/sources/FixelText-Light.ufo/glyphs/ucircumflex.glif new file mode 100644 index 00000000..2b15dd7a --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/ucircumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+circumflex + + + diff --git a/sources/FixelText-Light.ufo/glyphs/udieresis.glif b/sources/FixelText-Light.ufo/glyphs/udieresis.glif new file mode 100644 index 00000000..188387fb --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/udieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+dieresis + + + diff --git a/sources/FixelText-Light.ufo/glyphs/udieresiscyr.glif b/sources/FixelText-Light.ufo/glyphs/udieresiscyr.glif new file mode 100644 index 00000000..82822294 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/udieresiscyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/ugrave.glif b/sources/FixelText-Light.ufo/glyphs/ugrave.glif new file mode 100644 index 00000000..dc6c87d6 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/ugrave.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+grave + + + diff --git a/sources/FixelText-Light.ufo/glyphs/uhungarumlaut.glif b/sources/FixelText-Light.ufo/glyphs/uhungarumlaut.glif new file mode 100644 index 00000000..91991efa --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/uhungarumlaut.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+hungarumlaut + + + diff --git a/sources/FixelText-Light.ufo/glyphs/ukM_onograph-cy.glif b/sources/FixelText-Light.ufo/glyphs/ukM_onograph-cy.glif new file mode 100644 index 00000000..22fd328e --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/ukM_onograph-cy.glif @@ -0,0 +1,78 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + y-30 + com.fontlab.metricsRight + y-20 + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/ukcyr.glif b/sources/FixelText-Light.ufo/glyphs/ukcyr.glif new file mode 100644 index 00000000..5226db3d --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/ukcyr.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + y + com.fontlab.recipe + uni1C82_у + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/umacron.glif b/sources/FixelText-Light.ufo/glyphs/umacron.glif new file mode 100644 index 00000000..946d89db --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/umacron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+macron + + + diff --git a/sources/FixelText-Light.ufo/glyphs/umacroncyr.glif b/sources/FixelText-Light.ufo/glyphs/umacroncyr.glif new file mode 100644 index 00000000..281b3cd7 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/umacroncyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u-cy+macron + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/underscore.glif b/sources/FixelText-Light.ufo/glyphs/underscore.glif new file mode 100644 index 00000000..9668e542 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/underscore.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/uni1C_80.glif b/sources/FixelText-Light.ufo/glyphs/uni1C_80.glif new file mode 100644 index 00000000..37137ae1 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/uni1C_80.glif @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + б + com.fontlab.metricsRight + o-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/uni1C_81.glif b/sources/FixelText-Light.ufo/glyphs/uni1C_81.glif new file mode 100644 index 00000000..62244054 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/uni1C_81.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + д-10 + com.fontlab.metricsRight + | + com.fontlab.recipe + д + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/uni1C_82.glif b/sources/FixelText-Light.ufo/glyphs/uni1C_82.glif new file mode 100644 index 00000000..2f32693e --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/uni1C_82.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/uni1C_83.glif b/sources/FixelText-Light.ufo/glyphs/uni1C_83.glif new file mode 100644 index 00000000..926fe3db --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/uni1C_83.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + c + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/uni1C_84.glif b/sources/FixelText-Light.ufo/glyphs/uni1C_84.glif new file mode 100644 index 00000000..fb20f081 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/uni1C_84.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/uni1C_85.glif b/sources/FixelText-Light.ufo/glyphs/uni1C_85.glif new file mode 100644 index 00000000..671ec00e --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/uni1C_85.glif @@ -0,0 +1,20 @@ + + + + + + + + + + com.fontlab.metricsLeft + ш + com.fontlab.metricsRight + l() + com.fontlab.recipe + ш + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/uni1C_86.glif b/sources/FixelText-Light.ufo/glyphs/uni1C_86.glif new file mode 100644 index 00000000..23114f34 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/uni1C_86.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + uni1C84 + com.fontlab.metricsRight + ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/uni1C_87.glif b/sources/FixelText-Light.ufo/glyphs/uni1C_87.glif new file mode 100644 index 00000000..fbe3ee69 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/uni1C_87.glif @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + uni1C84-40 + com.fontlab.metricsRight + ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/uni1C_88.glif b/sources/FixelText-Light.ufo/glyphs/uni1C_88.glif new file mode 100644 index 00000000..2cc1db1e --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/uni1C_88.glif @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/uni1E_B_C_.glif b/sources/FixelText-Light.ufo/glyphs/uni1E_B_C_.glif new file mode 100644 index 00000000..4fecd622 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/uni1E_B_C_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+tilde.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/uni1E_B_D_.glif b/sources/FixelText-Light.ufo/glyphs/uni1E_B_D_.glif new file mode 100644 index 00000000..4c65ff3b --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/uni1E_B_D_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+tilde + + + diff --git a/sources/FixelText-Light.ufo/glyphs/uni2010.glif b/sources/FixelText-Light.ufo/glyphs/uni2010.glif new file mode 100644 index 00000000..10fc5ace --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/uni2010.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + hyphen + + + diff --git a/sources/FixelText-Light.ufo/glyphs/uni2D_E_E_.case.glif b/sources/FixelText-Light.ufo/glyphs/uni2D_E_E_.case.glif new file mode 100644 index 00000000..f6fb13e6 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/uni2D_E_E_.case.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/uni2D_E_E_.glif b/sources/FixelText-Light.ufo/glyphs/uni2D_E_E_.glif new file mode 100644 index 00000000..5e62fac1 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/uni2D_E_E_.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/uniE_000.alt.glif b/sources/FixelText-Light.ufo/glyphs/uniE_000.alt.glif new file mode 100644 index 00000000..390b5df7 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/uniE_000.alt.glif @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + ї_ї + public.markColor + 0.6,0.997,1,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/uniE_000.glif b/sources/FixelText-Light.ufo/glyphs/uniE_000.glif new file mode 100644 index 00000000..8dca128d --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/uniE_000.glif @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + ї_ї + public.markColor + 0.6,0.997,1,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/uniE_01A_.glif b/sources/FixelText-Light.ufo/glyphs/uniE_01A_.glif new file mode 100644 index 00000000..63753405 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/uniE_01A_.glif @@ -0,0 +1,115 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-Light.ufo/glyphs/uniF_43A_.glif b/sources/FixelText-Light.ufo/glyphs/uniF_43A_.glif new file mode 100644 index 00000000..37a71c44 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/uniF_43A_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/uniF_43B_.glif b/sources/FixelText-Light.ufo/glyphs/uniF_43B_.glif new file mode 100644 index 00000000..450c196f --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/uniF_43B_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ustraightcyr+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/uniF_45D_.glif b/sources/FixelText-Light.ufo/glyphs/uniF_45D_.glif new file mode 100644 index 00000000..1d07fc89 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/uniF_45D_.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Є+acute.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/uniF_45E_.glif b/sources/FixelText-Light.ufo/glyphs/uniF_45E_.glif new file mode 100644 index 00000000..c8e3792f --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/uniF_45E_.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Iacute + + + diff --git a/sources/FixelText-Light.ufo/glyphs/uniF_45F_.glif b/sources/FixelText-Light.ufo/glyphs/uniF_45F_.glif new file mode 100644 index 00000000..ce7bc9a5 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/uniF_45F_.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + com.fontlab.recipe + I+dieresiscase.alt+acute.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/uniF_475.glif b/sources/FixelText-Light.ufo/glyphs/uniF_475.glif new file mode 100644 index 00000000..386b28fa --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/uniF_475.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + є+acute + + + diff --git a/sources/FixelText-Light.ufo/glyphs/uniF_476.glif b/sources/FixelText-Light.ufo/glyphs/uniF_476.glif new file mode 100644 index 00000000..baa17abf --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/uniF_476.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + iacute + + + diff --git a/sources/FixelText-Light.ufo/glyphs/uniF_477.glif b/sources/FixelText-Light.ufo/glyphs/uniF_477.glif new file mode 100644 index 00000000..8d3964a2 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/uniF_477.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + dotlessi+dieresisacute + + + diff --git a/sources/FixelText-Light.ufo/glyphs/uniF_478.glif b/sources/FixelText-Light.ufo/glyphs/uniF_478.glif new file mode 100644 index 00000000..0adbb162 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/uniF_478.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Yat+acute.case + + + diff --git a/sources/FixelText-Light.ufo/glyphs/uniF_479.glif b/sources/FixelText-Light.ufo/glyphs/uniF_479.glif new file mode 100644 index 00000000..ea68f19d --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/uniF_479.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + yat+acute + + + diff --git a/sources/FixelText-Light.ufo/glyphs/uniF_498.glif b/sources/FixelText-Light.ufo/glyphs/uniF_498.glif new file mode 100644 index 00000000..a228a8bb --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/uniF_498.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ю+dieresis.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/uniF_499.glif b/sources/FixelText-Light.ufo/glyphs/uniF_499.glif new file mode 100644 index 00000000..003dafb6 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/uniF_499.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ю+dieresis + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/uniF_49A_.glif b/sources/FixelText-Light.ufo/glyphs/uniF_49A_.glif new file mode 100644 index 00000000..17f73996 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/uniF_49A_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Obarcyr+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/uniF_49B_.glif b/sources/FixelText-Light.ufo/glyphs/uniF_49B_.glif new file mode 100644 index 00000000..ebfe2e52 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/uniF_49B_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + obarcyr+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/uniF_49C_.glif b/sources/FixelText-Light.ufo/glyphs/uniF_49C_.glif new file mode 100644 index 00000000..4f1e1b8e --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/uniF_49C_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Schwacyr+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/uniF_49D_.glif b/sources/FixelText-Light.ufo/glyphs/uniF_49D_.glif new file mode 100644 index 00000000..e4e6640a --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/uniF_49D_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + schwacyr+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/uniF_49E_.glif b/sources/FixelText-Light.ufo/glyphs/uniF_49E_.glif new file mode 100644 index 00000000..1c397e75 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/uniF_49E_.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Yatcyr + com.fontlab.metricsRight + Tshecyr + com.fontlab.recipe + Shhacyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/uniF_49F_.glif b/sources/FixelText-Light.ufo/glyphs/uniF_49F_.glif new file mode 100644 index 00000000..01b09fea --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/uniF_49F_.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + hbar + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/uniF_4C_6.glif b/sources/FixelText-Light.ufo/glyphs/uniF_4C_6.glif new file mode 100644 index 00000000..2cb7627c --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/uniF_4C_6.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ч + com.fontlab.metricsRight + Ч + com.fontlab.recipe + Ч + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/uniF_4C_7.glif b/sources/FixelText-Light.ufo/glyphs/uniF_4C_7.glif new file mode 100644 index 00000000..bc161aaa --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/uniF_4C_7.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ч + com.fontlab.metricsRight + ч + com.fontlab.recipe + ч+enhookcyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/uniF_4C_C_.glif b/sources/FixelText-Light.ufo/glyphs/uniF_4C_C_.glif new file mode 100644 index 00000000..914a9b1c --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/uniF_4C_C_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + У+acute.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/uniF_4C_D_.glif b/sources/FixelText-Light.ufo/glyphs/uniF_4C_D_.glif new file mode 100644 index 00000000..2dc06c52 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/uniF_4C_D_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + y+acute + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/uniF_4D_2.glif b/sources/FixelText-Light.ufo/glyphs/uniF_4D_2.glif new file mode 100644 index 00000000..87917526 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/uniF_4D_2.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+grave.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/uniF_4D_3.glif b/sources/FixelText-Light.ufo/glyphs/uniF_4D_3.glif new file mode 100644 index 00000000..fdfd22c1 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/uniF_4D_3.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+grave + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/uniF_4D_4.glif b/sources/FixelText-Light.ufo/glyphs/uniF_4D_4.glif new file mode 100644 index 00000000..28c14307 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/uniF_4D_4.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + P+caron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/uniF_4D_5.glif b/sources/FixelText-Light.ufo/glyphs/uniF_4D_5.glif new file mode 100644 index 00000000..27bc5787 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/uniF_4D_5.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + p+caron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/uniF_4D_6.glif b/sources/FixelText-Light.ufo/glyphs/uniF_4D_6.glif new file mode 100644 index 00000000..571786e8 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/uniF_4D_6.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Э+dotaccent.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/uniF_4D_7.glif b/sources/FixelText-Light.ufo/glyphs/uniF_4D_7.glif new file mode 100644 index 00000000..82d0bdcc --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/uniF_4D_7.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + э+dotaccent + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/uniF_4D_8.glif b/sources/FixelText-Light.ufo/glyphs/uniF_4D_8.glif new file mode 100644 index 00000000..8bbe0581 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/uniF_4D_8.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Я+dieresis.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/uniF_4D_9.glif b/sources/FixelText-Light.ufo/glyphs/uniF_4D_9.glif new file mode 100644 index 00000000..69ff02c0 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/uniF_4D_9.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + я+dieresis + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/uniF_50E_.glif b/sources/FixelText-Light.ufo/glyphs/uniF_50E_.glif new file mode 100644 index 00000000..d427d2cd --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/uniF_50E_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/uniF_50F_.glif b/sources/FixelText-Light.ufo/glyphs/uniF_50F_.glif new file mode 100644 index 00000000..df1001d8 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/uniF_50F_.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/uniF_510.glif b/sources/FixelText-Light.ufo/glyphs/uniF_510.glif new file mode 100644 index 00000000..065af472 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/uniF_510.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/uniF_511.glif b/sources/FixelText-Light.ufo/glyphs/uniF_511.glif new file mode 100644 index 00000000..ebc3c052 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/uniF_511.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/uniF_512.glif b/sources/FixelText-Light.ufo/glyphs/uniF_512.glif new file mode 100644 index 00000000..2dace35e --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/uniF_512.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + com.fontlab.metricsLeft + E + com.fontlab.metricsRight + E + com.fontlab.recipe + E+dieresis.case+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/uniF_513.glif b/sources/FixelText-Light.ufo/glyphs/uniF_513.glif new file mode 100644 index 00000000..e4fe7ed8 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/uniF_513.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.recipe + e+dieresis+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/uniF_514.glif b/sources/FixelText-Light.ufo/glyphs/uniF_514.glif new file mode 100644 index 00000000..0e8f378e --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/uniF_514.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + com.fontlab.metricsLeft + E + com.fontlab.metricsRight + E + com.fontlab.recipe + E+dieresis.case+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/uniF_515.glif b/sources/FixelText-Light.ufo/glyphs/uniF_515.glif new file mode 100644 index 00000000..49185064 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/uniF_515.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.recipe + e+dieresis+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/uniF_516.glif b/sources/FixelText-Light.ufo/glyphs/uniF_516.glif new file mode 100644 index 00000000..571bad08 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/uniF_516.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + З+caron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/uniF_517.glif b/sources/FixelText-Light.ufo/glyphs/uniF_517.glif new file mode 100644 index 00000000..292615bd --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/uniF_517.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + з+caron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/uniF_518.glif b/sources/FixelText-Light.ufo/glyphs/uniF_518.glif new file mode 100644 index 00000000..e97bb27f --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/uniF_518.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/uniF_519.glif b/sources/FixelText-Light.ufo/glyphs/uniF_519.glif new file mode 100644 index 00000000..d75daa80 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/uniF_519.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/uniF_51A_.glif b/sources/FixelText-Light.ufo/glyphs/uniF_51A_.glif new file mode 100644 index 00000000..6986be23 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/uniF_51A_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/uniF_51B_.glif b/sources/FixelText-Light.ufo/glyphs/uniF_51B_.glif new file mode 100644 index 00000000..68df42f0 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/uniF_51B_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/uniF_51C_.glif b/sources/FixelText-Light.ufo/glyphs/uniF_51C_.glif new file mode 100644 index 00000000..9627d1b0 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/uniF_51C_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Obarcyr+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/uniF_51D_.glif b/sources/FixelText-Light.ufo/glyphs/uniF_51D_.glif new file mode 100644 index 00000000..83c6827d --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/uniF_51D_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + obarcyr+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/uniF_51E_.glif b/sources/FixelText-Light.ufo/glyphs/uniF_51E_.glif new file mode 100644 index 00000000..202cc018 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/uniF_51E_.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + com.fontlab.recipe + Obarcyr+dieresis.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/uniF_51F_.glif b/sources/FixelText-Light.ufo/glyphs/uniF_51F_.glif new file mode 100644 index 00000000..31c43fa0 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/uniF_51F_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.recipe + obarcyr+dieresis+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/uniF_521.glif b/sources/FixelText-Light.ufo/glyphs/uniF_521.glif new file mode 100644 index 00000000..adc62cfc --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/uniF_521.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ы+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/uniF_522.glif b/sources/FixelText-Light.ufo/glyphs/uniF_522.glif new file mode 100644 index 00000000..32a8bfdf --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/uniF_522.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Э+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/uniF_523.glif b/sources/FixelText-Light.ufo/glyphs/uniF_523.glif new file mode 100644 index 00000000..54395ac6 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/uniF_523.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + э+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/uniF_524.glif b/sources/FixelText-Light.ufo/glyphs/uniF_524.glif new file mode 100644 index 00000000..380b15e6 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/uniF_524.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Э+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/uniF_525.glif b/sources/FixelText-Light.ufo/glyphs/uniF_525.glif new file mode 100644 index 00000000..6d22342c --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/uniF_525.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + э+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/uniF_526.glif b/sources/FixelText-Light.ufo/glyphs/uniF_526.glif new file mode 100644 index 00000000..3bb9e1e8 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/uniF_526.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Є+dieresis.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/uniF_527.glif b/sources/FixelText-Light.ufo/glyphs/uniF_527.glif new file mode 100644 index 00000000..0e80e9f7 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/uniF_527.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + є+dieresis + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/uniF_528.glif b/sources/FixelText-Light.ufo/glyphs/uniF_528.glif new file mode 100644 index 00000000..75d66222 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/uniF_528.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Я+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/uniF_529.glif b/sources/FixelText-Light.ufo/glyphs/uniF_529.glif new file mode 100644 index 00000000..cf58fce8 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/uniF_529.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + я+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/uniF_52A_.glif b/sources/FixelText-Light.ufo/glyphs/uniF_52A_.glif new file mode 100644 index 00000000..d00703a4 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/uniF_52A_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Я+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/uniF_52B_.glif b/sources/FixelText-Light.ufo/glyphs/uniF_52B_.glif new file mode 100644 index 00000000..d42e7b60 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/uniF_52B_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + я+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/uniF_52C_.glif b/sources/FixelText-Light.ufo/glyphs/uniF_52C_.glif new file mode 100644 index 00000000..c465537e --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/uniF_52C_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ю+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/uniF_52D_.glif b/sources/FixelText-Light.ufo/glyphs/uniF_52D_.glif new file mode 100644 index 00000000..a13d9e8a --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/uniF_52D_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ю+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/uniF_52E_.glif b/sources/FixelText-Light.ufo/glyphs/uniF_52E_.glif new file mode 100644 index 00000000..64559db6 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/uniF_52E_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ю+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/uniF_52F_.glif b/sources/FixelText-Light.ufo/glyphs/uniF_52F_.glif new file mode 100644 index 00000000..2d824726 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/uniF_52F_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ю+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/uniF_532.glif b/sources/FixelText-Light.ufo/glyphs/uniF_532.glif new file mode 100644 index 00000000..7b8200b7 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/uniF_532.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Й + com.fontlab.metricsRight + Й + com.fontlab.recipe + Й + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/uniF_533.glif b/sources/FixelText-Light.ufo/glyphs/uniF_533.glif new file mode 100644 index 00000000..0291e890 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/uniF_533.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + l() + com.fontlab.recipe + й+enhookcyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/uniF_536.glif b/sources/FixelText-Light.ufo/glyphs/uniF_536.glif new file mode 100644 index 00000000..3736222d --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/uniF_536.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ы+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/uniF_537.glif b/sources/FixelText-Light.ufo/glyphs/uniF_537.glif new file mode 100644 index 00000000..b17d8ca1 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/uniF_537.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ы+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/uniF_538.glif b/sources/FixelText-Light.ufo/glyphs/uniF_538.glif new file mode 100644 index 00000000..40c6bc42 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/uniF_538.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Reversedzecyr+dieresis.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/uniF_539.glif b/sources/FixelText-Light.ufo/glyphs/uniF_539.glif new file mode 100644 index 00000000..c4a8e5f5 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/uniF_539.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + reversedzecyr+dieresis + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/uniF_830.glif b/sources/FixelText-Light.ufo/glyphs/uniF_830.glif new file mode 100644 index 00000000..6331d1fb --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/uniF_830.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+circumflex.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/uniF_831.glif b/sources/FixelText-Light.ufo/glyphs/uniF_831.glif new file mode 100644 index 00000000..f68aa34f --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/uniF_831.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+circumflex + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/uniF_833.glif b/sources/FixelText-Light.ufo/glyphs/uniF_833.glif new file mode 100644 index 00000000..9ec6b292 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/uniF_833.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+circumflex.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/uniF_834.glif b/sources/FixelText-Light.ufo/glyphs/uniF_834.glif new file mode 100644 index 00000000..32d5bc13 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/uniF_834.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+circumflex + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/uniF_839.glif b/sources/FixelText-Light.ufo/glyphs/uniF_839.glif new file mode 100644 index 00000000..6a4deecf --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/uniF_839.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+circumflex.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/uniF_83A_.glif b/sources/FixelText-Light.ufo/glyphs/uniF_83A_.glif new file mode 100644 index 00000000..cab26763 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/uniF_83A_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+circumflex + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/uniF_86F_.glif b/sources/FixelText-Light.ufo/glyphs/uniF_86F_.glif new file mode 100644 index 00000000..7e2223d9 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/uniF_86F_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + K+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/uniF_870.glif b/sources/FixelText-Light.ufo/glyphs/uniF_870.glif new file mode 100644 index 00000000..b73f5337 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/uniF_870.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + к+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/uniF_872.glif b/sources/FixelText-Light.ufo/glyphs/uniF_872.glif new file mode 100644 index 00000000..40404fc8 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/uniF_872.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Л+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/uniF_873.glif b/sources/FixelText-Light.ufo/glyphs/uniF_873.glif new file mode 100644 index 00000000..cbc0b198 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/uniF_873.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + л+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/uniF_875.glif b/sources/FixelText-Light.ufo/glyphs/uniF_875.glif new file mode 100644 index 00000000..a2b0e8a3 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/uniF_875.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/uniF_876.glif b/sources/FixelText-Light.ufo/glyphs/uniF_876.glif new file mode 100644 index 00000000..d8d167c6 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/uniF_876.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/uniF_878.glif b/sources/FixelText-Light.ufo/glyphs/uniF_878.glif new file mode 100644 index 00000000..bfa797bb --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/uniF_878.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + X+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/uniF_879.glif b/sources/FixelText-Light.ufo/glyphs/uniF_879.glif new file mode 100644 index 00000000..154e2890 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/uniF_879.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + x+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/uniF_87B_.glif b/sources/FixelText-Light.ufo/glyphs/uniF_87B_.glif new file mode 100644 index 00000000..0b3adcc7 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/uniF_87B_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ц+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/uniF_87C_.glif b/sources/FixelText-Light.ufo/glyphs/uniF_87C_.glif new file mode 100644 index 00000000..b5e78c1e --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/uniF_87C_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ц+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/uniF_87E_.glif b/sources/FixelText-Light.ufo/glyphs/uniF_87E_.glif new file mode 100644 index 00000000..27d9723c --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/uniF_87E_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ч+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/uniF_87F_.glif b/sources/FixelText-Light.ufo/glyphs/uniF_87F_.glif new file mode 100644 index 00000000..feb7d1e9 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/uniF_87F_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ч+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/uogonek.glif b/sources/FixelText-Light.ufo/glyphs/uogonek.glif new file mode 100644 index 00000000..24d2565b --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/uogonek.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+ogonek + + + diff --git a/sources/FixelText-Light.ufo/glyphs/uring.glif b/sources/FixelText-Light.ufo/glyphs/uring.glif new file mode 100644 index 00000000..1ed5be0f --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/uring.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+ring + + + diff --git a/sources/FixelText-Light.ufo/glyphs/ushort-cy.glif b/sources/FixelText-Light.ufo/glyphs/ushort-cy.glif new file mode 100644 index 00000000..786a5353 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/ushort-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + uni0443+breve + + + diff --git a/sources/FixelText-Light.ufo/glyphs/ustraightcyr.glif b/sources/FixelText-Light.ufo/glyphs/ustraightcyr.glif new file mode 100644 index 00000000..96cae979 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/ustraightcyr.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + v + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/ustraightstrokecyr.glif b/sources/FixelText-Light.ufo/glyphs/ustraightstrokecyr.glif new file mode 100644 index 00000000..f62e1568 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/ustraightstrokecyr.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/utilde.glif b/sources/FixelText-Light.ufo/glyphs/utilde.glif new file mode 100644 index 00000000..d8029aa1 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/utilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+tilde + + + diff --git a/sources/FixelText-Light.ufo/glyphs/v.glif b/sources/FixelText-Light.ufo/glyphs/v.glif new file mode 100644 index 00000000..9d68cefd --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/v.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/ve-cy.B_G_R_.glif b/sources/FixelText-Light.ufo/glyphs/ve-cy.B_G_R_.glif new file mode 100644 index 00000000..babb910c --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/ve-cy.B_G_R_.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + b-5 + com.fontlab.metricsRight + b + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/ve-cy.glif b/sources/FixelText-Light.ufo/glyphs/ve-cy.glif new file mode 100644 index 00000000..472b037a --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/ve-cy.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + + + diff --git a/sources/FixelText-Light.ufo/glyphs/ve-cy.ss01.glif b/sources/FixelText-Light.ufo/glyphs/ve-cy.ss01.glif new file mode 100644 index 00000000..a9f102d0 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/ve-cy.ss01.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/virgo.glif b/sources/FixelText-Light.ufo/glyphs/virgo.glif new file mode 100644 index 00000000..ee28c192 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/virgo.glif @@ -0,0 +1,224 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =55 + com.fontlab.metricsRight + =35 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/vzmetcomb-cy.glif b/sources/FixelText-Light.ufo/glyphs/vzmetcomb-cy.glif new file mode 100644 index 00000000..dd61182c --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/vzmetcomb-cy.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/w.glif b/sources/FixelText-Light.ufo/glyphs/w.glif new file mode 100644 index 00000000..c1a96569 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/w.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/wacute.glif b/sources/FixelText-Light.ufo/glyphs/wacute.glif new file mode 100644 index 00000000..68835ea8 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/wacute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + w+acute + + + diff --git a/sources/FixelText-Light.ufo/glyphs/wcircumflex.glif b/sources/FixelText-Light.ufo/glyphs/wcircumflex.glif new file mode 100644 index 00000000..59077244 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/wcircumflex.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + w+circumflex + + + diff --git a/sources/FixelText-Light.ufo/glyphs/wdieresis.glif b/sources/FixelText-Light.ufo/glyphs/wdieresis.glif new file mode 100644 index 00000000..0af39004 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/wdieresis.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + w+dieresis + + + diff --git a/sources/FixelText-Light.ufo/glyphs/wecyr.glif b/sources/FixelText-Light.ufo/glyphs/wecyr.glif new file mode 100644 index 00000000..f11f4e34 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/wecyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + w + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/wgrave.glif b/sources/FixelText-Light.ufo/glyphs/wgrave.glif new file mode 100644 index 00000000..36f27bc0 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/wgrave.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + w+grave + + + diff --git a/sources/FixelText-Light.ufo/glyphs/x.glif b/sources/FixelText-Light.ufo/glyphs/x.glif new file mode 100644 index 00000000..02a2ed7c --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/x.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/xatailcyr.glif b/sources/FixelText-Light.ufo/glyphs/xatailcyr.glif new file mode 100644 index 00000000..4a17d333 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/xatailcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + x + com.fontlab.metricsRight + zhetailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/y.glif b/sources/FixelText-Light.ufo/glyphs/y.glif new file mode 100644 index 00000000..761170ec --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/y.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/yacute.glif b/sources/FixelText-Light.ufo/glyphs/yacute.glif new file mode 100644 index 00000000..19d9a1ee --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/yacute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + y+acute + + + diff --git a/sources/FixelText-Light.ufo/glyphs/yaecyr.glif b/sources/FixelText-Light.ufo/glyphs/yaecyr.glif new file mode 100644 index 00000000..9574821d --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/yaecyr.glif @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + я + com.fontlab.metricsRight + e + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/yatI_otified-cy.glif b/sources/FixelText-Light.ufo/glyphs/yatI_otified-cy.glif new file mode 100644 index 00000000..dd03c621 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/yatI_otified-cy.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + com.fontlab.metricsRight + yatcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/yatcyr.B_G_R_.glif b/sources/FixelText-Light.ufo/glyphs/yatcyr.B_G_R_.glif new file mode 100644 index 00000000..84548200 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/yatcyr.B_G_R_.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hardsign-cy + com.fontlab.metricsRight + ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/yatcyr.glif b/sources/FixelText-Light.ufo/glyphs/yatcyr.glif new file mode 100644 index 00000000..bbd0a78d --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/yatcyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hardsign-cy + com.fontlab.metricsRight + ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/ycircumflex.glif b/sources/FixelText-Light.ufo/glyphs/ycircumflex.glif new file mode 100644 index 00000000..1e2aab4f --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/ycircumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + y+circumflex + + + diff --git a/sources/FixelText-Light.ufo/glyphs/ydieresis.glif b/sources/FixelText-Light.ufo/glyphs/ydieresis.glif new file mode 100644 index 00000000..d6b67941 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/ydieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + y+dieresis + + + diff --git a/sources/FixelText-Light.ufo/glyphs/yen.glif b/sources/FixelText-Light.ufo/glyphs/yen.glif new file mode 100644 index 00000000..230cea46 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/yen.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/yen.ss01.glif b/sources/FixelText-Light.ufo/glyphs/yen.ss01.glif new file mode 100644 index 00000000..e47d815c --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/yen.ss01.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/yerN_eutral-cy.glif b/sources/FixelText-Light.ufo/glyphs/yerN_eutral-cy.glif new file mode 100644 index 00000000..c190a7c0 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/yerN_eutral-cy.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hardsign-cy + com.fontlab.metricsRight + ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/yeru-cy.accented.glif b/sources/FixelText-Light.ufo/glyphs/yeru-cy.accented.glif new file mode 100644 index 00000000..cef46796 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/yeru-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ы+acute + + + diff --git a/sources/FixelText-Light.ufo/glyphs/yeru-cy.glif b/sources/FixelText-Light.ufo/glyphs/yeru-cy.glif new file mode 100644 index 00000000..2bf37852 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/yeru-cy.glif @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelText-Light.ufo/glyphs/yeru-cy.ss01.glif b/sources/FixelText-Light.ufo/glyphs/yeru-cy.ss01.glif new file mode 100644 index 00000000..8ae75b68 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/yeru-cy.ss01.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/yeruB_ackyer-cy.glif b/sources/FixelText-Light.ufo/glyphs/yeruB_ackyer-cy.glif new file mode 100644 index 00000000..528e8752 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/yeruB_ackyer-cy.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hardsign-cy + com.fontlab.metricsRight + dotlessi + com.fontlab.recipe + hardsign-cy_dotlessi + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/yi-cy.alt.glif b/sources/FixelText-Light.ufo/glyphs/yi-cy.alt.glif new file mode 100644 index 00000000..db5dc71d --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/yi-cy.alt.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.recipe + idieresis + public.markColor + 0.6,0.997,1,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/yi-cy.glif b/sources/FixelText-Light.ufo/glyphs/yi-cy.glif new file mode 100644 index 00000000..25434219 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/yi-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + idieresis + + + diff --git a/sources/FixelText-Light.ufo/glyphs/ylongdieresiscyr.glif b/sources/FixelText-Light.ufo/glyphs/ylongdieresiscyr.glif new file mode 100644 index 00000000..ad1bcff8 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/ylongdieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + yeru-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/yn-cy.glif b/sources/FixelText-Light.ufo/glyphs/yn-cy.glif new file mode 100644 index 00000000..db104a25 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/yn-cy.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |izhitsacyr + com.fontlab.metricsRight + |izhitsacyr + com.fontlab.recipe + izhitsa + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/yuR_eversed-cy.glif b/sources/FixelText-Light.ufo/glyphs/yuR_eversed-cy.glif new file mode 100644 index 00000000..f9b3bfc8 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/yuR_eversed-cy.glif @@ -0,0 +1,20 @@ + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l + com.fontlab.recipe + ю + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/yusB_lended-cy.glif b/sources/FixelText-Light.ufo/glyphs/yusB_lended-cy.glif new file mode 100644 index 00000000..7f6e770b --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/yusB_lended-cy.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + yusbigcyr + com.fontlab.metricsRight + yusbigcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/yusC_losedlittle-cy.glif b/sources/FixelText-Light.ufo/glyphs/yusC_losedlittle-cy.glif new file mode 100644 index 00000000..948ffd46 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/yusC_losedlittle-cy.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + yuslittlecyr + com.fontlab.metricsRight + yuslittlecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/yusbigcyr.glif b/sources/FixelText-Light.ufo/glyphs/yusbigcyr.glif new file mode 100644 index 00000000..2870ea05 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/yusbigcyr.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/yusbigiotifiedcyr.B_G_R_.glif b/sources/FixelText-Light.ufo/glyphs/yusbigiotifiedcyr.B_G_R_.glif new file mode 100644 index 00000000..0429232f --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/yusbigiotifiedcyr.B_G_R_.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + com.fontlab.metricsRight + ж + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/yusbigiotifiedcyr.glif b/sources/FixelText-Light.ufo/glyphs/yusbigiotifiedcyr.glif new file mode 100644 index 00000000..c5cafd78 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/yusbigiotifiedcyr.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + ж + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/yusiotifiedC_losedL_ittle-cy.glif b/sources/FixelText-Light.ufo/glyphs/yusiotifiedC_losedL_ittle-cy.glif new file mode 100644 index 00000000..947ae808 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/yusiotifiedC_losedL_ittle-cy.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + yusClosedlittle-cy + com.fontlab.recipe + yusClosedlittle-cy+н + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/yuslittlecyr.glif b/sources/FixelText-Light.ufo/glyphs/yuslittlecyr.glif new file mode 100644 index 00000000..9e6e4395 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/yuslittlecyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + v-5 + com.fontlab.metricsRight + v-5 + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/yuslittleiotifiedcyr.glif b/sources/FixelText-Light.ufo/glyphs/yuslittleiotifiedcyr.glif new file mode 100644 index 00000000..b1e526b7 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/yuslittleiotifiedcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + v-10 + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/z.glif b/sources/FixelText-Light.ufo/glyphs/z.glif new file mode 100644 index 00000000..00a9b274 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/z.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/zacute.glif b/sources/FixelText-Light.ufo/glyphs/zacute.glif new file mode 100644 index 00000000..152dacc4 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/zacute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + z+acute + + + diff --git a/sources/FixelText-Light.ufo/glyphs/zcaron.glif b/sources/FixelText-Light.ufo/glyphs/zcaron.glif new file mode 100644 index 00000000..cea72f4e --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/zcaron.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + z+caron + + + diff --git a/sources/FixelText-Light.ufo/glyphs/zdotaccent.glif b/sources/FixelText-Light.ufo/glyphs/zdotaccent.glif new file mode 100644 index 00000000..f0505cc0 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/zdotaccent.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + z+dotaccent + + + diff --git a/sources/FixelText-Light.ufo/glyphs/ze-cy.B_G_R_.glif b/sources/FixelText-Light.ufo/glyphs/ze-cy.B_G_R_.glif new file mode 100644 index 00000000..c95c3ee7 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/ze-cy.B_G_R_.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |c-12 + com.fontlab.metricsRight + в-5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/ze-cy.glif b/sources/FixelText-Light.ufo/glyphs/ze-cy.glif new file mode 100644 index 00000000..0a3a329a --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/ze-cy.glif @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |c-5 + com.fontlab.metricsRight + в + + + diff --git a/sources/FixelText-Light.ufo/glyphs/zedieresiscyr.glif b/sources/FixelText-Light.ufo/glyphs/zedieresiscyr.glif new file mode 100644 index 00000000..73bab518 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/zedieresiscyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ze-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/zemlya-cy.glif b/sources/FixelText-Light.ufo/glyphs/zemlya-cy.glif new file mode 100644 index 00000000..739d0863 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/zemlya-cy.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + z-10 + com.fontlab.metricsRight + z + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/zero.glif b/sources/FixelText-Light.ufo/glyphs/zero.glif new file mode 100644 index 00000000..5877cb90 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/zero.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/zero.osf.glif b/sources/FixelText-Light.ufo/glyphs/zero.osf.glif new file mode 100644 index 00000000..9feac57b --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/zero.osf.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + zero + com.fontlab.metricsRight + zero + + + diff --git a/sources/FixelText-Light.ufo/glyphs/zero.tf.glif b/sources/FixelText-Light.ufo/glyphs/zero.tf.glif new file mode 100644 index 00000000..0bb92cb8 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/zero.tf.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Light.ufo/glyphs/zetailcyr.B_S_H_.glif b/sources/FixelText-Light.ufo/glyphs/zetailcyr.B_S_H_.glif new file mode 100644 index 00000000..feaf66df --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/zetailcyr.B_S_H_.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + з + com.fontlab.metricsRight + з + com.fontlab.recipe + з + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/zetailcyr.glif b/sources/FixelText-Light.ufo/glyphs/zetailcyr.glif new file mode 100644 index 00000000..b1f1c26e --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/zetailcyr.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + з + com.fontlab.metricsRight + з + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/zhe-cy.B_G_R_.glif b/sources/FixelText-Light.ufo/glyphs/zhe-cy.B_G_R_.glif new file mode 100644 index 00000000..845605c1 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/zhe-cy.B_G_R_.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |k + com.fontlab.metricsRight + k + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/zhe-cy.glif b/sources/FixelText-Light.ufo/glyphs/zhe-cy.glif new file mode 100644 index 00000000..5836bd95 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/zhe-cy.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |k + com.fontlab.metricsRight + k + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/zhebrevecyr.glif b/sources/FixelText-Light.ufo/glyphs/zhebrevecyr.glif new file mode 100644 index 00000000..c1e23102 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/zhebrevecyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + zhe-cy+breve + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/zhedieresiscyr.glif b/sources/FixelText-Light.ufo/glyphs/zhedieresiscyr.glif new file mode 100644 index 00000000..554a7b3d --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/zhedieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + zhe-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/zhetailcyr.glif b/sources/FixelText-Light.ufo/glyphs/zhetailcyr.glif new file mode 100644 index 00000000..e5891f29 --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/zhetailcyr.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ж + com.fontlab.metricsRight + katailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/zhwe-cy.glif b/sources/FixelText-Light.ufo/glyphs/zhwe-cy.glif new file mode 100644 index 00000000..f5e57b9d --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/zhwe-cy.glif @@ -0,0 +1,87 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + з + com.fontlab.metricsRight + ж + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Light.ufo/glyphs/zjekomicyr.glif b/sources/FixelText-Light.ufo/glyphs/zjekomicyr.glif new file mode 100644 index 00000000..feb5b9bd --- /dev/null +++ b/sources/FixelText-Light.ufo/glyphs/zjekomicyr.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + з-20 + com.fontlab.metricsRight + njekomicyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Light.ufo/groups.plist b/sources/FixelText-Light.ufo/groups.plist new file mode 100644 index 00000000..0215e532 --- /dev/null +++ b/sources/FixelText-Light.ufo/groups.plist @@ -0,0 +1,2992 @@ + + + + + accent + + grave + acute.case + grave.case + acute + + case + + arrowdown.case + arrowdown.ss01.case + arrowleft.case + arrowleft.ss01.case + arrowright.case + arrowright.ss01.case + arrowup.case + arrowup.ss01.case + backslash.case + bar.case + braceleft.case + braceright.case + bracketleft.case + bracketright.case + brokenbar.case + bullet.case + colon.case + emdash.case + endash.case + exclamdown.case + guillemetleft.case + guillemetright.case + guilsinglleft.case + guilsinglright.case + hyphen.case + parenleft.case + parenright.case + questiondown.case + semicolon.case + at.case + bracketangleleft.case + bracketangleright.case + slash.case + + case_def + + arrowdown + arrowdown.ss01 + arrowleft + arrowleft.ss01 + arrowright + arrowright.ss01 + arrowup + arrowup.ss01 + backslash + bar + braceleft + braceright + bracketleft + bracketright + brokenbar + bullet + colon + emdash + endash + exclamdown + guillemetleft + guillemetright + guilsinglleft + guilsinglright + hyphen + parenleft + parenright + questiondown + semicolon + at + bracketangleleft + bracketangleright + slash + + cpsp + + 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 + Agrave + Aacute + Acircumflex + Atilde + Adieresis + Aring + AE + Ccedilla + Egrave + Eacute + Ecircumflex + Edieresis + Igrave + Iacute + Icircumflex + Idieresis + Eth + Ntilde + Ograve + Oacute + Ocircumflex + Otilde + Odieresis + Oslash + Ugrave + Uacute + Ucircumflex + Udieresis + Yacute + Thorn + Amacron + Abreve + Aogonek + Cacute + Ccircumflex + Cdotaccent + Ccaron + Dcaron + Dcroat + Emacron + Ebreve + Edotaccent + Eogonek + Ecaron + Gcircumflex + Gbreve + Gdotaccent + Gcommaaccent + Hcircumflex + Hbar + Itilde + Imacron + Ibreve + Iogonek + Idotaccent + IJ + Jcircumflex + Kcommaaccent + Lacute + Lcommaaccent + Lcaron + Ldot + Lslash + Nacute + Ncommaaccent + Ncaron + Eng + Omacron + Obreve + Ohungarumlaut + OE + Racute + Rcommaaccent + Rcaron + Sacute + Scircumflex + Scedilla + Scaron + Tcedilla + Tcaron + Tbar + Utilde + Umacron + Ubreve + Uring + Uhungarumlaut + Uogonek + Wcircumflex + Ycircumflex + Ydieresis + Zacute + Zdotaccent + Zcaron + Schwa + Acaron + Gacute + AEacute + Oslashacute + Scommaaccent + Tcommaaccent + Delta + Omega + Iegravecyr + uniF43A + A-cy.accented + E-cy.accented + Ii-cy.accented + O-cy.accented + U-cy.accented + Yeru-cy.accented + Ereversed-cy.accented + Iu-cy.accented + Ia-cy.accented + Io-cy.accented + uniF498 + uniF49A + uniF49C + uniF49E + uniF4C6 + uniF4CC + uniF4D2 + uniF4D4 + uniF4D6 + uniF4D8 + uniF50E + uniF510 + uniF512 + uniF514 + uniF516 + uniF518 + uniF51A + uniF51C + uniF51E + Yeru-cymacron + uniF522 + uniF524 + uniF526 + uniF528 + uniF52A + uniF52C + uniF52E + uniF532 + uniF536 + uniF538 + uniF830 + uniF833 + uniF839 + uniF86F + uniF872 + uniF875 + uniF878 + uniF87B + uniF87E + Io-cy + Djecyr + Gjecyr + E-cy + Dze-cy + I-cy + Yi-cy + Jecyr + Ljecyr + Njecyr + Tshecyr + Kjecyr + Igravecyr + Ushort-cy + Dzhecyr + A-cy + Be-cy + Ve-cy + Ge-cy + De-cy + Ie-cy + Zhe-cy + Ze-cy + Ii-cy + Iishort-cy + Ka-cy + El-cy + Em-cy + En-cy + O-cy + Pe-cy + Er-cy + Es-cy + Te-cy + U-cy + Ef-cy + Ha-cy + Tse-cy + Che-cy + Sha-cy + Shcha-cy + Hardsign-cy + Yeru-cy + Softsign-cy + Ereversed-cy + Iu-cy + Ia-cy + Omegacyr + Yatcyr + Eiotifiedcyr + Yuslittlecyr + Yuslittleiotifiedcyr + Yusbigcyr + Yusbigiotifiedcyr + Ksicyr + Psicyr + Fitacyr + Izhitsacyr + Izhitsagravedblcyr + Ukcyr + Omegaroundcyr + Omegatitlocyr + Otcyr + Koppacyr + Ishortsharptailcyr + Semisoftcyr + Ertickcyr + Gheupturn-cy + Gestrokecyr + Gehookcyr + Zhetailcyr + Zetailcyr + Katailcyr + Kaverticalstrokecyr + Kastrokecyr + Kabashkcyr + Entailcyr + Engecyr + Pehookcyr + Haabkhcyr + Estailcyr + Tetailcyr + Ustraightcyr + Ustraightstrokecyr + Xatailcyr + Tetsecyr + Chetailcyr + Chevertcyr + Shhacyr + Cheabkhcyr + Cheabkhtailcyr + Palochkacyr + Zhebrevecyr + Kahookcyr + Elsharptailcyr + Enhookcyr + Ensharptailcyr + Chekhakascyr + Emsharptailcyr + Abrevecyr + Adieresiscyr + Aiecyr + Iebrevecyr + Schwacyr + Schwadieresiscyr + Zhedieresiscyr + Zedieresiscyr + Dzeabkhcyr + Imacroncyr + Idieresiscyr + Odieresiscyr + Obarcyr + Obardieresiscyr + Ereverseddieresiscyr + Umacroncyr + Udieresiscyr + Uacutedblcyr + Chedieresiscyr + Getailcyr + Ylongdieresiscyr + Gehookstrokecyr + Hahookcyr + Hastrokecyr + Dekomicyr + Djekomicyr + Zjekomicyr + Dzjekomicyr + Ljekomicyr + Njekomicyr + Sjekomicyr + Tjekomicyr + Reversedzecyr + Elhookcyr + Lhacyr + Rhacyr + Yaecyr + Qacyr + Wecyr + Kaaleutcyr + Elmiddlehookcyr + Enmiddlehookcyr + Petailcyr + Shhatailcyr + Enhookleftcyr + Dzzhecyr + Dchecyr + Eltailcyr + Wgrave + Wacute + Wdieresis + Germandbls + uni1EBC + Zemlya-cy + Dzelo-cy + DzeReversed-cy + Iota-cy + Djerv-cy + UkMonograph-cy + OmegaBroad-cy + YerNeutral-cy + YeruBackYer-cy + YatIotified-cy + YuReversed-cy + IotifiedA-cy + YusClosedlittle-cy + YusBlended-cy + YusiotifiedClosedLittle-cy + Yn-cy + TseReversed-cy + DeSoft-cy + ElSoft-cy + EmSoft-cy + OMonocular-cy + OBinocular-cy + ODoubleMonocular-cy + Dwe-cy + Dzwe-cy + Zhwe-cy + Cche-cy + Dzze-cy + TeWithMiddleHook-cy + Twe-cy + Tswe-cy + Tsse-cy + Tche-cy + Hwe-cy + Shwe-cy + DoubleO-cy + CrossedO-cy + A-cy.ss01 + A.ss01 + AE.ss01 + Aacute.ss01 + Abreve.ss01 + Acircumflex.ss01 + Adieresis.ss01 + Agrave.ss01 + Amacron.ss01 + Aogonek.ss01 + Aring.ss01 + Atilde.ss01 + Em-cy.ss01 + Eng.ss01 + G.ss01 + Gacute.ss01 + Gbreve.ss01 + Gcircumflex.ss01 + Gcommaaccent.ss01 + Gdotaccent.ss01 + Ha-cy.ss01 + Ia-cy.ss01 + J.ss01 + Jcircumflex.ss01 + K.ss01 + Ka-cy.ss01 + Kcommaaccent.ss01 + M.ss01 + N.ss01 + Nacute.ss01 + Ncaron.ss01 + Ncommaaccent.ss01 + Ntilde.ss01 + Q.ss01 + U-cy.ss01 + Ushort-cy.ss01 + V.ss01 + W.ss01 + Wacute.ss01 + Wcircumflex.ss01 + Wdieresis.ss01 + Wgrave.ss01 + X.ss01 + Y.ss01 + Yacute.ss01 + Ycircumflex.ss01 + Ydieresis.ss01 + Z.ss01 + Zacute.ss01 + Zcaron.ss01 + Zdotaccent.ss01 + Zetailcyr.BSH + Gestrokecyr.BSH + Estailcyr.BSH + Estailcyr.CHU + Zhe-cy.ss01 + + locl.SRB + + be-cy.SRB + iegravecyr.SRB + igravecyr.SRB + + loclSRB_def + + be-cy + iegravecyr + igravecyr + + locl_BGR + + De-cy.BGR + Ef-cy.BGR + El-cy.BGR + de-cy.BGR + eiotifiedcyr.BGR + el-cy.BGR + ge-cy.BGR + hardsign-cy.BGR + ii-cy.BGR + iishort-cy.BGR + iotifieda-cy.BGR + iu-cy.BGR + ka-cy.BGR + pe-cy.BGR + sha-cy.BGR + shcha-cy.BGR + softsign-cy.BGR + te-cy.BGR + tse-cy.BGR + ve-cy.BGR + yatcyr.BGR + yusbigiotifiedcyr.BGR + ze-cy.BGR + zhe-cy.BGR + + locl_def + + De-cy + Ef-cy + El-cy + de-cy + eiotifiedcyr + el-cy + ge-cy + hardsign-cy + ii-cy + iishort-cy + iotifieda-cy + iu-cy + ka-cy + pe-cy + sha-cy + shcha-cy + softsign-cy + te-cy + tse-cy + ve-cy + yatcyr + yusbigiotifiedcyr + ze-cy + zhe-cy + + pics + + neptune + leo + virgo + bishopwhite + knightwhite + rookblack + bishopblack + knightblack + heartwhite + diamondwhite-misc + spadewhite + heart + clubwhite + crossedswords + flower + floretteblack + florettewhite + floretteoutlinedpetalledblackeight + + pics_def + + A + B + C + D + E + F + G + H + I + J + K + L + M + N + O + P + Q + R + + public.kern1.A.ss012 + + A-cy.ss01 + A.ss01 + Aacute.ss01 + Abreve.ss01 + Acircumflex.ss01 + Adieresis.ss01 + Agrave.ss01 + Amacron.ss01 + Aogonek.ss01 + Aring.ss01 + Atilde.ss01 + + public.kern1.A2 + + A + A-cy + A-cy.accented + Aacute + Abreve + Abrevecyr + Acaron + Acircumflex + Adieresis + Adieresiscyr + Agrave + Amacron + Aogonek + Aring + Atilde + De-cy.BGR + Delta + El-cy.BGR + IotifiedA-cy + Yn-cy + YusClosedlittle-cy + YusiotifiedClosedLittle-cy + Yuslittlecyr + Yuslittleiotifiedcyr + uniF50E + uniF830 + + public.kern1.AE + + AE + AE.ss01 + AEacute + Aiecyr + + public.kern1.C1 + + C + Cacute + Ccaron + Ccedilla + Ccircumflex + Cdotaccent + E-cy + Eiotifiedcyr + Es-cy + Estailcyr + Estailcyr.BSH + Estailcyr.CHU + Reversedzecyr + uniF45D + uniF526 + uniF538 + uniF875 + + public.kern1.Decyr + + Chetailcyr + De-cy + Dwe-cy + Dzze-cy + Elsharptailcyr + Eltailcyr + Emsharptailcyr + Ensharptailcyr + Entailcyr + Ishortsharptailcyr + Petailcyr + Shcha-cy + Shwe-cy + Tetsecyr + Tse-cy + Tswe-cy + uniF87B + + public.kern1.E1 + + E + E-cy.accented + Eacute + Ebreve + Ecaron + Ecircumflex + Edieresis + Edotaccent + Egrave + Emacron + Eogonek + Ie-cy + Iebrevecyr + Io-cy + Io-cy.accented + Yaecyr + uni1EBC + uniF510 + uniF512 + uniF514 + uniF833 + + public.kern1.G.ss01 + + G.ss01 + Gacute.ss01 + Gbreve.ss01 + Gcircumflex.ss01 + Gcommaaccent.ss01 + Gdotaccent.ss01 + + public.kern1.G1 + + G + Gacute + Gbreve + Gcircumflex + Gcommaaccent + Gdotaccent + + public.kern1.Ge-cy + + DeSoft-cy + ElSoft-cy + EmSoft-cy + Engecyr + Ge-cy + Gehookstrokecyr + Gestrokecyr + Gestrokecyr.BSH + Getailcyr + Gheupturn-cy + Gjecyr + TseReversed-cy + YeruBackYer-cy + uniF872 + + public.kern1.H + + Eng + Eng.ss01 + H + Hbar + Hcircumflex + I + Iacute + Ibreve + Icircumflex + Idieresis + Idotaccent + Igrave + Imacron + Iogonek + Itilde + J.ss01 + Jcircumflex.ss01 + M + M.ss01 + N + N.ss01 + Nacute + Nacute.ss01 + Ncaron + Ncaron.ss01 + Ncommaaccent + Ncommaaccent.ss01 + Ntilde + Ntilde.ss01 + + public.kern1.Hardcyr + + Hardsign-cy + Ljecyr + Njecyr + Semisoftcyr + Shhacyr + Softsign-cy + YatIotified-cy + Yatcyr + YerNeutral-cy + uniF478 + + public.kern1.J1 + + J + Jcircumflex + Jecyr + + public.kern1.K + + K + K.ss01 + Ka-cy + Ka-cy.ss01 + Kaaleutcyr + Kabashkcyr + Kastrokecyr + Kcommaaccent + Kcommaaccent.ss01 + Kjecyr + uniF86F + + public.kern1.L + + L + Lacute + Lcaron + Lcommaaccent + Lslash + + public.kern1.O + + Cheabkhcyr + Cheabkhtailcyr + CrossedO-cy + D + Dcaron + Dcroat + DoubleO-cy + Ef-cy + Ef-cy.BGR + Ereversed-cy + Ereversed-cy.accented + Ereverseddieresiscyr + Eth + Fitacyr + Iu-cy + Iu-cy.accented + O + O-cy + O-cy.accented + OBinocular-cy + ODoubleMonocular-cy + OMonocular-cy + Oacute + Obarcyr + Obardieresiscyr + Obreve + Ocircumflex + Odieresis + Odieresiscyr + Ograve + Ohungarumlaut + Omacron + Omega + Omegaroundcyr + Oslash + Oslashacute + Otilde + Q + Qacyr + Schwa + Schwacyr + Schwadieresiscyr + Sjekomicyr + uniF498 + uniF49A + uniF49C + uniF4D2 + uniF4D6 + uniF518 + uniF51A + uniF51C + uniF51E + uniF522 + uniF524 + uniF52C + uniF52E + uniF839 + + public.kern1.Oslash.alt + + Ha-cy + Ha-cy.ss01 + Hahookcyr + Lhacyr + Rhacyr + X + X.ss01 + uniF878 + + public.kern1.P + + Er-cy + Ertickcyr + P + uniF4D4 + + public.kern1.R + + R + Racute + Rcaron + Rcommaaccent + + public.kern1.S1 + + Dzwe-cy + S + Sacute + Scaron + Scedilla + Scircumflex + Scommaaccent + + public.kern1.T1 + + Koppacyr + T + Tcaron + Tcedilla + Tcommaaccent + Te-cy + Tetailcyr + Tsse-cy + Twe-cy + + public.kern1.U1 + + OmegaBroad-cy + Omegacyr + Omegatitlocyr + Otcyr + Psicyr + U + Uacute + Ubreve + Ucircumflex + Udieresis + Ugrave + Uhungarumlaut + Umacron + Uogonek + Uring + Utilde + + public.kern1.Ucyr1 + + U-cy + U-cy.accented + U-cy.ss01 + Uacutedblcyr + Udieresiscyr + Umacroncyr + Ushort-cy + Ushort-cy.ss01 + uniF4CC + + public.kern1.V + + Izhitsacyr + Izhitsagravedblcyr + V + V.ss01 + + public.kern1.W.ss011 + + W.ss01 + Wacute.ss01 + Wcircumflex.ss01 + Wdieresis.ss01 + Wgrave.ss01 + + public.kern1.W1 + + W + Wacute + Wcircumflex + Wdieresis + Wecyr + Wgrave + + public.kern1.Y.ss011 + + Y.ss01 + Yacute.ss01 + Ycircumflex.ss01 + Ydieresis.ss01 + + public.kern1.Y1 + + Ustraightcyr + Ustraightstrokecyr + Y + Yacute + Ycircumflex + Ydieresis + uniF43A + + public.kern1.Yacyr + + Cche-cy + Che-cy + Chedieresiscyr + Chekhakascyr + Chevertcyr + Dekomicyr + Elhookcyr + Em-cy + En-cy + Enhookcyr + Enhookleftcyr + I-cy + Ia-cy + Ia-cy.accented + Ia-cy.ss01 + Idieresiscyr + Ii-cy + Ii-cy.accented + Iishort-cy + Imacroncyr + Palochkacyr + Pe-cy + Sha-cy + Tche-cy + Yeru-cy + Yeru-cy.accented + Yeru-cymacron + Yi-cy + Ylongdieresiscyr + YuReversed-cy + palochkacyr + uniF45E + uniF45F + uniF4C6 + uniF4D8 + uniF528 + uniF52A + uniF532 + uniF536 + uniF87E + + public.kern1.Z1 + + Dzelo-cy + Z + Z.ss01 + Zacute + Zacute.ss01 + Zcaron + Zcaron.ss01 + Zdotaccent + Zdotaccent.ss01 + Zemlya-cy + + public.kern1.Ze-cy + + Dzeabkhcyr + Ksicyr + Ze-cy + Zedieresiscyr + Zetailcyr + Zetailcyr.BSH + uniF516 + + public.kern1.Zhe-cy + + Dzzhecyr + Katailcyr + Kaverticalstrokecyr + Xatailcyr + YusBlended-cy + Yusbigcyr + Yusbigiotifiedcyr + Zhe-cy + Zhebrevecyr + Zhedieresiscyr + Zhetailcyr + Zhwe-cy + + public.kern1.a1 + + a + aacute + abreve + acaron + acircumflex + adieresis + agrave + amacron + aogonek + aring + atilde + + public.kern1.c1 + + c + cacute + ccaron + ccedilla + ccircumflex + cdotaccent + e-cy + e-cy.hist + eiotifiedcyr + eiotifiedcyr.BGR + es-cy + estailcyr + estailcyr.BSH + estailcyr.CHU + koppacyr + reversedzecyr + sjekomicyr + uni1C83 + uniF475 + uniF527 + uniF539 + uniF876 + + public.kern1.comma1 + + comma + quotedblbase + quotesinglbase + + public.kern1.copyright1 + + copyright + registered + + public.kern1.dcaron + + dcaron + dcaron.ss01 + lcaron + + public.kern1.decyr1 + + chetailcyr + dchecyr + de-cy + de-cy.ss01 + dwe-cy + dzze-cy + elsharptailcyr + eltailcyr + emsharptailcyr + ensharptailcyr + entailcyr + ishortsharptailcyr + petailcyr + shcha-cy + shcha-cy.BGR + shhatailcyr + shwe-cy + tetsecyr + tse-cy + tse-cy.BGR + tswe-cy + uniF87C + + public.kern1.e.ss011 + + e.ss01 + eacute.ss01 + ebreve.ss01 + ecaron.ss01 + ecircumflex.ss01 + edieresis.ss01 + edotaccent.ss01 + egrave.ss01 + emacron.ss01 + eogonek.ss01 + oe.ss01 + + public.kern1.e1 + + ae + aeacute + aiecyr + cheabkhcyr + cheabkhtailcyr + e + e-cy.accented + eacute + ebreve + ecaron + ecircumflex + edieresis + edotaccent + egrave + emacron + eogonek + ie-cy + iebrevecyr + iegravecyr + iegravecyr.SRB + io-cy + io-cy.accented + uni1EBD + uniF511 + uniF513 + uniF515 + uniF834 + yaecyr + + public.kern1.el-cy.BGR + + el-cy.BGR + iotifieda-cy + iotifieda-cy.BGR + uni1C81 + yn-cy + yusClosedlittle-cy + yusiotifiedClosedLittle-cy + yuslittlecyr + yuslittleiotifiedcyr + + public.kern1.emdash1 + + emdash + endash + hyphen + + public.kern1.f1 + + f + f_f + + public.kern1.fi + + f_f_i + fi + + public.kern1.five1 + + five + five.tf + + public.kern1.four1 + + four + four.tf + + public.kern1.g.ss011 + + g.ss01 + gacute.ss01 + gbreve.ss01 + gcircumflex.ss01 + gcommaaccent.ss01 + gdotaccent.ss01 + + public.kern1.g1 + + g + gacute + gbreve + gcircumflex + gcommaaccent + gdotaccent + + public.kern1.gecyr + + deSoft-cy + elSoft-cy + emSoft-cy + engecyr + ge-cy + gehookstrokecyr + gestrokecyr + gestrokecyr.BSH + getailcyr + gheupturn-cy + gjecyr + + public.kern1.guillemotright1 + + guillemetright + guilsinglright + + public.kern1.hardcyr + + Tjekomicyr + djekomicyr + elmiddlehookcyr + enmiddlehookcyr + gehookcyr + hardsign-cy + hardsign-cy.BGR + hardsign-cy.ss01 + ljecyr + ljecyr.ss01 + ljekomicyr + njecyr + njecyr.ss01 + njekomicyr + pehookcyr + semisoftcyr + softsign-cy + softsign-cy.BGR + softsign-cy.ss01 + tewithmiddlehook-cy + tjekomicyr + uni1C86 + uni1C87 + uniF479 + yatIotified-cy + yatcyr + yatcyr.BGR + yerNeutral-cy + zjekomicyr + + public.kern1.i1 + + Djekomicyr + Ljekomicyr + Njekomicyr + Zjekomicyr + i + i-cy + iacute + icircumflex + igrave + imacron + iogonek + itilde + uniF476 + yi-cy.alt + + public.kern1.icyr1 + + cche-cy + che-cy + chedieresiscyr + chekhakascyr + chevertcyr + de-cy.BGR + el-cy + elhookcyr + em-cy + en-cy + enhookcyr + enhookleftcyr + ia-cy + ia-cy.accented + idieresiscyr + igravecyr + ii-cy + ii-cy.accented + iishort-cy + imacroncyr + mu + pe-cy + psicyr + q + qacyr + sha-cy + sha-cy.BGR + tche-cy + tseReversed-cy + ubreve + uni1C85 + uniF4C7 + uniF4D9 + uniF521 + uniF529 + uniF52B + uniF533 + uniF537 + uniF873 + uniF87F + utilde + yeru-cy + yeru-cy.accented + yeru-cy.ss01 + yeruBackyer-cy + ylongdieresiscyr + yuReversed-cy + + public.kern1.j1 + + ij + j + jcircumflex + jdotless + + public.kern1.k + + k + ka-cy + ka-cy.BGR + kaaleutcyr + kabashkcyr + kastrokecyr + kcommaaccent + kgreenlandic + kjecyr + uniF870 + + public.kern1.l + + f_f_l + fl + l + lacute + lcommaaccent + + public.kern1.l.ss011 + + Iota-cy + iota-cy + l.ss01 + lacute.ss01 + lcommaaccent.ss01 + + public.kern1.n + + Djecyr + Elmiddlehookcyr + Enmiddlehookcyr + Gehookcyr + Hwe-cy + Kahookcyr + Pehookcyr + Shhatailcyr + TeWithMiddleHook-cy + Tshecyr + a-cy.accented + a-cy.ss01 + a.ss01 + aacute.ss01 + abreve.ss01 + abrevecyr + acircumflex.ss01 + adieresis.ss01 + adieresiscyr + agrave.ss01 + aogonek.ss01 + aring.ss01 + atilde.ss01 + djecyr + el-cy.ss01 + h + hbar + hcircumflex + hwe-cy + ia-cy.ss01 + iotifieda-cy.hist + m + n + nacute + napostrophe + ncaron + ncommaaccent + ntilde + pe-cy.BGR + q.ss01 + shhacyr + te-cy.BGR + tshecyr + uniF49E + uniF49F + uniF50F + uniF831 + + public.kern1.numero + + numero + numero.ss01 + + public.kern1.o1 + + b + b.ss01 + be-cy.SRB + crossedo-cy + ef-cy + er-cy + er-cy.ss01 + ereversed-cy + ereversed-cy.accented + ereverseddieresiscyr + ertickcyr + eturned + fitacyr + iu-cy + iu-cy.BGR + iu-cy.accented + o + o-cy + o-cy.accented + oBinocular-cy + oDoubleMonocular-cy + oMonocular-cy + oacute + obarcyr + obardieresiscyr + obreve + ocircumflex + odieresis + odieresiscyr + ograve + ohungarumlaut + omacron + omegaBroad-cy + omegaroundcyr + omegatitlocyr + oslashacute + otilde + p + p.ss01 + schwacyr + schwadieresiscyr + thorn + uni1C82 + uniF499 + uniF49D + uniF4D3 + uniF4D5 + uniF4D7 + uniF519 + uniF51B + uniF51D + uniF51F + uniF523 + uniF525 + uniF52D + uniF52F + uniF83A + + public.kern1.period1 + + ellipsis + period + + public.kern1.quotedbl1 + + quotedbl + quotesingle + + public.kern1.quoteleft1 + + quotedblleft + quoteleft + + public.kern1.quoteright1 + + apostrophemod + minute + quotedblright + quoteright + second + + public.kern1.s1 + + dzwe-cy + s + sacute + scaron + scedilla + scircumflex + scommaaccent + + public.kern1.t.ss011 + + t.ss01 + tcedilla.ss01 + tcommaaccent.ss01 + + public.kern1.t1 + + t + tcaron + tcedilla + tcommaaccent + + public.kern1.te-cy + + te-cy + tetailcyr + tsse-cy + twe-cy + + public.kern1.u1 + + igravecyr.SRB + ii-cy.BGR + iishort-cy.BGR + pe-cy.SRB + te-cy.SRB + u + uacute + ucircumflex + udieresis + ugrave + uhungarumlaut + umacron + uogonek + uring + + public.kern1.uni0435.ss011 + + ie-cy.ss01 + io-cy.ss01 + + public.kern1.v + + izhitsacyr + izhitsagravedblcyr + v + + public.kern1.w1 + + omegacyr + otcyr + w + wacute + wcircumflex + wdieresis + wecyr + wgrave + + public.kern1.x + + ha-cy + hahookcyr + lhacyr + rhacyr + uniF879 + x + + public.kern1.y1 + + Ukcyr + u-cy + u-cy.accented + uacutedblcyr + udieresiscyr + ukcyr + umacroncyr + uniF43B + uniF4CD + ushort-cy + ustraightcyr + ustraightstrokecyr + y + yacute + ycircumflex + ydieresis + + public.kern1.z1 + + dzelo-cy + z + zacute + zcaron + zdotaccent + zemlya-cy + + public.kern1.ze-cy + + dzeabkhcyr + ksicyr + uniF517 + ze-cy + ze-cy.BGR + zedieresiscyr + zetailcyr + zetailcyr.BSH + + public.kern1.zhe-cy + + dzzhecyr + katailcyr + kaverticalstrokecyr + xatailcyr + yusBlended-cy + yusbigcyr + yusbigiotifiedcyr + yusbigiotifiedcyr.BGR + zhe-cy + zhe-cy.BGR + zhebrevecyr + zhedieresiscyr + zhetailcyr + zhwe-cy + + public.kern2.A.ss01 + + A.ss01 + AE.ss01 + Aacute.ss01 + Acircumflex.ss01 + Adieresis.ss01 + Agrave.ss01 + Amacron.ss01 + Aogonek.ss01 + Atilde.ss01 + + public.kern2.A.ss012 + + A-cy.ss01 + Abreve.ss01 + Aring.ss01 + + public.kern2.A2 + + A + A-cy + A-cy.accented + AE + AEacute + Aacute + Abreve + Abrevecyr + Acaron + Acircumflex + Adieresis + Adieresiscyr + Agrave + Aiecyr + Amacron + Aogonek + Aring + Atilde + De-cy.BGR + Delta + El-cy.BGR + Yn-cy + YusClosedlittle-cy + Yuslittlecyr + uniF50E + uniF830 + + public.kern2.B + + B + D + Dcaron + E + Eacute + Ecaron + Ecircumflex + Edieresis + Edotaccent + Egrave + Emacron + Eogonek + F + H + Hbar + Hcircumflex + I + Iacute + Ibreve + Icircumflex + Idieresis + Idotaccent + Igrave + Imacron + Iogonek + Itilde + K + K.ss01 + Kcommaaccent + Kcommaaccent.ss01 + L + Lacute + Lcaron + Lcommaaccent + Ldot + M + N + N.ss01 + Nacute + Nacute.ss01 + Ncaron + Ncaron.ss01 + Ncommaaccent + Ncommaaccent.ss01 + Ntilde + Ntilde.ss01 + P + R + Racute + Rcaron + Rcommaaccent + Thorn + uni1EBC + + public.kern2.Che-cy + + Cche-cy + Che-cy + Chedieresiscyr + Chekhakascyr + Chetailcyr + Chevertcyr + uniF4C6 + uniF87E + + public.kern2.De-cy + + Dchecyr + De-cy + DeSoft-cy + Dwe-cy + Dzze-cy + Dzzhecyr + TseReversed-cy + + public.kern2.El-cy + + El-cy + ElSoft-cy + Elhookcyr + Elmiddlehookcyr + Elsharptailcyr + Eltailcyr + Lhacyr + Ljekomicyr + uniF872 + + public.kern2.Eth + + Dcroat + Eth + Gestrokecyr + + public.kern2.G + + C + Cacute + Ccaron + Ccedilla + Ccircumflex + Cdotaccent + CrossedO-cy + DoubleO-cy + E-cy + Ef-cy.BGR + Es-cy + Estailcyr + Estailcyr.BSH + Estailcyr.CHU + Fitacyr + G + G.ss01 + Gacute + Gacute.ss01 + Gbreve + Gbreve.ss01 + Gcircumflex + Gcircumflex.ss01 + Gcommaaccent + Gcommaaccent.ss01 + Gdotaccent + Gdotaccent.ss01 + Haabkhcyr + Koppacyr + O + O-cy + O-cy.accented + OBinocular-cy + ODoubleMonocular-cy + OE + OMonocular-cy + Oacute + Obarcyr + Obardieresiscyr + Obreve + Ocircumflex + Odieresis + Odieresiscyr + Ograve + Ohungarumlaut + Omacron + Omegaroundcyr + Oslash + Otilde + Q + Q.ss01 + Qacyr + Schwacyr + Schwadieresiscyr + Sjekomicyr + Ukcyr + YuReversed-cy + uniF45D + uniF49A + uniF49C + uniF4D2 + uniF518 + uniF51A + uniF51C + uniF51E + uniF526 + uniF839 + uniF875 + + public.kern2.Gecyr + + Be-cy + E-cy.accented + Eiotifiedcyr + Em-cy + EmSoft-cy + Emsharptailcyr + En-cy + Engecyr + Enhookcyr + Enhookleftcyr + Enmiddlehookcyr + Ensharptailcyr + Entailcyr + Er-cy + Ertickcyr + Gehookcyr + Gestrokecyr.BSH + Getailcyr + Gheupturn-cy + Gjecyr + Hwe-cy + I-cy + Iebrevecyr + Ii-cy + Ii-cy.accented + Io-cy.accented + IotifiedA-cy + Iu-cy.accented + Ka-cy + Kaaleutcyr + Kahookcyr + Katailcyr + Kaverticalstrokecyr + Kjecyr + Njekomicyr + Palochkacyr + Pe-cy + Pehookcyr + Petailcyr + Rhacyr + Shhacyr + Shhatailcyr + Shwe-cy + Tswe-cy + Ve-cy + Yeru-cy.accented + Yeru-cymacron + Yi-cy + Ylongdieresiscyr + Yusbigiotifiedcyr + YusiotifiedClosedLittle-cy + Yuslittleiotifiedcyr + palochkacyr + uniF45E + uniF45F + uniF498 + uniF4D4 + uniF510 + uniF512 + uniF514 + uniF52C + uniF52E + uniF532 + uniF536 + uniF833 + uniF86F + uniF87B + + public.kern2.Ia-cy + + Ia-cy + Ia-cy.accented + Yaecyr + uniF4D8 + uniF528 + uniF52A + + public.kern2.Iishort-cy + + Idieresiscyr + Iishort-cy + Imacroncyr + Ishortsharptailcyr + + public.kern2.J + + J + Jcircumflex + Jecyr + + public.kern2.Oslash.alt + + Ha-cy.ss01 + Hahookcyr + X + X.ss01 + Xatailcyr + uniF878 + + public.kern2.S + + Dzwe-cy + S + Sacute + Scaron + Scedilla + Scircumflex + Scommaaccent + + public.kern2.T + + Djecyr + T + Tcaron + Tcedilla + Tche-cy + Tcommaaccent + Te-cy + TeWithMiddleHook-cy + Tetailcyr + Tetsecyr + Tjekomicyr + Tshecyr + Tsse-cy + Twe-cy + + public.kern2.U + + Iota-cy + OmegaBroad-cy + Omegacyr + Omegatitlocyr + Otcyr + Psicyr + U + Uacute + Ubreve + Ucircumflex + Udieresis + Ugrave + Uhungarumlaut + Umacron + Uogonek + Uring + Utilde + + public.kern2.Ucyr.ss01 + + U-cy.accented + U-cy.ss01 + Uacutedblcyr + Udieresiscyr + Umacroncyr + Ushort-cy.ss01 + uniF4CC + + public.kern2.V + + Izhitsacyr + Izhitsagravedblcyr + V + V.ss01 + + public.kern2.W + + W + W.ss01 + Wacute + Wacute.ss01 + Wcircumflex + Wcircumflex.ss01 + Wdieresis + Wdieresis.ss01 + Wecyr + Wgrave + Wgrave.ss01 + + public.kern2.Y + + Ustraightcyr + Ustraightstrokecyr + Y + Y.ss01 + Yacute + Yacute.ss01 + Ycircumflex + Ycircumflex.ss01 + Ydieresis + Ydieresis.ss01 + uniF43A + + public.kern2.Z + + Dzelo-cy + Z + Z.ss01 + Zacute + Zacute.ss01 + Zcaron + Zcaron.ss01 + Zdotaccent + Zdotaccent.ss01 + Zemlya-cy + + public.kern2.Ze-cy1 + + Dzeabkhcyr + Ksicyr + Ze-cy + Zedieresiscyr + Zetailcyr + Zetailcyr.BSH + Zhwe-cy + uniF516 + + public.kern2.Zhe-cy1 + + YusBlended-cy + Yusbigcyr + Zhe-cy + Zhebrevecyr + Zhedieresiscyr + Zhetailcyr + + public.kern2.a + + a + a-cy + a-cy.accented + aacute + abreve + abrevecyr + acaron + acircumflex + adieresis + adieresiscyr + ae + aeacute + agrave + aiecyr + amacron + aogonek + aring + atilde + uniF50F + uniF831 + + public.kern2.acute.case + + acute.case + hungarumlaut.case + + public.kern2.che-cy + + cche-cy + che-cy + chedieresiscyr + chekhakascyr + chetailcyr + chevertcyr + uniF4C7 + uniF87F + + public.kern2.comma + + comma + quotedblbase + quotesinglbase + + public.kern2.copyright + + copyright + registered + + public.kern2.decyr.ss01 + + de-cy.ss01 + deSoft-cy + dwe-cy + dzze-cy + dzzhecyr + tseReversed-cy + + public.kern2.el-cy + + el-cy + el-cy.ss01 + elSoft-cy + elhookcyr + elmiddlehookcyr + elsharptailcyr + eltailcyr + lhacyr + ljecyr.ss01 + ljekomicyr + uniF873 + + public.kern2.el-cy.BGR1 + + el-cy.BGR + uni1C81 + yn-cy + yusClosedlittle-cy + yuslittlecyr + + public.kern2.emdash + + emdash + endash + hyphen + + public.kern2.f + + f + f_f + f_f_i + f_f_l + fi + fl + gestrokecyr + + public.kern2.f_f.ss01 + + f_f.ss01 + f_f_i.ss01 + f_f_l.ss01 + + public.kern2.fi.ss01 + + fi.ss01 + fl.ss01 + + public.kern2.five + + five + five.tf + + public.kern2.four + + four + four.tf + + public.kern2.g + + g + gacute + gbreve + gcircumflex + gcommaaccent + gdotaccent + + public.kern2.g.ss01 + + g.ss01 + gacute.ss01 + gbreve.ss01 + gcircumflex.ss01 + gcommaaccent.ss01 + gdotaccent.ss01 + + public.kern2.guillemotleft + + guillemetleft + guilsinglleft + + public.kern2.guillemotright + + guillemetright + guilsinglright + + public.kern2.h + + eiotifiedcyr.BGR + h + hcircumflex + hwe-cy + iotifieda-cy.BGR + iu-cy.BGR + k + ka-cy.BGR + kcommaaccent + l + lacute + lcaron + lcommaaccent + ldot + shhacyr + shhatailcyr + ve-cy.BGR + yatcyr.BGR + yusbigiotifiedcyr.BGR + + public.kern2.i1 + + i + i-cy + iacute + icircumflex + igrave + imacron + iogonek + itilde + uniF476 + yi-cy.alt + + public.kern2.ia-cy + + ia-cy + ia-cy.accented + ia-cy.ss01 + uniF4D9 + uniF529 + uniF52B + yaecyr + + public.kern2.j + + enhookleftcyr + j + jcircumflex + jdotless + + public.kern2.l.ss01 + + l.ss01 + lacute.ss01 + lcaron.ss01 + lcommaaccent.ss01 + ldot.ss01 + + public.kern2.m + + eiotifiedcyr + em-cy + emSoft-cy + emsharptailcyr + en-cy + eng + engecyr + enhookcyr + enmiddlehookcyr + ensharptailcyr + entailcyr + er-cy + er-cy.ss01 + ertickcyr + ge-cy + gehookcyr + gehookstrokecyr + gestrokecyr.BSH + getailcyr + gheupturn-cy + gjecyr + idieresiscyr + idotless + igravecyr + ii-cy + ii-cy.accented + iishort-cy + imacroncyr + iotifieda-cy + ishortsharptailcyr + iu-cy + iu-cy.accented + ka-cy + kaaleutcyr + kahookcyr + katailcyr + kaverticalstrokecyr + kgreenlandic + kjecyr + m + mu + n + nacute + ncaron + ncommaaccent + njecyr.ss01 + njekomicyr + ntilde + p + p.ss01 + pe-cy + pe-cy.BGR + pehookcyr + petailcyr + psicyr + r + racute + rcaron + rcommaaccent + rhacyr + sha-cy + shcha-cy + shwe-cy + softsign-cy + softsign-cy.BGR + softsign-cy.ss01 + te-cy.BGR + tse-cy + tswe-cy + uni1C85 + uniF499 + uniF4D5 + uniF521 + uniF52D + uniF52F + uniF533 + uniF537 + uniF870 + uniF87C + ve-cy + ve-cy.ss01 + yatIotified-cy + yeru-cy + yeru-cy.accented + yeru-cy.ss01 + ylongdieresiscyr + yusbigiotifiedcyr + yusiotifiedClosedLittle-cy + yuslittleiotifiedcyr + + public.kern2.o + + Dekomicyr + Djekomicyr + a-cy.ss01 + a.ss01 + aacute.ss01 + abreve.ss01 + acircumflex.ss01 + adieresis.ss01 + agrave.ss01 + amacron.ss01 + aogonek.ss01 + aring.ss01 + atilde.ss01 + c + cacute + ccaron + ccedilla + ccircumflex + cdotaccent + cent + crossedo-cy + d + d.ss01 + dcaron + dcaron.ss01 + dcroat + dcroat.ss01 + de-cy.BGR + dekomicyr + djekomicyr + e + e-cy + e-cy.accented + e-cy.hist + e.ss01 + eacute + eacute.ss01 + ebreve + ebreve.ss01 + ecaron + ecaron.ss01 + ecircumflex + ecircumflex.ss01 + edieresis + edieresis.ss01 + edotaccent + edotaccent.ss01 + ef-cy + egrave + egrave.ss01 + emacron + emacron.ss01 + eogonek + eogonek.ss01 + es-cy + estailcyr + estailcyr.BSH + estailcyr.CHU + eth + eturned + fitacyr + haabkhcyr + ie-cy + ie-cy.ss01 + iebrevecyr + iegravecyr + iegravecyr.SRB + io-cy + io-cy.accented + io-cy.ss01 + koppacyr + o + o-cy + o-cy.accented + oBinocular-cy + oDoubleMonocular-cy + oMonocular-cy + oacute + obarcyr + obardieresiscyr + obreve + ocircumflex + odieresis + odieresiscyr + oe.ss01 + ograve + ohungarumlaut + omacron + omegaBroad-cy + omegaroundcyr + omegatitlocyr + oslashacute + otilde + q + q.ss01 + qacyr + schwacyr + schwadieresiscyr + sjekomicyr + ukcyr + uni1C82 + uni1C83 + uni1EBD + uniF475 + uniF49D + uniF4D3 + uniF511 + uniF513 + uniF515 + uniF519 + uniF51B + uniF51D + uniF51F + uniF527 + uniF834 + uniF83A + uniF876 + yuReversed-cy + + public.kern2.percent + + percent + perthousand + + public.kern2.period + + ellipsis + period + + public.kern2.quotedbl + + quotedbl + quotesingle + + public.kern2.quoteleft + + quotedblleft + quoteleft + + public.kern2.quoteright + + apostrophemod + minute + quotedblright + quoteright + second + + public.kern2.s + + dzwe-cy + s + sacute + scaron + scedilla + scircumflex + scommaaccent + + public.kern2.t + + t + t.ss01 + tbar.ss01 + tcaron + tcaron.ss01 + tcedilla + tcedilla.ss01 + tcommaaccent + tcommaaccent.ss01 + + public.kern2.tecyr + + tche-cy + te-cy.ss01 + tetailcyr + tetsecyr + tewithmiddlehook-cy + tjekomicyr + tsse-cy + twe-cy + + public.kern2.u + + igravecyr.SRB + ii-cy.BGR + iishort-cy.BGR + iota-cy + pe-cy.SRB + sha-cy.BGR + shcha-cy.BGR + te-cy.SRB + tse-cy.BGR + u + uacute + ubreve + ucircumflex + udieresis + ugrave + uhungarumlaut + umacron + uogonek + uring + utilde + + public.kern2.v1 + + izhitsacyr + izhitsagravedblcyr + v + + public.kern2.w + + omegacyr + otcyr + w + wacute + wcircumflex + wdieresis + wecyr + wgrave + + public.kern2.x + + ha-cy + hahookcyr + uniF879 + x + + public.kern2.y + + u-cy + u-cy.accented + uacutedblcyr + udieresiscyr + umacroncyr + uniF43B + uniF4CD + ustraightcyr + ustraightstrokecyr + y + yacute + ycircumflex + ydieresis + + public.kern2.z + + dzelo-cy + z + zacute + zcaron + zdotaccent + zemlya-cy + + public.kern2.ze-cy1 + + dzeabkhcyr + ksicyr + uniF517 + ze-cy + ze-cy.BGR + zedieresiscyr + zetailcyr + zetailcyr.BSH + zhwe-cy + + public.kern2.zero + + uni1C80 + zero + zero.tf + + public.kern2.zhe-cy1 + + xatailcyr + yusBlended-cy + yusbigcyr + zhe-cy + zhe-cy.BGR + zhebrevecyr + zhedieresiscyr + zhetailcyr + + ss01 + + A-cy.ss01 + A.ss01 + AE.ss01 + Aacute.ss01 + Abreve.ss01 + Acircumflex.ss01 + Adieresis.ss01 + Agrave.ss01 + Amacron.ss01 + Aogonek.ss01 + Aring.ss01 + Atilde.ss01 + Em-cy.ss01 + Eng.ss01 + G.ss01 + Gacute.ss01 + Gbreve.ss01 + Gcircumflex.ss01 + Gcommaaccent.ss01 + Gdotaccent.ss01 + Ha-cy.ss01 + Ia-cy.ss01 + J.ss01 + Jcircumflex.ss01 + K.ss01 + Ka-cy.ss01 + Kcommaaccent.ss01 + M.ss01 + N.ss01 + Nacute.ss01 + Ncaron.ss01 + Ncommaaccent.ss01 + Ntilde.ss01 + Q.ss01 + U-cy.ss01 + Ushort-cy.ss01 + V.ss01 + W.ss01 + Wacute.ss01 + Wcircumflex.ss01 + Wdieresis.ss01 + Wgrave.ss01 + X.ss01 + Y.ss01 + Yacute.ss01 + Ycircumflex.ss01 + Ydieresis.ss01 + Z.ss01 + Zacute.ss01 + Zcaron.ss01 + Zdotaccent.ss01 + Zhe-cy.ss01 + a-cy.ss01 + a.ss01 + aacute.ss01 + abreve.ss01 + acircumflex.ss01 + adieresis.ss01 + ae.ss01 + agrave.ss01 + amacron.ss01 + aogonek.ss01 + aring.ss01 + arrowdown.ss01 + arrowdown.ss01.case + arrowleft.ss01 + arrowleft.ss01.case + arrowright.ss01 + arrowright.ss01.case + arrowup.ss01 + arrowup.ss01.case + atilde.ss01 + b.ss01 + d.ss01 + dcaron.ss01 + dcroat.ss01 + de-cy.ss01 + e.ss01 + eacute.ss01 + ebreve.ss01 + ecaron.ss01 + ecircumflex.ss01 + edieresis.ss01 + edotaccent.ss01 + egrave.ss01 + el-cy.ss01 + emacron.ss01 + eogonek.ss01 + er-cy.ss01 + f.ss01 + f_f.ss01 + f_f_i.ss01 + f_f_l.ss01 + fi.ss01 + fl.ss01 + g.ss01 + gacute.ss01 + gbreve.ss01 + gcircumflex.ss01 + gcommaaccent.ss01 + gdotaccent.ss01 + germandbls.ss01 + hardsign-cy.ss01 + ia-cy.ss01 + ie-cy.ss01 + io-cy.ss01 + l.ss01 + lacute.ss01 + lcaron.ss01 + lcommaaccent.ss01 + ldot.ss01 + ljecyr.ss01 + lslash.ss01 + njecyr.ss01 + numero.ss01 + oe.ss01 + p.ss01 + q.ss01 + softsign-cy.ss01 + t.ss01 + tbar.ss01 + tcaron.ss01 + tcedilla.ss01 + tcommaaccent.ss01 + te-cy.ss01 + ve-cy.ss01 + yen.ss01 + yeru-cy.ss01 + + ss01_def + + A-cy + A + AE + Aacute + Abreve + Acircumflex + Adieresis + Agrave + Amacron + Aogonek + Aring + Atilde + Em-cy + Eng + G + Gacute + Gbreve + Gcircumflex + Gcommaaccent + Gdotaccent + Ha-cy + Ia-cy + J + Jcircumflex + K + Ka-cy + Kcommaaccent + M + N + Nacute + Ncaron + Ncommaaccent + Ntilde + Q + U-cy + Ushort-cy + V + W + Wacute + Wcircumflex + Wdieresis + Wgrave + X + Y + Yacute + Ycircumflex + Ydieresis + Z + Zacute + Zcaron + Zdotaccent + Zhe-cy + a-cy + a + aacute + abreve + acircumflex + adieresis + ae + agrave + amacron + aogonek + aring + arrowdown + arrowdown.case + arrowleft + arrowleft.case + arrowright + arrowright.case + arrowup + arrowup.case + atilde + b + d + dcaron + dcroat + de-cy + e + eacute + ebreve + ecaron + ecircumflex + edieresis + edotaccent + egrave + el-cy + emacron + eogonek + er-cy + f + f_f + f_f_i + f_f_l + fi + fl + g + gacute + gbreve + gcircumflex + gcommaaccent + gdotaccent + germandbls + hardsign-cy + ia-cy + ie-cy + io-cy + l + lacute + lcaron + lcommaaccent + ldot + ljecyr + lslash + njecyr + numero + oe + p + q + softsign-cy + t + tbar + tcaron + tcedilla + tcommaaccent + te-cy + ve-cy + yen + yeru-cy + + + diff --git a/sources/FixelText-Light.ufo/kerning.plist b/sources/FixelText-Light.ufo/kerning.plist new file mode 100644 index 00000000..aa0184af --- /dev/null +++ b/sources/FixelText-Light.ufo/kerning.plist @@ -0,0 +1,2040 @@ + + + + + Zhe-cy + + public.kern2.G + -27 + + space + + public.kern2.W + -7 + public.kern2.Y + -47 + + uni1C82 + + public.kern2.y + -67 + + public.kern1.A.ss012 + + public.kern2.G + -20 + public.kern2.T + -20 + public.kern2.U + -13 + public.kern2.Ucyr.ss01 + -20 + public.kern2.V + -20 + public.kern2.W + -13 + public.kern2.Y + -37 + public.kern2.Z + -7 + public.kern2.a + -7 + public.kern2.emdash + -7 + public.kern2.o + -13 + public.kern2.quotedbl + -27 + public.kern2.quoteright + -27 + public.kern2.tecyr + -20 + public.kern2.u + -13 + public.kern2.w + -20 + public.kern2.x + 3 + public.kern2.y + -7 + + public.kern1.A2 + + public.kern2.G + -13 + public.kern2.T + -27 + public.kern2.U + -7 + public.kern2.Ucyr.ss01 + -13 + public.kern2.V + -17 + public.kern2.W + -13 + public.kern2.Y + -33 + public.kern2.Z + 7 + public.kern2.a + -3 + public.kern2.decyr.ss01 + 3 + public.kern2.emdash + -7 + public.kern2.g + 3 + public.kern2.j + -13 + public.kern2.o + -7 + public.kern2.period + 20 + public.kern2.quotedbl + -33 + public.kern2.quoteright + -40 + public.kern2.t + -7 + public.kern2.tecyr + -20 + public.kern2.u + -3 + public.kern2.w + -13 + public.kern2.y + -27 + public.kern2.z + 7 + + public.kern1.C1 + + public.kern2.G + -3 + public.kern2.Oslash.alt + -3 + public.kern2.Ucyr.ss01 + -1 + public.kern2.Y + -13 + public.kern2.Z + -7 + public.kern2.emdash + -13 + public.kern2.f + -1 + public.kern2.g + -4 + public.kern2.j + -4 + public.kern2.o + -7 + public.kern2.period + -13 + public.kern2.tecyr + -1 + public.kern2.u + -3 + public.kern2.x + -3 + + public.kern1.Decyr + + public.kern2.G + -7 + public.kern2.Ucyr.ss01 + -20 + public.kern2.a + -7 + public.kern2.comma + 20 + public.kern2.decyr.ss01 + 1 + public.kern2.emdash + -7 + public.kern2.o + -7 + public.kern2.period + 7 + public.kern2.quoteright + -20 + public.kern2.tecyr + -13 + + public.kern1.E1 + + public.kern2.G + -3 + public.kern2.J + 7 + public.kern2.o + -7 + public.kern2.period + 13 + public.kern2.quotedbl + 7 + public.kern2.w + -3 + public.kern2.y + -7 + + public.kern1.G.ss01 + + public.kern2.A.ss01 + 7 + public.kern2.T + -7 + public.kern2.V + -13 + public.kern2.W + -7 + public.kern2.Y + -13 + public.kern2.quotedbl + -7 + public.kern2.quoteright + -13 + public.kern2.t + -3 + public.kern2.w + -15 + public.kern2.y + -13 + + public.kern1.G1 + + public.kern2.G + 7 + public.kern2.T + -7 + public.kern2.V + -13 + public.kern2.W + -7 + public.kern2.Y + -13 + public.kern2.comma + 7 + public.kern2.emdash + 13 + public.kern2.period + 7 + + public.kern1.Ge-cy + + public.kern2.A.ss012 + -20 + public.kern2.A2 + -20 + public.kern2.G + -7 + public.kern2.Gecyr + 7 + public.kern2.T + 40 + public.kern2.a + -40 + public.kern2.comma + -53 + public.kern2.emdash + -40 + public.kern2.guillemotright + -33 + public.kern2.i1 + 13 + public.kern2.m + -40 + public.kern2.o + -53 + public.kern2.period + -60 + public.kern2.x + -33 + public.kern2.y + -33 + + public.kern1.H + + public.kern2.comma + -13 + public.kern2.j + -7 + public.kern2.quoteright + -13 + + public.kern1.Hardcyr + + public.kern2.A.ss012 + 5 + public.kern2.Oslash.alt + -3 + public.kern2.T + -73 + public.kern2.Ucyr.ss01 + -47 + public.kern2.quotedbl + -80 + public.kern2.quoteright + -47 + public.kern2.tecyr + -20 + public.kern2.x + -13 + public.kern2.y + -20 + + public.kern1.J1 + + public.kern2.A.ss012 + 3 + public.kern2.A2 + -7 + public.kern2.S + -13 + public.kern2.T + -1 + public.kern2.Z + -7 + public.kern2.comma + -20 + public.kern2.period + -20 + + public.kern1.K + + public.kern2.G + -47 + public.kern2.J + 7 + public.kern2.S + -7 + public.kern2.U + -2 + public.kern2.a + -7 + public.kern2.emdash + -40 + public.kern2.f + -3 + public.kern2.g + -13 + public.kern2.j + -7 + public.kern2.o + -27 + public.kern2.period + 7 + public.kern2.quoteright + -20 + public.kern2.t + -20 + public.kern2.tecyr + -27 + public.kern2.u + -20 + public.kern2.w + -20 + public.kern2.y + -27 + + public.kern1.L + + public.kern2.G + -27 + public.kern2.J + 7 + public.kern2.T + -60 + public.kern2.U + -27 + public.kern2.V + -67 + public.kern2.W + -40 + public.kern2.Y + -60 + public.kern2.a + -7 + public.kern2.emdash + -53 + public.kern2.guillemotleft + -20 + public.kern2.j + -7 + public.kern2.o + -27 + public.kern2.quotedbl + -60 + public.kern2.quoteright + -47 + public.kern2.t + -13 + public.kern2.u + -7 + public.kern2.w + -40 + public.kern2.y + -60 + public.kern2.z + 7 + + public.kern1.O + + Zhe-cy + -27 + public.kern2.A.ss012 + 3 + public.kern2.A2 + -13 + public.kern2.J + -27 + public.kern2.Oslash.alt + -13 + public.kern2.T + -20 + public.kern2.Ucyr.ss01 + -20 + public.kern2.V + -20 + public.kern2.W + -7 + public.kern2.Y + -27 + public.kern2.Z + -27 + public.kern2.a + -7 + public.kern2.comma + -40 + public.kern2.decyr.ss01 + -13 + public.kern2.emdash + 13 + public.kern2.j + -7 + public.kern2.period + -33 + public.kern2.quotedbl + -13 + public.kern2.x + -7 + public.kern2.z + -7 + + public.kern1.Oslash.alt + + public.kern2.G + -20 + public.kern2.S + -3 + public.kern2.a + -7 + public.kern2.comma + 7 + public.kern2.emdash + -13 + public.kern2.f + -3 + public.kern2.g + -3 + public.kern2.j + -7 + public.kern2.o + -20 + public.kern2.period + 7 + public.kern2.quoteright + -27 + public.kern2.s + -3 + public.kern2.t + -7 + public.kern2.tecyr + -13 + public.kern2.u + -7 + public.kern2.w + -13 + public.kern2.y + -13 + + public.kern1.P + + public.kern2.A.ss01 + -27 + public.kern2.A.ss012 + -27 + public.kern2.A2 + -40 + public.kern2.J + -47 + public.kern2.Oslash.alt + -20 + public.kern2.T + -13 + public.kern2.Ucyr.ss01 + -13 + public.kern2.V + -3 + public.kern2.W + -3 + public.kern2.Y + -7 + public.kern2.Z + -27 + public.kern2.a + -13 + public.kern2.comma + -73 + public.kern2.decyr.ss01 + -20 + public.kern2.emdash + -3 + public.kern2.g + -7 + public.kern2.g.ss01 + -13 + public.kern2.j + -20 + public.kern2.o + -20 + public.kern2.period + -87 + public.kern2.quotedbl + -13 + public.kern2.s + -13 + public.kern2.tecyr + 3 + public.kern2.x + -3 + public.kern2.z + -7 + + public.kern1.R + + public.kern2.G + -7 + public.kern2.T + -13 + public.kern2.U + -13 + public.kern2.V + -10 + public.kern2.W + -3 + public.kern2.Y + -13 + public.kern2.a + -3 + public.kern2.emdash + -7 + public.kern2.j + -7 + public.kern2.o + -13 + public.kern2.quotedbl + -13 + public.kern2.quoteright + -7 + public.kern2.s + -3 + public.kern2.t + -3 + public.kern2.u + -13 + public.kern2.w + -3 + public.kern2.y + -3 + + public.kern1.S1 + + public.kern2.Oslash.alt + -3 + public.kern2.T + -3 + public.kern2.V + -7 + public.kern2.W + -7 + public.kern2.Y + -20 + public.kern2.Z + -7 + public.kern2.comma + -7 + public.kern2.emdash + 7 + public.kern2.g + -13 + public.kern2.j + -7 + public.kern2.quotedbl + -20 + public.kern2.quoteright + -20 + public.kern2.t + -3 + public.kern2.w + -7 + public.kern2.x + -3 + public.kern2.y + -7 + + public.kern1.T1 + + public.kern2.A.ss01 + -13 + public.kern2.A.ss012 + -30 + public.kern2.A2 + -27 + public.kern2.G + -20 + public.kern2.J + -47 + public.kern2.S + -7 + public.kern2.T + 27 + public.kern2.V + 13 + public.kern2.W + 13 + public.kern2.Y + 7 + public.kern2.a + -40 + public.kern2.comma + -33 + public.kern2.decyr.ss01 + -53 + public.kern2.emdash + -47 + public.kern2.f + -7 + public.kern2.g + -47 + public.kern2.guillemotleft + -33 + public.kern2.guillemotright + -40 + public.kern2.i1 + 13 + public.kern2.j + -13 + public.kern2.m + -40 + public.kern2.o + -53 + public.kern2.period + -47 + public.kern2.quotedbl + 13 + public.kern2.quoteright + -13 + public.kern2.s + -40 + public.kern2.tecyr + -40 + public.kern2.u + -37 + public.kern2.w + -40 + public.kern2.x + -40 + public.kern2.y + -40 + public.kern2.z + -33 + + public.kern1.U1 + + public.kern2.A.ss01 + -7 + public.kern2.A.ss012 + -3 + public.kern2.A2 + -7 + public.kern2.J + -13 + public.kern2.Z + -13 + public.kern2.comma + -20 + public.kern2.j + -13 + public.kern2.period + -20 + public.kern2.quoteright + -27 + public.kern2.z + -7 + + public.kern1.Ucyr1 + + public.kern2.A.ss012 + -13 + public.kern2.A2 + -13 + public.kern2.G + -13 + public.kern2.Gecyr + -7 + public.kern2.T + 7 + public.kern2.a + -33 + public.kern2.comma + -60 + public.kern2.decyr.ss01 + -33 + public.kern2.emdash + -33 + public.kern2.guillemotright + -40 + public.kern2.i1 + 13 + public.kern2.m + -40 + public.kern2.o + -47 + public.kern2.period + -60 + public.kern2.tecyr + -13 + public.kern2.x + -13 + public.kern2.y + -20 + + public.kern1.V + + public.kern2.A.ss01 + -40 + public.kern2.A.ss012 + -13 + public.kern2.A2 + -17 + public.kern2.G + -20 + public.kern2.J + -53 + public.kern2.S + -7 + public.kern2.T + 13 + public.kern2.a + -33 + public.kern2.comma + -67 + public.kern2.emdash + -27 + public.kern2.f + -3 + public.kern2.g + -27 + public.kern2.g.ss01 + -27 + public.kern2.guillemotleft + -27 + public.kern2.guillemotright + -20 + public.kern2.i1 + -1 + public.kern2.j + -13 + public.kern2.m + -33 + public.kern2.o + -40 + public.kern2.period + -67 + public.kern2.quotedbl + 7 + public.kern2.quoteright + -7 + public.kern2.s + -27 + public.kern2.t + -7 + public.kern2.u + -33 + public.kern2.w + -7 + public.kern2.x + -13 + public.kern2.y + -13 + public.kern2.z + -13 + + public.kern1.W.ss011 + + public.kern2.A.ss01 + -7 + public.kern2.A.ss012 + -7 + public.kern2.A2 + -13 + public.kern2.G + -9 + public.kern2.J + -20 + public.kern2.S + -7 + public.kern2.T + 20 + public.kern2.Y + 7 + public.kern2.Z + -6 + public.kern2.a + -13 + public.kern2.comma + -40 + public.kern2.emdash + -13 + public.kern2.g + -10 + public.kern2.g.ss01 + -7 + public.kern2.guillemotright + -8 + public.kern2.i1 + -6 + public.kern2.m + -7 + public.kern2.o + -27 + public.kern2.period + -53 + public.kern2.quotedbl + 7 + public.kern2.quoteright + 13 + public.kern2.s + -7 + public.kern2.u + -7 + public.kern2.w + -11 + public.kern2.y + -9 + public.kern2.z + -7 + + public.kern1.W1 + + public.kern2.A.ss01 + -27 + public.kern2.A.ss012 + -7 + public.kern2.A2 + -13 + public.kern2.G + -7 + public.kern2.J + -47 + public.kern2.S + -3 + public.kern2.T + 13 + public.kern2.Z + -7 + public.kern2.a + -27 + public.kern2.comma + -27 + public.kern2.emdash + -13 + public.kern2.g + -20 + public.kern2.guillemotleft + -20 + public.kern2.guillemotright + -7 + public.kern2.i1 + 7 + public.kern2.j + -13 + public.kern2.m + -20 + public.kern2.o + -33 + public.kern2.period + -27 + public.kern2.quoteright + -13 + public.kern2.s + -13 + public.kern2.u + -13 + public.kern2.w + -3 + public.kern2.x + -7 + public.kern2.y + -7 + public.kern2.z + -13 + + public.kern1.Y.ss011 + + public.kern2.A.ss01 + -33 + public.kern2.A.ss012 + -47 + public.kern2.G + -20 + public.kern2.S + -3 + public.kern2.a + -33 + public.kern2.comma + -60 + public.kern2.emdash + -33 + public.kern2.i1 + 7 + public.kern2.m + -47 + public.kern2.o + -67 + public.kern2.period + -60 + public.kern2.quoteright + -20 + public.kern2.s + -37 + public.kern2.u + -40 + public.kern2.w + -27 + + public.kern1.Y1 + + public.kern2.A.ss012 + -20 + public.kern2.A2 + -33 + public.kern2.G + -27 + public.kern2.J + -53 + public.kern2.S + -20 + public.kern2.T + 7 + public.kern2.a + -47 + public.kern2.comma + -53 + public.kern2.emdash + -40 + public.kern2.f + -20 + public.kern2.g + -40 + public.kern2.guillemotleft + -47 + public.kern2.guillemotright + -40 + public.kern2.i1 + -13 + public.kern2.j + -20 + public.kern2.m + -53 + public.kern2.o + -67 + public.kern2.period + -67 + public.kern2.quotedbl + 7 + public.kern2.quoteright + -13 + public.kern2.s + -47 + public.kern2.t + -7 + public.kern2.u + -47 + public.kern2.w + -20 + public.kern2.x + -27 + public.kern2.y + -27 + public.kern2.z + -33 + + public.kern1.Yacyr + + public.kern2.Ucyr.ss01 + -7 + + public.kern1.Z1 + + public.kern2.A.ss01 + 7 + public.kern2.A.ss012 + 13 + public.kern2.G + -13 + public.kern2.T + 7 + public.kern2.U + -13 + public.kern2.W + 7 + public.kern2.a + -7 + public.kern2.comma + 7 + public.kern2.emdash + -27 + public.kern2.f + -3 + public.kern2.i1 + 7 + public.kern2.o + -20 + public.kern2.period + 7 + public.kern2.quoteright + -27 + public.kern2.s + -7 + public.kern2.t + -7 + public.kern2.u + -13 + public.kern2.w + -13 + public.kern2.y + -7 + + public.kern1.a1 + + public.kern2.A.ss012 + 5 + public.kern2.G + -3 + public.kern2.S + -13 + public.kern2.T + -47 + public.kern2.Ucyr.ss01 + -3 + public.kern2.V + -40 + public.kern2.W + -27 + public.kern2.Y + -53 + public.kern2.comma + -7 + public.kern2.j + -13 + public.kern2.quotedbl + -27 + public.kern2.quoteright + -40 + public.kern2.t + -3 + public.kern2.tecyr + -2 + public.kern2.u + -7 + public.kern2.w + -10 + public.kern2.y + -13 + public.kern2.z + 3 + + public.kern1.c1 + + public.kern2.A2 + 13 + public.kern2.G + 7 + public.kern2.T + -33 + public.kern2.Ucyr.ss01 + -33 + public.kern2.V + -20 + public.kern2.W + -13 + public.kern2.Y + -33 + public.kern2.g + 3 + public.kern2.period + -13 + public.kern2.quotedbl + -20 + public.kern2.quoteright + -13 + + public.kern1.comma1 + + public.kern2.A.ss01 + 7 + public.kern2.G + -33 + public.kern2.J + 13 + public.kern2.T + -47 + public.kern2.U + -20 + public.kern2.V + -53 + public.kern2.W + -20 + public.kern2.Y + -67 + public.kern2.a + -13 + public.kern2.five + -13 + public.kern2.h + -13 + public.kern2.i1 + -13 + public.kern2.m + -13 + public.kern2.o + -20 + public.kern2.t + -20 + public.kern2.u + -20 + public.kern2.w + -20 + public.kern2.x + -13 + public.kern2.y + -47 + public.kern2.z + -7 + public.kern2.zero + -20 + + public.kern1.dcaron + + public.kern2.B + 13 + public.kern2.G + 7 + public.kern2.Oslash.alt + 40 + public.kern2.S + 13 + public.kern2.T + 60 + public.kern2.U + 20 + public.kern2.V + 53 + public.kern2.W + 40 + public.kern2.Y + 53 + public.kern2.Z + 33 + public.kern2.a + 7 + public.kern2.f + 33 + public.kern2.fi.ss01 + 33 + public.kern2.h + 27 + public.kern2.i1 + 27 + public.kern2.j + 7 + public.kern2.m + 7 + public.kern2.s + 7 + public.kern2.t + 27 + public.kern2.w + 20 + public.kern2.x + 20 + public.kern2.y + 20 + public.kern2.z + 20 + + public.kern1.decyr1 + + public.kern2.A2 + 7 + public.kern2.T + -53 + public.kern2.Ucyr.ss01 + -27 + public.kern2.comma + 7 + public.kern2.decyr.ss01 + 10 + public.kern2.emdash + -5 + public.kern2.o + -13 + public.kern2.period + 7 + public.kern2.quoteright + -13 + public.kern2.tecyr + -13 + public.kern2.y + -7 + + public.kern1.e.ss011 + + public.kern2.Oslash.alt + -7 + public.kern2.V + -33 + public.kern2.quotedbl + -27 + public.kern2.quoteright + -20 + + public.kern1.e1 + + public.kern2.A.ss012 + 5 + public.kern2.A2 + -3 + public.kern2.Oslash.alt + -13 + public.kern2.T + -53 + public.kern2.Ucyr.ss01 + -47 + public.kern2.V + -40 + public.kern2.W + -33 + public.kern2.Y + -73 + public.kern2.Z + -7 + public.kern2.comma + -13 + public.kern2.j + -13 + public.kern2.period + -13 + public.kern2.quotedbl + -20 + public.kern2.quoteright + -27 + public.kern2.w + -7 + public.kern2.x + -13 + public.kern2.y + -13 + public.kern2.z + -7 + + public.kern1.emdash1 + + public.kern2.A.ss01 + 7 + public.kern2.A2 + -7 + public.kern2.G + 13 + public.kern2.J + -33 + public.kern2.Oslash.alt + -13 + public.kern2.S + -20 + public.kern2.T + -47 + public.kern2.Ucyr.ss01 + -33 + public.kern2.V + -27 + public.kern2.W + -13 + public.kern2.Y + -40 + public.kern2.Z + -13 + public.kern2.decyr.ss01 + -20 + public.kern2.five + -13 + public.kern2.four + 13 + public.kern2.g.ss01 + 7 + public.kern2.j + -13 + public.kern2.o + 7 + public.kern2.tecyr + -27 + public.kern2.x + -13 + public.kern2.y + -7 + public.kern2.z + -20 + + public.kern1.f1 + + public.kern2.A.ss012 + -7 + public.kern2.A2 + -13 + public.kern2.J + -40 + public.kern2.S + 7 + public.kern2.T + 7 + public.kern2.V + 7 + public.kern2.Y + 7 + public.kern2.a + -3 + public.kern2.comma + -27 + public.kern2.emdash + -13 + public.kern2.f + 7 + public.kern2.g + -7 + public.kern2.o + -20 + public.kern2.period + -47 + public.kern2.quotedbl + 13 + public.kern2.quoteright + 13 + public.kern2.s + -13 + public.kern2.t + 10 + public.kern2.y + 13 + + public.kern1.five1 + + public.kern2.comma + -20 + public.kern2.period + -10 + + public.kern1.four1 + + public.kern2.emdash + -13 + public.kern2.five + 7 + public.kern2.four + 7 + public.kern2.quotedbl + -13 + + public.kern1.g.ss011 + + public.kern2.V + -13 + public.kern2.quoteright + 7 + + public.kern1.g1 + + public.kern2.A2 + 3 + public.kern2.T + -53 + public.kern2.V + -13 + public.kern2.W + -7 + public.kern2.Y + -20 + public.kern2.comma + 7 + public.kern2.f + 7 + public.kern2.j + 10 + public.kern2.quotedbl + -7 + public.kern2.y + 7 + + public.kern1.gecyr + + public.kern2.A2 + -7 + public.kern2.T + -27 + public.kern2.Ucyr.ss01 + -13 + public.kern2.comma + -53 + public.kern2.decyr.ss01 + -20 + public.kern2.emdash + -33 + public.kern2.o + -13 + public.kern2.period + -53 + public.kern2.quoteright + 13 + public.kern2.tecyr + 13 + public.kern2.x + 7 + public.kern2.y + 13 + + public.kern1.guillemotright1 + + public.kern2.J + -27 + public.kern2.T + -33 + public.kern2.V + -27 + public.kern2.W + -20 + public.kern2.Y + -47 + + public.kern1.hardcyr + + public.kern2.Oslash.alt + -7 + public.kern2.T + -47 + public.kern2.Ucyr.ss01 + -40 + public.kern2.quotedbl + -73 + public.kern2.quoteright + -60 + public.kern2.tecyr + -60 + public.kern2.x + -13 + public.kern2.y + -33 + + public.kern1.i1 + + public.kern2.T + 13 + public.kern2.V + 13 + public.kern2.W + 7 + public.kern2.Y + 13 + public.kern2.i1 + 13 + public.kern2.j + -27 + public.kern2.quoteright + -7 + + public.kern1.icyr1 + + public.kern2.T + -40 + public.kern2.Ucyr.ss01 + -40 + public.kern2.V + -33 + public.kern2.W + -13 + public.kern2.Y + -53 + public.kern2.j + 1 + public.kern2.quoteright + -13 + + public.kern1.j1 + + public.kern2.quoteright + -13 + + public.kern1.k + + public.kern2.A.ss012 + 7 + public.kern2.A2 + 7 + public.kern2.G + -7 + public.kern2.J + 7 + public.kern2.T + -40 + public.kern2.Ucyr.ss01 + -13 + public.kern2.W + -13 + public.kern2.Y + -13 + public.kern2.a + -7 + public.kern2.emdash + -27 + public.kern2.o + -13 + public.kern2.x + 7 + + public.kern1.l + + public.kern2.quoteright + -13 + + public.kern1.l.ss011 + + public.kern2.A.ss01 + 13 + public.kern2.V + -27 + public.kern2.W + -27 + public.kern2.f + -27 + public.kern2.j + -13 + public.kern2.quotedbl + -13 + public.kern2.t + -5 + public.kern2.w + -20 + public.kern2.y + -20 + + public.kern1.n + + public.kern2.T + -43 + public.kern2.Ucyr.ss01 + -47 + public.kern2.V + -40 + public.kern2.W + -27 + public.kern2.Y + -67 + public.kern2.j + -13 + public.kern2.quotedbl + -20 + public.kern2.quoteright + -13 + public.kern2.tecyr + -7 + public.kern2.w + -10 + public.kern2.y + -13 + + public.kern1.o1 + + public.kern2.A.ss012 + -1 + public.kern2.A2 + -7 + public.kern2.J + -13 + public.kern2.Oslash.alt + -20 + public.kern2.S + -7 + public.kern2.T + -53 + public.kern2.Ucyr.ss01 + -60 + public.kern2.V + -40 + public.kern2.W + -33 + public.kern2.Y + -67 + public.kern2.Z + -20 + public.kern2.a + -3 + public.kern2.comma + -27 + public.kern2.j + -13 + public.kern2.period + -33 + public.kern2.quotedbl + -27 + public.kern2.quoteright + -27 + public.kern2.s + -7 + public.kern2.tecyr + -13 + public.kern2.w + -10 + public.kern2.x + -17 + public.kern2.y + -17 + public.kern2.z + -13 + + public.kern1.period1 + + public.kern2.A.ss01 + 13 + public.kern2.A.ss012 + 20 + public.kern2.A2 + 20 + public.kern2.G + -33 + public.kern2.J + 13 + public.kern2.Oslash.alt + 7 + public.kern2.T + -47 + public.kern2.U + -20 + public.kern2.Ucyr.ss01 + -13 + public.kern2.V + -47 + public.kern2.W + -27 + public.kern2.Y + -67 + public.kern2.Z + 7 + public.kern2.five + -7 + public.kern2.j + -13 + public.kern2.o + -33 + public.kern2.t + -20 + public.kern2.tecyr + -40 + public.kern2.u + -20 + public.kern2.w + -20 + public.kern2.y + -50 + public.kern2.zero + -7 + + public.kern1.quotedbl1 + + public.kern2.A.ss01 + -33 + public.kern2.A.ss012 + -20 + public.kern2.A2 + -33 + public.kern2.G + -13 + public.kern2.J + -53 + public.kern2.T + 20 + public.kern2.V + 7 + public.kern2.W + 7 + public.kern2.Y + 7 + public.kern2.Z + -7 + public.kern2.a + -20 + public.kern2.decyr.ss01 + -27 + public.kern2.four + -40 + public.kern2.g + -20 + public.kern2.g.ss01 + -13 + public.kern2.j + -13 + public.kern2.o + -27 + public.kern2.period + -5 + public.kern2.s + -20 + public.kern2.x + -7 + public.kern2.z + -7 + public.kern2.zero + -13 + + public.kern1.quoteleft1 + + public.kern2.A.ss01 + -40 + public.kern2.A2 + -33 + public.kern2.G + -13 + public.kern2.J + -27 + public.kern2.Oslash.alt + 7 + public.kern2.T + 27 + public.kern2.V + 13 + public.kern2.W + 20 + public.kern2.Y + 20 + public.kern2.a + -20 + public.kern2.f + 7 + public.kern2.g + -33 + public.kern2.g.ss01 + -27 + public.kern2.i1 + 20 + public.kern2.j + -7 + public.kern2.m + -13 + public.kern2.o + -40 + public.kern2.s + -20 + public.kern2.u + -13 + public.kern2.w + -20 + public.kern2.x + -20 + public.kern2.y + -13 + public.kern2.z + -20 + + public.kern1.quoteright1 + + public.kern2.A.ss01 + -40 + public.kern2.A2 + -40 + public.kern2.B + -7 + public.kern2.G + -27 + public.kern2.J + -33 + public.kern2.Oslash.alt + -7 + public.kern2.S + -20 + public.kern2.T + 7 + public.kern2.U + -13 + public.kern2.V + 7 + public.kern2.W + 13 + public.kern2.Z + -13 + public.kern2.a + -47 + public.kern2.g + -53 + public.kern2.g.ss01 + -47 + public.kern2.h + -20 + public.kern2.i1 + -13 + public.kern2.m + -20 + public.kern2.o + -60 + public.kern2.s + -47 + public.kern2.t + -7 + public.kern2.u + -20 + public.kern2.w + -27 + public.kern2.x + -27 + public.kern2.y + -20 + public.kern2.z + -40 + + public.kern1.s1 + + public.kern2.A2 + 7 + public.kern2.J + 7 + public.kern2.Oslash.alt + -3 + public.kern2.T + -40 + public.kern2.V + -27 + public.kern2.W + -13 + public.kern2.Y + -40 + public.kern2.Z + -7 + public.kern2.comma + -7 + public.kern2.period + -13 + public.kern2.quotedbl + -20 + public.kern2.quoteright + -13 + public.kern2.x + -7 + + public.kern1.t.ss011 + + public.kern2.emdash + -7 + + public.kern1.t1 + + public.kern2.G + -7 + public.kern2.J + 13 + public.kern2.T + -10 + public.kern2.V + -13 + public.kern2.W + -7 + public.kern2.Y + -17 + public.kern2.emdash + -20 + public.kern2.h + 7 + public.kern2.o + -7 + public.kern2.t + 7 + public.kern2.y + 7 + public.kern2.z + 13 + + public.kern1.u1 + + public.kern2.T + -40 + public.kern2.V + -33 + public.kern2.W + -20 + public.kern2.Y + -53 + public.kern2.j + -13 + public.kern2.quoteright + -13 + + public.kern1.uni0435.ss011 + + public.kern2.T + -47 + public.kern2.Ucyr.ss01 + -40 + public.kern2.V + -33 + public.kern2.W + -13 + public.kern2.Y + -40 + public.kern2.w + -3 + public.kern2.x + -7 + public.kern2.y + -7 + + public.kern1.w1 + + public.kern2.A.ss012 + -2 + public.kern2.A2 + -13 + public.kern2.J + -20 + public.kern2.Oslash.alt + -13 + public.kern2.S + -13 + public.kern2.T + -40 + public.kern2.V + -7 + public.kern2.W + -3 + public.kern2.Y + -20 + public.kern2.Z + -20 + public.kern2.a + -10 + public.kern2.comma + -13 + public.kern2.g.ss01 + -7 + public.kern2.j + -7 + public.kern2.o + -10 + public.kern2.period + -20 + + public.kern1.x + + public.kern2.G + -7 + public.kern2.S + -7 + public.kern2.T + -40 + public.kern2.Ucyr.ss01 + -13 + public.kern2.V + -13 + public.kern2.W + -7 + public.kern2.Y + -27 + public.kern2.emdash + -13 + public.kern2.o + -17 + public.kern2.quotedbl + -7 + public.kern2.s + -7 + + public.kern1.y1 + + public.kern2.A.ss012 + -3 + public.kern2.A2 + -13 + public.kern2.J + -27 + public.kern2.Oslash.alt + -20 + public.kern2.T + -40 + public.kern2.Ucyr.ss01 + -4 + public.kern2.V + -13 + public.kern2.W + -3 + public.kern2.Y + -27 + public.kern2.Z + -13 + public.kern2.a + -3 + public.kern2.comma + -27 + public.kern2.decyr.ss01 + -13 + public.kern2.f + 13 + public.kern2.g + -7 + public.kern2.g.ss01 + -13 + public.kern2.j + -7 + public.kern2.o + -7 + public.kern2.period + -53 + public.kern2.quoteright + 13 + public.kern2.t + 7 + public.kern2.tecyr + 7 + + public.kern1.z1 + + public.kern2.A2 + 7 + public.kern2.S + -13 + public.kern2.T + -33 + public.kern2.V + -13 + public.kern2.W + -13 + public.kern2.Y + -33 + public.kern2.comma + 7 + public.kern2.f + 7 + public.kern2.o + -13 + public.kern2.quotedbl + -13 + public.kern2.quoteright + -7 + + + diff --git a/sources/FixelText-Light.ufo/layercontents.plist b/sources/FixelText-Light.ufo/layercontents.plist new file mode 100644 index 00000000..7a35a5cf --- /dev/null +++ b/sources/FixelText-Light.ufo/layercontents.plist @@ -0,0 +1,10 @@ + + + + + + public.default + glyphs + + + diff --git a/sources/FixelText-Light.ufo/lib.plist b/sources/FixelText-Light.ufo/lib.plist new file mode 100644 index 00000000..c0069150 --- /dev/null +++ b/sources/FixelText-Light.ufo/lib.plist @@ -0,0 +1,1671 @@ + + + + + com.fontlab.v2.tth + + stems + + 69 + + width + 69 + horizontal + + round + + 35 + 3 + 47 + 4 + 60 + 5 + 0 + 7 + 22 + 8 + + + 74 + + width + 74 + horizontal + + round + + 19 + 2 + 35 + 3 + 47 + 4 + 60 + 5 + 72 + 6 + 0 + 7 + 20 + 8 + + + 76 + + width + 76 + horizontal + + round + + 19 + 2 + 35 + 3 + 72 + 6 + 0 + 7 + 20 + 8 + + + 80 + + width + 80 + horizontal + + round + + 29 + 3 + 47 + 4 + 60 + 5 + 72 + 6 + 0 + 7 + 20 + 8 + + + 99 + + width + 99 + horizontal + + round + + 19 + 2 + 29 + 3 + 37 + 4 + 48 + 5 + 58 + 6 + 0 + 7 + 16 + 8 + + + 74 + + width + 74 + horizontal + + round + + 19 + 2 + 35 + 3 + 47 + 4 + 60 + 5 + 72 + 6 + 0 + 7 + 20 + 8 + + + 80 + + width + 80 + horizontal + + round + + 29 + 3 + 47 + 4 + 60 + 5 + 72 + 6 + 0 + 7 + 20 + 8 + + + 93 + + width + 93 + horizontal + + round + + 19 + 2 + 29 + 3 + 37 + 4 + 48 + 5 + 58 + 6 + 0 + 7 + 16 + 8 + + + + + com.schriftgestaltung.disablesAutomaticAlignment + + com.schriftgestaltung.fontMasterID + master01 + com.schriftgestaltung.glyphOrder + + com.schriftgestaltung.master.name + regular + com.schriftgestaltung.useNiceNames + + com.schriftgestaltung.weightValue + 400 + public.postscriptNames + + A-cy + uni0410 + A-cy.ss01 + uni0410.ss01 + Be-cy + uni0411 + Che-cy + uni0427 + De-cy + uni0414 + Dze-cy + uni0405 + E-cy + uni0404 + Ef-cy + uni0424 + El-cy + uni041B + Em-cy + uni041C + Em-cy.ss01 + uni041C.ss01 + En-cy + uni041D + Er-cy + uni0420 + Ereversed-cy + uni042D + Es-cy + uni0421 + Gacute + uni01F4 + Gacute.ss01 + uni01F4.ss01 + Gcommaaccent + uni0122 + Gcommaaccent.ss01 + uni0122.ss01 + Ge-cy + uni0413 + Germandbls + uni1E9E + Gheupturn-cy + uni0490 + Ha-cy + uni0425 + Ha-cy.ss01 + uni0425.ss01 + Hardsign-cy + uni042A + I-cy + uni0406 + Ia-cy + uni042F + Ia-cy.ss01 + uni042F.ss01 + Ie-cy + uni0415 + Ii-cy + uni0418 + Iishort-cy + uni0419 + Io-cy + uni0401 + Iu-cy + uni042E + Ka-cy + uni041A + Ka-cy.ss01 + uni041A.ss01 + Kcommaaccent + uni0136 + Kcommaaccent.ss01 + uni0136.ss01 + Lcommaaccent + uni013B + Ncommaaccent + uni0145 + Ncommaaccent.ss01 + uni0145.ss01 + O-cy + uni041E + Pe-cy + uni041F + Rcommaaccent + uni0156 + Scommaaccent + uni0218 + Sha-cy + uni0428 + Shcha-cy + uni0429 + Softsign-cy + uni042C + Tcedilla + uni0162 + Tcommaaccent + uni021A + Te-cy + uni0422 + Tse-cy + uni0426 + U-cy + uni0423 + U-cy.ss01 + uni0423.ss01 + Ushort-cy + uni040E + Ushort-cy.ss01 + uni040E.ss01 + Ve-cy + uni0412 + Yeru-cy + uni042B + Yi-cy + uni0407 + Ze-cy + uni0417 + Zhe-cy + uni0416 + Zhe-cy.ss01 + uni0416.ss01 + _perc-circule + _perccircule + a-cy + uni0430 + a-cy.ss01 + uni0430.ss01 + be-cy + uni0431 + che-cy + uni0447 + commaaccentcomb + uni0326 + commaaccentcomb.salt + uni0326.salt + de-cy + uni0434 + de-cy.ss01 + uni0434.ss01 + dze-cy + uni0455 + e-cy + uni0454 + ef-cy + uni0444 + el-cy + uni043B + el-cy.ss01 + uni043B.ss01 + em-cy + uni043C + en-cy + uni043D + er-cy + uni0440 + er-cy.ss01 + uni0440.ss01 + ereversed-cy + uni044D + es-cy + uni0441 + euro + Euro + gacute + uni01F5 + gacute.ss01 + uni01F5.ss01 + gcommaaccent + uni0123 + gcommaaccent.ss01 + uni0123.ss01 + ge-cy + uni0433 + gheupturn-cy + uni0491 + guillemetleft + guillemotleft + guillemetright + guillemotright + ha-cy + uni0445 + hardsign-cy + uni044A + hardsign-cy.ss01 + uni044A.ss01 + hryvnia + uni20B4 + i-cy + uni0456 + ia-cy + uni044F + ia-cy.ss01 + uni044F.ss01 + idotless + dotlessi + ie-cy + uni0435 + ie-cy.ss01 + uni0435.ss01 + ii-cy + uni0438 + iishort-cy + uni0439 + io-cy + uni0451 + io-cy.ss01 + uni0451.ss01 + iu-cy + uni044E + jdotless + uni0237 + je-cy + uni0458 + ka-cy + uni043A + kcommaaccent + uni0137 + lcommaaccent + uni013C + lcommaaccent.ss01 + uni013C.ss01 + ncommaaccent + uni0146 + numero + uni2116 + numero.ss01 + uni2116.ss01 + o-cy + uni043E + onesuperior + uni00B9 + pe-cy + uni043F + rcommaaccent + uni0157 + scommaaccent + uni0219 + sha-cy + uni0448 + shcha-cy + uni0449 + softsign-cy + uni044C + softsign-cy.ss01 + uni044C.ss01 + tcedilla + uni0163 + tcedilla.ss01 + uni0163.ss01 + tcommaaccent + uni021B + tcommaaccent.ss01 + uni021B.ss01 + te-cy + uni0442 + te-cy.ss01 + uni0442.ss01 + threesuperior + uni00B3 + tse-cy + uni0446 + twosuperior + uni00B2 + u-cy + uni0443 + ushort-cy + uni045E + ve-cy + uni0432 + ve-cy.ss01 + uni0432.ss01 + yeru-cy + uni044B + yeru-cy.ss01 + uni044B.ss01 + yi-cy + uni0457 + ze-cy + uni0437 + zhe-cy + uni0436 + + public.skipExportGlyphs + + Oslash.bold + oslash.bold + _perc-circule + + public.glyphOrder + + .notdef + NULL + CR + space + A + Aacute + Abreve + Acircumflex + Adieresis + Agrave + Amacron + Aogonek + Aring + Atilde + AE + B + C + Cacute + Ccaron + Ccedilla + Ccircumflex + Cdotaccent + D + Eth + Dcaron + Dcroat + E + Eacute + Ebreve + Ecaron + Ecircumflex + Edieresis + Edotaccent + Egrave + Emacron + Eogonek + F + G + Gacute + Gbreve + Gcircumflex + Gcommaaccent + Gdotaccent + H + Hbar + Hcircumflex + I + IJ + Iacute + Ibreve + Icircumflex + Idieresis + Idotaccent + Igrave + Imacron + Iogonek + Itilde + J + Jcircumflex + K + Kcommaaccent + L + Lacute + Lcaron + Lcommaaccent + Ldot + Lslash + M + N + Nacute + Ncaron + Ncommaaccent + Eng + Ntilde + O + Oacute + Obreve + Ocircumflex + Odieresis + Ograve + Ohungarumlaut + Omacron + Oslash + Otilde + OE + P + Thorn + Q + R + Racute + Rcaron + Rcommaaccent + S + Sacute + Scaron + Scedilla + Scircumflex + Scommaaccent + Germandbls + T + Tbar + Tcaron + Tcedilla + Tcommaaccent + U + Uacute + Ubreve + Ucircumflex + Udieresis + Ugrave + Uhungarumlaut + Umacron + Uogonek + Uring + Utilde + V + W + Wacute + Wcircumflex + Wdieresis + Wgrave + X + Y + Yacute + Ycircumflex + Ydieresis + Z + Zacute + Zcaron + Zdotaccent + A.ss01 + Aacute.ss01 + Abreve.ss01 + Acircumflex.ss01 + Adieresis.ss01 + Agrave.ss01 + Amacron.ss01 + Aogonek.ss01 + Aring.ss01 + Atilde.ss01 + AE.ss01 + G.ss01 + Gacute.ss01 + Gbreve.ss01 + Gcircumflex.ss01 + Gcommaaccent.ss01 + Gdotaccent.ss01 + J.ss01 + Jcircumflex.ss01 + K.ss01 + Kcommaaccent.ss01 + M.ss01 + N.ss01 + Nacute.ss01 + Ncaron.ss01 + Ncommaaccent.ss01 + Eng.ss01 + Ntilde.ss01 + Q.ss01 + V.ss01 + W.ss01 + Wacute.ss01 + Wcircumflex.ss01 + Wdieresis.ss01 + Wgrave.ss01 + X.ss01 + Y.ss01 + Yacute.ss01 + Ycircumflex.ss01 + Ydieresis.ss01 + Z.ss01 + Zacute.ss01 + Zcaron.ss01 + Zdotaccent.ss01 + a + aacute + abreve + acircumflex + adieresis + agrave + amacron + aogonek + aring + atilde + ae + b + c + cacute + ccaron + ccedilla + ccircumflex + cdotaccent + d + eth + dcaron + dcroat + e + eacute + ebreve + ecaron + ecircumflex + edieresis + edotaccent + egrave + emacron + eogonek + f + g + gacute + gbreve + gcircumflex + gcommaaccent + gdotaccent + h + hbar + hcircumflex + i + idotless + iacute + ibreve + icircumflex + idieresis + igrave + ij + imacron + iogonek + itilde + j + jdotless + jcircumflex + k + kcommaaccent + kgreenlandic + l + lacute + lcaron + lcommaaccent + ldot + lslash + m + n + nacute + napostrophe + ncaron + ncommaaccent + eng + ntilde + o + oacute + obreve + ocircumflex + odieresis + ograve + ohungarumlaut + omacron + oslash + otilde + oe + p + thorn + q + r + racute + rcaron + rcommaaccent + s + sacute + scaron + scedilla + scircumflex + scommaaccent + germandbls + t + tbar + tcaron + tcedilla + tcommaaccent + u + uacute + ubreve + ucircumflex + udieresis + ugrave + uhungarumlaut + umacron + uogonek + uring + utilde + v + w + wacute + wcircumflex + wdieresis + wgrave + x + y + yacute + ycircumflex + ydieresis + z + zacute + zcaron + zdotaccent + a.ss01 + aacute.ss01 + abreve.ss01 + acircumflex.ss01 + adieresis.ss01 + agrave.ss01 + amacron.ss01 + aogonek.ss01 + aring.ss01 + atilde.ss01 + ae.ss01 + b.ss01 + d.ss01 + dcaron.ss01 + dcroat.ss01 + e.ss01 + eacute.ss01 + ebreve.ss01 + ecaron.ss01 + ecircumflex.ss01 + edieresis.ss01 + edotaccent.ss01 + egrave.ss01 + emacron.ss01 + eogonek.ss01 + f.ss01 + g.ss01 + gacute.ss01 + gbreve.ss01 + gcircumflex.ss01 + gcommaaccent.ss01 + gdotaccent.ss01 + l.ss01 + lacute.ss01 + lcaron.ss01 + lcommaaccent.ss01 + ldot.ss01 + lslash.ss01 + oe.ss01 + p.ss01 + q.ss01 + germandbls.ss01 + t.ss01 + tbar.ss01 + tcaron.ss01 + tcedilla.ss01 + tcommaaccent.ss01 + f_f + f_f_i + f_f_l + fi + fl + f_f.ss01 + f_f_i.ss01 + f_f_l.ss01 + fi.ss01 + fl.ss01 + ordfeminine + ordmasculine + A-cy + Be-cy + Ve-cy + Ge-cy + Gheupturn-cy + De-cy + Ie-cy + Io-cy + Zhe-cy + Ze-cy + Ii-cy + Iishort-cy + Ka-cy + El-cy + Em-cy + En-cy + O-cy + Pe-cy + Er-cy + Es-cy + Te-cy + U-cy + Ushort-cy + Ef-cy + Ha-cy + Che-cy + Tse-cy + Sha-cy + Shcha-cy + Softsign-cy + Hardsign-cy + Yeru-cy + Dze-cy + E-cy + Ereversed-cy + I-cy + Yi-cy + Iu-cy + Ia-cy + A-cy.ss01 + Zhe-cy.ss01 + Ka-cy.ss01 + Em-cy.ss01 + U-cy.ss01 + Ushort-cy.ss01 + Ha-cy.ss01 + Ia-cy.ss01 + a-cy + be-cy + ve-cy + ge-cy + gheupturn-cy + de-cy + ie-cy + io-cy + zhe-cy + ze-cy + ii-cy + iishort-cy + ka-cy + el-cy + em-cy + en-cy + o-cy + pe-cy + er-cy + es-cy + te-cy + u-cy + ushort-cy + ef-cy + ha-cy + che-cy + tse-cy + sha-cy + shcha-cy + softsign-cy + hardsign-cy + yeru-cy + dze-cy + e-cy + ereversed-cy + i-cy + yi-cy + je-cy + iu-cy + ia-cy + a-cy.ss01 + ve-cy.ss01 + de-cy.ss01 + ie-cy.ss01 + io-cy.ss01 + el-cy.ss01 + er-cy.ss01 + te-cy.ss01 + softsign-cy.ss01 + hardsign-cy.ss01 + yeru-cy.ss01 + ia-cy.ss01 + zero + one + two + three + four + five + six + seven + eight + nine + zero.osf + one.osf + two.osf + three.osf + four.osf + five.osf + six.osf + seven.osf + nine.osf + zero.tf + one.tf + two.tf + three.tf + four.tf + five.tf + six.tf + seven.tf + eight.tf + nine.tf + onesuperior + twosuperior + threesuperior + period + comma + colon + semicolon + ellipsis + exclam + exclamdown + question + questiondown + periodcentered + bullet + asterisk + numbersign + slash + backslash + parenleft + parenright + braceleft + braceright + bracketleft + bracketright + hyphen + endash + emdash + underscore + quotesinglbase + quotedblbase + quotedblleft + quotedblright + quoteleft + quoteright + guillemetleft + guillemetright + guilsinglleft + guilsinglright + quotedbl + quotesingle + cent + currency + dollar + euro + hryvnia + sterling + yen + yen.ss01 + plus + minus + multiply + divide + equal + greater + less + asciitilde + asciicircum + percent + perthousand + at + ampersand + paragraph + section + copyright + registered + trademark + degree + bar + brokenbar + dagger + daggerdbl + numero + estimated + numero.ss01 + commaaccentcomb + dieresis + dotaccent + grave + acute + hungarumlaut + circumflex + caron + breve + ring + tilde + macron + cedilla + ogonek + dieresis.case + dotaccent.case + grave.case + acute.case + hungarumlaut.case + circumflex.case + caron.case + breve.case + ring.case + tilde.case + macron.case + commaaccentcomb.salt + caron.salt + uniE01A + _perc-circule + eight.osf + ruble + Ljecyr + Njecyr + Jecyr + dzhecyr + Dzhecyr + ljecyr + njecyr + Tshecyr + Djecyr + tshecyr + djecyr + tenge + ljecyr.ss01 + njecyr.ss01 + dramsignarmn + gjecyr + kjecyr + neptune + florin + plusminus + fraction + onequarter + onehalf + threequarters + mu + lessequal + greaterequal + minute + second + Schwacyr + schwacyr + Gestrokecyr + gestrokecyr + Obarcyr + obarcyr + Entailcyr + entailcyr + Katailcyr + katailcyr + Ustraightstrokecyr + ustraightstrokecyr + Shhacyr + shhacyr + ustraightcyr + Ustraightcyr + partialdiff + increment + integral + summation + radical + infinity + Omega + pi + longs + Delta + product + notequal + proportional + approxequal + Schwa + eturned + Oslashacute + oslashacute + AEacute + aeacute + uni2010 + Aiecyr + aiecyr + uni1EBC + uni1EBD + Acaron + acaron + Gjecyr + Kjecyr + uniE000 + uniE000.alt + arrowleft + arrowup + arrowright + arrowdown + arrowdown.ss01 + arrowleft.ss01 + arrowright.ss01 + arrowup.ss01 + yi-cy.alt + Omegacyr + omegacyr + Yatcyr + yatcyr + Eiotifiedcyr + eiotifiedcyr + Ksicyr + ksicyr + Shwe-cy + Fitacyr + fitacyr + Koppacyr + Iegravecyr + Igravecyr + iegravecyr + igravecyr + Zhebrevecyr + zhebrevecyr + Abrevecyr + abrevecyr + Adieresiscyr + adieresiscyr + Iebrevecyr + iebrevecyr + Schwadieresiscyr + schwadieresiscyr + Zhedieresiscyr + zhedieresiscyr + Zedieresiscyr + zedieresiscyr + Imacroncyr + imacroncyr + Idieresiscyr + idieresiscyr + Odieresiscyr + odieresiscyr + Umacroncyr + umacroncyr + Udieresiscyr + udieresiscyr + Uacutedblcyr + uacutedblcyr + Dekomicyr + dekomicyr + Wecyr + wecyr + Qacyr + qacyr + Ylongdieresiscyr + ylongdieresiscyr + Chedieresiscyr + chedieresiscyr + Obardieresiscyr + obardieresiscyr + Ereverseddieresiscyr + ereverseddieresiscyr + Zhetailcyr + zhetailcyr + Tetailcyr + tetailcyr + Xatailcyr + xatailcyr + Chetailcyr + chetailcyr + Chekhakascyr + chekhakascyr + Getailcyr + getailcyr + Petailcyr + petailcyr + Eltailcyr + eltailcyr + Shhatailcyr + shhatailcyr + Palochkacyr + palochkacyr + Dzzhecyr + Yaecyr + yaecyr + Tetsecyr + tetsecyr + Engecyr + engecyr + kabashkcyr + Kabashkcyr + semisoftcyr + Semisoftcyr + Reversedzecyr + reversedzecyr + Elmiddlehookcyr + Enmiddlehookcyr + Enhookcyr + Kahookcyr + Pehookcyr + Gehookcyr + parenleft.case + parenright.case + hyphen.case + bracketleft.case + bracketright.case + braceleft.case + braceright.case + exclamdown.case + guillemetleft.case + guillemetright.case + endash.case + emdash.case + bullet.case + guilsinglleft.case + guilsinglright.case + arrowleft.case + arrowup.case + arrowright.case + arrowdown.case + arrowdown.ss01.case + arrowleft.ss01.case + arrowright.ss01.case + arrowup.ss01.case + Enhookleftcyr + enhookleftcyr + enhookcyr + gehookcyr + pehookcyr + kahookcyr + enmiddlehookcyr + elmiddlehookcyr + kastrokecyr + Kastrokecyr + Chevertcyr + chevertcyr + Kaverticalstrokecyr + kaverticalstrokecyr + Elhookcyr + elhookcyr + zetailcyr + Zetailcyr + Estailcyr + estailcyr + Haabkhcyr + koppacyr + ukcyr + Ukcyr + omegaroundcyr + Izhitsagravedblcyr + izhitsagravedblcyr + izhitsacyr + Izhitsacyr + Yusbigcyr + yusbigcyr + Psicyr + psicyr + Omegaroundcyr + Yuslittlecyr + yuslittlecyr + yuslittleiotifiedcyr + Yuslittleiotifiedcyr + Yusbigiotifiedcyr + yusbigiotifiedcyr + Omegatitlocyr + omegatitlocyr + Otcyr + otcyr + uni2DEE + uni2DEE.case + ertickcyr + Ertickcyr + Lhacyr + lhacyr + ensharptailcyr + Ensharptailcyr + emsharptailcyr + elsharptailcyr + ishortsharptailcyr + Ishortsharptailcyr + Emsharptailcyr + Elsharptailcyr + njekomicyr + Njekomicyr + ljekomicyr + tjekomicyr + djekomicyr + zjekomicyr + colon.case + questiondown.case + slash.case + semicolon.case + backslash.case + bar.case + brokenbar.case + dzjekomicyr + Cheabkhcyr + cheabkhcyr + cheabkhtailcyr + sjekomicyr + Sjekomicyr + Ljekomicyr + Tjekomicyr + Djekomicyr + kaaleutcyr + dzzhecyr + haabkhcyr + Dchecyr + dchecyr + dzeabkhcyr + Dzeabkhcyr + palatcombcyr + Cheabkhtailcyr + Dzjekomicyr + Zjekomicyr + rhacyr + Rhacyr + Kaaleutcyr + thousandscyr + titlocombcyr + pokrytiecombcyr + hundredthousandscombcyr + millionscombcyr + Gehookstrokecyr + gehookstrokecyr + Hahookcyr + hahookcyr + Hastrokecyr + uni1C80 + uni1C81 + uni1C82 + uni1C83 + uni1C84 + uni1C85 + uni1C86 + uni1C87 + Zemlya-cy + zemlya-cy + Dzelo-cy + dzelo-cy + DzeReversed-cy + dzeReversed-cy + Iota-cy + iota-cy + Djerv-cy + djerv-cy + UkMonograph-cy + ukMonograph-cy + OmegaBroad-cy + omegaBroad-cy + YerNeutral-cy + yerNeutral-cy + YeruBackYer-cy + yeruBackyer-cy + YatIotified-cy + yatIotified-cy + YuReversed-cy + yuReversed-cy + IotifiedA-cy + iotifieda-cy + YusClosedlittle-cy + yusClosedlittle-cy + YusBlended-cy + yusBlended-cy + YusiotifiedClosedLittle-cy + yusiotifiedClosedLittle-cy + Yn-cy + yn-cy + TseReversed-cy + tseReversed-cy + DeSoft-cy + deSoft-cy + ElSoft-cy + elSoft-cy + EmSoft-cy + emSoft-cy + OMonocular-cy + oMonocular-cy + OBinocular-cy + oBinocular-cy + ODoubleMonocular-cy + oDoubleMonocular-cy + omultiocular-cy + vzmetcomb-cy + tenmillionscomb-cy + hundredmillionscomb-cy + thousandmillionscomb-cy + Dwe-cy + dwe-cy + Dzwe-cy + dzwe-cy + Zhwe-cy + zhwe-cy + Cche-cy + cche-cy + Dzze-cy + dzze-cy + TeWithMiddleHook-cy + tewithmiddlehook-cy + Twe-cy + twe-cy + Tswe-cy + tswe-cy + Tsse-cy + tsse-cy + Tche-cy + tche-cy + Hwe-cy + hwe-cy + shwe-cy + DoubleO-cy + doubleo-cy + CrossedO-cy + crossedo-cy + hastrokecyr + uniF43A + A-cy.accented + E-cy.accented + Ii-cy.accented + O-cy.accented + U-cy.accented + Yeru-cy.accented + Ereversed-cy.accented + Iu-cy.accented + Ia-cy.accented + Io-cy.accented + uniF498 + uniF49A + uniF49C + uniF49E + uniF4C6 + uniF4CC + uniF4D2 + uniF4D4 + uniF4D6 + uniF4D8 + Zetailcyr.BSH + Estailcyr.CHU + uniF50E + uniF510 + uniF512 + uniF514 + uniF516 + uniF518 + uniF51A + uniF51C + uniF51E + Yeru-cymacron + uniF522 + uniF524 + uniF526 + uniF528 + uniF52A + uniF52C + uniF52E + uniF532 + uniF536 + uniF538 + Gestrokecyr.BSH + Estailcyr.BSH + uniF830 + uniF833 + uniF839 + uniF86F + uniF872 + uniF875 + uniF878 + uniF87B + uniF87E + apostrophemod + colontriangularmod + uni1C88 + uniF87F + uniF87C + uniF879 + uniF876 + uniF873 + uniF870 + uniF83A + uniF834 + uniF831 + zetailcyr.BSH + estailcyr.CHU + uniF50F + uniF511 + uniF513 + uniF515 + uniF517 + uniF519 + uniF51B + uniF51D + uniF51F + uniF521 + uniF523 + uniF525 + uniF527 + uniF529 + uniF52B + uniF52D + uniF52F + uniF533 + uniF537 + uniF539 + gestrokecyr.BSH + estailcyr.BSH + uniF499 + uniF49B + uniF49D + uniF49F + uniF4C7 + uniF4CD + uniF4D3 + uniF4D5 + uniF4D7 + uniF4D9 + a-cy.accented + e-cy.accented + ii-cy.accented + o-cy.accented + u-cy.accented + yeru-cy.accented + ereversed-cy.accented + iu-cy.accented + ia-cy.accented + io-cy.accented + uniF43B + at.case + dieresis.alt + dieresiscase.alt + e-cy.hist + omultiocular-cy.alt + iotifieda-cy.hist + be-cy.SRB + ve-cy.BGR + ge-cy.BGR + de-cy.BGR + zhe-cy.BGR + ze-cy.BGR + ii-cy.BGR + iishort-cy.BGR + ka-cy.BGR + el-cy.BGR + pe-cy.BGR + te-cy.BGR + tse-cy.BGR + sha-cy.BGR + shcha-cy.BGR + hardsign-cy.BGR + softsign-cy.BGR + iu-cy.BGR + yatcyr.BGR + eiotifiedcyr.BGR + yusbigiotifiedcyr.BGR + iotifieda-cy.BGR + De-cy.BGR + El-cy.BGR + Ef-cy.BGR + dieresisacute + uniF45D + uniF45E + uniF45F + uniF475 + uniF476 + uniF477 + uniF478 + uniF479 + Elsmallcyr + enclosingcirclecomb + ge-cy.SRB + pe-cy.SRB + te-cy.SRB + gjecyr.SRB + macron-fwd + macron-fwd.alt + macronacute.SRB + iegravecyr.SRB + igravecyr.SRB + flower + knightwhite + knightblack + floretteblack + florettewhite + floretteoutlinedpetalledblackeight + rookblack + bishopblack + leo + heartwhite + diamondwhite-misc + spadewhite + clubwhite + bishopwhite + heart + crossedswords + virgo + thousandscyr.dnom + bracketangleleft + bracketangleright + bracketangleleft.case + bracketangleright.case + + + diff --git a/sources/FixelText-Light.ufo/metainfo.plist b/sources/FixelText-Light.ufo/metainfo.plist new file mode 100644 index 00000000..10582b84 --- /dev/null +++ b/sources/FixelText-Light.ufo/metainfo.plist @@ -0,0 +1,10 @@ + + + + + creator + com.fontlab.ufoLib + formatVersion + 3 + + diff --git a/sources/FixelText-Medium.ufo/features.fea b/sources/FixelText-Medium.ufo/features.fea new file mode 100644 index 00000000..302ade93 --- /dev/null +++ b/sources/FixelText-Medium.ufo/features.fea @@ -0,0 +1,573 @@ +#> classes +#/> otclasses +@ss01_def = [A-cy A AE Aacute Abreve Acircumflex Adieresis Agrave Amacron Aogonek Aring Atilde Em-cy Eng G Gacute Gbreve Gcircumflex Gcommaaccent Gdotaccent Ha-cy Ia-cy J Jcircumflex K Ka-cy Kcommaaccent M N Nacute Ncaron Ncommaaccent Ntilde Q U-cy Ushort-cy V W Wacute Wcircumflex Wdieresis Wgrave X Y Yacute Ycircumflex Ydieresis Z Zacute Zcaron Zdotaccent Zhe-cy a-cy a aacute abreve acircumflex adieresis ae agrave amacron aogonek aring arrowdown arrowdown.case arrowleft arrowleft.case arrowright arrowright.case arrowup arrowup.case atilde b d dcaron dcroat de-cy e eacute ebreve ecaron ecircumflex edieresis edotaccent egrave el-cy emacron eogonek er-cy f f_f f_f_i f_f_l fi fl g gacute gbreve gcircumflex gcommaaccent gdotaccent germandbls hardsign-cy ia-cy ie-cy io-cy l lacute lcaron lcommaaccent ldot ljecyr lslash njecyr numero oe p q softsign-cy t tbar tcaron tcedilla tcommaaccent te-cy ve-cy yen yeru-cy]; +@ss01 = [A-cy.ss01 A.ss01 AE.ss01 Aacute.ss01 Abreve.ss01 Acircumflex.ss01 Adieresis.ss01 Agrave.ss01 Amacron.ss01 Aogonek.ss01 Aring.ss01 Atilde.ss01 Em-cy.ss01 Eng.ss01 G.ss01 Gacute.ss01 Gbreve.ss01 Gcircumflex.ss01 Gcommaaccent.ss01 Gdotaccent.ss01 Ha-cy.ss01 Ia-cy.ss01 J.ss01 Jcircumflex.ss01 K.ss01 Ka-cy.ss01 Kcommaaccent.ss01 M.ss01 N.ss01 Nacute.ss01 Ncaron.ss01 Ncommaaccent.ss01 Ntilde.ss01 Q.ss01 U-cy.ss01 Ushort-cy.ss01 V.ss01 W.ss01 Wacute.ss01 Wcircumflex.ss01 Wdieresis.ss01 Wgrave.ss01 X.ss01 Y.ss01 Yacute.ss01 Ycircumflex.ss01 Ydieresis.ss01 Z.ss01 Zacute.ss01 Zcaron.ss01 Zdotaccent.ss01 Zhe-cy.ss01 a-cy.ss01 a.ss01 aacute.ss01 abreve.ss01 acircumflex.ss01 adieresis.ss01 ae.ss01 agrave.ss01 amacron.ss01 aogonek.ss01 aring.ss01 arrowdown.ss01 arrowdown.ss01.case arrowleft.ss01 arrowleft.ss01.case arrowright.ss01 arrowright.ss01.case arrowup.ss01 arrowup.ss01.case atilde.ss01 b.ss01 d.ss01 dcaron.ss01 dcroat.ss01 de-cy.ss01 e.ss01 eacute.ss01 ebreve.ss01 ecaron.ss01 ecircumflex.ss01 edieresis.ss01 edotaccent.ss01 egrave.ss01 el-cy.ss01 emacron.ss01 eogonek.ss01 er-cy.ss01 f.ss01 f_f.ss01 f_f_i.ss01 f_f_l.ss01 fi.ss01 fl.ss01 g.ss01 gacute.ss01 gbreve.ss01 gcircumflex.ss01 gcommaaccent.ss01 gdotaccent.ss01 germandbls.ss01 hardsign-cy.ss01 ia-cy.ss01 ie-cy.ss01 io-cy.ss01 l.ss01 lacute.ss01 lcaron.ss01 lcommaaccent.ss01 ldot.ss01 ljecyr.ss01 lslash.ss01 njecyr.ss01 numero.ss01 oe.ss01 p.ss01 q.ss01 softsign-cy.ss01 t.ss01 tbar.ss01 tcaron.ss01 tcedilla.ss01 tcommaaccent.ss01 te-cy.ss01 ve-cy.ss01 yen.ss01 yeru-cy.ss01]; +@case = [arrowdown.case arrowdown.ss01.case arrowleft.case arrowleft.ss01.case arrowright.case arrowright.ss01.case arrowup.case arrowup.ss01.case backslash.case bar.case braceleft.case braceright.case bracketleft.case bracketright.case brokenbar.case bullet.case colon.case emdash.case endash.case exclamdown.case guillemetleft.case guillemetright.case guilsinglleft.case guilsinglright.case hyphen.case parenleft.case parenright.case questiondown.case semicolon.case at.case bracketangleleft.case bracketangleright.case slash.case]; +@case_def = [arrowdown arrowdown.ss01 arrowleft arrowleft.ss01 arrowright arrowright.ss01 arrowup arrowup.ss01 backslash bar braceleft braceright bracketleft bracketright brokenbar bullet colon emdash endash exclamdown guillemetleft guillemetright guilsinglleft guilsinglright hyphen parenleft parenright questiondown semicolon at bracketangleleft bracketangleright slash]; +@cpsp = [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 Agrave Aacute Acircumflex Atilde Adieresis Aring AE Ccedilla Egrave Eacute Ecircumflex Edieresis Igrave Iacute Icircumflex Idieresis Eth Ntilde Ograve Oacute Ocircumflex Otilde Odieresis Oslash Ugrave Uacute Ucircumflex Udieresis Yacute Thorn Amacron Abreve Aogonek Cacute Ccircumflex Cdotaccent Ccaron Dcaron Dcroat Emacron Ebreve Edotaccent Eogonek Ecaron Gcircumflex Gbreve Gdotaccent Gcommaaccent Hcircumflex Hbar Itilde Imacron Ibreve Iogonek Idotaccent IJ Jcircumflex Kcommaaccent Lacute Lcommaaccent Lcaron Ldot Lslash Nacute Ncommaaccent Ncaron Eng Omacron Obreve Ohungarumlaut OE Racute Rcommaaccent Rcaron Sacute Scircumflex Scedilla Scaron Tcedilla Tcaron Tbar Utilde Umacron Ubreve Uring Uhungarumlaut Uogonek Wcircumflex Ycircumflex Ydieresis Zacute Zdotaccent Zcaron Schwa Acaron Gacute AEacute Oslashacute Scommaaccent Tcommaaccent Delta Omega Iegravecyr uniF43A A-cy.accented E-cy.accented Ii-cy.accented O-cy.accented U-cy.accented Yeru-cy.accented Ereversed-cy.accented Iu-cy.accented Ia-cy.accented Io-cy.accented uniF498 uniF49A uniF49C uniF49E uniF4C6 uniF4CC uniF4D2 uniF4D4 uniF4D6 uniF4D8 uniF50E uniF510 uniF512 uniF514 uniF516 uniF518 uniF51A uniF51C uniF51E Yeru-cymacron uniF522 uniF524 uniF526 uniF528 uniF52A uniF52C uniF52E uniF532 uniF536 uniF538 uniF830 uniF833 uniF839 uniF86F uniF872 uniF875 uniF878 uniF87B uniF87E Io-cy Djecyr Gjecyr E-cy Dze-cy I-cy Yi-cy Jecyr Ljecyr Njecyr Tshecyr Kjecyr Igravecyr Ushort-cy Dzhecyr A-cy Be-cy Ve-cy Ge-cy De-cy Ie-cy Zhe-cy Ze-cy Ii-cy Iishort-cy Ka-cy El-cy Em-cy En-cy O-cy Pe-cy Er-cy Es-cy Te-cy U-cy Ef-cy Ha-cy Tse-cy Che-cy Sha-cy Shcha-cy Hardsign-cy Yeru-cy Softsign-cy Ereversed-cy Iu-cy Ia-cy Omegacyr Yatcyr Eiotifiedcyr Yuslittlecyr Yuslittleiotifiedcyr Yusbigcyr Yusbigiotifiedcyr Ksicyr Psicyr Fitacyr Izhitsacyr Izhitsagravedblcyr Ukcyr Omegaroundcyr Omegatitlocyr Otcyr Koppacyr Ishortsharptailcyr Semisoftcyr Ertickcyr Gheupturn-cy Gestrokecyr Gehookcyr Zhetailcyr Zetailcyr Katailcyr Kaverticalstrokecyr Kastrokecyr Kabashkcyr Entailcyr Engecyr Pehookcyr Haabkhcyr Estailcyr Tetailcyr Ustraightcyr Ustraightstrokecyr Xatailcyr Tetsecyr Chetailcyr Chevertcyr Shhacyr Cheabkhcyr Cheabkhtailcyr Palochkacyr Zhebrevecyr Kahookcyr Elsharptailcyr Enhookcyr Ensharptailcyr Chekhakascyr Emsharptailcyr Abrevecyr Adieresiscyr Aiecyr Iebrevecyr Schwacyr Schwadieresiscyr Zhedieresiscyr Zedieresiscyr Dzeabkhcyr Imacroncyr Idieresiscyr Odieresiscyr Obarcyr Obardieresiscyr Ereverseddieresiscyr Umacroncyr Udieresiscyr Uacutedblcyr Chedieresiscyr Getailcyr Ylongdieresiscyr Gehookstrokecyr Hahookcyr Hastrokecyr Dekomicyr Djekomicyr Zjekomicyr Dzjekomicyr Ljekomicyr Njekomicyr Sjekomicyr Tjekomicyr Reversedzecyr Elhookcyr Lhacyr Rhacyr Yaecyr Qacyr Wecyr Kaaleutcyr Elmiddlehookcyr Enmiddlehookcyr Petailcyr Shhatailcyr Enhookleftcyr Dzzhecyr Dchecyr Eltailcyr Wgrave Wacute Wdieresis Germandbls uni1EBC Zemlya-cy Dzelo-cy DzeReversed-cy Iota-cy Djerv-cy UkMonograph-cy OmegaBroad-cy YerNeutral-cy YeruBackYer-cy YatIotified-cy YuReversed-cy IotifiedA-cy YusClosedlittle-cy YusBlended-cy YusiotifiedClosedLittle-cy Yn-cy TseReversed-cy DeSoft-cy ElSoft-cy EmSoft-cy OMonocular-cy OBinocular-cy ODoubleMonocular-cy Dwe-cy Dzwe-cy Zhwe-cy Cche-cy Dzze-cy TeWithMiddleHook-cy Twe-cy Tswe-cy Tsse-cy Tche-cy Hwe-cy Shwe-cy DoubleO-cy CrossedO-cy A-cy.ss01 A.ss01 AE.ss01 Aacute.ss01 Abreve.ss01 Acircumflex.ss01 Adieresis.ss01 Agrave.ss01 Amacron.ss01 Aogonek.ss01 Aring.ss01 Atilde.ss01 Em-cy.ss01 Eng.ss01 G.ss01 Gacute.ss01 Gbreve.ss01 Gcircumflex.ss01 Gcommaaccent.ss01 Gdotaccent.ss01 Ha-cy.ss01 Ia-cy.ss01 J.ss01 Jcircumflex.ss01 K.ss01 Ka-cy.ss01 Kcommaaccent.ss01 M.ss01 N.ss01 Nacute.ss01 Ncaron.ss01 Ncommaaccent.ss01 Ntilde.ss01 Q.ss01 U-cy.ss01 Ushort-cy.ss01 V.ss01 W.ss01 Wacute.ss01 Wcircumflex.ss01 Wdieresis.ss01 Wgrave.ss01 X.ss01 Y.ss01 Yacute.ss01 Ycircumflex.ss01 Ydieresis.ss01 Z.ss01 Zacute.ss01 Zcaron.ss01 Zdotaccent.ss01 Zetailcyr.BSH Gestrokecyr.BSH Estailcyr.BSH Estailcyr.CHU Zhe-cy.ss01]; +@locl_BGR = [De-cy.BGR Ef-cy.BGR El-cy.BGR de-cy.BGR eiotifiedcyr.BGR el-cy.BGR ge-cy.BGR hardsign-cy.BGR ii-cy.BGR iishort-cy.BGR iotifieda-cy.BGR iu-cy.BGR ka-cy.BGR pe-cy.BGR sha-cy.BGR shcha-cy.BGR softsign-cy.BGR te-cy.BGR tse-cy.BGR ve-cy.BGR yatcyr.BGR yusbigiotifiedcyr.BGR ze-cy.BGR zhe-cy.BGR]; +@locl_def = [De-cy Ef-cy El-cy de-cy eiotifiedcyr el-cy ge-cy hardsign-cy ii-cy iishort-cy iotifieda-cy iu-cy ka-cy pe-cy sha-cy shcha-cy softsign-cy te-cy tse-cy ve-cy yatcyr yusbigiotifiedcyr ze-cy zhe-cy]; +@locl.SRB = [be-cy.SRB iegravecyr.SRB igravecyr.SRB]; +@loclSRB_def = [be-cy iegravecyr igravecyr]; +@accent = [grave acute.case grave.case acute]; +@pics = [neptune leo virgo bishopwhite knightwhite rookblack bishopblack knightblack heartwhite diamondwhite-misc spadewhite heart clubwhite crossedswords flower floretteblack florettewhite floretteoutlinedpetalledblackeight]; +@pics_def = [A B C D E F G H I J K L M N O P Q R]; +#/< otclasses + +#/> tags +@tag.omultiocular-cy.alt = [omultiocular-cy]; +@tag.yi-cy_yi-cy.alt = [uniE000]; +#/< tags +#< classes + +# automatic +@Uppercase = [ A Aacute Abreve Acircumflex Adieresis Agrave Amacron Aogonek Aring Atilde AE B C Cacute Ccaron Ccedilla Ccircumflex Cdotaccent D Eth Dcaron Dcroat E Eacute Ebreve Ecaron Ecircumflex Edieresis Edotaccent Egrave Emacron Eogonek F G Gacute Gbreve Gcircumflex Gcommaaccent Gdotaccent H Hbar Hcircumflex I IJ Iacute Ibreve Icircumflex Idieresis Idotaccent Igrave Imacron Iogonek Itilde J Jcircumflex K Kcommaaccent L Lacute Lcaron Lcommaaccent Ldot Lslash M N Nacute Ncaron Ncommaaccent Eng Ntilde O Oacute Obreve Ocircumflex Odieresis Ograve Ohungarumlaut Omacron Oslash Otilde OE P Thorn Q R Racute Rcaron Rcommaaccent S Sacute Scaron Scedilla Scircumflex Scommaaccent Germandbls T Tbar Tcaron Tcedilla Tcommaaccent U Uacute Ubreve Ucircumflex Udieresis Ugrave Uhungarumlaut Umacron Uogonek Uring Utilde V W Wacute Wcircumflex Wdieresis Wgrave X Y Yacute Ycircumflex Ydieresis Z Zacute Zcaron Zdotaccent A.ss01 Aacute.ss01 Abreve.ss01 Acircumflex.ss01 Adieresis.ss01 Agrave.ss01 Amacron.ss01 Aogonek.ss01 Aring.ss01 Atilde.ss01 AE.ss01 G.ss01 Gacute.ss01 Gbreve.ss01 Gcircumflex.ss01 Gcommaaccent.ss01 Gdotaccent.ss01 J.ss01 Jcircumflex.ss01 K.ss01 Kcommaaccent.ss01 M.ss01 N.ss01 Nacute.ss01 Ncaron.ss01 Ncommaaccent.ss01 Eng.ss01 Ntilde.ss01 Q.ss01 V.ss01 W.ss01 Wacute.ss01 Wcircumflex.ss01 Wdieresis.ss01 Wgrave.ss01 X.ss01 Y.ss01 Yacute.ss01 Ycircumflex.ss01 Ydieresis.ss01 Z.ss01 Zacute.ss01 Zcaron.ss01 Zdotaccent.ss01 A-cy Be-cy Ve-cy Ge-cy Gheupturn-cy De-cy Ie-cy Io-cy Zhe-cy Ze-cy Ii-cy Iishort-cy Ka-cy El-cy Em-cy En-cy O-cy Pe-cy Er-cy Es-cy Te-cy U-cy Ushort-cy Ef-cy Ha-cy Che-cy Tse-cy Sha-cy Shcha-cy Softsign-cy Hardsign-cy Yeru-cy Dze-cy E-cy Ereversed-cy I-cy Yi-cy Iu-cy Ia-cy A-cy.ss01 Zhe-cy.ss01 Ka-cy.ss01 Em-cy.ss01 U-cy.ss01 Ushort-cy.ss01 Ha-cy.ss01 Ia-cy.ss01 ]; + +# Prefix: Languagesystems +# automatic +languagesystem DFLT dflt; + +languagesystem latn dflt; +languagesystem latn ROM; +languagesystem latn MOL; +languagesystem latn CAT; +languagesystem cyrl dflt; +languagesystem cyrl BGR; +languagesystem cyrl BSH; +languagesystem cyrl CHU; +languagesystem cyrl SRB; +languagesystem cyrl MKD; + +lookup liga_accent { + sub @accent by [grave grave grave grave]; +} liga_accent; +feature aalt { +# Access All Alternates + +#> feature + feature locl; + feature sups; + feature case; + feature lnum; + feature pnum; + feature tnum; + feature onum; + feature salt; + feature ss01; + feature hist; +#< feature +} aalt; +feature ccmp { +# automatic +lookup ccmp_Other_1 { + @Markscomb = [dieresis dotaccent grave acute hungarumlaut circumflex caron breve ring tilde macron]; + @MarkscombCase = [dieresis.case dotaccent.case grave.case acute.case hungarumlaut.case circumflex.case caron.case breve.case ring.case tilde.case macron.case]; + sub @Markscomb @Markscomb' by @MarkscombCase; + sub @cpsp @Markscomb' by @MarkscombCase; +} ccmp_Other_1; + +lookup ccmp_Other_2 { + sub @Markscomb' @MarkscombCase by @MarkscombCase; + sub @MarkscombCase @Markscomb' by @MarkscombCase; +} ccmp_Other_2; +} ccmp; + +feature locl { +# automatic + +script latn; + language ROM; + language MOL; + sub Scedilla by Scommaaccent; + sub scedilla by scommaaccent; + sub Tcedilla by Tcommaaccent; + sub tcedilla by tcommaaccent; + +script latn; + language CAT; + sub l' periodcentered' l by ldot; + sub L' periodcentered' L by Ldot; + +script cyrl; # Cyrillic + language SRB ; # Serbian + + lookup locl_SRB_MCD { + # GSUB lookup 20, type 11 (Single) + sub @loclSRB_def by @locl.SRB; + } locl_SRB_MCD; + + language MKD ; # Serbian + lookup locl_SRB_MCD; + + language BSH ; # Bashkir + sub [Gestrokecyr gestrokecyr Zetailcyr zetailcyr] by [Gestrokecyr.BSH gestrokecyr.BSH Zetailcyr.BSH zetailcyr.BSH]; + sub [Estailcyr estailcyr] by [Estailcyr.BSH estailcyr.BSH]; + + language CHU ; # Chuvash + sub [Estailcyr estailcyr] by [Estailcyr.CHU estailcyr.CHU]; + + language BGR ; # Bulgarian + sub @locl_def by @locl_BGR; + +} locl; + +feature sups { +# Superscript + +#> feature + sub one by onesuperior; + sub three by threesuperior; + sub two by twosuperior; +#< feature +} sups; +feature ordn { +# Ordinals + +#> feature + sub [zero one two three four five six seven eight nine] [A a]' by ordfeminine; + sub [zero one two three four five six seven eight nine] [O o]' by ordmasculine; + sub N o period by numero; +#< feature +} ordn; +feature case { +# Case Sensitive Forms + +#> feature + + sub @case_def by @case; + +#< feature +} case; +feature liga { +# Standard Ligatures + +#> feature +sub f f i by f_f_i; +sub f f l by f_f_l; +sub f f by f_f; +sub f i by fi; +sub f l by fl; +sub yi-cy yi-cy by uniE000; +sub hyphen greater by arrowright; +sub less hyphen by arrowleft; +sub backslash bar slash by arrowdown; +sub slash bar backslash by arrowup; + + lookup accent_2 { + sub E-cy @accent' lookup liga_accent; + sub I-cy @accent' lookup liga_accent; + sub Yi-cy @accent' lookup liga_accent; + sub A-cy @accent' lookup liga_accent; + sub Ie-cy @accent' lookup liga_accent; + sub Ii-cy @accent' lookup liga_accent; + sub O-cy @accent' lookup liga_accent; + sub U-cy @accent' lookup liga_accent; + sub Yeru-cy @accent' lookup liga_accent; + sub Ereversed-cy @accent' lookup liga_accent; + sub Iu-cy @accent' lookup liga_accent; + sub Ia-cy @accent' lookup liga_accent; + sub Io-cy @accent' lookup liga_accent; + sub Yatcyr @accent' lookup liga_accent; + + sub e-cy @accent' lookup liga_accent; + sub i-cy @accent' lookup liga_accent; + sub yi-cy @accent' lookup liga_accent; + sub a-cy @accent' lookup liga_accent; + sub ie-cy @accent' lookup liga_accent; + sub ii-cy @accent' lookup liga_accent; + sub o-cy @accent' lookup liga_accent; + sub u-cy @accent' lookup liga_accent; + sub yeru-cy @accent' lookup liga_accent; + sub ereversed-cy @accent' lookup liga_accent; + sub iu-cy @accent' lookup liga_accent; + sub ia-cy @accent' lookup liga_accent; + sub io-cy @accent' lookup liga_accent; + sub yatcyr @accent' lookup liga_accent; + } accent_2; + + lookup accent_3 { + sub E-cy grave by uniF45D; + sub I-cy grave by uniF45E; + sub Yi-cy grave by uniF45F; + sub A-cy grave by A-cy.accented; + sub Ie-cy grave by E-cy.accented; + sub Ii-cy grave by Ii-cy.accented; + sub O-cy grave by O-cy.accented; + sub U-cy grave by U-cy.accented; + sub Yeru-cy grave by Yeru-cy.accented; + sub Ereversed-cy grave by Ereversed-cy.accented; + sub Iu-cy grave by Iu-cy.accented; + sub Ia-cy grave by Ia-cy.accented; + sub Io-cy grave by Io-cy.accented; + sub Yatcyr grave by uniF478; + + sub e-cy grave by uniF475; + sub i-cy grave by uniF476; + sub yi-cy grave by uniF477; + sub a-cy grave by a-cy.accented; + sub ie-cy grave by e-cy.accented; + sub ii-cy grave by ii-cy.accented; + sub o-cy grave by o-cy.accented; + sub u-cy grave by u-cy.accented; + sub yeru-cy grave by yeru-cy.accented; + sub ereversed-cy grave by ereversed-cy.accented; + sub iu-cy grave by iu-cy.accented; + sub ia-cy grave by ia-cy.accented; + sub io-cy grave by io-cy.accented; + sub yatcyr grave by uniF479; + } accent_3; + +#< feature +} liga; +feature dlig { +# Discretionary Ligatures + +#> feature + +sub M a c P a w l o g o by uniE01A; +sub M P a w l o g o by uniE01A; +sub M P l o g o by uniE01A; +sub M A C P A W L O G O by uniE01A; +sub m a c p a w l o g o by uniE01A; +sub t r i d e n t by neptune; +sub t r y z u b by neptune; +sub u k r a i n e s i g n by neptune; +sub T R I D E N T by neptune; +sub T R Y Z U B by neptune; +sub U k r a i n e S i g n by neptune; +sub T r y z u b by neptune; +sub T r i d e n t by neptune; +sub Te-cy Er-cy Ii-cy Ze-cy U-cy Be-cy by neptune; + +#< feature +} dlig; +feature lnum { +# Lining Figures + +#> feature + sub eight.osf by eight.tf; + sub eight by eight.tf; + sub five.osf by five.tf; + sub five by five.tf; + sub four.osf by four.tf; + sub four by four.tf; + sub nine.osf by nine.tf; + sub nine by nine.tf; + sub one.osf by one.tf; + sub one by one.tf; + sub seven.osf by seven.tf; + sub seven by seven.tf; + sub six.osf by six.tf; + sub six by six.tf; + sub three.osf by three.tf; + sub three by three.tf; + sub two.osf by two.tf; + sub two by two.tf; + sub zero.osf by zero.tf; + sub zero by zero.tf; +#< feature +} lnum; +feature pnum { +# Proportional Figures + +#> feature + sub eight.tf by eight.osf; + sub eight by eight.osf; + sub five.tf by five.osf; + sub five by five.osf; + sub four.tf by four.osf; + sub four by four.osf; + sub nine.tf by nine.osf; + sub nine by nine.osf; + sub one.tf by one.osf; + sub one by one.osf; + sub seven.tf by seven.osf; + sub seven by seven.osf; + sub six.tf by six.osf; + sub six by six.osf; + sub three.tf by three.osf; + sub three by three.osf; + sub two.tf by two.osf; + sub two by two.osf; + sub zero.tf by zero.osf; + sub zero by zero.osf; +#< feature +} pnum; +feature tnum { +# Tabular Figures + +#> feature + sub eight by eight.tf; + sub eight.osf by eight.tf; + sub five by five.tf; + sub five.osf by five.tf; + sub four by four.tf; + sub four.osf by four.tf; + sub nine by nine.tf; + sub nine.osf by nine.tf; + sub one by one.tf; + sub one.osf by one.tf; + sub seven by seven.tf; + sub seven.osf by seven.tf; + sub six by six.tf; + sub six.osf by six.tf; + sub three by three.tf; + sub three.osf by three.tf; + sub two by two.tf; + sub two.osf by two.tf; + sub zero by zero.tf; + sub zero.osf by zero.tf; +#< feature +} tnum; +feature onum { +# Oldstyle Figures + +#> feature + sub eight by eight.osf; + sub eight.tf by eight.osf; + sub five by five.osf; + sub five.tf by five.osf; + sub four by four.osf; + sub four.tf by four.osf; + sub nine by nine.osf; + sub nine.tf by nine.osf; + sub one by one.osf; + sub one.tf by one.osf; + sub seven by seven.osf; + sub seven.tf by seven.osf; + sub six by six.osf; + sub six.tf by six.osf; + sub three by three.osf; + sub three.tf by three.osf; + sub two by two.osf; + sub two.tf by two.osf; + sub zero by zero.osf; + sub zero.tf by zero.osf; +#< feature +} onum; +feature salt { +# Stylistic Alternates + +#> feature + sub A from [A.ss01]; + sub A-cy from [A-cy.ss01]; + sub AE from [AE.ss01]; + sub Aacute from [Aacute.ss01]; + sub Abreve from [Abreve.ss01]; + sub Acircumflex from [Acircumflex.ss01]; + sub Adieresis from [Adieresis.ss01]; + sub Agrave from [Agrave.ss01]; + sub Amacron from [Amacron.ss01]; + sub Aogonek from [Aogonek.ss01]; + sub Aring from [Aring.ss01]; + sub Atilde from [Atilde.ss01]; + sub Em-cy from [Em-cy.ss01]; + sub Eng from [Eng.ss01]; + sub G from [G.ss01]; + sub Gacute from [Gacute.ss01]; + sub Gbreve from [Gbreve.ss01]; + sub Gcircumflex from [Gcircumflex.ss01]; + sub Gcommaaccent from [Gcommaaccent.ss01]; + sub Gdotaccent from [Gdotaccent.ss01]; + sub Ha-cy from [Ha-cy.ss01]; + sub Ia-cy from [Ia-cy.ss01]; + sub J from [J.ss01]; + sub Jcircumflex from [Jcircumflex.ss01]; + sub K from [K.ss01]; + sub Ka-cy from [Ka-cy.ss01]; + sub Kcommaaccent from [Kcommaaccent.ss01]; + sub M from [M.ss01]; + sub N from [N.ss01]; + sub Nacute from [Nacute.ss01]; + sub Ncaron from [Ncaron.ss01]; + sub Ncommaaccent from [Ncommaaccent.ss01]; + sub Ntilde from [Ntilde.ss01]; + sub Q from [Q.ss01]; + sub U-cy from [U-cy.ss01]; + sub Ushort-cy from [Ushort-cy.ss01]; + sub V from [V.ss01]; + sub W from [W.ss01]; + sub Wacute from [Wacute.ss01]; + sub Wcircumflex from [Wcircumflex.ss01]; + sub Wdieresis from [Wdieresis.ss01]; + sub Wgrave from [Wgrave.ss01]; + sub X from [X.ss01]; + sub Y from [Y.ss01]; + sub Yacute from [Yacute.ss01]; + sub Ycircumflex from [Ycircumflex.ss01]; + sub Ydieresis from [Ydieresis.ss01]; + sub Z from [Z.ss01]; + sub Zacute from [Zacute.ss01]; + sub Zcaron from [Zcaron.ss01]; + sub Zdotaccent from [Zdotaccent.ss01]; + sub Zhe-cy from [Zhe-cy.ss01]; + sub a from [a.ss01]; + sub a-cy from [a-cy.ss01]; + sub aacute from [aacute.ss01]; + sub abreve from [abreve.ss01]; + sub acircumflex from [acircumflex.ss01]; + sub adieresis from [adieresis.ss01]; + sub ae from [ae.ss01]; + sub agrave from [agrave.ss01]; + sub amacron from [amacron.ss01]; + sub aogonek from [aogonek.ss01]; + sub aring from [aring.ss01]; + sub arrowdown from [arrowdown.ss01]; + sub arrowleft from [arrowleft.ss01]; + sub arrowright from [arrowright.ss01]; + sub arrowup from [arrowup.ss01]; + sub atilde from [atilde.ss01]; + sub b from [b.ss01]; + sub caron from [caron.salt]; + sub commaaccentcomb from [commaaccentcomb.salt]; + sub d from [d.ss01]; + sub dcaron from [dcaron.ss01]; + sub dcroat from [dcroat.ss01]; + sub de-cy from [de-cy.ss01]; + sub e from [e.ss01]; + sub eacute from [eacute.ss01]; + sub ebreve from [ebreve.ss01]; + sub ecaron from [ecaron.ss01]; + sub ecircumflex from [ecircumflex.ss01]; + sub edieresis from [edieresis.ss01]; + sub edotaccent from [edotaccent.ss01]; + sub egrave from [egrave.ss01]; + sub el-cy from [el-cy.ss01]; + sub emacron from [emacron.ss01]; + sub eogonek from [eogonek.ss01]; + sub er-cy from [er-cy.ss01]; + sub f from [f.ss01]; + sub f_f from [f_f.ss01]; + sub f_f_i from [f_f_i.ss01]; + sub f_f_l from [f_f_l.ss01]; + sub fi from [fi.ss01]; + sub fl from [fl.ss01]; + sub g from [g.ss01]; + sub gacute from [gacute.ss01]; + sub gbreve from [gbreve.ss01]; + sub gcircumflex from [gcircumflex.ss01]; + sub gcommaaccent from [gcommaaccent.ss01]; + sub gdotaccent from [gdotaccent.ss01]; + sub germandbls from [germandbls.ss01]; + sub hardsign-cy from [hardsign-cy.ss01]; + sub ia-cy from [ia-cy.ss01]; + sub ie-cy from [ie-cy.ss01]; + sub io-cy from [io-cy.ss01]; + sub l from [l.ss01]; + sub lacute from [lacute.ss01]; + sub lcaron from [lcaron.ss01]; + sub lcommaaccent from [lcommaaccent.ss01]; + sub ldot from [ldot.ss01]; + sub ljecyr from [ljecyr.ss01]; + sub lslash from [lslash.ss01]; + sub njecyr from [njecyr.ss01]; + sub numero from [numero.ss01]; + sub oe from [oe.ss01]; + sub p from [p.ss01]; + sub q from [q.ss01]; + sub softsign-cy from [softsign-cy.ss01]; + sub t from [t.ss01]; + sub tbar from [tbar.ss01]; + sub tcaron from [tcaron.ss01]; + sub tcedilla from [tcedilla.ss01]; + sub tcommaaccent from [tcommaaccent.ss01]; + sub te-cy from [te-cy.ss01]; + sub uniE000 from [uniE000.alt]; + sub ve-cy from [ve-cy.ss01]; + sub yen from [yen.ss01]; + sub yeru-cy from [yeru-cy.ss01]; +#< feature +} salt; +feature ss03 { +# Stylistic Set 01–20 + +#> feature + featureNames { + name "Bulgarian forms"; + name 1 "Bulgarian forms"; + }; + + sub @locl_def by @locl_BGR; + +#< feature +} ss03; +feature ss04 { +# Stylistic Set 01–20 + +#> feature + featureNames { + name "Serbian/Macedonian forms"; + name 1 "Serbian/Macedonian forms"; + }; + + sub @loclSRB_def by @locl.SRB; + +#< feature +} ss04; +feature ss01 { +# Stylistic Set 01–20 + +#> feature + + featureNames { + name "Humanistic forms"; + name 1 "Humanistic forms"; + }; + + sub @ss01_def by @ss01; + +#< feature +} ss01; +feature ss05 { +# Stylistic Set 01–20 + +#> feature + + featureNames { + name "Ukrainian pictograms"; + name 1 "Ukrainian pictograms"; + }; + + sub @pics_def by @pics; + +#< feature +} ss05; +feature hist { +# Historical Forms + +#> feature + sub e-cy by e-cy.hist; + sub s by longs; +#< feature +} hist; +feature frac { +# Fractions + +#> feature +lookup frac_precomposed { + + sub one slash four by onequarter; + sub one slash two by onehalf; + sub three slash four by threequarters; + sub one fraction four by onequarter; + sub one fraction two by onehalf; + sub three fraction four by threequarters; +} frac_precomposed; +#< feature +} frac; +feature cpsp { +# Capital Spacing + +#> feature + + pos @cpsp <5 0 10 0>; + +#< feature +} cpsp; +feature dnom { +# Denominator + +#> feature + sub thousandscyr by thousandscyr.dnom; +#< feature +} dnom; diff --git a/sources/FixelText-Medium.ufo/fontinfo.plist b/sources/FixelText-Medium.ufo/fontinfo.plist new file mode 100644 index 00000000..6619db05 --- /dev/null +++ b/sources/FixelText-Medium.ufo/fontinfo.plist @@ -0,0 +1,207 @@ + + + + + ascender + 720 + capHeight + 700 + descender + -200 + familyName + Fixel Text + guidelines + + + angle + 0 + name + m + x + 0 + y + -31.6 + + + angle + 0 + name + m + x + 0 + y + 189 + + + italicAngle + 0 + openTypeGaspRangeRecords + + + rangeGaspBehavior + + 0 + 1 + 2 + 3 + + rangeMaxPPEM + 65535 + + + openTypeHeadCreated + 2023/09/05 09:25:18 + openTypeHeadFlags + + + openTypeHheaAscender + 720 + openTypeHheaCaretOffset + -0 + openTypeHheaDescender + -190 + openTypeHheaLineGap + 100 + openTypeNameDesigner + AlfaBravo + openTypeNameDesignerURL + https://alfabravo.design/ + openTypeNameManufacturer + Kyrylo Tkachov, Marchela Mozhyna, Serhii Makarenko, Maria Weinstein, Zakhar Kryvoshyya + + openTypeNameManufacturerURL + https://macpaw.com/ + openTypeNamePreferredFamilyName + Fixel Text + openTypeNamePreferredSubfamilyName + Medium + openTypeNameVersion + Version 1.200 + openTypeOS2CodePageRanges + + 0 + 1 + 2 + 4 + 7 + 29 + + openTypeOS2Panose + + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + + openTypeOS2Selection + + + openTypeOS2StrikeoutPosition + 300 + openTypeOS2StrikeoutSize + 50 + openTypeOS2SubscriptXOffset + -0 + openTypeOS2SubscriptXSize + 650 + openTypeOS2SubscriptYOffset + 75 + openTypeOS2SubscriptYSize + 600 + openTypeOS2SuperscriptXOffset + -0 + openTypeOS2SuperscriptXSize + 650 + openTypeOS2SuperscriptYOffset + 350 + openTypeOS2SuperscriptYSize + 600 + openTypeOS2Type + + 2 + + openTypeOS2TypoAscender + 720 + openTypeOS2TypoDescender + -200 + openTypeOS2TypoLineGap + 290 + openTypeOS2UnicodeRanges + + 0 + 1 + 2 + 9 + 31 + 33 + 60 + + openTypeOS2WeightClass + 500 + openTypeOS2WidthClass + 4 + openTypeOS2WinAscent + 750 + openTypeOS2WinDescent + 250 + postscriptBlueFuzz + 1 + postscriptBlueScale + 0.039625 + postscriptBlueShift + 7 + postscriptBlueValues + + -20 + 0 + + postscriptFontName + FixelText-Medium + postscriptForceBold + + postscriptFullName + Fixel Text Medium + postscriptIsFixedPitch + + postscriptStemSnapH + + 69 + 74 + 76 + 80 + 99 + + postscriptStemSnapV + + 74 + 80 + 93 + + postscriptUnderlinePosition + -100 + postscriptUnderlineThickness + 50 + postscriptWeightName + Medium + styleMapFamilyName + Fixel Text Medium + styleMapStyleName + regular + styleName + Medium + unitsPerEm + 1000 + versionMajor + 1 + versionMinor + 200 + xHeight + 520 + + diff --git a/sources/FixelText-Medium.ufo/glyphs/A_-cy.accented.glif b/sources/FixelText-Medium.ufo/glyphs/A_-cy.accented.glif new file mode 100644 index 00000000..9fd8ffaf --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/A_-cy.accented.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+acute.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/A_-cy.glif b/sources/FixelText-Medium.ufo/glyphs/A_-cy.glif new file mode 100644 index 00000000..3131ca52 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/A_-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/A_-cy.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/A_-cy.ss01.glif new file mode 100644 index 00000000..48e023a3 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/A_-cy.ss01.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + com.fontlab.recipe + A + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/A_.glif b/sources/FixelText-Medium.ufo/glyphs/A_.glif new file mode 100644 index 00000000..44ffcc4b --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/A_.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/A_.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/A_.ss01.glif new file mode 100644 index 00000000..0593b9c2 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/A_.ss01.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/A_E_.glif b/sources/FixelText-Medium.ufo/glyphs/A_E_.glif new file mode 100644 index 00000000..724cf9dd --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/A_E_.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + A + com.fontlab.metricsRight + E + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/A_E_.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/A_E_.ss01.glif new file mode 100644 index 00000000..14061618 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/A_E_.ss01.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + A.ss01 + com.fontlab.metricsRight + E + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/A_E_acute.glif b/sources/FixelText-Medium.ufo/glyphs/A_E_acute.glif new file mode 100644 index 00000000..907608d7 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/A_E_acute.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + AE+acute.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/A_acute.glif b/sources/FixelText-Medium.ufo/glyphs/A_acute.glif new file mode 100644 index 00000000..6cd4e09e --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/A_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+acute.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/A_acute.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/A_acute.ss01.glif new file mode 100644 index 00000000..0bd61523 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/A_acute.ss01.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + A.ss01+acute.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/A_breve.glif b/sources/FixelText-Medium.ufo/glyphs/A_breve.glif new file mode 100644 index 00000000..ee4ce774 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/A_breve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+breve.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/A_breve.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/A_breve.ss01.glif new file mode 100644 index 00000000..43d979de --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/A_breve.ss01.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + A.ss01+breve.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/A_brevecyr.glif b/sources/FixelText-Medium.ufo/glyphs/A_brevecyr.glif new file mode 100644 index 00000000..89e87eef --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/A_brevecyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+breve.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/A_caron.glif b/sources/FixelText-Medium.ufo/glyphs/A_caron.glif new file mode 100644 index 00000000..5bd329c2 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/A_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+caron.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/A_circumflex.glif b/sources/FixelText-Medium.ufo/glyphs/A_circumflex.glif new file mode 100644 index 00000000..72eafe73 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/A_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+circumflex.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/A_circumflex.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/A_circumflex.ss01.glif new file mode 100644 index 00000000..f466254c --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/A_circumflex.ss01.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + A.ss01+circumflex.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/A_dieresis.glif b/sources/FixelText-Medium.ufo/glyphs/A_dieresis.glif new file mode 100644 index 00000000..c4076fbb --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/A_dieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+dieresis.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/A_dieresis.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/A_dieresis.ss01.glif new file mode 100644 index 00000000..1c0ef24b --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/A_dieresis.ss01.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + A.ss01+dieresis.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/A_dieresiscyr.glif b/sources/FixelText-Medium.ufo/glyphs/A_dieresiscyr.glif new file mode 100644 index 00000000..d072c1bd --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/A_dieresiscyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/A_grave.glif b/sources/FixelText-Medium.ufo/glyphs/A_grave.glif new file mode 100644 index 00000000..e80f6cce --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/A_grave.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+grave.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/A_grave.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/A_grave.ss01.glif new file mode 100644 index 00000000..8701574a --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/A_grave.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A.ss01+grave.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/A_iecyr.glif b/sources/FixelText-Medium.ufo/glyphs/A_iecyr.glif new file mode 100644 index 00000000..3e7bb51e --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/A_iecyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + AE + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/A_macron.glif b/sources/FixelText-Medium.ufo/glyphs/A_macron.glif new file mode 100644 index 00000000..85a3ed00 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/A_macron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+macron.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/A_macron.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/A_macron.ss01.glif new file mode 100644 index 00000000..6b4d713e --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/A_macron.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A.ss01+macron.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/A_ogonek.glif b/sources/FixelText-Medium.ufo/glyphs/A_ogonek.glif new file mode 100644 index 00000000..f88f61f0 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/A_ogonek.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+ogonek + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/A_ogonek.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/A_ogonek.ss01.glif new file mode 100644 index 00000000..c9e4ac4d --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/A_ogonek.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A.ss01+ogonek + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/A_ring.glif b/sources/FixelText-Medium.ufo/glyphs/A_ring.glif new file mode 100644 index 00000000..9c3d2ec1 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/A_ring.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+ring.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/A_ring.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/A_ring.ss01.glif new file mode 100644 index 00000000..fb7e3e6e --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/A_ring.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A.ss01+ring.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/A_tilde.glif b/sources/FixelText-Medium.ufo/glyphs/A_tilde.glif new file mode 100644 index 00000000..875f262c --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/A_tilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+tilde.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/A_tilde.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/A_tilde.ss01.glif new file mode 100644 index 00000000..afa2a87d --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/A_tilde.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A.ss01+tilde.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/B_.glif b/sources/FixelText-Medium.ufo/glyphs/B_.glif new file mode 100644 index 00000000..605714e2 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/B_.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/B_e-cy.glif b/sources/FixelText-Medium.ufo/glyphs/B_e-cy.glif new file mode 100644 index 00000000..09af7c05 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/B_e-cy.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + B-10 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/C_.glif b/sources/FixelText-Medium.ufo/glyphs/C_.glif new file mode 100644 index 00000000..0f65d042 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/C_.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/C_R_.glif b/sources/FixelText-Medium.ufo/glyphs/C_R_.glif new file mode 100644 index 00000000..a38a285e --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/C_R_.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/C_acute.glif b/sources/FixelText-Medium.ufo/glyphs/C_acute.glif new file mode 100644 index 00000000..652003ad --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/C_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+acute.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/C_caron.glif b/sources/FixelText-Medium.ufo/glyphs/C_caron.glif new file mode 100644 index 00000000..96d92b00 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/C_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+caron.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/C_cedilla.glif b/sources/FixelText-Medium.ufo/glyphs/C_cedilla.glif new file mode 100644 index 00000000..79c51d97 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/C_cedilla.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+cedilla + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/C_che-cy.glif b/sources/FixelText-Medium.ufo/glyphs/C_che-cy.glif new file mode 100644 index 00000000..5814fc94 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/C_che-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ч + com.fontlab.metricsRight + Ч + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/C_circumflex.glif b/sources/FixelText-Medium.ufo/glyphs/C_circumflex.glif new file mode 100644 index 00000000..830a8434 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/C_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+circumflex.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/C_dotaccent.glif b/sources/FixelText-Medium.ufo/glyphs/C_dotaccent.glif new file mode 100644 index 00000000..664a814a --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/C_dotaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+dotaccent.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/C_he-cy.glif b/sources/FixelText-Medium.ufo/glyphs/C_he-cy.glif new file mode 100644 index 00000000..32091046 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/C_he-cy.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/C_heabkhcyr.glif b/sources/FixelText-Medium.ufo/glyphs/C_heabkhcyr.glif new file mode 100644 index 00000000..60435c34 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/C_heabkhcyr.glif @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + |Schwa + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/C_heabkhtailcyr.glif b/sources/FixelText-Medium.ufo/glyphs/C_heabkhtailcyr.glif new file mode 100644 index 00000000..2dc30437 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/C_heabkhtailcyr.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Cheabkhcyr + com.fontlab.metricsRight + Cheabkhcyr + com.fontlab.recipe + Cheabkhcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/C_hedieresiscyr.glif b/sources/FixelText-Medium.ufo/glyphs/C_hedieresiscyr.glif new file mode 100644 index 00000000..f4466b1d --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/C_hedieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Che-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/C_hekhakascyr.glif b/sources/FixelText-Medium.ufo/glyphs/C_hekhakascyr.glif new file mode 100644 index 00000000..83ed5f85 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/C_hekhakascyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ч + com.fontlab.metricsRight + H + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/C_hetailcyr.glif b/sources/FixelText-Medium.ufo/glyphs/C_hetailcyr.glif new file mode 100644 index 00000000..c7387f43 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/C_hetailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ч + com.fontlab.metricsRight + Entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/C_hevertcyr.glif b/sources/FixelText-Medium.ufo/glyphs/C_hevertcyr.glif new file mode 100644 index 00000000..def141cc --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/C_hevertcyr.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ч + com.fontlab.metricsRight + Н + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/C_rossedO_-cy.glif b/sources/FixelText-Medium.ufo/glyphs/C_rossedO_-cy.glif new file mode 100644 index 00000000..8c23ab48 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/C_rossedO_-cy.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + com.fontlab.recipe + O + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/D_.glif b/sources/FixelText-Medium.ufo/glyphs/D_.glif new file mode 100644 index 00000000..5d112a33 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/D_.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/D_caron.glif b/sources/FixelText-Medium.ufo/glyphs/D_caron.glif new file mode 100644 index 00000000..9c9cabd7 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/D_caron.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + D+caron.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/D_checyr.glif b/sources/FixelText-Medium.ufo/glyphs/D_checyr.glif new file mode 100644 index 00000000..473ffe86 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/D_checyr.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Д+10 + com.fontlab.metricsRight + Д + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/D_croat.glif b/sources/FixelText-Medium.ufo/glyphs/D_croat.glif new file mode 100644 index 00000000..d1588f0e --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/D_croat.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + D + com.fontlab.recipe + Eth + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/D_e-cy.B_G_R_.glif b/sources/FixelText-Medium.ufo/glyphs/D_e-cy.B_G_R_.glif new file mode 100644 index 00000000..be1138e8 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/D_e-cy.B_G_R_.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + l() + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/D_e-cy.glif b/sources/FixelText-Medium.ufo/glyphs/D_e-cy.glif new file mode 100644 index 00000000..7ce72308 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/D_e-cy.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/D_eS_oft-cy.glif b/sources/FixelText-Medium.ufo/glyphs/D_eS_oft-cy.glif new file mode 100644 index 00000000..cf9596d0 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/D_eS_oft-cy.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Д + com.fontlab.metricsRight + Ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/D_ekomicyr.glif b/sources/FixelText-Medium.ufo/glyphs/D_ekomicyr.glif new file mode 100644 index 00000000..7eff2eac --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/D_ekomicyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.metricsLeft + |P + com.fontlab.metricsRight + H + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/D_elta.glif b/sources/FixelText-Medium.ufo/glyphs/D_elta.glif new file mode 100644 index 00000000..3b0cc85d --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/D_elta.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + A + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/D_jecyr.glif b/sources/FixelText-Medium.ufo/glyphs/D_jecyr.glif new file mode 100644 index 00000000..cc0143b2 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/D_jecyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/D_jekomicyr.glif b/sources/FixelText-Medium.ufo/glyphs/D_jekomicyr.glif new file mode 100644 index 00000000..389c77f8 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/D_jekomicyr.glif @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Dekomicyr + com.fontlab.metricsRight + Njekomicyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/D_jerv-cy.glif b/sources/FixelText-Medium.ufo/glyphs/D_jerv-cy.glif new file mode 100644 index 00000000..4e681186 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/D_jerv-cy.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + r() + com.fontlab.metricsRight + O + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/D_oubleO_-cy.glif b/sources/FixelText-Medium.ufo/glyphs/D_oubleO_-cy.glif new file mode 100644 index 00000000..2235921d --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/D_oubleO_-cy.glif @@ -0,0 +1,91 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + com.fontlab.recipe + O_O + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/D_we-cy.glif b/sources/FixelText-Medium.ufo/glyphs/D_we-cy.glif new file mode 100644 index 00000000..5b7df7fd --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/D_we-cy.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Д + com.fontlab.metricsRight + Д + com.fontlab.recipe + Д + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/D_ze-cy.glif b/sources/FixelText-Medium.ufo/glyphs/D_ze-cy.glif new file mode 100644 index 00000000..623f7d2b --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/D_ze-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + S + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/D_zeR_eversed-cy.glif b/sources/FixelText-Medium.ufo/glyphs/D_zeR_eversed-cy.glif new file mode 100644 index 00000000..77eff867 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/D_zeR_eversed-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + S + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/D_zeabkhcyr.glif b/sources/FixelText-Medium.ufo/glyphs/D_zeabkhcyr.glif new file mode 100644 index 00000000..a3e77652 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/D_zeabkhcyr.glif @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + З-10 + com.fontlab.metricsRight + З-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/D_zelo-cy.glif b/sources/FixelText-Medium.ufo/glyphs/D_zelo-cy.glif new file mode 100644 index 00000000..b79709b2 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/D_zelo-cy.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/D_zhecyr.glif b/sources/FixelText-Medium.ufo/glyphs/D_zhecyr.glif new file mode 100644 index 00000000..befd63ab --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/D_zhecyr.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/D_zjekomicyr.glif b/sources/FixelText-Medium.ufo/glyphs/D_zjekomicyr.glif new file mode 100644 index 00000000..4215cad6 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/D_zjekomicyr.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + З-10 + com.fontlab.metricsRight + Ц-5 + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/D_zwe-cy.glif b/sources/FixelText-Medium.ufo/glyphs/D_zwe-cy.glif new file mode 100644 index 00000000..fb7a8695 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/D_zwe-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + S + com.fontlab.metricsRight + S + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/D_zze-cy.glif b/sources/FixelText-Medium.ufo/glyphs/D_zze-cy.glif new file mode 100644 index 00000000..af8b6b24 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/D_zze-cy.glif @@ -0,0 +1,84 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Д + com.fontlab.metricsRight + Д-20 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/D_zzhecyr.glif b/sources/FixelText-Medium.ufo/glyphs/D_zzhecyr.glif new file mode 100644 index 00000000..f83a4c60 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/D_zzhecyr.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Д + com.fontlab.metricsRight + Ж + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/E_-cy.accented.glif b/sources/FixelText-Medium.ufo/glyphs/E_-cy.accented.glif new file mode 100644 index 00000000..af9b1991 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/E_-cy.accented.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+acute.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/E_-cy.glif b/sources/FixelText-Medium.ufo/glyphs/E_-cy.glif new file mode 100644 index 00000000..f079125f --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/E_-cy.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + C + com.fontlab.metricsRight + C + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/E_.glif b/sources/FixelText-Medium.ufo/glyphs/E_.glif new file mode 100644 index 00000000..a624711a --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/E_.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + com.fontlab.metricsRight + F+10 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/E_acute.glif b/sources/FixelText-Medium.ufo/glyphs/E_acute.glif new file mode 100644 index 00000000..f70aec1d --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/E_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+acute.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/E_breve.glif b/sources/FixelText-Medium.ufo/glyphs/E_breve.glif new file mode 100644 index 00000000..57ad788c --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/E_breve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+breve.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/E_caron.glif b/sources/FixelText-Medium.ufo/glyphs/E_caron.glif new file mode 100644 index 00000000..11f59d9a --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/E_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+caron.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/E_circumflex.glif b/sources/FixelText-Medium.ufo/glyphs/E_circumflex.glif new file mode 100644 index 00000000..4e9ce9f2 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/E_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+circumflex.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/E_dieresis.glif b/sources/FixelText-Medium.ufo/glyphs/E_dieresis.glif new file mode 100644 index 00000000..1b3c0150 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/E_dieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+dieresiscase.alt + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/E_dotaccent.glif b/sources/FixelText-Medium.ufo/glyphs/E_dotaccent.glif new file mode 100644 index 00000000..45160a3f --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/E_dotaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+dotaccent.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/E_f-cy.B_G_R_.glif b/sources/FixelText-Medium.ufo/glyphs/E_f-cy.B_G_R_.glif new file mode 100644 index 00000000..acbea410 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/E_f-cy.B_G_R_.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/E_f-cy.glif b/sources/FixelText-Medium.ufo/glyphs/E_f-cy.glif new file mode 100644 index 00000000..afc0c964 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/E_f-cy.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/E_grave.glif b/sources/FixelText-Medium.ufo/glyphs/E_grave.glif new file mode 100644 index 00000000..9f5053b7 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/E_grave.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+grave.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/E_iotifiedcyr.glif b/sources/FixelText-Medium.ufo/glyphs/E_iotifiedcyr.glif new file mode 100644 index 00000000..7e3745b3 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/E_iotifiedcyr.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + C + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/E_l-cy.B_G_R_.glif b/sources/FixelText-Medium.ufo/glyphs/E_l-cy.B_G_R_.glif new file mode 100644 index 00000000..b3edae47 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/E_l-cy.B_G_R_.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + A + com.fontlab.metricsRight + l() + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/E_l-cy.glif b/sources/FixelText-Medium.ufo/glyphs/E_l-cy.glif new file mode 100644 index 00000000..275c6a54 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/E_l-cy.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/E_lS_oft-cy.glif b/sources/FixelText-Medium.ufo/glyphs/E_lS_oft-cy.glif new file mode 100644 index 00000000..2a0547cc --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/E_lS_oft-cy.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/E_lhookcyr.glif b/sources/FixelText-Medium.ufo/glyphs/E_lhookcyr.glif new file mode 100644 index 00000000..fae80fb5 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/E_lhookcyr.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Л + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/E_lmiddlehookcyr.glif b/sources/FixelText-Medium.ufo/glyphs/E_lmiddlehookcyr.glif new file mode 100644 index 00000000..323d48bb --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/E_lmiddlehookcyr.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Shhacyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/E_lsharptailcyr.glif b/sources/FixelText-Medium.ufo/glyphs/E_lsharptailcyr.glif new file mode 100644 index 00000000..7a8a4078 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/E_lsharptailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Ensharptailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/E_lsmallcyr.glif b/sources/FixelText-Medium.ufo/glyphs/E_lsmallcyr.glif new file mode 100644 index 00000000..f5af6aec --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/E_lsmallcyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + el-cy.BGR + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/E_ltailcyr.glif b/sources/FixelText-Medium.ufo/glyphs/E_ltailcyr.glif new file mode 100644 index 00000000..daadbb72 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/E_ltailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/E_m-cy.glif b/sources/FixelText-Medium.ufo/glyphs/E_m-cy.glif new file mode 100644 index 00000000..c3006e79 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/E_m-cy.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + M + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/E_m-cy.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/E_m-cy.ss01.glif new file mode 100644 index 00000000..9c128ac9 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/E_m-cy.ss01.glif @@ -0,0 +1,13 @@ + + + + + + + + + com.fontlab.recipe + M + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/E_mS_oft-cy.glif b/sources/FixelText-Medium.ufo/glyphs/E_mS_oft-cy.glif new file mode 100644 index 00000000..0d9fc1c7 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/E_mS_oft-cy.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + M + com.fontlab.metricsRight + Ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/E_macron.glif b/sources/FixelText-Medium.ufo/glyphs/E_macron.glif new file mode 100644 index 00000000..6421fc27 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/E_macron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+macron.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/E_msharptailcyr.glif b/sources/FixelText-Medium.ufo/glyphs/E_msharptailcyr.glif new file mode 100644 index 00000000..72417ff6 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/E_msharptailcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Н + com.fontlab.metricsRight + Ensharptailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/E_n-cy.glif b/sources/FixelText-Medium.ufo/glyphs/E_n-cy.glif new file mode 100644 index 00000000..90358e36 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/E_n-cy.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + H + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/E_ng.glif b/sources/FixelText-Medium.ufo/glyphs/E_ng.glif new file mode 100644 index 00000000..00d4e063 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/E_ng.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + N + com.fontlab.metricsRight + l() + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/E_ng.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/E_ng.ss01.glif new file mode 100644 index 00000000..415f0780 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/E_ng.ss01.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + N.ss01 + com.fontlab.metricsRight + J.ss01 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/E_ngecyr.glif b/sources/FixelText-Medium.ufo/glyphs/E_ngecyr.glif new file mode 100644 index 00000000..def8f1e6 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/E_ngecyr.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/E_nhookcyr.glif b/sources/FixelText-Medium.ufo/glyphs/E_nhookcyr.glif new file mode 100644 index 00000000..ae962bea --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/E_nhookcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/E_nhookleftcyr.glif b/sources/FixelText-Medium.ufo/glyphs/E_nhookleftcyr.glif new file mode 100644 index 00000000..308b1663 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/E_nhookleftcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + r()-159 + com.fontlab.metricsRight + H + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/E_nmiddlehookcyr.glif b/sources/FixelText-Medium.ufo/glyphs/E_nmiddlehookcyr.glif new file mode 100644 index 00000000..529b498a --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/E_nmiddlehookcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Shhacyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/E_nsharptailcyr.glif b/sources/FixelText-Medium.ufo/glyphs/E_nsharptailcyr.glif new file mode 100644 index 00000000..f06363ac --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/E_nsharptailcyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Н + com.fontlab.metricsRight + Д + com.fontlab.recipe + Entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/E_ntailcyr.glif b/sources/FixelText-Medium.ufo/glyphs/E_ntailcyr.glif new file mode 100644 index 00000000..fd4fc114 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/E_ntailcyr.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Ц + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/E_ogonek.glif b/sources/FixelText-Medium.ufo/glyphs/E_ogonek.glif new file mode 100644 index 00000000..7c8163e3 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/E_ogonek.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+ogonek + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/E_r-cy.glif b/sources/FixelText-Medium.ufo/glyphs/E_r-cy.glif new file mode 100644 index 00000000..3412bdd3 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/E_r-cy.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + P + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/E_reversed-cy.accented.glif b/sources/FixelText-Medium.ufo/glyphs/E_reversed-cy.accented.glif new file mode 100644 index 00000000..f71806a7 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/E_reversed-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Э+acute.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/E_reversed-cy.glif b/sources/FixelText-Medium.ufo/glyphs/E_reversed-cy.glif new file mode 100644 index 00000000..cd899821 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/E_reversed-cy.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |C + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/E_reverseddieresiscyr.glif b/sources/FixelText-Medium.ufo/glyphs/E_reverseddieresiscyr.glif new file mode 100644 index 00000000..67ce5f58 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/E_reverseddieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ereversed-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/E_rtickcyr.glif b/sources/FixelText-Medium.ufo/glyphs/E_rtickcyr.glif new file mode 100644 index 00000000..cce751ed --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/E_rtickcyr.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + P + com.fontlab.metricsRight + P + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/E_s-cy.glif b/sources/FixelText-Medium.ufo/glyphs/E_s-cy.glif new file mode 100644 index 00000000..9e0fc3ea --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/E_s-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/E_stailcyr.B_S_H_.glif b/sources/FixelText-Medium.ufo/glyphs/E_stailcyr.B_S_H_.glif new file mode 100644 index 00000000..56d799a8 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/E_stailcyr.B_S_H_.glif @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + C + com.fontlab.metricsRight + C + com.fontlab.recipe + C + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/E_stailcyr.C_H_U_.glif b/sources/FixelText-Medium.ufo/glyphs/E_stailcyr.C_H_U_.glif new file mode 100644 index 00000000..6404748a --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/E_stailcyr.C_H_U_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+cedilla.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/E_stailcyr.glif b/sources/FixelText-Medium.ufo/glyphs/E_stailcyr.glif new file mode 100644 index 00000000..e749634e --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/E_stailcyr.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + С + com.fontlab.metricsRight + С + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/E_th.glif b/sources/FixelText-Medium.ufo/glyphs/E_th.glif new file mode 100644 index 00000000..66a0e810 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/E_th.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + D + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/F_.glif b/sources/FixelText-Medium.ufo/glyphs/F_.glif new file mode 100644 index 00000000..6a68d7b2 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/F_.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/F_itacyr.glif b/sources/FixelText-Medium.ufo/glyphs/F_itacyr.glif new file mode 100644 index 00000000..97207abc --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/F_itacyr.glif @@ -0,0 +1,78 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + com.fontlab.recipe + Obarcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/G_.glif b/sources/FixelText-Medium.ufo/glyphs/G_.glif new file mode 100644 index 00000000..c63ce528 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/G_.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O+18 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/G_.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/G_.ss01.glif new file mode 100644 index 00000000..de57484e --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/G_.ss01.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O+10 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/G_acute.glif b/sources/FixelText-Medium.ufo/glyphs/G_acute.glif new file mode 100644 index 00000000..e25694df --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/G_acute.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + G+acute.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/G_acute.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/G_acute.ss01.glif new file mode 100644 index 00000000..2a611923 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/G_acute.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G.ss01+acute.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/G_breve.glif b/sources/FixelText-Medium.ufo/glyphs/G_breve.glif new file mode 100644 index 00000000..ed8b9955 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/G_breve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G+breve.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/G_breve.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/G_breve.ss01.glif new file mode 100644 index 00000000..8a8ba7fe --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/G_breve.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G.ss01+breve.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/G_circumflex.glif b/sources/FixelText-Medium.ufo/glyphs/G_circumflex.glif new file mode 100644 index 00000000..8cd0fce6 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/G_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G+circumflex.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/G_circumflex.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/G_circumflex.ss01.glif new file mode 100644 index 00000000..9941f170 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/G_circumflex.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G.ss01+circumflex.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/G_commaaccent.glif b/sources/FixelText-Medium.ufo/glyphs/G_commaaccent.glif new file mode 100644 index 00000000..269a7db8 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/G_commaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G+commaaccentcomb + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/G_commaaccent.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/G_commaaccent.ss01.glif new file mode 100644 index 00000000..951d950c --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/G_commaaccent.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G.ss01+commaaccentcomb + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/G_dotaccent.glif b/sources/FixelText-Medium.ufo/glyphs/G_dotaccent.glif new file mode 100644 index 00000000..0466b33d --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/G_dotaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G+dotaccent.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/G_dotaccent.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/G_dotaccent.ss01.glif new file mode 100644 index 00000000..a5aca291 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/G_dotaccent.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G.ss01+dotaccent.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/G_e-cy.glif b/sources/FixelText-Medium.ufo/glyphs/G_e-cy.glif new file mode 100644 index 00000000..95dca84f --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/G_e-cy.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + T + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/G_ehookcyr.glif b/sources/FixelText-Medium.ufo/glyphs/G_ehookcyr.glif new file mode 100644 index 00000000..f10e574b --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/G_ehookcyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Г + com.fontlab.metricsRight + Tshecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/G_ehookstrokecyr.glif b/sources/FixelText-Medium.ufo/glyphs/G_ehookstrokecyr.glif new file mode 100644 index 00000000..cd9cba47 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/G_ehookstrokecyr.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Gestrokecyr + com.fontlab.metricsRight + Gestrokecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/G_ermandbls.glif b/sources/FixelText-Medium.ufo/glyphs/G_ermandbls.glif new file mode 100644 index 00000000..70bb3f46 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/G_ermandbls.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + U + com.fontlab.metricsRight + B-5 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/G_estrokecyr.B_S_H_.glif b/sources/FixelText-Medium.ufo/glyphs/G_estrokecyr.B_S_H_.glif new file mode 100644 index 00000000..2fef2402 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/G_estrokecyr.B_S_H_.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + F + com.fontlab.metricsRight + Gestrokecyr + com.fontlab.recipe + Gestrokecyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/G_estrokecyr.glif b/sources/FixelText-Medium.ufo/glyphs/G_estrokecyr.glif new file mode 100644 index 00000000..22845371 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/G_estrokecyr.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + Г + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/G_etailcyr.glif b/sources/FixelText-Medium.ufo/glyphs/G_etailcyr.glif new file mode 100644 index 00000000..c0ba1a5e --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/G_etailcyr.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Г + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/G_heupturn-cy.glif b/sources/FixelText-Medium.ufo/glyphs/G_heupturn-cy.glif new file mode 100644 index 00000000..268001b7 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/G_heupturn-cy.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Г + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/G_jecyr.glif b/sources/FixelText-Medium.ufo/glyphs/G_jecyr.glif new file mode 100644 index 00000000..d6d528ac --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/G_jecyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ge-cy+acute.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/H_.glif b/sources/FixelText-Medium.ufo/glyphs/H_.glif new file mode 100644 index 00000000..62de63a0 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/H_.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + com.fontlab.metricsRight + I + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/H_a-cy.glif b/sources/FixelText-Medium.ufo/glyphs/H_a-cy.glif new file mode 100644 index 00000000..2c79f68b --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/H_a-cy.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + X + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/H_a-cy.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/H_a-cy.ss01.glif new file mode 100644 index 00000000..1f58b8b1 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/H_a-cy.ss01.glif @@ -0,0 +1,14 @@ + + + + + + + + + + com.fontlab.recipe + X + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/H_aabkhcyr.glif b/sources/FixelText-Medium.ufo/glyphs/H_aabkhcyr.glif new file mode 100644 index 00000000..12690f85 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/H_aabkhcyr.glif @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/H_ahookcyr.glif b/sources/FixelText-Medium.ufo/glyphs/H_ahookcyr.glif new file mode 100644 index 00000000..d60afe32 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/H_ahookcyr.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + X + com.fontlab.metricsRight + X + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/H_ardsign-cy.glif b/sources/FixelText-Medium.ufo/glyphs/H_ardsign-cy.glif new file mode 100644 index 00000000..6faeb384 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/H_ardsign-cy.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + Ь + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/H_astrokecyr.glif b/sources/FixelText-Medium.ufo/glyphs/H_astrokecyr.glif new file mode 100644 index 00000000..87e4b9bd --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/H_astrokecyr.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + X + com.fontlab.metricsRight + X + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/H_bar.glif b/sources/FixelText-Medium.ufo/glyphs/H_bar.glif new file mode 100644 index 00000000..50fb09ba --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/H_bar.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + r() + com.fontlab.metricsRight + H + com.schriftgestaltung.Glyphs.rightMetricsKey + H + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/H_circumflex.glif b/sources/FixelText-Medium.ufo/glyphs/H_circumflex.glif new file mode 100644 index 00000000..e492a95d --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/H_circumflex.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + H+circumflex.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/H_we-cy.glif b/sources/FixelText-Medium.ufo/glyphs/H_we-cy.glif new file mode 100644 index 00000000..14247202 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/H_we-cy.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Iota-cy + com.fontlab.metricsRight + Tshecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/I_-cy.glif b/sources/FixelText-Medium.ufo/glyphs/I_-cy.glif new file mode 100644 index 00000000..17134a28 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/I_-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/I_.glif b/sources/FixelText-Medium.ufo/glyphs/I_.glif new file mode 100644 index 00000000..fb6e2e58 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/I_.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/I_J_.glif b/sources/FixelText-Medium.ufo/glyphs/I_J_.glif new file mode 100644 index 00000000..7aeac8b4 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/I_J_.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + I_J + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/I_a-cy.accented.glif b/sources/FixelText-Medium.ufo/glyphs/I_a-cy.accented.glif new file mode 100644 index 00000000..c8ab32ac --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/I_a-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Я+acute.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/I_a-cy.glif b/sources/FixelText-Medium.ufo/glyphs/I_a-cy.glif new file mode 100644 index 00000000..281b8c6a --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/I_a-cy.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |R+10 + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/I_a-cy.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/I_a-cy.ss01.glif new file mode 100644 index 00000000..87f9c4a1 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/I_a-cy.ss01.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/I_acute.glif b/sources/FixelText-Medium.ufo/glyphs/I_acute.glif new file mode 100644 index 00000000..a5b19a86 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/I_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+acute.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/I_breve.glif b/sources/FixelText-Medium.ufo/glyphs/I_breve.glif new file mode 100644 index 00000000..b10ede40 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/I_breve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+breve.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/I_circumflex.glif b/sources/FixelText-Medium.ufo/glyphs/I_circumflex.glif new file mode 100644 index 00000000..8c9d5d59 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/I_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+circumflex.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/I_dieresis.glif b/sources/FixelText-Medium.ufo/glyphs/I_dieresis.glif new file mode 100644 index 00000000..32d66f52 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/I_dieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+dieresiscase.alt + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/I_dieresiscyr.glif b/sources/FixelText-Medium.ufo/glyphs/I_dieresiscyr.glif new file mode 100644 index 00000000..a11b744f --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/I_dieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ii-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/I_dotaccent.glif b/sources/FixelText-Medium.ufo/glyphs/I_dotaccent.glif new file mode 100644 index 00000000..9b3bc1ba --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/I_dotaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+dotaccent.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/I_e-cy.glif b/sources/FixelText-Medium.ufo/glyphs/I_e-cy.glif new file mode 100644 index 00000000..ecd32266 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/I_e-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/I_ebrevecyr.glif b/sources/FixelText-Medium.ufo/glyphs/I_ebrevecyr.glif new file mode 100644 index 00000000..cde46385 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/I_ebrevecyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+breve.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/I_egravecyr.glif b/sources/FixelText-Medium.ufo/glyphs/I_egravecyr.glif new file mode 100644 index 00000000..5da00073 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/I_egravecyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+grave.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/I_grave.glif b/sources/FixelText-Medium.ufo/glyphs/I_grave.glif new file mode 100644 index 00000000..80c4e737 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/I_grave.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+grave.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/I_gravecyr.glif b/sources/FixelText-Medium.ufo/glyphs/I_gravecyr.glif new file mode 100644 index 00000000..6112bf0d --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/I_gravecyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ii-cy+grave.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/I_i-cy.accented.glif b/sources/FixelText-Medium.ufo/glyphs/I_i-cy.accented.glif new file mode 100644 index 00000000..6aa56a37 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/I_i-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + И+acute.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/I_i-cy.glif b/sources/FixelText-Medium.ufo/glyphs/I_i-cy.glif new file mode 100644 index 00000000..f44a46ef --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/I_i-cy.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/I_ishort-cy.glif b/sources/FixelText-Medium.ufo/glyphs/I_ishort-cy.glif new file mode 100644 index 00000000..06e4edf5 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/I_ishort-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + uni0418+breve.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/I_macron.glif b/sources/FixelText-Medium.ufo/glyphs/I_macron.glif new file mode 100644 index 00000000..1b8f768f --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/I_macron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+macron.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/I_macroncyr.glif b/sources/FixelText-Medium.ufo/glyphs/I_macroncyr.glif new file mode 100644 index 00000000..50369949 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/I_macroncyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ii-cy+macron.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/I_o-cy.accented.glif b/sources/FixelText-Medium.ufo/glyphs/I_o-cy.accented.glif new file mode 100644 index 00000000..54223430 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/I_o-cy.accented.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + com.fontlab.recipe + E+dieresis.case+acute.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/I_o-cy.glif b/sources/FixelText-Medium.ufo/glyphs/I_o-cy.glif new file mode 100644 index 00000000..88b7f496 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/I_o-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Edieresis + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/I_ogonek.glif b/sources/FixelText-Medium.ufo/glyphs/I_ogonek.glif new file mode 100644 index 00000000..a626324a --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/I_ogonek.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+ogonek + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/I_ota-cy.glif b/sources/FixelText-Medium.ufo/glyphs/I_ota-cy.glif new file mode 100644 index 00000000..c8ec6914 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/I_ota-cy.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |J + com.fontlab.metricsRight + |J + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/I_otifiedA_-cy.glif b/sources/FixelText-Medium.ufo/glyphs/I_otifiedA_-cy.glif new file mode 100644 index 00000000..6aef534c --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/I_otifiedA_-cy.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + com.fontlab.metricsRight + A + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/I_shortsharptailcyr.glif b/sources/FixelText-Medium.ufo/glyphs/I_shortsharptailcyr.glif new file mode 100644 index 00000000..5ce1feb7 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/I_shortsharptailcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Й + com.fontlab.metricsRight + Ensharptailcyr + com.fontlab.recipe + Й + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/I_tilde.glif b/sources/FixelText-Medium.ufo/glyphs/I_tilde.glif new file mode 100644 index 00000000..3636c757 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/I_tilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+tilde.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/I_u-cy.accented.glif b/sources/FixelText-Medium.ufo/glyphs/I_u-cy.accented.glif new file mode 100644 index 00000000..06a5d475 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/I_u-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ю+acute.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/I_u-cy.glif b/sources/FixelText-Medium.ufo/glyphs/I_u-cy.glif new file mode 100644 index 00000000..64068414 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/I_u-cy.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/I_zhitsacyr.glif b/sources/FixelText-Medium.ufo/glyphs/I_zhitsacyr.glif new file mode 100644 index 00000000..5d27977f --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/I_zhitsacyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + V + com.fontlab.metricsRight + + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/I_zhitsagravedblcyr.glif b/sources/FixelText-Medium.ufo/glyphs/I_zhitsagravedblcyr.glif new file mode 100644 index 00000000..02e67933 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/I_zhitsagravedblcyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + com.fontlab.metricsLeft + Izhitsacyr + com.fontlab.metricsRight + Izhitsacyr + com.fontlab.recipe + Izhitsacyr+hungarumlaut.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/J_.glif b/sources/FixelText-Medium.ufo/glyphs/J_.glif new file mode 100644 index 00000000..91ec380a --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/J_.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + U + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/J_.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/J_.ss01.glif new file mode 100644 index 00000000..9f135be4 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/J_.ss01.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + U + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/J_circumflex.glif b/sources/FixelText-Medium.ufo/glyphs/J_circumflex.glif new file mode 100644 index 00000000..d4f55560 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/J_circumflex.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + J+circumflex.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/J_circumflex.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/J_circumflex.ss01.glif new file mode 100644 index 00000000..a5f492b6 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/J_circumflex.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + J.ss01+circumflex.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/J_ecyr.glif b/sources/FixelText-Medium.ufo/glyphs/J_ecyr.glif new file mode 100644 index 00000000..ef2fab7e --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/J_ecyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsLeft + J + com.fontlab.metricsRight + J + com.fontlab.recipe + J + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/K_.glif b/sources/FixelText-Medium.ufo/glyphs/K_.glif new file mode 100644 index 00000000..7a9284d7 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/K_.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/K_.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/K_.ss01.glif new file mode 100644 index 00000000..91f2cfdf --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/K_.ss01.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/K_a-cy.glif b/sources/FixelText-Medium.ufo/glyphs/K_a-cy.glif new file mode 100644 index 00000000..53fdc239 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/K_a-cy.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.recipe + K + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/K_a-cy.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/K_a-cy.ss01.glif new file mode 100644 index 00000000..59cd72af --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/K_a-cy.ss01.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.recipe + K + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/K_aaleutcyr.glif b/sources/FixelText-Medium.ufo/glyphs/K_aaleutcyr.glif new file mode 100644 index 00000000..975e85d2 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/K_aaleutcyr.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + K + com.fontlab.metricsRight + K + com.fontlab.recipe + K + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/K_abashkcyr.glif b/sources/FixelText-Medium.ufo/glyphs/K_abashkcyr.glif new file mode 100644 index 00000000..324fb963 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/K_abashkcyr.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Hardsign-cy + com.fontlab.metricsRight + K + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/K_ahookcyr.glif b/sources/FixelText-Medium.ufo/glyphs/K_ahookcyr.glif new file mode 100644 index 00000000..dd093452 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/K_ahookcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + K + com.fontlab.metricsRight + Djecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/K_astrokecyr.glif b/sources/FixelText-Medium.ufo/glyphs/K_astrokecyr.glif new file mode 100644 index 00000000..74979a54 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/K_astrokecyr.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Yatcyr + com.fontlab.metricsRight + K + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/K_atailcyr.glif b/sources/FixelText-Medium.ufo/glyphs/K_atailcyr.glif new file mode 100644 index 00000000..74603a8f --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/K_atailcyr.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + К-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/K_averticalstrokecyr.glif b/sources/FixelText-Medium.ufo/glyphs/K_averticalstrokecyr.glif new file mode 100644 index 00000000..9ab9b223 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/K_averticalstrokecyr.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + K + com.fontlab.metricsRight + Ж + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/K_commaaccent.glif b/sources/FixelText-Medium.ufo/glyphs/K_commaaccent.glif new file mode 100644 index 00000000..be12a57d --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/K_commaaccent.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + K+commaaccentcomb + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/K_commaaccent.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/K_commaaccent.ss01.glif new file mode 100644 index 00000000..5bd78511 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/K_commaaccent.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + K.ss01+commaaccentcomb + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/K_jecyr.glif b/sources/FixelText-Medium.ufo/glyphs/K_jecyr.glif new file mode 100644 index 00000000..bfcd645e --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/K_jecyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ka-cy+acute.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/K_oppacyr.glif b/sources/FixelText-Medium.ufo/glyphs/K_oppacyr.glif new file mode 100644 index 00000000..5b3f2f80 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/K_oppacyr.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + C-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/K_sicyr.glif b/sources/FixelText-Medium.ufo/glyphs/K_sicyr.glif new file mode 100644 index 00000000..ca1a0a2e --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/K_sicyr.glif @@ -0,0 +1,98 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + З-10 + com.fontlab.metricsRight + З + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/L_.glif b/sources/FixelText-Medium.ufo/glyphs/L_.glif new file mode 100644 index 00000000..3f7cae80 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/L_.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/L_acute.glif b/sources/FixelText-Medium.ufo/glyphs/L_acute.glif new file mode 100644 index 00000000..fc6988d6 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/L_acute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + L+acute.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/L_caron.glif b/sources/FixelText-Medium.ufo/glyphs/L_caron.glif new file mode 100644 index 00000000..cf3d3b14 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/L_caron.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + com.fontlab.recipe + L+caron.salt + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/L_commaaccent.glif b/sources/FixelText-Medium.ufo/glyphs/L_commaaccent.glif new file mode 100644 index 00000000..97d09231 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/L_commaaccent.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + L+commaaccentcomb + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/L_dot.glif b/sources/FixelText-Medium.ufo/glyphs/L_dot.glif new file mode 100644 index 00000000..8c52b87c --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/L_dot.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + com.fontlab.metricsRight + L + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/L_hacyr.glif b/sources/FixelText-Medium.ufo/glyphs/L_hacyr.glif new file mode 100644 index 00000000..c5accd65 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/L_hacyr.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + X + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/L_jecyr.glif b/sources/FixelText-Medium.ufo/glyphs/L_jecyr.glif new file mode 100644 index 00000000..f8f68d3f --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/L_jecyr.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Ь + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/L_jekomicyr.glif b/sources/FixelText-Medium.ufo/glyphs/L_jekomicyr.glif new file mode 100644 index 00000000..5d1be48f --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/L_jekomicyr.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Njekomicyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/L_slash.glif b/sources/FixelText-Medium.ufo/glyphs/L_slash.glif new file mode 100644 index 00000000..8a57ac07 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/L_slash.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + L-80 + com.fontlab.metricsRight + L + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/M_.glif b/sources/FixelText-Medium.ufo/glyphs/M_.glif new file mode 100644 index 00000000..ce86853b --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/M_.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/M_.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/M_.ss01.glif new file mode 100644 index 00000000..1f1be2c9 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/M_.ss01.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H-25 + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/N_.glif b/sources/FixelText-Medium.ufo/glyphs/N_.glif new file mode 100644 index 00000000..5803dcb9 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/N_.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/N_.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/N_.ss01.glif new file mode 100644 index 00000000..b2adba04 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/N_.ss01.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H-10 + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/N_U_L_L_.glif b/sources/FixelText-Medium.ufo/glyphs/N_U_L_L_.glif new file mode 100644 index 00000000..1ad177ae --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/N_U_L_L_.glif @@ -0,0 +1,4 @@ + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/N_acute.glif b/sources/FixelText-Medium.ufo/glyphs/N_acute.glif new file mode 100644 index 00000000..4bd2c0f1 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/N_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N+acute.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/N_acute.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/N_acute.ss01.glif new file mode 100644 index 00000000..73aa8c8f --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/N_acute.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N.ss01+acute.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/N_caron.glif b/sources/FixelText-Medium.ufo/glyphs/N_caron.glif new file mode 100644 index 00000000..9b92ac18 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/N_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N+caron.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/N_caron.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/N_caron.ss01.glif new file mode 100644 index 00000000..74ebffd7 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/N_caron.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N.ss01+caron.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/N_commaaccent.glif b/sources/FixelText-Medium.ufo/glyphs/N_commaaccent.glif new file mode 100644 index 00000000..06df7674 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/N_commaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N+commaaccentcomb + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/N_commaaccent.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/N_commaaccent.ss01.glif new file mode 100644 index 00000000..980c5976 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/N_commaaccent.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N.ss01+commaaccentcomb + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/N_jecyr.glif b/sources/FixelText-Medium.ufo/glyphs/N_jecyr.glif new file mode 100644 index 00000000..68f88954 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/N_jecyr.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Н + com.fontlab.metricsRight + Ь + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/N_jekomicyr.glif b/sources/FixelText-Medium.ufo/glyphs/N_jekomicyr.glif new file mode 100644 index 00000000..3d5bc464 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/N_jekomicyr.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + |u + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/N_tilde.glif b/sources/FixelText-Medium.ufo/glyphs/N_tilde.glif new file mode 100644 index 00000000..fa3ac60a --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/N_tilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N+tilde.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/N_tilde.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/N_tilde.ss01.glif new file mode 100644 index 00000000..11de74d0 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/N_tilde.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N.ss01+tilde.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/O_-cy.accented.glif b/sources/FixelText-Medium.ufo/glyphs/O_-cy.accented.glif new file mode 100644 index 00000000..cf6c7c34 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/O_-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+acute.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/O_-cy.glif b/sources/FixelText-Medium.ufo/glyphs/O_-cy.glif new file mode 100644 index 00000000..b09818c2 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/O_-cy.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/O_.glif b/sources/FixelText-Medium.ufo/glyphs/O_.glif new file mode 100644 index 00000000..2e25c21b --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/O_.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/O_B_inocular-cy.glif b/sources/FixelText-Medium.ufo/glyphs/O_B_inocular-cy.glif new file mode 100644 index 00000000..197c1ab1 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/O_B_inocular-cy.glif @@ -0,0 +1,81 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/O_D_oubleM_onocular-cy.glif b/sources/FixelText-Medium.ufo/glyphs/O_D_oubleM_onocular-cy.glif new file mode 100644 index 00000000..5374b6ba --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/O_D_oubleM_onocular-cy.glif @@ -0,0 +1,119 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + com.fontlab.recipe + DoubleO-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/O_E_.glif b/sources/FixelText-Medium.ufo/glyphs/O_E_.glif new file mode 100644 index 00000000..ea6a0be3 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/O_E_.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + E + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/O_M_onocular-cy.glif b/sources/FixelText-Medium.ufo/glyphs/O_M_onocular-cy.glif new file mode 100644 index 00000000..510f16c2 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/O_M_onocular-cy.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/O_acute.glif b/sources/FixelText-Medium.ufo/glyphs/O_acute.glif new file mode 100644 index 00000000..e45a1914 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/O_acute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+acute.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/O_barcyr.glif b/sources/FixelText-Medium.ufo/glyphs/O_barcyr.glif new file mode 100644 index 00000000..3690472e --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/O_barcyr.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + r() + com.fontlab.metricsRight + O + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/O_bardieresiscyr.glif b/sources/FixelText-Medium.ufo/glyphs/O_bardieresiscyr.glif new file mode 100644 index 00000000..e133b1a5 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/O_bardieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Obarcyr+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/O_breve.glif b/sources/FixelText-Medium.ufo/glyphs/O_breve.glif new file mode 100644 index 00000000..04bb7316 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/O_breve.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+breve.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/O_circumflex.glif b/sources/FixelText-Medium.ufo/glyphs/O_circumflex.glif new file mode 100644 index 00000000..a46315e9 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/O_circumflex.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+circumflex.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/O_dieresis.glif b/sources/FixelText-Medium.ufo/glyphs/O_dieresis.glif new file mode 100644 index 00000000..c08103c2 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/O_dieresis.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+dieresis.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/O_dieresiscyr.glif b/sources/FixelText-Medium.ufo/glyphs/O_dieresiscyr.glif new file mode 100644 index 00000000..5dc635c9 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/O_dieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/O_grave.glif b/sources/FixelText-Medium.ufo/glyphs/O_grave.glif new file mode 100644 index 00000000..6b9cfd7e --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/O_grave.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+grave.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/O_hungarumlaut.glif b/sources/FixelText-Medium.ufo/glyphs/O_hungarumlaut.glif new file mode 100644 index 00000000..6d9d7b1a --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/O_hungarumlaut.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+hungarumlaut.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/O_macron.glif b/sources/FixelText-Medium.ufo/glyphs/O_macron.glif new file mode 100644 index 00000000..081c6a95 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/O_macron.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+macron.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/O_mega.glif b/sources/FixelText-Medium.ufo/glyphs/O_mega.glif new file mode 100644 index 00000000..2c6877f2 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/O_mega.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O+10 + com.fontlab.metricsRight + O+10 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/O_megaB_road-cy.glif b/sources/FixelText-Medium.ufo/glyphs/O_megaB_road-cy.glif new file mode 100644 index 00000000..61698821 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/O_megaB_road-cy.glif @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O+10 + com.fontlab.metricsRight + O+10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/O_megacyr.glif b/sources/FixelText-Medium.ufo/glyphs/O_megacyr.glif new file mode 100644 index 00000000..1a8b47ab --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/O_megacyr.glif @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O+10 + com.fontlab.metricsRight + O+10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/O_megaroundcyr.glif b/sources/FixelText-Medium.ufo/glyphs/O_megaroundcyr.glif new file mode 100644 index 00000000..5dfbb3d3 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/O_megaroundcyr.glif @@ -0,0 +1,81 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/O_megatitlocyr.glif b/sources/FixelText-Medium.ufo/glyphs/O_megatitlocyr.glif new file mode 100644 index 00000000..376a0987 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/O_megatitlocyr.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O+10 + com.fontlab.metricsRight + O+10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/O_slash.glif b/sources/FixelText-Medium.ufo/glyphs/O_slash.glif new file mode 100644 index 00000000..ea5c51d5 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/O_slash.glif @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/O_slashacute.glif b/sources/FixelText-Medium.ufo/glyphs/O_slashacute.glif new file mode 100644 index 00000000..c3e05f5a --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/O_slashacute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Oslash+acute.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/O_tcyr.glif b/sources/FixelText-Medium.ufo/glyphs/O_tcyr.glif new file mode 100644 index 00000000..22fa4e87 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/O_tcyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Omegacyr+uni2DEE.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/O_tilde.glif b/sources/FixelText-Medium.ufo/glyphs/O_tilde.glif new file mode 100644 index 00000000..c0b69544 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/O_tilde.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+tilde.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/P_.glif b/sources/FixelText-Medium.ufo/glyphs/P_.glif new file mode 100644 index 00000000..0ab186f2 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/P_.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/P_alochkacyr.glif b/sources/FixelText-Medium.ufo/glyphs/P_alochkacyr.glif new file mode 100644 index 00000000..e3fedd6f --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/P_alochkacyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/P_e-cy.glif b/sources/FixelText-Medium.ufo/glyphs/P_e-cy.glif new file mode 100644 index 00000000..fdc0a51c --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/P_e-cy.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/P_ehookcyr.glif b/sources/FixelText-Medium.ufo/glyphs/P_ehookcyr.glif new file mode 100644 index 00000000..1c4f7cfe --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/P_ehookcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + П + com.fontlab.metricsRight + Shhacyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/P_etailcyr.glif b/sources/FixelText-Medium.ufo/glyphs/P_etailcyr.glif new file mode 100644 index 00000000..7f6d164a --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/P_etailcyr.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/P_sicyr.glif b/sources/FixelText-Medium.ufo/glyphs/P_sicyr.glif new file mode 100644 index 00000000..99b988b4 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/P_sicyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + U-20 + com.fontlab.metricsRight + U-20 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/Q_.glif b/sources/FixelText-Medium.ufo/glyphs/Q_.glif new file mode 100644 index 00000000..f188e0d8 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/Q_.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/Q_.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/Q_.ss01.glif new file mode 100644 index 00000000..3daaf165 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/Q_.ss01.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/Q_acyr.glif b/sources/FixelText-Medium.ufo/glyphs/Q_acyr.glif new file mode 100644 index 00000000..1be611ce --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/Q_acyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Q + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/R_.glif b/sources/FixelText-Medium.ufo/glyphs/R_.glif new file mode 100644 index 00000000..49c599f4 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/R_.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/R_acute.glif b/sources/FixelText-Medium.ufo/glyphs/R_acute.glif new file mode 100644 index 00000000..edb35e9e --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/R_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + R+acute.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/R_caron.glif b/sources/FixelText-Medium.ufo/glyphs/R_caron.glif new file mode 100644 index 00000000..71b9e447 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/R_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + R+caron.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/R_commaaccent.glif b/sources/FixelText-Medium.ufo/glyphs/R_commaaccent.glif new file mode 100644 index 00000000..09ab497d --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/R_commaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + R+commaaccentcomb + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/R_eversedzecyr.glif b/sources/FixelText-Medium.ufo/glyphs/R_eversedzecyr.glif new file mode 100644 index 00000000..fb41736c --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/R_eversedzecyr.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + + com.fontlab.metricsRight + + com.fontlab.recipe + З + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/R_hacyr.glif b/sources/FixelText-Medium.ufo/glyphs/R_hacyr.glif new file mode 100644 index 00000000..e67bec7e --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/R_hacyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + P + com.fontlab.metricsRight + X + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/S_.glif b/sources/FixelText-Medium.ufo/glyphs/S_.glif new file mode 100644 index 00000000..339e1f0b --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/S_.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/S_acute.glif b/sources/FixelText-Medium.ufo/glyphs/S_acute.glif new file mode 100644 index 00000000..ea4714c7 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/S_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + S+acute.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/S_caron.glif b/sources/FixelText-Medium.ufo/glyphs/S_caron.glif new file mode 100644 index 00000000..9eec9554 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/S_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + S+caron.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/S_cedilla.glif b/sources/FixelText-Medium.ufo/glyphs/S_cedilla.glif new file mode 100644 index 00000000..5f2323ef --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/S_cedilla.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + S+cedilla + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/S_chwa.glif b/sources/FixelText-Medium.ufo/glyphs/S_chwa.glif new file mode 100644 index 00000000..fb63188c --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/S_chwa.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Schwacyr + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/S_chwacyr.glif b/sources/FixelText-Medium.ufo/glyphs/S_chwacyr.glif new file mode 100644 index 00000000..57a20862 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/S_chwacyr.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O-10 + com.fontlab.metricsRight + O + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/S_chwadieresiscyr.glif b/sources/FixelText-Medium.ufo/glyphs/S_chwadieresiscyr.glif new file mode 100644 index 00000000..f38ee76f --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/S_chwadieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Schwacyr+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/S_circumflex.glif b/sources/FixelText-Medium.ufo/glyphs/S_circumflex.glif new file mode 100644 index 00000000..1c9a3e4b --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/S_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + S+circumflex.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/S_commaaccent.glif b/sources/FixelText-Medium.ufo/glyphs/S_commaaccent.glif new file mode 100644 index 00000000..d04d8f63 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/S_commaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + S+commaaccentcomb + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/S_emisoftcyr.glif b/sources/FixelText-Medium.ufo/glyphs/S_emisoftcyr.glif new file mode 100644 index 00000000..5439ab2b --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/S_emisoftcyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Yat + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/S_ha-cy.glif b/sources/FixelText-Medium.ufo/glyphs/S_ha-cy.glif new file mode 100644 index 00000000..7b11e6d0 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/S_ha-cy.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/S_hcha-cy.glif b/sources/FixelText-Medium.ufo/glyphs/S_hcha-cy.glif new file mode 100644 index 00000000..932ee9f9 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/S_hcha-cy.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Д + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/S_hhacyr.glif b/sources/FixelText-Medium.ufo/glyphs/S_hhacyr.glif new file mode 100644 index 00000000..538b3b0e --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/S_hhacyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.metricsLeft + Н + com.fontlab.metricsRight + Tshecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/S_hhatailcyr.glif b/sources/FixelText-Medium.ufo/glyphs/S_hhatailcyr.glif new file mode 100644 index 00000000..4b0e0d01 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/S_hhatailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/S_hwe-cy.glif b/sources/FixelText-Medium.ufo/glyphs/S_hwe-cy.glif new file mode 100644 index 00000000..640a9131 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/S_hwe-cy.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Щ + com.fontlab.metricsRight + Щ-20 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/S_jekomicyr.glif b/sources/FixelText-Medium.ufo/glyphs/S_jekomicyr.glif new file mode 100644 index 00000000..ba5d5610 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/S_jekomicyr.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + |Schwa + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/S_oftsign-cy.glif b/sources/FixelText-Medium.ufo/glyphs/S_oftsign-cy.glif new file mode 100644 index 00000000..8756eb76 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/S_oftsign-cy.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + P + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/T_.glif b/sources/FixelText-Medium.ufo/glyphs/T_.glif new file mode 100644 index 00000000..b8724363 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/T_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/T_bar.glif b/sources/FixelText-Medium.ufo/glyphs/T_bar.glif new file mode 100644 index 00000000..6387d781 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/T_bar.glif @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/T_caron.glif b/sources/FixelText-Medium.ufo/glyphs/T_caron.glif new file mode 100644 index 00000000..539c0013 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/T_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + T+caron.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/T_cedilla.glif b/sources/FixelText-Medium.ufo/glyphs/T_cedilla.glif new file mode 100644 index 00000000..bb7e1a18 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/T_cedilla.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + T+cedilla + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/T_che-cy.glif b/sources/FixelText-Medium.ufo/glyphs/T_che-cy.glif new file mode 100644 index 00000000..6b7d5075 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/T_che-cy.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Tetsecyr-20 + com.fontlab.metricsRight + Ч + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/T_commaaccent.glif b/sources/FixelText-Medium.ufo/glyphs/T_commaaccent.glif new file mode 100644 index 00000000..191664d2 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/T_commaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + T+commaaccentcomb + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/T_e-cy.glif b/sources/FixelText-Medium.ufo/glyphs/T_e-cy.glif new file mode 100644 index 00000000..36c23bf5 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/T_e-cy.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + com.fontlab.recipe + T + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/T_eW_ithM_iddleH_ook-cy.glif b/sources/FixelText-Medium.ufo/glyphs/T_eW_ithM_iddleH_ook-cy.glif new file mode 100644 index 00000000..c47c8849 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/T_eW_ithM_iddleH_ook-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Djecyr + com.fontlab.metricsRight + Gehookcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/T_etailcyr.glif b/sources/FixelText-Medium.ufo/glyphs/T_etailcyr.glif new file mode 100644 index 00000000..ec594b5f --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/T_etailcyr.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/T_etsecyr.glif b/sources/FixelText-Medium.ufo/glyphs/T_etsecyr.glif new file mode 100644 index 00000000..3d5cd587 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/T_etsecyr.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Tshecyr + com.fontlab.metricsRight + Ц + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/T_horn.glif b/sources/FixelText-Medium.ufo/glyphs/T_horn.glif new file mode 100644 index 00000000..0c1d9a4a --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/T_horn.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + P + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/T_jekomicyr.glif b/sources/FixelText-Medium.ufo/glyphs/T_jekomicyr.glif new file mode 100644 index 00000000..81e29786 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/T_jekomicyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + Njekomicyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/T_se-cy.glif b/sources/FixelText-Medium.ufo/glyphs/T_se-cy.glif new file mode 100644 index 00000000..75ebd399 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/T_se-cy.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Д + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/T_seR_eversed-cy.glif b/sources/FixelText-Medium.ufo/glyphs/T_seR_eversed-cy.glif new file mode 100644 index 00000000..466bb324 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/T_seR_eversed-cy.glif @@ -0,0 +1,20 @@ + + + + + + + + + + com.fontlab.metricsLeft + + com.fontlab.metricsRight + H + com.fontlab.recipe + Ц + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/T_shecyr.glif b/sources/FixelText-Medium.ufo/glyphs/T_shecyr.glif new file mode 100644 index 00000000..706e5906 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/T_shecyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + n + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/T_sse-cy.glif b/sources/FixelText-Medium.ufo/glyphs/T_sse-cy.glif new file mode 100644 index 00000000..f8b1bfb5 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/T_sse-cy.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + T + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/T_swe-cy.glif b/sources/FixelText-Medium.ufo/glyphs/T_swe-cy.glif new file mode 100644 index 00000000..21aea015 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/T_swe-cy.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Shwe-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/T_we-cy.glif b/sources/FixelText-Medium.ufo/glyphs/T_we-cy.glif new file mode 100644 index 00000000..c6256f5e --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/T_we-cy.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + T + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/U_-cy.accented.glif b/sources/FixelText-Medium.ufo/glyphs/U_-cy.accented.glif new file mode 100644 index 00000000..0da92eaa --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/U_-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + У+acute.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/U_-cy.glif b/sources/FixelText-Medium.ufo/glyphs/U_-cy.glif new file mode 100644 index 00000000..8daebd97 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/U_-cy.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Y+10 + com.fontlab.metricsRight + Y+5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/U_-cy.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/U_-cy.ss01.glif new file mode 100644 index 00000000..7a69faa1 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/U_-cy.ss01.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/U_.glif b/sources/FixelText-Medium.ufo/glyphs/U_.glif new file mode 100644 index 00000000..1d1e0797 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/U_.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H-10 + com.fontlab.metricsRight + H-10 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/U_acute.glif b/sources/FixelText-Medium.ufo/glyphs/U_acute.glif new file mode 100644 index 00000000..d94ff140 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/U_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+acute.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/U_acutedblcyr.glif b/sources/FixelText-Medium.ufo/glyphs/U_acutedblcyr.glif new file mode 100644 index 00000000..091df4db --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/U_acutedblcyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U-cy+hungarumlaut.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/U_breve.glif b/sources/FixelText-Medium.ufo/glyphs/U_breve.glif new file mode 100644 index 00000000..b54bd741 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/U_breve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+breve.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/U_circumflex.glif b/sources/FixelText-Medium.ufo/glyphs/U_circumflex.glif new file mode 100644 index 00000000..f7407608 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/U_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+circumflex.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/U_dieresis.glif b/sources/FixelText-Medium.ufo/glyphs/U_dieresis.glif new file mode 100644 index 00000000..b0d5a285 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/U_dieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+dieresis.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/U_dieresiscyr.glif b/sources/FixelText-Medium.ufo/glyphs/U_dieresiscyr.glif new file mode 100644 index 00000000..766aa31b --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/U_dieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/U_grave.glif b/sources/FixelText-Medium.ufo/glyphs/U_grave.glif new file mode 100644 index 00000000..69cef8bf --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/U_grave.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+grave.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/U_hungarumlaut.glif b/sources/FixelText-Medium.ufo/glyphs/U_hungarumlaut.glif new file mode 100644 index 00000000..31f586d0 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/U_hungarumlaut.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+hungarumlaut.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/U_kM_onograph-cy.glif b/sources/FixelText-Medium.ufo/glyphs/U_kM_onograph-cy.glif new file mode 100644 index 00000000..ed53852a --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/U_kM_onograph-cy.glif @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/U_kcyr.glif b/sources/FixelText-Medium.ufo/glyphs/U_kcyr.glif new file mode 100644 index 00000000..6034ec35 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/U_kcyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + y + com.fontlab.recipe + О_у + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/U_macron.glif b/sources/FixelText-Medium.ufo/glyphs/U_macron.glif new file mode 100644 index 00000000..a6fc97f8 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/U_macron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+macron.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/U_macroncyr.glif b/sources/FixelText-Medium.ufo/glyphs/U_macroncyr.glif new file mode 100644 index 00000000..2a68c81c --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/U_macroncyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U-cy+macron.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/U_ogonek.glif b/sources/FixelText-Medium.ufo/glyphs/U_ogonek.glif new file mode 100644 index 00000000..ffe96a70 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/U_ogonek.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + U+ogonek + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/U_ring.glif b/sources/FixelText-Medium.ufo/glyphs/U_ring.glif new file mode 100644 index 00000000..99ab90a2 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/U_ring.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+ring.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/U_short-cy.glif b/sources/FixelText-Medium.ufo/glyphs/U_short-cy.glif new file mode 100644 index 00000000..75c89870 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/U_short-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ucyr+breve.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/U_short-cy.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/U_short-cy.ss01.glif new file mode 100644 index 00000000..29793ee9 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/U_short-cy.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ucyr.ss01+breve.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/U_straightcyr.glif b/sources/FixelText-Medium.ufo/glyphs/U_straightcyr.glif new file mode 100644 index 00000000..c9e0846e --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/U_straightcyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsRight + Y + com.fontlab.recipe + Y + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/U_straightstrokecyr.glif b/sources/FixelText-Medium.ufo/glyphs/U_straightstrokecyr.glif new file mode 100644 index 00000000..5d82002b --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/U_straightstrokecyr.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/U_tilde.glif b/sources/FixelText-Medium.ufo/glyphs/U_tilde.glif new file mode 100644 index 00000000..10702a04 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/U_tilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+tilde.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/V_.glif b/sources/FixelText-Medium.ufo/glyphs/V_.glif new file mode 100644 index 00000000..b202d70b --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/V_.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/V_.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/V_.ss01.glif new file mode 100644 index 00000000..4ebd0eef --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/V_.ss01.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/V_e-cy.glif b/sources/FixelText-Medium.ufo/glyphs/V_e-cy.glif new file mode 100644 index 00000000..69afd56f --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/V_e-cy.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + B + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/W_.glif b/sources/FixelText-Medium.ufo/glyphs/W_.glif new file mode 100644 index 00000000..381e5f58 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/W_.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/W_.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/W_.ss01.glif new file mode 100644 index 00000000..65f67a64 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/W_.ss01.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |A + com.fontlab.metricsRight + |A + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/W_acute.glif b/sources/FixelText-Medium.ufo/glyphs/W_acute.glif new file mode 100644 index 00000000..7b0c6007 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/W_acute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W+acute.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/W_acute.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/W_acute.ss01.glif new file mode 100644 index 00000000..1fb4c96a --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/W_acute.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W.ss01+acute.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/W_circumflex.glif b/sources/FixelText-Medium.ufo/glyphs/W_circumflex.glif new file mode 100644 index 00000000..d7fcf4bd --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/W_circumflex.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W+circumflex.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/W_circumflex.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/W_circumflex.ss01.glif new file mode 100644 index 00000000..7d12cba4 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/W_circumflex.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W.ss01+circumflex.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/W_dieresis.glif b/sources/FixelText-Medium.ufo/glyphs/W_dieresis.glif new file mode 100644 index 00000000..f66090fd --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/W_dieresis.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + W+dieresis.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/W_dieresis.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/W_dieresis.ss01.glif new file mode 100644 index 00000000..8ce0afbb --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/W_dieresis.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W.ss01+dieresis.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/W_ecyr.glif b/sources/FixelText-Medium.ufo/glyphs/W_ecyr.glif new file mode 100644 index 00000000..e352a883 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/W_ecyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/W_grave.glif b/sources/FixelText-Medium.ufo/glyphs/W_grave.glif new file mode 100644 index 00000000..219d743f --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/W_grave.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W+grave.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/W_grave.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/W_grave.ss01.glif new file mode 100644 index 00000000..cc73a2a3 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/W_grave.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W.ss01+grave.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/X_.glif b/sources/FixelText-Medium.ufo/glyphs/X_.glif new file mode 100644 index 00000000..a24d2f36 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/X_.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/X_.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/X_.ss01.glif new file mode 100644 index 00000000..6fde0f24 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/X_.ss01.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/X_atailcyr.glif b/sources/FixelText-Medium.ufo/glyphs/X_atailcyr.glif new file mode 100644 index 00000000..c0611e1d --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/X_atailcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + X + com.fontlab.metricsRight + Katailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/Y_.glif b/sources/FixelText-Medium.ufo/glyphs/Y_.glif new file mode 100644 index 00000000..c4a29a4b --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/Y_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/Y_.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/Y_.ss01.glif new file mode 100644 index 00000000..95fd734d --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/Y_.ss01.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/Y_acute.glif b/sources/FixelText-Medium.ufo/glyphs/Y_acute.glif new file mode 100644 index 00000000..da0ad66a --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/Y_acute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y+acute.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/Y_acute.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/Y_acute.ss01.glif new file mode 100644 index 00000000..e6b5f7f2 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/Y_acute.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y.ss01+acute.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/Y_aecyr.glif b/sources/FixelText-Medium.ufo/glyphs/Y_aecyr.glif new file mode 100644 index 00000000..9de6666c --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/Y_aecyr.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Я + com.fontlab.metricsRight + E + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/Y_atI_otified-cy.glif b/sources/FixelText-Medium.ufo/glyphs/Y_atI_otified-cy.glif new file mode 100644 index 00000000..e9846ec5 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/Y_atI_otified-cy.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + com.fontlab.metricsRight + Yatcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/Y_atcyr.glif b/sources/FixelText-Medium.ufo/glyphs/Y_atcyr.glif new file mode 100644 index 00000000..06eacf3d --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/Y_atcyr.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Т + com.fontlab.metricsRight + Ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/Y_circumflex.glif b/sources/FixelText-Medium.ufo/glyphs/Y_circumflex.glif new file mode 100644 index 00000000..fde8d29d --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/Y_circumflex.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y+circumflex.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/Y_circumflex.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/Y_circumflex.ss01.glif new file mode 100644 index 00000000..1f46051a --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/Y_circumflex.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y.ss01+circumflex.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/Y_dieresis.glif b/sources/FixelText-Medium.ufo/glyphs/Y_dieresis.glif new file mode 100644 index 00000000..28279d86 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/Y_dieresis.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y+dieresis.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/Y_dieresis.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/Y_dieresis.ss01.glif new file mode 100644 index 00000000..9b0a9520 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/Y_dieresis.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y.ss01+dieresis.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/Y_erN_eutral-cy.glif b/sources/FixelText-Medium.ufo/glyphs/Y_erN_eutral-cy.glif new file mode 100644 index 00000000..9d09abbb --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/Y_erN_eutral-cy.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Hardsign-cy + com.fontlab.metricsRight + Ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/Y_eru-cy.accented.glif b/sources/FixelText-Medium.ufo/glyphs/Y_eru-cy.accented.glif new file mode 100644 index 00000000..dab825ec --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/Y_eru-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ы+acute.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/Y_eru-cy.glif b/sources/FixelText-Medium.ufo/glyphs/Y_eru-cy.glif new file mode 100644 index 00000000..c1785318 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/Y_eru-cy.glif @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/Y_eru-cymacron.glif b/sources/FixelText-Medium.ufo/glyphs/Y_eru-cymacron.glif new file mode 100644 index 00000000..f25fa0aa --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/Y_eru-cymacron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ы+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/Y_eruB_ackY_er-cy.glif b/sources/FixelText-Medium.ufo/glyphs/Y_eruB_ackY_er-cy.glif new file mode 100644 index 00000000..16b86066 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/Y_eruB_ackY_er-cy.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Hardsign + com.fontlab.metricsRight + I + com.fontlab.recipe + Hardsign-cy_I + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/Y_i-cy.glif b/sources/FixelText-Medium.ufo/glyphs/Y_i-cy.glif new file mode 100644 index 00000000..7d10997d --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/Y_i-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Idieresis + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/Y_longdieresiscyr.glif b/sources/FixelText-Medium.ufo/glyphs/Y_longdieresiscyr.glif new file mode 100644 index 00000000..44efb7f6 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/Y_longdieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Yeru-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/Y_n-cy.glif b/sources/FixelText-Medium.ufo/glyphs/Y_n-cy.glif new file mode 100644 index 00000000..0efc74d0 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/Y_n-cy.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |Izhitsa + com.fontlab.metricsRight + |Izhitsa + com.fontlab.recipe + Izhitsa + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/Y_uR_eversed-cy.glif b/sources/FixelText-Medium.ufo/glyphs/Y_uR_eversed-cy.glif new file mode 100644 index 00000000..fc2a13b4 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/Y_uR_eversed-cy.glif @@ -0,0 +1,20 @@ + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + H + com.fontlab.recipe + Ю + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/Y_usB_lended-cy.glif b/sources/FixelText-Medium.ufo/glyphs/Y_usB_lended-cy.glif new file mode 100644 index 00000000..cfb0896c --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/Y_usB_lended-cy.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Yusbigcyr + com.fontlab.metricsRight + Yusbigcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/Y_usC_losedlittle-cy.glif b/sources/FixelText-Medium.ufo/glyphs/Y_usC_losedlittle-cy.glif new file mode 100644 index 00000000..c278995d --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/Y_usC_losedlittle-cy.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + A + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/Y_usbigcyr.glif b/sources/FixelText-Medium.ufo/glyphs/Y_usbigcyr.glif new file mode 100644 index 00000000..5a8325af --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/Y_usbigcyr.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ж + com.fontlab.metricsRight + Ж + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/Y_usbigiotifiedcyr.glif b/sources/FixelText-Medium.ufo/glyphs/Y_usbigiotifiedcyr.glif new file mode 100644 index 00000000..58711ae9 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/Y_usbigiotifiedcyr.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + Ж + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/Y_usiotifiedC_losedL_ittle-cy.glif b/sources/FixelText-Medium.ufo/glyphs/Y_usiotifiedC_losedL_ittle-cy.glif new file mode 100644 index 00000000..efe5b569 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/Y_usiotifiedC_losedL_ittle-cy.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + A + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/Y_uslittlecyr.glif b/sources/FixelText-Medium.ufo/glyphs/Y_uslittlecyr.glif new file mode 100644 index 00000000..09822d1b --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/Y_uslittlecyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + А-5 + com.fontlab.metricsRight + А-5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/Y_uslittleiotifiedcyr.glif b/sources/FixelText-Medium.ufo/glyphs/Y_uslittleiotifiedcyr.glif new file mode 100644 index 00000000..ad6b9a3b --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/Y_uslittleiotifiedcyr.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + А-5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/Z_.glif b/sources/FixelText-Medium.ufo/glyphs/Z_.glif new file mode 100644 index 00000000..99671125 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/Z_.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/Z_.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/Z_.ss01.glif new file mode 100644 index 00000000..8b79fef3 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/Z_.ss01.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/Z_acute.glif b/sources/FixelText-Medium.ufo/glyphs/Z_acute.glif new file mode 100644 index 00000000..6e3ad681 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/Z_acute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Z+acute.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/Z_acute.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/Z_acute.ss01.glif new file mode 100644 index 00000000..e791c2af --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/Z_acute.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Z.ss01+acute.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/Z_caron.glif b/sources/FixelText-Medium.ufo/glyphs/Z_caron.glif new file mode 100644 index 00000000..b678cb6f --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/Z_caron.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Z+caron.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/Z_caron.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/Z_caron.ss01.glif new file mode 100644 index 00000000..8d5d4123 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/Z_caron.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Z.ss01+caron.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/Z_dotaccent.glif b/sources/FixelText-Medium.ufo/glyphs/Z_dotaccent.glif new file mode 100644 index 00000000..d2cee92e --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/Z_dotaccent.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Z+dotaccent.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/Z_dotaccent.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/Z_dotaccent.ss01.glif new file mode 100644 index 00000000..32348a92 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/Z_dotaccent.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Z.ss01+dotaccent.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/Z_e-cy.glif b/sources/FixelText-Medium.ufo/glyphs/Z_e-cy.glif new file mode 100644 index 00000000..e2c86e03 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/Z_e-cy.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |C + com.fontlab.metricsRight + B + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/Z_edieresiscyr.glif b/sources/FixelText-Medium.ufo/glyphs/Z_edieresiscyr.glif new file mode 100644 index 00000000..1188d60c --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/Z_edieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ze-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/Z_emlya-cy.glif b/sources/FixelText-Medium.ufo/glyphs/Z_emlya-cy.glif new file mode 100644 index 00000000..e3449ccd --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/Z_emlya-cy.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Z-10 + com.fontlab.metricsRight + Z + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/Z_etailcyr.B_S_H_.glif b/sources/FixelText-Medium.ufo/glyphs/Z_etailcyr.B_S_H_.glif new file mode 100644 index 00000000..08d64987 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/Z_etailcyr.B_S_H_.glif @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + З + com.fontlab.metricsRight + З + com.fontlab.recipe + Zetailcyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/Z_etailcyr.glif b/sources/FixelText-Medium.ufo/glyphs/Z_etailcyr.glif new file mode 100644 index 00000000..2afe8441 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/Z_etailcyr.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + З + com.fontlab.metricsRight + З + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/Z_he-cy.glif b/sources/FixelText-Medium.ufo/glyphs/Z_he-cy.glif new file mode 100644 index 00000000..eef6171c --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/Z_he-cy.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |K + com.fontlab.metricsRight + K + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/Z_he-cy.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/Z_he-cy.ss01.glif new file mode 100644 index 00000000..e682b1a5 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/Z_he-cy.ss01.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |K + com.fontlab.metricsRight + K + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/Z_hebrevecyr.glif b/sources/FixelText-Medium.ufo/glyphs/Z_hebrevecyr.glif new file mode 100644 index 00000000..e1555f05 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/Z_hebrevecyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Zhe-cy+breve.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/Z_hedieresiscyr.glif b/sources/FixelText-Medium.ufo/glyphs/Z_hedieresiscyr.glif new file mode 100644 index 00000000..156a4443 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/Z_hedieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Zhe-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/Z_hetailcyr.glif b/sources/FixelText-Medium.ufo/glyphs/Z_hetailcyr.glif new file mode 100644 index 00000000..26b709b8 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/Z_hetailcyr.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ж + com.fontlab.metricsRight + Katailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/Z_hwe-cy.glif b/sources/FixelText-Medium.ufo/glyphs/Z_hwe-cy.glif new file mode 100644 index 00000000..4595d177 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/Z_hwe-cy.glif @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + З + com.fontlab.metricsRight + Ж + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/Z_jekomicyr.glif b/sources/FixelText-Medium.ufo/glyphs/Z_jekomicyr.glif new file mode 100644 index 00000000..267964db --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/Z_jekomicyr.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Dzjekomicyr + com.fontlab.metricsRight + Njekomicyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/_notdef.glif b/sources/FixelText-Medium.ufo/glyphs/_notdef.glif new file mode 100644 index 00000000..7261060b --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/_notdef.glif @@ -0,0 +1,178 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + =55 + com.schriftgestaltung.Glyphs.rightMetricsKey + =55 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/_perc-circule.glif b/sources/FixelText-Medium.ufo/glyphs/_perc-circule.glif new file mode 100644 index 00000000..1c9310af --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/_perc-circule.glif @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.schriftgestaltung.Glyphs.Export + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/a-cy.accented.glif b/sources/FixelText-Medium.ufo/glyphs/a-cy.accented.glif new file mode 100644 index 00000000..248ab3cf --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/a-cy.accented.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+acute + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/a-cy.glif b/sources/FixelText-Medium.ufo/glyphs/a-cy.glif new file mode 100644 index 00000000..5197cad8 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/a-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/a-cy.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/a-cy.ss01.glif new file mode 100644 index 00000000..817c2e61 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/a-cy.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/a.glif b/sources/FixelText-Medium.ufo/glyphs/a.glif new file mode 100644 index 00000000..7e8a5308 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/a.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + n-10 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/a.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/a.ss01.glif new file mode 100644 index 00000000..f1d82675 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/a.ss01.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/aacute.glif b/sources/FixelText-Medium.ufo/glyphs/aacute.glif new file mode 100644 index 00000000..8ea06eaa --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/aacute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+acute + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/aacute.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/aacute.ss01.glif new file mode 100644 index 00000000..e952c7c8 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/aacute.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+acute + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/abreve.glif b/sources/FixelText-Medium.ufo/glyphs/abreve.glif new file mode 100644 index 00000000..78e45577 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/abreve.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+breve + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/abreve.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/abreve.ss01.glif new file mode 100644 index 00000000..ea77c974 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/abreve.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+breve + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/abrevecyr.glif b/sources/FixelText-Medium.ufo/glyphs/abrevecyr.glif new file mode 100644 index 00000000..d1b2fcb4 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/abrevecyr.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+breve + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/acaron.glif b/sources/FixelText-Medium.ufo/glyphs/acaron.glif new file mode 100644 index 00000000..ed2c7c28 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/acaron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+caron + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/acircumflex.glif b/sources/FixelText-Medium.ufo/glyphs/acircumflex.glif new file mode 100644 index 00000000..9ad85666 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/acircumflex.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+circumflex + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/acircumflex.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/acircumflex.ss01.glif new file mode 100644 index 00000000..fce531a5 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/acircumflex.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+circumflex + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/acute.case.glif b/sources/FixelText-Medium.ufo/glyphs/acute.case.glif new file mode 100644 index 00000000..625aa0ad --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/acute.case.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/acute.glif b/sources/FixelText-Medium.ufo/glyphs/acute.glif new file mode 100644 index 00000000..39e1d9e7 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/acute.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/adieresis.glif b/sources/FixelText-Medium.ufo/glyphs/adieresis.glif new file mode 100644 index 00000000..46f033c6 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/adieresis.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+dieresis + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/adieresis.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/adieresis.ss01.glif new file mode 100644 index 00000000..03d72937 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/adieresis.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+dieresis + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/adieresiscyr.glif b/sources/FixelText-Medium.ufo/glyphs/adieresiscyr.glif new file mode 100644 index 00000000..0460c542 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/adieresiscyr.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/ae.glif b/sources/FixelText-Medium.ufo/glyphs/ae.glif new file mode 100644 index 00000000..da37b583 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/ae.glif @@ -0,0 +1,101 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + a + com.fontlab.metricsRight + e + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/ae.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/ae.ss01.glif new file mode 100644 index 00000000..7780701c --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/ae.ss01.glif @@ -0,0 +1,96 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + a + com.fontlab.metricsRight + e.ss01 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/aeacute.glif b/sources/FixelText-Medium.ufo/glyphs/aeacute.glif new file mode 100644 index 00000000..6881a763 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/aeacute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ae+acute + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/agrave.glif b/sources/FixelText-Medium.ufo/glyphs/agrave.glif new file mode 100644 index 00000000..98a6d160 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/agrave.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+grave + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/agrave.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/agrave.ss01.glif new file mode 100644 index 00000000..9e19495e --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/agrave.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+grave + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/aiecyr.glif b/sources/FixelText-Medium.ufo/glyphs/aiecyr.glif new file mode 100644 index 00000000..d7f0feff --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/aiecyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ae + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/amacron.glif b/sources/FixelText-Medium.ufo/glyphs/amacron.glif new file mode 100644 index 00000000..ea003faf --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/amacron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+macron + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/amacron.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/amacron.ss01.glif new file mode 100644 index 00000000..9a4a8125 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/amacron.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+macron + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/ampersand.glif b/sources/FixelText-Medium.ufo/glyphs/ampersand.glif new file mode 100644 index 00000000..7f4330ca --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/ampersand.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/aogonek.glif b/sources/FixelText-Medium.ufo/glyphs/aogonek.glif new file mode 100644 index 00000000..1fa09e07 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/aogonek.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+ogonek + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/aogonek.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/aogonek.ss01.glif new file mode 100644 index 00000000..1ac030d0 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/aogonek.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+ogonek + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/apostrophemod.glif b/sources/FixelText-Medium.ufo/glyphs/apostrophemod.glif new file mode 100644 index 00000000..770f4911 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/apostrophemod.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + apostrophe + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/approxequal.glif b/sources/FixelText-Medium.ufo/glyphs/approxequal.glif new file mode 100644 index 00000000..e1b0f062 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/approxequal.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/aring.glif b/sources/FixelText-Medium.ufo/glyphs/aring.glif new file mode 100644 index 00000000..17f08bef --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/aring.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+ring + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/aring.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/aring.ss01.glif new file mode 100644 index 00000000..679ab8d4 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/aring.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+ring + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/arrowdown.case.glif b/sources/FixelText-Medium.ufo/glyphs/arrowdown.case.glif new file mode 100644 index 00000000..187fe706 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/arrowdown.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + arrowup + com.fontlab.metricsRight + arrowup + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/arrowdown.glif b/sources/FixelText-Medium.ufo/glyphs/arrowdown.glif new file mode 100644 index 00000000..e47aaa5a --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/arrowdown.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + arrowup + com.fontlab.metricsRight + arrowup + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/arrowdown.ss01.case.glif b/sources/FixelText-Medium.ufo/glyphs/arrowdown.ss01.case.glif new file mode 100644 index 00000000..11d34a97 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/arrowdown.ss01.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + arrowup + com.fontlab.metricsRight + arrowup + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/arrowdown.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/arrowdown.ss01.glif new file mode 100644 index 00000000..c77ef8b6 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/arrowdown.ss01.glif @@ -0,0 +1,15 @@ + + + + + + + + + com.fontlab.metricsLeft + arrowup + com.fontlab.metricsRight + arrowup + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/arrowleft.case.glif b/sources/FixelText-Medium.ufo/glyphs/arrowleft.case.glif new file mode 100644 index 00000000..0ba74fab --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/arrowleft.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + arrowleft + com.fontlab.metricsRight + arrowleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/arrowleft.glif b/sources/FixelText-Medium.ufo/glyphs/arrowleft.glif new file mode 100644 index 00000000..ee9e3e9b --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/arrowleft.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/arrowleft.ss01.case.glif b/sources/FixelText-Medium.ufo/glyphs/arrowleft.ss01.case.glif new file mode 100644 index 00000000..769d963b --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/arrowleft.ss01.case.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + arrowleft + com.fontlab.metricsRight + arrowleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/arrowleft.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/arrowleft.ss01.glif new file mode 100644 index 00000000..8b31d2c4 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/arrowleft.ss01.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + arrowleft + com.fontlab.metricsRight + arrowleft + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/arrowright.case.glif b/sources/FixelText-Medium.ufo/glyphs/arrowright.case.glif new file mode 100644 index 00000000..9ac1554b --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/arrowright.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |arrowleft + com.fontlab.metricsRight + |arrowleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/arrowright.glif b/sources/FixelText-Medium.ufo/glyphs/arrowright.glif new file mode 100644 index 00000000..2ab3d932 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/arrowright.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + |arrowleft + com.fontlab.metricsRight + |arrowleft + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/arrowright.ss01.case.glif b/sources/FixelText-Medium.ufo/glyphs/arrowright.ss01.case.glif new file mode 100644 index 00000000..9bb79e63 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/arrowright.ss01.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |arrowleft + com.fontlab.metricsRight + |arrowleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/arrowright.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/arrowright.ss01.glif new file mode 100644 index 00000000..b0fb3ed8 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/arrowright.ss01.glif @@ -0,0 +1,15 @@ + + + + + + + + + com.fontlab.metricsLeft + |arrowleft + com.fontlab.metricsRight + |arrowleft + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/arrowup.case.glif b/sources/FixelText-Medium.ufo/glyphs/arrowup.case.glif new file mode 100644 index 00000000..c9eeb621 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/arrowup.case.glif @@ -0,0 +1,15 @@ + + + + + + + + + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/arrowup.glif b/sources/FixelText-Medium.ufo/glyphs/arrowup.glif new file mode 100644 index 00000000..3ee5e307 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/arrowup.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + l() + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/arrowup.ss01.case.glif b/sources/FixelText-Medium.ufo/glyphs/arrowup.ss01.case.glif new file mode 100644 index 00000000..6445e303 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/arrowup.ss01.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + arrowup + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/arrowup.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/arrowup.ss01.glif new file mode 100644 index 00000000..0db8a2f9 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/arrowup.ss01.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + arrowup + com.fontlab.metricsRight + l() + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/asciicircum.glif b/sources/FixelText-Medium.ufo/glyphs/asciicircum.glif new file mode 100644 index 00000000..6d1d37e4 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/asciicircum.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/asciitilde.glif b/sources/FixelText-Medium.ufo/glyphs/asciitilde.glif new file mode 100644 index 00000000..db3e23a0 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/asciitilde.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/asterisk.glif b/sources/FixelText-Medium.ufo/glyphs/asterisk.glif new file mode 100644 index 00000000..534d96a9 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/asterisk.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/at.case.glif b/sources/FixelText-Medium.ufo/glyphs/at.case.glif new file mode 100644 index 00000000..a26ac0aa --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/at.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/at.glif b/sources/FixelText-Medium.ufo/glyphs/at.glif new file mode 100644 index 00000000..4512f943 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/at.glif @@ -0,0 +1,92 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/atilde.glif b/sources/FixelText-Medium.ufo/glyphs/atilde.glif new file mode 100644 index 00000000..6fc128e8 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/atilde.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+tilde + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/atilde.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/atilde.ss01.glif new file mode 100644 index 00000000..578a6ce5 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/atilde.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+tilde + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/b.glif b/sources/FixelText-Medium.ufo/glyphs/b.glif new file mode 100644 index 00000000..cf37c376 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/b.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/b.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/b.ss01.glif new file mode 100644 index 00000000..6ee39241 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/b.ss01.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/backslash.case.glif b/sources/FixelText-Medium.ufo/glyphs/backslash.case.glif new file mode 100644 index 00000000..41cd737b --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/backslash.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + backslash + com.fontlab.metricsRight + backslash + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/backslash.glif b/sources/FixelText-Medium.ufo/glyphs/backslash.glif new file mode 100644 index 00000000..b484e47f --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/backslash.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/bar.case.glif b/sources/FixelText-Medium.ufo/glyphs/bar.case.glif new file mode 100644 index 00000000..2e4804bb --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/bar.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + H-10 + com.fontlab.metricsRight + H-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/bar.glif b/sources/FixelText-Medium.ufo/glyphs/bar.glif new file mode 100644 index 00000000..49adfc85 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/bar.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H-10 + com.fontlab.metricsRight + H-10 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/be-cy.S_R_B_.glif b/sources/FixelText-Medium.ufo/glyphs/be-cy.S_R_B_.glif new file mode 100644 index 00000000..c9f54ad4 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/be-cy.S_R_B_.glif @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/be-cy.glif b/sources/FixelText-Medium.ufo/glyphs/be-cy.glif new file mode 100644 index 00000000..1cbc9272 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/be-cy.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/bishopblack.glif b/sources/FixelText-Medium.ufo/glyphs/bishopblack.glif new file mode 100644 index 00000000..21a9ee39 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/bishopblack.glif @@ -0,0 +1,241 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =10 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/bishopwhite.glif b/sources/FixelText-Medium.ufo/glyphs/bishopwhite.glif new file mode 100644 index 00000000..76b842a8 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/bishopwhite.glif @@ -0,0 +1,331 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/braceleft.case.glif b/sources/FixelText-Medium.ufo/glyphs/braceleft.case.glif new file mode 100644 index 00000000..2c2b572f --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/braceleft.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |braceright.case + com.fontlab.metricsRight + |braceright.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/braceleft.glif b/sources/FixelText-Medium.ufo/glyphs/braceleft.glif new file mode 100644 index 00000000..03872020 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/braceleft.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/braceright.case.glif b/sources/FixelText-Medium.ufo/glyphs/braceright.case.glif new file mode 100644 index 00000000..7f9468d1 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/braceright.case.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/braceright.glif b/sources/FixelText-Medium.ufo/glyphs/braceright.glif new file mode 100644 index 00000000..f5a50def --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/braceright.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/bracketangleleft.case.glif b/sources/FixelText-Medium.ufo/glyphs/bracketangleleft.case.glif new file mode 100644 index 00000000..9780ebc0 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/bracketangleleft.case.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + parenleft.case + com.fontlab.metricsRight + parenleft.case + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/bracketangleleft.glif b/sources/FixelText-Medium.ufo/glyphs/bracketangleleft.glif new file mode 100644 index 00000000..6322eb3b --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/bracketangleleft.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + parenleft + com.fontlab.metricsRight + parenleft + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/bracketangleright.case.glif b/sources/FixelText-Medium.ufo/glyphs/bracketangleright.case.glif new file mode 100644 index 00000000..0f222f9a --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/bracketangleright.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |bracketangleleft.case + com.fontlab.metricsRight + |bracketangleleft.case + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/bracketangleright.glif b/sources/FixelText-Medium.ufo/glyphs/bracketangleright.glif new file mode 100644 index 00000000..c5b03783 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/bracketangleright.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.metricsLeft + |bracketangleleft + com.fontlab.metricsRight + |bracketangleleft + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/bracketleft.case.glif b/sources/FixelText-Medium.ufo/glyphs/bracketleft.case.glif new file mode 100644 index 00000000..7bbcc247 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/bracketleft.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |bracketright.case + com.fontlab.metricsRight + |bracketright.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/bracketleft.glif b/sources/FixelText-Medium.ufo/glyphs/bracketleft.glif new file mode 100644 index 00000000..878d4d43 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/bracketleft.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/bracketright.case.glif b/sources/FixelText-Medium.ufo/glyphs/bracketright.case.glif new file mode 100644 index 00000000..e6679cd2 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/bracketright.case.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |bracketleft + com.fontlab.metricsRight + |bracketleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/bracketright.glif b/sources/FixelText-Medium.ufo/glyphs/bracketright.glif new file mode 100644 index 00000000..b85a44ce --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/bracketright.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |bracketleft + com.fontlab.metricsRight + |bracketleft + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/breve.case.glif b/sources/FixelText-Medium.ufo/glyphs/breve.case.glif new file mode 100644 index 00000000..b027763f --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/breve.case.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/breve.glif b/sources/FixelText-Medium.ufo/glyphs/breve.glif new file mode 100644 index 00000000..1d240695 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/breve.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/brokenbar.case.glif b/sources/FixelText-Medium.ufo/glyphs/brokenbar.case.glif new file mode 100644 index 00000000..84539c82 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/brokenbar.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + bar + com.fontlab.metricsRight + bar + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/brokenbar.glif b/sources/FixelText-Medium.ufo/glyphs/brokenbar.glif new file mode 100644 index 00000000..96b1511e --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/brokenbar.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + bar + com.fontlab.metricsRight + bar + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/bullet.case.glif b/sources/FixelText-Medium.ufo/glyphs/bullet.case.glif new file mode 100644 index 00000000..feff4e36 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/bullet.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + period + com.fontlab.metricsRight + period + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/bullet.glif b/sources/FixelText-Medium.ufo/glyphs/bullet.glif new file mode 100644 index 00000000..ea1c1198 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/bullet.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + period + com.fontlab.metricsRight + period + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/c.glif b/sources/FixelText-Medium.ufo/glyphs/c.glif new file mode 100644 index 00000000..3b6465fc --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/c.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/cacute.glif b/sources/FixelText-Medium.ufo/glyphs/cacute.glif new file mode 100644 index 00000000..db203444 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/cacute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+acute + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/caron.case.glif b/sources/FixelText-Medium.ufo/glyphs/caron.case.glif new file mode 100644 index 00000000..5cdbc5e6 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/caron.case.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/caron.glif b/sources/FixelText-Medium.ufo/glyphs/caron.glif new file mode 100644 index 00000000..c765623c --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/caron.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/caron.salt.glif b/sources/FixelText-Medium.ufo/glyphs/caron.salt.glif new file mode 100644 index 00000000..7a18034f --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/caron.salt.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/ccaron.glif b/sources/FixelText-Medium.ufo/glyphs/ccaron.glif new file mode 100644 index 00000000..44a929ca --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/ccaron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+caron + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/ccedilla.glif b/sources/FixelText-Medium.ufo/glyphs/ccedilla.glif new file mode 100644 index 00000000..4699cec5 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/ccedilla.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+cedilla + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/cche-cy.glif b/sources/FixelText-Medium.ufo/glyphs/cche-cy.glif new file mode 100644 index 00000000..2ceff8bf --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/cche-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ч + com.fontlab.metricsRight + ч + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/ccircumflex.glif b/sources/FixelText-Medium.ufo/glyphs/ccircumflex.glif new file mode 100644 index 00000000..debc377c --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/ccircumflex.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+circumflex + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/cdotaccent.glif b/sources/FixelText-Medium.ufo/glyphs/cdotaccent.glif new file mode 100644 index 00000000..f95e33f8 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/cdotaccent.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+dotaccent + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/cedilla.glif b/sources/FixelText-Medium.ufo/glyphs/cedilla.glif new file mode 100644 index 00000000..10918da7 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/cedilla.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/cent.glif b/sources/FixelText-Medium.ufo/glyphs/cent.glif new file mode 100644 index 00000000..efb58166 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/cent.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + c + com.fontlab.metricsRight + c + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/che-cy.glif b/sources/FixelText-Medium.ufo/glyphs/che-cy.glif new file mode 100644 index 00000000..f5417025 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/che-cy.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + u-10 + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/cheabkhcyr.glif b/sources/FixelText-Medium.ufo/glyphs/cheabkhcyr.glif new file mode 100644 index 00000000..99d4127f --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/cheabkhcyr.glif @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + e + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/cheabkhtailcyr.glif b/sources/FixelText-Medium.ufo/glyphs/cheabkhtailcyr.glif new file mode 100644 index 00000000..073162b3 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/cheabkhtailcyr.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + cheabkhcyr + com.fontlab.metricsRight + cheabkhcyr + com.fontlab.recipe + cheabkhcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/chedieresiscyr.glif b/sources/FixelText-Medium.ufo/glyphs/chedieresiscyr.glif new file mode 100644 index 00000000..508cd7d5 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/chedieresiscyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + che-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/chekhakascyr.glif b/sources/FixelText-Medium.ufo/glyphs/chekhakascyr.glif new file mode 100644 index 00000000..2e60b211 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/chekhakascyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ч + com.fontlab.metricsRight + н + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/chetailcyr.glif b/sources/FixelText-Medium.ufo/glyphs/chetailcyr.glif new file mode 100644 index 00000000..29ce138a --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/chetailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ч + com.fontlab.metricsRight + entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/chevertcyr.glif b/sources/FixelText-Medium.ufo/glyphs/chevertcyr.glif new file mode 100644 index 00000000..60ed4e59 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/chevertcyr.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ч + com.fontlab.metricsRight + н + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/circumflex.case.glif b/sources/FixelText-Medium.ufo/glyphs/circumflex.case.glif new file mode 100644 index 00000000..1f2faf50 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/circumflex.case.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/circumflex.glif b/sources/FixelText-Medium.ufo/glyphs/circumflex.glif new file mode 100644 index 00000000..f1013daf --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/circumflex.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/clubwhite.glif b/sources/FixelText-Medium.ufo/glyphs/clubwhite.glif new file mode 100644 index 00000000..3b3348ac --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/clubwhite.glif @@ -0,0 +1,155 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/colon.case.glif b/sources/FixelText-Medium.ufo/glyphs/colon.case.glif new file mode 100644 index 00000000..7aebc210 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/colon.case.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/colon.glif b/sources/FixelText-Medium.ufo/glyphs/colon.glif new file mode 100644 index 00000000..03914826 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/colon.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/colontriangularmod.glif b/sources/FixelText-Medium.ufo/glyphs/colontriangularmod.glif new file mode 100644 index 00000000..d5993aa2 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/colontriangularmod.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + colon + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/comma.glif b/sources/FixelText-Medium.ufo/glyphs/comma.glif new file mode 100644 index 00000000..31c3008f --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/comma.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/commaaccentcomb.glif b/sources/FixelText-Medium.ufo/glyphs/commaaccentcomb.glif new file mode 100644 index 00000000..74f9250b --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/commaaccentcomb.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/commaaccentcomb.salt.glif b/sources/FixelText-Medium.ufo/glyphs/commaaccentcomb.salt.glif new file mode 100644 index 00000000..f01971f4 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/commaaccentcomb.salt.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/contents.plist b/sources/FixelText-Medium.ufo/glyphs/contents.plist new file mode 100644 index 00000000..2830b2de --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/contents.plist @@ -0,0 +1,2352 @@ + + + + + .notdef + _notdef.glif + A + A_.glif + A-cy + A_-cy.glif + A-cy.accented + A_-cy.accented.glif + A-cy.ss01 + A_-cy.ss01.glif + A.ss01 + A_.ss01.glif + AE + A_E_.glif + AE.ss01 + A_E_.ss01.glif + AEacute + A_E_acute.glif + Aacute + A_acute.glif + Aacute.ss01 + A_acute.ss01.glif + Abreve + A_breve.glif + Abreve.ss01 + A_breve.ss01.glif + Abrevecyr + A_brevecyr.glif + Acaron + A_caron.glif + Acircumflex + A_circumflex.glif + Acircumflex.ss01 + A_circumflex.ss01.glif + Adieresis + A_dieresis.glif + Adieresis.ss01 + A_dieresis.ss01.glif + Adieresiscyr + A_dieresiscyr.glif + Agrave + A_grave.glif + Agrave.ss01 + A_grave.ss01.glif + Aiecyr + A_iecyr.glif + Amacron + A_macron.glif + Amacron.ss01 + A_macron.ss01.glif + Aogonek + A_ogonek.glif + Aogonek.ss01 + A_ogonek.ss01.glif + Aring + A_ring.glif + Aring.ss01 + A_ring.ss01.glif + Atilde + A_tilde.glif + Atilde.ss01 + A_tilde.ss01.glif + B + B_.glif + Be-cy + B_e-cy.glif + C + C_.glif + CR + C_R_.glif + Cacute + C_acute.glif + Ccaron + C_caron.glif + Ccedilla + C_cedilla.glif + Cche-cy + C_che-cy.glif + Ccircumflex + C_circumflex.glif + Cdotaccent + C_dotaccent.glif + Che-cy + C_he-cy.glif + Cheabkhcyr + C_heabkhcyr.glif + Cheabkhtailcyr + C_heabkhtailcyr.glif + Chedieresiscyr + C_hedieresiscyr.glif + Chekhakascyr + C_hekhakascyr.glif + Chetailcyr + C_hetailcyr.glif + Chevertcyr + C_hevertcyr.glif + CrossedO-cy + C_rossedO_-cy.glif + D + D_.glif + Dcaron + D_caron.glif + Dchecyr + D_checyr.glif + Dcroat + D_croat.glif + De-cy + D_e-cy.glif + De-cy.BGR + D_e-cy.B_G_R_.glif + DeSoft-cy + D_eS_oft-cy.glif + Dekomicyr + D_ekomicyr.glif + Delta + D_elta.glif + Djecyr + D_jecyr.glif + Djekomicyr + D_jekomicyr.glif + Djerv-cy + D_jerv-cy.glif + DoubleO-cy + D_oubleO_-cy.glif + Dwe-cy + D_we-cy.glif + Dze-cy + D_ze-cy.glif + DzeReversed-cy + D_zeR_eversed-cy.glif + Dzeabkhcyr + D_zeabkhcyr.glif + Dzelo-cy + D_zelo-cy.glif + Dzhecyr + D_zhecyr.glif + Dzjekomicyr + D_zjekomicyr.glif + Dzwe-cy + D_zwe-cy.glif + Dzze-cy + D_zze-cy.glif + Dzzhecyr + D_zzhecyr.glif + E + E_.glif + E-cy + E_-cy.glif + E-cy.accented + E_-cy.accented.glif + Eacute + E_acute.glif + Ebreve + E_breve.glif + Ecaron + E_caron.glif + Ecircumflex + E_circumflex.glif + Edieresis + E_dieresis.glif + Edotaccent + E_dotaccent.glif + Ef-cy + E_f-cy.glif + Ef-cy.BGR + E_f-cy.B_G_R_.glif + Egrave + E_grave.glif + Eiotifiedcyr + E_iotifiedcyr.glif + El-cy + E_l-cy.glif + El-cy.BGR + E_l-cy.B_G_R_.glif + ElSoft-cy + E_lS_oft-cy.glif + Elhookcyr + E_lhookcyr.glif + Elmiddlehookcyr + E_lmiddlehookcyr.glif + Elsharptailcyr + E_lsharptailcyr.glif + Elsmallcyr + E_lsmallcyr.glif + Eltailcyr + E_ltailcyr.glif + Em-cy + E_m-cy.glif + Em-cy.ss01 + E_m-cy.ss01.glif + EmSoft-cy + E_mS_oft-cy.glif + Emacron + E_macron.glif + Emsharptailcyr + E_msharptailcyr.glif + En-cy + E_n-cy.glif + Eng + E_ng.glif + Eng.ss01 + E_ng.ss01.glif + Engecyr + E_ngecyr.glif + Enhookcyr + E_nhookcyr.glif + Enhookleftcyr + E_nhookleftcyr.glif + Enmiddlehookcyr + E_nmiddlehookcyr.glif + Ensharptailcyr + E_nsharptailcyr.glif + Entailcyr + E_ntailcyr.glif + Eogonek + E_ogonek.glif + Er-cy + E_r-cy.glif + Ereversed-cy + E_reversed-cy.glif + Ereversed-cy.accented + E_reversed-cy.accented.glif + Ereverseddieresiscyr + E_reverseddieresiscyr.glif + Ertickcyr + E_rtickcyr.glif + Es-cy + E_s-cy.glif + Estailcyr + E_stailcyr.glif + Estailcyr.BSH + E_stailcyr.B_S_H_.glif + Estailcyr.CHU + E_stailcyr.C_H_U_.glif + Eth + E_th.glif + F + F_.glif + Fitacyr + F_itacyr.glif + G + G_.glif + G.ss01 + G_.ss01.glif + Gacute + G_acute.glif + Gacute.ss01 + G_acute.ss01.glif + Gbreve + G_breve.glif + Gbreve.ss01 + G_breve.ss01.glif + Gcircumflex + G_circumflex.glif + Gcircumflex.ss01 + G_circumflex.ss01.glif + Gcommaaccent + G_commaaccent.glif + Gcommaaccent.ss01 + G_commaaccent.ss01.glif + Gdotaccent + G_dotaccent.glif + Gdotaccent.ss01 + G_dotaccent.ss01.glif + Ge-cy + G_e-cy.glif + Gehookcyr + G_ehookcyr.glif + Gehookstrokecyr + G_ehookstrokecyr.glif + Germandbls + G_ermandbls.glif + Gestrokecyr + G_estrokecyr.glif + Gestrokecyr.BSH + G_estrokecyr.B_S_H_.glif + Getailcyr + G_etailcyr.glif + Gheupturn-cy + G_heupturn-cy.glif + Gjecyr + G_jecyr.glif + H + H_.glif + Ha-cy + H_a-cy.glif + Ha-cy.ss01 + H_a-cy.ss01.glif + Haabkhcyr + H_aabkhcyr.glif + Hahookcyr + H_ahookcyr.glif + Hardsign-cy + H_ardsign-cy.glif + Hastrokecyr + H_astrokecyr.glif + Hbar + H_bar.glif + Hcircumflex + H_circumflex.glif + Hwe-cy + H_we-cy.glif + I + I_.glif + I-cy + I_-cy.glif + IJ + I_J_.glif + Ia-cy + I_a-cy.glif + Ia-cy.accented + I_a-cy.accented.glif + Ia-cy.ss01 + I_a-cy.ss01.glif + Iacute + I_acute.glif + Ibreve + I_breve.glif + Icircumflex + I_circumflex.glif + Idieresis + I_dieresis.glif + Idieresiscyr + I_dieresiscyr.glif + Idotaccent + I_dotaccent.glif + Ie-cy + I_e-cy.glif + Iebrevecyr + I_ebrevecyr.glif + Iegravecyr + I_egravecyr.glif + Igrave + I_grave.glif + Igravecyr + I_gravecyr.glif + Ii-cy + I_i-cy.glif + Ii-cy.accented + I_i-cy.accented.glif + Iishort-cy + I_ishort-cy.glif + Imacron + I_macron.glif + Imacroncyr + I_macroncyr.glif + Io-cy + I_o-cy.glif + Io-cy.accented + I_o-cy.accented.glif + Iogonek + I_ogonek.glif + Iota-cy + I_ota-cy.glif + IotifiedA-cy + I_otifiedA_-cy.glif + Ishortsharptailcyr + I_shortsharptailcyr.glif + Itilde + I_tilde.glif + Iu-cy + I_u-cy.glif + Iu-cy.accented + I_u-cy.accented.glif + Izhitsacyr + I_zhitsacyr.glif + Izhitsagravedblcyr + I_zhitsagravedblcyr.glif + J + J_.glif + J.ss01 + J_.ss01.glif + Jcircumflex + J_circumflex.glif + Jcircumflex.ss01 + J_circumflex.ss01.glif + Jecyr + J_ecyr.glif + K + K_.glif + K.ss01 + K_.ss01.glif + Ka-cy + K_a-cy.glif + Ka-cy.ss01 + K_a-cy.ss01.glif + Kaaleutcyr + K_aaleutcyr.glif + Kabashkcyr + K_abashkcyr.glif + Kahookcyr + K_ahookcyr.glif + Kastrokecyr + K_astrokecyr.glif + Katailcyr + K_atailcyr.glif + Kaverticalstrokecyr + K_averticalstrokecyr.glif + Kcommaaccent + K_commaaccent.glif + Kcommaaccent.ss01 + K_commaaccent.ss01.glif + Kjecyr + K_jecyr.glif + Koppacyr + K_oppacyr.glif + Ksicyr + K_sicyr.glif + L + L_.glif + Lacute + L_acute.glif + Lcaron + L_caron.glif + Lcommaaccent + L_commaaccent.glif + Ldot + L_dot.glif + Lhacyr + L_hacyr.glif + Ljecyr + L_jecyr.glif + Ljekomicyr + L_jekomicyr.glif + Lslash + L_slash.glif + M + M_.glif + M.ss01 + M_.ss01.glif + N + N_.glif + N.ss01 + N_.ss01.glif + NULL + N_U_L_L_.glif + Nacute + N_acute.glif + Nacute.ss01 + N_acute.ss01.glif + Ncaron + N_caron.glif + Ncaron.ss01 + N_caron.ss01.glif + Ncommaaccent + N_commaaccent.glif + Ncommaaccent.ss01 + N_commaaccent.ss01.glif + Njecyr + N_jecyr.glif + Njekomicyr + N_jekomicyr.glif + Ntilde + N_tilde.glif + Ntilde.ss01 + N_tilde.ss01.glif + O + O_.glif + O-cy + O_-cy.glif + O-cy.accented + O_-cy.accented.glif + OBinocular-cy + O_B_inocular-cy.glif + ODoubleMonocular-cy + O_D_oubleM_onocular-cy.glif + OE + O_E_.glif + OMonocular-cy + O_M_onocular-cy.glif + Oacute + O_acute.glif + Obarcyr + O_barcyr.glif + Obardieresiscyr + O_bardieresiscyr.glif + Obreve + O_breve.glif + Ocircumflex + O_circumflex.glif + Odieresis + O_dieresis.glif + Odieresiscyr + O_dieresiscyr.glif + Ograve + O_grave.glif + Ohungarumlaut + O_hungarumlaut.glif + Omacron + O_macron.glif + Omega + O_mega.glif + OmegaBroad-cy + O_megaB_road-cy.glif + Omegacyr + O_megacyr.glif + Omegaroundcyr + O_megaroundcyr.glif + Omegatitlocyr + O_megatitlocyr.glif + Oslash + O_slash.glif + Oslashacute + O_slashacute.glif + Otcyr + O_tcyr.glif + Otilde + O_tilde.glif + P + P_.glif + Palochkacyr + P_alochkacyr.glif + Pe-cy + P_e-cy.glif + Pehookcyr + P_ehookcyr.glif + Petailcyr + P_etailcyr.glif + Psicyr + P_sicyr.glif + Q + Q_.glif + Q.ss01 + Q_.ss01.glif + Qacyr + Q_acyr.glif + R + R_.glif + Racute + R_acute.glif + Rcaron + R_caron.glif + Rcommaaccent + R_commaaccent.glif + Reversedzecyr + R_eversedzecyr.glif + Rhacyr + R_hacyr.glif + S + S_.glif + Sacute + S_acute.glif + Scaron + S_caron.glif + Scedilla + S_cedilla.glif + Schwa + S_chwa.glif + Schwacyr + S_chwacyr.glif + Schwadieresiscyr + S_chwadieresiscyr.glif + Scircumflex + S_circumflex.glif + Scommaaccent + S_commaaccent.glif + Semisoftcyr + S_emisoftcyr.glif + Sha-cy + S_ha-cy.glif + Shcha-cy + S_hcha-cy.glif + Shhacyr + S_hhacyr.glif + Shhatailcyr + S_hhatailcyr.glif + Shwe-cy + S_hwe-cy.glif + Sjekomicyr + S_jekomicyr.glif + Softsign-cy + S_oftsign-cy.glif + T + T_.glif + Tbar + T_bar.glif + Tcaron + T_caron.glif + Tcedilla + T_cedilla.glif + Tche-cy + T_che-cy.glif + Tcommaaccent + T_commaaccent.glif + Te-cy + T_e-cy.glif + TeWithMiddleHook-cy + T_eW_ithM_iddleH_ook-cy.glif + Tetailcyr + T_etailcyr.glif + Tetsecyr + T_etsecyr.glif + Thorn + T_horn.glif + Tjekomicyr + T_jekomicyr.glif + Tse-cy + T_se-cy.glif + TseReversed-cy + T_seR_eversed-cy.glif + Tshecyr + T_shecyr.glif + Tsse-cy + T_sse-cy.glif + Tswe-cy + T_swe-cy.glif + Twe-cy + T_we-cy.glif + U + U_.glif + U-cy + U_-cy.glif + U-cy.accented + U_-cy.accented.glif + U-cy.ss01 + U_-cy.ss01.glif + Uacute + U_acute.glif + Uacutedblcyr + U_acutedblcyr.glif + Ubreve + U_breve.glif + Ucircumflex + U_circumflex.glif + Udieresis + U_dieresis.glif + Udieresiscyr + U_dieresiscyr.glif + Ugrave + U_grave.glif + Uhungarumlaut + U_hungarumlaut.glif + UkMonograph-cy + U_kM_onograph-cy.glif + Ukcyr + U_kcyr.glif + Umacron + U_macron.glif + Umacroncyr + U_macroncyr.glif + Uogonek + U_ogonek.glif + Uring + U_ring.glif + Ushort-cy + U_short-cy.glif + Ushort-cy.ss01 + U_short-cy.ss01.glif + Ustraightcyr + U_straightcyr.glif + Ustraightstrokecyr + U_straightstrokecyr.glif + Utilde + U_tilde.glif + V + V_.glif + V.ss01 + V_.ss01.glif + Ve-cy + V_e-cy.glif + W + W_.glif + W.ss01 + W_.ss01.glif + Wacute + W_acute.glif + Wacute.ss01 + W_acute.ss01.glif + Wcircumflex + W_circumflex.glif + Wcircumflex.ss01 + W_circumflex.ss01.glif + Wdieresis + W_dieresis.glif + Wdieresis.ss01 + W_dieresis.ss01.glif + Wecyr + W_ecyr.glif + Wgrave + W_grave.glif + Wgrave.ss01 + W_grave.ss01.glif + X + X_.glif + X.ss01 + X_.ss01.glif + Xatailcyr + X_atailcyr.glif + Y + Y_.glif + Y.ss01 + Y_.ss01.glif + Yacute + Y_acute.glif + Yacute.ss01 + Y_acute.ss01.glif + Yaecyr + Y_aecyr.glif + YatIotified-cy + Y_atI_otified-cy.glif + Yatcyr + Y_atcyr.glif + Ycircumflex + Y_circumflex.glif + Ycircumflex.ss01 + Y_circumflex.ss01.glif + Ydieresis + Y_dieresis.glif + Ydieresis.ss01 + Y_dieresis.ss01.glif + YerNeutral-cy + Y_erN_eutral-cy.glif + Yeru-cy + Y_eru-cy.glif + Yeru-cy.accented + Y_eru-cy.accented.glif + Yeru-cymacron + Y_eru-cymacron.glif + YeruBackYer-cy + Y_eruB_ackY_er-cy.glif + Yi-cy + Y_i-cy.glif + Ylongdieresiscyr + Y_longdieresiscyr.glif + Yn-cy + Y_n-cy.glif + YuReversed-cy + Y_uR_eversed-cy.glif + YusBlended-cy + Y_usB_lended-cy.glif + YusClosedlittle-cy + Y_usC_losedlittle-cy.glif + Yusbigcyr + Y_usbigcyr.glif + Yusbigiotifiedcyr + Y_usbigiotifiedcyr.glif + YusiotifiedClosedLittle-cy + Y_usiotifiedC_losedL_ittle-cy.glif + Yuslittlecyr + Y_uslittlecyr.glif + Yuslittleiotifiedcyr + Y_uslittleiotifiedcyr.glif + Z + Z_.glif + Z.ss01 + Z_.ss01.glif + Zacute + Z_acute.glif + Zacute.ss01 + Z_acute.ss01.glif + Zcaron + Z_caron.glif + Zcaron.ss01 + Z_caron.ss01.glif + Zdotaccent + Z_dotaccent.glif + Zdotaccent.ss01 + Z_dotaccent.ss01.glif + Ze-cy + Z_e-cy.glif + Zedieresiscyr + Z_edieresiscyr.glif + Zemlya-cy + Z_emlya-cy.glif + Zetailcyr + Z_etailcyr.glif + Zetailcyr.BSH + Z_etailcyr.B_S_H_.glif + Zhe-cy + Z_he-cy.glif + Zhe-cy.ss01 + Z_he-cy.ss01.glif + Zhebrevecyr + Z_hebrevecyr.glif + Zhedieresiscyr + Z_hedieresiscyr.glif + Zhetailcyr + Z_hetailcyr.glif + Zhwe-cy + Z_hwe-cy.glif + Zjekomicyr + Z_jekomicyr.glif + _perc-circule + _perc-circule.glif + a + a.glif + a-cy + a-cy.glif + a-cy.accented + a-cy.accented.glif + a-cy.ss01 + a-cy.ss01.glif + a.ss01 + a.ss01.glif + aacute + aacute.glif + aacute.ss01 + aacute.ss01.glif + abreve + abreve.glif + abreve.ss01 + abreve.ss01.glif + abrevecyr + abrevecyr.glif + acaron + acaron.glif + acircumflex + acircumflex.glif + acircumflex.ss01 + acircumflex.ss01.glif + acute + acute.glif + acute.case + acute.case.glif + adieresis + adieresis.glif + adieresis.ss01 + adieresis.ss01.glif + adieresiscyr + adieresiscyr.glif + ae + ae.glif + ae.ss01 + ae.ss01.glif + aeacute + aeacute.glif + agrave + agrave.glif + agrave.ss01 + agrave.ss01.glif + aiecyr + aiecyr.glif + amacron + amacron.glif + amacron.ss01 + amacron.ss01.glif + ampersand + ampersand.glif + aogonek + aogonek.glif + aogonek.ss01 + aogonek.ss01.glif + apostrophemod + apostrophemod.glif + approxequal + approxequal.glif + aring + aring.glif + aring.ss01 + aring.ss01.glif + arrowdown + arrowdown.glif + arrowdown.case + arrowdown.case.glif + arrowdown.ss01 + arrowdown.ss01.glif + arrowdown.ss01.case + arrowdown.ss01.case.glif + arrowleft + arrowleft.glif + arrowleft.case + arrowleft.case.glif + arrowleft.ss01 + arrowleft.ss01.glif + arrowleft.ss01.case + arrowleft.ss01.case.glif + arrowright + arrowright.glif + arrowright.case + arrowright.case.glif + arrowright.ss01 + arrowright.ss01.glif + arrowright.ss01.case + arrowright.ss01.case.glif + arrowup + arrowup.glif + arrowup.case + arrowup.case.glif + arrowup.ss01 + arrowup.ss01.glif + arrowup.ss01.case + arrowup.ss01.case.glif + asciicircum + asciicircum.glif + asciitilde + asciitilde.glif + asterisk + asterisk.glif + at + at.glif + at.case + at.case.glif + atilde + atilde.glif + atilde.ss01 + atilde.ss01.glif + b + b.glif + b.ss01 + b.ss01.glif + backslash + backslash.glif + backslash.case + backslash.case.glif + bar + bar.glif + bar.case + bar.case.glif + be-cy + be-cy.glif + be-cy.SRB + be-cy.S_R_B_.glif + bishopblack + bishopblack.glif + bishopwhite + bishopwhite.glif + braceleft + braceleft.glif + braceleft.case + braceleft.case.glif + braceright + braceright.glif + braceright.case + braceright.case.glif + bracketangleleft + bracketangleleft.glif + bracketangleleft.case + bracketangleleft.case.glif + bracketangleright + bracketangleright.glif + bracketangleright.case + bracketangleright.case.glif + bracketleft + bracketleft.glif + bracketleft.case + bracketleft.case.glif + bracketright + bracketright.glif + bracketright.case + bracketright.case.glif + breve + breve.glif + breve.case + breve.case.glif + brokenbar + brokenbar.glif + brokenbar.case + brokenbar.case.glif + bullet + bullet.glif + bullet.case + bullet.case.glif + c + c.glif + cacute + cacute.glif + caron + caron.glif + caron.case + caron.case.glif + caron.salt + caron.salt.glif + ccaron + ccaron.glif + ccedilla + ccedilla.glif + cche-cy + cche-cy.glif + ccircumflex + ccircumflex.glif + cdotaccent + cdotaccent.glif + cedilla + cedilla.glif + cent + cent.glif + che-cy + che-cy.glif + cheabkhcyr + cheabkhcyr.glif + cheabkhtailcyr + cheabkhtailcyr.glif + chedieresiscyr + chedieresiscyr.glif + chekhakascyr + chekhakascyr.glif + chetailcyr + chetailcyr.glif + chevertcyr + chevertcyr.glif + circumflex + circumflex.glif + circumflex.case + circumflex.case.glif + clubwhite + clubwhite.glif + colon + colon.glif + colon.case + colon.case.glif + colontriangularmod + colontriangularmod.glif + comma + comma.glif + commaaccentcomb + commaaccentcomb.glif + commaaccentcomb.salt + commaaccentcomb.salt.glif + copyright + copyright.glif + crossedo-cy + crossedo-cy.glif + crossedswords + crossedswords.glif + currency + currency.glif + d + d.glif + d.ss01 + d.ss01.glif + dagger + dagger.glif + daggerdbl + daggerdbl.glif + dcaron + dcaron.glif + dcaron.ss01 + dcaron.ss01.glif + dchecyr + dchecyr.glif + dcroat + dcroat.glif + dcroat.ss01 + dcroat.ss01.glif + de-cy + de-cy.glif + de-cy.BGR + de-cy.B_G_R_.glif + de-cy.ss01 + de-cy.ss01.glif + deSoft-cy + deS_oft-cy.glif + degree + degree.glif + dekomicyr + dekomicyr.glif + diamondwhite-misc + diamondwhite-misc.glif + dieresis + dieresis.glif + dieresis.alt + dieresis.alt.glif + dieresis.case + dieresis.case.glif + dieresisacute + dieresisacute.glif + dieresiscase.alt + dieresiscase.alt.glif + divide + divide.glif + djecyr + djecyr.glif + djekomicyr + djekomicyr.glif + djerv-cy + djerv-cy.glif + dollar + dollar.glif + dotaccent + dotaccent.glif + dotaccent.case + dotaccent.case.glif + doubleo-cy + doubleo-cy.glif + dramsignarmn + dramsignarmn.glif + dwe-cy + dwe-cy.glif + dze-cy + dze-cy.glif + dzeReversed-cy + dzeR_eversed-cy.glif + dzeabkhcyr + dzeabkhcyr.glif + dzelo-cy + dzelo-cy.glif + dzhecyr + dzhecyr.glif + dzjekomicyr + dzjekomicyr.glif + dzwe-cy + dzwe-cy.glif + dzze-cy + dzze-cy.glif + dzzhecyr + dzzhecyr.glif + e + e.glif + e-cy + e-cy.glif + e-cy.accented + e-cy.accented.glif + e-cy.hist + e-cy.hist.glif + e.ss01 + e.ss01.glif + eacute + eacute.glif + eacute.ss01 + eacute.ss01.glif + ebreve + ebreve.glif + ebreve.ss01 + ebreve.ss01.glif + ecaron + ecaron.glif + ecaron.ss01 + ecaron.ss01.glif + ecircumflex + ecircumflex.glif + ecircumflex.ss01 + ecircumflex.ss01.glif + edieresis + edieresis.glif + edieresis.ss01 + edieresis.ss01.glif + edotaccent + edotaccent.glif + edotaccent.ss01 + edotaccent.ss01.glif + ef-cy + ef-cy.glif + egrave + egrave.glif + egrave.ss01 + egrave.ss01.glif + eight + eight.glif + eight.osf + eight.osf.glif + eight.tf + eight.tf.glif + eiotifiedcyr + eiotifiedcyr.glif + eiotifiedcyr.BGR + eiotifiedcyr.B_G_R_.glif + el-cy + el-cy.glif + el-cy.BGR + el-cy.B_G_R_.glif + el-cy.ss01 + el-cy.ss01.glif + elSoft-cy + elS_oft-cy.glif + elhookcyr + elhookcyr.glif + ellipsis + ellipsis.glif + elmiddlehookcyr + elmiddlehookcyr.glif + elsharptailcyr + elsharptailcyr.glif + eltailcyr + eltailcyr.glif + em-cy + em-cy.glif + emSoft-cy + emS_oft-cy.glif + emacron + emacron.glif + emacron.ss01 + emacron.ss01.glif + emdash + emdash.glif + emdash.case + emdash.case.glif + emsharptailcyr + emsharptailcyr.glif + en-cy + en-cy.glif + enclosingcirclecomb + enclosingcirclecomb.glif + endash + endash.glif + endash.case + endash.case.glif + eng + eng.glif + engecyr + engecyr.glif + enhookcyr + enhookcyr.glif + enhookleftcyr + enhookleftcyr.glif + enmiddlehookcyr + enmiddlehookcyr.glif + ensharptailcyr + ensharptailcyr.glif + entailcyr + entailcyr.glif + eogonek + eogonek.glif + eogonek.ss01 + eogonek.ss01.glif + equal + equal.glif + er-cy + er-cy.glif + er-cy.ss01 + er-cy.ss01.glif + ereversed-cy + ereversed-cy.glif + ereversed-cy.accented + ereversed-cy.accented.glif + ereverseddieresiscyr + ereverseddieresiscyr.glif + ertickcyr + ertickcyr.glif + es-cy + es-cy.glif + estailcyr + estailcyr.glif + estailcyr.BSH + estailcyr.B_S_H_.glif + estailcyr.CHU + estailcyr.C_H_U_.glif + estimated + estimated.glif + eth + eth.glif + eturned + eturned.glif + euro + euro.glif + exclam + exclam.glif + exclamdown + exclamdown.glif + exclamdown.case + exclamdown.case.glif + f + f.glif + f.ss01 + f.ss01.glif + f_f + f_f.glif + f_f.ss01 + f_f.ss01.glif + f_f_i + f_f_i.glif + f_f_i.ss01 + f_f_i.ss01.glif + f_f_l + f_f_l.glif + f_f_l.ss01 + f_f_l.ss01.glif + fi + fi.glif + fi.ss01 + fi.ss01.glif + fitacyr + fitacyr.glif + five + five.glif + five.osf + five.osf.glif + five.tf + five.tf.glif + fl + fl.glif + fl.ss01 + fl.ss01.glif + floretteblack + floretteblack.glif + floretteoutlinedpetalledblackeight + floretteoutlinedpetalledblackeight.glif + florettewhite + florettewhite.glif + florin + florin.glif + flower + flower.glif + four + four.glif + four.osf + four.osf.glif + four.tf + four.tf.glif + fraction + fraction.glif + g + g.glif + g.ss01 + g.ss01.glif + gacute + gacute.glif + gacute.ss01 + gacute.ss01.glif + gbreve + gbreve.glif + gbreve.ss01 + gbreve.ss01.glif + gcircumflex + gcircumflex.glif + gcircumflex.ss01 + gcircumflex.ss01.glif + gcommaaccent + gcommaaccent.glif + gcommaaccent.ss01 + gcommaaccent.ss01.glif + gdotaccent + gdotaccent.glif + gdotaccent.ss01 + gdotaccent.ss01.glif + ge-cy + ge-cy.glif + ge-cy.BGR + ge-cy.B_G_R_.glif + ge-cy.SRB + ge-cy.S_R_B_.glif + gehookcyr + gehookcyr.glif + gehookstrokecyr + gehookstrokecyr.glif + germandbls + germandbls.glif + germandbls.ss01 + germandbls.ss01.glif + gestrokecyr + gestrokecyr.glif + gestrokecyr.BSH + gestrokecyr.B_S_H_.glif + getailcyr + getailcyr.glif + gheupturn-cy + gheupturn-cy.glif + gjecyr + gjecyr.glif + gjecyr.SRB + gjecyr.S_R_B_.glif + grave + grave.glif + grave.case + grave.case.glif + greater + greater.glif + greaterequal + greaterequal.glif + guillemetleft + guillemetleft.glif + guillemetleft.case + guillemetleft.case.glif + guillemetright + guillemetright.glif + guillemetright.case + guillemetright.case.glif + guilsinglleft + guilsinglleft.glif + guilsinglleft.case + guilsinglleft.case.glif + guilsinglright + guilsinglright.glif + guilsinglright.case + guilsinglright.case.glif + h + h.glif + ha-cy + ha-cy.glif + haabkhcyr + haabkhcyr.glif + hahookcyr + hahookcyr.glif + hardsign-cy + hardsign-cy.glif + hardsign-cy.BGR + hardsign-cy.B_G_R_.glif + hardsign-cy.ss01 + hardsign-cy.ss01.glif + hastrokecyr + hastrokecyr.glif + hbar + hbar.glif + hcircumflex + hcircumflex.glif + heart + heart.glif + heartwhite + heartwhite.glif + hryvnia + hryvnia.glif + hundredmillionscomb-cy + hundredmillionscomb-cy.glif + hundredthousandscombcyr + hundredthousandscombcyr.glif + hungarumlaut + hungarumlaut.glif + hungarumlaut.case + hungarumlaut.case.glif + hwe-cy + hwe-cy.glif + hyphen + hyphen.glif + hyphen.case + hyphen.case.glif + i + i.glif + i-cy + i-cy.glif + ia-cy + ia-cy.glif + ia-cy.accented + ia-cy.accented.glif + ia-cy.ss01 + ia-cy.ss01.glif + iacute + iacute.glif + ibreve + ibreve.glif + icircumflex + icircumflex.glif + idieresis + idieresis.glif + idieresiscyr + idieresiscyr.glif + idotless + idotless.glif + ie-cy + ie-cy.glif + ie-cy.ss01 + ie-cy.ss01.glif + iebrevecyr + iebrevecyr.glif + iegravecyr + iegravecyr.glif + iegravecyr.SRB + iegravecyr.S_R_B_.glif + igrave + igrave.glif + igravecyr + igravecyr.glif + igravecyr.SRB + igravecyr.S_R_B_.glif + ii-cy + ii-cy.glif + ii-cy.BGR + ii-cy.B_G_R_.glif + ii-cy.accented + ii-cy.accented.glif + iishort-cy + iishort-cy.glif + iishort-cy.BGR + iishort-cy.B_G_R_.glif + ij + ij.glif + imacron + imacron.glif + imacroncyr + imacroncyr.glif + increment + increment.glif + infinity + infinity.glif + integral + integral.glif + io-cy + io-cy.glif + io-cy.accented + io-cy.accented.glif + io-cy.ss01 + io-cy.ss01.glif + iogonek + iogonek.glif + iota-cy + iota-cy.glif + iotifieda-cy + iotifieda-cy.glif + iotifieda-cy.BGR + iotifieda-cy.B_G_R_.glif + iotifieda-cy.hist + iotifieda-cy.hist.glif + ishortsharptailcyr + ishortsharptailcyr.glif + itilde + itilde.glif + iu-cy + iu-cy.glif + iu-cy.BGR + iu-cy.B_G_R_.glif + iu-cy.accented + iu-cy.accented.glif + izhitsacyr + izhitsacyr.glif + izhitsagravedblcyr + izhitsagravedblcyr.glif + j + j.glif + jcircumflex + jcircumflex.glif + jdotless + jdotless.glif + je-cy + je-cy.glif + k + k.glif + ka-cy + ka-cy.glif + ka-cy.BGR + ka-cy.B_G_R_.glif + kaaleutcyr + kaaleutcyr.glif + kabashkcyr + kabashkcyr.glif + kahookcyr + kahookcyr.glif + kastrokecyr + kastrokecyr.glif + katailcyr + katailcyr.glif + kaverticalstrokecyr + kaverticalstrokecyr.glif + kcommaaccent + kcommaaccent.glif + kgreenlandic + kgreenlandic.glif + kjecyr + kjecyr.glif + knightblack + knightblack.glif + knightwhite + knightwhite.glif + koppacyr + koppacyr.glif + ksicyr + ksicyr.glif + l + l.glif + l.ss01 + l.ss01.glif + lacute + lacute.glif + lacute.ss01 + lacute.ss01.glif + lcaron + lcaron.glif + lcaron.ss01 + lcaron.ss01.glif + lcommaaccent + lcommaaccent.glif + lcommaaccent.ss01 + lcommaaccent.ss01.glif + ldot + ldot.glif + ldot.ss01 + ldot.ss01.glif + leo + leo.glif + less + less.glif + lessequal + lessequal.glif + lhacyr + lhacyr.glif + ljecyr + ljecyr.glif + ljecyr.ss01 + ljecyr.ss01.glif + ljekomicyr + ljekomicyr.glif + longs + longs.glif + lslash + lslash.glif + lslash.ss01 + lslash.ss01.glif + m + m.glif + macron + macron.glif + macron-fwd + macron-fwd.glif + macron-fwd.alt + macron-fwd.alt.glif + macron.case + macron.case.glif + macronacute.SRB + macronacute.S_R_B_.glif + millionscombcyr + millionscombcyr.glif + minus + minus.glif + minute + minute.glif + mu + mu.glif + multiply + multiply.glif + n + n.glif + nacute + nacute.glif + napostrophe + napostrophe.glif + ncaron + ncaron.glif + ncommaaccent + ncommaaccent.glif + neptune + neptune.glif + nine + nine.glif + nine.osf + nine.osf.glif + nine.tf + nine.tf.glif + njecyr + njecyr.glif + njecyr.ss01 + njecyr.ss01.glif + njekomicyr + njekomicyr.glif + notequal + notequal.glif + ntilde + ntilde.glif + numbersign + numbersign.glif + numero + numero.glif + numero.ss01 + numero.ss01.glif + o + o.glif + o-cy + o-cy.glif + o-cy.accented + o-cy.accented.glif + oBinocular-cy + oB_inocular-cy.glif + oDoubleMonocular-cy + oD_oubleM_onocular-cy.glif + oMonocular-cy + oM_onocular-cy.glif + oacute + oacute.glif + obarcyr + obarcyr.glif + obardieresiscyr + obardieresiscyr.glif + obreve + obreve.glif + ocircumflex + ocircumflex.glif + odieresis + odieresis.glif + odieresiscyr + odieresiscyr.glif + oe + oe.glif + oe.ss01 + oe.ss01.glif + ogonek + ogonek.glif + ograve + ograve.glif + ohungarumlaut + ohungarumlaut.glif + omacron + omacron.glif + omegaBroad-cy + omegaB_road-cy.glif + omegacyr + omegacyr.glif + omegaroundcyr + omegaroundcyr.glif + omegatitlocyr + omegatitlocyr.glif + omultiocular-cy + omultiocular-cy.glif + omultiocular-cy.alt + omultiocular-cy.alt.glif + one + one.glif + one.osf + one.osf.glif + one.tf + one.tf.glif + onehalf + onehalf.glif + onequarter + onequarter.glif + onesuperior + onesuperior.glif + ordfeminine + ordfeminine.glif + ordmasculine + ordmasculine.glif + oslash + oslash.glif + oslashacute + oslashacute.glif + otcyr + otcyr.glif + otilde + otilde.glif + p + p.glif + p.ss01 + p.ss01.glif + palatcombcyr + palatcombcyr.glif + palochkacyr + palochkacyr.glif + paragraph + paragraph.glif + parenleft + parenleft.glif + parenleft.case + parenleft.case.glif + parenright + parenright.glif + parenright.case + parenright.case.glif + partialdiff + partialdiff.glif + pe-cy + pe-cy.glif + pe-cy.BGR + pe-cy.B_G_R_.glif + pe-cy.SRB + pe-cy.S_R_B_.glif + pehookcyr + pehookcyr.glif + percent + percent.glif + period + period.glif + periodcentered + periodcentered.glif + perthousand + perthousand.glif + petailcyr + petailcyr.glif + pi + pi.glif + plus + plus.glif + plusminus + plusminus.glif + pokrytiecombcyr + pokrytiecombcyr.glif + product + product.glif + proportional + proportional.glif + psicyr + psicyr.glif + q + q.glif + q.ss01 + q.ss01.glif + qacyr + qacyr.glif + question + question.glif + questiondown + questiondown.glif + questiondown.case + questiondown.case.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 + radical + radical.glif + rcaron + rcaron.glif + rcommaaccent + rcommaaccent.glif + registered + registered.glif + reversedzecyr + reversedzecyr.glif + rhacyr + rhacyr.glif + ring + ring.glif + ring.case + ring.case.glif + rookblack + rookblack.glif + ruble + ruble.glif + s + s.glif + sacute + sacute.glif + scaron + scaron.glif + scedilla + scedilla.glif + schwacyr + schwacyr.glif + schwadieresiscyr + schwadieresiscyr.glif + scircumflex + scircumflex.glif + scommaaccent + scommaaccent.glif + second + second.glif + section + section.glif + semicolon + semicolon.glif + semicolon.case + semicolon.case.glif + semisoftcyr + semisoftcyr.glif + seven + seven.glif + seven.osf + seven.osf.glif + seven.tf + seven.tf.glif + sha-cy + sha-cy.glif + sha-cy.BGR + sha-cy.B_G_R_.glif + shcha-cy + shcha-cy.glif + shcha-cy.BGR + shcha-cy.B_G_R_.glif + shhacyr + shhacyr.glif + shhatailcyr + shhatailcyr.glif + shwe-cy + shwe-cy.glif + six + six.glif + six.osf + six.osf.glif + six.tf + six.tf.glif + sjekomicyr + sjekomicyr.glif + slash + slash.glif + slash.case + slash.case.glif + softsign-cy + softsign-cy.glif + softsign-cy.BGR + softsign-cy.B_G_R_.glif + softsign-cy.ss01 + softsign-cy.ss01.glif + space + space.glif + spadewhite + spadewhite.glif + sterling + sterling.glif + summation + summation.glif + t + t.glif + t.ss01 + t.ss01.glif + tbar + tbar.glif + tbar.ss01 + tbar.ss01.glif + tcaron + tcaron.glif + tcaron.ss01 + tcaron.ss01.glif + tcedilla + tcedilla.glif + tcedilla.ss01 + tcedilla.ss01.glif + tche-cy + tche-cy.glif + tcommaaccent + tcommaaccent.glif + tcommaaccent.ss01 + tcommaaccent.ss01.glif + te-cy + te-cy.glif + te-cy.BGR + te-cy.B_G_R_.glif + te-cy.SRB + te-cy.S_R_B_.glif + te-cy.ss01 + te-cy.ss01.glif + tenge + tenge.glif + tenmillionscomb-cy + tenmillionscomb-cy.glif + tetailcyr + tetailcyr.glif + tetsecyr + tetsecyr.glif + tewithmiddlehook-cy + tewithmiddlehook-cy.glif + thorn + thorn.glif + thousandmillionscomb-cy + thousandmillionscomb-cy.glif + thousandscyr + thousandscyr.glif + thousandscyr.dnom + thousandscyr.dnom.glif + three + three.glif + three.osf + three.osf.glif + three.tf + three.tf.glif + threequarters + threequarters.glif + threesuperior + threesuperior.glif + tilde + tilde.glif + tilde.case + tilde.case.glif + titlocombcyr + titlocombcyr.glif + tjekomicyr + tjekomicyr.glif + trademark + trademark.glif + tse-cy + tse-cy.glif + tse-cy.BGR + tse-cy.B_G_R_.glif + tseReversed-cy + tseR_eversed-cy.glif + tshecyr + tshecyr.glif + tsse-cy + tsse-cy.glif + tswe-cy + tswe-cy.glif + twe-cy + twe-cy.glif + two + two.glif + two.osf + two.osf.glif + two.tf + two.tf.glif + twosuperior + twosuperior.glif + u + u.glif + u-cy + u-cy.glif + u-cy.accented + u-cy.accented.glif + uacute + uacute.glif + uacutedblcyr + uacutedblcyr.glif + ubreve + ubreve.glif + ucircumflex + ucircumflex.glif + udieresis + udieresis.glif + udieresiscyr + udieresiscyr.glif + ugrave + ugrave.glif + uhungarumlaut + uhungarumlaut.glif + ukMonograph-cy + ukM_onograph-cy.glif + ukcyr + ukcyr.glif + umacron + umacron.glif + umacroncyr + umacroncyr.glif + underscore + underscore.glif + uni1C80 + uni1C_80.glif + uni1C81 + uni1C_81.glif + uni1C82 + uni1C_82.glif + uni1C83 + uni1C_83.glif + uni1C84 + uni1C_84.glif + uni1C85 + uni1C_85.glif + uni1C86 + uni1C_86.glif + uni1C87 + uni1C_87.glif + uni1C88 + uni1C_88.glif + uni1EBC + uni1E_B_C_.glif + uni1EBD + uni1E_B_D_.glif + uni2010 + uni2010.glif + uni2DEE + uni2D_E_E_.glif + uni2DEE.case + uni2D_E_E_.case.glif + uniE000 + uniE_000.glif + uniE000.alt + uniE_000.alt.glif + uniE01A + uniE_01A_.glif + uniF43A + uniF_43A_.glif + uniF43B + uniF_43B_.glif + uniF45D + uniF_45D_.glif + uniF45E + uniF_45E_.glif + uniF45F + uniF_45F_.glif + uniF475 + uniF_475.glif + uniF476 + uniF_476.glif + uniF477 + uniF_477.glif + uniF478 + uniF_478.glif + uniF479 + uniF_479.glif + uniF498 + uniF_498.glif + uniF499 + uniF_499.glif + uniF49A + uniF_49A_.glif + uniF49B + uniF_49B_.glif + uniF49C + uniF_49C_.glif + uniF49D + uniF_49D_.glif + uniF49E + uniF_49E_.glif + uniF49F + uniF_49F_.glif + uniF4C6 + uniF_4C_6.glif + uniF4C7 + uniF_4C_7.glif + uniF4CC + uniF_4C_C_.glif + uniF4CD + uniF_4C_D_.glif + uniF4D2 + uniF_4D_2.glif + uniF4D3 + uniF_4D_3.glif + uniF4D4 + uniF_4D_4.glif + uniF4D5 + uniF_4D_5.glif + uniF4D6 + uniF_4D_6.glif + uniF4D7 + uniF_4D_7.glif + uniF4D8 + uniF_4D_8.glif + uniF4D9 + uniF_4D_9.glif + uniF50E + uniF_50E_.glif + uniF50F + uniF_50F_.glif + uniF510 + uniF_510.glif + uniF511 + uniF_511.glif + uniF512 + uniF_512.glif + uniF513 + uniF_513.glif + uniF514 + uniF_514.glif + uniF515 + uniF_515.glif + uniF516 + uniF_516.glif + uniF517 + uniF_517.glif + uniF518 + uniF_518.glif + uniF519 + uniF_519.glif + uniF51A + uniF_51A_.glif + uniF51B + uniF_51B_.glif + uniF51C + uniF_51C_.glif + uniF51D + uniF_51D_.glif + uniF51E + uniF_51E_.glif + uniF51F + uniF_51F_.glif + uniF521 + uniF_521.glif + uniF522 + uniF_522.glif + uniF523 + uniF_523.glif + uniF524 + uniF_524.glif + uniF525 + uniF_525.glif + uniF526 + uniF_526.glif + uniF527 + uniF_527.glif + uniF528 + uniF_528.glif + uniF529 + uniF_529.glif + uniF52A + uniF_52A_.glif + uniF52B + uniF_52B_.glif + uniF52C + uniF_52C_.glif + uniF52D + uniF_52D_.glif + uniF52E + uniF_52E_.glif + uniF52F + uniF_52F_.glif + uniF532 + uniF_532.glif + uniF533 + uniF_533.glif + uniF536 + uniF_536.glif + uniF537 + uniF_537.glif + uniF538 + uniF_538.glif + uniF539 + uniF_539.glif + uniF830 + uniF_830.glif + uniF831 + uniF_831.glif + uniF833 + uniF_833.glif + uniF834 + uniF_834.glif + uniF839 + uniF_839.glif + uniF83A + uniF_83A_.glif + uniF86F + uniF_86F_.glif + uniF870 + uniF_870.glif + uniF872 + uniF_872.glif + uniF873 + uniF_873.glif + uniF875 + uniF_875.glif + uniF876 + uniF_876.glif + uniF878 + uniF_878.glif + uniF879 + uniF_879.glif + uniF87B + uniF_87B_.glif + uniF87C + uniF_87C_.glif + uniF87E + uniF_87E_.glif + uniF87F + uniF_87F_.glif + uogonek + uogonek.glif + uring + uring.glif + ushort-cy + ushort-cy.glif + ustraightcyr + ustraightcyr.glif + ustraightstrokecyr + ustraightstrokecyr.glif + utilde + utilde.glif + v + v.glif + ve-cy + ve-cy.glif + ve-cy.BGR + ve-cy.B_G_R_.glif + ve-cy.ss01 + ve-cy.ss01.glif + virgo + virgo.glif + vzmetcomb-cy + vzmetcomb-cy.glif + w + w.glif + wacute + wacute.glif + wcircumflex + wcircumflex.glif + wdieresis + wdieresis.glif + wecyr + wecyr.glif + wgrave + wgrave.glif + x + x.glif + xatailcyr + xatailcyr.glif + y + y.glif + yacute + yacute.glif + yaecyr + yaecyr.glif + yatIotified-cy + yatI_otified-cy.glif + yatcyr + yatcyr.glif + yatcyr.BGR + yatcyr.B_G_R_.glif + ycircumflex + ycircumflex.glif + ydieresis + ydieresis.glif + yen + yen.glif + yen.ss01 + yen.ss01.glif + yerNeutral-cy + yerN_eutral-cy.glif + yeru-cy + yeru-cy.glif + yeru-cy.accented + yeru-cy.accented.glif + yeru-cy.ss01 + yeru-cy.ss01.glif + yeruBackyer-cy + yeruB_ackyer-cy.glif + yi-cy + yi-cy.glif + yi-cy.alt + yi-cy.alt.glif + ylongdieresiscyr + ylongdieresiscyr.glif + yn-cy + yn-cy.glif + yuReversed-cy + yuR_eversed-cy.glif + yusBlended-cy + yusB_lended-cy.glif + yusClosedlittle-cy + yusC_losedlittle-cy.glif + yusbigcyr + yusbigcyr.glif + yusbigiotifiedcyr + yusbigiotifiedcyr.glif + yusbigiotifiedcyr.BGR + yusbigiotifiedcyr.B_G_R_.glif + yusiotifiedClosedLittle-cy + yusiotifiedC_losedL_ittle-cy.glif + yuslittlecyr + yuslittlecyr.glif + yuslittleiotifiedcyr + yuslittleiotifiedcyr.glif + z + z.glif + zacute + zacute.glif + zcaron + zcaron.glif + zdotaccent + zdotaccent.glif + ze-cy + ze-cy.glif + ze-cy.BGR + ze-cy.B_G_R_.glif + zedieresiscyr + zedieresiscyr.glif + zemlya-cy + zemlya-cy.glif + zero + zero.glif + zero.osf + zero.osf.glif + zero.tf + zero.tf.glif + zetailcyr + zetailcyr.glif + zetailcyr.BSH + zetailcyr.B_S_H_.glif + zhe-cy + zhe-cy.glif + zhe-cy.BGR + zhe-cy.B_G_R_.glif + zhebrevecyr + zhebrevecyr.glif + zhedieresiscyr + zhedieresiscyr.glif + zhetailcyr + zhetailcyr.glif + zhwe-cy + zhwe-cy.glif + zjekomicyr + zjekomicyr.glif + + diff --git a/sources/FixelText-Medium.ufo/glyphs/copyright.glif b/sources/FixelText-Medium.ufo/glyphs/copyright.glif new file mode 100644 index 00000000..32afa25b --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/copyright.glif @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/crossedo-cy.glif b/sources/FixelText-Medium.ufo/glyphs/crossedo-cy.glif new file mode 100644 index 00000000..29763bd2 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/crossedo-cy.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + com.fontlab.recipe + o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/crossedswords.glif b/sources/FixelText-Medium.ufo/glyphs/crossedswords.glif new file mode 100644 index 00000000..dd02c7bb --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/crossedswords.glif @@ -0,0 +1,103 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/currency.glif b/sources/FixelText-Medium.ufo/glyphs/currency.glif new file mode 100644 index 00000000..008f3e6e --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/currency.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/d.glif b/sources/FixelText-Medium.ufo/glyphs/d.glif new file mode 100644 index 00000000..f85a291f --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/d.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/d.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/d.ss01.glif new file mode 100644 index 00000000..cf8cd960 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/d.ss01.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/dagger.glif b/sources/FixelText-Medium.ufo/glyphs/dagger.glif new file mode 100644 index 00000000..cc63e3dd --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/dagger.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/daggerdbl.glif b/sources/FixelText-Medium.ufo/glyphs/daggerdbl.glif new file mode 100644 index 00000000..86e55c06 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/daggerdbl.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/dcaron.glif b/sources/FixelText-Medium.ufo/glyphs/dcaron.glif new file mode 100644 index 00000000..71fc4917 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/dcaron.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + d+caron.salt + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/dcaron.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/dcaron.ss01.glif new file mode 100644 index 00000000..b53d25ce --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/dcaron.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + d.ss01+caron.salt + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/dchecyr.glif b/sources/FixelText-Medium.ufo/glyphs/dchecyr.glif new file mode 100644 index 00000000..22cd48f7 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/dchecyr.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + д+10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/dcroat.glif b/sources/FixelText-Medium.ufo/glyphs/dcroat.glif new file mode 100644 index 00000000..b3bd2b0d --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/dcroat.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + d + com.fontlab.metricsRight + |hbar + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/dcroat.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/dcroat.ss01.glif new file mode 100644 index 00000000..b47a76c7 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/dcroat.ss01.glif @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + d.ss01 + com.fontlab.metricsRight + |hbar + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/de-cy.B_G_R_.glif b/sources/FixelText-Medium.ufo/glyphs/de-cy.B_G_R_.glif new file mode 100644 index 00000000..210804df --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/de-cy.B_G_R_.glif @@ -0,0 +1,77 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + q + com.fontlab.metricsRight + q + com.fontlab.recipe + uni1C81 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/de-cy.glif b/sources/FixelText-Medium.ufo/glyphs/de-cy.glif new file mode 100644 index 00000000..3a19f186 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/de-cy.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/de-cy.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/de-cy.ss01.glif new file mode 100644 index 00000000..3878c2a8 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/de-cy.ss01.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/deS_oft-cy.glif b/sources/FixelText-Medium.ufo/glyphs/deS_oft-cy.glif new file mode 100644 index 00000000..f66a7399 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/deS_oft-cy.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + д + com.fontlab.metricsRight + ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/degree.glif b/sources/FixelText-Medium.ufo/glyphs/degree.glif new file mode 100644 index 00000000..4a060b06 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/degree.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/dekomicyr.glif b/sources/FixelText-Medium.ufo/glyphs/dekomicyr.glif new file mode 100644 index 00000000..0009d85d --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/dekomicyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + d + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/diamondwhite-misc.glif b/sources/FixelText-Medium.ufo/glyphs/diamondwhite-misc.glif new file mode 100644 index 00000000..1c963767 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/diamondwhite-misc.glif @@ -0,0 +1,145 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =38 + com.fontlab.metricsRight + =38 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/dieresis.alt.glif b/sources/FixelText-Medium.ufo/glyphs/dieresis.alt.glif new file mode 100644 index 00000000..f3f0d64f --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/dieresis.alt.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 1,0.6,0.994,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/dieresis.case.glif b/sources/FixelText-Medium.ufo/glyphs/dieresis.case.glif new file mode 100644 index 00000000..b7027bdb --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/dieresis.case.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/dieresis.glif b/sources/FixelText-Medium.ufo/glyphs/dieresis.glif new file mode 100644 index 00000000..3f87e033 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/dieresis.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/dieresisacute.glif b/sources/FixelText-Medium.ufo/glyphs/dieresisacute.glif new file mode 100644 index 00000000..e3eb7720 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/dieresisacute.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/dieresiscase.alt.glif b/sources/FixelText-Medium.ufo/glyphs/dieresiscase.alt.glif new file mode 100644 index 00000000..c1b10066 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/dieresiscase.alt.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 1,0.6,0.994,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/divide.glif b/sources/FixelText-Medium.ufo/glyphs/divide.glif new file mode 100644 index 00000000..c49c3ac6 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/divide.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/djecyr.glif b/sources/FixelText-Medium.ufo/glyphs/djecyr.glif new file mode 100644 index 00000000..3e8b4a96 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/djecyr.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hbar + com.fontlab.metricsRight + h + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/djekomicyr.glif b/sources/FixelText-Medium.ufo/glyphs/djekomicyr.glif new file mode 100644 index 00000000..09a39389 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/djekomicyr.glif @@ -0,0 +1,73 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + d + com.fontlab.metricsRight + njekomicyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/djerv-cy.glif b/sources/FixelText-Medium.ufo/glyphs/djerv-cy.glif new file mode 100644 index 00000000..95418904 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/djerv-cy.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + r() + com.fontlab.metricsRight + п-30 + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/dollar.glif b/sources/FixelText-Medium.ufo/glyphs/dollar.glif new file mode 100644 index 00000000..764e36af --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/dollar.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + S + com.fontlab.metricsRight + S + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/dotaccent.case.glif b/sources/FixelText-Medium.ufo/glyphs/dotaccent.case.glif new file mode 100644 index 00000000..e012e350 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/dotaccent.case.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/dotaccent.glif b/sources/FixelText-Medium.ufo/glyphs/dotaccent.glif new file mode 100644 index 00000000..73bd24d9 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/dotaccent.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/doubleo-cy.glif b/sources/FixelText-Medium.ufo/glyphs/doubleo-cy.glif new file mode 100644 index 00000000..2c359eac --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/doubleo-cy.glif @@ -0,0 +1,91 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + com.fontlab.recipe + o_o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/dramsignarmn.glif b/sources/FixelText-Medium.ufo/glyphs/dramsignarmn.glif new file mode 100644 index 00000000..bd9a468f --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/dramsignarmn.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/dwe-cy.glif b/sources/FixelText-Medium.ufo/glyphs/dwe-cy.glif new file mode 100644 index 00000000..daeb2e07 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/dwe-cy.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + д + com.fontlab.metricsRight + д + com.fontlab.recipe + д + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/dze-cy.glif b/sources/FixelText-Medium.ufo/glyphs/dze-cy.glif new file mode 100644 index 00000000..312e5631 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/dze-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + s + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/dzeR_eversed-cy.glif b/sources/FixelText-Medium.ufo/glyphs/dzeR_eversed-cy.glif new file mode 100644 index 00000000..0bacb252 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/dzeR_eversed-cy.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |s + com.fontlab.metricsRight + |s + com.fontlab.recipe + s + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/dzeabkhcyr.glif b/sources/FixelText-Medium.ufo/glyphs/dzeabkhcyr.glif new file mode 100644 index 00000000..df8c061a --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/dzeabkhcyr.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + z-30 + com.fontlab.metricsRight + з-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/dzelo-cy.glif b/sources/FixelText-Medium.ufo/glyphs/dzelo-cy.glif new file mode 100644 index 00000000..09c0203f --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/dzelo-cy.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/dzhecyr.glif b/sources/FixelText-Medium.ufo/glyphs/dzhecyr.glif new file mode 100644 index 00000000..7462e552 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/dzhecyr.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/dzjekomicyr.glif b/sources/FixelText-Medium.ufo/glyphs/dzjekomicyr.glif new file mode 100644 index 00000000..d115fa36 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/dzjekomicyr.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + zjekomicyr + com.fontlab.metricsRight + ц-5 + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/dzwe-cy.glif b/sources/FixelText-Medium.ufo/glyphs/dzwe-cy.glif new file mode 100644 index 00000000..3dd8bb06 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/dzwe-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + s + com.fontlab.metricsRight + s + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/dzze-cy.glif b/sources/FixelText-Medium.ufo/glyphs/dzze-cy.glif new file mode 100644 index 00000000..2ef47c46 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/dzze-cy.glif @@ -0,0 +1,84 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + д + com.fontlab.metricsRight + д-30 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/dzzhecyr.glif b/sources/FixelText-Medium.ufo/glyphs/dzzhecyr.glif new file mode 100644 index 00000000..776d0bb8 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/dzzhecyr.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + д+5 + com.fontlab.metricsRight + ж+5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/e-cy.accented.glif b/sources/FixelText-Medium.ufo/glyphs/e-cy.accented.glif new file mode 100644 index 00000000..bd67f260 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/e-cy.accented.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+acute + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/e-cy.glif b/sources/FixelText-Medium.ufo/glyphs/e-cy.glif new file mode 100644 index 00000000..1402b86d --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/e-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + c + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/e-cy.hist.glif b/sources/FixelText-Medium.ufo/glyphs/e-cy.hist.glif new file mode 100644 index 00000000..4f66a28c --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/e-cy.hist.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + c + com.fontlab.recipe + uni1C83 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/e.glif b/sources/FixelText-Medium.ufo/glyphs/e.glif new file mode 100644 index 00000000..0dff5277 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/e.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/e.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/e.ss01.glif new file mode 100644 index 00000000..bd5ddc9c --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/e.ss01.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + O-5 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/eacute.glif b/sources/FixelText-Medium.ufo/glyphs/eacute.glif new file mode 100644 index 00000000..3ab5bafa --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/eacute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+acute + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/eacute.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/eacute.ss01.glif new file mode 100644 index 00000000..1d7f0947 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/eacute.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+acute + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/ebreve.glif b/sources/FixelText-Medium.ufo/glyphs/ebreve.glif new file mode 100644 index 00000000..b67ccd61 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/ebreve.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+breve + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/ebreve.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/ebreve.ss01.glif new file mode 100644 index 00000000..094ec7b2 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/ebreve.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+breve + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/ecaron.glif b/sources/FixelText-Medium.ufo/glyphs/ecaron.glif new file mode 100644 index 00000000..1e174e1a --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/ecaron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+caron + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/ecaron.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/ecaron.ss01.glif new file mode 100644 index 00000000..a25ba25d --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/ecaron.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+caron + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/ecircumflex.glif b/sources/FixelText-Medium.ufo/glyphs/ecircumflex.glif new file mode 100644 index 00000000..5ac1d546 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/ecircumflex.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+circumflex + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/ecircumflex.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/ecircumflex.ss01.glif new file mode 100644 index 00000000..440a6095 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/ecircumflex.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+circumflex + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/edieresis.glif b/sources/FixelText-Medium.ufo/glyphs/edieresis.glif new file mode 100644 index 00000000..0dfc6b1b --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/edieresis.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsLeft + e + com.fontlab.metricsRight + e + com.fontlab.recipe + e+dieresis + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/edieresis.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/edieresis.ss01.glif new file mode 100644 index 00000000..717aa754 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/edieresis.ss01.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsLeft + e + com.fontlab.metricsRight + e + com.fontlab.recipe + e.ss01+dieresis + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/edotaccent.glif b/sources/FixelText-Medium.ufo/glyphs/edotaccent.glif new file mode 100644 index 00000000..ef2ffdd6 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/edotaccent.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+dotaccent + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/edotaccent.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/edotaccent.ss01.glif new file mode 100644 index 00000000..0313ad89 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/edotaccent.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+dotaccent + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/ef-cy.glif b/sources/FixelText-Medium.ufo/glyphs/ef-cy.glif new file mode 100644 index 00000000..7b58113e --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/ef-cy.glif @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/egrave.glif b/sources/FixelText-Medium.ufo/glyphs/egrave.glif new file mode 100644 index 00000000..64353acb --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/egrave.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+grave + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/egrave.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/egrave.ss01.glif new file mode 100644 index 00000000..ff57dda5 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/egrave.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+grave + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/eight.glif b/sources/FixelText-Medium.ufo/glyphs/eight.glif new file mode 100644 index 00000000..539b2081 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/eight.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/eight.osf.glif b/sources/FixelText-Medium.ufo/glyphs/eight.osf.glif new file mode 100644 index 00000000..2f2092bf --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/eight.osf.glif @@ -0,0 +1,15 @@ + + + + + + + + + com.fontlab.metricsLeft + eight + com.fontlab.metricsRight + eight + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/eight.tf.glif b/sources/FixelText-Medium.ufo/glyphs/eight.tf.glif new file mode 100644 index 00000000..ec680d3a --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/eight.tf.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/eiotifiedcyr.B_G_R_.glif b/sources/FixelText-Medium.ufo/glyphs/eiotifiedcyr.B_G_R_.glif new file mode 100644 index 00000000..5c90546c --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/eiotifiedcyr.B_G_R_.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + c + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/eiotifiedcyr.glif b/sources/FixelText-Medium.ufo/glyphs/eiotifiedcyr.glif new file mode 100644 index 00000000..a1088d70 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/eiotifiedcyr.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + c + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/el-cy.B_G_R_.glif b/sources/FixelText-Medium.ufo/glyphs/el-cy.B_G_R_.glif new file mode 100644 index 00000000..394e3ed1 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/el-cy.B_G_R_.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + v + com.fontlab.metricsRight + v + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/el-cy.glif b/sources/FixelText-Medium.ufo/glyphs/el-cy.glif new file mode 100644 index 00000000..8af33cef --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/el-cy.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/el-cy.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/el-cy.ss01.glif new file mode 100644 index 00000000..00b16e9b --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/el-cy.ss01.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/elS_oft-cy.glif b/sources/FixelText-Medium.ufo/glyphs/elS_oft-cy.glif new file mode 100644 index 00000000..c1326fa2 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/elS_oft-cy.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/elhookcyr.glif b/sources/FixelText-Medium.ufo/glyphs/elhookcyr.glif new file mode 100644 index 00000000..29c8b56a --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/elhookcyr.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + н + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/ellipsis.glif b/sources/FixelText-Medium.ufo/glyphs/ellipsis.glif new file mode 100644 index 00000000..e5460b50 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/ellipsis.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/elmiddlehookcyr.glif b/sources/FixelText-Medium.ufo/glyphs/elmiddlehookcyr.glif new file mode 100644 index 00000000..1eaa7d39 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/elmiddlehookcyr.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + enmiddlehookcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/elsharptailcyr.glif b/sources/FixelText-Medium.ufo/glyphs/elsharptailcyr.glif new file mode 100644 index 00000000..38a251e1 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/elsharptailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + ensharptailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/eltailcyr.glif b/sources/FixelText-Medium.ufo/glyphs/eltailcyr.glif new file mode 100644 index 00000000..970eec07 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/eltailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/em-cy.glif b/sources/FixelText-Medium.ufo/glyphs/em-cy.glif new file mode 100644 index 00000000..89994080 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/em-cy.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/emS_oft-cy.glif b/sources/FixelText-Medium.ufo/glyphs/emS_oft-cy.glif new file mode 100644 index 00000000..32c1ce55 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/emS_oft-cy.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + м + com.fontlab.metricsRight + ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/emacron.glif b/sources/FixelText-Medium.ufo/glyphs/emacron.glif new file mode 100644 index 00000000..dc9edcd1 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/emacron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+macron + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/emacron.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/emacron.ss01.glif new file mode 100644 index 00000000..42b12cfd --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/emacron.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+macron + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/emdash.case.glif b/sources/FixelText-Medium.ufo/glyphs/emdash.case.glif new file mode 100644 index 00000000..8db028b0 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/emdash.case.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/emdash.glif b/sources/FixelText-Medium.ufo/glyphs/emdash.glif new file mode 100644 index 00000000..1fd3af78 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/emdash.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/emsharptailcyr.glif b/sources/FixelText-Medium.ufo/glyphs/emsharptailcyr.glif new file mode 100644 index 00000000..666fd8d4 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/emsharptailcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + м + com.fontlab.metricsRight + ensharptailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/en-cy.glif b/sources/FixelText-Medium.ufo/glyphs/en-cy.glif new file mode 100644 index 00000000..2b7cec64 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/en-cy.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/enclosingcirclecomb.glif b/sources/FixelText-Medium.ufo/glyphs/enclosingcirclecomb.glif new file mode 100644 index 00000000..41428061 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/enclosingcirclecomb.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/endash.case.glif b/sources/FixelText-Medium.ufo/glyphs/endash.case.glif new file mode 100644 index 00000000..991a1fa5 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/endash.case.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/endash.glif b/sources/FixelText-Medium.ufo/glyphs/endash.glif new file mode 100644 index 00000000..316a69ca --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/endash.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/eng.glif b/sources/FixelText-Medium.ufo/glyphs/eng.glif new file mode 100644 index 00000000..74e5b5ef --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/eng.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + n + com.fontlab.metricsRight + dotlessj + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/engecyr.glif b/sources/FixelText-Medium.ufo/glyphs/engecyr.glif new file mode 100644 index 00000000..7b5e3601 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/engecyr.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/enhookcyr.glif b/sources/FixelText-Medium.ufo/glyphs/enhookcyr.glif new file mode 100644 index 00000000..308f1687 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/enhookcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/enhookleftcyr.glif b/sources/FixelText-Medium.ufo/glyphs/enhookleftcyr.glif new file mode 100644 index 00000000..e237f86f --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/enhookleftcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + j + com.fontlab.metricsRight + н + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/enmiddlehookcyr.glif b/sources/FixelText-Medium.ufo/glyphs/enmiddlehookcyr.glif new file mode 100644 index 00000000..5eb1e3c3 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/enmiddlehookcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + softsign-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/ensharptailcyr.glif b/sources/FixelText-Medium.ufo/glyphs/ensharptailcyr.glif new file mode 100644 index 00000000..44d1ef47 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/ensharptailcyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + д + com.fontlab.recipe + entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/entailcyr.glif b/sources/FixelText-Medium.ufo/glyphs/entailcyr.glif new file mode 100644 index 00000000..7c1da17b --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/entailcyr.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + ц + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/eogonek.glif b/sources/FixelText-Medium.ufo/glyphs/eogonek.glif new file mode 100644 index 00000000..85e5714c --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/eogonek.glif @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + e+ogonek + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/eogonek.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/eogonek.ss01.glif new file mode 100644 index 00000000..83e4b242 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/eogonek.ss01.glif @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + e.ss01+ogonek + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/equal.glif b/sources/FixelText-Medium.ufo/glyphs/equal.glif new file mode 100644 index 00000000..fd932cec --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/equal.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/er-cy.glif b/sources/FixelText-Medium.ufo/glyphs/er-cy.glif new file mode 100644 index 00000000..e945a4d8 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/er-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + p + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/er-cy.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/er-cy.ss01.glif new file mode 100644 index 00000000..17b045b6 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/er-cy.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + p.ss01 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/ereversed-cy.accented.glif b/sources/FixelText-Medium.ufo/glyphs/ereversed-cy.accented.glif new file mode 100644 index 00000000..99e263b2 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/ereversed-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + э+acute + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/ereversed-cy.glif b/sources/FixelText-Medium.ufo/glyphs/ereversed-cy.glif new file mode 100644 index 00000000..faa78fb0 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/ereversed-cy.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |c + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/ereverseddieresiscyr.glif b/sources/FixelText-Medium.ufo/glyphs/ereverseddieresiscyr.glif new file mode 100644 index 00000000..7f2ddae1 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/ereverseddieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ereversed-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/ertickcyr.glif b/sources/FixelText-Medium.ufo/glyphs/ertickcyr.glif new file mode 100644 index 00000000..640892e7 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/ertickcyr.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + p + com.fontlab.metricsRight + p + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/es-cy.glif b/sources/FixelText-Medium.ufo/glyphs/es-cy.glif new file mode 100644 index 00000000..40df6c2f --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/es-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/estailcyr.B_S_H_.glif b/sources/FixelText-Medium.ufo/glyphs/estailcyr.B_S_H_.glif new file mode 100644 index 00000000..9bd87d02 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/estailcyr.B_S_H_.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + c + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/estailcyr.C_H_U_.glif b/sources/FixelText-Medium.ufo/glyphs/estailcyr.C_H_U_.glif new file mode 100644 index 00000000..9e21842d --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/estailcyr.C_H_U_.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+cedilla + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/estailcyr.glif b/sources/FixelText-Medium.ufo/glyphs/estailcyr.glif new file mode 100644 index 00000000..169d9d6f --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/estailcyr.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + с + com.fontlab.metricsRight + с + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/estimated.glif b/sources/FixelText-Medium.ufo/glyphs/estimated.glif new file mode 100644 index 00000000..e8ffe550 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/estimated.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/eth.glif b/sources/FixelText-Medium.ufo/glyphs/eth.glif new file mode 100644 index 00000000..1b90600e --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/eth.glif @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/eturned.glif b/sources/FixelText-Medium.ufo/glyphs/eturned.glif new file mode 100644 index 00000000..610fdde1 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/eturned.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + schwacyr + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/euro.glif b/sources/FixelText-Medium.ufo/glyphs/euro.glif new file mode 100644 index 00000000..2bfe1f33 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/euro.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + C + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/exclam.glif b/sources/FixelText-Medium.ufo/glyphs/exclam.glif new file mode 100644 index 00000000..21edcd9a --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/exclam.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/exclamdown.case.glif b/sources/FixelText-Medium.ufo/glyphs/exclamdown.case.glif new file mode 100644 index 00000000..d8af34d8 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/exclamdown.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + exclamdown + com.fontlab.metricsRight + exclamdown + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/exclamdown.glif b/sources/FixelText-Medium.ufo/glyphs/exclamdown.glif new file mode 100644 index 00000000..5f8f0044 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/exclamdown.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/f.glif b/sources/FixelText-Medium.ufo/glyphs/f.glif new file mode 100644 index 00000000..6275aba3 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/f.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/f.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/f.ss01.glif new file mode 100644 index 00000000..5b1b247c --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/f.ss01.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/f_f.glif b/sources/FixelText-Medium.ufo/glyphs/f_f.glif new file mode 100644 index 00000000..a6185109 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/f_f.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f + com.fontlab.metricsRight + f + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/f_f.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/f_f.ss01.glif new file mode 100644 index 00000000..46d8bef3 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/f_f.ss01.glif @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f.ss01 + com.fontlab.metricsRight + f.ss01 + com.fontlab.recipe + f.ss01_f.ss01 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/f_f_i.glif b/sources/FixelText-Medium.ufo/glyphs/f_f_i.glif new file mode 100644 index 00000000..f4256ffe --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/f_f_i.glif @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f + com.fontlab.metricsRight + i + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/f_f_i.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/f_f_i.ss01.glif new file mode 100644 index 00000000..223f6586 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/f_f_i.ss01.glif @@ -0,0 +1,88 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f.ss01 + com.fontlab.metricsRight + i + com.fontlab.recipe + f.ss01_f.ss01_i + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/f_f_l.glif b/sources/FixelText-Medium.ufo/glyphs/f_f_l.glif new file mode 100644 index 00000000..9f71c977 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/f_f_l.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f + com.fontlab.metricsRight + l + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/f_f_l.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/f_f_l.ss01.glif new file mode 100644 index 00000000..23e47292 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/f_f_l.ss01.glif @@ -0,0 +1,86 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f.ss01 + com.fontlab.metricsRight + l.ss01 + com.fontlab.recipe + f.ss01_f.ss01_l.ss01 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/fi.glif b/sources/FixelText-Medium.ufo/glyphs/fi.glif new file mode 100644 index 00000000..6aafad74 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/fi.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f + com.fontlab.metricsRight + i + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/fi.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/fi.ss01.glif new file mode 100644 index 00000000..4ed5acd1 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/fi.ss01.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f.ss01 + com.fontlab.metricsRight + i + com.fontlab.recipe + f.ss01_i + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/fitacyr.glif b/sources/FixelText-Medium.ufo/glyphs/fitacyr.glif new file mode 100644 index 00000000..6cd5c86a --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/fitacyr.glif @@ -0,0 +1,76 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + obarcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/five.glif b/sources/FixelText-Medium.ufo/glyphs/five.glif new file mode 100644 index 00000000..a0d89923 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/five.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/five.osf.glif b/sources/FixelText-Medium.ufo/glyphs/five.osf.glif new file mode 100644 index 00000000..0ed93e94 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/five.osf.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + five + com.fontlab.metricsRight + five + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/five.tf.glif b/sources/FixelText-Medium.ufo/glyphs/five.tf.glif new file mode 100644 index 00000000..f2007450 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/five.tf.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/fl.glif b/sources/FixelText-Medium.ufo/glyphs/fl.glif new file mode 100644 index 00000000..14e12e2b --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/fl.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f + com.fontlab.metricsRight + l + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/fl.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/fl.ss01.glif new file mode 100644 index 00000000..251a2718 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/fl.ss01.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f.ss01 + com.fontlab.metricsRight + l.ss01 + com.fontlab.recipe + f.ss01_l.ss01 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/floretteblack.glif b/sources/FixelText-Medium.ufo/glyphs/floretteblack.glif new file mode 100644 index 00000000..92dd6bb4 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/floretteblack.glif @@ -0,0 +1,522 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/floretteoutlinedpetalledblackeight.glif b/sources/FixelText-Medium.ufo/glyphs/floretteoutlinedpetalledblackeight.glif new file mode 100644 index 00000000..3602e4f2 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/floretteoutlinedpetalledblackeight.glif @@ -0,0 +1,693 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/florettewhite.glif b/sources/FixelText-Medium.ufo/glyphs/florettewhite.glif new file mode 100644 index 00000000..615cccae --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/florettewhite.glif @@ -0,0 +1,417 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/florin.glif b/sources/FixelText-Medium.ufo/glyphs/florin.glif new file mode 100644 index 00000000..384878df --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/florin.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/flower.glif b/sources/FixelText-Medium.ufo/glyphs/flower.glif new file mode 100644 index 00000000..aeff2fd0 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/flower.glif @@ -0,0 +1,278 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/four.glif b/sources/FixelText-Medium.ufo/glyphs/four.glif new file mode 100644 index 00000000..a34205ce --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/four.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/four.osf.glif b/sources/FixelText-Medium.ufo/glyphs/four.osf.glif new file mode 100644 index 00000000..aebde7c2 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/four.osf.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + four + com.fontlab.metricsRight + four + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/four.tf.glif b/sources/FixelText-Medium.ufo/glyphs/four.tf.glif new file mode 100644 index 00000000..4902b2ce --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/four.tf.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/fraction.glif b/sources/FixelText-Medium.ufo/glyphs/fraction.glif new file mode 100644 index 00000000..efa6c701 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/fraction.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/g.glif b/sources/FixelText-Medium.ufo/glyphs/g.glif new file mode 100644 index 00000000..99c65ff4 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/g.glif @@ -0,0 +1,94 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/g.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/g.ss01.glif new file mode 100644 index 00000000..f3de0313 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/g.ss01.glif @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/gacute.glif b/sources/FixelText-Medium.ufo/glyphs/gacute.glif new file mode 100644 index 00000000..07c9c9d3 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/gacute.glif @@ -0,0 +1,109 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + g+acute + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/gacute.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/gacute.ss01.glif new file mode 100644 index 00000000..561c8f72 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/gacute.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + g.ss01+acute + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/gbreve.glif b/sources/FixelText-Medium.ufo/glyphs/gbreve.glif new file mode 100644 index 00000000..43a66f75 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/gbreve.glif @@ -0,0 +1,119 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + g+breve + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/gbreve.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/gbreve.ss01.glif new file mode 100644 index 00000000..fc279f00 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/gbreve.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + g.ss01+breve + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/gcircumflex.glif b/sources/FixelText-Medium.ufo/glyphs/gcircumflex.glif new file mode 100644 index 00000000..aa93d5a6 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/gcircumflex.glif @@ -0,0 +1,113 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + g+circumflex + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/gcircumflex.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/gcircumflex.ss01.glif new file mode 100644 index 00000000..7f5f6972 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/gcircumflex.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + g.ss01+circumflex + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/gcommaaccent.glif b/sources/FixelText-Medium.ufo/glyphs/gcommaaccent.glif new file mode 100644 index 00000000..ccf952da --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/gcommaaccent.glif @@ -0,0 +1,121 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + g+commaaccentcomb.salt + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/gcommaaccent.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/gcommaaccent.ss01.glif new file mode 100644 index 00000000..b37f8121 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/gcommaaccent.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + g.ss01+commaaccentcomb.salt + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/gdotaccent.glif b/sources/FixelText-Medium.ufo/glyphs/gdotaccent.glif new file mode 100644 index 00000000..14b76014 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/gdotaccent.glif @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + g+dotaccent + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/gdotaccent.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/gdotaccent.ss01.glif new file mode 100644 index 00000000..b009dcf7 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/gdotaccent.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + g.ss01+dotaccent + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/ge-cy.B_G_R_.glif b/sources/FixelText-Medium.ufo/glyphs/ge-cy.B_G_R_.glif new file mode 100644 index 00000000..02f2fa91 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/ge-cy.B_G_R_.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |s+5 + com.fontlab.metricsRight + |s+5 + com.fontlab.recipe + dzeReversed-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/ge-cy.S_R_B_.glif b/sources/FixelText-Medium.ufo/glyphs/ge-cy.S_R_B_.glif new file mode 100644 index 00000000..657cc5c3 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/ge-cy.S_R_B_.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + iota-cy+macron + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/ge-cy.glif b/sources/FixelText-Medium.ufo/glyphs/ge-cy.glif new file mode 100644 index 00000000..4add4946 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/ge-cy.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + т + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/gehookcyr.glif b/sources/FixelText-Medium.ufo/glyphs/gehookcyr.glif new file mode 100644 index 00000000..c63cb8bb --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/gehookcyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + г + com.fontlab.metricsRight + enmiddlehookcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/gehookstrokecyr.glif b/sources/FixelText-Medium.ufo/glyphs/gehookstrokecyr.glif new file mode 100644 index 00000000..88a04f80 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/gehookstrokecyr.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + gestrokecyr + com.fontlab.metricsRight + gestrokecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/germandbls.glif b/sources/FixelText-Medium.ufo/glyphs/germandbls.glif new file mode 100644 index 00000000..fc46c45c --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/germandbls.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + h-5 + com.fontlab.metricsRight + з + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/germandbls.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/germandbls.ss01.glif new file mode 100644 index 00000000..89ffa164 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/germandbls.ss01.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f.ss01 + com.fontlab.metricsRight + з + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/gestrokecyr.B_S_H_.glif b/sources/FixelText-Medium.ufo/glyphs/gestrokecyr.B_S_H_.glif new file mode 100644 index 00000000..4baccacd --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/gestrokecyr.B_S_H_.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + г + com.fontlab.metricsRight + gestrokecyr + com.fontlab.recipe + gestrokecyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/gestrokecyr.glif b/sources/FixelText-Medium.ufo/glyphs/gestrokecyr.glif new file mode 100644 index 00000000..379335f7 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/gestrokecyr.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + г + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/getailcyr.glif b/sources/FixelText-Medium.ufo/glyphs/getailcyr.glif new file mode 100644 index 00000000..4545ae30 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/getailcyr.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + г + com.fontlab.metricsRight + г + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/gheupturn-cy.glif b/sources/FixelText-Medium.ufo/glyphs/gheupturn-cy.glif new file mode 100644 index 00000000..c3de7a14 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/gheupturn-cy.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + г + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/gjecyr.S_R_B_.glif b/sources/FixelText-Medium.ufo/glyphs/gjecyr.S_R_B_.glif new file mode 100644 index 00000000..349a45ee --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/gjecyr.S_R_B_.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + iota-cy+macronacute.SRB + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/gjecyr.glif b/sources/FixelText-Medium.ufo/glyphs/gjecyr.glif new file mode 100644 index 00000000..cba56e4b --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/gjecyr.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/grave.case.glif b/sources/FixelText-Medium.ufo/glyphs/grave.case.glif new file mode 100644 index 00000000..c47aff7c --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/grave.case.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/grave.glif b/sources/FixelText-Medium.ufo/glyphs/grave.glif new file mode 100644 index 00000000..52a63246 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/grave.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/greater.glif b/sources/FixelText-Medium.ufo/glyphs/greater.glif new file mode 100644 index 00000000..8123d169 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/greater.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |less + com.fontlab.metricsRight + |less + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/greaterequal.glif b/sources/FixelText-Medium.ufo/glyphs/greaterequal.glif new file mode 100644 index 00000000..696c06e0 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/greaterequal.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/guillemetleft.case.glif b/sources/FixelText-Medium.ufo/glyphs/guillemetleft.case.glif new file mode 100644 index 00000000..cb59bca9 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/guillemetleft.case.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + guilsinglleft + com.fontlab.metricsRight + guilsinglleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/guillemetleft.glif b/sources/FixelText-Medium.ufo/glyphs/guillemetleft.glif new file mode 100644 index 00000000..24d4bc93 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/guillemetleft.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + guilsinglleft + com.fontlab.metricsRight + guilsinglleft + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/guillemetright.case.glif b/sources/FixelText-Medium.ufo/glyphs/guillemetright.case.glif new file mode 100644 index 00000000..d0c99fb9 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/guillemetright.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |guillemetleft.case + com.fontlab.metricsRight + |guillemetleft.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/guillemetright.glif b/sources/FixelText-Medium.ufo/glyphs/guillemetright.glif new file mode 100644 index 00000000..baf81890 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/guillemetright.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |guilsinglleft + com.fontlab.metricsRight + |guilsinglleft + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/guilsinglleft.case.glif b/sources/FixelText-Medium.ufo/glyphs/guilsinglleft.case.glif new file mode 100644 index 00000000..23c7dd38 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/guilsinglleft.case.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/guilsinglleft.glif b/sources/FixelText-Medium.ufo/glyphs/guilsinglleft.glif new file mode 100644 index 00000000..3b2bf58a --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/guilsinglleft.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/guilsinglright.case.glif b/sources/FixelText-Medium.ufo/glyphs/guilsinglright.case.glif new file mode 100644 index 00000000..18888e60 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/guilsinglright.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |guilsinglleft + com.fontlab.metricsRight + |guilsinglleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/guilsinglright.glif b/sources/FixelText-Medium.ufo/glyphs/guilsinglright.glif new file mode 100644 index 00000000..e412aacd --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/guilsinglright.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + |guilsinglleft + com.fontlab.metricsRight + |guilsinglleft + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/h.glif b/sources/FixelText-Medium.ufo/glyphs/h.glif new file mode 100644 index 00000000..e111f8e8 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/h.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + com.fontlab.metricsRight + n + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/ha-cy.glif b/sources/FixelText-Medium.ufo/glyphs/ha-cy.glif new file mode 100644 index 00000000..d973554d --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/ha-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + x + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/haabkhcyr.glif b/sources/FixelText-Medium.ufo/glyphs/haabkhcyr.glif new file mode 100644 index 00000000..523216dc --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/haabkhcyr.glif @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + |o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/hahookcyr.glif b/sources/FixelText-Medium.ufo/glyphs/hahookcyr.glif new file mode 100644 index 00000000..8a8bf30c --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/hahookcyr.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + x + com.fontlab.metricsRight + x + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/hardsign-cy.B_G_R_.glif b/sources/FixelText-Medium.ufo/glyphs/hardsign-cy.B_G_R_.glif new file mode 100644 index 00000000..247dfbf9 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/hardsign-cy.B_G_R_.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/hardsign-cy.glif b/sources/FixelText-Medium.ufo/glyphs/hardsign-cy.glif new file mode 100644 index 00000000..d93ee522 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/hardsign-cy.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/hardsign-cy.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/hardsign-cy.ss01.glif new file mode 100644 index 00000000..66fbb2bd --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/hardsign-cy.ss01.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/hastrokecyr.glif b/sources/FixelText-Medium.ufo/glyphs/hastrokecyr.glif new file mode 100644 index 00000000..872f20f3 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/hastrokecyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + x + com.fontlab.metricsRight + x + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/hbar.glif b/sources/FixelText-Medium.ufo/glyphs/hbar.glif new file mode 100644 index 00000000..c5afe01e --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/hbar.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + h + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/hcircumflex.glif b/sources/FixelText-Medium.ufo/glyphs/hcircumflex.glif new file mode 100644 index 00000000..ccb78b99 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/hcircumflex.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + h+circumflex.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/heart.glif b/sources/FixelText-Medium.ufo/glyphs/heart.glif new file mode 100644 index 00000000..33683d2b --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/heart.glif @@ -0,0 +1,320 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/heartwhite.glif b/sources/FixelText-Medium.ufo/glyphs/heartwhite.glif new file mode 100644 index 00000000..a9085c0c --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/heartwhite.glif @@ -0,0 +1,189 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =34 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/hryvnia.glif b/sources/FixelText-Medium.ufo/glyphs/hryvnia.glif new file mode 100644 index 00000000..b73d1f74 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/hryvnia.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/hundredmillionscomb-cy.glif b/sources/FixelText-Medium.ufo/glyphs/hundredmillionscomb-cy.glif new file mode 100644 index 00000000..f1113af0 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/hundredmillionscomb-cy.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/hundredthousandscombcyr.glif b/sources/FixelText-Medium.ufo/glyphs/hundredthousandscombcyr.glif new file mode 100644 index 00000000..48594b6f --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/hundredthousandscombcyr.glif @@ -0,0 +1,141 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/hungarumlaut.case.glif b/sources/FixelText-Medium.ufo/glyphs/hungarumlaut.case.glif new file mode 100644 index 00000000..0f8f51fb --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/hungarumlaut.case.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/hungarumlaut.glif b/sources/FixelText-Medium.ufo/glyphs/hungarumlaut.glif new file mode 100644 index 00000000..96b5ec09 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/hungarumlaut.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/hwe-cy.glif b/sources/FixelText-Medium.ufo/glyphs/hwe-cy.glif new file mode 100644 index 00000000..b5ab15ff --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/hwe-cy.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + h + com.fontlab.metricsRight + h + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/hyphen.case.glif b/sources/FixelText-Medium.ufo/glyphs/hyphen.case.glif new file mode 100644 index 00000000..cb36465d --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/hyphen.case.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.metricsLeft + hyphen + com.fontlab.metricsRight + hyphen + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/hyphen.glif b/sources/FixelText-Medium.ufo/glyphs/hyphen.glif new file mode 100644 index 00000000..5e2afe41 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/hyphen.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/i-cy.glif b/sources/FixelText-Medium.ufo/glyphs/i-cy.glif new file mode 100644 index 00000000..a315a517 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/i-cy.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + i + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/i.glif b/sources/FixelText-Medium.ufo/glyphs/i.glif new file mode 100644 index 00000000..4d51dc8c --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/i.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + dotlessi+dotaccent + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/ia-cy.accented.glif b/sources/FixelText-Medium.ufo/glyphs/ia-cy.accented.glif new file mode 100644 index 00000000..6929a177 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/ia-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + я+acute + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/ia-cy.glif b/sources/FixelText-Medium.ufo/glyphs/ia-cy.glif new file mode 100644 index 00000000..b507c3f4 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/ia-cy.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/ia-cy.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/ia-cy.ss01.glif new file mode 100644 index 00000000..d78938bb --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/ia-cy.ss01.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/iacute.glif b/sources/FixelText-Medium.ufo/glyphs/iacute.glif new file mode 100644 index 00000000..9656e973 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/iacute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + dotlessi+acute + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/ibreve.glif b/sources/FixelText-Medium.ufo/glyphs/ibreve.glif new file mode 100644 index 00000000..a36e39ff --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/ibreve.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + dotlessi+breve + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/icircumflex.glif b/sources/FixelText-Medium.ufo/glyphs/icircumflex.glif new file mode 100644 index 00000000..49c5bfd2 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/icircumflex.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + dotlessi+circumflex + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/idieresis.glif b/sources/FixelText-Medium.ufo/glyphs/idieresis.glif new file mode 100644 index 00000000..4a3a3b24 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/idieresis.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + idotless+dieresis.alt + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/idieresiscyr.glif b/sources/FixelText-Medium.ufo/glyphs/idieresiscyr.glif new file mode 100644 index 00000000..e2443298 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/idieresiscyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ii-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/idotless.glif b/sources/FixelText-Medium.ufo/glyphs/idotless.glif new file mode 100644 index 00000000..d1923150 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/idotless.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/ie-cy.glif b/sources/FixelText-Medium.ufo/glyphs/ie-cy.glif new file mode 100644 index 00000000..a2b55c2a --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/ie-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/ie-cy.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/ie-cy.ss01.glif new file mode 100644 index 00000000..619b32e6 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/ie-cy.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/iebrevecyr.glif b/sources/FixelText-Medium.ufo/glyphs/iebrevecyr.glif new file mode 100644 index 00000000..b7eb6131 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/iebrevecyr.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+breve + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/iegravecyr.S_R_B_.glif b/sources/FixelText-Medium.ufo/glyphs/iegravecyr.S_R_B_.glif new file mode 100644 index 00000000..82501a3d --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/iegravecyr.S_R_B_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+grave + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/iegravecyr.glif b/sources/FixelText-Medium.ufo/glyphs/iegravecyr.glif new file mode 100644 index 00000000..2de386c4 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/iegravecyr.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+grave + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/igrave.glif b/sources/FixelText-Medium.ufo/glyphs/igrave.glif new file mode 100644 index 00000000..f264a64d --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/igrave.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + dotlessi+grave + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/igravecyr.S_R_B_.glif b/sources/FixelText-Medium.ufo/glyphs/igravecyr.S_R_B_.glif new file mode 100644 index 00000000..426df9fb --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/igravecyr.S_R_B_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+grave + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/igravecyr.glif b/sources/FixelText-Medium.ufo/glyphs/igravecyr.glif new file mode 100644 index 00000000..b9cb2e41 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/igravecyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ii-cy+grave + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/ii-cy.B_G_R_.glif b/sources/FixelText-Medium.ufo/glyphs/ii-cy.B_G_R_.glif new file mode 100644 index 00000000..97a9a313 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/ii-cy.B_G_R_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/ii-cy.accented.glif b/sources/FixelText-Medium.ufo/glyphs/ii-cy.accented.glif new file mode 100644 index 00000000..c5132a74 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/ii-cy.accented.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + и+acute + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/ii-cy.glif b/sources/FixelText-Medium.ufo/glyphs/ii-cy.glif new file mode 100644 index 00000000..f00ab568 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/ii-cy.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/iishort-cy.B_G_R_.glif b/sources/FixelText-Medium.ufo/glyphs/iishort-cy.B_G_R_.glif new file mode 100644 index 00000000..52a5a70a --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/iishort-cy.B_G_R_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/iishort-cy.glif b/sources/FixelText-Medium.ufo/glyphs/iishort-cy.glif new file mode 100644 index 00000000..4748e0c0 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/iishort-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + icyr+breve + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/ij.glif b/sources/FixelText-Medium.ufo/glyphs/ij.glif new file mode 100644 index 00000000..675cea05 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/ij.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + i + com.fontlab.metricsRight + j + com.fontlab.recipe + i_j + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/imacron.glif b/sources/FixelText-Medium.ufo/glyphs/imacron.glif new file mode 100644 index 00000000..fcac712c --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/imacron.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =5 + com.fontlab.metricsRight + =5 + com.fontlab.recipe + idotless+macron + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/imacroncyr.glif b/sources/FixelText-Medium.ufo/glyphs/imacroncyr.glif new file mode 100644 index 00000000..06d37552 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/imacroncyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ii-cy+macron + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/increment.glif b/sources/FixelText-Medium.ufo/glyphs/increment.glif new file mode 100644 index 00000000..2bd17d11 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/increment.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/infinity.glif b/sources/FixelText-Medium.ufo/glyphs/infinity.glif new file mode 100644 index 00000000..cfd5a14a --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/infinity.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/integral.glif b/sources/FixelText-Medium.ufo/glyphs/integral.glif new file mode 100644 index 00000000..4eb42a4e --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/integral.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/io-cy.accented.glif b/sources/FixelText-Medium.ufo/glyphs/io-cy.accented.glif new file mode 100644 index 00000000..0f8c1208 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/io-cy.accented.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsLeft + e + com.fontlab.metricsRight + e + com.fontlab.recipe + e+dieresisacute + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/io-cy.glif b/sources/FixelText-Medium.ufo/glyphs/io-cy.glif new file mode 100644 index 00000000..cdd4675a --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/io-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + edieresis + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/io-cy.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/io-cy.ss01.glif new file mode 100644 index 00000000..f2032f5c --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/io-cy.ss01.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + edieresis.ss01 + com.schriftgestaltung.Glyphs.ComponentInfo + + + alignment + -1 + index + 0 + name + edieresis.ss01 + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/iogonek.glif b/sources/FixelText-Medium.ufo/glyphs/iogonek.glif new file mode 100644 index 00000000..d0657a6d --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/iogonek.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + i+ogonek + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/iota-cy.glif b/sources/FixelText-Medium.ufo/glyphs/iota-cy.glif new file mode 100644 index 00000000..023524c3 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/iota-cy.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l.ss01 + com.fontlab.metricsRight + l.ss01 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/iotifieda-cy.B_G_R_.glif b/sources/FixelText-Medium.ufo/glyphs/iotifieda-cy.B_G_R_.glif new file mode 100644 index 00000000..bc8509a1 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/iotifieda-cy.B_G_R_.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + el-cy.BGR + com.fontlab.recipe + iotifieda-cy + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/iotifieda-cy.glif b/sources/FixelText-Medium.ufo/glyphs/iotifieda-cy.glif new file mode 100644 index 00000000..4871636e --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/iotifieda-cy.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + yusClosedlittle-cy + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/iotifieda-cy.hist.glif b/sources/FixelText-Medium.ufo/glyphs/iotifieda-cy.hist.glif new file mode 100644 index 00000000..81b23883 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/iotifieda-cy.hist.glif @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + reversedzecyr + com.fontlab.metricsRight + a + public.markColor + 0.6,0.997,1,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/ishortsharptailcyr.glif b/sources/FixelText-Medium.ufo/glyphs/ishortsharptailcyr.glif new file mode 100644 index 00000000..e6e8848d --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/ishortsharptailcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + й + com.fontlab.metricsRight + ensharptailcyr + com.fontlab.recipe + й + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/itilde.glif b/sources/FixelText-Medium.ufo/glyphs/itilde.glif new file mode 100644 index 00000000..2b556328 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/itilde.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + dotlessi+tilde + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/iu-cy.B_G_R_.glif b/sources/FixelText-Medium.ufo/glyphs/iu-cy.B_G_R_.glif new file mode 100644 index 00000000..59abe87a --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/iu-cy.B_G_R_.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + o + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/iu-cy.accented.glif b/sources/FixelText-Medium.ufo/glyphs/iu-cy.accented.glif new file mode 100644 index 00000000..82fb3f3e --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/iu-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ю+acute + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/iu-cy.glif b/sources/FixelText-Medium.ufo/glyphs/iu-cy.glif new file mode 100644 index 00000000..c0b983bb --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/iu-cy.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/izhitsacyr.glif b/sources/FixelText-Medium.ufo/glyphs/izhitsacyr.glif new file mode 100644 index 00000000..c3a40425 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/izhitsacyr.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + v + com.fontlab.metricsRight + + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/izhitsagravedblcyr.glif b/sources/FixelText-Medium.ufo/glyphs/izhitsagravedblcyr.glif new file mode 100644 index 00000000..6cab2f73 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/izhitsagravedblcyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + com.fontlab.metricsLeft + izhitsacyr + com.fontlab.metricsRight + izhitsacyr + com.fontlab.recipe + izhitsacyr+hungarumlaut + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/j.glif b/sources/FixelText-Medium.ufo/glyphs/j.glif new file mode 100644 index 00000000..6f5368aa --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/j.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + i + com.fontlab.recipe + dotlessj+dotaccent + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/jcircumflex.glif b/sources/FixelText-Medium.ufo/glyphs/jcircumflex.glif new file mode 100644 index 00000000..599935f8 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/jcircumflex.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + dotlessj+circumflex + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/jdotless.glif b/sources/FixelText-Medium.ufo/glyphs/jdotless.glif new file mode 100644 index 00000000..d1955b04 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/jdotless.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + l + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/je-cy.glif b/sources/FixelText-Medium.ufo/glyphs/je-cy.glif new file mode 100644 index 00000000..b4df2762 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/je-cy.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + j + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/k.glif b/sources/FixelText-Medium.ufo/glyphs/k.glif new file mode 100644 index 00000000..79165bf3 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/k.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/ka-cy.B_G_R_.glif b/sources/FixelText-Medium.ufo/glyphs/ka-cy.B_G_R_.glif new file mode 100644 index 00000000..ad018e39 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/ka-cy.B_G_R_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + k + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/ka-cy.glif b/sources/FixelText-Medium.ufo/glyphs/ka-cy.glif new file mode 100644 index 00000000..5dac148e --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/ka-cy.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + k + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/kaaleutcyr.glif b/sources/FixelText-Medium.ufo/glyphs/kaaleutcyr.glif new file mode 100644 index 00000000..6d0a09c0 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/kaaleutcyr.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + k + com.fontlab.metricsRight + k + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/kabashkcyr.glif b/sources/FixelText-Medium.ufo/glyphs/kabashkcyr.glif new file mode 100644 index 00000000..429a869a --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/kabashkcyr.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hardsign-cy + com.fontlab.metricsRight + k + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/kahookcyr.glif b/sources/FixelText-Medium.ufo/glyphs/kahookcyr.glif new file mode 100644 index 00000000..bad32351 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/kahookcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + n + com.fontlab.metricsRight + k+10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/kastrokecyr.glif b/sources/FixelText-Medium.ufo/glyphs/kastrokecyr.glif new file mode 100644 index 00000000..513bde40 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/kastrokecyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hbar + com.fontlab.metricsRight + k + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/katailcyr.glif b/sources/FixelText-Medium.ufo/glyphs/katailcyr.glif new file mode 100644 index 00000000..d31b2d3d --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/katailcyr.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + k + com.fontlab.metricsRight + к-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/kaverticalstrokecyr.glif b/sources/FixelText-Medium.ufo/glyphs/kaverticalstrokecyr.glif new file mode 100644 index 00000000..804e26ab --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/kaverticalstrokecyr.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + k + com.fontlab.metricsRight + k + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/kcommaaccent.glif b/sources/FixelText-Medium.ufo/glyphs/kcommaaccent.glif new file mode 100644 index 00000000..f231c338 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/kcommaaccent.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsLeft + k + com.fontlab.metricsRight + k + com.fontlab.recipe + k+commaaccentcomb + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/kgreenlandic.glif b/sources/FixelText-Medium.ufo/glyphs/kgreenlandic.glif new file mode 100644 index 00000000..a5f37814 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/kgreenlandic.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + kacyr + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/kjecyr.glif b/sources/FixelText-Medium.ufo/glyphs/kjecyr.glif new file mode 100644 index 00000000..84d17088 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/kjecyr.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/knightblack.glif b/sources/FixelText-Medium.ufo/glyphs/knightblack.glif new file mode 100644 index 00000000..7eb4af2e --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/knightblack.glif @@ -0,0 +1,313 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/knightwhite.glif b/sources/FixelText-Medium.ufo/glyphs/knightwhite.glif new file mode 100644 index 00000000..7cd48120 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/knightwhite.glif @@ -0,0 +1,320 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/koppacyr.glif b/sources/FixelText-Medium.ufo/glyphs/koppacyr.glif new file mode 100644 index 00000000..e048ffbb --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/koppacyr.glif @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + c-20 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/ksicyr.glif b/sources/FixelText-Medium.ufo/glyphs/ksicyr.glif new file mode 100644 index 00000000..b726ff3c --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/ksicyr.glif @@ -0,0 +1,102 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + з-10 + com.fontlab.metricsRight + з + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/l.glif b/sources/FixelText-Medium.ufo/glyphs/l.glif new file mode 100644 index 00000000..479f424b --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/l.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/l.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/l.ss01.glif new file mode 100644 index 00000000..b0003553 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/l.ss01.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/lacute.glif b/sources/FixelText-Medium.ufo/glyphs/lacute.glif new file mode 100644 index 00000000..7a13117f --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/lacute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l+acute.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/lacute.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/lacute.ss01.glif new file mode 100644 index 00000000..8b69405f --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/lacute.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l.ss01+acute.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/layerinfo.plist b/sources/FixelText-Medium.ufo/glyphs/layerinfo.plist new file mode 100644 index 00000000..8c198655 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/layerinfo.plist @@ -0,0 +1,21 @@ + + + + + lib + + com.fontlab.layer.name + Body + com.fontlab.layer.opacity + 1 + com.fontlab.layer.visible + + com.fontlab.layer.locked + + com.fontlab.layer.service + + com.fontlab.layer.wireframe + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/lcaron.glif b/sources/FixelText-Medium.ufo/glyphs/lcaron.glif new file mode 100644 index 00000000..c7abdd99 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/lcaron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l+caron.salt + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/lcaron.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/lcaron.ss01.glif new file mode 100644 index 00000000..2f113418 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/lcaron.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l.ss01+caron.salt + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/lcommaaccent.glif b/sources/FixelText-Medium.ufo/glyphs/lcommaaccent.glif new file mode 100644 index 00000000..f6b00f05 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/lcommaaccent.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l+commaaccentcomb + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/lcommaaccent.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/lcommaaccent.ss01.glif new file mode 100644 index 00000000..09be8065 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/lcommaaccent.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l.ss01+commaaccentcomb + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/ldot.glif b/sources/FixelText-Medium.ufo/glyphs/ldot.glif new file mode 100644 index 00000000..b0f1b1cb --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/ldot.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/ldot.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/ldot.ss01.glif new file mode 100644 index 00000000..637222f4 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/ldot.ss01.glif @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + l.ss01_periodcentered + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/leo.glif b/sources/FixelText-Medium.ufo/glyphs/leo.glif new file mode 100644 index 00000000..e94326bb --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/leo.glif @@ -0,0 +1,494 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/less.glif b/sources/FixelText-Medium.ufo/glyphs/less.glif new file mode 100644 index 00000000..8b4fd82e --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/less.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/lessequal.glif b/sources/FixelText-Medium.ufo/glyphs/lessequal.glif new file mode 100644 index 00000000..474ffe7a --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/lessequal.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/lhacyr.glif b/sources/FixelText-Medium.ufo/glyphs/lhacyr.glif new file mode 100644 index 00000000..6e33540b --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/lhacyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + х + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/ljecyr.glif b/sources/FixelText-Medium.ufo/glyphs/ljecyr.glif new file mode 100644 index 00000000..2f8742e9 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/ljecyr.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + ь + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/ljecyr.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/ljecyr.ss01.glif new file mode 100644 index 00000000..ed48b792 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/ljecyr.ss01.glif @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + ь + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/ljekomicyr.glif b/sources/FixelText-Medium.ufo/glyphs/ljekomicyr.glif new file mode 100644 index 00000000..61c95f36 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/ljekomicyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + njekomicyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/longs.glif b/sources/FixelText-Medium.ufo/glyphs/longs.glif new file mode 100644 index 00000000..331d23fd --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/longs.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + n + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/lslash.glif b/sources/FixelText-Medium.ufo/glyphs/lslash.glif new file mode 100644 index 00000000..db7281eb --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/lslash.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Lslash+12 + com.fontlab.metricsRight + |Lslash+12 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/lslash.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/lslash.ss01.glif new file mode 100644 index 00000000..aa657b92 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/lslash.ss01.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Lslash-10 + com.fontlab.metricsRight + |Lslash + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/m.glif b/sources/FixelText-Medium.ufo/glyphs/m.glif new file mode 100644 index 00000000..cbd210d7 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/m.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + n + com.fontlab.metricsRight + n + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/macron-fwd.alt.glif b/sources/FixelText-Medium.ufo/glyphs/macron-fwd.alt.glif new file mode 100644 index 00000000..2a1d12f2 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/macron-fwd.alt.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/macron-fwd.glif b/sources/FixelText-Medium.ufo/glyphs/macron-fwd.glif new file mode 100644 index 00000000..29210ea1 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/macron-fwd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/macron.case.glif b/sources/FixelText-Medium.ufo/glyphs/macron.case.glif new file mode 100644 index 00000000..e97d17a7 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/macron.case.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/macron.glif b/sources/FixelText-Medium.ufo/glyphs/macron.glif new file mode 100644 index 00000000..232d5bf8 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/macron.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/macronacute.S_R_B_.glif b/sources/FixelText-Medium.ufo/glyphs/macronacute.S_R_B_.glif new file mode 100644 index 00000000..93803b2b --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/macronacute.S_R_B_.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + macron+acute + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/millionscombcyr.glif b/sources/FixelText-Medium.ufo/glyphs/millionscombcyr.glif new file mode 100644 index 00000000..05c76550 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/millionscombcyr.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/minus.glif b/sources/FixelText-Medium.ufo/glyphs/minus.glif new file mode 100644 index 00000000..715dc48f --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/minus.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/minute.glif b/sources/FixelText-Medium.ufo/glyphs/minute.glif new file mode 100644 index 00000000..bd3d90ca --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/minute.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/mu.glif b/sources/FixelText-Medium.ufo/glyphs/mu.glif new file mode 100644 index 00000000..92035880 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/mu.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + p + com.fontlab.metricsRight + u + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/multiply.glif b/sources/FixelText-Medium.ufo/glyphs/multiply.glif new file mode 100644 index 00000000..6a7325f8 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/multiply.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/n.glif b/sources/FixelText-Medium.ufo/glyphs/n.glif new file mode 100644 index 00000000..b635386e --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/n.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/nacute.glif b/sources/FixelText-Medium.ufo/glyphs/nacute.glif new file mode 100644 index 00000000..c6b8f5db --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/nacute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + n+acute + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/napostrophe.glif b/sources/FixelText-Medium.ufo/glyphs/napostrophe.glif new file mode 100644 index 00000000..62813949 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/napostrophe.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + com.fontlab.metricsRight + n + com.schriftgestaltung.Glyphs.ComponentInfo + + + alignment + -1 + index + 0 + name + n + + + alignment + -1 + index + 1 + name + quoteright + + + com.schriftgestaltung.Glyphs.rightMetricsKey + n + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/ncaron.glif b/sources/FixelText-Medium.ufo/glyphs/ncaron.glif new file mode 100644 index 00000000..0786d420 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/ncaron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + n+caron + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/ncommaaccent.glif b/sources/FixelText-Medium.ufo/glyphs/ncommaaccent.glif new file mode 100644 index 00000000..40f991a5 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/ncommaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + n+commaaccentcomb + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/neptune.glif b/sources/FixelText-Medium.ufo/glyphs/neptune.glif new file mode 100644 index 00000000..60a3b66d --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/neptune.glif @@ -0,0 +1,125 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ш + com.fontlab.metricsRight + Ш + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/nine.glif b/sources/FixelText-Medium.ufo/glyphs/nine.glif new file mode 100644 index 00000000..4fe8ab8a --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/nine.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + |six + com.fontlab.metricsRight + |six + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/nine.osf.glif b/sources/FixelText-Medium.ufo/glyphs/nine.osf.glif new file mode 100644 index 00000000..ac84dfa2 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/nine.osf.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |six + com.fontlab.metricsRight + |six + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/nine.tf.glif b/sources/FixelText-Medium.ufo/glyphs/nine.tf.glif new file mode 100644 index 00000000..01a2f2b0 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/nine.tf.glif @@ -0,0 +1,7 @@ + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/njecyr.glif b/sources/FixelText-Medium.ufo/glyphs/njecyr.glif new file mode 100644 index 00000000..9ed5006a --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/njecyr.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + ь + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/njecyr.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/njecyr.ss01.glif new file mode 100644 index 00000000..5009450a --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/njecyr.ss01.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + ь + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/njekomicyr.glif b/sources/FixelText-Medium.ufo/glyphs/njekomicyr.glif new file mode 100644 index 00000000..a6ad8688 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/njekomicyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + |u + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/notequal.glif b/sources/FixelText-Medium.ufo/glyphs/notequal.glif new file mode 100644 index 00000000..09e4a103 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/notequal.glif @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/ntilde.glif b/sources/FixelText-Medium.ufo/glyphs/ntilde.glif new file mode 100644 index 00000000..181ef252 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/ntilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + n+tilde + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/numbersign.glif b/sources/FixelText-Medium.ufo/glyphs/numbersign.glif new file mode 100644 index 00000000..692c207b --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/numbersign.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/numero.glif b/sources/FixelText-Medium.ufo/glyphs/numero.glif new file mode 100644 index 00000000..11138bcc --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/numero.glif @@ -0,0 +1,90 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + N + com.fontlab.recipe + N+ordmasculine + com.schriftgestaltung.Glyphs.ComponentInfo + + + alignment + -1 + index + 0 + name + N + + + alignment + -1 + index + 1 + name + ordmasculine + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/numero.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/numero.ss01.glif new file mode 100644 index 00000000..0a5c1db1 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/numero.ss01.glif @@ -0,0 +1,95 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + N.ss01 + com.fontlab.metricsRight + ordmasculine + com.fontlab.recipe + N.ss01+ordmasculine + com.schriftgestaltung.Glyphs.ComponentInfo + + + alignment + -1 + index + 0 + name + ordmasculine + + + alignment + -1 + index + 1 + name + N.ss01 + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/o-cy.accented.glif b/sources/FixelText-Medium.ufo/glyphs/o-cy.accented.glif new file mode 100644 index 00000000..996ac6b5 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/o-cy.accented.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+acute + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/o-cy.glif b/sources/FixelText-Medium.ufo/glyphs/o-cy.glif new file mode 100644 index 00000000..7ce5f572 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/o-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/o.glif b/sources/FixelText-Medium.ufo/glyphs/o.glif new file mode 100644 index 00000000..c99566f4 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/o.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/oB_inocular-cy.glif b/sources/FixelText-Medium.ufo/glyphs/oB_inocular-cy.glif new file mode 100644 index 00000000..3928684d --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/oB_inocular-cy.glif @@ -0,0 +1,81 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/oD_oubleM_onocular-cy.glif b/sources/FixelText-Medium.ufo/glyphs/oD_oubleM_onocular-cy.glif new file mode 100644 index 00000000..6d9db58f --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/oD_oubleM_onocular-cy.glif @@ -0,0 +1,121 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + com.fontlab.recipe + doubleo-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/oM_onocular-cy.glif b/sources/FixelText-Medium.ufo/glyphs/oM_onocular-cy.glif new file mode 100644 index 00000000..ec2ddb9b --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/oM_onocular-cy.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/oacute.glif b/sources/FixelText-Medium.ufo/glyphs/oacute.glif new file mode 100644 index 00000000..9eda4e01 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/oacute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+acute + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/obarcyr.glif b/sources/FixelText-Medium.ufo/glyphs/obarcyr.glif new file mode 100644 index 00000000..6944bb6d --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/obarcyr.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/obardieresiscyr.glif b/sources/FixelText-Medium.ufo/glyphs/obardieresiscyr.glif new file mode 100644 index 00000000..6aeee84a --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/obardieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + obarcyr+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/obreve.glif b/sources/FixelText-Medium.ufo/glyphs/obreve.glif new file mode 100644 index 00000000..e0a09362 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/obreve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+breve + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/ocircumflex.glif b/sources/FixelText-Medium.ufo/glyphs/ocircumflex.glif new file mode 100644 index 00000000..8eb68a34 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/ocircumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+circumflex + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/odieresis.glif b/sources/FixelText-Medium.ufo/glyphs/odieresis.glif new file mode 100644 index 00000000..9098f3ca --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/odieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+dieresis + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/odieresiscyr.glif b/sources/FixelText-Medium.ufo/glyphs/odieresiscyr.glif new file mode 100644 index 00000000..3825149d --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/odieresiscyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/oe.glif b/sources/FixelText-Medium.ufo/glyphs/oe.glif new file mode 100644 index 00000000..6120b5fa --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/oe.glif @@ -0,0 +1,86 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + e + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/oe.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/oe.ss01.glif new file mode 100644 index 00000000..59cc5db8 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/oe.ss01.glif @@ -0,0 +1,95 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + e.ss01 + public.markColor + 0.6,0.997,1,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/ogonek.glif b/sources/FixelText-Medium.ufo/glyphs/ogonek.glif new file mode 100644 index 00000000..edd9ad92 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/ogonek.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/ograve.glif b/sources/FixelText-Medium.ufo/glyphs/ograve.glif new file mode 100644 index 00000000..3945fe62 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/ograve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+grave + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/ohungarumlaut.glif b/sources/FixelText-Medium.ufo/glyphs/ohungarumlaut.glif new file mode 100644 index 00000000..112385f0 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/ohungarumlaut.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+hungarumlaut + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/omacron.glif b/sources/FixelText-Medium.ufo/glyphs/omacron.glif new file mode 100644 index 00000000..44783630 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/omacron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+macron + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/omegaB_road-cy.glif b/sources/FixelText-Medium.ufo/glyphs/omegaB_road-cy.glif new file mode 100644 index 00000000..7e042275 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/omegaB_road-cy.glif @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o+5 + com.fontlab.metricsRight + o+5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/omegacyr.glif b/sources/FixelText-Medium.ufo/glyphs/omegacyr.glif new file mode 100644 index 00000000..df0f0771 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/omegacyr.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + w + com.fontlab.metricsRight + w + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/omegaroundcyr.glif b/sources/FixelText-Medium.ufo/glyphs/omegaroundcyr.glif new file mode 100644 index 00000000..cd634dd9 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/omegaroundcyr.glif @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/omegatitlocyr.glif b/sources/FixelText-Medium.ufo/glyphs/omegatitlocyr.glif new file mode 100644 index 00000000..6b7d8656 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/omegatitlocyr.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o+5 + com.fontlab.metricsRight + o+5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/omultiocular-cy.alt.glif b/sources/FixelText-Medium.ufo/glyphs/omultiocular-cy.alt.glif new file mode 100644 index 00000000..5f4e3c0e --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/omultiocular-cy.alt.glif @@ -0,0 +1,367 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + oMonocular-cy + com.fontlab.metricsRight + oMonocular-cy + public.markColor + 0.6,0.997,1,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/omultiocular-cy.glif b/sources/FixelText-Medium.ufo/glyphs/omultiocular-cy.glif new file mode 100644 index 00000000..7b9b97e2 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/omultiocular-cy.glif @@ -0,0 +1,516 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + oMonocular-cy + com.fontlab.metricsRight + oMonocular-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/one.glif b/sources/FixelText-Medium.ufo/glyphs/one.glif new file mode 100644 index 00000000..b79172b5 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/one.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =40 + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/one.osf.glif b/sources/FixelText-Medium.ufo/glyphs/one.osf.glif new file mode 100644 index 00000000..4e2f4b46 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/one.osf.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + one + com.fontlab.metricsRight + one + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/one.tf.glif b/sources/FixelText-Medium.ufo/glyphs/one.tf.glif new file mode 100644 index 00000000..64a57c59 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/one.tf.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/onehalf.glif b/sources/FixelText-Medium.ufo/glyphs/onehalf.glif new file mode 100644 index 00000000..32948fbf --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/onehalf.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/onequarter.glif b/sources/FixelText-Medium.ufo/glyphs/onequarter.glif new file mode 100644 index 00000000..93486e6a --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/onequarter.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/onesuperior.glif b/sources/FixelText-Medium.ufo/glyphs/onesuperior.glif new file mode 100644 index 00000000..473ebb9c --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/onesuperior.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/ordfeminine.glif b/sources/FixelText-Medium.ufo/glyphs/ordfeminine.glif new file mode 100644 index 00000000..cd28e6cc --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/ordfeminine.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/ordmasculine.glif b/sources/FixelText-Medium.ufo/glyphs/ordmasculine.glif new file mode 100644 index 00000000..f0111191 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/ordmasculine.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/oslash.glif b/sources/FixelText-Medium.ufo/glyphs/oslash.glif new file mode 100644 index 00000000..6afb23a1 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/oslash.glif @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/oslashacute.glif b/sources/FixelText-Medium.ufo/glyphs/oslashacute.glif new file mode 100644 index 00000000..7aee486a --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/oslashacute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + oslash+acute + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/otcyr.glif b/sources/FixelText-Medium.ufo/glyphs/otcyr.glif new file mode 100644 index 00000000..d1917324 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/otcyr.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsRight + w + com.fontlab.recipe + omegacyr+uni2DEE + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/otilde.glif b/sources/FixelText-Medium.ufo/glyphs/otilde.glif new file mode 100644 index 00000000..fc26ec82 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/otilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+tilde + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/p.glif b/sources/FixelText-Medium.ufo/glyphs/p.glif new file mode 100644 index 00000000..6ab65baf --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/p.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/p.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/p.ss01.glif new file mode 100644 index 00000000..55f0bd41 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/p.ss01.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/palatcombcyr.glif b/sources/FixelText-Medium.ufo/glyphs/palatcombcyr.glif new file mode 100644 index 00000000..af56f1b6 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/palatcombcyr.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/palochkacyr.glif b/sources/FixelText-Medium.ufo/glyphs/palochkacyr.glif new file mode 100644 index 00000000..5d8b81c8 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/palochkacyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/paragraph.glif b/sources/FixelText-Medium.ufo/glyphs/paragraph.glif new file mode 100644 index 00000000..b87bcb2d --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/paragraph.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |P + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/parenleft.case.glif b/sources/FixelText-Medium.ufo/glyphs/parenleft.case.glif new file mode 100644 index 00000000..65393f6f --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/parenleft.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |parenright.case + com.fontlab.metricsRight + |parenright.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/parenleft.glif b/sources/FixelText-Medium.ufo/glyphs/parenleft.glif new file mode 100644 index 00000000..e4add0e0 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/parenleft.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/parenright.case.glif b/sources/FixelText-Medium.ufo/glyphs/parenright.case.glif new file mode 100644 index 00000000..d3f7e793 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/parenright.case.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + parenright + com.fontlab.metricsRight + parenright + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/parenright.glif b/sources/FixelText-Medium.ufo/glyphs/parenright.glif new file mode 100644 index 00000000..a6f57306 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/parenright.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/partialdiff.glif b/sources/FixelText-Medium.ufo/glyphs/partialdiff.glif new file mode 100644 index 00000000..55330f51 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/partialdiff.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/pe-cy.B_G_R_.glif b/sources/FixelText-Medium.ufo/glyphs/pe-cy.B_G_R_.glif new file mode 100644 index 00000000..fccaaabe --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/pe-cy.B_G_R_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + n + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/pe-cy.S_R_B_.glif b/sources/FixelText-Medium.ufo/glyphs/pe-cy.S_R_B_.glif new file mode 100644 index 00000000..07a0ff8a --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/pe-cy.S_R_B_.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+macron-fwd.alt + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/pe-cy.glif b/sources/FixelText-Medium.ufo/glyphs/pe-cy.glif new file mode 100644 index 00000000..9567c745 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/pe-cy.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/pehookcyr.glif b/sources/FixelText-Medium.ufo/glyphs/pehookcyr.glif new file mode 100644 index 00000000..9da3d89e --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/pehookcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + п + com.fontlab.metricsRight + enmiddlehookcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/percent.glif b/sources/FixelText-Medium.ufo/glyphs/percent.glif new file mode 100644 index 00000000..5b6d4ba1 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/percent.glif @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/period.glif b/sources/FixelText-Medium.ufo/glyphs/period.glif new file mode 100644 index 00000000..27c356ed --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/period.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/periodcentered.glif b/sources/FixelText-Medium.ufo/glyphs/periodcentered.glif new file mode 100644 index 00000000..7d690b93 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/periodcentered.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/perthousand.glif b/sources/FixelText-Medium.ufo/glyphs/perthousand.glif new file mode 100644 index 00000000..d2f47e03 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/perthousand.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/petailcyr.glif b/sources/FixelText-Medium.ufo/glyphs/petailcyr.glif new file mode 100644 index 00000000..ce199e9f --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/petailcyr.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + п + com.fontlab.metricsRight + entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/pi.glif b/sources/FixelText-Medium.ufo/glyphs/pi.glif new file mode 100644 index 00000000..ebb4b9cb --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/pi.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f + com.fontlab.metricsRight + t + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/plus.glif b/sources/FixelText-Medium.ufo/glyphs/plus.glif new file mode 100644 index 00000000..df5e3ce9 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/plus.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/plusminus.glif b/sources/FixelText-Medium.ufo/glyphs/plusminus.glif new file mode 100644 index 00000000..23ef2acd --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/plusminus.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/pokrytiecombcyr.glif b/sources/FixelText-Medium.ufo/glyphs/pokrytiecombcyr.glif new file mode 100644 index 00000000..ba51b07e --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/pokrytiecombcyr.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/product.glif b/sources/FixelText-Medium.ufo/glyphs/product.glif new file mode 100644 index 00000000..4f0ebfce --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/product.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/proportional.glif b/sources/FixelText-Medium.ufo/glyphs/proportional.glif new file mode 100644 index 00000000..23cbd435 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/proportional.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/psicyr.glif b/sources/FixelText-Medium.ufo/glyphs/psicyr.glif new file mode 100644 index 00000000..9832de85 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/psicyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + u + com.fontlab.metricsRight + |u + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/q.glif b/sources/FixelText-Medium.ufo/glyphs/q.glif new file mode 100644 index 00000000..72acc800 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/q.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/q.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/q.ss01.glif new file mode 100644 index 00000000..24e6ceda --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/q.ss01.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/qacyr.glif b/sources/FixelText-Medium.ufo/glyphs/qacyr.glif new file mode 100644 index 00000000..6705951e --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/qacyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + q + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/question.glif b/sources/FixelText-Medium.ufo/glyphs/question.glif new file mode 100644 index 00000000..2e5ef027 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/question.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/questiondown.case.glif b/sources/FixelText-Medium.ufo/glyphs/questiondown.case.glif new file mode 100644 index 00000000..d055c4dc --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/questiondown.case.glif @@ -0,0 +1,19 @@ + + + + + + + + + com.fontlab.metricsLeft + |question + com.fontlab.metricsRight + |question + com.fontlab.recipe + questiondown + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/questiondown.glif b/sources/FixelText-Medium.ufo/glyphs/questiondown.glif new file mode 100644 index 00000000..9c89fb38 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/questiondown.glif @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |question + com.fontlab.metricsRight + |question + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/quotedbl.glif b/sources/FixelText-Medium.ufo/glyphs/quotedbl.glif new file mode 100644 index 00000000..987944d5 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/quotedbl.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/quotedblbase.glif b/sources/FixelText-Medium.ufo/glyphs/quotedblbase.glif new file mode 100644 index 00000000..022d6e78 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/quotedblbase.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + comma + com.fontlab.metricsRight + comma + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/quotedblleft.glif b/sources/FixelText-Medium.ufo/glyphs/quotedblleft.glif new file mode 100644 index 00000000..2f287d31 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/quotedblleft.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + |comma + com.fontlab.metricsRight + |comma + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/quotedblright.glif b/sources/FixelText-Medium.ufo/glyphs/quotedblright.glif new file mode 100644 index 00000000..c6c97113 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/quotedblright.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.metricsLeft + comma+20 + com.fontlab.metricsRight + comma-20 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/quoteleft.glif b/sources/FixelText-Medium.ufo/glyphs/quoteleft.glif new file mode 100644 index 00000000..16e05e86 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/quoteleft.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + quotedblleft + com.fontlab.metricsRight + quotedblleft + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/quoteright.glif b/sources/FixelText-Medium.ufo/glyphs/quoteright.glif new file mode 100644 index 00000000..6e51a3a9 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/quoteright.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + com.fontlab.metricsLeft + quotedblright + com.fontlab.metricsRight + quotedblright + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/quotesinglbase.glif b/sources/FixelText-Medium.ufo/glyphs/quotesinglbase.glif new file mode 100644 index 00000000..03d33735 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/quotesinglbase.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + com.fontlab.recipe + comma + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/quotesingle.glif b/sources/FixelText-Medium.ufo/glyphs/quotesingle.glif new file mode 100644 index 00000000..4a204fea --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/quotesingle.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/r.glif b/sources/FixelText-Medium.ufo/glyphs/r.glif new file mode 100644 index 00000000..18905c44 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/r.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/racute.glif b/sources/FixelText-Medium.ufo/glyphs/racute.glif new file mode 100644 index 00000000..fef6c1f8 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/racute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + r+acute + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/radical.glif b/sources/FixelText-Medium.ufo/glyphs/radical.glif new file mode 100644 index 00000000..2e26d910 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/radical.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + V + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/rcaron.glif b/sources/FixelText-Medium.ufo/glyphs/rcaron.glif new file mode 100644 index 00000000..5dedc024 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/rcaron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + r+caron + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/rcommaaccent.glif b/sources/FixelText-Medium.ufo/glyphs/rcommaaccent.glif new file mode 100644 index 00000000..2b8d0707 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/rcommaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + r+commaaccentcomb + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/registered.glif b/sources/FixelText-Medium.ufo/glyphs/registered.glif new file mode 100644 index 00000000..5155552a --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/registered.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/reversedzecyr.glif b/sources/FixelText-Medium.ufo/glyphs/reversedzecyr.glif new file mode 100644 index 00000000..cd206eba --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/reversedzecyr.glif @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + + com.fontlab.metricsRight + + com.fontlab.recipe + з + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/rhacyr.glif b/sources/FixelText-Medium.ufo/glyphs/rhacyr.glif new file mode 100644 index 00000000..6675c53d --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/rhacyr.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + p + com.fontlab.metricsRight + x + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/ring.case.glif b/sources/FixelText-Medium.ufo/glyphs/ring.case.glif new file mode 100644 index 00000000..1a0f3ec2 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/ring.case.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/ring.glif b/sources/FixelText-Medium.ufo/glyphs/ring.glif new file mode 100644 index 00000000..7f671391 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/ring.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/rookblack.glif b/sources/FixelText-Medium.ufo/glyphs/rookblack.glif new file mode 100644 index 00000000..8f190920 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/rookblack.glif @@ -0,0 +1,270 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/ruble.glif b/sources/FixelText-Medium.ufo/glyphs/ruble.glif new file mode 100644 index 00000000..2b9f2446 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/ruble.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + P + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/s.glif b/sources/FixelText-Medium.ufo/glyphs/s.glif new file mode 100644 index 00000000..f9309fb9 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/s.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/sacute.glif b/sources/FixelText-Medium.ufo/glyphs/sacute.glif new file mode 100644 index 00000000..ca1a2cac --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/sacute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + s+acute + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/scaron.glif b/sources/FixelText-Medium.ufo/glyphs/scaron.glif new file mode 100644 index 00000000..c9b9ffe5 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/scaron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + s+caron + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/scedilla.glif b/sources/FixelText-Medium.ufo/glyphs/scedilla.glif new file mode 100644 index 00000000..4d695c5d --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/scedilla.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + s+cedilla + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/schwacyr.glif b/sources/FixelText-Medium.ufo/glyphs/schwacyr.glif new file mode 100644 index 00000000..15af973e --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/schwacyr.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |e + com.fontlab.metricsRight + o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/schwadieresiscyr.glif b/sources/FixelText-Medium.ufo/glyphs/schwadieresiscyr.glif new file mode 100644 index 00000000..a0388255 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/schwadieresiscyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + schwacyr+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/scircumflex.glif b/sources/FixelText-Medium.ufo/glyphs/scircumflex.glif new file mode 100644 index 00000000..8c02f585 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/scircumflex.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + s+circumflex + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/scommaaccent.glif b/sources/FixelText-Medium.ufo/glyphs/scommaaccent.glif new file mode 100644 index 00000000..d0686362 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/scommaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + s+commaaccentcomb + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/second.glif b/sources/FixelText-Medium.ufo/glyphs/second.glif new file mode 100644 index 00000000..99480a1f --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/second.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/section.glif b/sources/FixelText-Medium.ufo/glyphs/section.glif new file mode 100644 index 00000000..6c707ce2 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/section.glif @@ -0,0 +1,87 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + S + com.fontlab.metricsRight + S + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/semicolon.case.glif b/sources/FixelText-Medium.ufo/glyphs/semicolon.case.glif new file mode 100644 index 00000000..bf87e01f --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/semicolon.case.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.metricsLeft + semicolon + com.fontlab.metricsRight + semicolon + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/semicolon.glif b/sources/FixelText-Medium.ufo/glyphs/semicolon.glif new file mode 100644 index 00000000..c1284a2d --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/semicolon.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/semisoftcyr.glif b/sources/FixelText-Medium.ufo/glyphs/semisoftcyr.glif new file mode 100644 index 00000000..fcee5189 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/semisoftcyr.glif @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + t + com.fontlab.metricsRight + ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/seven.glif b/sources/FixelText-Medium.ufo/glyphs/seven.glif new file mode 100644 index 00000000..c0ea2b13 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/seven.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/seven.osf.glif b/sources/FixelText-Medium.ufo/glyphs/seven.osf.glif new file mode 100644 index 00000000..8fe1e888 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/seven.osf.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + seven + com.fontlab.metricsRight + seven + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/seven.tf.glif b/sources/FixelText-Medium.ufo/glyphs/seven.tf.glif new file mode 100644 index 00000000..198a5b5f --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/seven.tf.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/sha-cy.B_G_R_.glif b/sources/FixelText-Medium.ufo/glyphs/sha-cy.B_G_R_.glif new file mode 100644 index 00000000..19b4b97c --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/sha-cy.B_G_R_.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + u + com.fontlab.metricsRight + l + com.fontlab.recipe + m + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/sha-cy.glif b/sources/FixelText-Medium.ufo/glyphs/sha-cy.glif new file mode 100644 index 00000000..7006851e --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/sha-cy.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/shcha-cy.B_G_R_.glif b/sources/FixelText-Medium.ufo/glyphs/shcha-cy.B_G_R_.glif new file mode 100644 index 00000000..73ecc10f --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/shcha-cy.B_G_R_.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + u + com.fontlab.metricsRight + щ + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/shcha-cy.glif b/sources/FixelText-Medium.ufo/glyphs/shcha-cy.glif new file mode 100644 index 00000000..e490903b --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/shcha-cy.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + д + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/shhacyr.glif b/sources/FixelText-Medium.ufo/glyphs/shhacyr.glif new file mode 100644 index 00000000..30bd7b1b --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/shhacyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsRight + n + com.fontlab.recipe + h + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/shhatailcyr.glif b/sources/FixelText-Medium.ufo/glyphs/shhatailcyr.glif new file mode 100644 index 00000000..c1188126 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/shhatailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + h + com.fontlab.metricsRight + entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/shwe-cy.glif b/sources/FixelText-Medium.ufo/glyphs/shwe-cy.glif new file mode 100644 index 00000000..159e6769 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/shwe-cy.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + щ + com.fontlab.metricsRight + щ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/six.glif b/sources/FixelText-Medium.ufo/glyphs/six.glif new file mode 100644 index 00000000..65c321b0 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/six.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/six.osf.glif b/sources/FixelText-Medium.ufo/glyphs/six.osf.glif new file mode 100644 index 00000000..7532e1b7 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/six.osf.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + six + com.fontlab.metricsRight + six + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/six.tf.glif b/sources/FixelText-Medium.ufo/glyphs/six.tf.glif new file mode 100644 index 00000000..a531790c --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/six.tf.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/sjekomicyr.glif b/sources/FixelText-Medium.ufo/glyphs/sjekomicyr.glif new file mode 100644 index 00000000..f7f42581 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/sjekomicyr.glif @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + e + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/slash.case.glif b/sources/FixelText-Medium.ufo/glyphs/slash.case.glif new file mode 100644 index 00000000..f8d00a29 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/slash.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + slash + com.fontlab.metricsRight + slash + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/slash.glif b/sources/FixelText-Medium.ufo/glyphs/slash.glif new file mode 100644 index 00000000..1345d7e6 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/slash.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/softsign-cy.B_G_R_.glif b/sources/FixelText-Medium.ufo/glyphs/softsign-cy.B_G_R_.glif new file mode 100644 index 00000000..ca127ae0 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/softsign-cy.B_G_R_.glif @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + u + com.fontlab.metricsRight + ь-5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/softsign-cy.glif b/sources/FixelText-Medium.ufo/glyphs/softsign-cy.glif new file mode 100644 index 00000000..4d3073b8 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/softsign-cy.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/softsign-cy.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/softsign-cy.ss01.glif new file mode 100644 index 00000000..ffd9aa9c --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/softsign-cy.ss01.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/space.glif b/sources/FixelText-Medium.ufo/glyphs/space.glif new file mode 100644 index 00000000..0a8f9a9d --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/space.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/spadewhite.glif b/sources/FixelText-Medium.ufo/glyphs/spadewhite.glif new file mode 100644 index 00000000..a9024849 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/spadewhite.glif @@ -0,0 +1,453 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/sterling.glif b/sources/FixelText-Medium.ufo/glyphs/sterling.glif new file mode 100644 index 00000000..96b1f116 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/sterling.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/summation.glif b/sources/FixelText-Medium.ufo/glyphs/summation.glif new file mode 100644 index 00000000..5b8dd338 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/summation.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/t.glif b/sources/FixelText-Medium.ufo/glyphs/t.glif new file mode 100644 index 00000000..c70d4e36 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/t.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/t.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/t.ss01.glif new file mode 100644 index 00000000..a2b66c9b --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/t.ss01.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/tbar.glif b/sources/FixelText-Medium.ufo/glyphs/tbar.glif new file mode 100644 index 00000000..e510c1a1 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/tbar.glif @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/tbar.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/tbar.ss01.glif new file mode 100644 index 00000000..e61aad27 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/tbar.ss01.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/tcaron.glif b/sources/FixelText-Medium.ufo/glyphs/tcaron.glif new file mode 100644 index 00000000..4c19da05 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/tcaron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.metricsLeft + t + com.fontlab.metricsRight + t + com.fontlab.recipe + t+caron.salt + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/tcaron.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/tcaron.ss01.glif new file mode 100644 index 00000000..46295840 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/tcaron.ss01.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + com.fontlab.recipe + t.ss01+caron.salt + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/tcedilla.glif b/sources/FixelText-Medium.ufo/glyphs/tcedilla.glif new file mode 100644 index 00000000..daff9aaa --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/tcedilla.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + t+cedilla + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/tcedilla.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/tcedilla.ss01.glif new file mode 100644 index 00000000..0b72ba04 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/tcedilla.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + t.ss01+cedilla + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/tche-cy.glif b/sources/FixelText-Medium.ufo/glyphs/tche-cy.glif new file mode 100644 index 00000000..d3a6d76e --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/tche-cy.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + tetsecyr-20 + com.fontlab.metricsRight + ч + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/tcommaaccent.glif b/sources/FixelText-Medium.ufo/glyphs/tcommaaccent.glif new file mode 100644 index 00000000..53e259cd --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/tcommaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + t+commaaccentcomb + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/tcommaaccent.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/tcommaaccent.ss01.glif new file mode 100644 index 00000000..7c6cfe31 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/tcommaaccent.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + t.ss01+commaaccentcomb + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/te-cy.B_G_R_.glif b/sources/FixelText-Medium.ufo/glyphs/te-cy.B_G_R_.glif new file mode 100644 index 00000000..cd573af5 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/te-cy.B_G_R_.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + m + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/te-cy.S_R_B_.glif b/sources/FixelText-Medium.ufo/glyphs/te-cy.S_R_B_.glif new file mode 100644 index 00000000..4042bf9d --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/te-cy.S_R_B_.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ш.BGR+macron-fwd + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/te-cy.glif b/sources/FixelText-Medium.ufo/glyphs/te-cy.glif new file mode 100644 index 00000000..68ee617e --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/te-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/te-cy.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/te-cy.ss01.glif new file mode 100644 index 00000000..b125af48 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/te-cy.ss01.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/tenge.glif b/sources/FixelText-Medium.ufo/glyphs/tenge.glif new file mode 100644 index 00000000..5f436a58 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/tenge.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + T + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/tenmillionscomb-cy.glif b/sources/FixelText-Medium.ufo/glyphs/tenmillionscomb-cy.glif new file mode 100644 index 00000000..14712fc6 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/tenmillionscomb-cy.glif @@ -0,0 +1,109 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/tetailcyr.glif b/sources/FixelText-Medium.ufo/glyphs/tetailcyr.glif new file mode 100644 index 00000000..c2006d4a --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/tetailcyr.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + т + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/tetsecyr.glif b/sources/FixelText-Medium.ufo/glyphs/tetsecyr.glif new file mode 100644 index 00000000..fc2068cf --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/tetsecyr.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + т + com.fontlab.metricsRight + ц + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/tewithmiddlehook-cy.glif b/sources/FixelText-Medium.ufo/glyphs/tewithmiddlehook-cy.glif new file mode 100644 index 00000000..bda1740c --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/tewithmiddlehook-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + т + com.fontlab.metricsRight + gehookcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/thorn.glif b/sources/FixelText-Medium.ufo/glyphs/thorn.glif new file mode 100644 index 00000000..b23df5d3 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/thorn.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + b + com.fontlab.metricsRight + b + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/thousandmillionscomb-cy.glif b/sources/FixelText-Medium.ufo/glyphs/thousandmillionscomb-cy.glif new file mode 100644 index 00000000..291ed6f2 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/thousandmillionscomb-cy.glif @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/thousandscyr.dnom.glif b/sources/FixelText-Medium.ufo/glyphs/thousandscyr.dnom.glif new file mode 100644 index 00000000..843dcd94 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/thousandscyr.dnom.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + | + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/thousandscyr.glif b/sources/FixelText-Medium.ufo/glyphs/thousandscyr.glif new file mode 100644 index 00000000..2344efb2 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/thousandscyr.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + | + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/three.glif b/sources/FixelText-Medium.ufo/glyphs/three.glif new file mode 100644 index 00000000..a9d78aa0 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/three.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/three.osf.glif b/sources/FixelText-Medium.ufo/glyphs/three.osf.glif new file mode 100644 index 00000000..76842ceb --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/three.osf.glif @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + three + com.fontlab.metricsRight + three + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/three.tf.glif b/sources/FixelText-Medium.ufo/glyphs/three.tf.glif new file mode 100644 index 00000000..1110c247 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/three.tf.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/threequarters.glif b/sources/FixelText-Medium.ufo/glyphs/threequarters.glif new file mode 100644 index 00000000..82402f51 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/threequarters.glif @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/threesuperior.glif b/sources/FixelText-Medium.ufo/glyphs/threesuperior.glif new file mode 100644 index 00000000..3e2ed984 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/threesuperior.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/tilde.case.glif b/sources/FixelText-Medium.ufo/glyphs/tilde.case.glif new file mode 100644 index 00000000..147b9f9d --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/tilde.case.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/tilde.glif b/sources/FixelText-Medium.ufo/glyphs/tilde.glif new file mode 100644 index 00000000..d0fc1d43 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/tilde.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/titlocombcyr.glif b/sources/FixelText-Medium.ufo/glyphs/titlocombcyr.glif new file mode 100644 index 00000000..d096b7e8 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/titlocombcyr.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/tjekomicyr.glif b/sources/FixelText-Medium.ufo/glyphs/tjekomicyr.glif new file mode 100644 index 00000000..bc4a97f2 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/tjekomicyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + т + com.fontlab.metricsRight + njekomicyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/trademark.glif b/sources/FixelText-Medium.ufo/glyphs/trademark.glif new file mode 100644 index 00000000..aa4f2665 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/trademark.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/tse-cy.B_G_R_.glif b/sources/FixelText-Medium.ufo/glyphs/tse-cy.B_G_R_.glif new file mode 100644 index 00000000..3dfa84e6 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/tse-cy.B_G_R_.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + u + com.fontlab.metricsRight + ц + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/tse-cy.glif b/sources/FixelText-Medium.ufo/glyphs/tse-cy.glif new file mode 100644 index 00000000..771008ea --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/tse-cy.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + д + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/tseR_eversed-cy.glif b/sources/FixelText-Medium.ufo/glyphs/tseR_eversed-cy.glif new file mode 100644 index 00000000..68c1d90f --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/tseR_eversed-cy.glif @@ -0,0 +1,20 @@ + + + + + + + + + + com.fontlab.metricsLeft + + com.fontlab.metricsRight + н + com.fontlab.recipe + ц + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/tshecyr.glif b/sources/FixelText-Medium.ufo/glyphs/tshecyr.glif new file mode 100644 index 00000000..df3de4f3 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/tshecyr.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + hbar + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/tsse-cy.glif b/sources/FixelText-Medium.ufo/glyphs/tsse-cy.glif new file mode 100644 index 00000000..6224d43e --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/tsse-cy.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + т + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/tswe-cy.glif b/sources/FixelText-Medium.ufo/glyphs/tswe-cy.glif new file mode 100644 index 00000000..3b95c96d --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/tswe-cy.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ш + com.fontlab.metricsRight + shwe-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/twe-cy.glif b/sources/FixelText-Medium.ufo/glyphs/twe-cy.glif new file mode 100644 index 00000000..2be18e96 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/twe-cy.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + т.ss01 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/two.glif b/sources/FixelText-Medium.ufo/glyphs/two.glif new file mode 100644 index 00000000..88dcd9e3 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/two.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/two.osf.glif b/sources/FixelText-Medium.ufo/glyphs/two.osf.glif new file mode 100644 index 00000000..ea8b232f --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/two.osf.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + two + com.fontlab.metricsRight + two + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/two.tf.glif b/sources/FixelText-Medium.ufo/glyphs/two.tf.glif new file mode 100644 index 00000000..92c8fbcb --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/two.tf.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/twosuperior.glif b/sources/FixelText-Medium.ufo/glyphs/twosuperior.glif new file mode 100644 index 00000000..1c9319cc --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/twosuperior.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/u-cy.accented.glif b/sources/FixelText-Medium.ufo/glyphs/u-cy.accented.glif new file mode 100644 index 00000000..b0c63fbd --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/u-cy.accented.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + y+acute + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/u-cy.glif b/sources/FixelText-Medium.ufo/glyphs/u-cy.glif new file mode 100644 index 00000000..9b83072c --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/u-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + y + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/u.glif b/sources/FixelText-Medium.ufo/glyphs/u.glif new file mode 100644 index 00000000..e93d8770 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/u.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |n + com.fontlab.metricsRight + l + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/uacute.glif b/sources/FixelText-Medium.ufo/glyphs/uacute.glif new file mode 100644 index 00000000..5995086f --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/uacute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+acute + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/uacutedblcyr.glif b/sources/FixelText-Medium.ufo/glyphs/uacutedblcyr.glif new file mode 100644 index 00000000..8d89cb5d --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/uacutedblcyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u-cy+hungarumlaut + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/ubreve.glif b/sources/FixelText-Medium.ufo/glyphs/ubreve.glif new file mode 100644 index 00000000..9ec7bd06 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/ubreve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+breve + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/ucircumflex.glif b/sources/FixelText-Medium.ufo/glyphs/ucircumflex.glif new file mode 100644 index 00000000..803840fe --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/ucircumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+circumflex + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/udieresis.glif b/sources/FixelText-Medium.ufo/glyphs/udieresis.glif new file mode 100644 index 00000000..fa5e5d5a --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/udieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+dieresis + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/udieresiscyr.glif b/sources/FixelText-Medium.ufo/glyphs/udieresiscyr.glif new file mode 100644 index 00000000..177754a6 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/udieresiscyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/ugrave.glif b/sources/FixelText-Medium.ufo/glyphs/ugrave.glif new file mode 100644 index 00000000..5fe840e8 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/ugrave.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+grave + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/uhungarumlaut.glif b/sources/FixelText-Medium.ufo/glyphs/uhungarumlaut.glif new file mode 100644 index 00000000..793aac5c --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/uhungarumlaut.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+hungarumlaut + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/ukM_onograph-cy.glif b/sources/FixelText-Medium.ufo/glyphs/ukM_onograph-cy.glif new file mode 100644 index 00000000..ee32a865 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/ukM_onograph-cy.glif @@ -0,0 +1,78 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + y-30 + com.fontlab.metricsRight + y-20 + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/ukcyr.glif b/sources/FixelText-Medium.ufo/glyphs/ukcyr.glif new file mode 100644 index 00000000..e5ffc4a5 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/ukcyr.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + y + com.fontlab.recipe + uni1C82_у + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/umacron.glif b/sources/FixelText-Medium.ufo/glyphs/umacron.glif new file mode 100644 index 00000000..de09e90b --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/umacron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+macron + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/umacroncyr.glif b/sources/FixelText-Medium.ufo/glyphs/umacroncyr.glif new file mode 100644 index 00000000..7078efd7 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/umacroncyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u-cy+macron + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/underscore.glif b/sources/FixelText-Medium.ufo/glyphs/underscore.glif new file mode 100644 index 00000000..29090036 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/underscore.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/uni1C_80.glif b/sources/FixelText-Medium.ufo/glyphs/uni1C_80.glif new file mode 100644 index 00000000..979c45eb --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/uni1C_80.glif @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + б + com.fontlab.metricsRight + o-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/uni1C_81.glif b/sources/FixelText-Medium.ufo/glyphs/uni1C_81.glif new file mode 100644 index 00000000..65739e79 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/uni1C_81.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + д-10 + com.fontlab.metricsRight + | + com.fontlab.recipe + д + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/uni1C_82.glif b/sources/FixelText-Medium.ufo/glyphs/uni1C_82.glif new file mode 100644 index 00000000..c7d69dbf --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/uni1C_82.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/uni1C_83.glif b/sources/FixelText-Medium.ufo/glyphs/uni1C_83.glif new file mode 100644 index 00000000..d297fe25 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/uni1C_83.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + c + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/uni1C_84.glif b/sources/FixelText-Medium.ufo/glyphs/uni1C_84.glif new file mode 100644 index 00000000..bc693262 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/uni1C_84.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/uni1C_85.glif b/sources/FixelText-Medium.ufo/glyphs/uni1C_85.glif new file mode 100644 index 00000000..05e48bb6 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/uni1C_85.glif @@ -0,0 +1,20 @@ + + + + + + + + + + com.fontlab.metricsLeft + ш + com.fontlab.metricsRight + l() + com.fontlab.recipe + ш + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/uni1C_86.glif b/sources/FixelText-Medium.ufo/glyphs/uni1C_86.glif new file mode 100644 index 00000000..da3f9ffb --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/uni1C_86.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + uni1C84 + com.fontlab.metricsRight + ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/uni1C_87.glif b/sources/FixelText-Medium.ufo/glyphs/uni1C_87.glif new file mode 100644 index 00000000..3c05abc3 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/uni1C_87.glif @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + uni1C84-40 + com.fontlab.metricsRight + ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/uni1C_88.glif b/sources/FixelText-Medium.ufo/glyphs/uni1C_88.glif new file mode 100644 index 00000000..4d541293 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/uni1C_88.glif @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/uni1E_B_C_.glif b/sources/FixelText-Medium.ufo/glyphs/uni1E_B_C_.glif new file mode 100644 index 00000000..23a4793e --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/uni1E_B_C_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+tilde.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/uni1E_B_D_.glif b/sources/FixelText-Medium.ufo/glyphs/uni1E_B_D_.glif new file mode 100644 index 00000000..9472021d --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/uni1E_B_D_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+tilde + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/uni2010.glif b/sources/FixelText-Medium.ufo/glyphs/uni2010.glif new file mode 100644 index 00000000..10fc5ace --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/uni2010.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + hyphen + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/uni2D_E_E_.case.glif b/sources/FixelText-Medium.ufo/glyphs/uni2D_E_E_.case.glif new file mode 100644 index 00000000..6f4e7c80 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/uni2D_E_E_.case.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/uni2D_E_E_.glif b/sources/FixelText-Medium.ufo/glyphs/uni2D_E_E_.glif new file mode 100644 index 00000000..0ae9c385 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/uni2D_E_E_.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/uniE_000.alt.glif b/sources/FixelText-Medium.ufo/glyphs/uniE_000.alt.glif new file mode 100644 index 00000000..c6ae078c --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/uniE_000.alt.glif @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + ї_ї + public.markColor + 0.6,0.997,1,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/uniE_000.glif b/sources/FixelText-Medium.ufo/glyphs/uniE_000.glif new file mode 100644 index 00000000..96b77285 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/uniE_000.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + ї_ї + public.markColor + 0.6,0.997,1,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/uniE_01A_.glif b/sources/FixelText-Medium.ufo/glyphs/uniE_01A_.glif new file mode 100644 index 00000000..198bfc67 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/uniE_01A_.glif @@ -0,0 +1,115 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/uniF_43A_.glif b/sources/FixelText-Medium.ufo/glyphs/uniF_43A_.glif new file mode 100644 index 00000000..898bb0c3 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/uniF_43A_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/uniF_43B_.glif b/sources/FixelText-Medium.ufo/glyphs/uniF_43B_.glif new file mode 100644 index 00000000..6edc4054 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/uniF_43B_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ustraightcyr+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/uniF_45D_.glif b/sources/FixelText-Medium.ufo/glyphs/uniF_45D_.glif new file mode 100644 index 00000000..a06d9df2 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/uniF_45D_.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Є+acute.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/uniF_45E_.glif b/sources/FixelText-Medium.ufo/glyphs/uniF_45E_.glif new file mode 100644 index 00000000..8ab2bd0e --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/uniF_45E_.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Iacute + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/uniF_45F_.glif b/sources/FixelText-Medium.ufo/glyphs/uniF_45F_.glif new file mode 100644 index 00000000..9d593e40 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/uniF_45F_.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + com.fontlab.recipe + I+dieresiscase.alt+acute.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/uniF_475.glif b/sources/FixelText-Medium.ufo/glyphs/uniF_475.glif new file mode 100644 index 00000000..7d5e2d4e --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/uniF_475.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + є+acute + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/uniF_476.glif b/sources/FixelText-Medium.ufo/glyphs/uniF_476.glif new file mode 100644 index 00000000..b8197a1e --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/uniF_476.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + iacute + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/uniF_477.glif b/sources/FixelText-Medium.ufo/glyphs/uniF_477.glif new file mode 100644 index 00000000..741a0f7c --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/uniF_477.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + dotlessi+dieresisacute + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/uniF_478.glif b/sources/FixelText-Medium.ufo/glyphs/uniF_478.glif new file mode 100644 index 00000000..e0d07fd5 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/uniF_478.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Yat+acute.case + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/uniF_479.glif b/sources/FixelText-Medium.ufo/glyphs/uniF_479.glif new file mode 100644 index 00000000..49576449 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/uniF_479.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + yat+acute + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/uniF_498.glif b/sources/FixelText-Medium.ufo/glyphs/uniF_498.glif new file mode 100644 index 00000000..a668dc50 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/uniF_498.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ю+dieresis.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/uniF_499.glif b/sources/FixelText-Medium.ufo/glyphs/uniF_499.glif new file mode 100644 index 00000000..cca243bb --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/uniF_499.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ю+dieresis + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/uniF_49A_.glif b/sources/FixelText-Medium.ufo/glyphs/uniF_49A_.glif new file mode 100644 index 00000000..92a791fb --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/uniF_49A_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Obarcyr+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/uniF_49B_.glif b/sources/FixelText-Medium.ufo/glyphs/uniF_49B_.glif new file mode 100644 index 00000000..8c9841ae --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/uniF_49B_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + obarcyr+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/uniF_49C_.glif b/sources/FixelText-Medium.ufo/glyphs/uniF_49C_.glif new file mode 100644 index 00000000..61cb6aaa --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/uniF_49C_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Schwacyr+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/uniF_49D_.glif b/sources/FixelText-Medium.ufo/glyphs/uniF_49D_.glif new file mode 100644 index 00000000..60dc167e --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/uniF_49D_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + schwacyr+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/uniF_49E_.glif b/sources/FixelText-Medium.ufo/glyphs/uniF_49E_.glif new file mode 100644 index 00000000..55520f01 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/uniF_49E_.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Yatcyr + com.fontlab.metricsRight + Tshecyr + com.fontlab.recipe + Shhacyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/uniF_49F_.glif b/sources/FixelText-Medium.ufo/glyphs/uniF_49F_.glif new file mode 100644 index 00000000..137d09d9 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/uniF_49F_.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + hbar + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/uniF_4C_6.glif b/sources/FixelText-Medium.ufo/glyphs/uniF_4C_6.glif new file mode 100644 index 00000000..947dc09a --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/uniF_4C_6.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ч + com.fontlab.metricsRight + Ч + com.fontlab.recipe + Ч + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/uniF_4C_7.glif b/sources/FixelText-Medium.ufo/glyphs/uniF_4C_7.glif new file mode 100644 index 00000000..a1e73fac --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/uniF_4C_7.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ч + com.fontlab.metricsRight + ч + com.fontlab.recipe + ч+enhookcyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/uniF_4C_C_.glif b/sources/FixelText-Medium.ufo/glyphs/uniF_4C_C_.glif new file mode 100644 index 00000000..a779becf --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/uniF_4C_C_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + У+acute.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/uniF_4C_D_.glif b/sources/FixelText-Medium.ufo/glyphs/uniF_4C_D_.glif new file mode 100644 index 00000000..5aff0614 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/uniF_4C_D_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + y+acute + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/uniF_4D_2.glif b/sources/FixelText-Medium.ufo/glyphs/uniF_4D_2.glif new file mode 100644 index 00000000..97c07834 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/uniF_4D_2.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+grave.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/uniF_4D_3.glif b/sources/FixelText-Medium.ufo/glyphs/uniF_4D_3.glif new file mode 100644 index 00000000..2664c13c --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/uniF_4D_3.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+grave + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/uniF_4D_4.glif b/sources/FixelText-Medium.ufo/glyphs/uniF_4D_4.glif new file mode 100644 index 00000000..939c8d08 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/uniF_4D_4.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + P+caron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/uniF_4D_5.glif b/sources/FixelText-Medium.ufo/glyphs/uniF_4D_5.glif new file mode 100644 index 00000000..74858cad --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/uniF_4D_5.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + p+caron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/uniF_4D_6.glif b/sources/FixelText-Medium.ufo/glyphs/uniF_4D_6.glif new file mode 100644 index 00000000..c8c7bd51 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/uniF_4D_6.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Э+dotaccent.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/uniF_4D_7.glif b/sources/FixelText-Medium.ufo/glyphs/uniF_4D_7.glif new file mode 100644 index 00000000..9fa5c953 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/uniF_4D_7.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + э+dotaccent + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/uniF_4D_8.glif b/sources/FixelText-Medium.ufo/glyphs/uniF_4D_8.glif new file mode 100644 index 00000000..8a821e97 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/uniF_4D_8.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Я+dieresis.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/uniF_4D_9.glif b/sources/FixelText-Medium.ufo/glyphs/uniF_4D_9.glif new file mode 100644 index 00000000..0d1c89ee --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/uniF_4D_9.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + я+dieresis + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/uniF_50E_.glif b/sources/FixelText-Medium.ufo/glyphs/uniF_50E_.glif new file mode 100644 index 00000000..b449337f --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/uniF_50E_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/uniF_50F_.glif b/sources/FixelText-Medium.ufo/glyphs/uniF_50F_.glif new file mode 100644 index 00000000..962c573a --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/uniF_50F_.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/uniF_510.glif b/sources/FixelText-Medium.ufo/glyphs/uniF_510.glif new file mode 100644 index 00000000..a89b38ff --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/uniF_510.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/uniF_511.glif b/sources/FixelText-Medium.ufo/glyphs/uniF_511.glif new file mode 100644 index 00000000..cfc8fc35 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/uniF_511.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/uniF_512.glif b/sources/FixelText-Medium.ufo/glyphs/uniF_512.glif new file mode 100644 index 00000000..eedc8cff --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/uniF_512.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + com.fontlab.metricsLeft + E + com.fontlab.metricsRight + E + com.fontlab.recipe + E+dieresis.case+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/uniF_513.glif b/sources/FixelText-Medium.ufo/glyphs/uniF_513.glif new file mode 100644 index 00000000..8cf138a3 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/uniF_513.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.recipe + e+dieresis+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/uniF_514.glif b/sources/FixelText-Medium.ufo/glyphs/uniF_514.glif new file mode 100644 index 00000000..53509200 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/uniF_514.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + com.fontlab.metricsLeft + E + com.fontlab.metricsRight + E + com.fontlab.recipe + E+dieresis.case+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/uniF_515.glif b/sources/FixelText-Medium.ufo/glyphs/uniF_515.glif new file mode 100644 index 00000000..c931fe58 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/uniF_515.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.recipe + e+dieresis+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/uniF_516.glif b/sources/FixelText-Medium.ufo/glyphs/uniF_516.glif new file mode 100644 index 00000000..f2fe6c12 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/uniF_516.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + З+caron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/uniF_517.glif b/sources/FixelText-Medium.ufo/glyphs/uniF_517.glif new file mode 100644 index 00000000..5f257dad --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/uniF_517.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + з+caron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/uniF_518.glif b/sources/FixelText-Medium.ufo/glyphs/uniF_518.glif new file mode 100644 index 00000000..bf7e725d --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/uniF_518.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/uniF_519.glif b/sources/FixelText-Medium.ufo/glyphs/uniF_519.glif new file mode 100644 index 00000000..58a6f4db --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/uniF_519.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/uniF_51A_.glif b/sources/FixelText-Medium.ufo/glyphs/uniF_51A_.glif new file mode 100644 index 00000000..0370f223 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/uniF_51A_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/uniF_51B_.glif b/sources/FixelText-Medium.ufo/glyphs/uniF_51B_.glif new file mode 100644 index 00000000..e6151be4 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/uniF_51B_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/uniF_51C_.glif b/sources/FixelText-Medium.ufo/glyphs/uniF_51C_.glif new file mode 100644 index 00000000..43fd9237 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/uniF_51C_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Obarcyr+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/uniF_51D_.glif b/sources/FixelText-Medium.ufo/glyphs/uniF_51D_.glif new file mode 100644 index 00000000..7e55d08a --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/uniF_51D_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + obarcyr+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/uniF_51E_.glif b/sources/FixelText-Medium.ufo/glyphs/uniF_51E_.glif new file mode 100644 index 00000000..dbebd851 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/uniF_51E_.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + com.fontlab.recipe + Obarcyr+dieresis.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/uniF_51F_.glif b/sources/FixelText-Medium.ufo/glyphs/uniF_51F_.glif new file mode 100644 index 00000000..31de1f3a --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/uniF_51F_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.recipe + obarcyr+dieresis+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/uniF_521.glif b/sources/FixelText-Medium.ufo/glyphs/uniF_521.glif new file mode 100644 index 00000000..21a7a697 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/uniF_521.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ы+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/uniF_522.glif b/sources/FixelText-Medium.ufo/glyphs/uniF_522.glif new file mode 100644 index 00000000..0c40b29b --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/uniF_522.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Э+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/uniF_523.glif b/sources/FixelText-Medium.ufo/glyphs/uniF_523.glif new file mode 100644 index 00000000..f709b064 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/uniF_523.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + э+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/uniF_524.glif b/sources/FixelText-Medium.ufo/glyphs/uniF_524.glif new file mode 100644 index 00000000..dd893a46 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/uniF_524.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Э+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/uniF_525.glif b/sources/FixelText-Medium.ufo/glyphs/uniF_525.glif new file mode 100644 index 00000000..63560782 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/uniF_525.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + э+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/uniF_526.glif b/sources/FixelText-Medium.ufo/glyphs/uniF_526.glif new file mode 100644 index 00000000..54f6b320 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/uniF_526.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Є+dieresis.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/uniF_527.glif b/sources/FixelText-Medium.ufo/glyphs/uniF_527.glif new file mode 100644 index 00000000..2364ba6d --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/uniF_527.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + є+dieresis + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/uniF_528.glif b/sources/FixelText-Medium.ufo/glyphs/uniF_528.glif new file mode 100644 index 00000000..e0e4d901 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/uniF_528.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Я+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/uniF_529.glif b/sources/FixelText-Medium.ufo/glyphs/uniF_529.glif new file mode 100644 index 00000000..9d6a551f --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/uniF_529.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + я+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/uniF_52A_.glif b/sources/FixelText-Medium.ufo/glyphs/uniF_52A_.glif new file mode 100644 index 00000000..5dc2de7e --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/uniF_52A_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Я+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/uniF_52B_.glif b/sources/FixelText-Medium.ufo/glyphs/uniF_52B_.glif new file mode 100644 index 00000000..5cf97398 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/uniF_52B_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + я+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/uniF_52C_.glif b/sources/FixelText-Medium.ufo/glyphs/uniF_52C_.glif new file mode 100644 index 00000000..0762c497 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/uniF_52C_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ю+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/uniF_52D_.glif b/sources/FixelText-Medium.ufo/glyphs/uniF_52D_.glif new file mode 100644 index 00000000..55a9688b --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/uniF_52D_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ю+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/uniF_52E_.glif b/sources/FixelText-Medium.ufo/glyphs/uniF_52E_.glif new file mode 100644 index 00000000..f96c0885 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/uniF_52E_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ю+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/uniF_52F_.glif b/sources/FixelText-Medium.ufo/glyphs/uniF_52F_.glif new file mode 100644 index 00000000..be7be124 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/uniF_52F_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ю+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/uniF_532.glif b/sources/FixelText-Medium.ufo/glyphs/uniF_532.glif new file mode 100644 index 00000000..cafd4388 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/uniF_532.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Й + com.fontlab.metricsRight + Й + com.fontlab.recipe + Й + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/uniF_533.glif b/sources/FixelText-Medium.ufo/glyphs/uniF_533.glif new file mode 100644 index 00000000..0ed12fae --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/uniF_533.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + l() + com.fontlab.recipe + й+enhookcyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/uniF_536.glif b/sources/FixelText-Medium.ufo/glyphs/uniF_536.glif new file mode 100644 index 00000000..cf6ba873 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/uniF_536.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ы+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/uniF_537.glif b/sources/FixelText-Medium.ufo/glyphs/uniF_537.glif new file mode 100644 index 00000000..cb272405 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/uniF_537.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ы+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/uniF_538.glif b/sources/FixelText-Medium.ufo/glyphs/uniF_538.glif new file mode 100644 index 00000000..b6fcaa85 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/uniF_538.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Reversedzecyr+dieresis.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/uniF_539.glif b/sources/FixelText-Medium.ufo/glyphs/uniF_539.glif new file mode 100644 index 00000000..54b8ecab --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/uniF_539.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + reversedzecyr+dieresis + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/uniF_830.glif b/sources/FixelText-Medium.ufo/glyphs/uniF_830.glif new file mode 100644 index 00000000..dde1ff40 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/uniF_830.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+circumflex.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/uniF_831.glif b/sources/FixelText-Medium.ufo/glyphs/uniF_831.glif new file mode 100644 index 00000000..2885ade1 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/uniF_831.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+circumflex + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/uniF_833.glif b/sources/FixelText-Medium.ufo/glyphs/uniF_833.glif new file mode 100644 index 00000000..344369b3 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/uniF_833.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+circumflex.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/uniF_834.glif b/sources/FixelText-Medium.ufo/glyphs/uniF_834.glif new file mode 100644 index 00000000..bb02cfe2 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/uniF_834.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+circumflex + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/uniF_839.glif b/sources/FixelText-Medium.ufo/glyphs/uniF_839.glif new file mode 100644 index 00000000..1d96ab3b --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/uniF_839.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+circumflex.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/uniF_83A_.glif b/sources/FixelText-Medium.ufo/glyphs/uniF_83A_.glif new file mode 100644 index 00000000..90591f8d --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/uniF_83A_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+circumflex + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/uniF_86F_.glif b/sources/FixelText-Medium.ufo/glyphs/uniF_86F_.glif new file mode 100644 index 00000000..e11476b4 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/uniF_86F_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + K+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/uniF_870.glif b/sources/FixelText-Medium.ufo/glyphs/uniF_870.glif new file mode 100644 index 00000000..6f10d1fa --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/uniF_870.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + к+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/uniF_872.glif b/sources/FixelText-Medium.ufo/glyphs/uniF_872.glif new file mode 100644 index 00000000..81eb7eeb --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/uniF_872.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Л+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/uniF_873.glif b/sources/FixelText-Medium.ufo/glyphs/uniF_873.glif new file mode 100644 index 00000000..7768e662 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/uniF_873.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + л+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/uniF_875.glif b/sources/FixelText-Medium.ufo/glyphs/uniF_875.glif new file mode 100644 index 00000000..5bc01d71 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/uniF_875.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/uniF_876.glif b/sources/FixelText-Medium.ufo/glyphs/uniF_876.glif new file mode 100644 index 00000000..175e8483 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/uniF_876.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/uniF_878.glif b/sources/FixelText-Medium.ufo/glyphs/uniF_878.glif new file mode 100644 index 00000000..4387d031 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/uniF_878.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + X+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/uniF_879.glif b/sources/FixelText-Medium.ufo/glyphs/uniF_879.glif new file mode 100644 index 00000000..baf44065 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/uniF_879.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + x+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/uniF_87B_.glif b/sources/FixelText-Medium.ufo/glyphs/uniF_87B_.glif new file mode 100644 index 00000000..5a4bf783 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/uniF_87B_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ц+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/uniF_87C_.glif b/sources/FixelText-Medium.ufo/glyphs/uniF_87C_.glif new file mode 100644 index 00000000..fa39e1f3 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/uniF_87C_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ц+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/uniF_87E_.glif b/sources/FixelText-Medium.ufo/glyphs/uniF_87E_.glif new file mode 100644 index 00000000..31547132 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/uniF_87E_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ч+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/uniF_87F_.glif b/sources/FixelText-Medium.ufo/glyphs/uniF_87F_.glif new file mode 100644 index 00000000..1ff495e5 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/uniF_87F_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ч+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/uogonek.glif b/sources/FixelText-Medium.ufo/glyphs/uogonek.glif new file mode 100644 index 00000000..1e85c1a6 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/uogonek.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+ogonek + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/uring.glif b/sources/FixelText-Medium.ufo/glyphs/uring.glif new file mode 100644 index 00000000..c4584766 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/uring.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+ring + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/ushort-cy.glif b/sources/FixelText-Medium.ufo/glyphs/ushort-cy.glif new file mode 100644 index 00000000..6d9fc2de --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/ushort-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + uni0443+breve + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/ustraightcyr.glif b/sources/FixelText-Medium.ufo/glyphs/ustraightcyr.glif new file mode 100644 index 00000000..ddc8112d --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/ustraightcyr.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + v + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/ustraightstrokecyr.glif b/sources/FixelText-Medium.ufo/glyphs/ustraightstrokecyr.glif new file mode 100644 index 00000000..518de205 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/ustraightstrokecyr.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/utilde.glif b/sources/FixelText-Medium.ufo/glyphs/utilde.glif new file mode 100644 index 00000000..c30375e3 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/utilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+tilde + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/v.glif b/sources/FixelText-Medium.ufo/glyphs/v.glif new file mode 100644 index 00000000..306ba0a7 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/v.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/ve-cy.B_G_R_.glif b/sources/FixelText-Medium.ufo/glyphs/ve-cy.B_G_R_.glif new file mode 100644 index 00000000..f9a00384 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/ve-cy.B_G_R_.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + b-5 + com.fontlab.metricsRight + b + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/ve-cy.glif b/sources/FixelText-Medium.ufo/glyphs/ve-cy.glif new file mode 100644 index 00000000..bbfdf6b7 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/ve-cy.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/ve-cy.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/ve-cy.ss01.glif new file mode 100644 index 00000000..14a8c83b --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/ve-cy.ss01.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/virgo.glif b/sources/FixelText-Medium.ufo/glyphs/virgo.glif new file mode 100644 index 00000000..258a3b5c --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/virgo.glif @@ -0,0 +1,224 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =55 + com.fontlab.metricsRight + =35 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/vzmetcomb-cy.glif b/sources/FixelText-Medium.ufo/glyphs/vzmetcomb-cy.glif new file mode 100644 index 00000000..24ab0de3 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/vzmetcomb-cy.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/w.glif b/sources/FixelText-Medium.ufo/glyphs/w.glif new file mode 100644 index 00000000..ff878bee --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/w.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/wacute.glif b/sources/FixelText-Medium.ufo/glyphs/wacute.glif new file mode 100644 index 00000000..4401fa5e --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/wacute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + w+acute + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/wcircumflex.glif b/sources/FixelText-Medium.ufo/glyphs/wcircumflex.glif new file mode 100644 index 00000000..d3f1c0fb --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/wcircumflex.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + w+circumflex + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/wdieresis.glif b/sources/FixelText-Medium.ufo/glyphs/wdieresis.glif new file mode 100644 index 00000000..e259614c --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/wdieresis.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + w+dieresis + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/wecyr.glif b/sources/FixelText-Medium.ufo/glyphs/wecyr.glif new file mode 100644 index 00000000..17b087ab --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/wecyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + w + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/wgrave.glif b/sources/FixelText-Medium.ufo/glyphs/wgrave.glif new file mode 100644 index 00000000..59139bf1 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/wgrave.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + w+grave + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/x.glif b/sources/FixelText-Medium.ufo/glyphs/x.glif new file mode 100644 index 00000000..84a1785c --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/x.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/xatailcyr.glif b/sources/FixelText-Medium.ufo/glyphs/xatailcyr.glif new file mode 100644 index 00000000..5e5dff3f --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/xatailcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + x + com.fontlab.metricsRight + zhetailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/y.glif b/sources/FixelText-Medium.ufo/glyphs/y.glif new file mode 100644 index 00000000..79f50037 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/y.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/yacute.glif b/sources/FixelText-Medium.ufo/glyphs/yacute.glif new file mode 100644 index 00000000..4399e38c --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/yacute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + y+acute + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/yaecyr.glif b/sources/FixelText-Medium.ufo/glyphs/yaecyr.glif new file mode 100644 index 00000000..d83f25e7 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/yaecyr.glif @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + я + com.fontlab.metricsRight + e + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/yatI_otified-cy.glif b/sources/FixelText-Medium.ufo/glyphs/yatI_otified-cy.glif new file mode 100644 index 00000000..02b0e183 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/yatI_otified-cy.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + com.fontlab.metricsRight + yatcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/yatcyr.B_G_R_.glif b/sources/FixelText-Medium.ufo/glyphs/yatcyr.B_G_R_.glif new file mode 100644 index 00000000..39b04979 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/yatcyr.B_G_R_.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hardsign-cy + com.fontlab.metricsRight + ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/yatcyr.glif b/sources/FixelText-Medium.ufo/glyphs/yatcyr.glif new file mode 100644 index 00000000..1f537573 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/yatcyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hardsign-cy + com.fontlab.metricsRight + ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/ycircumflex.glif b/sources/FixelText-Medium.ufo/glyphs/ycircumflex.glif new file mode 100644 index 00000000..b8be25bf --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/ycircumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + y+circumflex + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/ydieresis.glif b/sources/FixelText-Medium.ufo/glyphs/ydieresis.glif new file mode 100644 index 00000000..5dbc904c --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/ydieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + y+dieresis + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/yen.glif b/sources/FixelText-Medium.ufo/glyphs/yen.glif new file mode 100644 index 00000000..ab309c1e --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/yen.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/yen.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/yen.ss01.glif new file mode 100644 index 00000000..6849e314 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/yen.ss01.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/yerN_eutral-cy.glif b/sources/FixelText-Medium.ufo/glyphs/yerN_eutral-cy.glif new file mode 100644 index 00000000..85c83b0a --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/yerN_eutral-cy.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hardsign-cy + com.fontlab.metricsRight + ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/yeru-cy.accented.glif b/sources/FixelText-Medium.ufo/glyphs/yeru-cy.accented.glif new file mode 100644 index 00000000..e490ed5a --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/yeru-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ы+acute + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/yeru-cy.glif b/sources/FixelText-Medium.ufo/glyphs/yeru-cy.glif new file mode 100644 index 00000000..b184fb20 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/yeru-cy.glif @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/yeru-cy.ss01.glif b/sources/FixelText-Medium.ufo/glyphs/yeru-cy.ss01.glif new file mode 100644 index 00000000..bc8bc1a3 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/yeru-cy.ss01.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/yeruB_ackyer-cy.glif b/sources/FixelText-Medium.ufo/glyphs/yeruB_ackyer-cy.glif new file mode 100644 index 00000000..cd770ab2 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/yeruB_ackyer-cy.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hardsign-cy + com.fontlab.metricsRight + dotlessi + com.fontlab.recipe + hardsign-cy_dotlessi + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/yi-cy.alt.glif b/sources/FixelText-Medium.ufo/glyphs/yi-cy.alt.glif new file mode 100644 index 00000000..e28bc5e6 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/yi-cy.alt.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.recipe + idieresis + public.markColor + 0.6,0.997,1,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/yi-cy.glif b/sources/FixelText-Medium.ufo/glyphs/yi-cy.glif new file mode 100644 index 00000000..c105094c --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/yi-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + idieresis + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/ylongdieresiscyr.glif b/sources/FixelText-Medium.ufo/glyphs/ylongdieresiscyr.glif new file mode 100644 index 00000000..c1767211 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/ylongdieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + yeru-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/yn-cy.glif b/sources/FixelText-Medium.ufo/glyphs/yn-cy.glif new file mode 100644 index 00000000..6711dc2c --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/yn-cy.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |izhitsacyr + com.fontlab.metricsRight + |izhitsacyr + com.fontlab.recipe + izhitsa + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/yuR_eversed-cy.glif b/sources/FixelText-Medium.ufo/glyphs/yuR_eversed-cy.glif new file mode 100644 index 00000000..958a38e4 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/yuR_eversed-cy.glif @@ -0,0 +1,20 @@ + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l + com.fontlab.recipe + ю + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/yusB_lended-cy.glif b/sources/FixelText-Medium.ufo/glyphs/yusB_lended-cy.glif new file mode 100644 index 00000000..b614dbd5 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/yusB_lended-cy.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + yusbigcyr + com.fontlab.metricsRight + yusbigcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/yusC_losedlittle-cy.glif b/sources/FixelText-Medium.ufo/glyphs/yusC_losedlittle-cy.glif new file mode 100644 index 00000000..01a7bccd --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/yusC_losedlittle-cy.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + yuslittlecyr + com.fontlab.metricsRight + yuslittlecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/yusbigcyr.glif b/sources/FixelText-Medium.ufo/glyphs/yusbigcyr.glif new file mode 100644 index 00000000..932953ed --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/yusbigcyr.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/yusbigiotifiedcyr.B_G_R_.glif b/sources/FixelText-Medium.ufo/glyphs/yusbigiotifiedcyr.B_G_R_.glif new file mode 100644 index 00000000..2439c3a8 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/yusbigiotifiedcyr.B_G_R_.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + com.fontlab.metricsRight + ж + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/yusbigiotifiedcyr.glif b/sources/FixelText-Medium.ufo/glyphs/yusbigiotifiedcyr.glif new file mode 100644 index 00000000..d21b212e --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/yusbigiotifiedcyr.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + ж + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/yusiotifiedC_losedL_ittle-cy.glif b/sources/FixelText-Medium.ufo/glyphs/yusiotifiedC_losedL_ittle-cy.glif new file mode 100644 index 00000000..8e79890b --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/yusiotifiedC_losedL_ittle-cy.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + yusClosedlittle-cy + com.fontlab.recipe + yusClosedlittle-cy+н + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/yuslittlecyr.glif b/sources/FixelText-Medium.ufo/glyphs/yuslittlecyr.glif new file mode 100644 index 00000000..41612846 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/yuslittlecyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + v-5 + com.fontlab.metricsRight + v-5 + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/yuslittleiotifiedcyr.glif b/sources/FixelText-Medium.ufo/glyphs/yuslittleiotifiedcyr.glif new file mode 100644 index 00000000..48d0e09c --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/yuslittleiotifiedcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + v-10 + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/z.glif b/sources/FixelText-Medium.ufo/glyphs/z.glif new file mode 100644 index 00000000..7dc7f0c7 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/z.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/zacute.glif b/sources/FixelText-Medium.ufo/glyphs/zacute.glif new file mode 100644 index 00000000..d7adf450 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/zacute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + z+acute + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/zcaron.glif b/sources/FixelText-Medium.ufo/glyphs/zcaron.glif new file mode 100644 index 00000000..c241f8e7 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/zcaron.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + z+caron + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/zdotaccent.glif b/sources/FixelText-Medium.ufo/glyphs/zdotaccent.glif new file mode 100644 index 00000000..6cc8b765 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/zdotaccent.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + z+dotaccent + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/ze-cy.B_G_R_.glif b/sources/FixelText-Medium.ufo/glyphs/ze-cy.B_G_R_.glif new file mode 100644 index 00000000..70a6b723 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/ze-cy.B_G_R_.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |c-12 + com.fontlab.metricsRight + в-5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/ze-cy.glif b/sources/FixelText-Medium.ufo/glyphs/ze-cy.glif new file mode 100644 index 00000000..f0df3a27 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/ze-cy.glif @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |c-5 + com.fontlab.metricsRight + в + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/zedieresiscyr.glif b/sources/FixelText-Medium.ufo/glyphs/zedieresiscyr.glif new file mode 100644 index 00000000..cf14f257 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/zedieresiscyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ze-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/zemlya-cy.glif b/sources/FixelText-Medium.ufo/glyphs/zemlya-cy.glif new file mode 100644 index 00000000..e0b0d8b5 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/zemlya-cy.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + z-10 + com.fontlab.metricsRight + z + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/zero.glif b/sources/FixelText-Medium.ufo/glyphs/zero.glif new file mode 100644 index 00000000..a18e1fef --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/zero.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/zero.osf.glif b/sources/FixelText-Medium.ufo/glyphs/zero.osf.glif new file mode 100644 index 00000000..4c6f4c52 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/zero.osf.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + zero + com.fontlab.metricsRight + zero + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/zero.tf.glif b/sources/FixelText-Medium.ufo/glyphs/zero.tf.glif new file mode 100644 index 00000000..ee39c59e --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/zero.tf.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/zetailcyr.B_S_H_.glif b/sources/FixelText-Medium.ufo/glyphs/zetailcyr.B_S_H_.glif new file mode 100644 index 00000000..045e12f6 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/zetailcyr.B_S_H_.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + з + com.fontlab.metricsRight + з + com.fontlab.recipe + з + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/zetailcyr.glif b/sources/FixelText-Medium.ufo/glyphs/zetailcyr.glif new file mode 100644 index 00000000..7a88ea56 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/zetailcyr.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + з + com.fontlab.metricsRight + з + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/zhe-cy.B_G_R_.glif b/sources/FixelText-Medium.ufo/glyphs/zhe-cy.B_G_R_.glif new file mode 100644 index 00000000..4420f237 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/zhe-cy.B_G_R_.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |k + com.fontlab.metricsRight + k + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/zhe-cy.glif b/sources/FixelText-Medium.ufo/glyphs/zhe-cy.glif new file mode 100644 index 00000000..1d80a86c --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/zhe-cy.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |k + com.fontlab.metricsRight + k + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/zhebrevecyr.glif b/sources/FixelText-Medium.ufo/glyphs/zhebrevecyr.glif new file mode 100644 index 00000000..e7507b71 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/zhebrevecyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + zhe-cy+breve + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/zhedieresiscyr.glif b/sources/FixelText-Medium.ufo/glyphs/zhedieresiscyr.glif new file mode 100644 index 00000000..03dbe927 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/zhedieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + zhe-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/zhetailcyr.glif b/sources/FixelText-Medium.ufo/glyphs/zhetailcyr.glif new file mode 100644 index 00000000..4308c213 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/zhetailcyr.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ж + com.fontlab.metricsRight + katailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/zhwe-cy.glif b/sources/FixelText-Medium.ufo/glyphs/zhwe-cy.glif new file mode 100644 index 00000000..1f9a0c33 --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/zhwe-cy.glif @@ -0,0 +1,87 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + з + com.fontlab.metricsRight + ж + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Medium.ufo/glyphs/zjekomicyr.glif b/sources/FixelText-Medium.ufo/glyphs/zjekomicyr.glif new file mode 100644 index 00000000..08599d3c --- /dev/null +++ b/sources/FixelText-Medium.ufo/glyphs/zjekomicyr.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + з-20 + com.fontlab.metricsRight + njekomicyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Medium.ufo/groups.plist b/sources/FixelText-Medium.ufo/groups.plist new file mode 100644 index 00000000..0215e532 --- /dev/null +++ b/sources/FixelText-Medium.ufo/groups.plist @@ -0,0 +1,2992 @@ + + + + + accent + + grave + acute.case + grave.case + acute + + case + + arrowdown.case + arrowdown.ss01.case + arrowleft.case + arrowleft.ss01.case + arrowright.case + arrowright.ss01.case + arrowup.case + arrowup.ss01.case + backslash.case + bar.case + braceleft.case + braceright.case + bracketleft.case + bracketright.case + brokenbar.case + bullet.case + colon.case + emdash.case + endash.case + exclamdown.case + guillemetleft.case + guillemetright.case + guilsinglleft.case + guilsinglright.case + hyphen.case + parenleft.case + parenright.case + questiondown.case + semicolon.case + at.case + bracketangleleft.case + bracketangleright.case + slash.case + + case_def + + arrowdown + arrowdown.ss01 + arrowleft + arrowleft.ss01 + arrowright + arrowright.ss01 + arrowup + arrowup.ss01 + backslash + bar + braceleft + braceright + bracketleft + bracketright + brokenbar + bullet + colon + emdash + endash + exclamdown + guillemetleft + guillemetright + guilsinglleft + guilsinglright + hyphen + parenleft + parenright + questiondown + semicolon + at + bracketangleleft + bracketangleright + slash + + cpsp + + 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 + Agrave + Aacute + Acircumflex + Atilde + Adieresis + Aring + AE + Ccedilla + Egrave + Eacute + Ecircumflex + Edieresis + Igrave + Iacute + Icircumflex + Idieresis + Eth + Ntilde + Ograve + Oacute + Ocircumflex + Otilde + Odieresis + Oslash + Ugrave + Uacute + Ucircumflex + Udieresis + Yacute + Thorn + Amacron + Abreve + Aogonek + Cacute + Ccircumflex + Cdotaccent + Ccaron + Dcaron + Dcroat + Emacron + Ebreve + Edotaccent + Eogonek + Ecaron + Gcircumflex + Gbreve + Gdotaccent + Gcommaaccent + Hcircumflex + Hbar + Itilde + Imacron + Ibreve + Iogonek + Idotaccent + IJ + Jcircumflex + Kcommaaccent + Lacute + Lcommaaccent + Lcaron + Ldot + Lslash + Nacute + Ncommaaccent + Ncaron + Eng + Omacron + Obreve + Ohungarumlaut + OE + Racute + Rcommaaccent + Rcaron + Sacute + Scircumflex + Scedilla + Scaron + Tcedilla + Tcaron + Tbar + Utilde + Umacron + Ubreve + Uring + Uhungarumlaut + Uogonek + Wcircumflex + Ycircumflex + Ydieresis + Zacute + Zdotaccent + Zcaron + Schwa + Acaron + Gacute + AEacute + Oslashacute + Scommaaccent + Tcommaaccent + Delta + Omega + Iegravecyr + uniF43A + A-cy.accented + E-cy.accented + Ii-cy.accented + O-cy.accented + U-cy.accented + Yeru-cy.accented + Ereversed-cy.accented + Iu-cy.accented + Ia-cy.accented + Io-cy.accented + uniF498 + uniF49A + uniF49C + uniF49E + uniF4C6 + uniF4CC + uniF4D2 + uniF4D4 + uniF4D6 + uniF4D8 + uniF50E + uniF510 + uniF512 + uniF514 + uniF516 + uniF518 + uniF51A + uniF51C + uniF51E + Yeru-cymacron + uniF522 + uniF524 + uniF526 + uniF528 + uniF52A + uniF52C + uniF52E + uniF532 + uniF536 + uniF538 + uniF830 + uniF833 + uniF839 + uniF86F + uniF872 + uniF875 + uniF878 + uniF87B + uniF87E + Io-cy + Djecyr + Gjecyr + E-cy + Dze-cy + I-cy + Yi-cy + Jecyr + Ljecyr + Njecyr + Tshecyr + Kjecyr + Igravecyr + Ushort-cy + Dzhecyr + A-cy + Be-cy + Ve-cy + Ge-cy + De-cy + Ie-cy + Zhe-cy + Ze-cy + Ii-cy + Iishort-cy + Ka-cy + El-cy + Em-cy + En-cy + O-cy + Pe-cy + Er-cy + Es-cy + Te-cy + U-cy + Ef-cy + Ha-cy + Tse-cy + Che-cy + Sha-cy + Shcha-cy + Hardsign-cy + Yeru-cy + Softsign-cy + Ereversed-cy + Iu-cy + Ia-cy + Omegacyr + Yatcyr + Eiotifiedcyr + Yuslittlecyr + Yuslittleiotifiedcyr + Yusbigcyr + Yusbigiotifiedcyr + Ksicyr + Psicyr + Fitacyr + Izhitsacyr + Izhitsagravedblcyr + Ukcyr + Omegaroundcyr + Omegatitlocyr + Otcyr + Koppacyr + Ishortsharptailcyr + Semisoftcyr + Ertickcyr + Gheupturn-cy + Gestrokecyr + Gehookcyr + Zhetailcyr + Zetailcyr + Katailcyr + Kaverticalstrokecyr + Kastrokecyr + Kabashkcyr + Entailcyr + Engecyr + Pehookcyr + Haabkhcyr + Estailcyr + Tetailcyr + Ustraightcyr + Ustraightstrokecyr + Xatailcyr + Tetsecyr + Chetailcyr + Chevertcyr + Shhacyr + Cheabkhcyr + Cheabkhtailcyr + Palochkacyr + Zhebrevecyr + Kahookcyr + Elsharptailcyr + Enhookcyr + Ensharptailcyr + Chekhakascyr + Emsharptailcyr + Abrevecyr + Adieresiscyr + Aiecyr + Iebrevecyr + Schwacyr + Schwadieresiscyr + Zhedieresiscyr + Zedieresiscyr + Dzeabkhcyr + Imacroncyr + Idieresiscyr + Odieresiscyr + Obarcyr + Obardieresiscyr + Ereverseddieresiscyr + Umacroncyr + Udieresiscyr + Uacutedblcyr + Chedieresiscyr + Getailcyr + Ylongdieresiscyr + Gehookstrokecyr + Hahookcyr + Hastrokecyr + Dekomicyr + Djekomicyr + Zjekomicyr + Dzjekomicyr + Ljekomicyr + Njekomicyr + Sjekomicyr + Tjekomicyr + Reversedzecyr + Elhookcyr + Lhacyr + Rhacyr + Yaecyr + Qacyr + Wecyr + Kaaleutcyr + Elmiddlehookcyr + Enmiddlehookcyr + Petailcyr + Shhatailcyr + Enhookleftcyr + Dzzhecyr + Dchecyr + Eltailcyr + Wgrave + Wacute + Wdieresis + Germandbls + uni1EBC + Zemlya-cy + Dzelo-cy + DzeReversed-cy + Iota-cy + Djerv-cy + UkMonograph-cy + OmegaBroad-cy + YerNeutral-cy + YeruBackYer-cy + YatIotified-cy + YuReversed-cy + IotifiedA-cy + YusClosedlittle-cy + YusBlended-cy + YusiotifiedClosedLittle-cy + Yn-cy + TseReversed-cy + DeSoft-cy + ElSoft-cy + EmSoft-cy + OMonocular-cy + OBinocular-cy + ODoubleMonocular-cy + Dwe-cy + Dzwe-cy + Zhwe-cy + Cche-cy + Dzze-cy + TeWithMiddleHook-cy + Twe-cy + Tswe-cy + Tsse-cy + Tche-cy + Hwe-cy + Shwe-cy + DoubleO-cy + CrossedO-cy + A-cy.ss01 + A.ss01 + AE.ss01 + Aacute.ss01 + Abreve.ss01 + Acircumflex.ss01 + Adieresis.ss01 + Agrave.ss01 + Amacron.ss01 + Aogonek.ss01 + Aring.ss01 + Atilde.ss01 + Em-cy.ss01 + Eng.ss01 + G.ss01 + Gacute.ss01 + Gbreve.ss01 + Gcircumflex.ss01 + Gcommaaccent.ss01 + Gdotaccent.ss01 + Ha-cy.ss01 + Ia-cy.ss01 + J.ss01 + Jcircumflex.ss01 + K.ss01 + Ka-cy.ss01 + Kcommaaccent.ss01 + M.ss01 + N.ss01 + Nacute.ss01 + Ncaron.ss01 + Ncommaaccent.ss01 + Ntilde.ss01 + Q.ss01 + U-cy.ss01 + Ushort-cy.ss01 + V.ss01 + W.ss01 + Wacute.ss01 + Wcircumflex.ss01 + Wdieresis.ss01 + Wgrave.ss01 + X.ss01 + Y.ss01 + Yacute.ss01 + Ycircumflex.ss01 + Ydieresis.ss01 + Z.ss01 + Zacute.ss01 + Zcaron.ss01 + Zdotaccent.ss01 + Zetailcyr.BSH + Gestrokecyr.BSH + Estailcyr.BSH + Estailcyr.CHU + Zhe-cy.ss01 + + locl.SRB + + be-cy.SRB + iegravecyr.SRB + igravecyr.SRB + + loclSRB_def + + be-cy + iegravecyr + igravecyr + + locl_BGR + + De-cy.BGR + Ef-cy.BGR + El-cy.BGR + de-cy.BGR + eiotifiedcyr.BGR + el-cy.BGR + ge-cy.BGR + hardsign-cy.BGR + ii-cy.BGR + iishort-cy.BGR + iotifieda-cy.BGR + iu-cy.BGR + ka-cy.BGR + pe-cy.BGR + sha-cy.BGR + shcha-cy.BGR + softsign-cy.BGR + te-cy.BGR + tse-cy.BGR + ve-cy.BGR + yatcyr.BGR + yusbigiotifiedcyr.BGR + ze-cy.BGR + zhe-cy.BGR + + locl_def + + De-cy + Ef-cy + El-cy + de-cy + eiotifiedcyr + el-cy + ge-cy + hardsign-cy + ii-cy + iishort-cy + iotifieda-cy + iu-cy + ka-cy + pe-cy + sha-cy + shcha-cy + softsign-cy + te-cy + tse-cy + ve-cy + yatcyr + yusbigiotifiedcyr + ze-cy + zhe-cy + + pics + + neptune + leo + virgo + bishopwhite + knightwhite + rookblack + bishopblack + knightblack + heartwhite + diamondwhite-misc + spadewhite + heart + clubwhite + crossedswords + flower + floretteblack + florettewhite + floretteoutlinedpetalledblackeight + + pics_def + + A + B + C + D + E + F + G + H + I + J + K + L + M + N + O + P + Q + R + + public.kern1.A.ss012 + + A-cy.ss01 + A.ss01 + Aacute.ss01 + Abreve.ss01 + Acircumflex.ss01 + Adieresis.ss01 + Agrave.ss01 + Amacron.ss01 + Aogonek.ss01 + Aring.ss01 + Atilde.ss01 + + public.kern1.A2 + + A + A-cy + A-cy.accented + Aacute + Abreve + Abrevecyr + Acaron + Acircumflex + Adieresis + Adieresiscyr + Agrave + Amacron + Aogonek + Aring + Atilde + De-cy.BGR + Delta + El-cy.BGR + IotifiedA-cy + Yn-cy + YusClosedlittle-cy + YusiotifiedClosedLittle-cy + Yuslittlecyr + Yuslittleiotifiedcyr + uniF50E + uniF830 + + public.kern1.AE + + AE + AE.ss01 + AEacute + Aiecyr + + public.kern1.C1 + + C + Cacute + Ccaron + Ccedilla + Ccircumflex + Cdotaccent + E-cy + Eiotifiedcyr + Es-cy + Estailcyr + Estailcyr.BSH + Estailcyr.CHU + Reversedzecyr + uniF45D + uniF526 + uniF538 + uniF875 + + public.kern1.Decyr + + Chetailcyr + De-cy + Dwe-cy + Dzze-cy + Elsharptailcyr + Eltailcyr + Emsharptailcyr + Ensharptailcyr + Entailcyr + Ishortsharptailcyr + Petailcyr + Shcha-cy + Shwe-cy + Tetsecyr + Tse-cy + Tswe-cy + uniF87B + + public.kern1.E1 + + E + E-cy.accented + Eacute + Ebreve + Ecaron + Ecircumflex + Edieresis + Edotaccent + Egrave + Emacron + Eogonek + Ie-cy + Iebrevecyr + Io-cy + Io-cy.accented + Yaecyr + uni1EBC + uniF510 + uniF512 + uniF514 + uniF833 + + public.kern1.G.ss01 + + G.ss01 + Gacute.ss01 + Gbreve.ss01 + Gcircumflex.ss01 + Gcommaaccent.ss01 + Gdotaccent.ss01 + + public.kern1.G1 + + G + Gacute + Gbreve + Gcircumflex + Gcommaaccent + Gdotaccent + + public.kern1.Ge-cy + + DeSoft-cy + ElSoft-cy + EmSoft-cy + Engecyr + Ge-cy + Gehookstrokecyr + Gestrokecyr + Gestrokecyr.BSH + Getailcyr + Gheupturn-cy + Gjecyr + TseReversed-cy + YeruBackYer-cy + uniF872 + + public.kern1.H + + Eng + Eng.ss01 + H + Hbar + Hcircumflex + I + Iacute + Ibreve + Icircumflex + Idieresis + Idotaccent + Igrave + Imacron + Iogonek + Itilde + J.ss01 + Jcircumflex.ss01 + M + M.ss01 + N + N.ss01 + Nacute + Nacute.ss01 + Ncaron + Ncaron.ss01 + Ncommaaccent + Ncommaaccent.ss01 + Ntilde + Ntilde.ss01 + + public.kern1.Hardcyr + + Hardsign-cy + Ljecyr + Njecyr + Semisoftcyr + Shhacyr + Softsign-cy + YatIotified-cy + Yatcyr + YerNeutral-cy + uniF478 + + public.kern1.J1 + + J + Jcircumflex + Jecyr + + public.kern1.K + + K + K.ss01 + Ka-cy + Ka-cy.ss01 + Kaaleutcyr + Kabashkcyr + Kastrokecyr + Kcommaaccent + Kcommaaccent.ss01 + Kjecyr + uniF86F + + public.kern1.L + + L + Lacute + Lcaron + Lcommaaccent + Lslash + + public.kern1.O + + Cheabkhcyr + Cheabkhtailcyr + CrossedO-cy + D + Dcaron + Dcroat + DoubleO-cy + Ef-cy + Ef-cy.BGR + Ereversed-cy + Ereversed-cy.accented + Ereverseddieresiscyr + Eth + Fitacyr + Iu-cy + Iu-cy.accented + O + O-cy + O-cy.accented + OBinocular-cy + ODoubleMonocular-cy + OMonocular-cy + Oacute + Obarcyr + Obardieresiscyr + Obreve + Ocircumflex + Odieresis + Odieresiscyr + Ograve + Ohungarumlaut + Omacron + Omega + Omegaroundcyr + Oslash + Oslashacute + Otilde + Q + Qacyr + Schwa + Schwacyr + Schwadieresiscyr + Sjekomicyr + uniF498 + uniF49A + uniF49C + uniF4D2 + uniF4D6 + uniF518 + uniF51A + uniF51C + uniF51E + uniF522 + uniF524 + uniF52C + uniF52E + uniF839 + + public.kern1.Oslash.alt + + Ha-cy + Ha-cy.ss01 + Hahookcyr + Lhacyr + Rhacyr + X + X.ss01 + uniF878 + + public.kern1.P + + Er-cy + Ertickcyr + P + uniF4D4 + + public.kern1.R + + R + Racute + Rcaron + Rcommaaccent + + public.kern1.S1 + + Dzwe-cy + S + Sacute + Scaron + Scedilla + Scircumflex + Scommaaccent + + public.kern1.T1 + + Koppacyr + T + Tcaron + Tcedilla + Tcommaaccent + Te-cy + Tetailcyr + Tsse-cy + Twe-cy + + public.kern1.U1 + + OmegaBroad-cy + Omegacyr + Omegatitlocyr + Otcyr + Psicyr + U + Uacute + Ubreve + Ucircumflex + Udieresis + Ugrave + Uhungarumlaut + Umacron + Uogonek + Uring + Utilde + + public.kern1.Ucyr1 + + U-cy + U-cy.accented + U-cy.ss01 + Uacutedblcyr + Udieresiscyr + Umacroncyr + Ushort-cy + Ushort-cy.ss01 + uniF4CC + + public.kern1.V + + Izhitsacyr + Izhitsagravedblcyr + V + V.ss01 + + public.kern1.W.ss011 + + W.ss01 + Wacute.ss01 + Wcircumflex.ss01 + Wdieresis.ss01 + Wgrave.ss01 + + public.kern1.W1 + + W + Wacute + Wcircumflex + Wdieresis + Wecyr + Wgrave + + public.kern1.Y.ss011 + + Y.ss01 + Yacute.ss01 + Ycircumflex.ss01 + Ydieresis.ss01 + + public.kern1.Y1 + + Ustraightcyr + Ustraightstrokecyr + Y + Yacute + Ycircumflex + Ydieresis + uniF43A + + public.kern1.Yacyr + + Cche-cy + Che-cy + Chedieresiscyr + Chekhakascyr + Chevertcyr + Dekomicyr + Elhookcyr + Em-cy + En-cy + Enhookcyr + Enhookleftcyr + I-cy + Ia-cy + Ia-cy.accented + Ia-cy.ss01 + Idieresiscyr + Ii-cy + Ii-cy.accented + Iishort-cy + Imacroncyr + Palochkacyr + Pe-cy + Sha-cy + Tche-cy + Yeru-cy + Yeru-cy.accented + Yeru-cymacron + Yi-cy + Ylongdieresiscyr + YuReversed-cy + palochkacyr + uniF45E + uniF45F + uniF4C6 + uniF4D8 + uniF528 + uniF52A + uniF532 + uniF536 + uniF87E + + public.kern1.Z1 + + Dzelo-cy + Z + Z.ss01 + Zacute + Zacute.ss01 + Zcaron + Zcaron.ss01 + Zdotaccent + Zdotaccent.ss01 + Zemlya-cy + + public.kern1.Ze-cy + + Dzeabkhcyr + Ksicyr + Ze-cy + Zedieresiscyr + Zetailcyr + Zetailcyr.BSH + uniF516 + + public.kern1.Zhe-cy + + Dzzhecyr + Katailcyr + Kaverticalstrokecyr + Xatailcyr + YusBlended-cy + Yusbigcyr + Yusbigiotifiedcyr + Zhe-cy + Zhebrevecyr + Zhedieresiscyr + Zhetailcyr + Zhwe-cy + + public.kern1.a1 + + a + aacute + abreve + acaron + acircumflex + adieresis + agrave + amacron + aogonek + aring + atilde + + public.kern1.c1 + + c + cacute + ccaron + ccedilla + ccircumflex + cdotaccent + e-cy + e-cy.hist + eiotifiedcyr + eiotifiedcyr.BGR + es-cy + estailcyr + estailcyr.BSH + estailcyr.CHU + koppacyr + reversedzecyr + sjekomicyr + uni1C83 + uniF475 + uniF527 + uniF539 + uniF876 + + public.kern1.comma1 + + comma + quotedblbase + quotesinglbase + + public.kern1.copyright1 + + copyright + registered + + public.kern1.dcaron + + dcaron + dcaron.ss01 + lcaron + + public.kern1.decyr1 + + chetailcyr + dchecyr + de-cy + de-cy.ss01 + dwe-cy + dzze-cy + elsharptailcyr + eltailcyr + emsharptailcyr + ensharptailcyr + entailcyr + ishortsharptailcyr + petailcyr + shcha-cy + shcha-cy.BGR + shhatailcyr + shwe-cy + tetsecyr + tse-cy + tse-cy.BGR + tswe-cy + uniF87C + + public.kern1.e.ss011 + + e.ss01 + eacute.ss01 + ebreve.ss01 + ecaron.ss01 + ecircumflex.ss01 + edieresis.ss01 + edotaccent.ss01 + egrave.ss01 + emacron.ss01 + eogonek.ss01 + oe.ss01 + + public.kern1.e1 + + ae + aeacute + aiecyr + cheabkhcyr + cheabkhtailcyr + e + e-cy.accented + eacute + ebreve + ecaron + ecircumflex + edieresis + edotaccent + egrave + emacron + eogonek + ie-cy + iebrevecyr + iegravecyr + iegravecyr.SRB + io-cy + io-cy.accented + uni1EBD + uniF511 + uniF513 + uniF515 + uniF834 + yaecyr + + public.kern1.el-cy.BGR + + el-cy.BGR + iotifieda-cy + iotifieda-cy.BGR + uni1C81 + yn-cy + yusClosedlittle-cy + yusiotifiedClosedLittle-cy + yuslittlecyr + yuslittleiotifiedcyr + + public.kern1.emdash1 + + emdash + endash + hyphen + + public.kern1.f1 + + f + f_f + + public.kern1.fi + + f_f_i + fi + + public.kern1.five1 + + five + five.tf + + public.kern1.four1 + + four + four.tf + + public.kern1.g.ss011 + + g.ss01 + gacute.ss01 + gbreve.ss01 + gcircumflex.ss01 + gcommaaccent.ss01 + gdotaccent.ss01 + + public.kern1.g1 + + g + gacute + gbreve + gcircumflex + gcommaaccent + gdotaccent + + public.kern1.gecyr + + deSoft-cy + elSoft-cy + emSoft-cy + engecyr + ge-cy + gehookstrokecyr + gestrokecyr + gestrokecyr.BSH + getailcyr + gheupturn-cy + gjecyr + + public.kern1.guillemotright1 + + guillemetright + guilsinglright + + public.kern1.hardcyr + + Tjekomicyr + djekomicyr + elmiddlehookcyr + enmiddlehookcyr + gehookcyr + hardsign-cy + hardsign-cy.BGR + hardsign-cy.ss01 + ljecyr + ljecyr.ss01 + ljekomicyr + njecyr + njecyr.ss01 + njekomicyr + pehookcyr + semisoftcyr + softsign-cy + softsign-cy.BGR + softsign-cy.ss01 + tewithmiddlehook-cy + tjekomicyr + uni1C86 + uni1C87 + uniF479 + yatIotified-cy + yatcyr + yatcyr.BGR + yerNeutral-cy + zjekomicyr + + public.kern1.i1 + + Djekomicyr + Ljekomicyr + Njekomicyr + Zjekomicyr + i + i-cy + iacute + icircumflex + igrave + imacron + iogonek + itilde + uniF476 + yi-cy.alt + + public.kern1.icyr1 + + cche-cy + che-cy + chedieresiscyr + chekhakascyr + chevertcyr + de-cy.BGR + el-cy + elhookcyr + em-cy + en-cy + enhookcyr + enhookleftcyr + ia-cy + ia-cy.accented + idieresiscyr + igravecyr + ii-cy + ii-cy.accented + iishort-cy + imacroncyr + mu + pe-cy + psicyr + q + qacyr + sha-cy + sha-cy.BGR + tche-cy + tseReversed-cy + ubreve + uni1C85 + uniF4C7 + uniF4D9 + uniF521 + uniF529 + uniF52B + uniF533 + uniF537 + uniF873 + uniF87F + utilde + yeru-cy + yeru-cy.accented + yeru-cy.ss01 + yeruBackyer-cy + ylongdieresiscyr + yuReversed-cy + + public.kern1.j1 + + ij + j + jcircumflex + jdotless + + public.kern1.k + + k + ka-cy + ka-cy.BGR + kaaleutcyr + kabashkcyr + kastrokecyr + kcommaaccent + kgreenlandic + kjecyr + uniF870 + + public.kern1.l + + f_f_l + fl + l + lacute + lcommaaccent + + public.kern1.l.ss011 + + Iota-cy + iota-cy + l.ss01 + lacute.ss01 + lcommaaccent.ss01 + + public.kern1.n + + Djecyr + Elmiddlehookcyr + Enmiddlehookcyr + Gehookcyr + Hwe-cy + Kahookcyr + Pehookcyr + Shhatailcyr + TeWithMiddleHook-cy + Tshecyr + a-cy.accented + a-cy.ss01 + a.ss01 + aacute.ss01 + abreve.ss01 + abrevecyr + acircumflex.ss01 + adieresis.ss01 + adieresiscyr + agrave.ss01 + aogonek.ss01 + aring.ss01 + atilde.ss01 + djecyr + el-cy.ss01 + h + hbar + hcircumflex + hwe-cy + ia-cy.ss01 + iotifieda-cy.hist + m + n + nacute + napostrophe + ncaron + ncommaaccent + ntilde + pe-cy.BGR + q.ss01 + shhacyr + te-cy.BGR + tshecyr + uniF49E + uniF49F + uniF50F + uniF831 + + public.kern1.numero + + numero + numero.ss01 + + public.kern1.o1 + + b + b.ss01 + be-cy.SRB + crossedo-cy + ef-cy + er-cy + er-cy.ss01 + ereversed-cy + ereversed-cy.accented + ereverseddieresiscyr + ertickcyr + eturned + fitacyr + iu-cy + iu-cy.BGR + iu-cy.accented + o + o-cy + o-cy.accented + oBinocular-cy + oDoubleMonocular-cy + oMonocular-cy + oacute + obarcyr + obardieresiscyr + obreve + ocircumflex + odieresis + odieresiscyr + ograve + ohungarumlaut + omacron + omegaBroad-cy + omegaroundcyr + omegatitlocyr + oslashacute + otilde + p + p.ss01 + schwacyr + schwadieresiscyr + thorn + uni1C82 + uniF499 + uniF49D + uniF4D3 + uniF4D5 + uniF4D7 + uniF519 + uniF51B + uniF51D + uniF51F + uniF523 + uniF525 + uniF52D + uniF52F + uniF83A + + public.kern1.period1 + + ellipsis + period + + public.kern1.quotedbl1 + + quotedbl + quotesingle + + public.kern1.quoteleft1 + + quotedblleft + quoteleft + + public.kern1.quoteright1 + + apostrophemod + minute + quotedblright + quoteright + second + + public.kern1.s1 + + dzwe-cy + s + sacute + scaron + scedilla + scircumflex + scommaaccent + + public.kern1.t.ss011 + + t.ss01 + tcedilla.ss01 + tcommaaccent.ss01 + + public.kern1.t1 + + t + tcaron + tcedilla + tcommaaccent + + public.kern1.te-cy + + te-cy + tetailcyr + tsse-cy + twe-cy + + public.kern1.u1 + + igravecyr.SRB + ii-cy.BGR + iishort-cy.BGR + pe-cy.SRB + te-cy.SRB + u + uacute + ucircumflex + udieresis + ugrave + uhungarumlaut + umacron + uogonek + uring + + public.kern1.uni0435.ss011 + + ie-cy.ss01 + io-cy.ss01 + + public.kern1.v + + izhitsacyr + izhitsagravedblcyr + v + + public.kern1.w1 + + omegacyr + otcyr + w + wacute + wcircumflex + wdieresis + wecyr + wgrave + + public.kern1.x + + ha-cy + hahookcyr + lhacyr + rhacyr + uniF879 + x + + public.kern1.y1 + + Ukcyr + u-cy + u-cy.accented + uacutedblcyr + udieresiscyr + ukcyr + umacroncyr + uniF43B + uniF4CD + ushort-cy + ustraightcyr + ustraightstrokecyr + y + yacute + ycircumflex + ydieresis + + public.kern1.z1 + + dzelo-cy + z + zacute + zcaron + zdotaccent + zemlya-cy + + public.kern1.ze-cy + + dzeabkhcyr + ksicyr + uniF517 + ze-cy + ze-cy.BGR + zedieresiscyr + zetailcyr + zetailcyr.BSH + + public.kern1.zhe-cy + + dzzhecyr + katailcyr + kaverticalstrokecyr + xatailcyr + yusBlended-cy + yusbigcyr + yusbigiotifiedcyr + yusbigiotifiedcyr.BGR + zhe-cy + zhe-cy.BGR + zhebrevecyr + zhedieresiscyr + zhetailcyr + zhwe-cy + + public.kern2.A.ss01 + + A.ss01 + AE.ss01 + Aacute.ss01 + Acircumflex.ss01 + Adieresis.ss01 + Agrave.ss01 + Amacron.ss01 + Aogonek.ss01 + Atilde.ss01 + + public.kern2.A.ss012 + + A-cy.ss01 + Abreve.ss01 + Aring.ss01 + + public.kern2.A2 + + A + A-cy + A-cy.accented + AE + AEacute + Aacute + Abreve + Abrevecyr + Acaron + Acircumflex + Adieresis + Adieresiscyr + Agrave + Aiecyr + Amacron + Aogonek + Aring + Atilde + De-cy.BGR + Delta + El-cy.BGR + Yn-cy + YusClosedlittle-cy + Yuslittlecyr + uniF50E + uniF830 + + public.kern2.B + + B + D + Dcaron + E + Eacute + Ecaron + Ecircumflex + Edieresis + Edotaccent + Egrave + Emacron + Eogonek + F + H + Hbar + Hcircumflex + I + Iacute + Ibreve + Icircumflex + Idieresis + Idotaccent + Igrave + Imacron + Iogonek + Itilde + K + K.ss01 + Kcommaaccent + Kcommaaccent.ss01 + L + Lacute + Lcaron + Lcommaaccent + Ldot + M + N + N.ss01 + Nacute + Nacute.ss01 + Ncaron + Ncaron.ss01 + Ncommaaccent + Ncommaaccent.ss01 + Ntilde + Ntilde.ss01 + P + R + Racute + Rcaron + Rcommaaccent + Thorn + uni1EBC + + public.kern2.Che-cy + + Cche-cy + Che-cy + Chedieresiscyr + Chekhakascyr + Chetailcyr + Chevertcyr + uniF4C6 + uniF87E + + public.kern2.De-cy + + Dchecyr + De-cy + DeSoft-cy + Dwe-cy + Dzze-cy + Dzzhecyr + TseReversed-cy + + public.kern2.El-cy + + El-cy + ElSoft-cy + Elhookcyr + Elmiddlehookcyr + Elsharptailcyr + Eltailcyr + Lhacyr + Ljekomicyr + uniF872 + + public.kern2.Eth + + Dcroat + Eth + Gestrokecyr + + public.kern2.G + + C + Cacute + Ccaron + Ccedilla + Ccircumflex + Cdotaccent + CrossedO-cy + DoubleO-cy + E-cy + Ef-cy.BGR + Es-cy + Estailcyr + Estailcyr.BSH + Estailcyr.CHU + Fitacyr + G + G.ss01 + Gacute + Gacute.ss01 + Gbreve + Gbreve.ss01 + Gcircumflex + Gcircumflex.ss01 + Gcommaaccent + Gcommaaccent.ss01 + Gdotaccent + Gdotaccent.ss01 + Haabkhcyr + Koppacyr + O + O-cy + O-cy.accented + OBinocular-cy + ODoubleMonocular-cy + OE + OMonocular-cy + Oacute + Obarcyr + Obardieresiscyr + Obreve + Ocircumflex + Odieresis + Odieresiscyr + Ograve + Ohungarumlaut + Omacron + Omegaroundcyr + Oslash + Otilde + Q + Q.ss01 + Qacyr + Schwacyr + Schwadieresiscyr + Sjekomicyr + Ukcyr + YuReversed-cy + uniF45D + uniF49A + uniF49C + uniF4D2 + uniF518 + uniF51A + uniF51C + uniF51E + uniF526 + uniF839 + uniF875 + + public.kern2.Gecyr + + Be-cy + E-cy.accented + Eiotifiedcyr + Em-cy + EmSoft-cy + Emsharptailcyr + En-cy + Engecyr + Enhookcyr + Enhookleftcyr + Enmiddlehookcyr + Ensharptailcyr + Entailcyr + Er-cy + Ertickcyr + Gehookcyr + Gestrokecyr.BSH + Getailcyr + Gheupturn-cy + Gjecyr + Hwe-cy + I-cy + Iebrevecyr + Ii-cy + Ii-cy.accented + Io-cy.accented + IotifiedA-cy + Iu-cy.accented + Ka-cy + Kaaleutcyr + Kahookcyr + Katailcyr + Kaverticalstrokecyr + Kjecyr + Njekomicyr + Palochkacyr + Pe-cy + Pehookcyr + Petailcyr + Rhacyr + Shhacyr + Shhatailcyr + Shwe-cy + Tswe-cy + Ve-cy + Yeru-cy.accented + Yeru-cymacron + Yi-cy + Ylongdieresiscyr + Yusbigiotifiedcyr + YusiotifiedClosedLittle-cy + Yuslittleiotifiedcyr + palochkacyr + uniF45E + uniF45F + uniF498 + uniF4D4 + uniF510 + uniF512 + uniF514 + uniF52C + uniF52E + uniF532 + uniF536 + uniF833 + uniF86F + uniF87B + + public.kern2.Ia-cy + + Ia-cy + Ia-cy.accented + Yaecyr + uniF4D8 + uniF528 + uniF52A + + public.kern2.Iishort-cy + + Idieresiscyr + Iishort-cy + Imacroncyr + Ishortsharptailcyr + + public.kern2.J + + J + Jcircumflex + Jecyr + + public.kern2.Oslash.alt + + Ha-cy.ss01 + Hahookcyr + X + X.ss01 + Xatailcyr + uniF878 + + public.kern2.S + + Dzwe-cy + S + Sacute + Scaron + Scedilla + Scircumflex + Scommaaccent + + public.kern2.T + + Djecyr + T + Tcaron + Tcedilla + Tche-cy + Tcommaaccent + Te-cy + TeWithMiddleHook-cy + Tetailcyr + Tetsecyr + Tjekomicyr + Tshecyr + Tsse-cy + Twe-cy + + public.kern2.U + + Iota-cy + OmegaBroad-cy + Omegacyr + Omegatitlocyr + Otcyr + Psicyr + U + Uacute + Ubreve + Ucircumflex + Udieresis + Ugrave + Uhungarumlaut + Umacron + Uogonek + Uring + Utilde + + public.kern2.Ucyr.ss01 + + U-cy.accented + U-cy.ss01 + Uacutedblcyr + Udieresiscyr + Umacroncyr + Ushort-cy.ss01 + uniF4CC + + public.kern2.V + + Izhitsacyr + Izhitsagravedblcyr + V + V.ss01 + + public.kern2.W + + W + W.ss01 + Wacute + Wacute.ss01 + Wcircumflex + Wcircumflex.ss01 + Wdieresis + Wdieresis.ss01 + Wecyr + Wgrave + Wgrave.ss01 + + public.kern2.Y + + Ustraightcyr + Ustraightstrokecyr + Y + Y.ss01 + Yacute + Yacute.ss01 + Ycircumflex + Ycircumflex.ss01 + Ydieresis + Ydieresis.ss01 + uniF43A + + public.kern2.Z + + Dzelo-cy + Z + Z.ss01 + Zacute + Zacute.ss01 + Zcaron + Zcaron.ss01 + Zdotaccent + Zdotaccent.ss01 + Zemlya-cy + + public.kern2.Ze-cy1 + + Dzeabkhcyr + Ksicyr + Ze-cy + Zedieresiscyr + Zetailcyr + Zetailcyr.BSH + Zhwe-cy + uniF516 + + public.kern2.Zhe-cy1 + + YusBlended-cy + Yusbigcyr + Zhe-cy + Zhebrevecyr + Zhedieresiscyr + Zhetailcyr + + public.kern2.a + + a + a-cy + a-cy.accented + aacute + abreve + abrevecyr + acaron + acircumflex + adieresis + adieresiscyr + ae + aeacute + agrave + aiecyr + amacron + aogonek + aring + atilde + uniF50F + uniF831 + + public.kern2.acute.case + + acute.case + hungarumlaut.case + + public.kern2.che-cy + + cche-cy + che-cy + chedieresiscyr + chekhakascyr + chetailcyr + chevertcyr + uniF4C7 + uniF87F + + public.kern2.comma + + comma + quotedblbase + quotesinglbase + + public.kern2.copyright + + copyright + registered + + public.kern2.decyr.ss01 + + de-cy.ss01 + deSoft-cy + dwe-cy + dzze-cy + dzzhecyr + tseReversed-cy + + public.kern2.el-cy + + el-cy + el-cy.ss01 + elSoft-cy + elhookcyr + elmiddlehookcyr + elsharptailcyr + eltailcyr + lhacyr + ljecyr.ss01 + ljekomicyr + uniF873 + + public.kern2.el-cy.BGR1 + + el-cy.BGR + uni1C81 + yn-cy + yusClosedlittle-cy + yuslittlecyr + + public.kern2.emdash + + emdash + endash + hyphen + + public.kern2.f + + f + f_f + f_f_i + f_f_l + fi + fl + gestrokecyr + + public.kern2.f_f.ss01 + + f_f.ss01 + f_f_i.ss01 + f_f_l.ss01 + + public.kern2.fi.ss01 + + fi.ss01 + fl.ss01 + + public.kern2.five + + five + five.tf + + public.kern2.four + + four + four.tf + + public.kern2.g + + g + gacute + gbreve + gcircumflex + gcommaaccent + gdotaccent + + public.kern2.g.ss01 + + g.ss01 + gacute.ss01 + gbreve.ss01 + gcircumflex.ss01 + gcommaaccent.ss01 + gdotaccent.ss01 + + public.kern2.guillemotleft + + guillemetleft + guilsinglleft + + public.kern2.guillemotright + + guillemetright + guilsinglright + + public.kern2.h + + eiotifiedcyr.BGR + h + hcircumflex + hwe-cy + iotifieda-cy.BGR + iu-cy.BGR + k + ka-cy.BGR + kcommaaccent + l + lacute + lcaron + lcommaaccent + ldot + shhacyr + shhatailcyr + ve-cy.BGR + yatcyr.BGR + yusbigiotifiedcyr.BGR + + public.kern2.i1 + + i + i-cy + iacute + icircumflex + igrave + imacron + iogonek + itilde + uniF476 + yi-cy.alt + + public.kern2.ia-cy + + ia-cy + ia-cy.accented + ia-cy.ss01 + uniF4D9 + uniF529 + uniF52B + yaecyr + + public.kern2.j + + enhookleftcyr + j + jcircumflex + jdotless + + public.kern2.l.ss01 + + l.ss01 + lacute.ss01 + lcaron.ss01 + lcommaaccent.ss01 + ldot.ss01 + + public.kern2.m + + eiotifiedcyr + em-cy + emSoft-cy + emsharptailcyr + en-cy + eng + engecyr + enhookcyr + enmiddlehookcyr + ensharptailcyr + entailcyr + er-cy + er-cy.ss01 + ertickcyr + ge-cy + gehookcyr + gehookstrokecyr + gestrokecyr.BSH + getailcyr + gheupturn-cy + gjecyr + idieresiscyr + idotless + igravecyr + ii-cy + ii-cy.accented + iishort-cy + imacroncyr + iotifieda-cy + ishortsharptailcyr + iu-cy + iu-cy.accented + ka-cy + kaaleutcyr + kahookcyr + katailcyr + kaverticalstrokecyr + kgreenlandic + kjecyr + m + mu + n + nacute + ncaron + ncommaaccent + njecyr.ss01 + njekomicyr + ntilde + p + p.ss01 + pe-cy + pe-cy.BGR + pehookcyr + petailcyr + psicyr + r + racute + rcaron + rcommaaccent + rhacyr + sha-cy + shcha-cy + shwe-cy + softsign-cy + softsign-cy.BGR + softsign-cy.ss01 + te-cy.BGR + tse-cy + tswe-cy + uni1C85 + uniF499 + uniF4D5 + uniF521 + uniF52D + uniF52F + uniF533 + uniF537 + uniF870 + uniF87C + ve-cy + ve-cy.ss01 + yatIotified-cy + yeru-cy + yeru-cy.accented + yeru-cy.ss01 + ylongdieresiscyr + yusbigiotifiedcyr + yusiotifiedClosedLittle-cy + yuslittleiotifiedcyr + + public.kern2.o + + Dekomicyr + Djekomicyr + a-cy.ss01 + a.ss01 + aacute.ss01 + abreve.ss01 + acircumflex.ss01 + adieresis.ss01 + agrave.ss01 + amacron.ss01 + aogonek.ss01 + aring.ss01 + atilde.ss01 + c + cacute + ccaron + ccedilla + ccircumflex + cdotaccent + cent + crossedo-cy + d + d.ss01 + dcaron + dcaron.ss01 + dcroat + dcroat.ss01 + de-cy.BGR + dekomicyr + djekomicyr + e + e-cy + e-cy.accented + e-cy.hist + e.ss01 + eacute + eacute.ss01 + ebreve + ebreve.ss01 + ecaron + ecaron.ss01 + ecircumflex + ecircumflex.ss01 + edieresis + edieresis.ss01 + edotaccent + edotaccent.ss01 + ef-cy + egrave + egrave.ss01 + emacron + emacron.ss01 + eogonek + eogonek.ss01 + es-cy + estailcyr + estailcyr.BSH + estailcyr.CHU + eth + eturned + fitacyr + haabkhcyr + ie-cy + ie-cy.ss01 + iebrevecyr + iegravecyr + iegravecyr.SRB + io-cy + io-cy.accented + io-cy.ss01 + koppacyr + o + o-cy + o-cy.accented + oBinocular-cy + oDoubleMonocular-cy + oMonocular-cy + oacute + obarcyr + obardieresiscyr + obreve + ocircumflex + odieresis + odieresiscyr + oe.ss01 + ograve + ohungarumlaut + omacron + omegaBroad-cy + omegaroundcyr + omegatitlocyr + oslashacute + otilde + q + q.ss01 + qacyr + schwacyr + schwadieresiscyr + sjekomicyr + ukcyr + uni1C82 + uni1C83 + uni1EBD + uniF475 + uniF49D + uniF4D3 + uniF511 + uniF513 + uniF515 + uniF519 + uniF51B + uniF51D + uniF51F + uniF527 + uniF834 + uniF83A + uniF876 + yuReversed-cy + + public.kern2.percent + + percent + perthousand + + public.kern2.period + + ellipsis + period + + public.kern2.quotedbl + + quotedbl + quotesingle + + public.kern2.quoteleft + + quotedblleft + quoteleft + + public.kern2.quoteright + + apostrophemod + minute + quotedblright + quoteright + second + + public.kern2.s + + dzwe-cy + s + sacute + scaron + scedilla + scircumflex + scommaaccent + + public.kern2.t + + t + t.ss01 + tbar.ss01 + tcaron + tcaron.ss01 + tcedilla + tcedilla.ss01 + tcommaaccent + tcommaaccent.ss01 + + public.kern2.tecyr + + tche-cy + te-cy.ss01 + tetailcyr + tetsecyr + tewithmiddlehook-cy + tjekomicyr + tsse-cy + twe-cy + + public.kern2.u + + igravecyr.SRB + ii-cy.BGR + iishort-cy.BGR + iota-cy + pe-cy.SRB + sha-cy.BGR + shcha-cy.BGR + te-cy.SRB + tse-cy.BGR + u + uacute + ubreve + ucircumflex + udieresis + ugrave + uhungarumlaut + umacron + uogonek + uring + utilde + + public.kern2.v1 + + izhitsacyr + izhitsagravedblcyr + v + + public.kern2.w + + omegacyr + otcyr + w + wacute + wcircumflex + wdieresis + wecyr + wgrave + + public.kern2.x + + ha-cy + hahookcyr + uniF879 + x + + public.kern2.y + + u-cy + u-cy.accented + uacutedblcyr + udieresiscyr + umacroncyr + uniF43B + uniF4CD + ustraightcyr + ustraightstrokecyr + y + yacute + ycircumflex + ydieresis + + public.kern2.z + + dzelo-cy + z + zacute + zcaron + zdotaccent + zemlya-cy + + public.kern2.ze-cy1 + + dzeabkhcyr + ksicyr + uniF517 + ze-cy + ze-cy.BGR + zedieresiscyr + zetailcyr + zetailcyr.BSH + zhwe-cy + + public.kern2.zero + + uni1C80 + zero + zero.tf + + public.kern2.zhe-cy1 + + xatailcyr + yusBlended-cy + yusbigcyr + zhe-cy + zhe-cy.BGR + zhebrevecyr + zhedieresiscyr + zhetailcyr + + ss01 + + A-cy.ss01 + A.ss01 + AE.ss01 + Aacute.ss01 + Abreve.ss01 + Acircumflex.ss01 + Adieresis.ss01 + Agrave.ss01 + Amacron.ss01 + Aogonek.ss01 + Aring.ss01 + Atilde.ss01 + Em-cy.ss01 + Eng.ss01 + G.ss01 + Gacute.ss01 + Gbreve.ss01 + Gcircumflex.ss01 + Gcommaaccent.ss01 + Gdotaccent.ss01 + Ha-cy.ss01 + Ia-cy.ss01 + J.ss01 + Jcircumflex.ss01 + K.ss01 + Ka-cy.ss01 + Kcommaaccent.ss01 + M.ss01 + N.ss01 + Nacute.ss01 + Ncaron.ss01 + Ncommaaccent.ss01 + Ntilde.ss01 + Q.ss01 + U-cy.ss01 + Ushort-cy.ss01 + V.ss01 + W.ss01 + Wacute.ss01 + Wcircumflex.ss01 + Wdieresis.ss01 + Wgrave.ss01 + X.ss01 + Y.ss01 + Yacute.ss01 + Ycircumflex.ss01 + Ydieresis.ss01 + Z.ss01 + Zacute.ss01 + Zcaron.ss01 + Zdotaccent.ss01 + Zhe-cy.ss01 + a-cy.ss01 + a.ss01 + aacute.ss01 + abreve.ss01 + acircumflex.ss01 + adieresis.ss01 + ae.ss01 + agrave.ss01 + amacron.ss01 + aogonek.ss01 + aring.ss01 + arrowdown.ss01 + arrowdown.ss01.case + arrowleft.ss01 + arrowleft.ss01.case + arrowright.ss01 + arrowright.ss01.case + arrowup.ss01 + arrowup.ss01.case + atilde.ss01 + b.ss01 + d.ss01 + dcaron.ss01 + dcroat.ss01 + de-cy.ss01 + e.ss01 + eacute.ss01 + ebreve.ss01 + ecaron.ss01 + ecircumflex.ss01 + edieresis.ss01 + edotaccent.ss01 + egrave.ss01 + el-cy.ss01 + emacron.ss01 + eogonek.ss01 + er-cy.ss01 + f.ss01 + f_f.ss01 + f_f_i.ss01 + f_f_l.ss01 + fi.ss01 + fl.ss01 + g.ss01 + gacute.ss01 + gbreve.ss01 + gcircumflex.ss01 + gcommaaccent.ss01 + gdotaccent.ss01 + germandbls.ss01 + hardsign-cy.ss01 + ia-cy.ss01 + ie-cy.ss01 + io-cy.ss01 + l.ss01 + lacute.ss01 + lcaron.ss01 + lcommaaccent.ss01 + ldot.ss01 + ljecyr.ss01 + lslash.ss01 + njecyr.ss01 + numero.ss01 + oe.ss01 + p.ss01 + q.ss01 + softsign-cy.ss01 + t.ss01 + tbar.ss01 + tcaron.ss01 + tcedilla.ss01 + tcommaaccent.ss01 + te-cy.ss01 + ve-cy.ss01 + yen.ss01 + yeru-cy.ss01 + + ss01_def + + A-cy + A + AE + Aacute + Abreve + Acircumflex + Adieresis + Agrave + Amacron + Aogonek + Aring + Atilde + Em-cy + Eng + G + Gacute + Gbreve + Gcircumflex + Gcommaaccent + Gdotaccent + Ha-cy + Ia-cy + J + Jcircumflex + K + Ka-cy + Kcommaaccent + M + N + Nacute + Ncaron + Ncommaaccent + Ntilde + Q + U-cy + Ushort-cy + V + W + Wacute + Wcircumflex + Wdieresis + Wgrave + X + Y + Yacute + Ycircumflex + Ydieresis + Z + Zacute + Zcaron + Zdotaccent + Zhe-cy + a-cy + a + aacute + abreve + acircumflex + adieresis + ae + agrave + amacron + aogonek + aring + arrowdown + arrowdown.case + arrowleft + arrowleft.case + arrowright + arrowright.case + arrowup + arrowup.case + atilde + b + d + dcaron + dcroat + de-cy + e + eacute + ebreve + ecaron + ecircumflex + edieresis + edotaccent + egrave + el-cy + emacron + eogonek + er-cy + f + f_f + f_f_i + f_f_l + fi + fl + g + gacute + gbreve + gcircumflex + gcommaaccent + gdotaccent + germandbls + hardsign-cy + ia-cy + ie-cy + io-cy + l + lacute + lcaron + lcommaaccent + ldot + ljecyr + lslash + njecyr + numero + oe + p + q + softsign-cy + t + tbar + tcaron + tcedilla + tcommaaccent + te-cy + ve-cy + yen + yeru-cy + + + diff --git a/sources/FixelText-Medium.ufo/kerning.plist b/sources/FixelText-Medium.ufo/kerning.plist new file mode 100644 index 00000000..64f90749 --- /dev/null +++ b/sources/FixelText-Medium.ufo/kerning.plist @@ -0,0 +1,2731 @@ + + + + + Zhe-cy + + public.kern2.G + -34 + + space + + public.kern2.W + -8 + public.kern2.Y + -80 + + uni1C82 + + public.kern2.y + -56 + + public.kern1.A.ss012 + + public.kern2.G + -30 + public.kern2.T + -38 + public.kern2.U + -20 + public.kern2.Ucyr.ss01 + -36 + public.kern2.V + -36 + public.kern2.W + -26 + public.kern2.Y + -62 + public.kern2.Z + -8 + public.kern2.a + -12 + public.kern2.decyr.ss01 + 2 + public.kern2.emdash + -12 + public.kern2.l.ss01 + -4 + public.kern2.m + -2 + public.kern2.o + -20 + public.kern2.quotedbl + -42 + public.kern2.quoteright + -42 + public.kern2.t + -8 + public.kern2.tecyr + -34 + public.kern2.u + -18 + public.kern2.w + -28 + public.kern2.x + 5 + public.kern2.y + -18 + + public.kern1.A2 + + public.kern2.A2 + 6 + public.kern2.G + -22 + public.kern2.J + 8 + public.kern2.Oslash.alt + 4 + public.kern2.S + 3 + public.kern2.T + -46 + public.kern2.U + -12 + public.kern2.Ucyr.ss01 + -26 + public.kern2.V + -31 + public.kern2.W + -27 + public.kern2.Y + -58 + public.kern2.Z + 16 + public.kern2.a + -4 + public.kern2.comma + 4 + public.kern2.decyr.ss01 + 3 + public.kern2.emdash + -8 + public.kern2.g + 8 + public.kern2.j + -14 + public.kern2.o + -10 + public.kern2.period + 32 + public.kern2.quotedbl + -50 + public.kern2.quoteright + -58 + public.kern2.t + -12 + public.kern2.tecyr + -30 + public.kern2.u + -4 + public.kern2.w + -20 + public.kern2.x + 2 + public.kern2.y + -38 + public.kern2.z + 10 + + public.kern1.C1 + + public.kern2.A2 + -2 + public.kern2.B + -2 + public.kern2.G + -11 + public.kern2.J + 4 + public.kern2.Oslash.alt + -8 + public.kern2.S + -2 + public.kern2.U + -2 + public.kern2.Ucyr.ss01 + -6 + public.kern2.V + -4 + public.kern2.W + -4 + public.kern2.Y + -20 + public.kern2.Z + -6 + public.kern2.comma + -2 + public.kern2.emdash + -22 + public.kern2.f + -4 + public.kern2.g + -9 + public.kern2.g.ss01 + -4 + public.kern2.j + -5 + public.kern2.o + -12 + public.kern2.period + -16 + public.kern2.quoteright + -6 + public.kern2.s + -2 + public.kern2.t + -2 + public.kern2.tecyr + -4 + public.kern2.u + -5 + public.kern2.w + -4 + public.kern2.x + -8 + public.kern2.y + -6 + + public.kern1.Decyr + + public.kern2.A.ss012 + 4 + public.kern2.A2 + 2 + public.kern2.G + -10 + public.kern2.T + -7 + public.kern2.Ucyr.ss01 + -30 + public.kern2.a + -8 + public.kern2.comma + 32 + public.kern2.decyr.ss01 + 10 + public.kern2.emdash + -12 + public.kern2.o + -10 + public.kern2.period + 12 + public.kern2.quoteright + -30 + public.kern2.tecyr + -22 + public.kern2.y + -4 + + public.kern1.E1 + + public.kern2.G + -6 + public.kern2.J + 10 + public.kern2.a + -2 + public.kern2.f + -4 + public.kern2.g.ss01 + -2 + public.kern2.i1 + 2 + public.kern2.j + -2 + public.kern2.o + -12 + public.kern2.period + 16 + public.kern2.quotedbl + 8 + public.kern2.quoteright + -2 + public.kern2.s + -2 + public.kern2.t + -2 + public.kern2.w + -10 + public.kern2.y + -14 + + public.kern1.G.ss01 + + public.kern2.A.ss01 + 10 + public.kern2.G + -4 + public.kern2.Oslash.alt + -2 + public.kern2.T + -12 + public.kern2.V + -26 + public.kern2.W + -16 + public.kern2.Y + -28 + public.kern2.Z + -2 + public.kern2.comma + -4 + public.kern2.emdash + -2 + public.kern2.o + -2 + public.kern2.quotedbl + -8 + public.kern2.quoteright + -22 + public.kern2.t + -5 + public.kern2.w + -24 + public.kern2.y + -22 + + public.kern1.G1 + + public.kern2.B + 2 + public.kern2.G + 8 + public.kern2.J + 4 + public.kern2.T + -12 + public.kern2.V + -26 + public.kern2.W + -16 + public.kern2.Y + -26 + public.kern2.comma + 8 + public.kern2.emdash + 16 + public.kern2.period + 10 + public.kern2.quotedbl + -4 + public.kern2.quoteright + -2 + public.kern2.w + -2 + public.kern2.y + -4 + + public.kern1.Ge-cy + + public.kern2.A.ss012 + -36 + public.kern2.A2 + -38 + public.kern2.G + -12 + public.kern2.Gecyr + 8 + public.kern2.T + 50 + public.kern2.a + -68 + public.kern2.comma + -80 + public.kern2.decyr.ss01 + -8 + public.kern2.emdash + -62 + public.kern2.guillemotright + -48 + public.kern2.i1 + 24 + public.kern2.m + -56 + public.kern2.o + -84 + public.kern2.period + -96 + public.kern2.x + -40 + public.kern2.y + -40 + + public.kern1.H + + public.kern2.Gecyr + 1 + public.kern2.comma + -16 + public.kern2.i1 + 2 + public.kern2.j + -6 + public.kern2.quoteright + -16 + + public.kern1.Hardcyr + + public.kern2.A.ss012 + 10 + public.kern2.Oslash.alt + -8 + public.kern2.T + -106 + public.kern2.Ucyr.ss01 + -70 + public.kern2.comma + -6 + public.kern2.quotedbl + -120 + public.kern2.quoteright + -60 + public.kern2.tecyr + -28 + public.kern2.x + -22 + public.kern2.y + -30 + + public.kern1.J1 + + public.kern2.A.ss012 + 5 + public.kern2.A2 + -10 + public.kern2.J + 2 + public.kern2.S + -15 + public.kern2.T + -2 + public.kern2.Z + -8 + public.kern2.comma + -30 + public.kern2.i1 + 2 + public.kern2.period + -24 + public.kern2.s + -2 + + public.kern1.K + + public.kern2.A2 + 4 + public.kern2.G + -54 + public.kern2.J + 10 + public.kern2.S + -10 + public.kern2.U + -2 + public.kern2.a + -10 + public.kern2.comma + 2 + public.kern2.emdash + -56 + public.kern2.f + -10 + public.kern2.g + -16 + public.kern2.i1 + 8 + public.kern2.j + -8 + public.kern2.l.ss01 + -2 + public.kern2.o + -40 + public.kern2.period + 8 + public.kern2.quoteright + -32 + public.kern2.t + -32 + public.kern2.tecyr + -48 + public.kern2.u + -30 + public.kern2.w + -30 + public.kern2.y + -40 + + public.kern1.L + + public.kern2.A.ss01 + 4 + public.kern2.A2 + 6 + public.kern2.G + -38 + public.kern2.J + 12 + public.kern2.T + -92 + public.kern2.U + -36 + public.kern2.V + -100 + public.kern2.W + -58 + public.kern2.Y + -98 + public.kern2.Z + 2 + public.kern2.a + -10 + public.kern2.emdash + -68 + public.kern2.guillemotleft + -30 + public.kern2.j + -6 + public.kern2.o + -34 + public.kern2.period + 4 + public.kern2.quotedbl + -90 + public.kern2.quoteright + -74 + public.kern2.t + -22 + public.kern2.u + -10 + public.kern2.w + -58 + public.kern2.x + -2 + public.kern2.y + -86 + public.kern2.z + 10 + + public.kern1.O + + Zhe-cy + -34 + public.kern2.A.ss01 + -2 + public.kern2.A.ss012 + 1 + public.kern2.A2 + -22 + public.kern2.J + -36 + public.kern2.Oslash.alt + -26 + public.kern2.S + -2 + public.kern2.T + -30 + public.kern2.Ucyr.ss01 + -30 + public.kern2.V + -32 + public.kern2.W + -12 + public.kern2.Y + -46 + public.kern2.Z + -38 + public.kern2.a + -10 + public.kern2.comma + -58 + public.kern2.decyr.ss01 + -18 + public.kern2.emdash + 16 + public.kern2.j + -8 + public.kern2.period + -48 + public.kern2.quotedbl + -18 + public.kern2.quoteright + 2 + public.kern2.s + -2 + public.kern2.tecyr + 2 + public.kern2.w + -2 + public.kern2.x + -12 + public.kern2.y + -2 + public.kern2.z + -8 + + public.kern1.Oslash.alt + + public.kern2.A.ss01 + 2 + public.kern2.A.ss012 + 2 + public.kern2.A2 + 4 + public.kern2.G + -34 + public.kern2.J + 6 + public.kern2.S + -6 + public.kern2.Ucyr.ss01 + 2 + public.kern2.W + 2 + public.kern2.a + -10 + public.kern2.comma + 10 + public.kern2.decyr.ss01 + 2 + public.kern2.emdash + -22 + public.kern2.f + -4 + public.kern2.g + -4 + public.kern2.i1 + 8 + public.kern2.j + -8 + public.kern2.o + -30 + public.kern2.period + 8 + public.kern2.quotedbl + 2 + public.kern2.quoteright + -44 + public.kern2.s + -4 + public.kern2.t + -12 + public.kern2.tecyr + -26 + public.kern2.u + -10 + public.kern2.w + -20 + public.kern2.x + 2 + public.kern2.y + -22 + + public.kern1.P + + public.kern2.A.ss01 + -40 + public.kern2.A.ss012 + -40 + public.kern2.A2 + -59 + public.kern2.J + -67 + public.kern2.Oslash.alt + -34 + public.kern2.T + -17 + public.kern2.Ucyr.ss01 + -22 + public.kern2.V + -6 + public.kern2.W + -4 + public.kern2.Y + -14 + public.kern2.Z + -36 + public.kern2.a + -20 + public.kern2.comma + -108 + public.kern2.decyr.ss01 + -32 + public.kern2.emdash + -7 + public.kern2.g + -10 + public.kern2.g.ss01 + -18 + public.kern2.j + -26 + public.kern2.o + -28 + public.kern2.period + -134 + public.kern2.quotedbl + -16 + public.kern2.quoteright + 2 + public.kern2.s + -18 + public.kern2.t + 4 + public.kern2.tecyr + 5 + public.kern2.x + -4 + public.kern2.z + -8 + + public.kern1.R + + public.kern2.A.ss01 + 2 + public.kern2.G + -14 + public.kern2.S + -4 + public.kern2.T + -22 + public.kern2.U + -18 + public.kern2.V + -18 + public.kern2.W + -6 + public.kern2.Y + -24 + public.kern2.a + -4 + public.kern2.emdash + -14 + public.kern2.f + -2 + public.kern2.j + -8 + public.kern2.m + -2 + public.kern2.o + -20 + public.kern2.period + 2 + public.kern2.quotedbl + -16 + public.kern2.quoteright + -10 + public.kern2.s + -4 + public.kern2.t + -6 + public.kern2.u + -18 + public.kern2.w + -6 + public.kern2.y + -4 + + public.kern1.S1 + + public.kern2.A.ss01 + 4 + public.kern2.J + 4 + public.kern2.Oslash.alt + -8 + public.kern2.T + -8 + public.kern2.V + -12 + public.kern2.W + -12 + public.kern2.Y + -30 + public.kern2.Z + -8 + public.kern2.comma + -8 + public.kern2.emdash + 10 + public.kern2.f + -4 + public.kern2.g + -16 + public.kern2.i1 + 2 + public.kern2.j + -10 + public.kern2.o + 2 + public.kern2.quotedbl + -28 + public.kern2.quoteright + -26 + public.kern2.t + -4 + public.kern2.w + -11 + public.kern2.x + -8 + public.kern2.y + -13 + + public.kern1.T1 + + public.kern2.A.ss01 + -26 + public.kern2.A.ss012 + -48 + public.kern2.A2 + -46 + public.kern2.G + -30 + public.kern2.J + -68 + public.kern2.S + -8 + public.kern2.T + 36 + public.kern2.Ucyr.ss01 + 2 + public.kern2.V + 16 + public.kern2.W + 18 + public.kern2.Y + 8 + public.kern2.a + -60 + public.kern2.comma + -56 + public.kern2.decyr.ss01 + -76 + public.kern2.emdash + -74 + public.kern2.f + -10 + public.kern2.g + -70 + public.kern2.g.ss01 + -14 + public.kern2.guillemotleft + -52 + public.kern2.guillemotright + -60 + public.kern2.i1 + 13 + public.kern2.j + -20 + public.kern2.m + -54 + public.kern2.o + -80 + public.kern2.period + -78 + public.kern2.quotedbl + 22 + public.kern2.quoteright + -22 + public.kern2.s + -59 + public.kern2.tecyr + -52 + public.kern2.u + -48 + public.kern2.w + -48 + public.kern2.x + -48 + public.kern2.y + -48 + public.kern2.z + -42 + + public.kern1.U1 + + public.kern2.A.ss01 + -10 + public.kern2.A.ss012 + -3 + public.kern2.A2 + -12 + public.kern2.J + -18 + public.kern2.Z + -18 + public.kern2.comma + -30 + public.kern2.i1 + 2 + public.kern2.j + -16 + public.kern2.period + -26 + public.kern2.quoteright + -34 + public.kern2.z + -10 + + public.kern1.Ucyr1 + + public.kern2.A.ss012 + -28 + public.kern2.A2 + -30 + public.kern2.G + -22 + public.kern2.Gecyr + -8 + public.kern2.T + 10 + public.kern2.a + -52 + public.kern2.comma + -88 + public.kern2.decyr.ss01 + -50 + public.kern2.emdash + -50 + public.kern2.guillemotright + -60 + public.kern2.i1 + 26 + public.kern2.m + -56 + public.kern2.o + -68 + public.kern2.period + -94 + public.kern2.tecyr + -18 + public.kern2.x + -22 + public.kern2.y + -30 + + public.kern1.V + + public.kern2.A.ss01 + -58 + public.kern2.A.ss012 + -28 + public.kern2.A2 + -33 + public.kern2.G + -32 + public.kern2.J + -76 + public.kern2.S + -10 + public.kern2.T + 16 + public.kern2.W + 2 + public.kern2.Y + 2 + public.kern2.a + -50 + public.kern2.comma + -96 + public.kern2.emdash + -48 + public.kern2.f + -4 + public.kern2.g + -38 + public.kern2.g.ss01 + -44 + public.kern2.guillemotleft + -42 + public.kern2.guillemotright + -30 + public.kern2.i1 + 8 + public.kern2.j + -18 + public.kern2.m + -50 + public.kern2.o + -61 + public.kern2.period + -102 + public.kern2.quotedbl + 12 + public.kern2.quoteright + -10 + public.kern2.s + -40 + public.kern2.t + -10 + public.kern2.u + -50 + public.kern2.w + -12 + public.kern2.x + -20 + public.kern2.y + -20 + public.kern2.z + -20 + + public.kern1.W.ss011 + + public.kern2.A.ss01 + -16 + public.kern2.A.ss012 + -16 + public.kern2.A2 + -40 + public.kern2.G + -14 + public.kern2.J + -34 + public.kern2.Oslash.alt + 2 + public.kern2.S + -10 + public.kern2.T + 28 + public.kern2.V + 2 + public.kern2.W + 6 + public.kern2.Y + 12 + public.kern2.Z + -9 + public.kern2.a + -26 + public.kern2.comma + -64 + public.kern2.emdash + -24 + public.kern2.g + -16 + public.kern2.g.ss01 + -17 + public.kern2.guillemotright + -12 + public.kern2.i1 + 7 + public.kern2.m + -12 + public.kern2.o + -38 + public.kern2.period + -82 + public.kern2.quotedbl + 14 + public.kern2.quoteright + 16 + public.kern2.s + -15 + public.kern2.u + -14 + public.kern2.w + -20 + public.kern2.y + -8 + public.kern2.z + -12 + + public.kern1.W1 + + public.kern2.A.ss01 + -38 + public.kern2.A.ss012 + -16 + public.kern2.A2 + -27 + public.kern2.G + -12 + public.kern2.J + -64 + public.kern2.S + -6 + public.kern2.T + 16 + public.kern2.V + 2 + public.kern2.Y + 2 + public.kern2.Z + -10 + public.kern2.a + -42 + public.kern2.comma + -40 + public.kern2.emdash + -20 + public.kern2.g + -28 + public.kern2.guillemotleft + -30 + public.kern2.guillemotright + -10 + public.kern2.i1 + 7 + public.kern2.j + -16 + public.kern2.m + -30 + public.kern2.o + -48 + public.kern2.period + -46 + public.kern2.quotedbl + 4 + public.kern2.quoteright + -18 + public.kern2.s + -20 + public.kern2.u + -22 + public.kern2.w + -6 + public.kern2.x + -8 + public.kern2.y + -10 + public.kern2.z + -22 + + public.kern1.Y.ss011 + + public.kern2.A.ss01 + -56 + public.kern2.A.ss012 + -76 + public.kern2.B + -4 + public.kern2.G + -36 + public.kern2.S + -9 + public.kern2.W + 4 + public.kern2.Y + 6 + public.kern2.a + -48 + public.kern2.comma + -94 + public.kern2.emdash + -64 + public.kern2.g.ss01 + -22 + public.kern2.i1 + 20 + public.kern2.m + -74 + public.kern2.o + -104 + public.kern2.period + -100 + public.kern2.quotedbl + 4 + public.kern2.quoteright + -30 + public.kern2.s + -63 + public.kern2.t + -6 + public.kern2.u + -60 + public.kern2.w + -40 + public.kern2.x + -8 + public.kern2.y + -6 + public.kern2.z + -8 + + public.kern1.Y1 + + public.kern2.A.ss012 + -46 + public.kern2.A2 + -58 + public.kern2.B + -2 + public.kern2.G + -46 + public.kern2.J + -74 + public.kern2.S + -32 + public.kern2.T + 10 + public.kern2.V + 3 + public.kern2.W + 2 + public.kern2.Y + 6 + public.kern2.a + -72 + public.kern2.comma + -84 + public.kern2.emdash + -72 + public.kern2.f + -30 + public.kern2.g + -64 + public.kern2.guillemotleft + -76 + public.kern2.guillemotright + -62 + public.kern2.i1 + -4 + public.kern2.j + -24 + public.kern2.m + -82 + public.kern2.o + -102 + public.kern2.period + -112 + public.kern2.quotedbl + 14 + public.kern2.quoteright + -24 + public.kern2.s + -74 + public.kern2.t + -12 + public.kern2.u + -70 + public.kern2.w + -36 + public.kern2.x + -42 + public.kern2.y + -42 + public.kern2.z + -50 + + public.kern1.Yacyr + + public.kern2.A.ss012 + 2 + public.kern2.Ucyr.ss01 + -8 + public.kern2.i1 + 2 + + public.kern1.Z1 + + public.kern2.A.ss01 + 16 + public.kern2.A.ss012 + 22 + public.kern2.A2 + 4 + public.kern2.B + 2 + public.kern2.G + -22 + public.kern2.J + 8 + public.kern2.Oslash.alt + -2 + public.kern2.S + 4 + public.kern2.T + 8 + public.kern2.U + -16 + public.kern2.V + 2 + public.kern2.W + 8 + public.kern2.Z + 4 + public.kern2.a + -6 + public.kern2.comma + 14 + public.kern2.emdash + -38 + public.kern2.f + -3 + public.kern2.h + 2 + public.kern2.i1 + 16 + public.kern2.j + 4 + public.kern2.o + -23 + public.kern2.period + 14 + public.kern2.quoteright + -38 + public.kern2.s + -6 + public.kern2.t + -8 + public.kern2.u + -18 + public.kern2.w + -18 + public.kern2.x + 2 + public.kern2.y + -10 + public.kern2.z + 6 + + public.kern1.a1 + + public.kern2.A.ss012 + 10 + public.kern2.G + -4 + public.kern2.J + 2 + public.kern2.S + -16 + public.kern2.T + -70 + public.kern2.U + -2 + public.kern2.Ucyr.ss01 + -3 + public.kern2.V + -61 + public.kern2.W + -40 + public.kern2.Y + -84 + public.kern2.comma + -8 + public.kern2.f + -1 + public.kern2.j + -16 + public.kern2.quotedbl + -39 + public.kern2.quoteright + -52 + public.kern2.t + -6 + public.kern2.tecyr + -2 + public.kern2.u + -10 + public.kern2.w + -18 + public.kern2.y + -20 + public.kern2.z + 5 + + public.kern1.c1 + + public.kern2.A.ss012 + 4 + public.kern2.A2 + 18 + public.kern2.G + 8 + public.kern2.J + 4 + public.kern2.Oslash.alt + -2 + public.kern2.T + -50 + public.kern2.Ucyr.ss01 + -46 + public.kern2.V + -32 + public.kern2.W + -20 + public.kern2.Y + -50 + public.kern2.Z + 2 + public.kern2.emdash + -6 + public.kern2.g + 4 + public.kern2.h + -2 + public.kern2.o + -2 + public.kern2.period + -14 + public.kern2.quotedbl + -24 + public.kern2.quoteright + -16 + public.kern2.t + 2 + public.kern2.tecyr + 2 + public.kern2.x + -2 + public.kern2.y + -1 + + public.kern1.comma1 + + public.kern2.A.ss01 + 8 + public.kern2.A.ss012 + 2 + public.kern2.G + -44 + public.kern2.J + 22 + public.kern2.T + -72 + public.kern2.U + -24 + public.kern2.Ucyr.ss01 + -6 + public.kern2.V + -78 + public.kern2.W + -32 + public.kern2.Y + -102 + public.kern2.Z + 6 + public.kern2.a + -16 + public.kern2.decyr.ss01 + 2 + public.kern2.f + -4 + public.kern2.five + -16 + public.kern2.h + -16 + public.kern2.i1 + -16 + public.kern2.j + 2 + public.kern2.m + -18 + public.kern2.o + -26 + public.kern2.t + -30 + public.kern2.tecyr + -14 + public.kern2.u + -24 + public.kern2.w + -26 + public.kern2.x + -18 + public.kern2.y + -60 + public.kern2.z + -6 + public.kern2.zero + -24 + + public.kern1.dcaron + + public.kern2.A2 + 2 + public.kern2.B + 38 + public.kern2.G + 16 + public.kern2.J + 4 + public.kern2.Oslash.alt + 76 + public.kern2.S + 34 + public.kern2.T + 100 + public.kern2.U + 46 + public.kern2.V + 96 + public.kern2.W + 78 + public.kern2.Y + 96 + public.kern2.Z + 66 + public.kern2.a + 10 + public.kern2.f + 56 + public.kern2.fi.ss01 + 60 + public.kern2.g + 2 + public.kern2.g.ss01 + 2 + public.kern2.h + 58 + public.kern2.i1 + 60 + public.kern2.j + 36 + public.kern2.l.ss01 + 26 + public.kern2.m + 14 + public.kern2.o + 5 + public.kern2.s + 12 + public.kern2.t + 50 + public.kern2.u + 4 + public.kern2.w + 30 + public.kern2.x + 30 + public.kern2.y + 30 + public.kern2.z + 32 + + public.kern1.decyr1 + + public.kern2.A.ss012 + 6 + public.kern2.A2 + 12 + public.kern2.G + -4 + public.kern2.Oslash.alt + 2 + public.kern2.T + -74 + public.kern2.Ucyr.ss01 + -36 + public.kern2.comma + 16 + public.kern2.decyr.ss01 + 16 + public.kern2.emdash + -8 + public.kern2.o + -18 + public.kern2.period + 12 + public.kern2.quoteright + -20 + public.kern2.tecyr + -22 + public.kern2.x + 2 + public.kern2.y + -10 + + public.kern1.e.ss011 + + public.kern2.Oslash.alt + -10 + public.kern2.T + -16 + public.kern2.V + -50 + public.kern2.W + -6 + public.kern2.Y + -20 + public.kern2.comma + -2 + public.kern2.l.ss01 + -2 + public.kern2.o + -2 + public.kern2.quotedbl + -40 + public.kern2.quoteright + -24 + public.kern2.w + -4 + public.kern2.y + -4 + + public.kern1.e1 + + public.kern2.A.ss012 + 10 + public.kern2.A2 + -4 + public.kern2.G + 2 + public.kern2.Oslash.alt + -20 + public.kern2.T + -76 + public.kern2.Ucyr.ss01 + -66 + public.kern2.V + -60 + public.kern2.W + -46 + public.kern2.Y + -106 + public.kern2.Z + -10 + public.kern2.comma + -16 + public.kern2.emdash + 1 + public.kern2.j + -16 + public.kern2.o + 2 + public.kern2.period + -16 + public.kern2.quotedbl + -28 + public.kern2.quoteright + -32 + public.kern2.w + -12 + public.kern2.x + -20 + public.kern2.y + -22 + public.kern2.z + -8 + + public.kern1.emdash1 + + public.kern2.A.ss01 + 12 + public.kern2.A2 + -8 + public.kern2.G + 16 + public.kern2.J + -34 + public.kern2.Oslash.alt + -22 + public.kern2.S + -26 + public.kern2.T + -74 + public.kern2.Ucyr.ss01 + -50 + public.kern2.V + -44 + public.kern2.W + -20 + public.kern2.Y + -72 + public.kern2.Z + -18 + public.kern2.decyr.ss01 + -26 + public.kern2.f + -6 + public.kern2.five + -20 + public.kern2.four + 16 + public.kern2.g.ss01 + 10 + public.kern2.j + -16 + public.kern2.o + 10 + public.kern2.s + -2 + public.kern2.t + -4 + public.kern2.tecyr + -40 + public.kern2.w + -2 + public.kern2.x + -24 + public.kern2.y + -14 + public.kern2.z + -24 + + public.kern1.f1 + + public.kern2.A.ss012 + -10 + public.kern2.A2 + -24 + public.kern2.J + -54 + public.kern2.S + 10 + public.kern2.T + 12 + public.kern2.V + 8 + public.kern2.Y + 10 + public.kern2.a + -8 + public.kern2.comma + -42 + public.kern2.emdash + -22 + public.kern2.f + 10 + public.kern2.g + -8 + public.kern2.h + 3 + public.kern2.i1 + 1 + public.kern2.o + -26 + public.kern2.period + -66 + public.kern2.quotedbl + 24 + public.kern2.quoteright + 20 + public.kern2.s + -16 + public.kern2.t + 18 + public.kern2.w + 2 + public.kern2.x + 2 + public.kern2.y + 18 + + public.kern1.five1 + + public.kern2.comma + -30 + public.kern2.five + -4 + public.kern2.four + 2 + public.kern2.i1 + 4 + public.kern2.period + -12 + + public.kern1.four1 + + public.kern2.emdash + -16 + public.kern2.five + 12 + public.kern2.four + 12 + public.kern2.period + 4 + public.kern2.quotedbl + -20 + + public.kern1.g.ss011 + + public.kern2.A.ss01 + 4 + public.kern2.V + -16 + public.kern2.W + 4 + public.kern2.Y + -6 + public.kern2.g.ss01 + 4 + public.kern2.h + 2 + public.kern2.i1 + 2 + public.kern2.j + 14 + public.kern2.l.ss01 + 4 + public.kern2.m + 2 + public.kern2.o + 2 + public.kern2.quotedbl + 8 + public.kern2.quoteright + 16 + public.kern2.s + 2 + public.kern2.t + 8 + public.kern2.w + 4 + public.kern2.x + 4 + public.kern2.y + 6 + public.kern2.z + 6 + + public.kern1.g1 + + public.kern2.A2 + 8 + public.kern2.T + -64 + public.kern2.V + -20 + public.kern2.W + -8 + public.kern2.Y + -30 + public.kern2.a + -2 + public.kern2.comma + 12 + public.kern2.f + 9 + public.kern2.i1 + 2 + public.kern2.j + 24 + public.kern2.m + -2 + public.kern2.quotedbl + -8 + public.kern2.s + -2 + public.kern2.w + -2 + public.kern2.y + 6 + + public.kern1.gecyr + + public.kern2.A.ss012 + -2 + public.kern2.A2 + -14 + public.kern2.G + 2 + public.kern2.Oslash.alt + -4 + public.kern2.T + -36 + public.kern2.Ucyr.ss01 + -24 + public.kern2.a + -4 + public.kern2.comma + -74 + public.kern2.decyr.ss01 + -30 + public.kern2.emdash + -50 + public.kern2.i1 + 8 + public.kern2.o + -19 + public.kern2.period + -84 + public.kern2.quoteright + 22 + public.kern2.tecyr + 16 + public.kern2.x + 8 + public.kern2.y + 16 + + public.kern1.guillemotright1 + + public.kern2.J + -38 + public.kern2.T + -52 + public.kern2.V + -42 + public.kern2.W + -30 + public.kern2.Y + -76 + + public.kern1.hardcyr + + public.kern2.Oslash.alt + -10 + public.kern2.T + -72 + public.kern2.Ucyr.ss01 + -56 + public.kern2.comma + -2 + public.kern2.quotedbl + -103 + public.kern2.quoteright + -76 + public.kern2.tecyr + -86 + public.kern2.x + -20 + public.kern2.y + -52 + + public.kern1.i1 + + public.kern2.B + 2 + public.kern2.Gecyr + 2 + public.kern2.Oslash.alt + 8 + public.kern2.T + 12 + public.kern2.U + 2 + public.kern2.Ucyr.ss01 + 10 + public.kern2.V + 26 + public.kern2.W + 20 + public.kern2.Y + 28 + public.kern2.Z + 6 + public.kern2.h + 2 + public.kern2.i1 + 18 + public.kern2.j + -30 + public.kern2.percent + 6 + public.kern2.quotedbl + 2 + public.kern2.quoteright + -10 + + public.kern1.icyr1 + + public.kern2.A.ss012 + 2 + public.kern2.J + 2 + public.kern2.T + -52 + public.kern2.Ucyr.ss01 + -56 + public.kern2.V + -40 + public.kern2.W + -20 + public.kern2.Y + -80 + public.kern2.comma + -2 + public.kern2.j + 8 + public.kern2.quoteright + -16 + + public.kern1.j1 + + public.kern2.T + -4 + public.kern2.i1 + 2 + public.kern2.j + 6 + public.kern2.quotedbl + 2 + public.kern2.quoteright + -16 + public.kern2.z + 2 + + public.kern1.k + + public.kern2.A.ss01 + 4 + public.kern2.A.ss012 + 12 + public.kern2.A2 + 12 + public.kern2.G + -12 + public.kern2.J + 12 + public.kern2.T + -48 + public.kern2.Ucyr.ss01 + -20 + public.kern2.V + -6 + public.kern2.W + -20 + public.kern2.Y + -26 + public.kern2.a + -10 + public.kern2.emdash + -42 + public.kern2.l.ss01 + -2 + public.kern2.o + -22 + public.kern2.quoteright + -2 + public.kern2.x + 11 + public.kern2.z + 2 + + public.kern1.l + + public.kern2.guillemotright + 2 + public.kern2.i1 + 2 + public.kern2.quoteright + -16 + public.kern2.s + 1 + + public.kern1.l.ss011 + + public.kern2.A.ss01 + 20 + public.kern2.G + -2 + public.kern2.T + -14 + public.kern2.U + -2 + public.kern2.V + -42 + public.kern2.W + -40 + public.kern2.Y + -10 + public.kern2.emdash + -2 + public.kern2.f + -40 + public.kern2.fi.ss01 + -2 + public.kern2.j + -16 + public.kern2.o + -2 + public.kern2.period + 2 + public.kern2.quotedbl + -22 + public.kern2.quoteright + -6 + public.kern2.t + -14 + public.kern2.w + -34 + public.kern2.y + -36 + public.kern2.z + 2 + + public.kern1.n + + public.kern2.A.ss01 + 2 + public.kern2.A.ss012 + 2 + public.kern2.G + -2 + public.kern2.J + 4 + public.kern2.T + -64 + public.kern2.Ucyr.ss01 + -66 + public.kern2.V + -60 + public.kern2.W + -40 + public.kern2.Y + -100 + public.kern2.emdash + 2 + public.kern2.guillemotright + 2 + public.kern2.j + -16 + public.kern2.quotedbl + -29 + public.kern2.quoteright + -16 + public.kern2.t + -2 + public.kern2.tecyr + -8 + public.kern2.w + -16 + public.kern2.y + -21 + + public.kern1.numero + + public.kern2.i1 + 8 + + public.kern1.o1 + + public.kern2.A.ss01 + 2 + public.kern2.A2 + -10 + public.kern2.J + -14 + public.kern2.Oslash.alt + -30 + public.kern2.S + -12 + public.kern2.T + -80 + public.kern2.Ucyr.ss01 + -80 + public.kern2.V + -61 + public.kern2.W + -48 + public.kern2.Y + -102 + public.kern2.Z + -28 + public.kern2.a + -4 + public.kern2.comma + -36 + public.kern2.emdash + 2 + public.kern2.j + -16 + public.kern2.period + -42 + public.kern2.quotedbl + -36 + public.kern2.quoteright + -34 + public.kern2.s + -10 + public.kern2.tecyr + -18 + public.kern2.w + -16 + public.kern2.x + -25 + public.kern2.y + -26 + public.kern2.z + -18 + + public.kern1.period1 + + public.kern2.A.ss01 + 22 + public.kern2.A.ss012 + 30 + public.kern2.A2 + 32 + public.kern2.G + -48 + public.kern2.J + 26 + public.kern2.Oslash.alt + 10 + public.kern2.T + -78 + public.kern2.U + -26 + public.kern2.Ucyr.ss01 + -20 + public.kern2.V + -78 + public.kern2.W + -46 + public.kern2.Y + -112 + public.kern2.Z + 12 + public.kern2.decyr.ss01 + 4 + public.kern2.f + -6 + public.kern2.five + -8 + public.kern2.g.ss01 + 2 + public.kern2.j + -14 + public.kern2.o + -42 + public.kern2.quotedbl + -8 + public.kern2.t + -30 + public.kern2.tecyr + -62 + public.kern2.u + -24 + public.kern2.w + -32 + public.kern2.y + -75 + public.kern2.z + 2 + public.kern2.zero + -12 + + public.kern1.quotedbl1 + + public.kern2.A.ss01 + -54 + public.kern2.A.ss012 + -34 + public.kern2.A2 + -50 + public.kern2.G + -18 + public.kern2.J + -74 + public.kern2.Oslash.alt + 4 + public.kern2.T + 30 + public.kern2.V + 12 + public.kern2.W + 14 + public.kern2.Y + 14 + public.kern2.Z + -6 + public.kern2.a + -26 + public.kern2.decyr.ss01 + -40 + public.kern2.four + -62 + public.kern2.g + -28 + public.kern2.g.ss01 + -22 + public.kern2.h + 2 + public.kern2.i1 + 2 + public.kern2.j + -16 + public.kern2.l.ss01 + 2 + public.kern2.o + -36 + public.kern2.period + -14 + public.kern2.s + -28 + public.kern2.t + 4 + public.kern2.w + 2 + public.kern2.x + -8 + public.kern2.y + 2 + public.kern2.z + -8 + public.kern2.zero + -18 + + public.kern1.quoteleft1 + + public.kern2.A.ss01 + -58 + public.kern2.A.ss012 + -10 + public.kern2.A2 + -46 + public.kern2.B + 2 + public.kern2.G + -20 + public.kern2.Gecyr + 2 + public.kern2.J + -32 + public.kern2.Oslash.alt + 14 + public.kern2.T + 36 + public.kern2.Ucyr.ss01 + 10 + public.kern2.V + 22 + public.kern2.W + 30 + public.kern2.Y + 32 + public.kern2.Z + 2 + public.kern2.a + -30 + public.kern2.decyr.ss01 + -2 + public.kern2.f + 8 + public.kern2.g + -48 + public.kern2.g.ss01 + -38 + public.kern2.i1 + 34 + public.kern2.j + -8 + public.kern2.m + -20 + public.kern2.o + -56 + public.kern2.s + -28 + public.kern2.u + -20 + public.kern2.w + -24 + public.kern2.x + -28 + public.kern2.y + -18 + public.kern2.z + -28 + + public.kern1.quoteright1 + + public.kern2.A.ss01 + -60 + public.kern2.A2 + -60 + public.kern2.B + -8 + public.kern2.G + -38 + public.kern2.J + -48 + public.kern2.Oslash.alt + -6 + public.kern2.S + -26 + public.kern2.T + 12 + public.kern2.U + -16 + public.kern2.V + 14 + public.kern2.W + 22 + public.kern2.Y + 8 + public.kern2.Z + -16 + public.kern2.a + -68 + public.kern2.f + -2 + public.kern2.g + -78 + public.kern2.g.ss01 + -64 + public.kern2.h + -26 + public.kern2.i1 + -12 + public.kern2.m + -28 + public.kern2.o + -86 + public.kern2.s + -70 + public.kern2.t + -8 + public.kern2.u + -28 + public.kern2.w + -32 + public.kern2.x + -32 + public.kern2.y + -30 + public.kern2.z + -54 + + public.kern1.s1 + + public.kern2.A.ss01 + 2 + public.kern2.A2 + 8 + public.kern2.G + -2 + public.kern2.J + 10 + public.kern2.Oslash.alt + -4 + public.kern2.T + -59 + public.kern2.V + -40 + public.kern2.W + -22 + public.kern2.Y + -64 + public.kern2.Z + -8 + public.kern2.a + 1 + public.kern2.comma + -8 + public.kern2.f + -2 + public.kern2.g.ss01 + -2 + public.kern2.guillemotright + 4 + public.kern2.period + -16 + public.kern2.quotedbl + -30 + public.kern2.quoteright + -18 + public.kern2.t + -2 + public.kern2.w + -5 + public.kern2.x + -10 + public.kern2.y + -6 + + public.kern1.t.ss011 + + public.kern2.A.ss01 + 6 + public.kern2.B + 2 + public.kern2.G + 2 + public.kern2.Y + -8 + public.kern2.Z + 2 + public.kern2.emdash + -8 + public.kern2.h + 2 + public.kern2.l.ss01 + 2 + public.kern2.m + 2 + public.kern2.o + 2 + public.kern2.period + 4 + public.kern2.quoteright + 2 + public.kern2.t + 6 + public.kern2.z + 6 + + public.kern1.t1 + + public.kern2.G + -8 + public.kern2.J + 22 + public.kern2.T + -12 + public.kern2.V + -20 + public.kern2.W + -8 + public.kern2.Y + -24 + public.kern2.Z + 2 + public.kern2.emdash + -24 + public.kern2.f + 4 + public.kern2.g + 2 + public.kern2.h + 9 + public.kern2.i1 + 2 + public.kern2.j + 2 + public.kern2.l.ss01 + 2 + public.kern2.o + -8 + public.kern2.period + 2 + public.kern2.quotedbl + 4 + public.kern2.quoteright + 2 + public.kern2.t + 12 + public.kern2.x + 2 + public.kern2.y + 8 + public.kern2.z + 18 + + public.kern1.u1 + + public.kern2.A.ss01 + 2 + public.kern2.J + 2 + public.kern2.T + -56 + public.kern2.V + -50 + public.kern2.W + -28 + public.kern2.Y + -80 + public.kern2.j + -16 + public.kern2.quoteright + -16 + + public.kern1.uni0435.ss011 + + public.kern2.A.ss012 + 4 + public.kern2.T + -68 + public.kern2.Ucyr.ss01 + -54 + public.kern2.V + -50 + public.kern2.W + -18 + public.kern2.Y + -64 + public.kern2.period + 2 + public.kern2.quoteright + 4 + public.kern2.w + -5 + public.kern2.x + -8 + public.kern2.y + -10 + + public.kern1.w1 + + public.kern2.A.ss01 + -4 + public.kern2.A.ss012 + -4 + public.kern2.A2 + -20 + public.kern2.J + -26 + public.kern2.Oslash.alt + -20 + public.kern2.S + -16 + public.kern2.T + -48 + public.kern2.V + -12 + public.kern2.W + -6 + public.kern2.Y + -36 + public.kern2.Z + -30 + public.kern2.a + -16 + public.kern2.comma + -24 + public.kern2.emdash + -2 + public.kern2.f + 2 + public.kern2.g + -2 + public.kern2.g.ss01 + -10 + public.kern2.j + -10 + public.kern2.o + -16 + public.kern2.period + -32 + public.kern2.quotedbl + 2 + public.kern2.quoteright + 2 + public.kern2.s + -5 + public.kern2.w + -2 + + public.kern1.x + + public.kern2.A.ss01 + 4 + public.kern2.A2 + 2 + public.kern2.G + -12 + public.kern2.J + 4 + public.kern2.S + -8 + public.kern2.T + -48 + public.kern2.Ucyr.ss01 + -18 + public.kern2.V + -20 + public.kern2.W + -8 + public.kern2.Y + -42 + public.kern2.a + -2 + public.kern2.emdash + -24 + public.kern2.o + -25 + public.kern2.quotedbl + -8 + public.kern2.quoteright + -2 + public.kern2.s + -8 + + public.kern1.y1 + + public.kern2.A.ss01 + -4 + public.kern2.A.ss012 + -7 + public.kern2.A2 + -20 + public.kern2.G + -2 + public.kern2.J + -36 + public.kern2.Oslash.alt + -30 + public.kern2.T + -48 + public.kern2.Ucyr.ss01 + -11 + public.kern2.V + -20 + public.kern2.W + -6 + public.kern2.Y + -42 + public.kern2.Z + -20 + public.kern2.a + -7 + public.kern2.comma + -44 + public.kern2.decyr.ss01 + -22 + public.kern2.emdash + -6 + public.kern2.f + 18 + public.kern2.g + -10 + public.kern2.g.ss01 + -16 + public.kern2.h + -2 + public.kern2.j + -10 + public.kern2.o + -12 + public.kern2.period + -78 + public.kern2.quotedbl + 2 + public.kern2.quoteright + 18 + public.kern2.s + -4 + public.kern2.t + 10 + public.kern2.tecyr + 8 + public.kern2.x + 2 + public.kern2.y + 2 + + public.kern1.z1 + + public.kern2.A.ss012 + 4 + public.kern2.A2 + 12 + public.kern2.J + 6 + public.kern2.S + -16 + public.kern2.T + -42 + public.kern2.V + -20 + public.kern2.W + -22 + public.kern2.Y + -50 + public.kern2.comma + 10 + public.kern2.f + 8 + public.kern2.g + 2 + public.kern2.j + 2 + public.kern2.o + -18 + public.kern2.period + 2 + public.kern2.quotedbl + -16 + public.kern2.quoteright + -8 + public.kern2.s + 1 + public.kern2.t + 2 + public.kern2.x + 2 + public.kern2.z + 2 + + + diff --git a/sources/FixelText-Medium.ufo/layercontents.plist b/sources/FixelText-Medium.ufo/layercontents.plist new file mode 100644 index 00000000..7a35a5cf --- /dev/null +++ b/sources/FixelText-Medium.ufo/layercontents.plist @@ -0,0 +1,10 @@ + + + + + + public.default + glyphs + + + diff --git a/sources/FixelText-Medium.ufo/lib.plist b/sources/FixelText-Medium.ufo/lib.plist new file mode 100644 index 00000000..c0069150 --- /dev/null +++ b/sources/FixelText-Medium.ufo/lib.plist @@ -0,0 +1,1671 @@ + + + + + com.fontlab.v2.tth + + stems + + 69 + + width + 69 + horizontal + + round + + 35 + 3 + 47 + 4 + 60 + 5 + 0 + 7 + 22 + 8 + + + 74 + + width + 74 + horizontal + + round + + 19 + 2 + 35 + 3 + 47 + 4 + 60 + 5 + 72 + 6 + 0 + 7 + 20 + 8 + + + 76 + + width + 76 + horizontal + + round + + 19 + 2 + 35 + 3 + 72 + 6 + 0 + 7 + 20 + 8 + + + 80 + + width + 80 + horizontal + + round + + 29 + 3 + 47 + 4 + 60 + 5 + 72 + 6 + 0 + 7 + 20 + 8 + + + 99 + + width + 99 + horizontal + + round + + 19 + 2 + 29 + 3 + 37 + 4 + 48 + 5 + 58 + 6 + 0 + 7 + 16 + 8 + + + 74 + + width + 74 + horizontal + + round + + 19 + 2 + 35 + 3 + 47 + 4 + 60 + 5 + 72 + 6 + 0 + 7 + 20 + 8 + + + 80 + + width + 80 + horizontal + + round + + 29 + 3 + 47 + 4 + 60 + 5 + 72 + 6 + 0 + 7 + 20 + 8 + + + 93 + + width + 93 + horizontal + + round + + 19 + 2 + 29 + 3 + 37 + 4 + 48 + 5 + 58 + 6 + 0 + 7 + 16 + 8 + + + + + com.schriftgestaltung.disablesAutomaticAlignment + + com.schriftgestaltung.fontMasterID + master01 + com.schriftgestaltung.glyphOrder + + com.schriftgestaltung.master.name + regular + com.schriftgestaltung.useNiceNames + + com.schriftgestaltung.weightValue + 400 + public.postscriptNames + + A-cy + uni0410 + A-cy.ss01 + uni0410.ss01 + Be-cy + uni0411 + Che-cy + uni0427 + De-cy + uni0414 + Dze-cy + uni0405 + E-cy + uni0404 + Ef-cy + uni0424 + El-cy + uni041B + Em-cy + uni041C + Em-cy.ss01 + uni041C.ss01 + En-cy + uni041D + Er-cy + uni0420 + Ereversed-cy + uni042D + Es-cy + uni0421 + Gacute + uni01F4 + Gacute.ss01 + uni01F4.ss01 + Gcommaaccent + uni0122 + Gcommaaccent.ss01 + uni0122.ss01 + Ge-cy + uni0413 + Germandbls + uni1E9E + Gheupturn-cy + uni0490 + Ha-cy + uni0425 + Ha-cy.ss01 + uni0425.ss01 + Hardsign-cy + uni042A + I-cy + uni0406 + Ia-cy + uni042F + Ia-cy.ss01 + uni042F.ss01 + Ie-cy + uni0415 + Ii-cy + uni0418 + Iishort-cy + uni0419 + Io-cy + uni0401 + Iu-cy + uni042E + Ka-cy + uni041A + Ka-cy.ss01 + uni041A.ss01 + Kcommaaccent + uni0136 + Kcommaaccent.ss01 + uni0136.ss01 + Lcommaaccent + uni013B + Ncommaaccent + uni0145 + Ncommaaccent.ss01 + uni0145.ss01 + O-cy + uni041E + Pe-cy + uni041F + Rcommaaccent + uni0156 + Scommaaccent + uni0218 + Sha-cy + uni0428 + Shcha-cy + uni0429 + Softsign-cy + uni042C + Tcedilla + uni0162 + Tcommaaccent + uni021A + Te-cy + uni0422 + Tse-cy + uni0426 + U-cy + uni0423 + U-cy.ss01 + uni0423.ss01 + Ushort-cy + uni040E + Ushort-cy.ss01 + uni040E.ss01 + Ve-cy + uni0412 + Yeru-cy + uni042B + Yi-cy + uni0407 + Ze-cy + uni0417 + Zhe-cy + uni0416 + Zhe-cy.ss01 + uni0416.ss01 + _perc-circule + _perccircule + a-cy + uni0430 + a-cy.ss01 + uni0430.ss01 + be-cy + uni0431 + che-cy + uni0447 + commaaccentcomb + uni0326 + commaaccentcomb.salt + uni0326.salt + de-cy + uni0434 + de-cy.ss01 + uni0434.ss01 + dze-cy + uni0455 + e-cy + uni0454 + ef-cy + uni0444 + el-cy + uni043B + el-cy.ss01 + uni043B.ss01 + em-cy + uni043C + en-cy + uni043D + er-cy + uni0440 + er-cy.ss01 + uni0440.ss01 + ereversed-cy + uni044D + es-cy + uni0441 + euro + Euro + gacute + uni01F5 + gacute.ss01 + uni01F5.ss01 + gcommaaccent + uni0123 + gcommaaccent.ss01 + uni0123.ss01 + ge-cy + uni0433 + gheupturn-cy + uni0491 + guillemetleft + guillemotleft + guillemetright + guillemotright + ha-cy + uni0445 + hardsign-cy + uni044A + hardsign-cy.ss01 + uni044A.ss01 + hryvnia + uni20B4 + i-cy + uni0456 + ia-cy + uni044F + ia-cy.ss01 + uni044F.ss01 + idotless + dotlessi + ie-cy + uni0435 + ie-cy.ss01 + uni0435.ss01 + ii-cy + uni0438 + iishort-cy + uni0439 + io-cy + uni0451 + io-cy.ss01 + uni0451.ss01 + iu-cy + uni044E + jdotless + uni0237 + je-cy + uni0458 + ka-cy + uni043A + kcommaaccent + uni0137 + lcommaaccent + uni013C + lcommaaccent.ss01 + uni013C.ss01 + ncommaaccent + uni0146 + numero + uni2116 + numero.ss01 + uni2116.ss01 + o-cy + uni043E + onesuperior + uni00B9 + pe-cy + uni043F + rcommaaccent + uni0157 + scommaaccent + uni0219 + sha-cy + uni0448 + shcha-cy + uni0449 + softsign-cy + uni044C + softsign-cy.ss01 + uni044C.ss01 + tcedilla + uni0163 + tcedilla.ss01 + uni0163.ss01 + tcommaaccent + uni021B + tcommaaccent.ss01 + uni021B.ss01 + te-cy + uni0442 + te-cy.ss01 + uni0442.ss01 + threesuperior + uni00B3 + tse-cy + uni0446 + twosuperior + uni00B2 + u-cy + uni0443 + ushort-cy + uni045E + ve-cy + uni0432 + ve-cy.ss01 + uni0432.ss01 + yeru-cy + uni044B + yeru-cy.ss01 + uni044B.ss01 + yi-cy + uni0457 + ze-cy + uni0437 + zhe-cy + uni0436 + + public.skipExportGlyphs + + Oslash.bold + oslash.bold + _perc-circule + + public.glyphOrder + + .notdef + NULL + CR + space + A + Aacute + Abreve + Acircumflex + Adieresis + Agrave + Amacron + Aogonek + Aring + Atilde + AE + B + C + Cacute + Ccaron + Ccedilla + Ccircumflex + Cdotaccent + D + Eth + Dcaron + Dcroat + E + Eacute + Ebreve + Ecaron + Ecircumflex + Edieresis + Edotaccent + Egrave + Emacron + Eogonek + F + G + Gacute + Gbreve + Gcircumflex + Gcommaaccent + Gdotaccent + H + Hbar + Hcircumflex + I + IJ + Iacute + Ibreve + Icircumflex + Idieresis + Idotaccent + Igrave + Imacron + Iogonek + Itilde + J + Jcircumflex + K + Kcommaaccent + L + Lacute + Lcaron + Lcommaaccent + Ldot + Lslash + M + N + Nacute + Ncaron + Ncommaaccent + Eng + Ntilde + O + Oacute + Obreve + Ocircumflex + Odieresis + Ograve + Ohungarumlaut + Omacron + Oslash + Otilde + OE + P + Thorn + Q + R + Racute + Rcaron + Rcommaaccent + S + Sacute + Scaron + Scedilla + Scircumflex + Scommaaccent + Germandbls + T + Tbar + Tcaron + Tcedilla + Tcommaaccent + U + Uacute + Ubreve + Ucircumflex + Udieresis + Ugrave + Uhungarumlaut + Umacron + Uogonek + Uring + Utilde + V + W + Wacute + Wcircumflex + Wdieresis + Wgrave + X + Y + Yacute + Ycircumflex + Ydieresis + Z + Zacute + Zcaron + Zdotaccent + A.ss01 + Aacute.ss01 + Abreve.ss01 + Acircumflex.ss01 + Adieresis.ss01 + Agrave.ss01 + Amacron.ss01 + Aogonek.ss01 + Aring.ss01 + Atilde.ss01 + AE.ss01 + G.ss01 + Gacute.ss01 + Gbreve.ss01 + Gcircumflex.ss01 + Gcommaaccent.ss01 + Gdotaccent.ss01 + J.ss01 + Jcircumflex.ss01 + K.ss01 + Kcommaaccent.ss01 + M.ss01 + N.ss01 + Nacute.ss01 + Ncaron.ss01 + Ncommaaccent.ss01 + Eng.ss01 + Ntilde.ss01 + Q.ss01 + V.ss01 + W.ss01 + Wacute.ss01 + Wcircumflex.ss01 + Wdieresis.ss01 + Wgrave.ss01 + X.ss01 + Y.ss01 + Yacute.ss01 + Ycircumflex.ss01 + Ydieresis.ss01 + Z.ss01 + Zacute.ss01 + Zcaron.ss01 + Zdotaccent.ss01 + a + aacute + abreve + acircumflex + adieresis + agrave + amacron + aogonek + aring + atilde + ae + b + c + cacute + ccaron + ccedilla + ccircumflex + cdotaccent + d + eth + dcaron + dcroat + e + eacute + ebreve + ecaron + ecircumflex + edieresis + edotaccent + egrave + emacron + eogonek + f + g + gacute + gbreve + gcircumflex + gcommaaccent + gdotaccent + h + hbar + hcircumflex + i + idotless + iacute + ibreve + icircumflex + idieresis + igrave + ij + imacron + iogonek + itilde + j + jdotless + jcircumflex + k + kcommaaccent + kgreenlandic + l + lacute + lcaron + lcommaaccent + ldot + lslash + m + n + nacute + napostrophe + ncaron + ncommaaccent + eng + ntilde + o + oacute + obreve + ocircumflex + odieresis + ograve + ohungarumlaut + omacron + oslash + otilde + oe + p + thorn + q + r + racute + rcaron + rcommaaccent + s + sacute + scaron + scedilla + scircumflex + scommaaccent + germandbls + t + tbar + tcaron + tcedilla + tcommaaccent + u + uacute + ubreve + ucircumflex + udieresis + ugrave + uhungarumlaut + umacron + uogonek + uring + utilde + v + w + wacute + wcircumflex + wdieresis + wgrave + x + y + yacute + ycircumflex + ydieresis + z + zacute + zcaron + zdotaccent + a.ss01 + aacute.ss01 + abreve.ss01 + acircumflex.ss01 + adieresis.ss01 + agrave.ss01 + amacron.ss01 + aogonek.ss01 + aring.ss01 + atilde.ss01 + ae.ss01 + b.ss01 + d.ss01 + dcaron.ss01 + dcroat.ss01 + e.ss01 + eacute.ss01 + ebreve.ss01 + ecaron.ss01 + ecircumflex.ss01 + edieresis.ss01 + edotaccent.ss01 + egrave.ss01 + emacron.ss01 + eogonek.ss01 + f.ss01 + g.ss01 + gacute.ss01 + gbreve.ss01 + gcircumflex.ss01 + gcommaaccent.ss01 + gdotaccent.ss01 + l.ss01 + lacute.ss01 + lcaron.ss01 + lcommaaccent.ss01 + ldot.ss01 + lslash.ss01 + oe.ss01 + p.ss01 + q.ss01 + germandbls.ss01 + t.ss01 + tbar.ss01 + tcaron.ss01 + tcedilla.ss01 + tcommaaccent.ss01 + f_f + f_f_i + f_f_l + fi + fl + f_f.ss01 + f_f_i.ss01 + f_f_l.ss01 + fi.ss01 + fl.ss01 + ordfeminine + ordmasculine + A-cy + Be-cy + Ve-cy + Ge-cy + Gheupturn-cy + De-cy + Ie-cy + Io-cy + Zhe-cy + Ze-cy + Ii-cy + Iishort-cy + Ka-cy + El-cy + Em-cy + En-cy + O-cy + Pe-cy + Er-cy + Es-cy + Te-cy + U-cy + Ushort-cy + Ef-cy + Ha-cy + Che-cy + Tse-cy + Sha-cy + Shcha-cy + Softsign-cy + Hardsign-cy + Yeru-cy + Dze-cy + E-cy + Ereversed-cy + I-cy + Yi-cy + Iu-cy + Ia-cy + A-cy.ss01 + Zhe-cy.ss01 + Ka-cy.ss01 + Em-cy.ss01 + U-cy.ss01 + Ushort-cy.ss01 + Ha-cy.ss01 + Ia-cy.ss01 + a-cy + be-cy + ve-cy + ge-cy + gheupturn-cy + de-cy + ie-cy + io-cy + zhe-cy + ze-cy + ii-cy + iishort-cy + ka-cy + el-cy + em-cy + en-cy + o-cy + pe-cy + er-cy + es-cy + te-cy + u-cy + ushort-cy + ef-cy + ha-cy + che-cy + tse-cy + sha-cy + shcha-cy + softsign-cy + hardsign-cy + yeru-cy + dze-cy + e-cy + ereversed-cy + i-cy + yi-cy + je-cy + iu-cy + ia-cy + a-cy.ss01 + ve-cy.ss01 + de-cy.ss01 + ie-cy.ss01 + io-cy.ss01 + el-cy.ss01 + er-cy.ss01 + te-cy.ss01 + softsign-cy.ss01 + hardsign-cy.ss01 + yeru-cy.ss01 + ia-cy.ss01 + zero + one + two + three + four + five + six + seven + eight + nine + zero.osf + one.osf + two.osf + three.osf + four.osf + five.osf + six.osf + seven.osf + nine.osf + zero.tf + one.tf + two.tf + three.tf + four.tf + five.tf + six.tf + seven.tf + eight.tf + nine.tf + onesuperior + twosuperior + threesuperior + period + comma + colon + semicolon + ellipsis + exclam + exclamdown + question + questiondown + periodcentered + bullet + asterisk + numbersign + slash + backslash + parenleft + parenright + braceleft + braceright + bracketleft + bracketright + hyphen + endash + emdash + underscore + quotesinglbase + quotedblbase + quotedblleft + quotedblright + quoteleft + quoteright + guillemetleft + guillemetright + guilsinglleft + guilsinglright + quotedbl + quotesingle + cent + currency + dollar + euro + hryvnia + sterling + yen + yen.ss01 + plus + minus + multiply + divide + equal + greater + less + asciitilde + asciicircum + percent + perthousand + at + ampersand + paragraph + section + copyright + registered + trademark + degree + bar + brokenbar + dagger + daggerdbl + numero + estimated + numero.ss01 + commaaccentcomb + dieresis + dotaccent + grave + acute + hungarumlaut + circumflex + caron + breve + ring + tilde + macron + cedilla + ogonek + dieresis.case + dotaccent.case + grave.case + acute.case + hungarumlaut.case + circumflex.case + caron.case + breve.case + ring.case + tilde.case + macron.case + commaaccentcomb.salt + caron.salt + uniE01A + _perc-circule + eight.osf + ruble + Ljecyr + Njecyr + Jecyr + dzhecyr + Dzhecyr + ljecyr + njecyr + Tshecyr + Djecyr + tshecyr + djecyr + tenge + ljecyr.ss01 + njecyr.ss01 + dramsignarmn + gjecyr + kjecyr + neptune + florin + plusminus + fraction + onequarter + onehalf + threequarters + mu + lessequal + greaterequal + minute + second + Schwacyr + schwacyr + Gestrokecyr + gestrokecyr + Obarcyr + obarcyr + Entailcyr + entailcyr + Katailcyr + katailcyr + Ustraightstrokecyr + ustraightstrokecyr + Shhacyr + shhacyr + ustraightcyr + Ustraightcyr + partialdiff + increment + integral + summation + radical + infinity + Omega + pi + longs + Delta + product + notequal + proportional + approxequal + Schwa + eturned + Oslashacute + oslashacute + AEacute + aeacute + uni2010 + Aiecyr + aiecyr + uni1EBC + uni1EBD + Acaron + acaron + Gjecyr + Kjecyr + uniE000 + uniE000.alt + arrowleft + arrowup + arrowright + arrowdown + arrowdown.ss01 + arrowleft.ss01 + arrowright.ss01 + arrowup.ss01 + yi-cy.alt + Omegacyr + omegacyr + Yatcyr + yatcyr + Eiotifiedcyr + eiotifiedcyr + Ksicyr + ksicyr + Shwe-cy + Fitacyr + fitacyr + Koppacyr + Iegravecyr + Igravecyr + iegravecyr + igravecyr + Zhebrevecyr + zhebrevecyr + Abrevecyr + abrevecyr + Adieresiscyr + adieresiscyr + Iebrevecyr + iebrevecyr + Schwadieresiscyr + schwadieresiscyr + Zhedieresiscyr + zhedieresiscyr + Zedieresiscyr + zedieresiscyr + Imacroncyr + imacroncyr + Idieresiscyr + idieresiscyr + Odieresiscyr + odieresiscyr + Umacroncyr + umacroncyr + Udieresiscyr + udieresiscyr + Uacutedblcyr + uacutedblcyr + Dekomicyr + dekomicyr + Wecyr + wecyr + Qacyr + qacyr + Ylongdieresiscyr + ylongdieresiscyr + Chedieresiscyr + chedieresiscyr + Obardieresiscyr + obardieresiscyr + Ereverseddieresiscyr + ereverseddieresiscyr + Zhetailcyr + zhetailcyr + Tetailcyr + tetailcyr + Xatailcyr + xatailcyr + Chetailcyr + chetailcyr + Chekhakascyr + chekhakascyr + Getailcyr + getailcyr + Petailcyr + petailcyr + Eltailcyr + eltailcyr + Shhatailcyr + shhatailcyr + Palochkacyr + palochkacyr + Dzzhecyr + Yaecyr + yaecyr + Tetsecyr + tetsecyr + Engecyr + engecyr + kabashkcyr + Kabashkcyr + semisoftcyr + Semisoftcyr + Reversedzecyr + reversedzecyr + Elmiddlehookcyr + Enmiddlehookcyr + Enhookcyr + Kahookcyr + Pehookcyr + Gehookcyr + parenleft.case + parenright.case + hyphen.case + bracketleft.case + bracketright.case + braceleft.case + braceright.case + exclamdown.case + guillemetleft.case + guillemetright.case + endash.case + emdash.case + bullet.case + guilsinglleft.case + guilsinglright.case + arrowleft.case + arrowup.case + arrowright.case + arrowdown.case + arrowdown.ss01.case + arrowleft.ss01.case + arrowright.ss01.case + arrowup.ss01.case + Enhookleftcyr + enhookleftcyr + enhookcyr + gehookcyr + pehookcyr + kahookcyr + enmiddlehookcyr + elmiddlehookcyr + kastrokecyr + Kastrokecyr + Chevertcyr + chevertcyr + Kaverticalstrokecyr + kaverticalstrokecyr + Elhookcyr + elhookcyr + zetailcyr + Zetailcyr + Estailcyr + estailcyr + Haabkhcyr + koppacyr + ukcyr + Ukcyr + omegaroundcyr + Izhitsagravedblcyr + izhitsagravedblcyr + izhitsacyr + Izhitsacyr + Yusbigcyr + yusbigcyr + Psicyr + psicyr + Omegaroundcyr + Yuslittlecyr + yuslittlecyr + yuslittleiotifiedcyr + Yuslittleiotifiedcyr + Yusbigiotifiedcyr + yusbigiotifiedcyr + Omegatitlocyr + omegatitlocyr + Otcyr + otcyr + uni2DEE + uni2DEE.case + ertickcyr + Ertickcyr + Lhacyr + lhacyr + ensharptailcyr + Ensharptailcyr + emsharptailcyr + elsharptailcyr + ishortsharptailcyr + Ishortsharptailcyr + Emsharptailcyr + Elsharptailcyr + njekomicyr + Njekomicyr + ljekomicyr + tjekomicyr + djekomicyr + zjekomicyr + colon.case + questiondown.case + slash.case + semicolon.case + backslash.case + bar.case + brokenbar.case + dzjekomicyr + Cheabkhcyr + cheabkhcyr + cheabkhtailcyr + sjekomicyr + Sjekomicyr + Ljekomicyr + Tjekomicyr + Djekomicyr + kaaleutcyr + dzzhecyr + haabkhcyr + Dchecyr + dchecyr + dzeabkhcyr + Dzeabkhcyr + palatcombcyr + Cheabkhtailcyr + Dzjekomicyr + Zjekomicyr + rhacyr + Rhacyr + Kaaleutcyr + thousandscyr + titlocombcyr + pokrytiecombcyr + hundredthousandscombcyr + millionscombcyr + Gehookstrokecyr + gehookstrokecyr + Hahookcyr + hahookcyr + Hastrokecyr + uni1C80 + uni1C81 + uni1C82 + uni1C83 + uni1C84 + uni1C85 + uni1C86 + uni1C87 + Zemlya-cy + zemlya-cy + Dzelo-cy + dzelo-cy + DzeReversed-cy + dzeReversed-cy + Iota-cy + iota-cy + Djerv-cy + djerv-cy + UkMonograph-cy + ukMonograph-cy + OmegaBroad-cy + omegaBroad-cy + YerNeutral-cy + yerNeutral-cy + YeruBackYer-cy + yeruBackyer-cy + YatIotified-cy + yatIotified-cy + YuReversed-cy + yuReversed-cy + IotifiedA-cy + iotifieda-cy + YusClosedlittle-cy + yusClosedlittle-cy + YusBlended-cy + yusBlended-cy + YusiotifiedClosedLittle-cy + yusiotifiedClosedLittle-cy + Yn-cy + yn-cy + TseReversed-cy + tseReversed-cy + DeSoft-cy + deSoft-cy + ElSoft-cy + elSoft-cy + EmSoft-cy + emSoft-cy + OMonocular-cy + oMonocular-cy + OBinocular-cy + oBinocular-cy + ODoubleMonocular-cy + oDoubleMonocular-cy + omultiocular-cy + vzmetcomb-cy + tenmillionscomb-cy + hundredmillionscomb-cy + thousandmillionscomb-cy + Dwe-cy + dwe-cy + Dzwe-cy + dzwe-cy + Zhwe-cy + zhwe-cy + Cche-cy + cche-cy + Dzze-cy + dzze-cy + TeWithMiddleHook-cy + tewithmiddlehook-cy + Twe-cy + twe-cy + Tswe-cy + tswe-cy + Tsse-cy + tsse-cy + Tche-cy + tche-cy + Hwe-cy + hwe-cy + shwe-cy + DoubleO-cy + doubleo-cy + CrossedO-cy + crossedo-cy + hastrokecyr + uniF43A + A-cy.accented + E-cy.accented + Ii-cy.accented + O-cy.accented + U-cy.accented + Yeru-cy.accented + Ereversed-cy.accented + Iu-cy.accented + Ia-cy.accented + Io-cy.accented + uniF498 + uniF49A + uniF49C + uniF49E + uniF4C6 + uniF4CC + uniF4D2 + uniF4D4 + uniF4D6 + uniF4D8 + Zetailcyr.BSH + Estailcyr.CHU + uniF50E + uniF510 + uniF512 + uniF514 + uniF516 + uniF518 + uniF51A + uniF51C + uniF51E + Yeru-cymacron + uniF522 + uniF524 + uniF526 + uniF528 + uniF52A + uniF52C + uniF52E + uniF532 + uniF536 + uniF538 + Gestrokecyr.BSH + Estailcyr.BSH + uniF830 + uniF833 + uniF839 + uniF86F + uniF872 + uniF875 + uniF878 + uniF87B + uniF87E + apostrophemod + colontriangularmod + uni1C88 + uniF87F + uniF87C + uniF879 + uniF876 + uniF873 + uniF870 + uniF83A + uniF834 + uniF831 + zetailcyr.BSH + estailcyr.CHU + uniF50F + uniF511 + uniF513 + uniF515 + uniF517 + uniF519 + uniF51B + uniF51D + uniF51F + uniF521 + uniF523 + uniF525 + uniF527 + uniF529 + uniF52B + uniF52D + uniF52F + uniF533 + uniF537 + uniF539 + gestrokecyr.BSH + estailcyr.BSH + uniF499 + uniF49B + uniF49D + uniF49F + uniF4C7 + uniF4CD + uniF4D3 + uniF4D5 + uniF4D7 + uniF4D9 + a-cy.accented + e-cy.accented + ii-cy.accented + o-cy.accented + u-cy.accented + yeru-cy.accented + ereversed-cy.accented + iu-cy.accented + ia-cy.accented + io-cy.accented + uniF43B + at.case + dieresis.alt + dieresiscase.alt + e-cy.hist + omultiocular-cy.alt + iotifieda-cy.hist + be-cy.SRB + ve-cy.BGR + ge-cy.BGR + de-cy.BGR + zhe-cy.BGR + ze-cy.BGR + ii-cy.BGR + iishort-cy.BGR + ka-cy.BGR + el-cy.BGR + pe-cy.BGR + te-cy.BGR + tse-cy.BGR + sha-cy.BGR + shcha-cy.BGR + hardsign-cy.BGR + softsign-cy.BGR + iu-cy.BGR + yatcyr.BGR + eiotifiedcyr.BGR + yusbigiotifiedcyr.BGR + iotifieda-cy.BGR + De-cy.BGR + El-cy.BGR + Ef-cy.BGR + dieresisacute + uniF45D + uniF45E + uniF45F + uniF475 + uniF476 + uniF477 + uniF478 + uniF479 + Elsmallcyr + enclosingcirclecomb + ge-cy.SRB + pe-cy.SRB + te-cy.SRB + gjecyr.SRB + macron-fwd + macron-fwd.alt + macronacute.SRB + iegravecyr.SRB + igravecyr.SRB + flower + knightwhite + knightblack + floretteblack + florettewhite + floretteoutlinedpetalledblackeight + rookblack + bishopblack + leo + heartwhite + diamondwhite-misc + spadewhite + clubwhite + bishopwhite + heart + crossedswords + virgo + thousandscyr.dnom + bracketangleleft + bracketangleright + bracketangleleft.case + bracketangleright.case + + + diff --git a/sources/FixelText-Medium.ufo/metainfo.plist b/sources/FixelText-Medium.ufo/metainfo.plist new file mode 100644 index 00000000..10582b84 --- /dev/null +++ b/sources/FixelText-Medium.ufo/metainfo.plist @@ -0,0 +1,10 @@ + + + + + creator + com.fontlab.ufoLib + formatVersion + 3 + + diff --git a/sources/FixelText-Regular.ufo/features.fea b/sources/FixelText-Regular.ufo/features.fea new file mode 100644 index 00000000..302ade93 --- /dev/null +++ b/sources/FixelText-Regular.ufo/features.fea @@ -0,0 +1,573 @@ +#> classes +#/> otclasses +@ss01_def = [A-cy A AE Aacute Abreve Acircumflex Adieresis Agrave Amacron Aogonek Aring Atilde Em-cy Eng G Gacute Gbreve Gcircumflex Gcommaaccent Gdotaccent Ha-cy Ia-cy J Jcircumflex K Ka-cy Kcommaaccent M N Nacute Ncaron Ncommaaccent Ntilde Q U-cy Ushort-cy V W Wacute Wcircumflex Wdieresis Wgrave X Y Yacute Ycircumflex Ydieresis Z Zacute Zcaron Zdotaccent Zhe-cy a-cy a aacute abreve acircumflex adieresis ae agrave amacron aogonek aring arrowdown arrowdown.case arrowleft arrowleft.case arrowright arrowright.case arrowup arrowup.case atilde b d dcaron dcroat de-cy e eacute ebreve ecaron ecircumflex edieresis edotaccent egrave el-cy emacron eogonek er-cy f f_f f_f_i f_f_l fi fl g gacute gbreve gcircumflex gcommaaccent gdotaccent germandbls hardsign-cy ia-cy ie-cy io-cy l lacute lcaron lcommaaccent ldot ljecyr lslash njecyr numero oe p q softsign-cy t tbar tcaron tcedilla tcommaaccent te-cy ve-cy yen yeru-cy]; +@ss01 = [A-cy.ss01 A.ss01 AE.ss01 Aacute.ss01 Abreve.ss01 Acircumflex.ss01 Adieresis.ss01 Agrave.ss01 Amacron.ss01 Aogonek.ss01 Aring.ss01 Atilde.ss01 Em-cy.ss01 Eng.ss01 G.ss01 Gacute.ss01 Gbreve.ss01 Gcircumflex.ss01 Gcommaaccent.ss01 Gdotaccent.ss01 Ha-cy.ss01 Ia-cy.ss01 J.ss01 Jcircumflex.ss01 K.ss01 Ka-cy.ss01 Kcommaaccent.ss01 M.ss01 N.ss01 Nacute.ss01 Ncaron.ss01 Ncommaaccent.ss01 Ntilde.ss01 Q.ss01 U-cy.ss01 Ushort-cy.ss01 V.ss01 W.ss01 Wacute.ss01 Wcircumflex.ss01 Wdieresis.ss01 Wgrave.ss01 X.ss01 Y.ss01 Yacute.ss01 Ycircumflex.ss01 Ydieresis.ss01 Z.ss01 Zacute.ss01 Zcaron.ss01 Zdotaccent.ss01 Zhe-cy.ss01 a-cy.ss01 a.ss01 aacute.ss01 abreve.ss01 acircumflex.ss01 adieresis.ss01 ae.ss01 agrave.ss01 amacron.ss01 aogonek.ss01 aring.ss01 arrowdown.ss01 arrowdown.ss01.case arrowleft.ss01 arrowleft.ss01.case arrowright.ss01 arrowright.ss01.case arrowup.ss01 arrowup.ss01.case atilde.ss01 b.ss01 d.ss01 dcaron.ss01 dcroat.ss01 de-cy.ss01 e.ss01 eacute.ss01 ebreve.ss01 ecaron.ss01 ecircumflex.ss01 edieresis.ss01 edotaccent.ss01 egrave.ss01 el-cy.ss01 emacron.ss01 eogonek.ss01 er-cy.ss01 f.ss01 f_f.ss01 f_f_i.ss01 f_f_l.ss01 fi.ss01 fl.ss01 g.ss01 gacute.ss01 gbreve.ss01 gcircumflex.ss01 gcommaaccent.ss01 gdotaccent.ss01 germandbls.ss01 hardsign-cy.ss01 ia-cy.ss01 ie-cy.ss01 io-cy.ss01 l.ss01 lacute.ss01 lcaron.ss01 lcommaaccent.ss01 ldot.ss01 ljecyr.ss01 lslash.ss01 njecyr.ss01 numero.ss01 oe.ss01 p.ss01 q.ss01 softsign-cy.ss01 t.ss01 tbar.ss01 tcaron.ss01 tcedilla.ss01 tcommaaccent.ss01 te-cy.ss01 ve-cy.ss01 yen.ss01 yeru-cy.ss01]; +@case = [arrowdown.case arrowdown.ss01.case arrowleft.case arrowleft.ss01.case arrowright.case arrowright.ss01.case arrowup.case arrowup.ss01.case backslash.case bar.case braceleft.case braceright.case bracketleft.case bracketright.case brokenbar.case bullet.case colon.case emdash.case endash.case exclamdown.case guillemetleft.case guillemetright.case guilsinglleft.case guilsinglright.case hyphen.case parenleft.case parenright.case questiondown.case semicolon.case at.case bracketangleleft.case bracketangleright.case slash.case]; +@case_def = [arrowdown arrowdown.ss01 arrowleft arrowleft.ss01 arrowright arrowright.ss01 arrowup arrowup.ss01 backslash bar braceleft braceright bracketleft bracketright brokenbar bullet colon emdash endash exclamdown guillemetleft guillemetright guilsinglleft guilsinglright hyphen parenleft parenright questiondown semicolon at bracketangleleft bracketangleright slash]; +@cpsp = [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 Agrave Aacute Acircumflex Atilde Adieresis Aring AE Ccedilla Egrave Eacute Ecircumflex Edieresis Igrave Iacute Icircumflex Idieresis Eth Ntilde Ograve Oacute Ocircumflex Otilde Odieresis Oslash Ugrave Uacute Ucircumflex Udieresis Yacute Thorn Amacron Abreve Aogonek Cacute Ccircumflex Cdotaccent Ccaron Dcaron Dcroat Emacron Ebreve Edotaccent Eogonek Ecaron Gcircumflex Gbreve Gdotaccent Gcommaaccent Hcircumflex Hbar Itilde Imacron Ibreve Iogonek Idotaccent IJ Jcircumflex Kcommaaccent Lacute Lcommaaccent Lcaron Ldot Lslash Nacute Ncommaaccent Ncaron Eng Omacron Obreve Ohungarumlaut OE Racute Rcommaaccent Rcaron Sacute Scircumflex Scedilla Scaron Tcedilla Tcaron Tbar Utilde Umacron Ubreve Uring Uhungarumlaut Uogonek Wcircumflex Ycircumflex Ydieresis Zacute Zdotaccent Zcaron Schwa Acaron Gacute AEacute Oslashacute Scommaaccent Tcommaaccent Delta Omega Iegravecyr uniF43A A-cy.accented E-cy.accented Ii-cy.accented O-cy.accented U-cy.accented Yeru-cy.accented Ereversed-cy.accented Iu-cy.accented Ia-cy.accented Io-cy.accented uniF498 uniF49A uniF49C uniF49E uniF4C6 uniF4CC uniF4D2 uniF4D4 uniF4D6 uniF4D8 uniF50E uniF510 uniF512 uniF514 uniF516 uniF518 uniF51A uniF51C uniF51E Yeru-cymacron uniF522 uniF524 uniF526 uniF528 uniF52A uniF52C uniF52E uniF532 uniF536 uniF538 uniF830 uniF833 uniF839 uniF86F uniF872 uniF875 uniF878 uniF87B uniF87E Io-cy Djecyr Gjecyr E-cy Dze-cy I-cy Yi-cy Jecyr Ljecyr Njecyr Tshecyr Kjecyr Igravecyr Ushort-cy Dzhecyr A-cy Be-cy Ve-cy Ge-cy De-cy Ie-cy Zhe-cy Ze-cy Ii-cy Iishort-cy Ka-cy El-cy Em-cy En-cy O-cy Pe-cy Er-cy Es-cy Te-cy U-cy Ef-cy Ha-cy Tse-cy Che-cy Sha-cy Shcha-cy Hardsign-cy Yeru-cy Softsign-cy Ereversed-cy Iu-cy Ia-cy Omegacyr Yatcyr Eiotifiedcyr Yuslittlecyr Yuslittleiotifiedcyr Yusbigcyr Yusbigiotifiedcyr Ksicyr Psicyr Fitacyr Izhitsacyr Izhitsagravedblcyr Ukcyr Omegaroundcyr Omegatitlocyr Otcyr Koppacyr Ishortsharptailcyr Semisoftcyr Ertickcyr Gheupturn-cy Gestrokecyr Gehookcyr Zhetailcyr Zetailcyr Katailcyr Kaverticalstrokecyr Kastrokecyr Kabashkcyr Entailcyr Engecyr Pehookcyr Haabkhcyr Estailcyr Tetailcyr Ustraightcyr Ustraightstrokecyr Xatailcyr Tetsecyr Chetailcyr Chevertcyr Shhacyr Cheabkhcyr Cheabkhtailcyr Palochkacyr Zhebrevecyr Kahookcyr Elsharptailcyr Enhookcyr Ensharptailcyr Chekhakascyr Emsharptailcyr Abrevecyr Adieresiscyr Aiecyr Iebrevecyr Schwacyr Schwadieresiscyr Zhedieresiscyr Zedieresiscyr Dzeabkhcyr Imacroncyr Idieresiscyr Odieresiscyr Obarcyr Obardieresiscyr Ereverseddieresiscyr Umacroncyr Udieresiscyr Uacutedblcyr Chedieresiscyr Getailcyr Ylongdieresiscyr Gehookstrokecyr Hahookcyr Hastrokecyr Dekomicyr Djekomicyr Zjekomicyr Dzjekomicyr Ljekomicyr Njekomicyr Sjekomicyr Tjekomicyr Reversedzecyr Elhookcyr Lhacyr Rhacyr Yaecyr Qacyr Wecyr Kaaleutcyr Elmiddlehookcyr Enmiddlehookcyr Petailcyr Shhatailcyr Enhookleftcyr Dzzhecyr Dchecyr Eltailcyr Wgrave Wacute Wdieresis Germandbls uni1EBC Zemlya-cy Dzelo-cy DzeReversed-cy Iota-cy Djerv-cy UkMonograph-cy OmegaBroad-cy YerNeutral-cy YeruBackYer-cy YatIotified-cy YuReversed-cy IotifiedA-cy YusClosedlittle-cy YusBlended-cy YusiotifiedClosedLittle-cy Yn-cy TseReversed-cy DeSoft-cy ElSoft-cy EmSoft-cy OMonocular-cy OBinocular-cy ODoubleMonocular-cy Dwe-cy Dzwe-cy Zhwe-cy Cche-cy Dzze-cy TeWithMiddleHook-cy Twe-cy Tswe-cy Tsse-cy Tche-cy Hwe-cy Shwe-cy DoubleO-cy CrossedO-cy A-cy.ss01 A.ss01 AE.ss01 Aacute.ss01 Abreve.ss01 Acircumflex.ss01 Adieresis.ss01 Agrave.ss01 Amacron.ss01 Aogonek.ss01 Aring.ss01 Atilde.ss01 Em-cy.ss01 Eng.ss01 G.ss01 Gacute.ss01 Gbreve.ss01 Gcircumflex.ss01 Gcommaaccent.ss01 Gdotaccent.ss01 Ha-cy.ss01 Ia-cy.ss01 J.ss01 Jcircumflex.ss01 K.ss01 Ka-cy.ss01 Kcommaaccent.ss01 M.ss01 N.ss01 Nacute.ss01 Ncaron.ss01 Ncommaaccent.ss01 Ntilde.ss01 Q.ss01 U-cy.ss01 Ushort-cy.ss01 V.ss01 W.ss01 Wacute.ss01 Wcircumflex.ss01 Wdieresis.ss01 Wgrave.ss01 X.ss01 Y.ss01 Yacute.ss01 Ycircumflex.ss01 Ydieresis.ss01 Z.ss01 Zacute.ss01 Zcaron.ss01 Zdotaccent.ss01 Zetailcyr.BSH Gestrokecyr.BSH Estailcyr.BSH Estailcyr.CHU Zhe-cy.ss01]; +@locl_BGR = [De-cy.BGR Ef-cy.BGR El-cy.BGR de-cy.BGR eiotifiedcyr.BGR el-cy.BGR ge-cy.BGR hardsign-cy.BGR ii-cy.BGR iishort-cy.BGR iotifieda-cy.BGR iu-cy.BGR ka-cy.BGR pe-cy.BGR sha-cy.BGR shcha-cy.BGR softsign-cy.BGR te-cy.BGR tse-cy.BGR ve-cy.BGR yatcyr.BGR yusbigiotifiedcyr.BGR ze-cy.BGR zhe-cy.BGR]; +@locl_def = [De-cy Ef-cy El-cy de-cy eiotifiedcyr el-cy ge-cy hardsign-cy ii-cy iishort-cy iotifieda-cy iu-cy ka-cy pe-cy sha-cy shcha-cy softsign-cy te-cy tse-cy ve-cy yatcyr yusbigiotifiedcyr ze-cy zhe-cy]; +@locl.SRB = [be-cy.SRB iegravecyr.SRB igravecyr.SRB]; +@loclSRB_def = [be-cy iegravecyr igravecyr]; +@accent = [grave acute.case grave.case acute]; +@pics = [neptune leo virgo bishopwhite knightwhite rookblack bishopblack knightblack heartwhite diamondwhite-misc spadewhite heart clubwhite crossedswords flower floretteblack florettewhite floretteoutlinedpetalledblackeight]; +@pics_def = [A B C D E F G H I J K L M N O P Q R]; +#/< otclasses + +#/> tags +@tag.omultiocular-cy.alt = [omultiocular-cy]; +@tag.yi-cy_yi-cy.alt = [uniE000]; +#/< tags +#< classes + +# automatic +@Uppercase = [ A Aacute Abreve Acircumflex Adieresis Agrave Amacron Aogonek Aring Atilde AE B C Cacute Ccaron Ccedilla Ccircumflex Cdotaccent D Eth Dcaron Dcroat E Eacute Ebreve Ecaron Ecircumflex Edieresis Edotaccent Egrave Emacron Eogonek F G Gacute Gbreve Gcircumflex Gcommaaccent Gdotaccent H Hbar Hcircumflex I IJ Iacute Ibreve Icircumflex Idieresis Idotaccent Igrave Imacron Iogonek Itilde J Jcircumflex K Kcommaaccent L Lacute Lcaron Lcommaaccent Ldot Lslash M N Nacute Ncaron Ncommaaccent Eng Ntilde O Oacute Obreve Ocircumflex Odieresis Ograve Ohungarumlaut Omacron Oslash Otilde OE P Thorn Q R Racute Rcaron Rcommaaccent S Sacute Scaron Scedilla Scircumflex Scommaaccent Germandbls T Tbar Tcaron Tcedilla Tcommaaccent U Uacute Ubreve Ucircumflex Udieresis Ugrave Uhungarumlaut Umacron Uogonek Uring Utilde V W Wacute Wcircumflex Wdieresis Wgrave X Y Yacute Ycircumflex Ydieresis Z Zacute Zcaron Zdotaccent A.ss01 Aacute.ss01 Abreve.ss01 Acircumflex.ss01 Adieresis.ss01 Agrave.ss01 Amacron.ss01 Aogonek.ss01 Aring.ss01 Atilde.ss01 AE.ss01 G.ss01 Gacute.ss01 Gbreve.ss01 Gcircumflex.ss01 Gcommaaccent.ss01 Gdotaccent.ss01 J.ss01 Jcircumflex.ss01 K.ss01 Kcommaaccent.ss01 M.ss01 N.ss01 Nacute.ss01 Ncaron.ss01 Ncommaaccent.ss01 Eng.ss01 Ntilde.ss01 Q.ss01 V.ss01 W.ss01 Wacute.ss01 Wcircumflex.ss01 Wdieresis.ss01 Wgrave.ss01 X.ss01 Y.ss01 Yacute.ss01 Ycircumflex.ss01 Ydieresis.ss01 Z.ss01 Zacute.ss01 Zcaron.ss01 Zdotaccent.ss01 A-cy Be-cy Ve-cy Ge-cy Gheupturn-cy De-cy Ie-cy Io-cy Zhe-cy Ze-cy Ii-cy Iishort-cy Ka-cy El-cy Em-cy En-cy O-cy Pe-cy Er-cy Es-cy Te-cy U-cy Ushort-cy Ef-cy Ha-cy Che-cy Tse-cy Sha-cy Shcha-cy Softsign-cy Hardsign-cy Yeru-cy Dze-cy E-cy Ereversed-cy I-cy Yi-cy Iu-cy Ia-cy A-cy.ss01 Zhe-cy.ss01 Ka-cy.ss01 Em-cy.ss01 U-cy.ss01 Ushort-cy.ss01 Ha-cy.ss01 Ia-cy.ss01 ]; + +# Prefix: Languagesystems +# automatic +languagesystem DFLT dflt; + +languagesystem latn dflt; +languagesystem latn ROM; +languagesystem latn MOL; +languagesystem latn CAT; +languagesystem cyrl dflt; +languagesystem cyrl BGR; +languagesystem cyrl BSH; +languagesystem cyrl CHU; +languagesystem cyrl SRB; +languagesystem cyrl MKD; + +lookup liga_accent { + sub @accent by [grave grave grave grave]; +} liga_accent; +feature aalt { +# Access All Alternates + +#> feature + feature locl; + feature sups; + feature case; + feature lnum; + feature pnum; + feature tnum; + feature onum; + feature salt; + feature ss01; + feature hist; +#< feature +} aalt; +feature ccmp { +# automatic +lookup ccmp_Other_1 { + @Markscomb = [dieresis dotaccent grave acute hungarumlaut circumflex caron breve ring tilde macron]; + @MarkscombCase = [dieresis.case dotaccent.case grave.case acute.case hungarumlaut.case circumflex.case caron.case breve.case ring.case tilde.case macron.case]; + sub @Markscomb @Markscomb' by @MarkscombCase; + sub @cpsp @Markscomb' by @MarkscombCase; +} ccmp_Other_1; + +lookup ccmp_Other_2 { + sub @Markscomb' @MarkscombCase by @MarkscombCase; + sub @MarkscombCase @Markscomb' by @MarkscombCase; +} ccmp_Other_2; +} ccmp; + +feature locl { +# automatic + +script latn; + language ROM; + language MOL; + sub Scedilla by Scommaaccent; + sub scedilla by scommaaccent; + sub Tcedilla by Tcommaaccent; + sub tcedilla by tcommaaccent; + +script latn; + language CAT; + sub l' periodcentered' l by ldot; + sub L' periodcentered' L by Ldot; + +script cyrl; # Cyrillic + language SRB ; # Serbian + + lookup locl_SRB_MCD { + # GSUB lookup 20, type 11 (Single) + sub @loclSRB_def by @locl.SRB; + } locl_SRB_MCD; + + language MKD ; # Serbian + lookup locl_SRB_MCD; + + language BSH ; # Bashkir + sub [Gestrokecyr gestrokecyr Zetailcyr zetailcyr] by [Gestrokecyr.BSH gestrokecyr.BSH Zetailcyr.BSH zetailcyr.BSH]; + sub [Estailcyr estailcyr] by [Estailcyr.BSH estailcyr.BSH]; + + language CHU ; # Chuvash + sub [Estailcyr estailcyr] by [Estailcyr.CHU estailcyr.CHU]; + + language BGR ; # Bulgarian + sub @locl_def by @locl_BGR; + +} locl; + +feature sups { +# Superscript + +#> feature + sub one by onesuperior; + sub three by threesuperior; + sub two by twosuperior; +#< feature +} sups; +feature ordn { +# Ordinals + +#> feature + sub [zero one two three four five six seven eight nine] [A a]' by ordfeminine; + sub [zero one two three four five six seven eight nine] [O o]' by ordmasculine; + sub N o period by numero; +#< feature +} ordn; +feature case { +# Case Sensitive Forms + +#> feature + + sub @case_def by @case; + +#< feature +} case; +feature liga { +# Standard Ligatures + +#> feature +sub f f i by f_f_i; +sub f f l by f_f_l; +sub f f by f_f; +sub f i by fi; +sub f l by fl; +sub yi-cy yi-cy by uniE000; +sub hyphen greater by arrowright; +sub less hyphen by arrowleft; +sub backslash bar slash by arrowdown; +sub slash bar backslash by arrowup; + + lookup accent_2 { + sub E-cy @accent' lookup liga_accent; + sub I-cy @accent' lookup liga_accent; + sub Yi-cy @accent' lookup liga_accent; + sub A-cy @accent' lookup liga_accent; + sub Ie-cy @accent' lookup liga_accent; + sub Ii-cy @accent' lookup liga_accent; + sub O-cy @accent' lookup liga_accent; + sub U-cy @accent' lookup liga_accent; + sub Yeru-cy @accent' lookup liga_accent; + sub Ereversed-cy @accent' lookup liga_accent; + sub Iu-cy @accent' lookup liga_accent; + sub Ia-cy @accent' lookup liga_accent; + sub Io-cy @accent' lookup liga_accent; + sub Yatcyr @accent' lookup liga_accent; + + sub e-cy @accent' lookup liga_accent; + sub i-cy @accent' lookup liga_accent; + sub yi-cy @accent' lookup liga_accent; + sub a-cy @accent' lookup liga_accent; + sub ie-cy @accent' lookup liga_accent; + sub ii-cy @accent' lookup liga_accent; + sub o-cy @accent' lookup liga_accent; + sub u-cy @accent' lookup liga_accent; + sub yeru-cy @accent' lookup liga_accent; + sub ereversed-cy @accent' lookup liga_accent; + sub iu-cy @accent' lookup liga_accent; + sub ia-cy @accent' lookup liga_accent; + sub io-cy @accent' lookup liga_accent; + sub yatcyr @accent' lookup liga_accent; + } accent_2; + + lookup accent_3 { + sub E-cy grave by uniF45D; + sub I-cy grave by uniF45E; + sub Yi-cy grave by uniF45F; + sub A-cy grave by A-cy.accented; + sub Ie-cy grave by E-cy.accented; + sub Ii-cy grave by Ii-cy.accented; + sub O-cy grave by O-cy.accented; + sub U-cy grave by U-cy.accented; + sub Yeru-cy grave by Yeru-cy.accented; + sub Ereversed-cy grave by Ereversed-cy.accented; + sub Iu-cy grave by Iu-cy.accented; + sub Ia-cy grave by Ia-cy.accented; + sub Io-cy grave by Io-cy.accented; + sub Yatcyr grave by uniF478; + + sub e-cy grave by uniF475; + sub i-cy grave by uniF476; + sub yi-cy grave by uniF477; + sub a-cy grave by a-cy.accented; + sub ie-cy grave by e-cy.accented; + sub ii-cy grave by ii-cy.accented; + sub o-cy grave by o-cy.accented; + sub u-cy grave by u-cy.accented; + sub yeru-cy grave by yeru-cy.accented; + sub ereversed-cy grave by ereversed-cy.accented; + sub iu-cy grave by iu-cy.accented; + sub ia-cy grave by ia-cy.accented; + sub io-cy grave by io-cy.accented; + sub yatcyr grave by uniF479; + } accent_3; + +#< feature +} liga; +feature dlig { +# Discretionary Ligatures + +#> feature + +sub M a c P a w l o g o by uniE01A; +sub M P a w l o g o by uniE01A; +sub M P l o g o by uniE01A; +sub M A C P A W L O G O by uniE01A; +sub m a c p a w l o g o by uniE01A; +sub t r i d e n t by neptune; +sub t r y z u b by neptune; +sub u k r a i n e s i g n by neptune; +sub T R I D E N T by neptune; +sub T R Y Z U B by neptune; +sub U k r a i n e S i g n by neptune; +sub T r y z u b by neptune; +sub T r i d e n t by neptune; +sub Te-cy Er-cy Ii-cy Ze-cy U-cy Be-cy by neptune; + +#< feature +} dlig; +feature lnum { +# Lining Figures + +#> feature + sub eight.osf by eight.tf; + sub eight by eight.tf; + sub five.osf by five.tf; + sub five by five.tf; + sub four.osf by four.tf; + sub four by four.tf; + sub nine.osf by nine.tf; + sub nine by nine.tf; + sub one.osf by one.tf; + sub one by one.tf; + sub seven.osf by seven.tf; + sub seven by seven.tf; + sub six.osf by six.tf; + sub six by six.tf; + sub three.osf by three.tf; + sub three by three.tf; + sub two.osf by two.tf; + sub two by two.tf; + sub zero.osf by zero.tf; + sub zero by zero.tf; +#< feature +} lnum; +feature pnum { +# Proportional Figures + +#> feature + sub eight.tf by eight.osf; + sub eight by eight.osf; + sub five.tf by five.osf; + sub five by five.osf; + sub four.tf by four.osf; + sub four by four.osf; + sub nine.tf by nine.osf; + sub nine by nine.osf; + sub one.tf by one.osf; + sub one by one.osf; + sub seven.tf by seven.osf; + sub seven by seven.osf; + sub six.tf by six.osf; + sub six by six.osf; + sub three.tf by three.osf; + sub three by three.osf; + sub two.tf by two.osf; + sub two by two.osf; + sub zero.tf by zero.osf; + sub zero by zero.osf; +#< feature +} pnum; +feature tnum { +# Tabular Figures + +#> feature + sub eight by eight.tf; + sub eight.osf by eight.tf; + sub five by five.tf; + sub five.osf by five.tf; + sub four by four.tf; + sub four.osf by four.tf; + sub nine by nine.tf; + sub nine.osf by nine.tf; + sub one by one.tf; + sub one.osf by one.tf; + sub seven by seven.tf; + sub seven.osf by seven.tf; + sub six by six.tf; + sub six.osf by six.tf; + sub three by three.tf; + sub three.osf by three.tf; + sub two by two.tf; + sub two.osf by two.tf; + sub zero by zero.tf; + sub zero.osf by zero.tf; +#< feature +} tnum; +feature onum { +# Oldstyle Figures + +#> feature + sub eight by eight.osf; + sub eight.tf by eight.osf; + sub five by five.osf; + sub five.tf by five.osf; + sub four by four.osf; + sub four.tf by four.osf; + sub nine by nine.osf; + sub nine.tf by nine.osf; + sub one by one.osf; + sub one.tf by one.osf; + sub seven by seven.osf; + sub seven.tf by seven.osf; + sub six by six.osf; + sub six.tf by six.osf; + sub three by three.osf; + sub three.tf by three.osf; + sub two by two.osf; + sub two.tf by two.osf; + sub zero by zero.osf; + sub zero.tf by zero.osf; +#< feature +} onum; +feature salt { +# Stylistic Alternates + +#> feature + sub A from [A.ss01]; + sub A-cy from [A-cy.ss01]; + sub AE from [AE.ss01]; + sub Aacute from [Aacute.ss01]; + sub Abreve from [Abreve.ss01]; + sub Acircumflex from [Acircumflex.ss01]; + sub Adieresis from [Adieresis.ss01]; + sub Agrave from [Agrave.ss01]; + sub Amacron from [Amacron.ss01]; + sub Aogonek from [Aogonek.ss01]; + sub Aring from [Aring.ss01]; + sub Atilde from [Atilde.ss01]; + sub Em-cy from [Em-cy.ss01]; + sub Eng from [Eng.ss01]; + sub G from [G.ss01]; + sub Gacute from [Gacute.ss01]; + sub Gbreve from [Gbreve.ss01]; + sub Gcircumflex from [Gcircumflex.ss01]; + sub Gcommaaccent from [Gcommaaccent.ss01]; + sub Gdotaccent from [Gdotaccent.ss01]; + sub Ha-cy from [Ha-cy.ss01]; + sub Ia-cy from [Ia-cy.ss01]; + sub J from [J.ss01]; + sub Jcircumflex from [Jcircumflex.ss01]; + sub K from [K.ss01]; + sub Ka-cy from [Ka-cy.ss01]; + sub Kcommaaccent from [Kcommaaccent.ss01]; + sub M from [M.ss01]; + sub N from [N.ss01]; + sub Nacute from [Nacute.ss01]; + sub Ncaron from [Ncaron.ss01]; + sub Ncommaaccent from [Ncommaaccent.ss01]; + sub Ntilde from [Ntilde.ss01]; + sub Q from [Q.ss01]; + sub U-cy from [U-cy.ss01]; + sub Ushort-cy from [Ushort-cy.ss01]; + sub V from [V.ss01]; + sub W from [W.ss01]; + sub Wacute from [Wacute.ss01]; + sub Wcircumflex from [Wcircumflex.ss01]; + sub Wdieresis from [Wdieresis.ss01]; + sub Wgrave from [Wgrave.ss01]; + sub X from [X.ss01]; + sub Y from [Y.ss01]; + sub Yacute from [Yacute.ss01]; + sub Ycircumflex from [Ycircumflex.ss01]; + sub Ydieresis from [Ydieresis.ss01]; + sub Z from [Z.ss01]; + sub Zacute from [Zacute.ss01]; + sub Zcaron from [Zcaron.ss01]; + sub Zdotaccent from [Zdotaccent.ss01]; + sub Zhe-cy from [Zhe-cy.ss01]; + sub a from [a.ss01]; + sub a-cy from [a-cy.ss01]; + sub aacute from [aacute.ss01]; + sub abreve from [abreve.ss01]; + sub acircumflex from [acircumflex.ss01]; + sub adieresis from [adieresis.ss01]; + sub ae from [ae.ss01]; + sub agrave from [agrave.ss01]; + sub amacron from [amacron.ss01]; + sub aogonek from [aogonek.ss01]; + sub aring from [aring.ss01]; + sub arrowdown from [arrowdown.ss01]; + sub arrowleft from [arrowleft.ss01]; + sub arrowright from [arrowright.ss01]; + sub arrowup from [arrowup.ss01]; + sub atilde from [atilde.ss01]; + sub b from [b.ss01]; + sub caron from [caron.salt]; + sub commaaccentcomb from [commaaccentcomb.salt]; + sub d from [d.ss01]; + sub dcaron from [dcaron.ss01]; + sub dcroat from [dcroat.ss01]; + sub de-cy from [de-cy.ss01]; + sub e from [e.ss01]; + sub eacute from [eacute.ss01]; + sub ebreve from [ebreve.ss01]; + sub ecaron from [ecaron.ss01]; + sub ecircumflex from [ecircumflex.ss01]; + sub edieresis from [edieresis.ss01]; + sub edotaccent from [edotaccent.ss01]; + sub egrave from [egrave.ss01]; + sub el-cy from [el-cy.ss01]; + sub emacron from [emacron.ss01]; + sub eogonek from [eogonek.ss01]; + sub er-cy from [er-cy.ss01]; + sub f from [f.ss01]; + sub f_f from [f_f.ss01]; + sub f_f_i from [f_f_i.ss01]; + sub f_f_l from [f_f_l.ss01]; + sub fi from [fi.ss01]; + sub fl from [fl.ss01]; + sub g from [g.ss01]; + sub gacute from [gacute.ss01]; + sub gbreve from [gbreve.ss01]; + sub gcircumflex from [gcircumflex.ss01]; + sub gcommaaccent from [gcommaaccent.ss01]; + sub gdotaccent from [gdotaccent.ss01]; + sub germandbls from [germandbls.ss01]; + sub hardsign-cy from [hardsign-cy.ss01]; + sub ia-cy from [ia-cy.ss01]; + sub ie-cy from [ie-cy.ss01]; + sub io-cy from [io-cy.ss01]; + sub l from [l.ss01]; + sub lacute from [lacute.ss01]; + sub lcaron from [lcaron.ss01]; + sub lcommaaccent from [lcommaaccent.ss01]; + sub ldot from [ldot.ss01]; + sub ljecyr from [ljecyr.ss01]; + sub lslash from [lslash.ss01]; + sub njecyr from [njecyr.ss01]; + sub numero from [numero.ss01]; + sub oe from [oe.ss01]; + sub p from [p.ss01]; + sub q from [q.ss01]; + sub softsign-cy from [softsign-cy.ss01]; + sub t from [t.ss01]; + sub tbar from [tbar.ss01]; + sub tcaron from [tcaron.ss01]; + sub tcedilla from [tcedilla.ss01]; + sub tcommaaccent from [tcommaaccent.ss01]; + sub te-cy from [te-cy.ss01]; + sub uniE000 from [uniE000.alt]; + sub ve-cy from [ve-cy.ss01]; + sub yen from [yen.ss01]; + sub yeru-cy from [yeru-cy.ss01]; +#< feature +} salt; +feature ss03 { +# Stylistic Set 01–20 + +#> feature + featureNames { + name "Bulgarian forms"; + name 1 "Bulgarian forms"; + }; + + sub @locl_def by @locl_BGR; + +#< feature +} ss03; +feature ss04 { +# Stylistic Set 01–20 + +#> feature + featureNames { + name "Serbian/Macedonian forms"; + name 1 "Serbian/Macedonian forms"; + }; + + sub @loclSRB_def by @locl.SRB; + +#< feature +} ss04; +feature ss01 { +# Stylistic Set 01–20 + +#> feature + + featureNames { + name "Humanistic forms"; + name 1 "Humanistic forms"; + }; + + sub @ss01_def by @ss01; + +#< feature +} ss01; +feature ss05 { +# Stylistic Set 01–20 + +#> feature + + featureNames { + name "Ukrainian pictograms"; + name 1 "Ukrainian pictograms"; + }; + + sub @pics_def by @pics; + +#< feature +} ss05; +feature hist { +# Historical Forms + +#> feature + sub e-cy by e-cy.hist; + sub s by longs; +#< feature +} hist; +feature frac { +# Fractions + +#> feature +lookup frac_precomposed { + + sub one slash four by onequarter; + sub one slash two by onehalf; + sub three slash four by threequarters; + sub one fraction four by onequarter; + sub one fraction two by onehalf; + sub three fraction four by threequarters; +} frac_precomposed; +#< feature +} frac; +feature cpsp { +# Capital Spacing + +#> feature + + pos @cpsp <5 0 10 0>; + +#< feature +} cpsp; +feature dnom { +# Denominator + +#> feature + sub thousandscyr by thousandscyr.dnom; +#< feature +} dnom; diff --git a/sources/FixelText-Regular.ufo/fontinfo.plist b/sources/FixelText-Regular.ufo/fontinfo.plist new file mode 100644 index 00000000..75f8989a --- /dev/null +++ b/sources/FixelText-Regular.ufo/fontinfo.plist @@ -0,0 +1,207 @@ + + + + + ascender + 720 + capHeight + 700 + descender + -200 + familyName + Fixel Text + guidelines + + + angle + 0 + name + m + x + 0 + y + 70 + + + angle + 0 + name + m + x + 0 + y + 189 + + + italicAngle + 0 + openTypeGaspRangeRecords + + + rangeGaspBehavior + + 0 + 1 + 2 + 3 + + rangeMaxPPEM + 65535 + + + openTypeHeadCreated + 2023/09/05 09:25:15 + openTypeHeadFlags + + + openTypeHheaAscender + 720 + openTypeHheaCaretOffset + -0 + openTypeHheaDescender + -190 + openTypeHheaLineGap + 100 + openTypeNameDesigner + AlfaBravo + openTypeNameDesignerURL + https://alfabravo.design/ + openTypeNameManufacturer + Kyrylo Tkachov, Marchela Mozhyna, Serhii Makarenko, Maria Weinstein, Zakhar Kryvoshyya + + openTypeNameManufacturerURL + https://macpaw.com/ + openTypeNamePreferredFamilyName + Fixel Text + openTypeNamePreferredSubfamilyName + Regular + openTypeNameVersion + Version 1.200 + openTypeOS2CodePageRanges + + 0 + 1 + 2 + 4 + 7 + 29 + + openTypeOS2Panose + + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + + openTypeOS2Selection + + + openTypeOS2StrikeoutPosition + 300 + openTypeOS2StrikeoutSize + 50 + openTypeOS2SubscriptXOffset + -0 + openTypeOS2SubscriptXSize + 650 + openTypeOS2SubscriptYOffset + 75 + openTypeOS2SubscriptYSize + 600 + openTypeOS2SuperscriptXOffset + -0 + openTypeOS2SuperscriptXSize + 650 + openTypeOS2SuperscriptYOffset + 350 + openTypeOS2SuperscriptYSize + 600 + openTypeOS2Type + + 2 + + openTypeOS2TypoAscender + 720 + openTypeOS2TypoDescender + -200 + openTypeOS2TypoLineGap + 290 + openTypeOS2UnicodeRanges + + 0 + 1 + 2 + 9 + 31 + 33 + 60 + + openTypeOS2WeightClass + 400 + openTypeOS2WidthClass + 4 + openTypeOS2WinAscent + 750 + openTypeOS2WinDescent + 250 + postscriptBlueFuzz + 1 + postscriptBlueScale + 0.039625 + postscriptBlueShift + 7 + postscriptBlueValues + + -20 + 0 + + postscriptFontName + FixelText-Regular + postscriptForceBold + + postscriptFullName + Fixel Text Regular + postscriptIsFixedPitch + + postscriptStemSnapH + + 69 + 74 + 76 + 80 + 99 + + postscriptStemSnapV + + 74 + 80 + 93 + + postscriptUnderlinePosition + -100 + postscriptUnderlineThickness + 50 + postscriptWeightName + Regular + styleMapFamilyName + Fixel Text Regular + styleMapStyleName + regular + styleName + Regular + unitsPerEm + 1000 + versionMajor + 1 + versionMinor + 200 + xHeight + 520 + + diff --git a/sources/FixelText-Regular.ufo/glyphs/A_-cy.accented.glif b/sources/FixelText-Regular.ufo/glyphs/A_-cy.accented.glif new file mode 100644 index 00000000..0c744c54 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/A_-cy.accented.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+acute.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/A_-cy.glif b/sources/FixelText-Regular.ufo/glyphs/A_-cy.glif new file mode 100644 index 00000000..3f25c455 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/A_-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/A_-cy.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/A_-cy.ss01.glif new file mode 100644 index 00000000..334aac2e --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/A_-cy.ss01.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + com.fontlab.recipe + A + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/A_.glif b/sources/FixelText-Regular.ufo/glyphs/A_.glif new file mode 100644 index 00000000..c255ce86 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/A_.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/A_.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/A_.ss01.glif new file mode 100644 index 00000000..cb6c8392 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/A_.ss01.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/A_E_.glif b/sources/FixelText-Regular.ufo/glyphs/A_E_.glif new file mode 100644 index 00000000..49c80357 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/A_E_.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + A + com.fontlab.metricsRight + E + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/A_E_.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/A_E_.ss01.glif new file mode 100644 index 00000000..e1861083 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/A_E_.ss01.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + A.ss01 + com.fontlab.metricsRight + E + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/A_E_acute.glif b/sources/FixelText-Regular.ufo/glyphs/A_E_acute.glif new file mode 100644 index 00000000..24a6e024 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/A_E_acute.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + AE+acute.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/A_acute.glif b/sources/FixelText-Regular.ufo/glyphs/A_acute.glif new file mode 100644 index 00000000..596cfcef --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/A_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+acute.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/A_acute.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/A_acute.ss01.glif new file mode 100644 index 00000000..5e1c9fb1 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/A_acute.ss01.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + A.ss01+acute.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/A_breve.glif b/sources/FixelText-Regular.ufo/glyphs/A_breve.glif new file mode 100644 index 00000000..4b582d36 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/A_breve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+breve.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/A_breve.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/A_breve.ss01.glif new file mode 100644 index 00000000..2b51823a --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/A_breve.ss01.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + A.ss01+breve.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/A_brevecyr.glif b/sources/FixelText-Regular.ufo/glyphs/A_brevecyr.glif new file mode 100644 index 00000000..d946b5ff --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/A_brevecyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+breve.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/A_caron.glif b/sources/FixelText-Regular.ufo/glyphs/A_caron.glif new file mode 100644 index 00000000..44ba9ff4 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/A_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+caron.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/A_circumflex.glif b/sources/FixelText-Regular.ufo/glyphs/A_circumflex.glif new file mode 100644 index 00000000..fde8e7ba --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/A_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+circumflex.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/A_circumflex.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/A_circumflex.ss01.glif new file mode 100644 index 00000000..d20f28a6 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/A_circumflex.ss01.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + A.ss01+circumflex.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/A_dieresis.glif b/sources/FixelText-Regular.ufo/glyphs/A_dieresis.glif new file mode 100644 index 00000000..74161e1b --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/A_dieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+dieresis.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/A_dieresis.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/A_dieresis.ss01.glif new file mode 100644 index 00000000..9b038fd7 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/A_dieresis.ss01.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + A.ss01+dieresis.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/A_dieresiscyr.glif b/sources/FixelText-Regular.ufo/glyphs/A_dieresiscyr.glif new file mode 100644 index 00000000..4089c15e --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/A_dieresiscyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/A_grave.glif b/sources/FixelText-Regular.ufo/glyphs/A_grave.glif new file mode 100644 index 00000000..97e26942 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/A_grave.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+grave.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/A_grave.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/A_grave.ss01.glif new file mode 100644 index 00000000..4201bdf3 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/A_grave.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A.ss01+grave.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/A_iecyr.glif b/sources/FixelText-Regular.ufo/glyphs/A_iecyr.glif new file mode 100644 index 00000000..cd4ee357 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/A_iecyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + AE + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/A_macron.glif b/sources/FixelText-Regular.ufo/glyphs/A_macron.glif new file mode 100644 index 00000000..557a35ab --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/A_macron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+macron.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/A_macron.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/A_macron.ss01.glif new file mode 100644 index 00000000..c9af32d2 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/A_macron.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A.ss01+macron.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/A_ogonek.glif b/sources/FixelText-Regular.ufo/glyphs/A_ogonek.glif new file mode 100644 index 00000000..06185b1b --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/A_ogonek.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+ogonek + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/A_ogonek.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/A_ogonek.ss01.glif new file mode 100644 index 00000000..d0a24167 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/A_ogonek.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A.ss01+ogonek + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/A_ring.glif b/sources/FixelText-Regular.ufo/glyphs/A_ring.glif new file mode 100644 index 00000000..d5bdfe8e --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/A_ring.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+ring.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/A_ring.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/A_ring.ss01.glif new file mode 100644 index 00000000..3ce8720c --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/A_ring.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A.ss01+ring.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/A_tilde.glif b/sources/FixelText-Regular.ufo/glyphs/A_tilde.glif new file mode 100644 index 00000000..a7927437 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/A_tilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+tilde.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/A_tilde.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/A_tilde.ss01.glif new file mode 100644 index 00000000..2a8bda7d --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/A_tilde.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A.ss01+tilde.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/B_.glif b/sources/FixelText-Regular.ufo/glyphs/B_.glif new file mode 100644 index 00000000..11fe4e77 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/B_.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/B_e-cy.glif b/sources/FixelText-Regular.ufo/glyphs/B_e-cy.glif new file mode 100644 index 00000000..7a095cf3 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/B_e-cy.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + B-10 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/C_.glif b/sources/FixelText-Regular.ufo/glyphs/C_.glif new file mode 100644 index 00000000..c41412c4 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/C_.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/C_R_.glif b/sources/FixelText-Regular.ufo/glyphs/C_R_.glif new file mode 100644 index 00000000..a38a285e --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/C_R_.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/C_acute.glif b/sources/FixelText-Regular.ufo/glyphs/C_acute.glif new file mode 100644 index 00000000..a8910ca8 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/C_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+acute.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/C_caron.glif b/sources/FixelText-Regular.ufo/glyphs/C_caron.glif new file mode 100644 index 00000000..3cab13b7 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/C_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+caron.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/C_cedilla.glif b/sources/FixelText-Regular.ufo/glyphs/C_cedilla.glif new file mode 100644 index 00000000..a811c749 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/C_cedilla.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+cedilla + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/C_che-cy.glif b/sources/FixelText-Regular.ufo/glyphs/C_che-cy.glif new file mode 100644 index 00000000..d991a785 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/C_che-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ч + com.fontlab.metricsRight + Ч + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/C_circumflex.glif b/sources/FixelText-Regular.ufo/glyphs/C_circumflex.glif new file mode 100644 index 00000000..bb3e36c0 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/C_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+circumflex.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/C_dotaccent.glif b/sources/FixelText-Regular.ufo/glyphs/C_dotaccent.glif new file mode 100644 index 00000000..8e0765bb --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/C_dotaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+dotaccent.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/C_he-cy.glif b/sources/FixelText-Regular.ufo/glyphs/C_he-cy.glif new file mode 100644 index 00000000..e8ff0a06 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/C_he-cy.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/C_heabkhcyr.glif b/sources/FixelText-Regular.ufo/glyphs/C_heabkhcyr.glif new file mode 100644 index 00000000..274f76d7 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/C_heabkhcyr.glif @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + |Schwa + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/C_heabkhtailcyr.glif b/sources/FixelText-Regular.ufo/glyphs/C_heabkhtailcyr.glif new file mode 100644 index 00000000..7821311a --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/C_heabkhtailcyr.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Cheabkhcyr + com.fontlab.metricsRight + Cheabkhcyr + com.fontlab.recipe + Cheabkhcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/C_hedieresiscyr.glif b/sources/FixelText-Regular.ufo/glyphs/C_hedieresiscyr.glif new file mode 100644 index 00000000..5a04fc68 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/C_hedieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Che-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/C_hekhakascyr.glif b/sources/FixelText-Regular.ufo/glyphs/C_hekhakascyr.glif new file mode 100644 index 00000000..6c893992 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/C_hekhakascyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ч + com.fontlab.metricsRight + H + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/C_hetailcyr.glif b/sources/FixelText-Regular.ufo/glyphs/C_hetailcyr.glif new file mode 100644 index 00000000..7a3910cd --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/C_hetailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ч + com.fontlab.metricsRight + Entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/C_hevertcyr.glif b/sources/FixelText-Regular.ufo/glyphs/C_hevertcyr.glif new file mode 100644 index 00000000..dac9e1a3 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/C_hevertcyr.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ч + com.fontlab.metricsRight + Н + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/C_rossedO_-cy.glif b/sources/FixelText-Regular.ufo/glyphs/C_rossedO_-cy.glif new file mode 100644 index 00000000..46db2669 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/C_rossedO_-cy.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + com.fontlab.recipe + O + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/D_.glif b/sources/FixelText-Regular.ufo/glyphs/D_.glif new file mode 100644 index 00000000..8804b495 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/D_.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/D_caron.glif b/sources/FixelText-Regular.ufo/glyphs/D_caron.glif new file mode 100644 index 00000000..acc0e100 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/D_caron.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + D+caron.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/D_checyr.glif b/sources/FixelText-Regular.ufo/glyphs/D_checyr.glif new file mode 100644 index 00000000..1316b246 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/D_checyr.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Д+10 + com.fontlab.metricsRight + Д + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/D_croat.glif b/sources/FixelText-Regular.ufo/glyphs/D_croat.glif new file mode 100644 index 00000000..962c1f66 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/D_croat.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + D + com.fontlab.recipe + Eth + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/D_e-cy.B_G_R_.glif b/sources/FixelText-Regular.ufo/glyphs/D_e-cy.B_G_R_.glif new file mode 100644 index 00000000..03304d63 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/D_e-cy.B_G_R_.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + l() + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/D_e-cy.glif b/sources/FixelText-Regular.ufo/glyphs/D_e-cy.glif new file mode 100644 index 00000000..d45e47ed --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/D_e-cy.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/D_eS_oft-cy.glif b/sources/FixelText-Regular.ufo/glyphs/D_eS_oft-cy.glif new file mode 100644 index 00000000..890c2800 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/D_eS_oft-cy.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Д + com.fontlab.metricsRight + Ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/D_ekomicyr.glif b/sources/FixelText-Regular.ufo/glyphs/D_ekomicyr.glif new file mode 100644 index 00000000..a1ad5dd7 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/D_ekomicyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.metricsLeft + |P + com.fontlab.metricsRight + H + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/D_elta.glif b/sources/FixelText-Regular.ufo/glyphs/D_elta.glif new file mode 100644 index 00000000..f3299f89 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/D_elta.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + A + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/D_jecyr.glif b/sources/FixelText-Regular.ufo/glyphs/D_jecyr.glif new file mode 100644 index 00000000..671ad1ad --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/D_jecyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/D_jekomicyr.glif b/sources/FixelText-Regular.ufo/glyphs/D_jekomicyr.glif new file mode 100644 index 00000000..a9b7b746 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/D_jekomicyr.glif @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Dekomicyr + com.fontlab.metricsRight + Njekomicyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/D_jerv-cy.glif b/sources/FixelText-Regular.ufo/glyphs/D_jerv-cy.glif new file mode 100644 index 00000000..eba72e08 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/D_jerv-cy.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + r() + com.fontlab.metricsRight + O + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/D_oubleO_-cy.glif b/sources/FixelText-Regular.ufo/glyphs/D_oubleO_-cy.glif new file mode 100644 index 00000000..e2332405 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/D_oubleO_-cy.glif @@ -0,0 +1,91 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + com.fontlab.recipe + O_O + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/D_we-cy.glif b/sources/FixelText-Regular.ufo/glyphs/D_we-cy.glif new file mode 100644 index 00000000..e5cea5ac --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/D_we-cy.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Д + com.fontlab.metricsRight + Д + com.fontlab.recipe + Д + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/D_ze-cy.glif b/sources/FixelText-Regular.ufo/glyphs/D_ze-cy.glif new file mode 100644 index 00000000..2da90794 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/D_ze-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + S + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/D_zeR_eversed-cy.glif b/sources/FixelText-Regular.ufo/glyphs/D_zeR_eversed-cy.glif new file mode 100644 index 00000000..45be0ae4 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/D_zeR_eversed-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + S + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/D_zeabkhcyr.glif b/sources/FixelText-Regular.ufo/glyphs/D_zeabkhcyr.glif new file mode 100644 index 00000000..ae6efc5e --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/D_zeabkhcyr.glif @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + З-10 + com.fontlab.metricsRight + З-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/D_zelo-cy.glif b/sources/FixelText-Regular.ufo/glyphs/D_zelo-cy.glif new file mode 100644 index 00000000..5698eeb4 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/D_zelo-cy.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/D_zhecyr.glif b/sources/FixelText-Regular.ufo/glyphs/D_zhecyr.glif new file mode 100644 index 00000000..88ab3795 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/D_zhecyr.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/D_zjekomicyr.glif b/sources/FixelText-Regular.ufo/glyphs/D_zjekomicyr.glif new file mode 100644 index 00000000..9d1ef23b --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/D_zjekomicyr.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + З-10 + com.fontlab.metricsRight + Ц-5 + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/D_zwe-cy.glif b/sources/FixelText-Regular.ufo/glyphs/D_zwe-cy.glif new file mode 100644 index 00000000..fcc6821f --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/D_zwe-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + S + com.fontlab.metricsRight + S + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/D_zze-cy.glif b/sources/FixelText-Regular.ufo/glyphs/D_zze-cy.glif new file mode 100644 index 00000000..176cec53 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/D_zze-cy.glif @@ -0,0 +1,84 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Д + com.fontlab.metricsRight + Д-20 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/D_zzhecyr.glif b/sources/FixelText-Regular.ufo/glyphs/D_zzhecyr.glif new file mode 100644 index 00000000..93bf16ec --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/D_zzhecyr.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Д + com.fontlab.metricsRight + Ж + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/E_-cy.accented.glif b/sources/FixelText-Regular.ufo/glyphs/E_-cy.accented.glif new file mode 100644 index 00000000..ed5dd16c --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/E_-cy.accented.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+acute.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/E_-cy.glif b/sources/FixelText-Regular.ufo/glyphs/E_-cy.glif new file mode 100644 index 00000000..dec5166e --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/E_-cy.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + C + com.fontlab.metricsRight + C + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/E_.glif b/sources/FixelText-Regular.ufo/glyphs/E_.glif new file mode 100644 index 00000000..dd75b542 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/E_.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + com.fontlab.metricsRight + F+10 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/E_acute.glif b/sources/FixelText-Regular.ufo/glyphs/E_acute.glif new file mode 100644 index 00000000..a0de54db --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/E_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+acute.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/E_breve.glif b/sources/FixelText-Regular.ufo/glyphs/E_breve.glif new file mode 100644 index 00000000..6505965a --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/E_breve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+breve.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/E_caron.glif b/sources/FixelText-Regular.ufo/glyphs/E_caron.glif new file mode 100644 index 00000000..74c776f4 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/E_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+caron.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/E_circumflex.glif b/sources/FixelText-Regular.ufo/glyphs/E_circumflex.glif new file mode 100644 index 00000000..8fb71278 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/E_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+circumflex.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/E_dieresis.glif b/sources/FixelText-Regular.ufo/glyphs/E_dieresis.glif new file mode 100644 index 00000000..a92c5a0a --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/E_dieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+dieresiscase.alt + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/E_dotaccent.glif b/sources/FixelText-Regular.ufo/glyphs/E_dotaccent.glif new file mode 100644 index 00000000..acd49496 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/E_dotaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+dotaccent.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/E_f-cy.B_G_R_.glif b/sources/FixelText-Regular.ufo/glyphs/E_f-cy.B_G_R_.glif new file mode 100644 index 00000000..f4ca9c98 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/E_f-cy.B_G_R_.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/E_f-cy.glif b/sources/FixelText-Regular.ufo/glyphs/E_f-cy.glif new file mode 100644 index 00000000..14b3fe1f --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/E_f-cy.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/E_grave.glif b/sources/FixelText-Regular.ufo/glyphs/E_grave.glif new file mode 100644 index 00000000..523bf42c --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/E_grave.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+grave.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/E_iotifiedcyr.glif b/sources/FixelText-Regular.ufo/glyphs/E_iotifiedcyr.glif new file mode 100644 index 00000000..cc696569 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/E_iotifiedcyr.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + C + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/E_l-cy.B_G_R_.glif b/sources/FixelText-Regular.ufo/glyphs/E_l-cy.B_G_R_.glif new file mode 100644 index 00000000..2e42d096 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/E_l-cy.B_G_R_.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + A + com.fontlab.metricsRight + l() + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/E_l-cy.glif b/sources/FixelText-Regular.ufo/glyphs/E_l-cy.glif new file mode 100644 index 00000000..3342f3f3 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/E_l-cy.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/E_lS_oft-cy.glif b/sources/FixelText-Regular.ufo/glyphs/E_lS_oft-cy.glif new file mode 100644 index 00000000..178aa171 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/E_lS_oft-cy.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/E_lhookcyr.glif b/sources/FixelText-Regular.ufo/glyphs/E_lhookcyr.glif new file mode 100644 index 00000000..00883aae --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/E_lhookcyr.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Л + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/E_lmiddlehookcyr.glif b/sources/FixelText-Regular.ufo/glyphs/E_lmiddlehookcyr.glif new file mode 100644 index 00000000..8c784da7 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/E_lmiddlehookcyr.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Shhacyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/E_lsharptailcyr.glif b/sources/FixelText-Regular.ufo/glyphs/E_lsharptailcyr.glif new file mode 100644 index 00000000..3bfc509e --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/E_lsharptailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Ensharptailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/E_lsmallcyr.glif b/sources/FixelText-Regular.ufo/glyphs/E_lsmallcyr.glif new file mode 100644 index 00000000..f32fb9b2 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/E_lsmallcyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + el-cy.BGR + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/E_ltailcyr.glif b/sources/FixelText-Regular.ufo/glyphs/E_ltailcyr.glif new file mode 100644 index 00000000..b0dcc07b --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/E_ltailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/E_m-cy.glif b/sources/FixelText-Regular.ufo/glyphs/E_m-cy.glif new file mode 100644 index 00000000..f49d5fc8 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/E_m-cy.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + M + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/E_m-cy.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/E_m-cy.ss01.glif new file mode 100644 index 00000000..342b3be5 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/E_m-cy.ss01.glif @@ -0,0 +1,13 @@ + + + + + + + + + com.fontlab.recipe + M + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/E_mS_oft-cy.glif b/sources/FixelText-Regular.ufo/glyphs/E_mS_oft-cy.glif new file mode 100644 index 00000000..0c0ab772 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/E_mS_oft-cy.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + M + com.fontlab.metricsRight + Ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/E_macron.glif b/sources/FixelText-Regular.ufo/glyphs/E_macron.glif new file mode 100644 index 00000000..f0dba449 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/E_macron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+macron.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/E_msharptailcyr.glif b/sources/FixelText-Regular.ufo/glyphs/E_msharptailcyr.glif new file mode 100644 index 00000000..a4c9c0b0 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/E_msharptailcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Н + com.fontlab.metricsRight + Ensharptailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/E_n-cy.glif b/sources/FixelText-Regular.ufo/glyphs/E_n-cy.glif new file mode 100644 index 00000000..eb9fa83f --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/E_n-cy.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + H + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/E_ng.glif b/sources/FixelText-Regular.ufo/glyphs/E_ng.glif new file mode 100644 index 00000000..dd980303 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/E_ng.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + N + com.fontlab.metricsRight + l() + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/E_ng.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/E_ng.ss01.glif new file mode 100644 index 00000000..a02ac8e7 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/E_ng.ss01.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + N.ss01 + com.fontlab.metricsRight + J.ss01 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/E_ngecyr.glif b/sources/FixelText-Regular.ufo/glyphs/E_ngecyr.glif new file mode 100644 index 00000000..210c4b2c --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/E_ngecyr.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/E_nhookcyr.glif b/sources/FixelText-Regular.ufo/glyphs/E_nhookcyr.glif new file mode 100644 index 00000000..8b932c38 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/E_nhookcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/E_nhookleftcyr.glif b/sources/FixelText-Regular.ufo/glyphs/E_nhookleftcyr.glif new file mode 100644 index 00000000..24c0ae97 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/E_nhookleftcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + r()-159 + com.fontlab.metricsRight + H + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/E_nmiddlehookcyr.glif b/sources/FixelText-Regular.ufo/glyphs/E_nmiddlehookcyr.glif new file mode 100644 index 00000000..43d9643a --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/E_nmiddlehookcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Shhacyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/E_nsharptailcyr.glif b/sources/FixelText-Regular.ufo/glyphs/E_nsharptailcyr.glif new file mode 100644 index 00000000..7c2c126c --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/E_nsharptailcyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Н + com.fontlab.metricsRight + Д + com.fontlab.recipe + Entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/E_ntailcyr.glif b/sources/FixelText-Regular.ufo/glyphs/E_ntailcyr.glif new file mode 100644 index 00000000..d3d4a250 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/E_ntailcyr.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Ц + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/E_ogonek.glif b/sources/FixelText-Regular.ufo/glyphs/E_ogonek.glif new file mode 100644 index 00000000..cdbe24d8 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/E_ogonek.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+ogonek + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/E_r-cy.glif b/sources/FixelText-Regular.ufo/glyphs/E_r-cy.glif new file mode 100644 index 00000000..c5579ecc --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/E_r-cy.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + P + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/E_reversed-cy.accented.glif b/sources/FixelText-Regular.ufo/glyphs/E_reversed-cy.accented.glif new file mode 100644 index 00000000..2b9e2a50 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/E_reversed-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Э+acute.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/E_reversed-cy.glif b/sources/FixelText-Regular.ufo/glyphs/E_reversed-cy.glif new file mode 100644 index 00000000..927b75d9 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/E_reversed-cy.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |C + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/E_reverseddieresiscyr.glif b/sources/FixelText-Regular.ufo/glyphs/E_reverseddieresiscyr.glif new file mode 100644 index 00000000..0c040d99 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/E_reverseddieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ereversed-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/E_rtickcyr.glif b/sources/FixelText-Regular.ufo/glyphs/E_rtickcyr.glif new file mode 100644 index 00000000..92ca3bed --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/E_rtickcyr.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + P + com.fontlab.metricsRight + P + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/E_s-cy.glif b/sources/FixelText-Regular.ufo/glyphs/E_s-cy.glif new file mode 100644 index 00000000..5c4c0d65 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/E_s-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/E_stailcyr.B_S_H_.glif b/sources/FixelText-Regular.ufo/glyphs/E_stailcyr.B_S_H_.glif new file mode 100644 index 00000000..12313896 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/E_stailcyr.B_S_H_.glif @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + C + com.fontlab.metricsRight + C + com.fontlab.recipe + C + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/E_stailcyr.C_H_U_.glif b/sources/FixelText-Regular.ufo/glyphs/E_stailcyr.C_H_U_.glif new file mode 100644 index 00000000..c9cf528e --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/E_stailcyr.C_H_U_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+cedilla.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/E_stailcyr.glif b/sources/FixelText-Regular.ufo/glyphs/E_stailcyr.glif new file mode 100644 index 00000000..bc9705a6 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/E_stailcyr.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + С + com.fontlab.metricsRight + С + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/E_th.glif b/sources/FixelText-Regular.ufo/glyphs/E_th.glif new file mode 100644 index 00000000..060b8cc1 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/E_th.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + D + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/F_.glif b/sources/FixelText-Regular.ufo/glyphs/F_.glif new file mode 100644 index 00000000..5ba619d5 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/F_.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/F_itacyr.glif b/sources/FixelText-Regular.ufo/glyphs/F_itacyr.glif new file mode 100644 index 00000000..550c1996 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/F_itacyr.glif @@ -0,0 +1,78 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + com.fontlab.recipe + Obarcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/G_.glif b/sources/FixelText-Regular.ufo/glyphs/G_.glif new file mode 100644 index 00000000..fc796bc6 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/G_.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O+18 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/G_.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/G_.ss01.glif new file mode 100644 index 00000000..80742759 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/G_.ss01.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O+10 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/G_acute.glif b/sources/FixelText-Regular.ufo/glyphs/G_acute.glif new file mode 100644 index 00000000..9a796a92 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/G_acute.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + G+acute.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/G_acute.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/G_acute.ss01.glif new file mode 100644 index 00000000..b9dac517 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/G_acute.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G.ss01+acute.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/G_breve.glif b/sources/FixelText-Regular.ufo/glyphs/G_breve.glif new file mode 100644 index 00000000..c5c57b99 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/G_breve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G+breve.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/G_breve.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/G_breve.ss01.glif new file mode 100644 index 00000000..f6c98ab6 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/G_breve.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G.ss01+breve.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/G_circumflex.glif b/sources/FixelText-Regular.ufo/glyphs/G_circumflex.glif new file mode 100644 index 00000000..d6aeb062 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/G_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G+circumflex.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/G_circumflex.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/G_circumflex.ss01.glif new file mode 100644 index 00000000..aa32bf96 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/G_circumflex.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G.ss01+circumflex.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/G_commaaccent.glif b/sources/FixelText-Regular.ufo/glyphs/G_commaaccent.glif new file mode 100644 index 00000000..8ff2f1c9 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/G_commaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G+commaaccentcomb + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/G_commaaccent.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/G_commaaccent.ss01.glif new file mode 100644 index 00000000..81c4baf7 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/G_commaaccent.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G.ss01+commaaccentcomb + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/G_dotaccent.glif b/sources/FixelText-Regular.ufo/glyphs/G_dotaccent.glif new file mode 100644 index 00000000..a5a03d11 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/G_dotaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G+dotaccent.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/G_dotaccent.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/G_dotaccent.ss01.glif new file mode 100644 index 00000000..ca8bc7b0 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/G_dotaccent.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G.ss01+dotaccent.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/G_e-cy.glif b/sources/FixelText-Regular.ufo/glyphs/G_e-cy.glif new file mode 100644 index 00000000..8ce713ef --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/G_e-cy.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + T + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/G_ehookcyr.glif b/sources/FixelText-Regular.ufo/glyphs/G_ehookcyr.glif new file mode 100644 index 00000000..415bab2e --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/G_ehookcyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Г + com.fontlab.metricsRight + Tshecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/G_ehookstrokecyr.glif b/sources/FixelText-Regular.ufo/glyphs/G_ehookstrokecyr.glif new file mode 100644 index 00000000..b5292757 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/G_ehookstrokecyr.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Gestrokecyr + com.fontlab.metricsRight + Gestrokecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/G_ermandbls.glif b/sources/FixelText-Regular.ufo/glyphs/G_ermandbls.glif new file mode 100644 index 00000000..a63188c9 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/G_ermandbls.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + U + com.fontlab.metricsRight + B-5 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/G_estrokecyr.B_S_H_.glif b/sources/FixelText-Regular.ufo/glyphs/G_estrokecyr.B_S_H_.glif new file mode 100644 index 00000000..238011d1 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/G_estrokecyr.B_S_H_.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + F + com.fontlab.metricsRight + Gestrokecyr + com.fontlab.recipe + Gestrokecyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/G_estrokecyr.glif b/sources/FixelText-Regular.ufo/glyphs/G_estrokecyr.glif new file mode 100644 index 00000000..459e6e27 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/G_estrokecyr.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + Г + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/G_etailcyr.glif b/sources/FixelText-Regular.ufo/glyphs/G_etailcyr.glif new file mode 100644 index 00000000..1748b52b --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/G_etailcyr.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Г + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/G_heupturn-cy.glif b/sources/FixelText-Regular.ufo/glyphs/G_heupturn-cy.glif new file mode 100644 index 00000000..0ae103f9 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/G_heupturn-cy.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Г + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/G_jecyr.glif b/sources/FixelText-Regular.ufo/glyphs/G_jecyr.glif new file mode 100644 index 00000000..466f6692 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/G_jecyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ge-cy+acute.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/H_.glif b/sources/FixelText-Regular.ufo/glyphs/H_.glif new file mode 100644 index 00000000..5865abcb --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/H_.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + com.fontlab.metricsRight + I + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/H_a-cy.glif b/sources/FixelText-Regular.ufo/glyphs/H_a-cy.glif new file mode 100644 index 00000000..6d30af9f --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/H_a-cy.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + X + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/H_a-cy.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/H_a-cy.ss01.glif new file mode 100644 index 00000000..5843c6f4 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/H_a-cy.ss01.glif @@ -0,0 +1,14 @@ + + + + + + + + + + com.fontlab.recipe + X + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/H_aabkhcyr.glif b/sources/FixelText-Regular.ufo/glyphs/H_aabkhcyr.glif new file mode 100644 index 00000000..4064905f --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/H_aabkhcyr.glif @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/H_ahookcyr.glif b/sources/FixelText-Regular.ufo/glyphs/H_ahookcyr.glif new file mode 100644 index 00000000..ed3ad257 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/H_ahookcyr.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + X + com.fontlab.metricsRight + X + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/H_ardsign-cy.glif b/sources/FixelText-Regular.ufo/glyphs/H_ardsign-cy.glif new file mode 100644 index 00000000..eeb5c2d7 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/H_ardsign-cy.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + Ь + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/H_astrokecyr.glif b/sources/FixelText-Regular.ufo/glyphs/H_astrokecyr.glif new file mode 100644 index 00000000..f977dc8b --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/H_astrokecyr.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + X + com.fontlab.metricsRight + X + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/H_bar.glif b/sources/FixelText-Regular.ufo/glyphs/H_bar.glif new file mode 100644 index 00000000..f7118098 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/H_bar.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + r() + com.fontlab.metricsRight + H + com.schriftgestaltung.Glyphs.rightMetricsKey + H + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/H_circumflex.glif b/sources/FixelText-Regular.ufo/glyphs/H_circumflex.glif new file mode 100644 index 00000000..bc65c0b6 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/H_circumflex.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + H+circumflex.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/H_we-cy.glif b/sources/FixelText-Regular.ufo/glyphs/H_we-cy.glif new file mode 100644 index 00000000..bb3332bf --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/H_we-cy.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Iota-cy + com.fontlab.metricsRight + Tshecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/I_-cy.glif b/sources/FixelText-Regular.ufo/glyphs/I_-cy.glif new file mode 100644 index 00000000..0974f905 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/I_-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/I_.glif b/sources/FixelText-Regular.ufo/glyphs/I_.glif new file mode 100644 index 00000000..cf451ed6 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/I_.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/I_J_.glif b/sources/FixelText-Regular.ufo/glyphs/I_J_.glif new file mode 100644 index 00000000..590acf5f --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/I_J_.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + I_J + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/I_a-cy.accented.glif b/sources/FixelText-Regular.ufo/glyphs/I_a-cy.accented.glif new file mode 100644 index 00000000..49c95092 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/I_a-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Я+acute.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/I_a-cy.glif b/sources/FixelText-Regular.ufo/glyphs/I_a-cy.glif new file mode 100644 index 00000000..60c39a71 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/I_a-cy.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |R+10 + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/I_a-cy.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/I_a-cy.ss01.glif new file mode 100644 index 00000000..88068f73 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/I_a-cy.ss01.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/I_acute.glif b/sources/FixelText-Regular.ufo/glyphs/I_acute.glif new file mode 100644 index 00000000..6d12d707 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/I_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+acute.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/I_breve.glif b/sources/FixelText-Regular.ufo/glyphs/I_breve.glif new file mode 100644 index 00000000..70eff57b --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/I_breve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+breve.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/I_circumflex.glif b/sources/FixelText-Regular.ufo/glyphs/I_circumflex.glif new file mode 100644 index 00000000..c98c7763 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/I_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+circumflex.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/I_dieresis.glif b/sources/FixelText-Regular.ufo/glyphs/I_dieresis.glif new file mode 100644 index 00000000..4ec65d27 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/I_dieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+dieresiscase.alt + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/I_dieresiscyr.glif b/sources/FixelText-Regular.ufo/glyphs/I_dieresiscyr.glif new file mode 100644 index 00000000..02aad8f6 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/I_dieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ii-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/I_dotaccent.glif b/sources/FixelText-Regular.ufo/glyphs/I_dotaccent.glif new file mode 100644 index 00000000..e9f1d729 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/I_dotaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+dotaccent.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/I_e-cy.glif b/sources/FixelText-Regular.ufo/glyphs/I_e-cy.glif new file mode 100644 index 00000000..9f768326 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/I_e-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/I_ebrevecyr.glif b/sources/FixelText-Regular.ufo/glyphs/I_ebrevecyr.glif new file mode 100644 index 00000000..f85350ad --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/I_ebrevecyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+breve.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/I_egravecyr.glif b/sources/FixelText-Regular.ufo/glyphs/I_egravecyr.glif new file mode 100644 index 00000000..1a45e773 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/I_egravecyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+grave.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/I_grave.glif b/sources/FixelText-Regular.ufo/glyphs/I_grave.glif new file mode 100644 index 00000000..5e8ac6de --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/I_grave.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+grave.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/I_gravecyr.glif b/sources/FixelText-Regular.ufo/glyphs/I_gravecyr.glif new file mode 100644 index 00000000..a87f1d42 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/I_gravecyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ii-cy+grave.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/I_i-cy.accented.glif b/sources/FixelText-Regular.ufo/glyphs/I_i-cy.accented.glif new file mode 100644 index 00000000..1e8b9ce1 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/I_i-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + И+acute.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/I_i-cy.glif b/sources/FixelText-Regular.ufo/glyphs/I_i-cy.glif new file mode 100644 index 00000000..126544ab --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/I_i-cy.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/I_ishort-cy.glif b/sources/FixelText-Regular.ufo/glyphs/I_ishort-cy.glif new file mode 100644 index 00000000..df6ff2c1 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/I_ishort-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + uni0418+breve.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/I_macron.glif b/sources/FixelText-Regular.ufo/glyphs/I_macron.glif new file mode 100644 index 00000000..a0bf6a8d --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/I_macron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+macron.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/I_macroncyr.glif b/sources/FixelText-Regular.ufo/glyphs/I_macroncyr.glif new file mode 100644 index 00000000..3b13577a --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/I_macroncyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ii-cy+macron.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/I_o-cy.accented.glif b/sources/FixelText-Regular.ufo/glyphs/I_o-cy.accented.glif new file mode 100644 index 00000000..94ed45e9 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/I_o-cy.accented.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + com.fontlab.recipe + E+dieresis.case+acute.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/I_o-cy.glif b/sources/FixelText-Regular.ufo/glyphs/I_o-cy.glif new file mode 100644 index 00000000..7f36f4c0 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/I_o-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Edieresis + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/I_ogonek.glif b/sources/FixelText-Regular.ufo/glyphs/I_ogonek.glif new file mode 100644 index 00000000..040c9647 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/I_ogonek.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+ogonek + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/I_ota-cy.glif b/sources/FixelText-Regular.ufo/glyphs/I_ota-cy.glif new file mode 100644 index 00000000..6fbf7b5c --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/I_ota-cy.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |J + com.fontlab.metricsRight + |J + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/I_otifiedA_-cy.glif b/sources/FixelText-Regular.ufo/glyphs/I_otifiedA_-cy.glif new file mode 100644 index 00000000..c2ea13a9 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/I_otifiedA_-cy.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + com.fontlab.metricsRight + A + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/I_shortsharptailcyr.glif b/sources/FixelText-Regular.ufo/glyphs/I_shortsharptailcyr.glif new file mode 100644 index 00000000..32485e04 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/I_shortsharptailcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Й + com.fontlab.metricsRight + Ensharptailcyr + com.fontlab.recipe + Й + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/I_tilde.glif b/sources/FixelText-Regular.ufo/glyphs/I_tilde.glif new file mode 100644 index 00000000..b9c2720d --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/I_tilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+tilde.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/I_u-cy.accented.glif b/sources/FixelText-Regular.ufo/glyphs/I_u-cy.accented.glif new file mode 100644 index 00000000..19cdc7c8 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/I_u-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ю+acute.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/I_u-cy.glif b/sources/FixelText-Regular.ufo/glyphs/I_u-cy.glif new file mode 100644 index 00000000..12977c14 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/I_u-cy.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/I_zhitsacyr.glif b/sources/FixelText-Regular.ufo/glyphs/I_zhitsacyr.glif new file mode 100644 index 00000000..19160d7a --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/I_zhitsacyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + V + com.fontlab.metricsRight + + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/I_zhitsagravedblcyr.glif b/sources/FixelText-Regular.ufo/glyphs/I_zhitsagravedblcyr.glif new file mode 100644 index 00000000..7e8c55b2 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/I_zhitsagravedblcyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + com.fontlab.metricsLeft + Izhitsacyr + com.fontlab.metricsRight + Izhitsacyr + com.fontlab.recipe + Izhitsacyr+hungarumlaut.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/J_.glif b/sources/FixelText-Regular.ufo/glyphs/J_.glif new file mode 100644 index 00000000..bb25fda9 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/J_.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + U + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/J_.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/J_.ss01.glif new file mode 100644 index 00000000..8b0dff12 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/J_.ss01.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + U + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/J_circumflex.glif b/sources/FixelText-Regular.ufo/glyphs/J_circumflex.glif new file mode 100644 index 00000000..44f8be0f --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/J_circumflex.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + J+circumflex.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/J_circumflex.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/J_circumflex.ss01.glif new file mode 100644 index 00000000..09263ed1 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/J_circumflex.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + J.ss01+circumflex.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/J_ecyr.glif b/sources/FixelText-Regular.ufo/glyphs/J_ecyr.glif new file mode 100644 index 00000000..8034b482 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/J_ecyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsLeft + J + com.fontlab.metricsRight + J + com.fontlab.recipe + J + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/K_.glif b/sources/FixelText-Regular.ufo/glyphs/K_.glif new file mode 100644 index 00000000..c2da1bc9 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/K_.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/K_.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/K_.ss01.glif new file mode 100644 index 00000000..2ce4ed08 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/K_.ss01.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/K_a-cy.glif b/sources/FixelText-Regular.ufo/glyphs/K_a-cy.glif new file mode 100644 index 00000000..07f4a0d0 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/K_a-cy.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.recipe + K + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/K_a-cy.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/K_a-cy.ss01.glif new file mode 100644 index 00000000..2ead4d3e --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/K_a-cy.ss01.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.recipe + K + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/K_aaleutcyr.glif b/sources/FixelText-Regular.ufo/glyphs/K_aaleutcyr.glif new file mode 100644 index 00000000..7092dd35 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/K_aaleutcyr.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + K + com.fontlab.metricsRight + K + com.fontlab.recipe + K + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/K_abashkcyr.glif b/sources/FixelText-Regular.ufo/glyphs/K_abashkcyr.glif new file mode 100644 index 00000000..f8c7ad90 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/K_abashkcyr.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Hardsign-cy + com.fontlab.metricsRight + K + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/K_ahookcyr.glif b/sources/FixelText-Regular.ufo/glyphs/K_ahookcyr.glif new file mode 100644 index 00000000..0684928e --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/K_ahookcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + K + com.fontlab.metricsRight + Djecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/K_astrokecyr.glif b/sources/FixelText-Regular.ufo/glyphs/K_astrokecyr.glif new file mode 100644 index 00000000..5e315087 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/K_astrokecyr.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Yatcyr + com.fontlab.metricsRight + K + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/K_atailcyr.glif b/sources/FixelText-Regular.ufo/glyphs/K_atailcyr.glif new file mode 100644 index 00000000..16822523 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/K_atailcyr.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + К-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/K_averticalstrokecyr.glif b/sources/FixelText-Regular.ufo/glyphs/K_averticalstrokecyr.glif new file mode 100644 index 00000000..710706ad --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/K_averticalstrokecyr.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + K + com.fontlab.metricsRight + Ж + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/K_commaaccent.glif b/sources/FixelText-Regular.ufo/glyphs/K_commaaccent.glif new file mode 100644 index 00000000..6a06c0c2 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/K_commaaccent.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + K+commaaccentcomb + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/K_commaaccent.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/K_commaaccent.ss01.glif new file mode 100644 index 00000000..34113322 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/K_commaaccent.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + K.ss01+commaaccentcomb + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/K_jecyr.glif b/sources/FixelText-Regular.ufo/glyphs/K_jecyr.glif new file mode 100644 index 00000000..485654aa --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/K_jecyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ka-cy+acute.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/K_oppacyr.glif b/sources/FixelText-Regular.ufo/glyphs/K_oppacyr.glif new file mode 100644 index 00000000..0cbc2dbe --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/K_oppacyr.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + C-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/K_sicyr.glif b/sources/FixelText-Regular.ufo/glyphs/K_sicyr.glif new file mode 100644 index 00000000..d5e4d6e2 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/K_sicyr.glif @@ -0,0 +1,98 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + З-10 + com.fontlab.metricsRight + З + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/L_.glif b/sources/FixelText-Regular.ufo/glyphs/L_.glif new file mode 100644 index 00000000..f3569c11 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/L_.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/L_acute.glif b/sources/FixelText-Regular.ufo/glyphs/L_acute.glif new file mode 100644 index 00000000..b9f08f3a --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/L_acute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + L+acute.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/L_caron.glif b/sources/FixelText-Regular.ufo/glyphs/L_caron.glif new file mode 100644 index 00000000..50813d19 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/L_caron.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + com.fontlab.recipe + L+caron.salt + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/L_commaaccent.glif b/sources/FixelText-Regular.ufo/glyphs/L_commaaccent.glif new file mode 100644 index 00000000..29a6369a --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/L_commaaccent.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + L+commaaccentcomb + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/L_dot.glif b/sources/FixelText-Regular.ufo/glyphs/L_dot.glif new file mode 100644 index 00000000..674cd9b5 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/L_dot.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + com.fontlab.metricsRight + L + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/L_hacyr.glif b/sources/FixelText-Regular.ufo/glyphs/L_hacyr.glif new file mode 100644 index 00000000..85faefd0 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/L_hacyr.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + X + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/L_jecyr.glif b/sources/FixelText-Regular.ufo/glyphs/L_jecyr.glif new file mode 100644 index 00000000..3bd37cf3 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/L_jecyr.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Ь + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/L_jekomicyr.glif b/sources/FixelText-Regular.ufo/glyphs/L_jekomicyr.glif new file mode 100644 index 00000000..3baa45d1 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/L_jekomicyr.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Njekomicyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/L_slash.glif b/sources/FixelText-Regular.ufo/glyphs/L_slash.glif new file mode 100644 index 00000000..f42bb0e8 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/L_slash.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + L-80 + com.fontlab.metricsRight + L + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/M_.glif b/sources/FixelText-Regular.ufo/glyphs/M_.glif new file mode 100644 index 00000000..0a935f78 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/M_.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/M_.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/M_.ss01.glif new file mode 100644 index 00000000..ed97df59 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/M_.ss01.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H-25 + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/N_.glif b/sources/FixelText-Regular.ufo/glyphs/N_.glif new file mode 100644 index 00000000..a88312bd --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/N_.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/N_.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/N_.ss01.glif new file mode 100644 index 00000000..9744562e --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/N_.ss01.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H-10 + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/N_U_L_L_.glif b/sources/FixelText-Regular.ufo/glyphs/N_U_L_L_.glif new file mode 100644 index 00000000..1ad177ae --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/N_U_L_L_.glif @@ -0,0 +1,4 @@ + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/N_acute.glif b/sources/FixelText-Regular.ufo/glyphs/N_acute.glif new file mode 100644 index 00000000..7d0c339a --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/N_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N+acute.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/N_acute.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/N_acute.ss01.glif new file mode 100644 index 00000000..e755d36e --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/N_acute.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N.ss01+acute.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/N_caron.glif b/sources/FixelText-Regular.ufo/glyphs/N_caron.glif new file mode 100644 index 00000000..18171d14 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/N_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N+caron.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/N_caron.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/N_caron.ss01.glif new file mode 100644 index 00000000..7631677f --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/N_caron.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N.ss01+caron.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/N_commaaccent.glif b/sources/FixelText-Regular.ufo/glyphs/N_commaaccent.glif new file mode 100644 index 00000000..2a78fc06 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/N_commaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N+commaaccentcomb + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/N_commaaccent.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/N_commaaccent.ss01.glif new file mode 100644 index 00000000..9f8b40cc --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/N_commaaccent.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N.ss01+commaaccentcomb + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/N_jecyr.glif b/sources/FixelText-Regular.ufo/glyphs/N_jecyr.glif new file mode 100644 index 00000000..64e41309 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/N_jecyr.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Н + com.fontlab.metricsRight + Ь + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/N_jekomicyr.glif b/sources/FixelText-Regular.ufo/glyphs/N_jekomicyr.glif new file mode 100644 index 00000000..f9a17ef1 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/N_jekomicyr.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + |u + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/N_tilde.glif b/sources/FixelText-Regular.ufo/glyphs/N_tilde.glif new file mode 100644 index 00000000..e50760ae --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/N_tilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N+tilde.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/N_tilde.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/N_tilde.ss01.glif new file mode 100644 index 00000000..31833b68 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/N_tilde.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N.ss01+tilde.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/O_-cy.accented.glif b/sources/FixelText-Regular.ufo/glyphs/O_-cy.accented.glif new file mode 100644 index 00000000..2d3657ee --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/O_-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+acute.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/O_-cy.glif b/sources/FixelText-Regular.ufo/glyphs/O_-cy.glif new file mode 100644 index 00000000..08d23f59 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/O_-cy.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/O_.glif b/sources/FixelText-Regular.ufo/glyphs/O_.glif new file mode 100644 index 00000000..10611390 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/O_.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/O_B_inocular-cy.glif b/sources/FixelText-Regular.ufo/glyphs/O_B_inocular-cy.glif new file mode 100644 index 00000000..f0ff4560 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/O_B_inocular-cy.glif @@ -0,0 +1,81 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/O_D_oubleM_onocular-cy.glif b/sources/FixelText-Regular.ufo/glyphs/O_D_oubleM_onocular-cy.glif new file mode 100644 index 00000000..b2e4c438 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/O_D_oubleM_onocular-cy.glif @@ -0,0 +1,119 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + com.fontlab.recipe + DoubleO-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/O_E_.glif b/sources/FixelText-Regular.ufo/glyphs/O_E_.glif new file mode 100644 index 00000000..e9a69cc9 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/O_E_.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + E + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/O_M_onocular-cy.glif b/sources/FixelText-Regular.ufo/glyphs/O_M_onocular-cy.glif new file mode 100644 index 00000000..2ba20b0b --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/O_M_onocular-cy.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/O_acute.glif b/sources/FixelText-Regular.ufo/glyphs/O_acute.glif new file mode 100644 index 00000000..15f2b842 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/O_acute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+acute.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/O_barcyr.glif b/sources/FixelText-Regular.ufo/glyphs/O_barcyr.glif new file mode 100644 index 00000000..5a4b6493 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/O_barcyr.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + r() + com.fontlab.metricsRight + O + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/O_bardieresiscyr.glif b/sources/FixelText-Regular.ufo/glyphs/O_bardieresiscyr.glif new file mode 100644 index 00000000..5806fa98 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/O_bardieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Obarcyr+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/O_breve.glif b/sources/FixelText-Regular.ufo/glyphs/O_breve.glif new file mode 100644 index 00000000..a98e7e4b --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/O_breve.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+breve.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/O_circumflex.glif b/sources/FixelText-Regular.ufo/glyphs/O_circumflex.glif new file mode 100644 index 00000000..b2345606 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/O_circumflex.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+circumflex.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/O_dieresis.glif b/sources/FixelText-Regular.ufo/glyphs/O_dieresis.glif new file mode 100644 index 00000000..c1da81c9 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/O_dieresis.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+dieresis.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/O_dieresiscyr.glif b/sources/FixelText-Regular.ufo/glyphs/O_dieresiscyr.glif new file mode 100644 index 00000000..657350bb --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/O_dieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/O_grave.glif b/sources/FixelText-Regular.ufo/glyphs/O_grave.glif new file mode 100644 index 00000000..c7dba82a --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/O_grave.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+grave.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/O_hungarumlaut.glif b/sources/FixelText-Regular.ufo/glyphs/O_hungarumlaut.glif new file mode 100644 index 00000000..a45f6c3f --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/O_hungarumlaut.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+hungarumlaut.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/O_macron.glif b/sources/FixelText-Regular.ufo/glyphs/O_macron.glif new file mode 100644 index 00000000..546c3742 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/O_macron.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+macron.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/O_mega.glif b/sources/FixelText-Regular.ufo/glyphs/O_mega.glif new file mode 100644 index 00000000..380fc153 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/O_mega.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O+10 + com.fontlab.metricsRight + O+10 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/O_megaB_road-cy.glif b/sources/FixelText-Regular.ufo/glyphs/O_megaB_road-cy.glif new file mode 100644 index 00000000..7e6cd2f2 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/O_megaB_road-cy.glif @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O+10 + com.fontlab.metricsRight + O+10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/O_megacyr.glif b/sources/FixelText-Regular.ufo/glyphs/O_megacyr.glif new file mode 100644 index 00000000..e76e3a15 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/O_megacyr.glif @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O+10 + com.fontlab.metricsRight + O+10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/O_megaroundcyr.glif b/sources/FixelText-Regular.ufo/glyphs/O_megaroundcyr.glif new file mode 100644 index 00000000..abe2fef0 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/O_megaroundcyr.glif @@ -0,0 +1,81 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/O_megatitlocyr.glif b/sources/FixelText-Regular.ufo/glyphs/O_megatitlocyr.glif new file mode 100644 index 00000000..4c237878 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/O_megatitlocyr.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O+10 + com.fontlab.metricsRight + O+10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/O_slash.glif b/sources/FixelText-Regular.ufo/glyphs/O_slash.glif new file mode 100644 index 00000000..957ed3af --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/O_slash.glif @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/O_slashacute.glif b/sources/FixelText-Regular.ufo/glyphs/O_slashacute.glif new file mode 100644 index 00000000..38a3d60a --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/O_slashacute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Oslash+acute.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/O_tcyr.glif b/sources/FixelText-Regular.ufo/glyphs/O_tcyr.glif new file mode 100644 index 00000000..a31575bf --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/O_tcyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Omegacyr+uni2DEE.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/O_tilde.glif b/sources/FixelText-Regular.ufo/glyphs/O_tilde.glif new file mode 100644 index 00000000..7ae5689b --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/O_tilde.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+tilde.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/P_.glif b/sources/FixelText-Regular.ufo/glyphs/P_.glif new file mode 100644 index 00000000..3a49e36b --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/P_.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/P_alochkacyr.glif b/sources/FixelText-Regular.ufo/glyphs/P_alochkacyr.glif new file mode 100644 index 00000000..6d6f6285 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/P_alochkacyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/P_e-cy.glif b/sources/FixelText-Regular.ufo/glyphs/P_e-cy.glif new file mode 100644 index 00000000..490686f0 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/P_e-cy.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/P_ehookcyr.glif b/sources/FixelText-Regular.ufo/glyphs/P_ehookcyr.glif new file mode 100644 index 00000000..0d27607d --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/P_ehookcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + П + com.fontlab.metricsRight + Shhacyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/P_etailcyr.glif b/sources/FixelText-Regular.ufo/glyphs/P_etailcyr.glif new file mode 100644 index 00000000..39ad318e --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/P_etailcyr.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/P_sicyr.glif b/sources/FixelText-Regular.ufo/glyphs/P_sicyr.glif new file mode 100644 index 00000000..5c671015 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/P_sicyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + U-20 + com.fontlab.metricsRight + U-20 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/Q_.glif b/sources/FixelText-Regular.ufo/glyphs/Q_.glif new file mode 100644 index 00000000..20ca9dd1 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/Q_.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/Q_.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/Q_.ss01.glif new file mode 100644 index 00000000..f726262d --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/Q_.ss01.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/Q_acyr.glif b/sources/FixelText-Regular.ufo/glyphs/Q_acyr.glif new file mode 100644 index 00000000..93861b4d --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/Q_acyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Q + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/R_.glif b/sources/FixelText-Regular.ufo/glyphs/R_.glif new file mode 100644 index 00000000..a87c49bb --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/R_.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/R_acute.glif b/sources/FixelText-Regular.ufo/glyphs/R_acute.glif new file mode 100644 index 00000000..57283938 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/R_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + R+acute.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/R_caron.glif b/sources/FixelText-Regular.ufo/glyphs/R_caron.glif new file mode 100644 index 00000000..9ddc8871 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/R_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + R+caron.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/R_commaaccent.glif b/sources/FixelText-Regular.ufo/glyphs/R_commaaccent.glif new file mode 100644 index 00000000..9a72fd1f --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/R_commaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + R+commaaccentcomb + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/R_eversedzecyr.glif b/sources/FixelText-Regular.ufo/glyphs/R_eversedzecyr.glif new file mode 100644 index 00000000..77c2e74a --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/R_eversedzecyr.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + + com.fontlab.metricsRight + + com.fontlab.recipe + З + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/R_hacyr.glif b/sources/FixelText-Regular.ufo/glyphs/R_hacyr.glif new file mode 100644 index 00000000..52356732 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/R_hacyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + P + com.fontlab.metricsRight + X + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/S_.glif b/sources/FixelText-Regular.ufo/glyphs/S_.glif new file mode 100644 index 00000000..7a766fa9 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/S_.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/S_acute.glif b/sources/FixelText-Regular.ufo/glyphs/S_acute.glif new file mode 100644 index 00000000..3feac6e5 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/S_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + S+acute.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/S_caron.glif b/sources/FixelText-Regular.ufo/glyphs/S_caron.glif new file mode 100644 index 00000000..a951fb53 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/S_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + S+caron.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/S_cedilla.glif b/sources/FixelText-Regular.ufo/glyphs/S_cedilla.glif new file mode 100644 index 00000000..52eab61f --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/S_cedilla.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + S+cedilla + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/S_chwa.glif b/sources/FixelText-Regular.ufo/glyphs/S_chwa.glif new file mode 100644 index 00000000..668e0534 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/S_chwa.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Schwacyr + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/S_chwacyr.glif b/sources/FixelText-Regular.ufo/glyphs/S_chwacyr.glif new file mode 100644 index 00000000..126591b2 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/S_chwacyr.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O-10 + com.fontlab.metricsRight + O + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/S_chwadieresiscyr.glif b/sources/FixelText-Regular.ufo/glyphs/S_chwadieresiscyr.glif new file mode 100644 index 00000000..7f8c70d0 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/S_chwadieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Schwacyr+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/S_circumflex.glif b/sources/FixelText-Regular.ufo/glyphs/S_circumflex.glif new file mode 100644 index 00000000..efe4021b --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/S_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + S+circumflex.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/S_commaaccent.glif b/sources/FixelText-Regular.ufo/glyphs/S_commaaccent.glif new file mode 100644 index 00000000..b6ed889c --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/S_commaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + S+commaaccentcomb + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/S_emisoftcyr.glif b/sources/FixelText-Regular.ufo/glyphs/S_emisoftcyr.glif new file mode 100644 index 00000000..051dd81a --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/S_emisoftcyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Yat + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/S_ha-cy.glif b/sources/FixelText-Regular.ufo/glyphs/S_ha-cy.glif new file mode 100644 index 00000000..b097a8ec --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/S_ha-cy.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/S_hcha-cy.glif b/sources/FixelText-Regular.ufo/glyphs/S_hcha-cy.glif new file mode 100644 index 00000000..a4ae8ce2 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/S_hcha-cy.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Д + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/S_hhacyr.glif b/sources/FixelText-Regular.ufo/glyphs/S_hhacyr.glif new file mode 100644 index 00000000..77b5bf69 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/S_hhacyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.metricsLeft + Н + com.fontlab.metricsRight + Tshecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/S_hhatailcyr.glif b/sources/FixelText-Regular.ufo/glyphs/S_hhatailcyr.glif new file mode 100644 index 00000000..7ef8e7fc --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/S_hhatailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/S_hwe-cy.glif b/sources/FixelText-Regular.ufo/glyphs/S_hwe-cy.glif new file mode 100644 index 00000000..65a33dd6 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/S_hwe-cy.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Щ + com.fontlab.metricsRight + Щ-20 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/S_jekomicyr.glif b/sources/FixelText-Regular.ufo/glyphs/S_jekomicyr.glif new file mode 100644 index 00000000..86c472f5 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/S_jekomicyr.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + |Schwa + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/S_oftsign-cy.glif b/sources/FixelText-Regular.ufo/glyphs/S_oftsign-cy.glif new file mode 100644 index 00000000..8c17e584 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/S_oftsign-cy.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + P + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/T_.glif b/sources/FixelText-Regular.ufo/glyphs/T_.glif new file mode 100644 index 00000000..d623eb79 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/T_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/T_bar.glif b/sources/FixelText-Regular.ufo/glyphs/T_bar.glif new file mode 100644 index 00000000..c456f39b --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/T_bar.glif @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/T_caron.glif b/sources/FixelText-Regular.ufo/glyphs/T_caron.glif new file mode 100644 index 00000000..cbe0b283 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/T_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + T+caron.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/T_cedilla.glif b/sources/FixelText-Regular.ufo/glyphs/T_cedilla.glif new file mode 100644 index 00000000..dba4db7a --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/T_cedilla.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + T+cedilla + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/T_che-cy.glif b/sources/FixelText-Regular.ufo/glyphs/T_che-cy.glif new file mode 100644 index 00000000..293f1ce7 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/T_che-cy.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Tetsecyr-20 + com.fontlab.metricsRight + Ч + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/T_commaaccent.glif b/sources/FixelText-Regular.ufo/glyphs/T_commaaccent.glif new file mode 100644 index 00000000..48dfe859 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/T_commaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + T+commaaccentcomb + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/T_e-cy.glif b/sources/FixelText-Regular.ufo/glyphs/T_e-cy.glif new file mode 100644 index 00000000..110f47c1 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/T_e-cy.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + com.fontlab.recipe + T + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/T_eW_ithM_iddleH_ook-cy.glif b/sources/FixelText-Regular.ufo/glyphs/T_eW_ithM_iddleH_ook-cy.glif new file mode 100644 index 00000000..540d644c --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/T_eW_ithM_iddleH_ook-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Djecyr + com.fontlab.metricsRight + Gehookcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/T_etailcyr.glif b/sources/FixelText-Regular.ufo/glyphs/T_etailcyr.glif new file mode 100644 index 00000000..c8c6bb2a --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/T_etailcyr.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/T_etsecyr.glif b/sources/FixelText-Regular.ufo/glyphs/T_etsecyr.glif new file mode 100644 index 00000000..320339c5 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/T_etsecyr.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Tshecyr + com.fontlab.metricsRight + Ц + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/T_horn.glif b/sources/FixelText-Regular.ufo/glyphs/T_horn.glif new file mode 100644 index 00000000..e294c2dd --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/T_horn.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + P + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/T_jekomicyr.glif b/sources/FixelText-Regular.ufo/glyphs/T_jekomicyr.glif new file mode 100644 index 00000000..d43513e5 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/T_jekomicyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + Njekomicyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/T_se-cy.glif b/sources/FixelText-Regular.ufo/glyphs/T_se-cy.glif new file mode 100644 index 00000000..4a6347a4 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/T_se-cy.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Д + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/T_seR_eversed-cy.glif b/sources/FixelText-Regular.ufo/glyphs/T_seR_eversed-cy.glif new file mode 100644 index 00000000..464b355d --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/T_seR_eversed-cy.glif @@ -0,0 +1,20 @@ + + + + + + + + + + com.fontlab.metricsLeft + + com.fontlab.metricsRight + H + com.fontlab.recipe + Ц + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/T_shecyr.glif b/sources/FixelText-Regular.ufo/glyphs/T_shecyr.glif new file mode 100644 index 00000000..1f4dc2e8 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/T_shecyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + n + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/T_sse-cy.glif b/sources/FixelText-Regular.ufo/glyphs/T_sse-cy.glif new file mode 100644 index 00000000..e16bbdf7 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/T_sse-cy.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + T + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/T_swe-cy.glif b/sources/FixelText-Regular.ufo/glyphs/T_swe-cy.glif new file mode 100644 index 00000000..9708cccb --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/T_swe-cy.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Shwe-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/T_we-cy.glif b/sources/FixelText-Regular.ufo/glyphs/T_we-cy.glif new file mode 100644 index 00000000..f3a6e7c1 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/T_we-cy.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + T + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/U_-cy.accented.glif b/sources/FixelText-Regular.ufo/glyphs/U_-cy.accented.glif new file mode 100644 index 00000000..250a32da --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/U_-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + У+acute.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/U_-cy.glif b/sources/FixelText-Regular.ufo/glyphs/U_-cy.glif new file mode 100644 index 00000000..c7298126 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/U_-cy.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Y+10 + com.fontlab.metricsRight + Y+5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/U_-cy.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/U_-cy.ss01.glif new file mode 100644 index 00000000..2d169ba7 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/U_-cy.ss01.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/U_.glif b/sources/FixelText-Regular.ufo/glyphs/U_.glif new file mode 100644 index 00000000..33e9cfaf --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/U_.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H-10 + com.fontlab.metricsRight + H-10 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/U_acute.glif b/sources/FixelText-Regular.ufo/glyphs/U_acute.glif new file mode 100644 index 00000000..2967fd7f --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/U_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+acute.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/U_acutedblcyr.glif b/sources/FixelText-Regular.ufo/glyphs/U_acutedblcyr.glif new file mode 100644 index 00000000..68acd54e --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/U_acutedblcyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U-cy+hungarumlaut.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/U_breve.glif b/sources/FixelText-Regular.ufo/glyphs/U_breve.glif new file mode 100644 index 00000000..3395f656 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/U_breve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+breve.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/U_circumflex.glif b/sources/FixelText-Regular.ufo/glyphs/U_circumflex.glif new file mode 100644 index 00000000..76c0d8b9 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/U_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+circumflex.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/U_dieresis.glif b/sources/FixelText-Regular.ufo/glyphs/U_dieresis.glif new file mode 100644 index 00000000..d1bd4401 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/U_dieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+dieresis.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/U_dieresiscyr.glif b/sources/FixelText-Regular.ufo/glyphs/U_dieresiscyr.glif new file mode 100644 index 00000000..43adfee5 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/U_dieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/U_grave.glif b/sources/FixelText-Regular.ufo/glyphs/U_grave.glif new file mode 100644 index 00000000..d61881e0 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/U_grave.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+grave.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/U_hungarumlaut.glif b/sources/FixelText-Regular.ufo/glyphs/U_hungarumlaut.glif new file mode 100644 index 00000000..60377c84 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/U_hungarumlaut.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+hungarumlaut.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/U_kM_onograph-cy.glif b/sources/FixelText-Regular.ufo/glyphs/U_kM_onograph-cy.glif new file mode 100644 index 00000000..3a1f9979 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/U_kM_onograph-cy.glif @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/U_kcyr.glif b/sources/FixelText-Regular.ufo/glyphs/U_kcyr.glif new file mode 100644 index 00000000..50eab43e --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/U_kcyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + y + com.fontlab.recipe + О_у + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/U_macron.glif b/sources/FixelText-Regular.ufo/glyphs/U_macron.glif new file mode 100644 index 00000000..caa91caf --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/U_macron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+macron.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/U_macroncyr.glif b/sources/FixelText-Regular.ufo/glyphs/U_macroncyr.glif new file mode 100644 index 00000000..5e237449 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/U_macroncyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U-cy+macron.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/U_ogonek.glif b/sources/FixelText-Regular.ufo/glyphs/U_ogonek.glif new file mode 100644 index 00000000..34b043ad --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/U_ogonek.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + U+ogonek + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/U_ring.glif b/sources/FixelText-Regular.ufo/glyphs/U_ring.glif new file mode 100644 index 00000000..d5cf7dd7 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/U_ring.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+ring.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/U_short-cy.glif b/sources/FixelText-Regular.ufo/glyphs/U_short-cy.glif new file mode 100644 index 00000000..8c378aa9 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/U_short-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ucyr+breve.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/U_short-cy.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/U_short-cy.ss01.glif new file mode 100644 index 00000000..bdcae736 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/U_short-cy.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ucyr.ss01+breve.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/U_straightcyr.glif b/sources/FixelText-Regular.ufo/glyphs/U_straightcyr.glif new file mode 100644 index 00000000..7b778edc --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/U_straightcyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsRight + Y + com.fontlab.recipe + Y + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/U_straightstrokecyr.glif b/sources/FixelText-Regular.ufo/glyphs/U_straightstrokecyr.glif new file mode 100644 index 00000000..0f90dedf --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/U_straightstrokecyr.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/U_tilde.glif b/sources/FixelText-Regular.ufo/glyphs/U_tilde.glif new file mode 100644 index 00000000..e06414f1 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/U_tilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+tilde.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/V_.glif b/sources/FixelText-Regular.ufo/glyphs/V_.glif new file mode 100644 index 00000000..73cf0675 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/V_.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/V_.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/V_.ss01.glif new file mode 100644 index 00000000..502b1085 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/V_.ss01.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/V_e-cy.glif b/sources/FixelText-Regular.ufo/glyphs/V_e-cy.glif new file mode 100644 index 00000000..db2b681d --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/V_e-cy.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + B + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/W_.glif b/sources/FixelText-Regular.ufo/glyphs/W_.glif new file mode 100644 index 00000000..981dd775 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/W_.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/W_.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/W_.ss01.glif new file mode 100644 index 00000000..f90a9316 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/W_.ss01.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |A + com.fontlab.metricsRight + |A + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/W_acute.glif b/sources/FixelText-Regular.ufo/glyphs/W_acute.glif new file mode 100644 index 00000000..18a8477b --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/W_acute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W+acute.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/W_acute.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/W_acute.ss01.glif new file mode 100644 index 00000000..93e14588 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/W_acute.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W.ss01+acute.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/W_circumflex.glif b/sources/FixelText-Regular.ufo/glyphs/W_circumflex.glif new file mode 100644 index 00000000..5d8db7d0 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/W_circumflex.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W+circumflex.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/W_circumflex.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/W_circumflex.ss01.glif new file mode 100644 index 00000000..79b057b4 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/W_circumflex.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W.ss01+circumflex.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/W_dieresis.glif b/sources/FixelText-Regular.ufo/glyphs/W_dieresis.glif new file mode 100644 index 00000000..1d21e074 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/W_dieresis.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + W+dieresis.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/W_dieresis.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/W_dieresis.ss01.glif new file mode 100644 index 00000000..1221e898 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/W_dieresis.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W.ss01+dieresis.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/W_ecyr.glif b/sources/FixelText-Regular.ufo/glyphs/W_ecyr.glif new file mode 100644 index 00000000..b2291f4a --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/W_ecyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/W_grave.glif b/sources/FixelText-Regular.ufo/glyphs/W_grave.glif new file mode 100644 index 00000000..2ea72f7f --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/W_grave.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W+grave.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/W_grave.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/W_grave.ss01.glif new file mode 100644 index 00000000..d031bef7 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/W_grave.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W.ss01+grave.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/X_.glif b/sources/FixelText-Regular.ufo/glyphs/X_.glif new file mode 100644 index 00000000..29ce0145 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/X_.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/X_.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/X_.ss01.glif new file mode 100644 index 00000000..827e3173 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/X_.ss01.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/X_atailcyr.glif b/sources/FixelText-Regular.ufo/glyphs/X_atailcyr.glif new file mode 100644 index 00000000..23e96896 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/X_atailcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + X + com.fontlab.metricsRight + Katailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/Y_.glif b/sources/FixelText-Regular.ufo/glyphs/Y_.glif new file mode 100644 index 00000000..08883987 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/Y_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/Y_.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/Y_.ss01.glif new file mode 100644 index 00000000..f799b36e --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/Y_.ss01.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/Y_acute.glif b/sources/FixelText-Regular.ufo/glyphs/Y_acute.glif new file mode 100644 index 00000000..ec534f9c --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/Y_acute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y+acute.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/Y_acute.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/Y_acute.ss01.glif new file mode 100644 index 00000000..71e5bd46 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/Y_acute.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y.ss01+acute.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/Y_aecyr.glif b/sources/FixelText-Regular.ufo/glyphs/Y_aecyr.glif new file mode 100644 index 00000000..09c3f1a1 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/Y_aecyr.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Я + com.fontlab.metricsRight + E + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/Y_atI_otified-cy.glif b/sources/FixelText-Regular.ufo/glyphs/Y_atI_otified-cy.glif new file mode 100644 index 00000000..128b60bb --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/Y_atI_otified-cy.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + com.fontlab.metricsRight + Yatcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/Y_atcyr.glif b/sources/FixelText-Regular.ufo/glyphs/Y_atcyr.glif new file mode 100644 index 00000000..80d81e29 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/Y_atcyr.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Т + com.fontlab.metricsRight + Ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/Y_circumflex.glif b/sources/FixelText-Regular.ufo/glyphs/Y_circumflex.glif new file mode 100644 index 00000000..d849f3f7 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/Y_circumflex.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y+circumflex.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/Y_circumflex.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/Y_circumflex.ss01.glif new file mode 100644 index 00000000..37d0201c --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/Y_circumflex.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y.ss01+circumflex.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/Y_dieresis.glif b/sources/FixelText-Regular.ufo/glyphs/Y_dieresis.glif new file mode 100644 index 00000000..d36f4618 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/Y_dieresis.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y+dieresis.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/Y_dieresis.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/Y_dieresis.ss01.glif new file mode 100644 index 00000000..6a6d47fa --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/Y_dieresis.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y.ss01+dieresis.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/Y_erN_eutral-cy.glif b/sources/FixelText-Regular.ufo/glyphs/Y_erN_eutral-cy.glif new file mode 100644 index 00000000..9ae9d0ca --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/Y_erN_eutral-cy.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Hardsign-cy + com.fontlab.metricsRight + Ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/Y_eru-cy.accented.glif b/sources/FixelText-Regular.ufo/glyphs/Y_eru-cy.accented.glif new file mode 100644 index 00000000..c23eb71c --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/Y_eru-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ы+acute.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/Y_eru-cy.glif b/sources/FixelText-Regular.ufo/glyphs/Y_eru-cy.glif new file mode 100644 index 00000000..84f621a2 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/Y_eru-cy.glif @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/Y_eru-cymacron.glif b/sources/FixelText-Regular.ufo/glyphs/Y_eru-cymacron.glif new file mode 100644 index 00000000..bb06ca73 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/Y_eru-cymacron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ы+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/Y_eruB_ackY_er-cy.glif b/sources/FixelText-Regular.ufo/glyphs/Y_eruB_ackY_er-cy.glif new file mode 100644 index 00000000..1f8fecae --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/Y_eruB_ackY_er-cy.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Hardsign + com.fontlab.metricsRight + I + com.fontlab.recipe + Hardsign-cy_I + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/Y_i-cy.glif b/sources/FixelText-Regular.ufo/glyphs/Y_i-cy.glif new file mode 100644 index 00000000..5766538d --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/Y_i-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Idieresis + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/Y_longdieresiscyr.glif b/sources/FixelText-Regular.ufo/glyphs/Y_longdieresiscyr.glif new file mode 100644 index 00000000..34f2ee54 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/Y_longdieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Yeru-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/Y_n-cy.glif b/sources/FixelText-Regular.ufo/glyphs/Y_n-cy.glif new file mode 100644 index 00000000..92a1ff5b --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/Y_n-cy.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |Izhitsa + com.fontlab.metricsRight + |Izhitsa + com.fontlab.recipe + Izhitsa + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/Y_uR_eversed-cy.glif b/sources/FixelText-Regular.ufo/glyphs/Y_uR_eversed-cy.glif new file mode 100644 index 00000000..746b4b5d --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/Y_uR_eversed-cy.glif @@ -0,0 +1,20 @@ + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + H + com.fontlab.recipe + Ю + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/Y_usB_lended-cy.glif b/sources/FixelText-Regular.ufo/glyphs/Y_usB_lended-cy.glif new file mode 100644 index 00000000..a851a768 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/Y_usB_lended-cy.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Yusbigcyr + com.fontlab.metricsRight + Yusbigcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/Y_usC_losedlittle-cy.glif b/sources/FixelText-Regular.ufo/glyphs/Y_usC_losedlittle-cy.glif new file mode 100644 index 00000000..b625335d --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/Y_usC_losedlittle-cy.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + A + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/Y_usbigcyr.glif b/sources/FixelText-Regular.ufo/glyphs/Y_usbigcyr.glif new file mode 100644 index 00000000..df1683e7 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/Y_usbigcyr.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ж + com.fontlab.metricsRight + Ж + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/Y_usbigiotifiedcyr.glif b/sources/FixelText-Regular.ufo/glyphs/Y_usbigiotifiedcyr.glif new file mode 100644 index 00000000..33d0b359 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/Y_usbigiotifiedcyr.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + Ж + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/Y_usiotifiedC_losedL_ittle-cy.glif b/sources/FixelText-Regular.ufo/glyphs/Y_usiotifiedC_losedL_ittle-cy.glif new file mode 100644 index 00000000..e8812610 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/Y_usiotifiedC_losedL_ittle-cy.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + A + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/Y_uslittlecyr.glif b/sources/FixelText-Regular.ufo/glyphs/Y_uslittlecyr.glif new file mode 100644 index 00000000..ed0762cf --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/Y_uslittlecyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + А-5 + com.fontlab.metricsRight + А-5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/Y_uslittleiotifiedcyr.glif b/sources/FixelText-Regular.ufo/glyphs/Y_uslittleiotifiedcyr.glif new file mode 100644 index 00000000..b502ca6a --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/Y_uslittleiotifiedcyr.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + А-5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/Z_.glif b/sources/FixelText-Regular.ufo/glyphs/Z_.glif new file mode 100644 index 00000000..07c843bc --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/Z_.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/Z_.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/Z_.ss01.glif new file mode 100644 index 00000000..69f21fe2 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/Z_.ss01.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/Z_acute.glif b/sources/FixelText-Regular.ufo/glyphs/Z_acute.glif new file mode 100644 index 00000000..0fc543c5 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/Z_acute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Z+acute.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/Z_acute.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/Z_acute.ss01.glif new file mode 100644 index 00000000..bf7c876e --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/Z_acute.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Z.ss01+acute.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/Z_caron.glif b/sources/FixelText-Regular.ufo/glyphs/Z_caron.glif new file mode 100644 index 00000000..9848b67e --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/Z_caron.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Z+caron.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/Z_caron.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/Z_caron.ss01.glif new file mode 100644 index 00000000..3b7d9e24 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/Z_caron.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Z.ss01+caron.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/Z_dotaccent.glif b/sources/FixelText-Regular.ufo/glyphs/Z_dotaccent.glif new file mode 100644 index 00000000..c85df9ff --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/Z_dotaccent.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Z+dotaccent.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/Z_dotaccent.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/Z_dotaccent.ss01.glif new file mode 100644 index 00000000..db0ba6de --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/Z_dotaccent.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Z.ss01+dotaccent.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/Z_e-cy.glif b/sources/FixelText-Regular.ufo/glyphs/Z_e-cy.glif new file mode 100644 index 00000000..87c0f0a9 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/Z_e-cy.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |C + com.fontlab.metricsRight + B + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/Z_edieresiscyr.glif b/sources/FixelText-Regular.ufo/glyphs/Z_edieresiscyr.glif new file mode 100644 index 00000000..c6d08ed1 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/Z_edieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ze-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/Z_emlya-cy.glif b/sources/FixelText-Regular.ufo/glyphs/Z_emlya-cy.glif new file mode 100644 index 00000000..2c24e6d9 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/Z_emlya-cy.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Z-10 + com.fontlab.metricsRight + Z + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/Z_etailcyr.B_S_H_.glif b/sources/FixelText-Regular.ufo/glyphs/Z_etailcyr.B_S_H_.glif new file mode 100644 index 00000000..d32b6452 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/Z_etailcyr.B_S_H_.glif @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + З + com.fontlab.metricsRight + З + com.fontlab.recipe + Zetailcyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/Z_etailcyr.glif b/sources/FixelText-Regular.ufo/glyphs/Z_etailcyr.glif new file mode 100644 index 00000000..ef197274 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/Z_etailcyr.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + З + com.fontlab.metricsRight + З + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/Z_he-cy.glif b/sources/FixelText-Regular.ufo/glyphs/Z_he-cy.glif new file mode 100644 index 00000000..65162da2 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/Z_he-cy.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |K + com.fontlab.metricsRight + K + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/Z_he-cy.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/Z_he-cy.ss01.glif new file mode 100644 index 00000000..46cb0bea --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/Z_he-cy.ss01.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |K + com.fontlab.metricsRight + K + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/Z_hebrevecyr.glif b/sources/FixelText-Regular.ufo/glyphs/Z_hebrevecyr.glif new file mode 100644 index 00000000..24fca092 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/Z_hebrevecyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Zhe-cy+breve.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/Z_hedieresiscyr.glif b/sources/FixelText-Regular.ufo/glyphs/Z_hedieresiscyr.glif new file mode 100644 index 00000000..5660c89d --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/Z_hedieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Zhe-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/Z_hetailcyr.glif b/sources/FixelText-Regular.ufo/glyphs/Z_hetailcyr.glif new file mode 100644 index 00000000..ac7e7353 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/Z_hetailcyr.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ж + com.fontlab.metricsRight + Katailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/Z_hwe-cy.glif b/sources/FixelText-Regular.ufo/glyphs/Z_hwe-cy.glif new file mode 100644 index 00000000..9fcdc650 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/Z_hwe-cy.glif @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + З + com.fontlab.metricsRight + Ж + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/Z_jekomicyr.glif b/sources/FixelText-Regular.ufo/glyphs/Z_jekomicyr.glif new file mode 100644 index 00000000..a50e5d03 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/Z_jekomicyr.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Dzjekomicyr + com.fontlab.metricsRight + Njekomicyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/_notdef.glif b/sources/FixelText-Regular.ufo/glyphs/_notdef.glif new file mode 100644 index 00000000..7261060b --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/_notdef.glif @@ -0,0 +1,178 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + =55 + com.schriftgestaltung.Glyphs.rightMetricsKey + =55 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/_perc-circule.glif b/sources/FixelText-Regular.ufo/glyphs/_perc-circule.glif new file mode 100644 index 00000000..c8e71fcf --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/_perc-circule.glif @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.schriftgestaltung.Glyphs.Export + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/a-cy.accented.glif b/sources/FixelText-Regular.ufo/glyphs/a-cy.accented.glif new file mode 100644 index 00000000..dca5af47 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/a-cy.accented.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+acute + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/a-cy.glif b/sources/FixelText-Regular.ufo/glyphs/a-cy.glif new file mode 100644 index 00000000..38ab6c89 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/a-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/a-cy.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/a-cy.ss01.glif new file mode 100644 index 00000000..f83c2805 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/a-cy.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/a.glif b/sources/FixelText-Regular.ufo/glyphs/a.glif new file mode 100644 index 00000000..08719483 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/a.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + n-10 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/a.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/a.ss01.glif new file mode 100644 index 00000000..cbfb38af --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/a.ss01.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/aacute.glif b/sources/FixelText-Regular.ufo/glyphs/aacute.glif new file mode 100644 index 00000000..f9574188 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/aacute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+acute + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/aacute.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/aacute.ss01.glif new file mode 100644 index 00000000..8e1a4100 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/aacute.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+acute + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/abreve.glif b/sources/FixelText-Regular.ufo/glyphs/abreve.glif new file mode 100644 index 00000000..0a0bfc5b --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/abreve.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+breve + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/abreve.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/abreve.ss01.glif new file mode 100644 index 00000000..9f560a2e --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/abreve.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+breve + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/abrevecyr.glif b/sources/FixelText-Regular.ufo/glyphs/abrevecyr.glif new file mode 100644 index 00000000..c4da07dc --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/abrevecyr.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+breve + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/acaron.glif b/sources/FixelText-Regular.ufo/glyphs/acaron.glif new file mode 100644 index 00000000..58eba85f --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/acaron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+caron + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/acircumflex.glif b/sources/FixelText-Regular.ufo/glyphs/acircumflex.glif new file mode 100644 index 00000000..85fe8164 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/acircumflex.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+circumflex + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/acircumflex.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/acircumflex.ss01.glif new file mode 100644 index 00000000..bf648930 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/acircumflex.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+circumflex + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/acute.case.glif b/sources/FixelText-Regular.ufo/glyphs/acute.case.glif new file mode 100644 index 00000000..5b3e69df --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/acute.case.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/acute.glif b/sources/FixelText-Regular.ufo/glyphs/acute.glif new file mode 100644 index 00000000..66d76c90 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/acute.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/adieresis.glif b/sources/FixelText-Regular.ufo/glyphs/adieresis.glif new file mode 100644 index 00000000..e9273fe3 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/adieresis.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+dieresis + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/adieresis.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/adieresis.ss01.glif new file mode 100644 index 00000000..c1455e05 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/adieresis.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+dieresis + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/adieresiscyr.glif b/sources/FixelText-Regular.ufo/glyphs/adieresiscyr.glif new file mode 100644 index 00000000..2fa3138e --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/adieresiscyr.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/ae.glif b/sources/FixelText-Regular.ufo/glyphs/ae.glif new file mode 100644 index 00000000..a34aca20 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/ae.glif @@ -0,0 +1,101 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + a + com.fontlab.metricsRight + e + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/ae.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/ae.ss01.glif new file mode 100644 index 00000000..5dbba06c --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/ae.ss01.glif @@ -0,0 +1,96 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + a + com.fontlab.metricsRight + e.ss01 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/aeacute.glif b/sources/FixelText-Regular.ufo/glyphs/aeacute.glif new file mode 100644 index 00000000..6990b630 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/aeacute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ae+acute + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/agrave.glif b/sources/FixelText-Regular.ufo/glyphs/agrave.glif new file mode 100644 index 00000000..83531ae0 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/agrave.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+grave + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/agrave.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/agrave.ss01.glif new file mode 100644 index 00000000..2879152d --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/agrave.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+grave + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/aiecyr.glif b/sources/FixelText-Regular.ufo/glyphs/aiecyr.glif new file mode 100644 index 00000000..17a54cf1 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/aiecyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ae + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/amacron.glif b/sources/FixelText-Regular.ufo/glyphs/amacron.glif new file mode 100644 index 00000000..d7a22a5d --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/amacron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+macron + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/amacron.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/amacron.ss01.glif new file mode 100644 index 00000000..a222b962 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/amacron.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+macron + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/ampersand.glif b/sources/FixelText-Regular.ufo/glyphs/ampersand.glif new file mode 100644 index 00000000..79e00cee --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/ampersand.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/aogonek.glif b/sources/FixelText-Regular.ufo/glyphs/aogonek.glif new file mode 100644 index 00000000..df6bd3b8 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/aogonek.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+ogonek + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/aogonek.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/aogonek.ss01.glif new file mode 100644 index 00000000..3e7f9d06 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/aogonek.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+ogonek + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/apostrophemod.glif b/sources/FixelText-Regular.ufo/glyphs/apostrophemod.glif new file mode 100644 index 00000000..dd9088ff --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/apostrophemod.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + apostrophe + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/approxequal.glif b/sources/FixelText-Regular.ufo/glyphs/approxequal.glif new file mode 100644 index 00000000..abcf9765 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/approxequal.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/aring.glif b/sources/FixelText-Regular.ufo/glyphs/aring.glif new file mode 100644 index 00000000..d5ff139a --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/aring.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+ring + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/aring.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/aring.ss01.glif new file mode 100644 index 00000000..6b8bcd4c --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/aring.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+ring + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/arrowdown.case.glif b/sources/FixelText-Regular.ufo/glyphs/arrowdown.case.glif new file mode 100644 index 00000000..e38b8c1d --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/arrowdown.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + arrowup + com.fontlab.metricsRight + arrowup + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/arrowdown.glif b/sources/FixelText-Regular.ufo/glyphs/arrowdown.glif new file mode 100644 index 00000000..b94f0597 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/arrowdown.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + arrowup + com.fontlab.metricsRight + arrowup + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/arrowdown.ss01.case.glif b/sources/FixelText-Regular.ufo/glyphs/arrowdown.ss01.case.glif new file mode 100644 index 00000000..ba84d35d --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/arrowdown.ss01.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + arrowup + com.fontlab.metricsRight + arrowup + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/arrowdown.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/arrowdown.ss01.glif new file mode 100644 index 00000000..9f982f61 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/arrowdown.ss01.glif @@ -0,0 +1,15 @@ + + + + + + + + + com.fontlab.metricsLeft + arrowup + com.fontlab.metricsRight + arrowup + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/arrowleft.case.glif b/sources/FixelText-Regular.ufo/glyphs/arrowleft.case.glif new file mode 100644 index 00000000..ae1d95ef --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/arrowleft.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + arrowleft + com.fontlab.metricsRight + arrowleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/arrowleft.glif b/sources/FixelText-Regular.ufo/glyphs/arrowleft.glif new file mode 100644 index 00000000..e3f47e37 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/arrowleft.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/arrowleft.ss01.case.glif b/sources/FixelText-Regular.ufo/glyphs/arrowleft.ss01.case.glif new file mode 100644 index 00000000..ec5a9aaf --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/arrowleft.ss01.case.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + arrowleft + com.fontlab.metricsRight + arrowleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/arrowleft.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/arrowleft.ss01.glif new file mode 100644 index 00000000..5e73d100 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/arrowleft.ss01.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + arrowleft + com.fontlab.metricsRight + arrowleft + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/arrowright.case.glif b/sources/FixelText-Regular.ufo/glyphs/arrowright.case.glif new file mode 100644 index 00000000..4586db5f --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/arrowright.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |arrowleft + com.fontlab.metricsRight + |arrowleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/arrowright.glif b/sources/FixelText-Regular.ufo/glyphs/arrowright.glif new file mode 100644 index 00000000..4526000a --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/arrowright.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + |arrowleft + com.fontlab.metricsRight + |arrowleft + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/arrowright.ss01.case.glif b/sources/FixelText-Regular.ufo/glyphs/arrowright.ss01.case.glif new file mode 100644 index 00000000..dcd9f84d --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/arrowright.ss01.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |arrowleft + com.fontlab.metricsRight + |arrowleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/arrowright.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/arrowright.ss01.glif new file mode 100644 index 00000000..e6328e1b --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/arrowright.ss01.glif @@ -0,0 +1,15 @@ + + + + + + + + + com.fontlab.metricsLeft + |arrowleft + com.fontlab.metricsRight + |arrowleft + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/arrowup.case.glif b/sources/FixelText-Regular.ufo/glyphs/arrowup.case.glif new file mode 100644 index 00000000..fe221bd8 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/arrowup.case.glif @@ -0,0 +1,15 @@ + + + + + + + + + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/arrowup.glif b/sources/FixelText-Regular.ufo/glyphs/arrowup.glif new file mode 100644 index 00000000..088c7f98 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/arrowup.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + l() + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/arrowup.ss01.case.glif b/sources/FixelText-Regular.ufo/glyphs/arrowup.ss01.case.glif new file mode 100644 index 00000000..3b576bd9 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/arrowup.ss01.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + arrowup + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/arrowup.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/arrowup.ss01.glif new file mode 100644 index 00000000..7e2b0189 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/arrowup.ss01.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + arrowup + com.fontlab.metricsRight + l() + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/asciicircum.glif b/sources/FixelText-Regular.ufo/glyphs/asciicircum.glif new file mode 100644 index 00000000..503e7e0d --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/asciicircum.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/asciitilde.glif b/sources/FixelText-Regular.ufo/glyphs/asciitilde.glif new file mode 100644 index 00000000..972ecf3f --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/asciitilde.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/asterisk.glif b/sources/FixelText-Regular.ufo/glyphs/asterisk.glif new file mode 100644 index 00000000..626c082b --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/asterisk.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/at.case.glif b/sources/FixelText-Regular.ufo/glyphs/at.case.glif new file mode 100644 index 00000000..4ccc3e85 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/at.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/at.glif b/sources/FixelText-Regular.ufo/glyphs/at.glif new file mode 100644 index 00000000..78cd4c02 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/at.glif @@ -0,0 +1,92 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/atilde.glif b/sources/FixelText-Regular.ufo/glyphs/atilde.glif new file mode 100644 index 00000000..6dacd113 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/atilde.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+tilde + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/atilde.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/atilde.ss01.glif new file mode 100644 index 00000000..fcb4230a --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/atilde.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+tilde + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/b.glif b/sources/FixelText-Regular.ufo/glyphs/b.glif new file mode 100644 index 00000000..735fe859 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/b.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/b.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/b.ss01.glif new file mode 100644 index 00000000..80f7f390 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/b.ss01.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/backslash.case.glif b/sources/FixelText-Regular.ufo/glyphs/backslash.case.glif new file mode 100644 index 00000000..040eba25 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/backslash.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + backslash + com.fontlab.metricsRight + backslash + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/backslash.glif b/sources/FixelText-Regular.ufo/glyphs/backslash.glif new file mode 100644 index 00000000..4d7305f5 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/backslash.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/bar.case.glif b/sources/FixelText-Regular.ufo/glyphs/bar.case.glif new file mode 100644 index 00000000..c6719bcf --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/bar.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + H-10 + com.fontlab.metricsRight + H-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/bar.glif b/sources/FixelText-Regular.ufo/glyphs/bar.glif new file mode 100644 index 00000000..04c3076f --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/bar.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H-10 + com.fontlab.metricsRight + H-10 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/be-cy.S_R_B_.glif b/sources/FixelText-Regular.ufo/glyphs/be-cy.S_R_B_.glif new file mode 100644 index 00000000..2ac132de --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/be-cy.S_R_B_.glif @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/be-cy.glif b/sources/FixelText-Regular.ufo/glyphs/be-cy.glif new file mode 100644 index 00000000..8dfc627b --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/be-cy.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/bishopblack.glif b/sources/FixelText-Regular.ufo/glyphs/bishopblack.glif new file mode 100644 index 00000000..2399ff0b --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/bishopblack.glif @@ -0,0 +1,241 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =10 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/bishopwhite.glif b/sources/FixelText-Regular.ufo/glyphs/bishopwhite.glif new file mode 100644 index 00000000..58de42a6 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/bishopwhite.glif @@ -0,0 +1,331 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/braceleft.case.glif b/sources/FixelText-Regular.ufo/glyphs/braceleft.case.glif new file mode 100644 index 00000000..0baf6ae5 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/braceleft.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |braceright.case + com.fontlab.metricsRight + |braceright.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/braceleft.glif b/sources/FixelText-Regular.ufo/glyphs/braceleft.glif new file mode 100644 index 00000000..b571866d --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/braceleft.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/braceright.case.glif b/sources/FixelText-Regular.ufo/glyphs/braceright.case.glif new file mode 100644 index 00000000..3056ccc3 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/braceright.case.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/braceright.glif b/sources/FixelText-Regular.ufo/glyphs/braceright.glif new file mode 100644 index 00000000..1b16dc0a --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/braceright.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/bracketangleleft.case.glif b/sources/FixelText-Regular.ufo/glyphs/bracketangleleft.case.glif new file mode 100644 index 00000000..9a4c55b0 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/bracketangleleft.case.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + parenleft.case + com.fontlab.metricsRight + parenleft.case + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/bracketangleleft.glif b/sources/FixelText-Regular.ufo/glyphs/bracketangleleft.glif new file mode 100644 index 00000000..1f453d3a --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/bracketangleleft.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + parenleft + com.fontlab.metricsRight + parenleft + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/bracketangleright.case.glif b/sources/FixelText-Regular.ufo/glyphs/bracketangleright.case.glif new file mode 100644 index 00000000..d4b97fcb --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/bracketangleright.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |bracketangleleft.case + com.fontlab.metricsRight + |bracketangleleft.case + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/bracketangleright.glif b/sources/FixelText-Regular.ufo/glyphs/bracketangleright.glif new file mode 100644 index 00000000..c5b03783 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/bracketangleright.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.metricsLeft + |bracketangleleft + com.fontlab.metricsRight + |bracketangleleft + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/bracketleft.case.glif b/sources/FixelText-Regular.ufo/glyphs/bracketleft.case.glif new file mode 100644 index 00000000..bd7ac514 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/bracketleft.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |bracketright.case + com.fontlab.metricsRight + |bracketright.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/bracketleft.glif b/sources/FixelText-Regular.ufo/glyphs/bracketleft.glif new file mode 100644 index 00000000..96f26f7e --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/bracketleft.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/bracketright.case.glif b/sources/FixelText-Regular.ufo/glyphs/bracketright.case.glif new file mode 100644 index 00000000..7827158f --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/bracketright.case.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |bracketleft + com.fontlab.metricsRight + |bracketleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/bracketright.glif b/sources/FixelText-Regular.ufo/glyphs/bracketright.glif new file mode 100644 index 00000000..d10f0b2b --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/bracketright.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |bracketleft + com.fontlab.metricsRight + |bracketleft + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/breve.case.glif b/sources/FixelText-Regular.ufo/glyphs/breve.case.glif new file mode 100644 index 00000000..0d5cdfea --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/breve.case.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/breve.glif b/sources/FixelText-Regular.ufo/glyphs/breve.glif new file mode 100644 index 00000000..33e4de11 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/breve.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/brokenbar.case.glif b/sources/FixelText-Regular.ufo/glyphs/brokenbar.case.glif new file mode 100644 index 00000000..3230f358 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/brokenbar.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + bar + com.fontlab.metricsRight + bar + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/brokenbar.glif b/sources/FixelText-Regular.ufo/glyphs/brokenbar.glif new file mode 100644 index 00000000..09b3e4ef --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/brokenbar.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + bar + com.fontlab.metricsRight + bar + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/bullet.case.glif b/sources/FixelText-Regular.ufo/glyphs/bullet.case.glif new file mode 100644 index 00000000..7f208f0d --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/bullet.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + period + com.fontlab.metricsRight + period + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/bullet.glif b/sources/FixelText-Regular.ufo/glyphs/bullet.glif new file mode 100644 index 00000000..c4443aa7 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/bullet.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + period + com.fontlab.metricsRight + period + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/c.glif b/sources/FixelText-Regular.ufo/glyphs/c.glif new file mode 100644 index 00000000..7582c98c --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/c.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/cacute.glif b/sources/FixelText-Regular.ufo/glyphs/cacute.glif new file mode 100644 index 00000000..fec98d9a --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/cacute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+acute + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/caron.case.glif b/sources/FixelText-Regular.ufo/glyphs/caron.case.glif new file mode 100644 index 00000000..8e22b841 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/caron.case.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/caron.glif b/sources/FixelText-Regular.ufo/glyphs/caron.glif new file mode 100644 index 00000000..bb3a5795 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/caron.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/caron.salt.glif b/sources/FixelText-Regular.ufo/glyphs/caron.salt.glif new file mode 100644 index 00000000..0783b8e6 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/caron.salt.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/ccaron.glif b/sources/FixelText-Regular.ufo/glyphs/ccaron.glif new file mode 100644 index 00000000..2a5cb92a --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/ccaron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+caron + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/ccedilla.glif b/sources/FixelText-Regular.ufo/glyphs/ccedilla.glif new file mode 100644 index 00000000..da4962ec --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/ccedilla.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+cedilla + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/cche-cy.glif b/sources/FixelText-Regular.ufo/glyphs/cche-cy.glif new file mode 100644 index 00000000..5e1171ba --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/cche-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ч + com.fontlab.metricsRight + ч + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/ccircumflex.glif b/sources/FixelText-Regular.ufo/glyphs/ccircumflex.glif new file mode 100644 index 00000000..45acbccd --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/ccircumflex.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+circumflex + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/cdotaccent.glif b/sources/FixelText-Regular.ufo/glyphs/cdotaccent.glif new file mode 100644 index 00000000..4ecbec1d --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/cdotaccent.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+dotaccent + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/cedilla.glif b/sources/FixelText-Regular.ufo/glyphs/cedilla.glif new file mode 100644 index 00000000..045cd971 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/cedilla.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/cent.glif b/sources/FixelText-Regular.ufo/glyphs/cent.glif new file mode 100644 index 00000000..82a00f75 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/cent.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + c + com.fontlab.metricsRight + c + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/che-cy.glif b/sources/FixelText-Regular.ufo/glyphs/che-cy.glif new file mode 100644 index 00000000..a8b3b404 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/che-cy.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + u-10 + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/cheabkhcyr.glif b/sources/FixelText-Regular.ufo/glyphs/cheabkhcyr.glif new file mode 100644 index 00000000..e2835925 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/cheabkhcyr.glif @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + e + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/cheabkhtailcyr.glif b/sources/FixelText-Regular.ufo/glyphs/cheabkhtailcyr.glif new file mode 100644 index 00000000..a718bcf4 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/cheabkhtailcyr.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + cheabkhcyr + com.fontlab.metricsRight + cheabkhcyr + com.fontlab.recipe + cheabkhcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/chedieresiscyr.glif b/sources/FixelText-Regular.ufo/glyphs/chedieresiscyr.glif new file mode 100644 index 00000000..15bc5a67 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/chedieresiscyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + che-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/chekhakascyr.glif b/sources/FixelText-Regular.ufo/glyphs/chekhakascyr.glif new file mode 100644 index 00000000..8bb74191 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/chekhakascyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ч + com.fontlab.metricsRight + н + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/chetailcyr.glif b/sources/FixelText-Regular.ufo/glyphs/chetailcyr.glif new file mode 100644 index 00000000..7eecbc27 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/chetailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ч + com.fontlab.metricsRight + entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/chevertcyr.glif b/sources/FixelText-Regular.ufo/glyphs/chevertcyr.glif new file mode 100644 index 00000000..5e6f4dc1 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/chevertcyr.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ч + com.fontlab.metricsRight + н + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/circumflex.case.glif b/sources/FixelText-Regular.ufo/glyphs/circumflex.case.glif new file mode 100644 index 00000000..ac665b81 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/circumflex.case.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/circumflex.glif b/sources/FixelText-Regular.ufo/glyphs/circumflex.glif new file mode 100644 index 00000000..415061f3 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/circumflex.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/clubwhite.glif b/sources/FixelText-Regular.ufo/glyphs/clubwhite.glif new file mode 100644 index 00000000..a242c00e --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/clubwhite.glif @@ -0,0 +1,155 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/colon.case.glif b/sources/FixelText-Regular.ufo/glyphs/colon.case.glif new file mode 100644 index 00000000..a12265b5 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/colon.case.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/colon.glif b/sources/FixelText-Regular.ufo/glyphs/colon.glif new file mode 100644 index 00000000..9f441b84 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/colon.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/colontriangularmod.glif b/sources/FixelText-Regular.ufo/glyphs/colontriangularmod.glif new file mode 100644 index 00000000..88c630c4 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/colontriangularmod.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + colon + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/comma.glif b/sources/FixelText-Regular.ufo/glyphs/comma.glif new file mode 100644 index 00000000..676b60ca --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/comma.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/commaaccentcomb.glif b/sources/FixelText-Regular.ufo/glyphs/commaaccentcomb.glif new file mode 100644 index 00000000..24239286 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/commaaccentcomb.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/commaaccentcomb.salt.glif b/sources/FixelText-Regular.ufo/glyphs/commaaccentcomb.salt.glif new file mode 100644 index 00000000..3a4185bb --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/commaaccentcomb.salt.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/contents.plist b/sources/FixelText-Regular.ufo/glyphs/contents.plist new file mode 100644 index 00000000..2830b2de --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/contents.plist @@ -0,0 +1,2352 @@ + + + + + .notdef + _notdef.glif + A + A_.glif + A-cy + A_-cy.glif + A-cy.accented + A_-cy.accented.glif + A-cy.ss01 + A_-cy.ss01.glif + A.ss01 + A_.ss01.glif + AE + A_E_.glif + AE.ss01 + A_E_.ss01.glif + AEacute + A_E_acute.glif + Aacute + A_acute.glif + Aacute.ss01 + A_acute.ss01.glif + Abreve + A_breve.glif + Abreve.ss01 + A_breve.ss01.glif + Abrevecyr + A_brevecyr.glif + Acaron + A_caron.glif + Acircumflex + A_circumflex.glif + Acircumflex.ss01 + A_circumflex.ss01.glif + Adieresis + A_dieresis.glif + Adieresis.ss01 + A_dieresis.ss01.glif + Adieresiscyr + A_dieresiscyr.glif + Agrave + A_grave.glif + Agrave.ss01 + A_grave.ss01.glif + Aiecyr + A_iecyr.glif + Amacron + A_macron.glif + Amacron.ss01 + A_macron.ss01.glif + Aogonek + A_ogonek.glif + Aogonek.ss01 + A_ogonek.ss01.glif + Aring + A_ring.glif + Aring.ss01 + A_ring.ss01.glif + Atilde + A_tilde.glif + Atilde.ss01 + A_tilde.ss01.glif + B + B_.glif + Be-cy + B_e-cy.glif + C + C_.glif + CR + C_R_.glif + Cacute + C_acute.glif + Ccaron + C_caron.glif + Ccedilla + C_cedilla.glif + Cche-cy + C_che-cy.glif + Ccircumflex + C_circumflex.glif + Cdotaccent + C_dotaccent.glif + Che-cy + C_he-cy.glif + Cheabkhcyr + C_heabkhcyr.glif + Cheabkhtailcyr + C_heabkhtailcyr.glif + Chedieresiscyr + C_hedieresiscyr.glif + Chekhakascyr + C_hekhakascyr.glif + Chetailcyr + C_hetailcyr.glif + Chevertcyr + C_hevertcyr.glif + CrossedO-cy + C_rossedO_-cy.glif + D + D_.glif + Dcaron + D_caron.glif + Dchecyr + D_checyr.glif + Dcroat + D_croat.glif + De-cy + D_e-cy.glif + De-cy.BGR + D_e-cy.B_G_R_.glif + DeSoft-cy + D_eS_oft-cy.glif + Dekomicyr + D_ekomicyr.glif + Delta + D_elta.glif + Djecyr + D_jecyr.glif + Djekomicyr + D_jekomicyr.glif + Djerv-cy + D_jerv-cy.glif + DoubleO-cy + D_oubleO_-cy.glif + Dwe-cy + D_we-cy.glif + Dze-cy + D_ze-cy.glif + DzeReversed-cy + D_zeR_eversed-cy.glif + Dzeabkhcyr + D_zeabkhcyr.glif + Dzelo-cy + D_zelo-cy.glif + Dzhecyr + D_zhecyr.glif + Dzjekomicyr + D_zjekomicyr.glif + Dzwe-cy + D_zwe-cy.glif + Dzze-cy + D_zze-cy.glif + Dzzhecyr + D_zzhecyr.glif + E + E_.glif + E-cy + E_-cy.glif + E-cy.accented + E_-cy.accented.glif + Eacute + E_acute.glif + Ebreve + E_breve.glif + Ecaron + E_caron.glif + Ecircumflex + E_circumflex.glif + Edieresis + E_dieresis.glif + Edotaccent + E_dotaccent.glif + Ef-cy + E_f-cy.glif + Ef-cy.BGR + E_f-cy.B_G_R_.glif + Egrave + E_grave.glif + Eiotifiedcyr + E_iotifiedcyr.glif + El-cy + E_l-cy.glif + El-cy.BGR + E_l-cy.B_G_R_.glif + ElSoft-cy + E_lS_oft-cy.glif + Elhookcyr + E_lhookcyr.glif + Elmiddlehookcyr + E_lmiddlehookcyr.glif + Elsharptailcyr + E_lsharptailcyr.glif + Elsmallcyr + E_lsmallcyr.glif + Eltailcyr + E_ltailcyr.glif + Em-cy + E_m-cy.glif + Em-cy.ss01 + E_m-cy.ss01.glif + EmSoft-cy + E_mS_oft-cy.glif + Emacron + E_macron.glif + Emsharptailcyr + E_msharptailcyr.glif + En-cy + E_n-cy.glif + Eng + E_ng.glif + Eng.ss01 + E_ng.ss01.glif + Engecyr + E_ngecyr.glif + Enhookcyr + E_nhookcyr.glif + Enhookleftcyr + E_nhookleftcyr.glif + Enmiddlehookcyr + E_nmiddlehookcyr.glif + Ensharptailcyr + E_nsharptailcyr.glif + Entailcyr + E_ntailcyr.glif + Eogonek + E_ogonek.glif + Er-cy + E_r-cy.glif + Ereversed-cy + E_reversed-cy.glif + Ereversed-cy.accented + E_reversed-cy.accented.glif + Ereverseddieresiscyr + E_reverseddieresiscyr.glif + Ertickcyr + E_rtickcyr.glif + Es-cy + E_s-cy.glif + Estailcyr + E_stailcyr.glif + Estailcyr.BSH + E_stailcyr.B_S_H_.glif + Estailcyr.CHU + E_stailcyr.C_H_U_.glif + Eth + E_th.glif + F + F_.glif + Fitacyr + F_itacyr.glif + G + G_.glif + G.ss01 + G_.ss01.glif + Gacute + G_acute.glif + Gacute.ss01 + G_acute.ss01.glif + Gbreve + G_breve.glif + Gbreve.ss01 + G_breve.ss01.glif + Gcircumflex + G_circumflex.glif + Gcircumflex.ss01 + G_circumflex.ss01.glif + Gcommaaccent + G_commaaccent.glif + Gcommaaccent.ss01 + G_commaaccent.ss01.glif + Gdotaccent + G_dotaccent.glif + Gdotaccent.ss01 + G_dotaccent.ss01.glif + Ge-cy + G_e-cy.glif + Gehookcyr + G_ehookcyr.glif + Gehookstrokecyr + G_ehookstrokecyr.glif + Germandbls + G_ermandbls.glif + Gestrokecyr + G_estrokecyr.glif + Gestrokecyr.BSH + G_estrokecyr.B_S_H_.glif + Getailcyr + G_etailcyr.glif + Gheupturn-cy + G_heupturn-cy.glif + Gjecyr + G_jecyr.glif + H + H_.glif + Ha-cy + H_a-cy.glif + Ha-cy.ss01 + H_a-cy.ss01.glif + Haabkhcyr + H_aabkhcyr.glif + Hahookcyr + H_ahookcyr.glif + Hardsign-cy + H_ardsign-cy.glif + Hastrokecyr + H_astrokecyr.glif + Hbar + H_bar.glif + Hcircumflex + H_circumflex.glif + Hwe-cy + H_we-cy.glif + I + I_.glif + I-cy + I_-cy.glif + IJ + I_J_.glif + Ia-cy + I_a-cy.glif + Ia-cy.accented + I_a-cy.accented.glif + Ia-cy.ss01 + I_a-cy.ss01.glif + Iacute + I_acute.glif + Ibreve + I_breve.glif + Icircumflex + I_circumflex.glif + Idieresis + I_dieresis.glif + Idieresiscyr + I_dieresiscyr.glif + Idotaccent + I_dotaccent.glif + Ie-cy + I_e-cy.glif + Iebrevecyr + I_ebrevecyr.glif + Iegravecyr + I_egravecyr.glif + Igrave + I_grave.glif + Igravecyr + I_gravecyr.glif + Ii-cy + I_i-cy.glif + Ii-cy.accented + I_i-cy.accented.glif + Iishort-cy + I_ishort-cy.glif + Imacron + I_macron.glif + Imacroncyr + I_macroncyr.glif + Io-cy + I_o-cy.glif + Io-cy.accented + I_o-cy.accented.glif + Iogonek + I_ogonek.glif + Iota-cy + I_ota-cy.glif + IotifiedA-cy + I_otifiedA_-cy.glif + Ishortsharptailcyr + I_shortsharptailcyr.glif + Itilde + I_tilde.glif + Iu-cy + I_u-cy.glif + Iu-cy.accented + I_u-cy.accented.glif + Izhitsacyr + I_zhitsacyr.glif + Izhitsagravedblcyr + I_zhitsagravedblcyr.glif + J + J_.glif + J.ss01 + J_.ss01.glif + Jcircumflex + J_circumflex.glif + Jcircumflex.ss01 + J_circumflex.ss01.glif + Jecyr + J_ecyr.glif + K + K_.glif + K.ss01 + K_.ss01.glif + Ka-cy + K_a-cy.glif + Ka-cy.ss01 + K_a-cy.ss01.glif + Kaaleutcyr + K_aaleutcyr.glif + Kabashkcyr + K_abashkcyr.glif + Kahookcyr + K_ahookcyr.glif + Kastrokecyr + K_astrokecyr.glif + Katailcyr + K_atailcyr.glif + Kaverticalstrokecyr + K_averticalstrokecyr.glif + Kcommaaccent + K_commaaccent.glif + Kcommaaccent.ss01 + K_commaaccent.ss01.glif + Kjecyr + K_jecyr.glif + Koppacyr + K_oppacyr.glif + Ksicyr + K_sicyr.glif + L + L_.glif + Lacute + L_acute.glif + Lcaron + L_caron.glif + Lcommaaccent + L_commaaccent.glif + Ldot + L_dot.glif + Lhacyr + L_hacyr.glif + Ljecyr + L_jecyr.glif + Ljekomicyr + L_jekomicyr.glif + Lslash + L_slash.glif + M + M_.glif + M.ss01 + M_.ss01.glif + N + N_.glif + N.ss01 + N_.ss01.glif + NULL + N_U_L_L_.glif + Nacute + N_acute.glif + Nacute.ss01 + N_acute.ss01.glif + Ncaron + N_caron.glif + Ncaron.ss01 + N_caron.ss01.glif + Ncommaaccent + N_commaaccent.glif + Ncommaaccent.ss01 + N_commaaccent.ss01.glif + Njecyr + N_jecyr.glif + Njekomicyr + N_jekomicyr.glif + Ntilde + N_tilde.glif + Ntilde.ss01 + N_tilde.ss01.glif + O + O_.glif + O-cy + O_-cy.glif + O-cy.accented + O_-cy.accented.glif + OBinocular-cy + O_B_inocular-cy.glif + ODoubleMonocular-cy + O_D_oubleM_onocular-cy.glif + OE + O_E_.glif + OMonocular-cy + O_M_onocular-cy.glif + Oacute + O_acute.glif + Obarcyr + O_barcyr.glif + Obardieresiscyr + O_bardieresiscyr.glif + Obreve + O_breve.glif + Ocircumflex + O_circumflex.glif + Odieresis + O_dieresis.glif + Odieresiscyr + O_dieresiscyr.glif + Ograve + O_grave.glif + Ohungarumlaut + O_hungarumlaut.glif + Omacron + O_macron.glif + Omega + O_mega.glif + OmegaBroad-cy + O_megaB_road-cy.glif + Omegacyr + O_megacyr.glif + Omegaroundcyr + O_megaroundcyr.glif + Omegatitlocyr + O_megatitlocyr.glif + Oslash + O_slash.glif + Oslashacute + O_slashacute.glif + Otcyr + O_tcyr.glif + Otilde + O_tilde.glif + P + P_.glif + Palochkacyr + P_alochkacyr.glif + Pe-cy + P_e-cy.glif + Pehookcyr + P_ehookcyr.glif + Petailcyr + P_etailcyr.glif + Psicyr + P_sicyr.glif + Q + Q_.glif + Q.ss01 + Q_.ss01.glif + Qacyr + Q_acyr.glif + R + R_.glif + Racute + R_acute.glif + Rcaron + R_caron.glif + Rcommaaccent + R_commaaccent.glif + Reversedzecyr + R_eversedzecyr.glif + Rhacyr + R_hacyr.glif + S + S_.glif + Sacute + S_acute.glif + Scaron + S_caron.glif + Scedilla + S_cedilla.glif + Schwa + S_chwa.glif + Schwacyr + S_chwacyr.glif + Schwadieresiscyr + S_chwadieresiscyr.glif + Scircumflex + S_circumflex.glif + Scommaaccent + S_commaaccent.glif + Semisoftcyr + S_emisoftcyr.glif + Sha-cy + S_ha-cy.glif + Shcha-cy + S_hcha-cy.glif + Shhacyr + S_hhacyr.glif + Shhatailcyr + S_hhatailcyr.glif + Shwe-cy + S_hwe-cy.glif + Sjekomicyr + S_jekomicyr.glif + Softsign-cy + S_oftsign-cy.glif + T + T_.glif + Tbar + T_bar.glif + Tcaron + T_caron.glif + Tcedilla + T_cedilla.glif + Tche-cy + T_che-cy.glif + Tcommaaccent + T_commaaccent.glif + Te-cy + T_e-cy.glif + TeWithMiddleHook-cy + T_eW_ithM_iddleH_ook-cy.glif + Tetailcyr + T_etailcyr.glif + Tetsecyr + T_etsecyr.glif + Thorn + T_horn.glif + Tjekomicyr + T_jekomicyr.glif + Tse-cy + T_se-cy.glif + TseReversed-cy + T_seR_eversed-cy.glif + Tshecyr + T_shecyr.glif + Tsse-cy + T_sse-cy.glif + Tswe-cy + T_swe-cy.glif + Twe-cy + T_we-cy.glif + U + U_.glif + U-cy + U_-cy.glif + U-cy.accented + U_-cy.accented.glif + U-cy.ss01 + U_-cy.ss01.glif + Uacute + U_acute.glif + Uacutedblcyr + U_acutedblcyr.glif + Ubreve + U_breve.glif + Ucircumflex + U_circumflex.glif + Udieresis + U_dieresis.glif + Udieresiscyr + U_dieresiscyr.glif + Ugrave + U_grave.glif + Uhungarumlaut + U_hungarumlaut.glif + UkMonograph-cy + U_kM_onograph-cy.glif + Ukcyr + U_kcyr.glif + Umacron + U_macron.glif + Umacroncyr + U_macroncyr.glif + Uogonek + U_ogonek.glif + Uring + U_ring.glif + Ushort-cy + U_short-cy.glif + Ushort-cy.ss01 + U_short-cy.ss01.glif + Ustraightcyr + U_straightcyr.glif + Ustraightstrokecyr + U_straightstrokecyr.glif + Utilde + U_tilde.glif + V + V_.glif + V.ss01 + V_.ss01.glif + Ve-cy + V_e-cy.glif + W + W_.glif + W.ss01 + W_.ss01.glif + Wacute + W_acute.glif + Wacute.ss01 + W_acute.ss01.glif + Wcircumflex + W_circumflex.glif + Wcircumflex.ss01 + W_circumflex.ss01.glif + Wdieresis + W_dieresis.glif + Wdieresis.ss01 + W_dieresis.ss01.glif + Wecyr + W_ecyr.glif + Wgrave + W_grave.glif + Wgrave.ss01 + W_grave.ss01.glif + X + X_.glif + X.ss01 + X_.ss01.glif + Xatailcyr + X_atailcyr.glif + Y + Y_.glif + Y.ss01 + Y_.ss01.glif + Yacute + Y_acute.glif + Yacute.ss01 + Y_acute.ss01.glif + Yaecyr + Y_aecyr.glif + YatIotified-cy + Y_atI_otified-cy.glif + Yatcyr + Y_atcyr.glif + Ycircumflex + Y_circumflex.glif + Ycircumflex.ss01 + Y_circumflex.ss01.glif + Ydieresis + Y_dieresis.glif + Ydieresis.ss01 + Y_dieresis.ss01.glif + YerNeutral-cy + Y_erN_eutral-cy.glif + Yeru-cy + Y_eru-cy.glif + Yeru-cy.accented + Y_eru-cy.accented.glif + Yeru-cymacron + Y_eru-cymacron.glif + YeruBackYer-cy + Y_eruB_ackY_er-cy.glif + Yi-cy + Y_i-cy.glif + Ylongdieresiscyr + Y_longdieresiscyr.glif + Yn-cy + Y_n-cy.glif + YuReversed-cy + Y_uR_eversed-cy.glif + YusBlended-cy + Y_usB_lended-cy.glif + YusClosedlittle-cy + Y_usC_losedlittle-cy.glif + Yusbigcyr + Y_usbigcyr.glif + Yusbigiotifiedcyr + Y_usbigiotifiedcyr.glif + YusiotifiedClosedLittle-cy + Y_usiotifiedC_losedL_ittle-cy.glif + Yuslittlecyr + Y_uslittlecyr.glif + Yuslittleiotifiedcyr + Y_uslittleiotifiedcyr.glif + Z + Z_.glif + Z.ss01 + Z_.ss01.glif + Zacute + Z_acute.glif + Zacute.ss01 + Z_acute.ss01.glif + Zcaron + Z_caron.glif + Zcaron.ss01 + Z_caron.ss01.glif + Zdotaccent + Z_dotaccent.glif + Zdotaccent.ss01 + Z_dotaccent.ss01.glif + Ze-cy + Z_e-cy.glif + Zedieresiscyr + Z_edieresiscyr.glif + Zemlya-cy + Z_emlya-cy.glif + Zetailcyr + Z_etailcyr.glif + Zetailcyr.BSH + Z_etailcyr.B_S_H_.glif + Zhe-cy + Z_he-cy.glif + Zhe-cy.ss01 + Z_he-cy.ss01.glif + Zhebrevecyr + Z_hebrevecyr.glif + Zhedieresiscyr + Z_hedieresiscyr.glif + Zhetailcyr + Z_hetailcyr.glif + Zhwe-cy + Z_hwe-cy.glif + Zjekomicyr + Z_jekomicyr.glif + _perc-circule + _perc-circule.glif + a + a.glif + a-cy + a-cy.glif + a-cy.accented + a-cy.accented.glif + a-cy.ss01 + a-cy.ss01.glif + a.ss01 + a.ss01.glif + aacute + aacute.glif + aacute.ss01 + aacute.ss01.glif + abreve + abreve.glif + abreve.ss01 + abreve.ss01.glif + abrevecyr + abrevecyr.glif + acaron + acaron.glif + acircumflex + acircumflex.glif + acircumflex.ss01 + acircumflex.ss01.glif + acute + acute.glif + acute.case + acute.case.glif + adieresis + adieresis.glif + adieresis.ss01 + adieresis.ss01.glif + adieresiscyr + adieresiscyr.glif + ae + ae.glif + ae.ss01 + ae.ss01.glif + aeacute + aeacute.glif + agrave + agrave.glif + agrave.ss01 + agrave.ss01.glif + aiecyr + aiecyr.glif + amacron + amacron.glif + amacron.ss01 + amacron.ss01.glif + ampersand + ampersand.glif + aogonek + aogonek.glif + aogonek.ss01 + aogonek.ss01.glif + apostrophemod + apostrophemod.glif + approxequal + approxequal.glif + aring + aring.glif + aring.ss01 + aring.ss01.glif + arrowdown + arrowdown.glif + arrowdown.case + arrowdown.case.glif + arrowdown.ss01 + arrowdown.ss01.glif + arrowdown.ss01.case + arrowdown.ss01.case.glif + arrowleft + arrowleft.glif + arrowleft.case + arrowleft.case.glif + arrowleft.ss01 + arrowleft.ss01.glif + arrowleft.ss01.case + arrowleft.ss01.case.glif + arrowright + arrowright.glif + arrowright.case + arrowright.case.glif + arrowright.ss01 + arrowright.ss01.glif + arrowright.ss01.case + arrowright.ss01.case.glif + arrowup + arrowup.glif + arrowup.case + arrowup.case.glif + arrowup.ss01 + arrowup.ss01.glif + arrowup.ss01.case + arrowup.ss01.case.glif + asciicircum + asciicircum.glif + asciitilde + asciitilde.glif + asterisk + asterisk.glif + at + at.glif + at.case + at.case.glif + atilde + atilde.glif + atilde.ss01 + atilde.ss01.glif + b + b.glif + b.ss01 + b.ss01.glif + backslash + backslash.glif + backslash.case + backslash.case.glif + bar + bar.glif + bar.case + bar.case.glif + be-cy + be-cy.glif + be-cy.SRB + be-cy.S_R_B_.glif + bishopblack + bishopblack.glif + bishopwhite + bishopwhite.glif + braceleft + braceleft.glif + braceleft.case + braceleft.case.glif + braceright + braceright.glif + braceright.case + braceright.case.glif + bracketangleleft + bracketangleleft.glif + bracketangleleft.case + bracketangleleft.case.glif + bracketangleright + bracketangleright.glif + bracketangleright.case + bracketangleright.case.glif + bracketleft + bracketleft.glif + bracketleft.case + bracketleft.case.glif + bracketright + bracketright.glif + bracketright.case + bracketright.case.glif + breve + breve.glif + breve.case + breve.case.glif + brokenbar + brokenbar.glif + brokenbar.case + brokenbar.case.glif + bullet + bullet.glif + bullet.case + bullet.case.glif + c + c.glif + cacute + cacute.glif + caron + caron.glif + caron.case + caron.case.glif + caron.salt + caron.salt.glif + ccaron + ccaron.glif + ccedilla + ccedilla.glif + cche-cy + cche-cy.glif + ccircumflex + ccircumflex.glif + cdotaccent + cdotaccent.glif + cedilla + cedilla.glif + cent + cent.glif + che-cy + che-cy.glif + cheabkhcyr + cheabkhcyr.glif + cheabkhtailcyr + cheabkhtailcyr.glif + chedieresiscyr + chedieresiscyr.glif + chekhakascyr + chekhakascyr.glif + chetailcyr + chetailcyr.glif + chevertcyr + chevertcyr.glif + circumflex + circumflex.glif + circumflex.case + circumflex.case.glif + clubwhite + clubwhite.glif + colon + colon.glif + colon.case + colon.case.glif + colontriangularmod + colontriangularmod.glif + comma + comma.glif + commaaccentcomb + commaaccentcomb.glif + commaaccentcomb.salt + commaaccentcomb.salt.glif + copyright + copyright.glif + crossedo-cy + crossedo-cy.glif + crossedswords + crossedswords.glif + currency + currency.glif + d + d.glif + d.ss01 + d.ss01.glif + dagger + dagger.glif + daggerdbl + daggerdbl.glif + dcaron + dcaron.glif + dcaron.ss01 + dcaron.ss01.glif + dchecyr + dchecyr.glif + dcroat + dcroat.glif + dcroat.ss01 + dcroat.ss01.glif + de-cy + de-cy.glif + de-cy.BGR + de-cy.B_G_R_.glif + de-cy.ss01 + de-cy.ss01.glif + deSoft-cy + deS_oft-cy.glif + degree + degree.glif + dekomicyr + dekomicyr.glif + diamondwhite-misc + diamondwhite-misc.glif + dieresis + dieresis.glif + dieresis.alt + dieresis.alt.glif + dieresis.case + dieresis.case.glif + dieresisacute + dieresisacute.glif + dieresiscase.alt + dieresiscase.alt.glif + divide + divide.glif + djecyr + djecyr.glif + djekomicyr + djekomicyr.glif + djerv-cy + djerv-cy.glif + dollar + dollar.glif + dotaccent + dotaccent.glif + dotaccent.case + dotaccent.case.glif + doubleo-cy + doubleo-cy.glif + dramsignarmn + dramsignarmn.glif + dwe-cy + dwe-cy.glif + dze-cy + dze-cy.glif + dzeReversed-cy + dzeR_eversed-cy.glif + dzeabkhcyr + dzeabkhcyr.glif + dzelo-cy + dzelo-cy.glif + dzhecyr + dzhecyr.glif + dzjekomicyr + dzjekomicyr.glif + dzwe-cy + dzwe-cy.glif + dzze-cy + dzze-cy.glif + dzzhecyr + dzzhecyr.glif + e + e.glif + e-cy + e-cy.glif + e-cy.accented + e-cy.accented.glif + e-cy.hist + e-cy.hist.glif + e.ss01 + e.ss01.glif + eacute + eacute.glif + eacute.ss01 + eacute.ss01.glif + ebreve + ebreve.glif + ebreve.ss01 + ebreve.ss01.glif + ecaron + ecaron.glif + ecaron.ss01 + ecaron.ss01.glif + ecircumflex + ecircumflex.glif + ecircumflex.ss01 + ecircumflex.ss01.glif + edieresis + edieresis.glif + edieresis.ss01 + edieresis.ss01.glif + edotaccent + edotaccent.glif + edotaccent.ss01 + edotaccent.ss01.glif + ef-cy + ef-cy.glif + egrave + egrave.glif + egrave.ss01 + egrave.ss01.glif + eight + eight.glif + eight.osf + eight.osf.glif + eight.tf + eight.tf.glif + eiotifiedcyr + eiotifiedcyr.glif + eiotifiedcyr.BGR + eiotifiedcyr.B_G_R_.glif + el-cy + el-cy.glif + el-cy.BGR + el-cy.B_G_R_.glif + el-cy.ss01 + el-cy.ss01.glif + elSoft-cy + elS_oft-cy.glif + elhookcyr + elhookcyr.glif + ellipsis + ellipsis.glif + elmiddlehookcyr + elmiddlehookcyr.glif + elsharptailcyr + elsharptailcyr.glif + eltailcyr + eltailcyr.glif + em-cy + em-cy.glif + emSoft-cy + emS_oft-cy.glif + emacron + emacron.glif + emacron.ss01 + emacron.ss01.glif + emdash + emdash.glif + emdash.case + emdash.case.glif + emsharptailcyr + emsharptailcyr.glif + en-cy + en-cy.glif + enclosingcirclecomb + enclosingcirclecomb.glif + endash + endash.glif + endash.case + endash.case.glif + eng + eng.glif + engecyr + engecyr.glif + enhookcyr + enhookcyr.glif + enhookleftcyr + enhookleftcyr.glif + enmiddlehookcyr + enmiddlehookcyr.glif + ensharptailcyr + ensharptailcyr.glif + entailcyr + entailcyr.glif + eogonek + eogonek.glif + eogonek.ss01 + eogonek.ss01.glif + equal + equal.glif + er-cy + er-cy.glif + er-cy.ss01 + er-cy.ss01.glif + ereversed-cy + ereversed-cy.glif + ereversed-cy.accented + ereversed-cy.accented.glif + ereverseddieresiscyr + ereverseddieresiscyr.glif + ertickcyr + ertickcyr.glif + es-cy + es-cy.glif + estailcyr + estailcyr.glif + estailcyr.BSH + estailcyr.B_S_H_.glif + estailcyr.CHU + estailcyr.C_H_U_.glif + estimated + estimated.glif + eth + eth.glif + eturned + eturned.glif + euro + euro.glif + exclam + exclam.glif + exclamdown + exclamdown.glif + exclamdown.case + exclamdown.case.glif + f + f.glif + f.ss01 + f.ss01.glif + f_f + f_f.glif + f_f.ss01 + f_f.ss01.glif + f_f_i + f_f_i.glif + f_f_i.ss01 + f_f_i.ss01.glif + f_f_l + f_f_l.glif + f_f_l.ss01 + f_f_l.ss01.glif + fi + fi.glif + fi.ss01 + fi.ss01.glif + fitacyr + fitacyr.glif + five + five.glif + five.osf + five.osf.glif + five.tf + five.tf.glif + fl + fl.glif + fl.ss01 + fl.ss01.glif + floretteblack + floretteblack.glif + floretteoutlinedpetalledblackeight + floretteoutlinedpetalledblackeight.glif + florettewhite + florettewhite.glif + florin + florin.glif + flower + flower.glif + four + four.glif + four.osf + four.osf.glif + four.tf + four.tf.glif + fraction + fraction.glif + g + g.glif + g.ss01 + g.ss01.glif + gacute + gacute.glif + gacute.ss01 + gacute.ss01.glif + gbreve + gbreve.glif + gbreve.ss01 + gbreve.ss01.glif + gcircumflex + gcircumflex.glif + gcircumflex.ss01 + gcircumflex.ss01.glif + gcommaaccent + gcommaaccent.glif + gcommaaccent.ss01 + gcommaaccent.ss01.glif + gdotaccent + gdotaccent.glif + gdotaccent.ss01 + gdotaccent.ss01.glif + ge-cy + ge-cy.glif + ge-cy.BGR + ge-cy.B_G_R_.glif + ge-cy.SRB + ge-cy.S_R_B_.glif + gehookcyr + gehookcyr.glif + gehookstrokecyr + gehookstrokecyr.glif + germandbls + germandbls.glif + germandbls.ss01 + germandbls.ss01.glif + gestrokecyr + gestrokecyr.glif + gestrokecyr.BSH + gestrokecyr.B_S_H_.glif + getailcyr + getailcyr.glif + gheupturn-cy + gheupturn-cy.glif + gjecyr + gjecyr.glif + gjecyr.SRB + gjecyr.S_R_B_.glif + grave + grave.glif + grave.case + grave.case.glif + greater + greater.glif + greaterequal + greaterequal.glif + guillemetleft + guillemetleft.glif + guillemetleft.case + guillemetleft.case.glif + guillemetright + guillemetright.glif + guillemetright.case + guillemetright.case.glif + guilsinglleft + guilsinglleft.glif + guilsinglleft.case + guilsinglleft.case.glif + guilsinglright + guilsinglright.glif + guilsinglright.case + guilsinglright.case.glif + h + h.glif + ha-cy + ha-cy.glif + haabkhcyr + haabkhcyr.glif + hahookcyr + hahookcyr.glif + hardsign-cy + hardsign-cy.glif + hardsign-cy.BGR + hardsign-cy.B_G_R_.glif + hardsign-cy.ss01 + hardsign-cy.ss01.glif + hastrokecyr + hastrokecyr.glif + hbar + hbar.glif + hcircumflex + hcircumflex.glif + heart + heart.glif + heartwhite + heartwhite.glif + hryvnia + hryvnia.glif + hundredmillionscomb-cy + hundredmillionscomb-cy.glif + hundredthousandscombcyr + hundredthousandscombcyr.glif + hungarumlaut + hungarumlaut.glif + hungarumlaut.case + hungarumlaut.case.glif + hwe-cy + hwe-cy.glif + hyphen + hyphen.glif + hyphen.case + hyphen.case.glif + i + i.glif + i-cy + i-cy.glif + ia-cy + ia-cy.glif + ia-cy.accented + ia-cy.accented.glif + ia-cy.ss01 + ia-cy.ss01.glif + iacute + iacute.glif + ibreve + ibreve.glif + icircumflex + icircumflex.glif + idieresis + idieresis.glif + idieresiscyr + idieresiscyr.glif + idotless + idotless.glif + ie-cy + ie-cy.glif + ie-cy.ss01 + ie-cy.ss01.glif + iebrevecyr + iebrevecyr.glif + iegravecyr + iegravecyr.glif + iegravecyr.SRB + iegravecyr.S_R_B_.glif + igrave + igrave.glif + igravecyr + igravecyr.glif + igravecyr.SRB + igravecyr.S_R_B_.glif + ii-cy + ii-cy.glif + ii-cy.BGR + ii-cy.B_G_R_.glif + ii-cy.accented + ii-cy.accented.glif + iishort-cy + iishort-cy.glif + iishort-cy.BGR + iishort-cy.B_G_R_.glif + ij + ij.glif + imacron + imacron.glif + imacroncyr + imacroncyr.glif + increment + increment.glif + infinity + infinity.glif + integral + integral.glif + io-cy + io-cy.glif + io-cy.accented + io-cy.accented.glif + io-cy.ss01 + io-cy.ss01.glif + iogonek + iogonek.glif + iota-cy + iota-cy.glif + iotifieda-cy + iotifieda-cy.glif + iotifieda-cy.BGR + iotifieda-cy.B_G_R_.glif + iotifieda-cy.hist + iotifieda-cy.hist.glif + ishortsharptailcyr + ishortsharptailcyr.glif + itilde + itilde.glif + iu-cy + iu-cy.glif + iu-cy.BGR + iu-cy.B_G_R_.glif + iu-cy.accented + iu-cy.accented.glif + izhitsacyr + izhitsacyr.glif + izhitsagravedblcyr + izhitsagravedblcyr.glif + j + j.glif + jcircumflex + jcircumflex.glif + jdotless + jdotless.glif + je-cy + je-cy.glif + k + k.glif + ka-cy + ka-cy.glif + ka-cy.BGR + ka-cy.B_G_R_.glif + kaaleutcyr + kaaleutcyr.glif + kabashkcyr + kabashkcyr.glif + kahookcyr + kahookcyr.glif + kastrokecyr + kastrokecyr.glif + katailcyr + katailcyr.glif + kaverticalstrokecyr + kaverticalstrokecyr.glif + kcommaaccent + kcommaaccent.glif + kgreenlandic + kgreenlandic.glif + kjecyr + kjecyr.glif + knightblack + knightblack.glif + knightwhite + knightwhite.glif + koppacyr + koppacyr.glif + ksicyr + ksicyr.glif + l + l.glif + l.ss01 + l.ss01.glif + lacute + lacute.glif + lacute.ss01 + lacute.ss01.glif + lcaron + lcaron.glif + lcaron.ss01 + lcaron.ss01.glif + lcommaaccent + lcommaaccent.glif + lcommaaccent.ss01 + lcommaaccent.ss01.glif + ldot + ldot.glif + ldot.ss01 + ldot.ss01.glif + leo + leo.glif + less + less.glif + lessequal + lessequal.glif + lhacyr + lhacyr.glif + ljecyr + ljecyr.glif + ljecyr.ss01 + ljecyr.ss01.glif + ljekomicyr + ljekomicyr.glif + longs + longs.glif + lslash + lslash.glif + lslash.ss01 + lslash.ss01.glif + m + m.glif + macron + macron.glif + macron-fwd + macron-fwd.glif + macron-fwd.alt + macron-fwd.alt.glif + macron.case + macron.case.glif + macronacute.SRB + macronacute.S_R_B_.glif + millionscombcyr + millionscombcyr.glif + minus + minus.glif + minute + minute.glif + mu + mu.glif + multiply + multiply.glif + n + n.glif + nacute + nacute.glif + napostrophe + napostrophe.glif + ncaron + ncaron.glif + ncommaaccent + ncommaaccent.glif + neptune + neptune.glif + nine + nine.glif + nine.osf + nine.osf.glif + nine.tf + nine.tf.glif + njecyr + njecyr.glif + njecyr.ss01 + njecyr.ss01.glif + njekomicyr + njekomicyr.glif + notequal + notequal.glif + ntilde + ntilde.glif + numbersign + numbersign.glif + numero + numero.glif + numero.ss01 + numero.ss01.glif + o + o.glif + o-cy + o-cy.glif + o-cy.accented + o-cy.accented.glif + oBinocular-cy + oB_inocular-cy.glif + oDoubleMonocular-cy + oD_oubleM_onocular-cy.glif + oMonocular-cy + oM_onocular-cy.glif + oacute + oacute.glif + obarcyr + obarcyr.glif + obardieresiscyr + obardieresiscyr.glif + obreve + obreve.glif + ocircumflex + ocircumflex.glif + odieresis + odieresis.glif + odieresiscyr + odieresiscyr.glif + oe + oe.glif + oe.ss01 + oe.ss01.glif + ogonek + ogonek.glif + ograve + ograve.glif + ohungarumlaut + ohungarumlaut.glif + omacron + omacron.glif + omegaBroad-cy + omegaB_road-cy.glif + omegacyr + omegacyr.glif + omegaroundcyr + omegaroundcyr.glif + omegatitlocyr + omegatitlocyr.glif + omultiocular-cy + omultiocular-cy.glif + omultiocular-cy.alt + omultiocular-cy.alt.glif + one + one.glif + one.osf + one.osf.glif + one.tf + one.tf.glif + onehalf + onehalf.glif + onequarter + onequarter.glif + onesuperior + onesuperior.glif + ordfeminine + ordfeminine.glif + ordmasculine + ordmasculine.glif + oslash + oslash.glif + oslashacute + oslashacute.glif + otcyr + otcyr.glif + otilde + otilde.glif + p + p.glif + p.ss01 + p.ss01.glif + palatcombcyr + palatcombcyr.glif + palochkacyr + palochkacyr.glif + paragraph + paragraph.glif + parenleft + parenleft.glif + parenleft.case + parenleft.case.glif + parenright + parenright.glif + parenright.case + parenright.case.glif + partialdiff + partialdiff.glif + pe-cy + pe-cy.glif + pe-cy.BGR + pe-cy.B_G_R_.glif + pe-cy.SRB + pe-cy.S_R_B_.glif + pehookcyr + pehookcyr.glif + percent + percent.glif + period + period.glif + periodcentered + periodcentered.glif + perthousand + perthousand.glif + petailcyr + petailcyr.glif + pi + pi.glif + plus + plus.glif + plusminus + plusminus.glif + pokrytiecombcyr + pokrytiecombcyr.glif + product + product.glif + proportional + proportional.glif + psicyr + psicyr.glif + q + q.glif + q.ss01 + q.ss01.glif + qacyr + qacyr.glif + question + question.glif + questiondown + questiondown.glif + questiondown.case + questiondown.case.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 + radical + radical.glif + rcaron + rcaron.glif + rcommaaccent + rcommaaccent.glif + registered + registered.glif + reversedzecyr + reversedzecyr.glif + rhacyr + rhacyr.glif + ring + ring.glif + ring.case + ring.case.glif + rookblack + rookblack.glif + ruble + ruble.glif + s + s.glif + sacute + sacute.glif + scaron + scaron.glif + scedilla + scedilla.glif + schwacyr + schwacyr.glif + schwadieresiscyr + schwadieresiscyr.glif + scircumflex + scircumflex.glif + scommaaccent + scommaaccent.glif + second + second.glif + section + section.glif + semicolon + semicolon.glif + semicolon.case + semicolon.case.glif + semisoftcyr + semisoftcyr.glif + seven + seven.glif + seven.osf + seven.osf.glif + seven.tf + seven.tf.glif + sha-cy + sha-cy.glif + sha-cy.BGR + sha-cy.B_G_R_.glif + shcha-cy + shcha-cy.glif + shcha-cy.BGR + shcha-cy.B_G_R_.glif + shhacyr + shhacyr.glif + shhatailcyr + shhatailcyr.glif + shwe-cy + shwe-cy.glif + six + six.glif + six.osf + six.osf.glif + six.tf + six.tf.glif + sjekomicyr + sjekomicyr.glif + slash + slash.glif + slash.case + slash.case.glif + softsign-cy + softsign-cy.glif + softsign-cy.BGR + softsign-cy.B_G_R_.glif + softsign-cy.ss01 + softsign-cy.ss01.glif + space + space.glif + spadewhite + spadewhite.glif + sterling + sterling.glif + summation + summation.glif + t + t.glif + t.ss01 + t.ss01.glif + tbar + tbar.glif + tbar.ss01 + tbar.ss01.glif + tcaron + tcaron.glif + tcaron.ss01 + tcaron.ss01.glif + tcedilla + tcedilla.glif + tcedilla.ss01 + tcedilla.ss01.glif + tche-cy + tche-cy.glif + tcommaaccent + tcommaaccent.glif + tcommaaccent.ss01 + tcommaaccent.ss01.glif + te-cy + te-cy.glif + te-cy.BGR + te-cy.B_G_R_.glif + te-cy.SRB + te-cy.S_R_B_.glif + te-cy.ss01 + te-cy.ss01.glif + tenge + tenge.glif + tenmillionscomb-cy + tenmillionscomb-cy.glif + tetailcyr + tetailcyr.glif + tetsecyr + tetsecyr.glif + tewithmiddlehook-cy + tewithmiddlehook-cy.glif + thorn + thorn.glif + thousandmillionscomb-cy + thousandmillionscomb-cy.glif + thousandscyr + thousandscyr.glif + thousandscyr.dnom + thousandscyr.dnom.glif + three + three.glif + three.osf + three.osf.glif + three.tf + three.tf.glif + threequarters + threequarters.glif + threesuperior + threesuperior.glif + tilde + tilde.glif + tilde.case + tilde.case.glif + titlocombcyr + titlocombcyr.glif + tjekomicyr + tjekomicyr.glif + trademark + trademark.glif + tse-cy + tse-cy.glif + tse-cy.BGR + tse-cy.B_G_R_.glif + tseReversed-cy + tseR_eversed-cy.glif + tshecyr + tshecyr.glif + tsse-cy + tsse-cy.glif + tswe-cy + tswe-cy.glif + twe-cy + twe-cy.glif + two + two.glif + two.osf + two.osf.glif + two.tf + two.tf.glif + twosuperior + twosuperior.glif + u + u.glif + u-cy + u-cy.glif + u-cy.accented + u-cy.accented.glif + uacute + uacute.glif + uacutedblcyr + uacutedblcyr.glif + ubreve + ubreve.glif + ucircumflex + ucircumflex.glif + udieresis + udieresis.glif + udieresiscyr + udieresiscyr.glif + ugrave + ugrave.glif + uhungarumlaut + uhungarumlaut.glif + ukMonograph-cy + ukM_onograph-cy.glif + ukcyr + ukcyr.glif + umacron + umacron.glif + umacroncyr + umacroncyr.glif + underscore + underscore.glif + uni1C80 + uni1C_80.glif + uni1C81 + uni1C_81.glif + uni1C82 + uni1C_82.glif + uni1C83 + uni1C_83.glif + uni1C84 + uni1C_84.glif + uni1C85 + uni1C_85.glif + uni1C86 + uni1C_86.glif + uni1C87 + uni1C_87.glif + uni1C88 + uni1C_88.glif + uni1EBC + uni1E_B_C_.glif + uni1EBD + uni1E_B_D_.glif + uni2010 + uni2010.glif + uni2DEE + uni2D_E_E_.glif + uni2DEE.case + uni2D_E_E_.case.glif + uniE000 + uniE_000.glif + uniE000.alt + uniE_000.alt.glif + uniE01A + uniE_01A_.glif + uniF43A + uniF_43A_.glif + uniF43B + uniF_43B_.glif + uniF45D + uniF_45D_.glif + uniF45E + uniF_45E_.glif + uniF45F + uniF_45F_.glif + uniF475 + uniF_475.glif + uniF476 + uniF_476.glif + uniF477 + uniF_477.glif + uniF478 + uniF_478.glif + uniF479 + uniF_479.glif + uniF498 + uniF_498.glif + uniF499 + uniF_499.glif + uniF49A + uniF_49A_.glif + uniF49B + uniF_49B_.glif + uniF49C + uniF_49C_.glif + uniF49D + uniF_49D_.glif + uniF49E + uniF_49E_.glif + uniF49F + uniF_49F_.glif + uniF4C6 + uniF_4C_6.glif + uniF4C7 + uniF_4C_7.glif + uniF4CC + uniF_4C_C_.glif + uniF4CD + uniF_4C_D_.glif + uniF4D2 + uniF_4D_2.glif + uniF4D3 + uniF_4D_3.glif + uniF4D4 + uniF_4D_4.glif + uniF4D5 + uniF_4D_5.glif + uniF4D6 + uniF_4D_6.glif + uniF4D7 + uniF_4D_7.glif + uniF4D8 + uniF_4D_8.glif + uniF4D9 + uniF_4D_9.glif + uniF50E + uniF_50E_.glif + uniF50F + uniF_50F_.glif + uniF510 + uniF_510.glif + uniF511 + uniF_511.glif + uniF512 + uniF_512.glif + uniF513 + uniF_513.glif + uniF514 + uniF_514.glif + uniF515 + uniF_515.glif + uniF516 + uniF_516.glif + uniF517 + uniF_517.glif + uniF518 + uniF_518.glif + uniF519 + uniF_519.glif + uniF51A + uniF_51A_.glif + uniF51B + uniF_51B_.glif + uniF51C + uniF_51C_.glif + uniF51D + uniF_51D_.glif + uniF51E + uniF_51E_.glif + uniF51F + uniF_51F_.glif + uniF521 + uniF_521.glif + uniF522 + uniF_522.glif + uniF523 + uniF_523.glif + uniF524 + uniF_524.glif + uniF525 + uniF_525.glif + uniF526 + uniF_526.glif + uniF527 + uniF_527.glif + uniF528 + uniF_528.glif + uniF529 + uniF_529.glif + uniF52A + uniF_52A_.glif + uniF52B + uniF_52B_.glif + uniF52C + uniF_52C_.glif + uniF52D + uniF_52D_.glif + uniF52E + uniF_52E_.glif + uniF52F + uniF_52F_.glif + uniF532 + uniF_532.glif + uniF533 + uniF_533.glif + uniF536 + uniF_536.glif + uniF537 + uniF_537.glif + uniF538 + uniF_538.glif + uniF539 + uniF_539.glif + uniF830 + uniF_830.glif + uniF831 + uniF_831.glif + uniF833 + uniF_833.glif + uniF834 + uniF_834.glif + uniF839 + uniF_839.glif + uniF83A + uniF_83A_.glif + uniF86F + uniF_86F_.glif + uniF870 + uniF_870.glif + uniF872 + uniF_872.glif + uniF873 + uniF_873.glif + uniF875 + uniF_875.glif + uniF876 + uniF_876.glif + uniF878 + uniF_878.glif + uniF879 + uniF_879.glif + uniF87B + uniF_87B_.glif + uniF87C + uniF_87C_.glif + uniF87E + uniF_87E_.glif + uniF87F + uniF_87F_.glif + uogonek + uogonek.glif + uring + uring.glif + ushort-cy + ushort-cy.glif + ustraightcyr + ustraightcyr.glif + ustraightstrokecyr + ustraightstrokecyr.glif + utilde + utilde.glif + v + v.glif + ve-cy + ve-cy.glif + ve-cy.BGR + ve-cy.B_G_R_.glif + ve-cy.ss01 + ve-cy.ss01.glif + virgo + virgo.glif + vzmetcomb-cy + vzmetcomb-cy.glif + w + w.glif + wacute + wacute.glif + wcircumflex + wcircumflex.glif + wdieresis + wdieresis.glif + wecyr + wecyr.glif + wgrave + wgrave.glif + x + x.glif + xatailcyr + xatailcyr.glif + y + y.glif + yacute + yacute.glif + yaecyr + yaecyr.glif + yatIotified-cy + yatI_otified-cy.glif + yatcyr + yatcyr.glif + yatcyr.BGR + yatcyr.B_G_R_.glif + ycircumflex + ycircumflex.glif + ydieresis + ydieresis.glif + yen + yen.glif + yen.ss01 + yen.ss01.glif + yerNeutral-cy + yerN_eutral-cy.glif + yeru-cy + yeru-cy.glif + yeru-cy.accented + yeru-cy.accented.glif + yeru-cy.ss01 + yeru-cy.ss01.glif + yeruBackyer-cy + yeruB_ackyer-cy.glif + yi-cy + yi-cy.glif + yi-cy.alt + yi-cy.alt.glif + ylongdieresiscyr + ylongdieresiscyr.glif + yn-cy + yn-cy.glif + yuReversed-cy + yuR_eversed-cy.glif + yusBlended-cy + yusB_lended-cy.glif + yusClosedlittle-cy + yusC_losedlittle-cy.glif + yusbigcyr + yusbigcyr.glif + yusbigiotifiedcyr + yusbigiotifiedcyr.glif + yusbigiotifiedcyr.BGR + yusbigiotifiedcyr.B_G_R_.glif + yusiotifiedClosedLittle-cy + yusiotifiedC_losedL_ittle-cy.glif + yuslittlecyr + yuslittlecyr.glif + yuslittleiotifiedcyr + yuslittleiotifiedcyr.glif + z + z.glif + zacute + zacute.glif + zcaron + zcaron.glif + zdotaccent + zdotaccent.glif + ze-cy + ze-cy.glif + ze-cy.BGR + ze-cy.B_G_R_.glif + zedieresiscyr + zedieresiscyr.glif + zemlya-cy + zemlya-cy.glif + zero + zero.glif + zero.osf + zero.osf.glif + zero.tf + zero.tf.glif + zetailcyr + zetailcyr.glif + zetailcyr.BSH + zetailcyr.B_S_H_.glif + zhe-cy + zhe-cy.glif + zhe-cy.BGR + zhe-cy.B_G_R_.glif + zhebrevecyr + zhebrevecyr.glif + zhedieresiscyr + zhedieresiscyr.glif + zhetailcyr + zhetailcyr.glif + zhwe-cy + zhwe-cy.glif + zjekomicyr + zjekomicyr.glif + + diff --git a/sources/FixelText-Regular.ufo/glyphs/copyright.glif b/sources/FixelText-Regular.ufo/glyphs/copyright.glif new file mode 100644 index 00000000..5a399d02 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/copyright.glif @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/crossedo-cy.glif b/sources/FixelText-Regular.ufo/glyphs/crossedo-cy.glif new file mode 100644 index 00000000..e53a8970 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/crossedo-cy.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + com.fontlab.recipe + o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/crossedswords.glif b/sources/FixelText-Regular.ufo/glyphs/crossedswords.glif new file mode 100644 index 00000000..078cad90 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/crossedswords.glif @@ -0,0 +1,103 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/currency.glif b/sources/FixelText-Regular.ufo/glyphs/currency.glif new file mode 100644 index 00000000..d809c6a0 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/currency.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/d.glif b/sources/FixelText-Regular.ufo/glyphs/d.glif new file mode 100644 index 00000000..0634fdb4 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/d.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/d.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/d.ss01.glif new file mode 100644 index 00000000..49e804ba --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/d.ss01.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/dagger.glif b/sources/FixelText-Regular.ufo/glyphs/dagger.glif new file mode 100644 index 00000000..5926a271 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/dagger.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/daggerdbl.glif b/sources/FixelText-Regular.ufo/glyphs/daggerdbl.glif new file mode 100644 index 00000000..4748fe63 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/daggerdbl.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/dcaron.glif b/sources/FixelText-Regular.ufo/glyphs/dcaron.glif new file mode 100644 index 00000000..1130b4b4 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/dcaron.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + d+caron.salt + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/dcaron.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/dcaron.ss01.glif new file mode 100644 index 00000000..9356af9e --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/dcaron.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + d.ss01+caron.salt + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/dchecyr.glif b/sources/FixelText-Regular.ufo/glyphs/dchecyr.glif new file mode 100644 index 00000000..f815d950 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/dchecyr.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + д+10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/dcroat.glif b/sources/FixelText-Regular.ufo/glyphs/dcroat.glif new file mode 100644 index 00000000..299ae0e1 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/dcroat.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + d + com.fontlab.metricsRight + |hbar + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/dcroat.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/dcroat.ss01.glif new file mode 100644 index 00000000..2ba186e9 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/dcroat.ss01.glif @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + d.ss01 + com.fontlab.metricsRight + |hbar + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/de-cy.B_G_R_.glif b/sources/FixelText-Regular.ufo/glyphs/de-cy.B_G_R_.glif new file mode 100644 index 00000000..05cdd3c1 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/de-cy.B_G_R_.glif @@ -0,0 +1,77 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + q + com.fontlab.metricsRight + q + com.fontlab.recipe + uni1C81 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/de-cy.glif b/sources/FixelText-Regular.ufo/glyphs/de-cy.glif new file mode 100644 index 00000000..2c46c804 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/de-cy.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/de-cy.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/de-cy.ss01.glif new file mode 100644 index 00000000..b007f268 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/de-cy.ss01.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/deS_oft-cy.glif b/sources/FixelText-Regular.ufo/glyphs/deS_oft-cy.glif new file mode 100644 index 00000000..e11dd5b6 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/deS_oft-cy.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + д + com.fontlab.metricsRight + ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/degree.glif b/sources/FixelText-Regular.ufo/glyphs/degree.glif new file mode 100644 index 00000000..1cb338f7 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/degree.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/dekomicyr.glif b/sources/FixelText-Regular.ufo/glyphs/dekomicyr.glif new file mode 100644 index 00000000..9408e823 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/dekomicyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + d + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/diamondwhite-misc.glif b/sources/FixelText-Regular.ufo/glyphs/diamondwhite-misc.glif new file mode 100644 index 00000000..5e06be35 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/diamondwhite-misc.glif @@ -0,0 +1,145 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =40 + com.fontlab.metricsRight + =40 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/dieresis.alt.glif b/sources/FixelText-Regular.ufo/glyphs/dieresis.alt.glif new file mode 100644 index 00000000..16898fc9 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/dieresis.alt.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 1,0.6,0.994,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/dieresis.case.glif b/sources/FixelText-Regular.ufo/glyphs/dieresis.case.glif new file mode 100644 index 00000000..6e53feb2 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/dieresis.case.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/dieresis.glif b/sources/FixelText-Regular.ufo/glyphs/dieresis.glif new file mode 100644 index 00000000..f30b1406 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/dieresis.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/dieresisacute.glif b/sources/FixelText-Regular.ufo/glyphs/dieresisacute.glif new file mode 100644 index 00000000..a254ea71 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/dieresisacute.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/dieresiscase.alt.glif b/sources/FixelText-Regular.ufo/glyphs/dieresiscase.alt.glif new file mode 100644 index 00000000..7fdc8747 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/dieresiscase.alt.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 1,0.6,0.994,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/divide.glif b/sources/FixelText-Regular.ufo/glyphs/divide.glif new file mode 100644 index 00000000..3a333acf --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/divide.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/djecyr.glif b/sources/FixelText-Regular.ufo/glyphs/djecyr.glif new file mode 100644 index 00000000..748cdcf7 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/djecyr.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hbar + com.fontlab.metricsRight + h + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/djekomicyr.glif b/sources/FixelText-Regular.ufo/glyphs/djekomicyr.glif new file mode 100644 index 00000000..c8767f75 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/djekomicyr.glif @@ -0,0 +1,73 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + d + com.fontlab.metricsRight + njekomicyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/djerv-cy.glif b/sources/FixelText-Regular.ufo/glyphs/djerv-cy.glif new file mode 100644 index 00000000..e5c06a32 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/djerv-cy.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + r() + com.fontlab.metricsRight + п-30 + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/dollar.glif b/sources/FixelText-Regular.ufo/glyphs/dollar.glif new file mode 100644 index 00000000..80420672 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/dollar.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + S + com.fontlab.metricsRight + S + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/dotaccent.case.glif b/sources/FixelText-Regular.ufo/glyphs/dotaccent.case.glif new file mode 100644 index 00000000..9e9377b1 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/dotaccent.case.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/dotaccent.glif b/sources/FixelText-Regular.ufo/glyphs/dotaccent.glif new file mode 100644 index 00000000..214f420d --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/dotaccent.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/doubleo-cy.glif b/sources/FixelText-Regular.ufo/glyphs/doubleo-cy.glif new file mode 100644 index 00000000..6a704892 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/doubleo-cy.glif @@ -0,0 +1,91 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + com.fontlab.recipe + o_o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/dramsignarmn.glif b/sources/FixelText-Regular.ufo/glyphs/dramsignarmn.glif new file mode 100644 index 00000000..e9906577 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/dramsignarmn.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/dwe-cy.glif b/sources/FixelText-Regular.ufo/glyphs/dwe-cy.glif new file mode 100644 index 00000000..be879342 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/dwe-cy.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + д + com.fontlab.metricsRight + д + com.fontlab.recipe + д + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/dze-cy.glif b/sources/FixelText-Regular.ufo/glyphs/dze-cy.glif new file mode 100644 index 00000000..6aef7cb3 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/dze-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + s + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/dzeR_eversed-cy.glif b/sources/FixelText-Regular.ufo/glyphs/dzeR_eversed-cy.glif new file mode 100644 index 00000000..e3a02153 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/dzeR_eversed-cy.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |s + com.fontlab.metricsRight + |s + com.fontlab.recipe + s + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/dzeabkhcyr.glif b/sources/FixelText-Regular.ufo/glyphs/dzeabkhcyr.glif new file mode 100644 index 00000000..8edbcb95 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/dzeabkhcyr.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + z-30 + com.fontlab.metricsRight + з-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/dzelo-cy.glif b/sources/FixelText-Regular.ufo/glyphs/dzelo-cy.glif new file mode 100644 index 00000000..59dbdf4b --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/dzelo-cy.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/dzhecyr.glif b/sources/FixelText-Regular.ufo/glyphs/dzhecyr.glif new file mode 100644 index 00000000..d1eb923a --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/dzhecyr.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/dzjekomicyr.glif b/sources/FixelText-Regular.ufo/glyphs/dzjekomicyr.glif new file mode 100644 index 00000000..72abb25a --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/dzjekomicyr.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + zjekomicyr + com.fontlab.metricsRight + ц-5 + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/dzwe-cy.glif b/sources/FixelText-Regular.ufo/glyphs/dzwe-cy.glif new file mode 100644 index 00000000..dbe56ef3 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/dzwe-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + s + com.fontlab.metricsRight + s + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/dzze-cy.glif b/sources/FixelText-Regular.ufo/glyphs/dzze-cy.glif new file mode 100644 index 00000000..8c62a03b --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/dzze-cy.glif @@ -0,0 +1,84 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + д + com.fontlab.metricsRight + д-30 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/dzzhecyr.glif b/sources/FixelText-Regular.ufo/glyphs/dzzhecyr.glif new file mode 100644 index 00000000..466f991f --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/dzzhecyr.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + д+5 + com.fontlab.metricsRight + ж+5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/e-cy.accented.glif b/sources/FixelText-Regular.ufo/glyphs/e-cy.accented.glif new file mode 100644 index 00000000..faf5bc3a --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/e-cy.accented.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+acute + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/e-cy.glif b/sources/FixelText-Regular.ufo/glyphs/e-cy.glif new file mode 100644 index 00000000..289859fb --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/e-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + c + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/e-cy.hist.glif b/sources/FixelText-Regular.ufo/glyphs/e-cy.hist.glif new file mode 100644 index 00000000..9ffca36b --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/e-cy.hist.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + c + com.fontlab.recipe + uni1C83 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/e.glif b/sources/FixelText-Regular.ufo/glyphs/e.glif new file mode 100644 index 00000000..f692bf08 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/e.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/e.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/e.ss01.glif new file mode 100644 index 00000000..7ef561ab --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/e.ss01.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + O-5 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/eacute.glif b/sources/FixelText-Regular.ufo/glyphs/eacute.glif new file mode 100644 index 00000000..50ac2050 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/eacute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+acute + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/eacute.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/eacute.ss01.glif new file mode 100644 index 00000000..06582ad8 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/eacute.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+acute + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/ebreve.glif b/sources/FixelText-Regular.ufo/glyphs/ebreve.glif new file mode 100644 index 00000000..071e2749 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/ebreve.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+breve + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/ebreve.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/ebreve.ss01.glif new file mode 100644 index 00000000..426d55ff --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/ebreve.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+breve + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/ecaron.glif b/sources/FixelText-Regular.ufo/glyphs/ecaron.glif new file mode 100644 index 00000000..fa482f24 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/ecaron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+caron + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/ecaron.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/ecaron.ss01.glif new file mode 100644 index 00000000..36876cce --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/ecaron.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+caron + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/ecircumflex.glif b/sources/FixelText-Regular.ufo/glyphs/ecircumflex.glif new file mode 100644 index 00000000..4617c76b --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/ecircumflex.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+circumflex + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/ecircumflex.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/ecircumflex.ss01.glif new file mode 100644 index 00000000..82331165 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/ecircumflex.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+circumflex + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/edieresis.glif b/sources/FixelText-Regular.ufo/glyphs/edieresis.glif new file mode 100644 index 00000000..3254b736 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/edieresis.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsLeft + e + com.fontlab.metricsRight + e + com.fontlab.recipe + e+dieresis + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/edieresis.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/edieresis.ss01.glif new file mode 100644 index 00000000..929eaa5a --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/edieresis.ss01.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsLeft + e + com.fontlab.metricsRight + e + com.fontlab.recipe + e.ss01+dieresis + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/edotaccent.glif b/sources/FixelText-Regular.ufo/glyphs/edotaccent.glif new file mode 100644 index 00000000..49c5e42e --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/edotaccent.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+dotaccent + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/edotaccent.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/edotaccent.ss01.glif new file mode 100644 index 00000000..53160c3e --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/edotaccent.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+dotaccent + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/ef-cy.glif b/sources/FixelText-Regular.ufo/glyphs/ef-cy.glif new file mode 100644 index 00000000..12e64a13 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/ef-cy.glif @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/egrave.glif b/sources/FixelText-Regular.ufo/glyphs/egrave.glif new file mode 100644 index 00000000..5aa80b28 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/egrave.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+grave + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/egrave.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/egrave.ss01.glif new file mode 100644 index 00000000..ef150668 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/egrave.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+grave + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/eight.glif b/sources/FixelText-Regular.ufo/glyphs/eight.glif new file mode 100644 index 00000000..f9c335bc --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/eight.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/eight.osf.glif b/sources/FixelText-Regular.ufo/glyphs/eight.osf.glif new file mode 100644 index 00000000..5c060186 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/eight.osf.glif @@ -0,0 +1,15 @@ + + + + + + + + + com.fontlab.metricsLeft + eight + com.fontlab.metricsRight + eight + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/eight.tf.glif b/sources/FixelText-Regular.ufo/glyphs/eight.tf.glif new file mode 100644 index 00000000..a53113d0 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/eight.tf.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/eiotifiedcyr.B_G_R_.glif b/sources/FixelText-Regular.ufo/glyphs/eiotifiedcyr.B_G_R_.glif new file mode 100644 index 00000000..81a035e6 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/eiotifiedcyr.B_G_R_.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + c + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/eiotifiedcyr.glif b/sources/FixelText-Regular.ufo/glyphs/eiotifiedcyr.glif new file mode 100644 index 00000000..7030a0ae --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/eiotifiedcyr.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + c + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/el-cy.B_G_R_.glif b/sources/FixelText-Regular.ufo/glyphs/el-cy.B_G_R_.glif new file mode 100644 index 00000000..967c7494 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/el-cy.B_G_R_.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + v + com.fontlab.metricsRight + v + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/el-cy.glif b/sources/FixelText-Regular.ufo/glyphs/el-cy.glif new file mode 100644 index 00000000..c93b586f --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/el-cy.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/el-cy.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/el-cy.ss01.glif new file mode 100644 index 00000000..fece5c39 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/el-cy.ss01.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/elS_oft-cy.glif b/sources/FixelText-Regular.ufo/glyphs/elS_oft-cy.glif new file mode 100644 index 00000000..08028426 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/elS_oft-cy.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/elhookcyr.glif b/sources/FixelText-Regular.ufo/glyphs/elhookcyr.glif new file mode 100644 index 00000000..04894865 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/elhookcyr.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + н + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/ellipsis.glif b/sources/FixelText-Regular.ufo/glyphs/ellipsis.glif new file mode 100644 index 00000000..77bf972d --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/ellipsis.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/elmiddlehookcyr.glif b/sources/FixelText-Regular.ufo/glyphs/elmiddlehookcyr.glif new file mode 100644 index 00000000..f1b2b9fd --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/elmiddlehookcyr.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + enmiddlehookcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/elsharptailcyr.glif b/sources/FixelText-Regular.ufo/glyphs/elsharptailcyr.glif new file mode 100644 index 00000000..86fe4e82 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/elsharptailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + ensharptailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/eltailcyr.glif b/sources/FixelText-Regular.ufo/glyphs/eltailcyr.glif new file mode 100644 index 00000000..24402cad --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/eltailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/em-cy.glif b/sources/FixelText-Regular.ufo/glyphs/em-cy.glif new file mode 100644 index 00000000..88c87f57 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/em-cy.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/emS_oft-cy.glif b/sources/FixelText-Regular.ufo/glyphs/emS_oft-cy.glif new file mode 100644 index 00000000..cc524250 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/emS_oft-cy.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + м + com.fontlab.metricsRight + ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/emacron.glif b/sources/FixelText-Regular.ufo/glyphs/emacron.glif new file mode 100644 index 00000000..f9f3a016 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/emacron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+macron + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/emacron.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/emacron.ss01.glif new file mode 100644 index 00000000..2b94cb65 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/emacron.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+macron + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/emdash.case.glif b/sources/FixelText-Regular.ufo/glyphs/emdash.case.glif new file mode 100644 index 00000000..8e3164a7 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/emdash.case.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/emdash.glif b/sources/FixelText-Regular.ufo/glyphs/emdash.glif new file mode 100644 index 00000000..1421c6b3 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/emdash.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/emsharptailcyr.glif b/sources/FixelText-Regular.ufo/glyphs/emsharptailcyr.glif new file mode 100644 index 00000000..7c95a1ee --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/emsharptailcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + м + com.fontlab.metricsRight + ensharptailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/en-cy.glif b/sources/FixelText-Regular.ufo/glyphs/en-cy.glif new file mode 100644 index 00000000..130cfbae --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/en-cy.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/enclosingcirclecomb.glif b/sources/FixelText-Regular.ufo/glyphs/enclosingcirclecomb.glif new file mode 100644 index 00000000..3e73d379 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/enclosingcirclecomb.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/endash.case.glif b/sources/FixelText-Regular.ufo/glyphs/endash.case.glif new file mode 100644 index 00000000..668c97f0 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/endash.case.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/endash.glif b/sources/FixelText-Regular.ufo/glyphs/endash.glif new file mode 100644 index 00000000..f0037838 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/endash.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/eng.glif b/sources/FixelText-Regular.ufo/glyphs/eng.glif new file mode 100644 index 00000000..3f2a644a --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/eng.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + n + com.fontlab.metricsRight + dotlessj + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/engecyr.glif b/sources/FixelText-Regular.ufo/glyphs/engecyr.glif new file mode 100644 index 00000000..d350501e --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/engecyr.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/enhookcyr.glif b/sources/FixelText-Regular.ufo/glyphs/enhookcyr.glif new file mode 100644 index 00000000..89841ae4 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/enhookcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/enhookleftcyr.glif b/sources/FixelText-Regular.ufo/glyphs/enhookleftcyr.glif new file mode 100644 index 00000000..6cc170e2 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/enhookleftcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + j + com.fontlab.metricsRight + н + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/enmiddlehookcyr.glif b/sources/FixelText-Regular.ufo/glyphs/enmiddlehookcyr.glif new file mode 100644 index 00000000..f039fcf5 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/enmiddlehookcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + softsign-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/ensharptailcyr.glif b/sources/FixelText-Regular.ufo/glyphs/ensharptailcyr.glif new file mode 100644 index 00000000..40503658 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/ensharptailcyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + д + com.fontlab.recipe + entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/entailcyr.glif b/sources/FixelText-Regular.ufo/glyphs/entailcyr.glif new file mode 100644 index 00000000..5876ab5b --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/entailcyr.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + ц + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/eogonek.glif b/sources/FixelText-Regular.ufo/glyphs/eogonek.glif new file mode 100644 index 00000000..19f3e44c --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/eogonek.glif @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + e+ogonek + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/eogonek.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/eogonek.ss01.glif new file mode 100644 index 00000000..8bb80af2 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/eogonek.ss01.glif @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + e.ss01+ogonek + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/equal.glif b/sources/FixelText-Regular.ufo/glyphs/equal.glif new file mode 100644 index 00000000..e0f1c736 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/equal.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/er-cy.glif b/sources/FixelText-Regular.ufo/glyphs/er-cy.glif new file mode 100644 index 00000000..a57acb74 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/er-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + p + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/er-cy.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/er-cy.ss01.glif new file mode 100644 index 00000000..da3298fc --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/er-cy.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + p.ss01 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/ereversed-cy.accented.glif b/sources/FixelText-Regular.ufo/glyphs/ereversed-cy.accented.glif new file mode 100644 index 00000000..60bd045a --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/ereversed-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + э+acute + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/ereversed-cy.glif b/sources/FixelText-Regular.ufo/glyphs/ereversed-cy.glif new file mode 100644 index 00000000..02ff36a0 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/ereversed-cy.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |c + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/ereverseddieresiscyr.glif b/sources/FixelText-Regular.ufo/glyphs/ereverseddieresiscyr.glif new file mode 100644 index 00000000..3fc96967 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/ereverseddieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ereversed-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/ertickcyr.glif b/sources/FixelText-Regular.ufo/glyphs/ertickcyr.glif new file mode 100644 index 00000000..ff86031b --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/ertickcyr.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + p + com.fontlab.metricsRight + p + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/es-cy.glif b/sources/FixelText-Regular.ufo/glyphs/es-cy.glif new file mode 100644 index 00000000..2de2bd38 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/es-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/estailcyr.B_S_H_.glif b/sources/FixelText-Regular.ufo/glyphs/estailcyr.B_S_H_.glif new file mode 100644 index 00000000..9ae8b8dc --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/estailcyr.B_S_H_.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + c + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/estailcyr.C_H_U_.glif b/sources/FixelText-Regular.ufo/glyphs/estailcyr.C_H_U_.glif new file mode 100644 index 00000000..e6a3b601 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/estailcyr.C_H_U_.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+cedilla + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/estailcyr.glif b/sources/FixelText-Regular.ufo/glyphs/estailcyr.glif new file mode 100644 index 00000000..f9637d53 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/estailcyr.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + с + com.fontlab.metricsRight + с + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/estimated.glif b/sources/FixelText-Regular.ufo/glyphs/estimated.glif new file mode 100644 index 00000000..dc26f3d3 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/estimated.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/eth.glif b/sources/FixelText-Regular.ufo/glyphs/eth.glif new file mode 100644 index 00000000..e762c6ef --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/eth.glif @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/eturned.glif b/sources/FixelText-Regular.ufo/glyphs/eturned.glif new file mode 100644 index 00000000..630719d8 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/eturned.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + schwacyr + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/euro.glif b/sources/FixelText-Regular.ufo/glyphs/euro.glif new file mode 100644 index 00000000..58a72253 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/euro.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + C + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/exclam.glif b/sources/FixelText-Regular.ufo/glyphs/exclam.glif new file mode 100644 index 00000000..ebaa8790 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/exclam.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/exclamdown.case.glif b/sources/FixelText-Regular.ufo/glyphs/exclamdown.case.glif new file mode 100644 index 00000000..b0404838 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/exclamdown.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + exclamdown + com.fontlab.metricsRight + exclamdown + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/exclamdown.glif b/sources/FixelText-Regular.ufo/glyphs/exclamdown.glif new file mode 100644 index 00000000..033c59fd --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/exclamdown.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/f.glif b/sources/FixelText-Regular.ufo/glyphs/f.glif new file mode 100644 index 00000000..b1833a37 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/f.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/f.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/f.ss01.glif new file mode 100644 index 00000000..bac4645b --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/f.ss01.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/f_f.glif b/sources/FixelText-Regular.ufo/glyphs/f_f.glif new file mode 100644 index 00000000..68d2e6a9 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/f_f.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f + com.fontlab.metricsRight + f + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/f_f.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/f_f.ss01.glif new file mode 100644 index 00000000..c58d50f4 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/f_f.ss01.glif @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f.ss01 + com.fontlab.metricsRight + f.ss01 + com.fontlab.recipe + f.ss01_f.ss01 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/f_f_i.glif b/sources/FixelText-Regular.ufo/glyphs/f_f_i.glif new file mode 100644 index 00000000..e1f0db14 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/f_f_i.glif @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f + com.fontlab.metricsRight + i + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/f_f_i.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/f_f_i.ss01.glif new file mode 100644 index 00000000..5b8c8720 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/f_f_i.ss01.glif @@ -0,0 +1,88 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f.ss01 + com.fontlab.metricsRight + i + com.fontlab.recipe + f.ss01_f.ss01_i + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/f_f_l.glif b/sources/FixelText-Regular.ufo/glyphs/f_f_l.glif new file mode 100644 index 00000000..c9575364 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/f_f_l.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f + com.fontlab.metricsRight + l + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/f_f_l.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/f_f_l.ss01.glif new file mode 100644 index 00000000..715ad206 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/f_f_l.ss01.glif @@ -0,0 +1,86 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f.ss01 + com.fontlab.metricsRight + l.ss01 + com.fontlab.recipe + f.ss01_f.ss01_l.ss01 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/fi.glif b/sources/FixelText-Regular.ufo/glyphs/fi.glif new file mode 100644 index 00000000..60065e0b --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/fi.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f + com.fontlab.metricsRight + i + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/fi.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/fi.ss01.glif new file mode 100644 index 00000000..bb584590 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/fi.ss01.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f.ss01 + com.fontlab.metricsRight + i + com.fontlab.recipe + f.ss01_i + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/fitacyr.glif b/sources/FixelText-Regular.ufo/glyphs/fitacyr.glif new file mode 100644 index 00000000..08856b35 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/fitacyr.glif @@ -0,0 +1,76 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + obarcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/five.glif b/sources/FixelText-Regular.ufo/glyphs/five.glif new file mode 100644 index 00000000..f9196816 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/five.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/five.osf.glif b/sources/FixelText-Regular.ufo/glyphs/five.osf.glif new file mode 100644 index 00000000..8b51ae84 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/five.osf.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + five + com.fontlab.metricsRight + five + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/five.tf.glif b/sources/FixelText-Regular.ufo/glyphs/five.tf.glif new file mode 100644 index 00000000..95e498fb --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/five.tf.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/fl.glif b/sources/FixelText-Regular.ufo/glyphs/fl.glif new file mode 100644 index 00000000..b911006e --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/fl.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f + com.fontlab.metricsRight + l + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/fl.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/fl.ss01.glif new file mode 100644 index 00000000..e86a3278 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/fl.ss01.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f.ss01 + com.fontlab.metricsRight + l.ss01 + com.fontlab.recipe + f.ss01_l.ss01 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/floretteblack.glif b/sources/FixelText-Regular.ufo/glyphs/floretteblack.glif new file mode 100644 index 00000000..d1486562 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/floretteblack.glif @@ -0,0 +1,522 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/floretteoutlinedpetalledblackeight.glif b/sources/FixelText-Regular.ufo/glyphs/floretteoutlinedpetalledblackeight.glif new file mode 100644 index 00000000..852c96bb --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/floretteoutlinedpetalledblackeight.glif @@ -0,0 +1,693 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/florettewhite.glif b/sources/FixelText-Regular.ufo/glyphs/florettewhite.glif new file mode 100644 index 00000000..12f0bccb --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/florettewhite.glif @@ -0,0 +1,417 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/florin.glif b/sources/FixelText-Regular.ufo/glyphs/florin.glif new file mode 100644 index 00000000..bd7e8725 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/florin.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/flower.glif b/sources/FixelText-Regular.ufo/glyphs/flower.glif new file mode 100644 index 00000000..b43e5057 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/flower.glif @@ -0,0 +1,278 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/four.glif b/sources/FixelText-Regular.ufo/glyphs/four.glif new file mode 100644 index 00000000..e915f19d --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/four.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/four.osf.glif b/sources/FixelText-Regular.ufo/glyphs/four.osf.glif new file mode 100644 index 00000000..a45b3be3 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/four.osf.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + four + com.fontlab.metricsRight + four + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/four.tf.glif b/sources/FixelText-Regular.ufo/glyphs/four.tf.glif new file mode 100644 index 00000000..f04bae9e --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/four.tf.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/fraction.glif b/sources/FixelText-Regular.ufo/glyphs/fraction.glif new file mode 100644 index 00000000..6c5e2346 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/fraction.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/g.glif b/sources/FixelText-Regular.ufo/glyphs/g.glif new file mode 100644 index 00000000..65f7d27c --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/g.glif @@ -0,0 +1,94 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/g.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/g.ss01.glif new file mode 100644 index 00000000..71f6113b --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/g.ss01.glif @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/gacute.glif b/sources/FixelText-Regular.ufo/glyphs/gacute.glif new file mode 100644 index 00000000..694562aa --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/gacute.glif @@ -0,0 +1,109 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + g+acute + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/gacute.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/gacute.ss01.glif new file mode 100644 index 00000000..59eccd15 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/gacute.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + g.ss01+acute + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/gbreve.glif b/sources/FixelText-Regular.ufo/glyphs/gbreve.glif new file mode 100644 index 00000000..46badd27 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/gbreve.glif @@ -0,0 +1,119 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + g+breve + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/gbreve.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/gbreve.ss01.glif new file mode 100644 index 00000000..de0a40ef --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/gbreve.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + g.ss01+breve + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/gcircumflex.glif b/sources/FixelText-Regular.ufo/glyphs/gcircumflex.glif new file mode 100644 index 00000000..9da5c355 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/gcircumflex.glif @@ -0,0 +1,113 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + g+circumflex + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/gcircumflex.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/gcircumflex.ss01.glif new file mode 100644 index 00000000..cd9191a1 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/gcircumflex.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + g.ss01+circumflex + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/gcommaaccent.glif b/sources/FixelText-Regular.ufo/glyphs/gcommaaccent.glif new file mode 100644 index 00000000..47e934ad --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/gcommaaccent.glif @@ -0,0 +1,121 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + g+commaaccentcomb.salt + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/gcommaaccent.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/gcommaaccent.ss01.glif new file mode 100644 index 00000000..7d424b96 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/gcommaaccent.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + g.ss01+commaaccentcomb.salt + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/gdotaccent.glif b/sources/FixelText-Regular.ufo/glyphs/gdotaccent.glif new file mode 100644 index 00000000..6fd7e81c --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/gdotaccent.glif @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + g+dotaccent + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/gdotaccent.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/gdotaccent.ss01.glif new file mode 100644 index 00000000..7f65a578 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/gdotaccent.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + g.ss01+dotaccent + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/ge-cy.B_G_R_.glif b/sources/FixelText-Regular.ufo/glyphs/ge-cy.B_G_R_.glif new file mode 100644 index 00000000..1cfe1cde --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/ge-cy.B_G_R_.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |s+5 + com.fontlab.metricsRight + |s+5 + com.fontlab.recipe + dzeReversed-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/ge-cy.S_R_B_.glif b/sources/FixelText-Regular.ufo/glyphs/ge-cy.S_R_B_.glif new file mode 100644 index 00000000..e81bd0a4 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/ge-cy.S_R_B_.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + iota-cy+macron + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/ge-cy.glif b/sources/FixelText-Regular.ufo/glyphs/ge-cy.glif new file mode 100644 index 00000000..f2fd51e2 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/ge-cy.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + т + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/gehookcyr.glif b/sources/FixelText-Regular.ufo/glyphs/gehookcyr.glif new file mode 100644 index 00000000..c614ec23 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/gehookcyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + г + com.fontlab.metricsRight + enmiddlehookcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/gehookstrokecyr.glif b/sources/FixelText-Regular.ufo/glyphs/gehookstrokecyr.glif new file mode 100644 index 00000000..d11d6f44 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/gehookstrokecyr.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + gestrokecyr + com.fontlab.metricsRight + gestrokecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/germandbls.glif b/sources/FixelText-Regular.ufo/glyphs/germandbls.glif new file mode 100644 index 00000000..5e6d0da4 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/germandbls.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + h-5 + com.fontlab.metricsRight + з + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/germandbls.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/germandbls.ss01.glif new file mode 100644 index 00000000..0418d12d --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/germandbls.ss01.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f.ss01 + com.fontlab.metricsRight + з + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/gestrokecyr.B_S_H_.glif b/sources/FixelText-Regular.ufo/glyphs/gestrokecyr.B_S_H_.glif new file mode 100644 index 00000000..515b779a --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/gestrokecyr.B_S_H_.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + г + com.fontlab.metricsRight + gestrokecyr + com.fontlab.recipe + gestrokecyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/gestrokecyr.glif b/sources/FixelText-Regular.ufo/glyphs/gestrokecyr.glif new file mode 100644 index 00000000..a6ebaa98 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/gestrokecyr.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + г + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/getailcyr.glif b/sources/FixelText-Regular.ufo/glyphs/getailcyr.glif new file mode 100644 index 00000000..19a65d05 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/getailcyr.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + г + com.fontlab.metricsRight + г + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/gheupturn-cy.glif b/sources/FixelText-Regular.ufo/glyphs/gheupturn-cy.glif new file mode 100644 index 00000000..76ee75d9 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/gheupturn-cy.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + г + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/gjecyr.S_R_B_.glif b/sources/FixelText-Regular.ufo/glyphs/gjecyr.S_R_B_.glif new file mode 100644 index 00000000..d3b27908 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/gjecyr.S_R_B_.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + iota-cy+macronacute.SRB + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/gjecyr.glif b/sources/FixelText-Regular.ufo/glyphs/gjecyr.glif new file mode 100644 index 00000000..f6d59c4f --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/gjecyr.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/grave.case.glif b/sources/FixelText-Regular.ufo/glyphs/grave.case.glif new file mode 100644 index 00000000..3cf9ebcf --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/grave.case.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/grave.glif b/sources/FixelText-Regular.ufo/glyphs/grave.glif new file mode 100644 index 00000000..49a2d120 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/grave.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/greater.glif b/sources/FixelText-Regular.ufo/glyphs/greater.glif new file mode 100644 index 00000000..988b05d4 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/greater.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |less + com.fontlab.metricsRight + |less + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/greaterequal.glif b/sources/FixelText-Regular.ufo/glyphs/greaterequal.glif new file mode 100644 index 00000000..0cf61cad --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/greaterequal.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/guillemetleft.case.glif b/sources/FixelText-Regular.ufo/glyphs/guillemetleft.case.glif new file mode 100644 index 00000000..612877b5 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/guillemetleft.case.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + guilsinglleft + com.fontlab.metricsRight + guilsinglleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/guillemetleft.glif b/sources/FixelText-Regular.ufo/glyphs/guillemetleft.glif new file mode 100644 index 00000000..d521d2f3 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/guillemetleft.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + guilsinglleft + com.fontlab.metricsRight + guilsinglleft + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/guillemetright.case.glif b/sources/FixelText-Regular.ufo/glyphs/guillemetright.case.glif new file mode 100644 index 00000000..50d5f064 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/guillemetright.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |guillemetleft.case + com.fontlab.metricsRight + |guillemetleft.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/guillemetright.glif b/sources/FixelText-Regular.ufo/glyphs/guillemetright.glif new file mode 100644 index 00000000..ca4f8166 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/guillemetright.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |guilsinglleft + com.fontlab.metricsRight + |guilsinglleft + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/guilsinglleft.case.glif b/sources/FixelText-Regular.ufo/glyphs/guilsinglleft.case.glif new file mode 100644 index 00000000..b0757400 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/guilsinglleft.case.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/guilsinglleft.glif b/sources/FixelText-Regular.ufo/glyphs/guilsinglleft.glif new file mode 100644 index 00000000..21a2827e --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/guilsinglleft.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/guilsinglright.case.glif b/sources/FixelText-Regular.ufo/glyphs/guilsinglright.case.glif new file mode 100644 index 00000000..18888e60 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/guilsinglright.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |guilsinglleft + com.fontlab.metricsRight + |guilsinglleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/guilsinglright.glif b/sources/FixelText-Regular.ufo/glyphs/guilsinglright.glif new file mode 100644 index 00000000..e412aacd --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/guilsinglright.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + |guilsinglleft + com.fontlab.metricsRight + |guilsinglleft + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/h.glif b/sources/FixelText-Regular.ufo/glyphs/h.glif new file mode 100644 index 00000000..068e033a --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/h.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + com.fontlab.metricsRight + n + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/ha-cy.glif b/sources/FixelText-Regular.ufo/glyphs/ha-cy.glif new file mode 100644 index 00000000..fa46aaba --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/ha-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + x + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/haabkhcyr.glif b/sources/FixelText-Regular.ufo/glyphs/haabkhcyr.glif new file mode 100644 index 00000000..81452dde --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/haabkhcyr.glif @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + |o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/hahookcyr.glif b/sources/FixelText-Regular.ufo/glyphs/hahookcyr.glif new file mode 100644 index 00000000..768bcdd2 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/hahookcyr.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + x + com.fontlab.metricsRight + x + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/hardsign-cy.B_G_R_.glif b/sources/FixelText-Regular.ufo/glyphs/hardsign-cy.B_G_R_.glif new file mode 100644 index 00000000..fc87318b --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/hardsign-cy.B_G_R_.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/hardsign-cy.glif b/sources/FixelText-Regular.ufo/glyphs/hardsign-cy.glif new file mode 100644 index 00000000..cc0202a1 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/hardsign-cy.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/hardsign-cy.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/hardsign-cy.ss01.glif new file mode 100644 index 00000000..0be7ede5 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/hardsign-cy.ss01.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/hastrokecyr.glif b/sources/FixelText-Regular.ufo/glyphs/hastrokecyr.glif new file mode 100644 index 00000000..6d20050f --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/hastrokecyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + x + com.fontlab.metricsRight + x + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/hbar.glif b/sources/FixelText-Regular.ufo/glyphs/hbar.glif new file mode 100644 index 00000000..446e8185 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/hbar.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + h + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/hcircumflex.glif b/sources/FixelText-Regular.ufo/glyphs/hcircumflex.glif new file mode 100644 index 00000000..9f09e46b --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/hcircumflex.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + h+circumflex.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/heart.glif b/sources/FixelText-Regular.ufo/glyphs/heart.glif new file mode 100644 index 00000000..6254b7b0 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/heart.glif @@ -0,0 +1,320 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/heartwhite.glif b/sources/FixelText-Regular.ufo/glyphs/heartwhite.glif new file mode 100644 index 00000000..9ec2b701 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/heartwhite.glif @@ -0,0 +1,189 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =30 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/hryvnia.glif b/sources/FixelText-Regular.ufo/glyphs/hryvnia.glif new file mode 100644 index 00000000..705cc4a0 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/hryvnia.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/hundredmillionscomb-cy.glif b/sources/FixelText-Regular.ufo/glyphs/hundredmillionscomb-cy.glif new file mode 100644 index 00000000..7ae96feb --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/hundredmillionscomb-cy.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/hundredthousandscombcyr.glif b/sources/FixelText-Regular.ufo/glyphs/hundredthousandscombcyr.glif new file mode 100644 index 00000000..7168fa47 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/hundredthousandscombcyr.glif @@ -0,0 +1,141 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/hungarumlaut.case.glif b/sources/FixelText-Regular.ufo/glyphs/hungarumlaut.case.glif new file mode 100644 index 00000000..de8727b4 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/hungarumlaut.case.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/hungarumlaut.glif b/sources/FixelText-Regular.ufo/glyphs/hungarumlaut.glif new file mode 100644 index 00000000..f0b06aa7 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/hungarumlaut.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/hwe-cy.glif b/sources/FixelText-Regular.ufo/glyphs/hwe-cy.glif new file mode 100644 index 00000000..ee7cc9e6 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/hwe-cy.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + h + com.fontlab.metricsRight + h + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/hyphen.case.glif b/sources/FixelText-Regular.ufo/glyphs/hyphen.case.glif new file mode 100644 index 00000000..b4d76756 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/hyphen.case.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.metricsLeft + hyphen + com.fontlab.metricsRight + hyphen + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/hyphen.glif b/sources/FixelText-Regular.ufo/glyphs/hyphen.glif new file mode 100644 index 00000000..cedc140e --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/hyphen.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/i-cy.glif b/sources/FixelText-Regular.ufo/glyphs/i-cy.glif new file mode 100644 index 00000000..19837013 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/i-cy.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + i + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/i.glif b/sources/FixelText-Regular.ufo/glyphs/i.glif new file mode 100644 index 00000000..8357b10e --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/i.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + dotlessi+dotaccent + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/ia-cy.accented.glif b/sources/FixelText-Regular.ufo/glyphs/ia-cy.accented.glif new file mode 100644 index 00000000..c52294f6 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/ia-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + я+acute + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/ia-cy.glif b/sources/FixelText-Regular.ufo/glyphs/ia-cy.glif new file mode 100644 index 00000000..21b7688c --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/ia-cy.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/ia-cy.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/ia-cy.ss01.glif new file mode 100644 index 00000000..cb518434 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/ia-cy.ss01.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/iacute.glif b/sources/FixelText-Regular.ufo/glyphs/iacute.glif new file mode 100644 index 00000000..71092546 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/iacute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + dotlessi+acute + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/ibreve.glif b/sources/FixelText-Regular.ufo/glyphs/ibreve.glif new file mode 100644 index 00000000..20051a04 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/ibreve.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + dotlessi+breve + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/icircumflex.glif b/sources/FixelText-Regular.ufo/glyphs/icircumflex.glif new file mode 100644 index 00000000..7baa33a9 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/icircumflex.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + dotlessi+circumflex + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/idieresis.glif b/sources/FixelText-Regular.ufo/glyphs/idieresis.glif new file mode 100644 index 00000000..5978aa7b --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/idieresis.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + idotless+dieresis.alt + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/idieresiscyr.glif b/sources/FixelText-Regular.ufo/glyphs/idieresiscyr.glif new file mode 100644 index 00000000..d4e69927 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/idieresiscyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ii-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/idotless.glif b/sources/FixelText-Regular.ufo/glyphs/idotless.glif new file mode 100644 index 00000000..c1857293 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/idotless.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/ie-cy.glif b/sources/FixelText-Regular.ufo/glyphs/ie-cy.glif new file mode 100644 index 00000000..b52ee7b9 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/ie-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/ie-cy.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/ie-cy.ss01.glif new file mode 100644 index 00000000..30445241 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/ie-cy.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/iebrevecyr.glif b/sources/FixelText-Regular.ufo/glyphs/iebrevecyr.glif new file mode 100644 index 00000000..9adf3b83 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/iebrevecyr.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+breve + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/iegravecyr.S_R_B_.glif b/sources/FixelText-Regular.ufo/glyphs/iegravecyr.S_R_B_.glif new file mode 100644 index 00000000..38686241 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/iegravecyr.S_R_B_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+grave + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/iegravecyr.glif b/sources/FixelText-Regular.ufo/glyphs/iegravecyr.glif new file mode 100644 index 00000000..ba9ea742 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/iegravecyr.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+grave + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/igrave.glif b/sources/FixelText-Regular.ufo/glyphs/igrave.glif new file mode 100644 index 00000000..829b4e2e --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/igrave.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + dotlessi+grave + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/igravecyr.S_R_B_.glif b/sources/FixelText-Regular.ufo/glyphs/igravecyr.S_R_B_.glif new file mode 100644 index 00000000..7bd06b2e --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/igravecyr.S_R_B_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+grave + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/igravecyr.glif b/sources/FixelText-Regular.ufo/glyphs/igravecyr.glif new file mode 100644 index 00000000..d87a9155 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/igravecyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ii-cy+grave + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/ii-cy.B_G_R_.glif b/sources/FixelText-Regular.ufo/glyphs/ii-cy.B_G_R_.glif new file mode 100644 index 00000000..16e70052 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/ii-cy.B_G_R_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/ii-cy.accented.glif b/sources/FixelText-Regular.ufo/glyphs/ii-cy.accented.glif new file mode 100644 index 00000000..a1f71800 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/ii-cy.accented.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + и+acute + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/ii-cy.glif b/sources/FixelText-Regular.ufo/glyphs/ii-cy.glif new file mode 100644 index 00000000..df878c33 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/ii-cy.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/iishort-cy.B_G_R_.glif b/sources/FixelText-Regular.ufo/glyphs/iishort-cy.B_G_R_.glif new file mode 100644 index 00000000..00b6da76 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/iishort-cy.B_G_R_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/iishort-cy.glif b/sources/FixelText-Regular.ufo/glyphs/iishort-cy.glif new file mode 100644 index 00000000..9ea66ff4 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/iishort-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + icyr+breve + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/ij.glif b/sources/FixelText-Regular.ufo/glyphs/ij.glif new file mode 100644 index 00000000..3f0ace60 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/ij.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + i + com.fontlab.metricsRight + j + com.fontlab.recipe + i_j + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/imacron.glif b/sources/FixelText-Regular.ufo/glyphs/imacron.glif new file mode 100644 index 00000000..49490111 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/imacron.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =5 + com.fontlab.metricsRight + =5 + com.fontlab.recipe + idotless+macron + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/imacroncyr.glif b/sources/FixelText-Regular.ufo/glyphs/imacroncyr.glif new file mode 100644 index 00000000..639b385f --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/imacroncyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ii-cy+macron + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/increment.glif b/sources/FixelText-Regular.ufo/glyphs/increment.glif new file mode 100644 index 00000000..36e39374 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/increment.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/infinity.glif b/sources/FixelText-Regular.ufo/glyphs/infinity.glif new file mode 100644 index 00000000..c6386249 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/infinity.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/integral.glif b/sources/FixelText-Regular.ufo/glyphs/integral.glif new file mode 100644 index 00000000..bdf89ccf --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/integral.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/io-cy.accented.glif b/sources/FixelText-Regular.ufo/glyphs/io-cy.accented.glif new file mode 100644 index 00000000..c098ea2e --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/io-cy.accented.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsLeft + e + com.fontlab.metricsRight + e + com.fontlab.recipe + e+dieresisacute + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/io-cy.glif b/sources/FixelText-Regular.ufo/glyphs/io-cy.glif new file mode 100644 index 00000000..74a4ff6e --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/io-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + edieresis + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/io-cy.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/io-cy.ss01.glif new file mode 100644 index 00000000..9d0c0a97 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/io-cy.ss01.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + edieresis.ss01 + com.schriftgestaltung.Glyphs.ComponentInfo + + + alignment + -1 + index + 0 + name + edieresis.ss01 + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/iogonek.glif b/sources/FixelText-Regular.ufo/glyphs/iogonek.glif new file mode 100644 index 00000000..7ae259c8 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/iogonek.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + i+ogonek + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/iota-cy.glif b/sources/FixelText-Regular.ufo/glyphs/iota-cy.glif new file mode 100644 index 00000000..48c882a1 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/iota-cy.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l.ss01 + com.fontlab.metricsRight + l.ss01 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/iotifieda-cy.B_G_R_.glif b/sources/FixelText-Regular.ufo/glyphs/iotifieda-cy.B_G_R_.glif new file mode 100644 index 00000000..2cdbe32c --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/iotifieda-cy.B_G_R_.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + el-cy.BGR + com.fontlab.recipe + iotifieda-cy + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/iotifieda-cy.glif b/sources/FixelText-Regular.ufo/glyphs/iotifieda-cy.glif new file mode 100644 index 00000000..3b17b732 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/iotifieda-cy.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + yusClosedlittle-cy + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/iotifieda-cy.hist.glif b/sources/FixelText-Regular.ufo/glyphs/iotifieda-cy.hist.glif new file mode 100644 index 00000000..812208db --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/iotifieda-cy.hist.glif @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + reversedzecyr + com.fontlab.metricsRight + a + public.markColor + 0.6,0.997,1,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/ishortsharptailcyr.glif b/sources/FixelText-Regular.ufo/glyphs/ishortsharptailcyr.glif new file mode 100644 index 00000000..dc26d026 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/ishortsharptailcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + й + com.fontlab.metricsRight + ensharptailcyr + com.fontlab.recipe + й + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/itilde.glif b/sources/FixelText-Regular.ufo/glyphs/itilde.glif new file mode 100644 index 00000000..1902262a --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/itilde.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + dotlessi+tilde + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/iu-cy.B_G_R_.glif b/sources/FixelText-Regular.ufo/glyphs/iu-cy.B_G_R_.glif new file mode 100644 index 00000000..76f84bcb --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/iu-cy.B_G_R_.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + o + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/iu-cy.accented.glif b/sources/FixelText-Regular.ufo/glyphs/iu-cy.accented.glif new file mode 100644 index 00000000..c70b53ab --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/iu-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ю+acute + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/iu-cy.glif b/sources/FixelText-Regular.ufo/glyphs/iu-cy.glif new file mode 100644 index 00000000..c4d9f5c0 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/iu-cy.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/izhitsacyr.glif b/sources/FixelText-Regular.ufo/glyphs/izhitsacyr.glif new file mode 100644 index 00000000..34ebf67e --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/izhitsacyr.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + v + com.fontlab.metricsRight + + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/izhitsagravedblcyr.glif b/sources/FixelText-Regular.ufo/glyphs/izhitsagravedblcyr.glif new file mode 100644 index 00000000..3f238bef --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/izhitsagravedblcyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + com.fontlab.metricsLeft + izhitsacyr + com.fontlab.metricsRight + izhitsacyr + com.fontlab.recipe + izhitsacyr+hungarumlaut + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/j.glif b/sources/FixelText-Regular.ufo/glyphs/j.glif new file mode 100644 index 00000000..9b0c1e3d --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/j.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + i + com.fontlab.recipe + dotlessj+dotaccent + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/jcircumflex.glif b/sources/FixelText-Regular.ufo/glyphs/jcircumflex.glif new file mode 100644 index 00000000..af91bc19 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/jcircumflex.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + dotlessj+circumflex + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/jdotless.glif b/sources/FixelText-Regular.ufo/glyphs/jdotless.glif new file mode 100644 index 00000000..cb766db0 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/jdotless.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + l + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/je-cy.glif b/sources/FixelText-Regular.ufo/glyphs/je-cy.glif new file mode 100644 index 00000000..b3e97dbe --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/je-cy.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + j + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/k.glif b/sources/FixelText-Regular.ufo/glyphs/k.glif new file mode 100644 index 00000000..8cbb6f29 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/k.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/ka-cy.B_G_R_.glif b/sources/FixelText-Regular.ufo/glyphs/ka-cy.B_G_R_.glif new file mode 100644 index 00000000..e4ef4660 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/ka-cy.B_G_R_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + k + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/ka-cy.glif b/sources/FixelText-Regular.ufo/glyphs/ka-cy.glif new file mode 100644 index 00000000..151f2d72 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/ka-cy.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + k + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/kaaleutcyr.glif b/sources/FixelText-Regular.ufo/glyphs/kaaleutcyr.glif new file mode 100644 index 00000000..67562702 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/kaaleutcyr.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + k + com.fontlab.metricsRight + k + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/kabashkcyr.glif b/sources/FixelText-Regular.ufo/glyphs/kabashkcyr.glif new file mode 100644 index 00000000..302ea343 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/kabashkcyr.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hardsign-cy + com.fontlab.metricsRight + k + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/kahookcyr.glif b/sources/FixelText-Regular.ufo/glyphs/kahookcyr.glif new file mode 100644 index 00000000..35e75142 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/kahookcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + n + com.fontlab.metricsRight + k+10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/kastrokecyr.glif b/sources/FixelText-Regular.ufo/glyphs/kastrokecyr.glif new file mode 100644 index 00000000..4062888c --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/kastrokecyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hbar + com.fontlab.metricsRight + k + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/katailcyr.glif b/sources/FixelText-Regular.ufo/glyphs/katailcyr.glif new file mode 100644 index 00000000..f2227488 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/katailcyr.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + k + com.fontlab.metricsRight + к-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/kaverticalstrokecyr.glif b/sources/FixelText-Regular.ufo/glyphs/kaverticalstrokecyr.glif new file mode 100644 index 00000000..bb171a01 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/kaverticalstrokecyr.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + k + com.fontlab.metricsRight + k + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/kcommaaccent.glif b/sources/FixelText-Regular.ufo/glyphs/kcommaaccent.glif new file mode 100644 index 00000000..1b568eaf --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/kcommaaccent.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsLeft + k + com.fontlab.metricsRight + k + com.fontlab.recipe + k+commaaccentcomb + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/kgreenlandic.glif b/sources/FixelText-Regular.ufo/glyphs/kgreenlandic.glif new file mode 100644 index 00000000..539d3d4d --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/kgreenlandic.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + kacyr + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/kjecyr.glif b/sources/FixelText-Regular.ufo/glyphs/kjecyr.glif new file mode 100644 index 00000000..0542da6a --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/kjecyr.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/knightblack.glif b/sources/FixelText-Regular.ufo/glyphs/knightblack.glif new file mode 100644 index 00000000..80b8b6b4 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/knightblack.glif @@ -0,0 +1,313 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/knightwhite.glif b/sources/FixelText-Regular.ufo/glyphs/knightwhite.glif new file mode 100644 index 00000000..e9a5d8ea --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/knightwhite.glif @@ -0,0 +1,320 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/koppacyr.glif b/sources/FixelText-Regular.ufo/glyphs/koppacyr.glif new file mode 100644 index 00000000..d7c8d458 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/koppacyr.glif @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + c-20 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/ksicyr.glif b/sources/FixelText-Regular.ufo/glyphs/ksicyr.glif new file mode 100644 index 00000000..23ecb4d5 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/ksicyr.glif @@ -0,0 +1,102 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + з-10 + com.fontlab.metricsRight + з + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/l.glif b/sources/FixelText-Regular.ufo/glyphs/l.glif new file mode 100644 index 00000000..4295061f --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/l.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/l.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/l.ss01.glif new file mode 100644 index 00000000..e52016a2 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/l.ss01.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/lacute.glif b/sources/FixelText-Regular.ufo/glyphs/lacute.glif new file mode 100644 index 00000000..51444049 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/lacute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l+acute.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/lacute.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/lacute.ss01.glif new file mode 100644 index 00000000..bf8b564d --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/lacute.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l.ss01+acute.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/layerinfo.plist b/sources/FixelText-Regular.ufo/glyphs/layerinfo.plist new file mode 100644 index 00000000..8c198655 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/layerinfo.plist @@ -0,0 +1,21 @@ + + + + + lib + + com.fontlab.layer.name + Body + com.fontlab.layer.opacity + 1 + com.fontlab.layer.visible + + com.fontlab.layer.locked + + com.fontlab.layer.service + + com.fontlab.layer.wireframe + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/lcaron.glif b/sources/FixelText-Regular.ufo/glyphs/lcaron.glif new file mode 100644 index 00000000..442a45d1 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/lcaron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l+caron.salt + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/lcaron.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/lcaron.ss01.glif new file mode 100644 index 00000000..6ebbfff9 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/lcaron.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l.ss01+caron.salt + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/lcommaaccent.glif b/sources/FixelText-Regular.ufo/glyphs/lcommaaccent.glif new file mode 100644 index 00000000..37b221d1 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/lcommaaccent.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l+commaaccentcomb + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/lcommaaccent.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/lcommaaccent.ss01.glif new file mode 100644 index 00000000..61e2e002 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/lcommaaccent.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l.ss01+commaaccentcomb + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/ldot.glif b/sources/FixelText-Regular.ufo/glyphs/ldot.glif new file mode 100644 index 00000000..0dd1e8fc --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/ldot.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/ldot.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/ldot.ss01.glif new file mode 100644 index 00000000..041f7fce --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/ldot.ss01.glif @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + l.ss01_periodcentered + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/leo.glif b/sources/FixelText-Regular.ufo/glyphs/leo.glif new file mode 100644 index 00000000..b39e4fac --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/leo.glif @@ -0,0 +1,494 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/less.glif b/sources/FixelText-Regular.ufo/glyphs/less.glif new file mode 100644 index 00000000..2d72bd4b --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/less.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/lessequal.glif b/sources/FixelText-Regular.ufo/glyphs/lessequal.glif new file mode 100644 index 00000000..8ef63e03 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/lessequal.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/lhacyr.glif b/sources/FixelText-Regular.ufo/glyphs/lhacyr.glif new file mode 100644 index 00000000..ba171a36 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/lhacyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + х + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/ljecyr.glif b/sources/FixelText-Regular.ufo/glyphs/ljecyr.glif new file mode 100644 index 00000000..8fbfeaa3 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/ljecyr.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + ь + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/ljecyr.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/ljecyr.ss01.glif new file mode 100644 index 00000000..0699214b --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/ljecyr.ss01.glif @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + ь + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/ljekomicyr.glif b/sources/FixelText-Regular.ufo/glyphs/ljekomicyr.glif new file mode 100644 index 00000000..e9e09819 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/ljekomicyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + njekomicyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/longs.glif b/sources/FixelText-Regular.ufo/glyphs/longs.glif new file mode 100644 index 00000000..c9fefe89 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/longs.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + n + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/lslash.glif b/sources/FixelText-Regular.ufo/glyphs/lslash.glif new file mode 100644 index 00000000..a7e701d8 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/lslash.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Lslash+12 + com.fontlab.metricsRight + |Lslash+12 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/lslash.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/lslash.ss01.glif new file mode 100644 index 00000000..8f132142 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/lslash.ss01.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Lslash-10 + com.fontlab.metricsRight + |Lslash + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/m.glif b/sources/FixelText-Regular.ufo/glyphs/m.glif new file mode 100644 index 00000000..99798a38 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/m.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + n + com.fontlab.metricsRight + n + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/macron-fwd.alt.glif b/sources/FixelText-Regular.ufo/glyphs/macron-fwd.alt.glif new file mode 100644 index 00000000..d6a1d1b9 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/macron-fwd.alt.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/macron-fwd.glif b/sources/FixelText-Regular.ufo/glyphs/macron-fwd.glif new file mode 100644 index 00000000..cf8f2910 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/macron-fwd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/macron.case.glif b/sources/FixelText-Regular.ufo/glyphs/macron.case.glif new file mode 100644 index 00000000..3ced6148 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/macron.case.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/macron.glif b/sources/FixelText-Regular.ufo/glyphs/macron.glif new file mode 100644 index 00000000..77bbaeeb --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/macron.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/macronacute.S_R_B_.glif b/sources/FixelText-Regular.ufo/glyphs/macronacute.S_R_B_.glif new file mode 100644 index 00000000..570cab72 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/macronacute.S_R_B_.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + macron+acute + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/millionscombcyr.glif b/sources/FixelText-Regular.ufo/glyphs/millionscombcyr.glif new file mode 100644 index 00000000..454263d8 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/millionscombcyr.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/minus.glif b/sources/FixelText-Regular.ufo/glyphs/minus.glif new file mode 100644 index 00000000..4aa4996a --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/minus.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/minute.glif b/sources/FixelText-Regular.ufo/glyphs/minute.glif new file mode 100644 index 00000000..78c31891 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/minute.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/mu.glif b/sources/FixelText-Regular.ufo/glyphs/mu.glif new file mode 100644 index 00000000..ab4369ed --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/mu.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + p + com.fontlab.metricsRight + u + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/multiply.glif b/sources/FixelText-Regular.ufo/glyphs/multiply.glif new file mode 100644 index 00000000..5c562941 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/multiply.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/n.glif b/sources/FixelText-Regular.ufo/glyphs/n.glif new file mode 100644 index 00000000..aaab47ef --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/n.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/nacute.glif b/sources/FixelText-Regular.ufo/glyphs/nacute.glif new file mode 100644 index 00000000..efeca5bd --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/nacute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + n+acute + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/napostrophe.glif b/sources/FixelText-Regular.ufo/glyphs/napostrophe.glif new file mode 100644 index 00000000..895f13e6 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/napostrophe.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + com.fontlab.metricsRight + n + com.schriftgestaltung.Glyphs.ComponentInfo + + + alignment + -1 + index + 0 + name + n + + + alignment + -1 + index + 1 + name + quoteright + + + com.schriftgestaltung.Glyphs.rightMetricsKey + n + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/ncaron.glif b/sources/FixelText-Regular.ufo/glyphs/ncaron.glif new file mode 100644 index 00000000..de18194a --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/ncaron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + n+caron + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/ncommaaccent.glif b/sources/FixelText-Regular.ufo/glyphs/ncommaaccent.glif new file mode 100644 index 00000000..15041104 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/ncommaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + n+commaaccentcomb + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/neptune.glif b/sources/FixelText-Regular.ufo/glyphs/neptune.glif new file mode 100644 index 00000000..0673b7a7 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/neptune.glif @@ -0,0 +1,125 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ш + com.fontlab.metricsRight + Ш + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/nine.glif b/sources/FixelText-Regular.ufo/glyphs/nine.glif new file mode 100644 index 00000000..89351993 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/nine.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + |six + com.fontlab.metricsRight + |six + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/nine.osf.glif b/sources/FixelText-Regular.ufo/glyphs/nine.osf.glif new file mode 100644 index 00000000..14da6bfd --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/nine.osf.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |six + com.fontlab.metricsRight + |six + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/nine.tf.glif b/sources/FixelText-Regular.ufo/glyphs/nine.tf.glif new file mode 100644 index 00000000..d45956fa --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/nine.tf.glif @@ -0,0 +1,7 @@ + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/njecyr.glif b/sources/FixelText-Regular.ufo/glyphs/njecyr.glif new file mode 100644 index 00000000..e0ed467f --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/njecyr.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + ь + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/njecyr.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/njecyr.ss01.glif new file mode 100644 index 00000000..c132d314 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/njecyr.ss01.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + ь + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/njekomicyr.glif b/sources/FixelText-Regular.ufo/glyphs/njekomicyr.glif new file mode 100644 index 00000000..69fbd1eb --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/njekomicyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + |u + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/notequal.glif b/sources/FixelText-Regular.ufo/glyphs/notequal.glif new file mode 100644 index 00000000..4b9ef6f8 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/notequal.glif @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/ntilde.glif b/sources/FixelText-Regular.ufo/glyphs/ntilde.glif new file mode 100644 index 00000000..5823c371 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/ntilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + n+tilde + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/numbersign.glif b/sources/FixelText-Regular.ufo/glyphs/numbersign.glif new file mode 100644 index 00000000..fd136ab3 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/numbersign.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/numero.glif b/sources/FixelText-Regular.ufo/glyphs/numero.glif new file mode 100644 index 00000000..7af3409f --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/numero.glif @@ -0,0 +1,90 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + N + com.fontlab.recipe + N+ordmasculine + com.schriftgestaltung.Glyphs.ComponentInfo + + + alignment + -1 + index + 0 + name + N + + + alignment + -1 + index + 1 + name + ordmasculine + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/numero.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/numero.ss01.glif new file mode 100644 index 00000000..2f846244 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/numero.ss01.glif @@ -0,0 +1,95 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + N.ss01 + com.fontlab.metricsRight + ordmasculine + com.fontlab.recipe + N.ss01+ordmasculine + com.schriftgestaltung.Glyphs.ComponentInfo + + + alignment + -1 + index + 0 + name + ordmasculine + + + alignment + -1 + index + 1 + name + N.ss01 + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/o-cy.accented.glif b/sources/FixelText-Regular.ufo/glyphs/o-cy.accented.glif new file mode 100644 index 00000000..36a06b67 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/o-cy.accented.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+acute + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/o-cy.glif b/sources/FixelText-Regular.ufo/glyphs/o-cy.glif new file mode 100644 index 00000000..58fc7039 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/o-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/o.glif b/sources/FixelText-Regular.ufo/glyphs/o.glif new file mode 100644 index 00000000..f28b7a9f --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/o.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/oB_inocular-cy.glif b/sources/FixelText-Regular.ufo/glyphs/oB_inocular-cy.glif new file mode 100644 index 00000000..06deac2f --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/oB_inocular-cy.glif @@ -0,0 +1,81 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/oD_oubleM_onocular-cy.glif b/sources/FixelText-Regular.ufo/glyphs/oD_oubleM_onocular-cy.glif new file mode 100644 index 00000000..bc4fcfa3 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/oD_oubleM_onocular-cy.glif @@ -0,0 +1,121 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + com.fontlab.recipe + doubleo-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/oM_onocular-cy.glif b/sources/FixelText-Regular.ufo/glyphs/oM_onocular-cy.glif new file mode 100644 index 00000000..88f089bb --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/oM_onocular-cy.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/oacute.glif b/sources/FixelText-Regular.ufo/glyphs/oacute.glif new file mode 100644 index 00000000..858841cc --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/oacute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+acute + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/obarcyr.glif b/sources/FixelText-Regular.ufo/glyphs/obarcyr.glif new file mode 100644 index 00000000..bed9713e --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/obarcyr.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/obardieresiscyr.glif b/sources/FixelText-Regular.ufo/glyphs/obardieresiscyr.glif new file mode 100644 index 00000000..bf3cce15 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/obardieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + obarcyr+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/obreve.glif b/sources/FixelText-Regular.ufo/glyphs/obreve.glif new file mode 100644 index 00000000..fd096730 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/obreve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+breve + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/ocircumflex.glif b/sources/FixelText-Regular.ufo/glyphs/ocircumflex.glif new file mode 100644 index 00000000..6d81924c --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/ocircumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+circumflex + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/odieresis.glif b/sources/FixelText-Regular.ufo/glyphs/odieresis.glif new file mode 100644 index 00000000..4707ed55 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/odieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+dieresis + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/odieresiscyr.glif b/sources/FixelText-Regular.ufo/glyphs/odieresiscyr.glif new file mode 100644 index 00000000..f59657bc --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/odieresiscyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/oe.glif b/sources/FixelText-Regular.ufo/glyphs/oe.glif new file mode 100644 index 00000000..e22d5eb9 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/oe.glif @@ -0,0 +1,86 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + e + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/oe.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/oe.ss01.glif new file mode 100644 index 00000000..9d80e0a7 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/oe.ss01.glif @@ -0,0 +1,95 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + e.ss01 + public.markColor + 0.6,0.997,1,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/ogonek.glif b/sources/FixelText-Regular.ufo/glyphs/ogonek.glif new file mode 100644 index 00000000..94f9f4bd --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/ogonek.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/ograve.glif b/sources/FixelText-Regular.ufo/glyphs/ograve.glif new file mode 100644 index 00000000..d987560f --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/ograve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+grave + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/ohungarumlaut.glif b/sources/FixelText-Regular.ufo/glyphs/ohungarumlaut.glif new file mode 100644 index 00000000..b7405f11 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/ohungarumlaut.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+hungarumlaut + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/omacron.glif b/sources/FixelText-Regular.ufo/glyphs/omacron.glif new file mode 100644 index 00000000..59f8360b --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/omacron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+macron + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/omegaB_road-cy.glif b/sources/FixelText-Regular.ufo/glyphs/omegaB_road-cy.glif new file mode 100644 index 00000000..403520a5 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/omegaB_road-cy.glif @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o+5 + com.fontlab.metricsRight + o+5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/omegacyr.glif b/sources/FixelText-Regular.ufo/glyphs/omegacyr.glif new file mode 100644 index 00000000..429e8914 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/omegacyr.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + w + com.fontlab.metricsRight + w + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/omegaroundcyr.glif b/sources/FixelText-Regular.ufo/glyphs/omegaroundcyr.glif new file mode 100644 index 00000000..634314e4 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/omegaroundcyr.glif @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/omegatitlocyr.glif b/sources/FixelText-Regular.ufo/glyphs/omegatitlocyr.glif new file mode 100644 index 00000000..a1866457 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/omegatitlocyr.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o+5 + com.fontlab.metricsRight + o+5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/omultiocular-cy.alt.glif b/sources/FixelText-Regular.ufo/glyphs/omultiocular-cy.alt.glif new file mode 100644 index 00000000..191de955 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/omultiocular-cy.alt.glif @@ -0,0 +1,367 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + oMonocular-cy + com.fontlab.metricsRight + oMonocular-cy + public.markColor + 0.6,0.997,1,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/omultiocular-cy.glif b/sources/FixelText-Regular.ufo/glyphs/omultiocular-cy.glif new file mode 100644 index 00000000..cb483d5d --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/omultiocular-cy.glif @@ -0,0 +1,516 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + oMonocular-cy + com.fontlab.metricsRight + oMonocular-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/one.glif b/sources/FixelText-Regular.ufo/glyphs/one.glif new file mode 100644 index 00000000..365cfeb7 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/one.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =40 + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/one.osf.glif b/sources/FixelText-Regular.ufo/glyphs/one.osf.glif new file mode 100644 index 00000000..335d5405 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/one.osf.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + one + com.fontlab.metricsRight + one + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/one.tf.glif b/sources/FixelText-Regular.ufo/glyphs/one.tf.glif new file mode 100644 index 00000000..a6860874 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/one.tf.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/onehalf.glif b/sources/FixelText-Regular.ufo/glyphs/onehalf.glif new file mode 100644 index 00000000..c5f04fc2 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/onehalf.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/onequarter.glif b/sources/FixelText-Regular.ufo/glyphs/onequarter.glif new file mode 100644 index 00000000..e3dc5444 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/onequarter.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/onesuperior.glif b/sources/FixelText-Regular.ufo/glyphs/onesuperior.glif new file mode 100644 index 00000000..1f1a7c5d --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/onesuperior.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/ordfeminine.glif b/sources/FixelText-Regular.ufo/glyphs/ordfeminine.glif new file mode 100644 index 00000000..5158940f --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/ordfeminine.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/ordmasculine.glif b/sources/FixelText-Regular.ufo/glyphs/ordmasculine.glif new file mode 100644 index 00000000..82b3d134 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/ordmasculine.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/oslash.glif b/sources/FixelText-Regular.ufo/glyphs/oslash.glif new file mode 100644 index 00000000..44857fc8 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/oslash.glif @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/oslashacute.glif b/sources/FixelText-Regular.ufo/glyphs/oslashacute.glif new file mode 100644 index 00000000..97bc2675 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/oslashacute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + oslash+acute + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/otcyr.glif b/sources/FixelText-Regular.ufo/glyphs/otcyr.glif new file mode 100644 index 00000000..bd7dfc7e --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/otcyr.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsRight + w + com.fontlab.recipe + omegacyr+uni2DEE + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/otilde.glif b/sources/FixelText-Regular.ufo/glyphs/otilde.glif new file mode 100644 index 00000000..b59bc07d --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/otilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+tilde + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/p.glif b/sources/FixelText-Regular.ufo/glyphs/p.glif new file mode 100644 index 00000000..74f8925f --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/p.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/p.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/p.ss01.glif new file mode 100644 index 00000000..587eedf5 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/p.ss01.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/palatcombcyr.glif b/sources/FixelText-Regular.ufo/glyphs/palatcombcyr.glif new file mode 100644 index 00000000..3f12f8d3 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/palatcombcyr.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/palochkacyr.glif b/sources/FixelText-Regular.ufo/glyphs/palochkacyr.glif new file mode 100644 index 00000000..9d98e303 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/palochkacyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/paragraph.glif b/sources/FixelText-Regular.ufo/glyphs/paragraph.glif new file mode 100644 index 00000000..4a11fed0 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/paragraph.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |P + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/parenleft.case.glif b/sources/FixelText-Regular.ufo/glyphs/parenleft.case.glif new file mode 100644 index 00000000..1f29f32e --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/parenleft.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |parenright.case + com.fontlab.metricsRight + |parenright.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/parenleft.glif b/sources/FixelText-Regular.ufo/glyphs/parenleft.glif new file mode 100644 index 00000000..64148993 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/parenleft.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/parenright.case.glif b/sources/FixelText-Regular.ufo/glyphs/parenright.case.glif new file mode 100644 index 00000000..02d7b154 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/parenright.case.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + parenright + com.fontlab.metricsRight + parenright + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/parenright.glif b/sources/FixelText-Regular.ufo/glyphs/parenright.glif new file mode 100644 index 00000000..35cca66e --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/parenright.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/partialdiff.glif b/sources/FixelText-Regular.ufo/glyphs/partialdiff.glif new file mode 100644 index 00000000..7a583929 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/partialdiff.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/pe-cy.B_G_R_.glif b/sources/FixelText-Regular.ufo/glyphs/pe-cy.B_G_R_.glif new file mode 100644 index 00000000..d49ae1ef --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/pe-cy.B_G_R_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + n + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/pe-cy.S_R_B_.glif b/sources/FixelText-Regular.ufo/glyphs/pe-cy.S_R_B_.glif new file mode 100644 index 00000000..3f1e71a4 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/pe-cy.S_R_B_.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+macron-fwd.alt + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/pe-cy.glif b/sources/FixelText-Regular.ufo/glyphs/pe-cy.glif new file mode 100644 index 00000000..aa741161 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/pe-cy.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/pehookcyr.glif b/sources/FixelText-Regular.ufo/glyphs/pehookcyr.glif new file mode 100644 index 00000000..8aa2a7ca --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/pehookcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + п + com.fontlab.metricsRight + enmiddlehookcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/percent.glif b/sources/FixelText-Regular.ufo/glyphs/percent.glif new file mode 100644 index 00000000..d6d1bc10 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/percent.glif @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/period.glif b/sources/FixelText-Regular.ufo/glyphs/period.glif new file mode 100644 index 00000000..5a1ad042 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/period.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/periodcentered.glif b/sources/FixelText-Regular.ufo/glyphs/periodcentered.glif new file mode 100644 index 00000000..a13a774d --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/periodcentered.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/perthousand.glif b/sources/FixelText-Regular.ufo/glyphs/perthousand.glif new file mode 100644 index 00000000..6e103779 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/perthousand.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/petailcyr.glif b/sources/FixelText-Regular.ufo/glyphs/petailcyr.glif new file mode 100644 index 00000000..829ea051 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/petailcyr.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + п + com.fontlab.metricsRight + entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/pi.glif b/sources/FixelText-Regular.ufo/glyphs/pi.glif new file mode 100644 index 00000000..8b22b743 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/pi.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f + com.fontlab.metricsRight + t + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/plus.glif b/sources/FixelText-Regular.ufo/glyphs/plus.glif new file mode 100644 index 00000000..e60f7517 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/plus.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/plusminus.glif b/sources/FixelText-Regular.ufo/glyphs/plusminus.glif new file mode 100644 index 00000000..b0308d17 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/plusminus.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/pokrytiecombcyr.glif b/sources/FixelText-Regular.ufo/glyphs/pokrytiecombcyr.glif new file mode 100644 index 00000000..a5477e5d --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/pokrytiecombcyr.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/product.glif b/sources/FixelText-Regular.ufo/glyphs/product.glif new file mode 100644 index 00000000..99b6090d --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/product.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/proportional.glif b/sources/FixelText-Regular.ufo/glyphs/proportional.glif new file mode 100644 index 00000000..2838fa76 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/proportional.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/psicyr.glif b/sources/FixelText-Regular.ufo/glyphs/psicyr.glif new file mode 100644 index 00000000..2752d8fd --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/psicyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + u + com.fontlab.metricsRight + |u + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/q.glif b/sources/FixelText-Regular.ufo/glyphs/q.glif new file mode 100644 index 00000000..2629671f --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/q.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/q.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/q.ss01.glif new file mode 100644 index 00000000..eab9cfa0 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/q.ss01.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/qacyr.glif b/sources/FixelText-Regular.ufo/glyphs/qacyr.glif new file mode 100644 index 00000000..435f4060 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/qacyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + q + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/question.glif b/sources/FixelText-Regular.ufo/glyphs/question.glif new file mode 100644 index 00000000..0f5819b1 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/question.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/questiondown.case.glif b/sources/FixelText-Regular.ufo/glyphs/questiondown.case.glif new file mode 100644 index 00000000..1cb34e22 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/questiondown.case.glif @@ -0,0 +1,19 @@ + + + + + + + + + com.fontlab.metricsLeft + |question + com.fontlab.metricsRight + |question + com.fontlab.recipe + questiondown + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/questiondown.glif b/sources/FixelText-Regular.ufo/glyphs/questiondown.glif new file mode 100644 index 00000000..2dc3636d --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/questiondown.glif @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |question + com.fontlab.metricsRight + |question + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/quotedbl.glif b/sources/FixelText-Regular.ufo/glyphs/quotedbl.glif new file mode 100644 index 00000000..043dd94f --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/quotedbl.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/quotedblbase.glif b/sources/FixelText-Regular.ufo/glyphs/quotedblbase.glif new file mode 100644 index 00000000..aed26185 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/quotedblbase.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + comma + com.fontlab.metricsRight + comma + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/quotedblleft.glif b/sources/FixelText-Regular.ufo/glyphs/quotedblleft.glif new file mode 100644 index 00000000..0197e3aa --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/quotedblleft.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + |comma + com.fontlab.metricsRight + |comma + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/quotedblright.glif b/sources/FixelText-Regular.ufo/glyphs/quotedblright.glif new file mode 100644 index 00000000..0c6ec8bf --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/quotedblright.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.metricsLeft + comma+20 + com.fontlab.metricsRight + comma-20 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/quoteleft.glif b/sources/FixelText-Regular.ufo/glyphs/quoteleft.glif new file mode 100644 index 00000000..10c47a89 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/quoteleft.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + quotedblleft + com.fontlab.metricsRight + quotedblleft + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/quoteright.glif b/sources/FixelText-Regular.ufo/glyphs/quoteright.glif new file mode 100644 index 00000000..9fb859f4 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/quoteright.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + com.fontlab.metricsLeft + quotedblright + com.fontlab.metricsRight + quotedblright + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/quotesinglbase.glif b/sources/FixelText-Regular.ufo/glyphs/quotesinglbase.glif new file mode 100644 index 00000000..cc80d25f --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/quotesinglbase.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + com.fontlab.recipe + comma + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/quotesingle.glif b/sources/FixelText-Regular.ufo/glyphs/quotesingle.glif new file mode 100644 index 00000000..ebe10c9a --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/quotesingle.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/r.glif b/sources/FixelText-Regular.ufo/glyphs/r.glif new file mode 100644 index 00000000..49ae0f0f --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/r.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/racute.glif b/sources/FixelText-Regular.ufo/glyphs/racute.glif new file mode 100644 index 00000000..bcbd9363 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/racute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + r+acute + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/radical.glif b/sources/FixelText-Regular.ufo/glyphs/radical.glif new file mode 100644 index 00000000..69397119 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/radical.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + V + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/rcaron.glif b/sources/FixelText-Regular.ufo/glyphs/rcaron.glif new file mode 100644 index 00000000..f42d4a34 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/rcaron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + r+caron + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/rcommaaccent.glif b/sources/FixelText-Regular.ufo/glyphs/rcommaaccent.glif new file mode 100644 index 00000000..0d54cee5 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/rcommaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + r+commaaccentcomb + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/registered.glif b/sources/FixelText-Regular.ufo/glyphs/registered.glif new file mode 100644 index 00000000..9294576d --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/registered.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/reversedzecyr.glif b/sources/FixelText-Regular.ufo/glyphs/reversedzecyr.glif new file mode 100644 index 00000000..9eaced94 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/reversedzecyr.glif @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + + com.fontlab.metricsRight + + com.fontlab.recipe + з + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/rhacyr.glif b/sources/FixelText-Regular.ufo/glyphs/rhacyr.glif new file mode 100644 index 00000000..46f789f8 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/rhacyr.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + p + com.fontlab.metricsRight + x + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/ring.case.glif b/sources/FixelText-Regular.ufo/glyphs/ring.case.glif new file mode 100644 index 00000000..89798a11 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/ring.case.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/ring.glif b/sources/FixelText-Regular.ufo/glyphs/ring.glif new file mode 100644 index 00000000..87e652c9 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/ring.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/rookblack.glif b/sources/FixelText-Regular.ufo/glyphs/rookblack.glif new file mode 100644 index 00000000..f81de32f --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/rookblack.glif @@ -0,0 +1,270 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/ruble.glif b/sources/FixelText-Regular.ufo/glyphs/ruble.glif new file mode 100644 index 00000000..a3731a8d --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/ruble.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + P + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/s.glif b/sources/FixelText-Regular.ufo/glyphs/s.glif new file mode 100644 index 00000000..8e6a8fcb --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/s.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/sacute.glif b/sources/FixelText-Regular.ufo/glyphs/sacute.glif new file mode 100644 index 00000000..863fb768 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/sacute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + s+acute + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/scaron.glif b/sources/FixelText-Regular.ufo/glyphs/scaron.glif new file mode 100644 index 00000000..a2cb6670 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/scaron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + s+caron + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/scedilla.glif b/sources/FixelText-Regular.ufo/glyphs/scedilla.glif new file mode 100644 index 00000000..3398ba5e --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/scedilla.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + s+cedilla + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/schwacyr.glif b/sources/FixelText-Regular.ufo/glyphs/schwacyr.glif new file mode 100644 index 00000000..c39e568a --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/schwacyr.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |e + com.fontlab.metricsRight + o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/schwadieresiscyr.glif b/sources/FixelText-Regular.ufo/glyphs/schwadieresiscyr.glif new file mode 100644 index 00000000..538509ea --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/schwadieresiscyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + schwacyr+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/scircumflex.glif b/sources/FixelText-Regular.ufo/glyphs/scircumflex.glif new file mode 100644 index 00000000..7b6325f7 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/scircumflex.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + s+circumflex + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/scommaaccent.glif b/sources/FixelText-Regular.ufo/glyphs/scommaaccent.glif new file mode 100644 index 00000000..298f00e0 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/scommaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + s+commaaccentcomb + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/second.glif b/sources/FixelText-Regular.ufo/glyphs/second.glif new file mode 100644 index 00000000..1a1e1f07 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/second.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/section.glif b/sources/FixelText-Regular.ufo/glyphs/section.glif new file mode 100644 index 00000000..bcc51b1e --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/section.glif @@ -0,0 +1,87 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + S + com.fontlab.metricsRight + S + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/semicolon.case.glif b/sources/FixelText-Regular.ufo/glyphs/semicolon.case.glif new file mode 100644 index 00000000..3c84f217 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/semicolon.case.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.metricsLeft + semicolon + com.fontlab.metricsRight + semicolon + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/semicolon.glif b/sources/FixelText-Regular.ufo/glyphs/semicolon.glif new file mode 100644 index 00000000..df7a2d8a --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/semicolon.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/semisoftcyr.glif b/sources/FixelText-Regular.ufo/glyphs/semisoftcyr.glif new file mode 100644 index 00000000..cb884693 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/semisoftcyr.glif @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + t + com.fontlab.metricsRight + ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/seven.glif b/sources/FixelText-Regular.ufo/glyphs/seven.glif new file mode 100644 index 00000000..a1297bcf --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/seven.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/seven.osf.glif b/sources/FixelText-Regular.ufo/glyphs/seven.osf.glif new file mode 100644 index 00000000..14341599 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/seven.osf.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + seven + com.fontlab.metricsRight + seven + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/seven.tf.glif b/sources/FixelText-Regular.ufo/glyphs/seven.tf.glif new file mode 100644 index 00000000..8a37afec --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/seven.tf.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/sha-cy.B_G_R_.glif b/sources/FixelText-Regular.ufo/glyphs/sha-cy.B_G_R_.glif new file mode 100644 index 00000000..c1b816e8 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/sha-cy.B_G_R_.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + u + com.fontlab.metricsRight + l + com.fontlab.recipe + m + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/sha-cy.glif b/sources/FixelText-Regular.ufo/glyphs/sha-cy.glif new file mode 100644 index 00000000..a0567563 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/sha-cy.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/shcha-cy.B_G_R_.glif b/sources/FixelText-Regular.ufo/glyphs/shcha-cy.B_G_R_.glif new file mode 100644 index 00000000..4ebac969 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/shcha-cy.B_G_R_.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + u + com.fontlab.metricsRight + щ + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/shcha-cy.glif b/sources/FixelText-Regular.ufo/glyphs/shcha-cy.glif new file mode 100644 index 00000000..ffa776e1 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/shcha-cy.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + д + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/shhacyr.glif b/sources/FixelText-Regular.ufo/glyphs/shhacyr.glif new file mode 100644 index 00000000..8c211b85 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/shhacyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsRight + n + com.fontlab.recipe + h + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/shhatailcyr.glif b/sources/FixelText-Regular.ufo/glyphs/shhatailcyr.glif new file mode 100644 index 00000000..901539c6 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/shhatailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + h + com.fontlab.metricsRight + entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/shwe-cy.glif b/sources/FixelText-Regular.ufo/glyphs/shwe-cy.glif new file mode 100644 index 00000000..90b196f1 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/shwe-cy.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + щ + com.fontlab.metricsRight + щ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/six.glif b/sources/FixelText-Regular.ufo/glyphs/six.glif new file mode 100644 index 00000000..f8a488aa --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/six.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/six.osf.glif b/sources/FixelText-Regular.ufo/glyphs/six.osf.glif new file mode 100644 index 00000000..7b0d3191 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/six.osf.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + six + com.fontlab.metricsRight + six + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/six.tf.glif b/sources/FixelText-Regular.ufo/glyphs/six.tf.glif new file mode 100644 index 00000000..ae94e722 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/six.tf.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/sjekomicyr.glif b/sources/FixelText-Regular.ufo/glyphs/sjekomicyr.glif new file mode 100644 index 00000000..ba79bf8c --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/sjekomicyr.glif @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + e + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/slash.case.glif b/sources/FixelText-Regular.ufo/glyphs/slash.case.glif new file mode 100644 index 00000000..c04e9e4c --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/slash.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + slash + com.fontlab.metricsRight + slash + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/slash.glif b/sources/FixelText-Regular.ufo/glyphs/slash.glif new file mode 100644 index 00000000..528c2ef7 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/slash.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/softsign-cy.B_G_R_.glif b/sources/FixelText-Regular.ufo/glyphs/softsign-cy.B_G_R_.glif new file mode 100644 index 00000000..c1e87ead --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/softsign-cy.B_G_R_.glif @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + u + com.fontlab.metricsRight + ь-5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/softsign-cy.glif b/sources/FixelText-Regular.ufo/glyphs/softsign-cy.glif new file mode 100644 index 00000000..e600e9d4 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/softsign-cy.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/softsign-cy.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/softsign-cy.ss01.glif new file mode 100644 index 00000000..eedd66c7 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/softsign-cy.ss01.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/space.glif b/sources/FixelText-Regular.ufo/glyphs/space.glif new file mode 100644 index 00000000..9878d518 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/space.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/spadewhite.glif b/sources/FixelText-Regular.ufo/glyphs/spadewhite.glif new file mode 100644 index 00000000..9fbd6b99 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/spadewhite.glif @@ -0,0 +1,453 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/sterling.glif b/sources/FixelText-Regular.ufo/glyphs/sterling.glif new file mode 100644 index 00000000..56e8cea4 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/sterling.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/summation.glif b/sources/FixelText-Regular.ufo/glyphs/summation.glif new file mode 100644 index 00000000..bda19d07 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/summation.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/t.glif b/sources/FixelText-Regular.ufo/glyphs/t.glif new file mode 100644 index 00000000..24745b6d --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/t.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/t.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/t.ss01.glif new file mode 100644 index 00000000..6f821474 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/t.ss01.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/tbar.glif b/sources/FixelText-Regular.ufo/glyphs/tbar.glif new file mode 100644 index 00000000..c9eb9549 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/tbar.glif @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/tbar.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/tbar.ss01.glif new file mode 100644 index 00000000..2f658b0b --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/tbar.ss01.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/tcaron.glif b/sources/FixelText-Regular.ufo/glyphs/tcaron.glif new file mode 100644 index 00000000..7852890e --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/tcaron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.metricsLeft + t + com.fontlab.metricsRight + t + com.fontlab.recipe + t+caron.salt + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/tcaron.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/tcaron.ss01.glif new file mode 100644 index 00000000..670eb287 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/tcaron.ss01.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + com.fontlab.recipe + t.ss01+caron.salt + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/tcedilla.glif b/sources/FixelText-Regular.ufo/glyphs/tcedilla.glif new file mode 100644 index 00000000..9d472bb9 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/tcedilla.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + t+cedilla + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/tcedilla.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/tcedilla.ss01.glif new file mode 100644 index 00000000..a15f237c --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/tcedilla.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + t.ss01+cedilla + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/tche-cy.glif b/sources/FixelText-Regular.ufo/glyphs/tche-cy.glif new file mode 100644 index 00000000..974fc000 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/tche-cy.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + tetsecyr-20 + com.fontlab.metricsRight + ч + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/tcommaaccent.glif b/sources/FixelText-Regular.ufo/glyphs/tcommaaccent.glif new file mode 100644 index 00000000..7ce57ae7 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/tcommaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + t+commaaccentcomb + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/tcommaaccent.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/tcommaaccent.ss01.glif new file mode 100644 index 00000000..30c28368 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/tcommaaccent.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + t.ss01+commaaccentcomb + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/te-cy.B_G_R_.glif b/sources/FixelText-Regular.ufo/glyphs/te-cy.B_G_R_.glif new file mode 100644 index 00000000..8b0ff8bb --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/te-cy.B_G_R_.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + m + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/te-cy.S_R_B_.glif b/sources/FixelText-Regular.ufo/glyphs/te-cy.S_R_B_.glif new file mode 100644 index 00000000..b670c037 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/te-cy.S_R_B_.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ш.BGR+macron-fwd + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/te-cy.glif b/sources/FixelText-Regular.ufo/glyphs/te-cy.glif new file mode 100644 index 00000000..f619efca --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/te-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/te-cy.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/te-cy.ss01.glif new file mode 100644 index 00000000..d3a47b71 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/te-cy.ss01.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/tenge.glif b/sources/FixelText-Regular.ufo/glyphs/tenge.glif new file mode 100644 index 00000000..ab872382 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/tenge.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + T + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/tenmillionscomb-cy.glif b/sources/FixelText-Regular.ufo/glyphs/tenmillionscomb-cy.glif new file mode 100644 index 00000000..f2da8898 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/tenmillionscomb-cy.glif @@ -0,0 +1,109 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/tetailcyr.glif b/sources/FixelText-Regular.ufo/glyphs/tetailcyr.glif new file mode 100644 index 00000000..cdb82078 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/tetailcyr.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + т + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/tetsecyr.glif b/sources/FixelText-Regular.ufo/glyphs/tetsecyr.glif new file mode 100644 index 00000000..f38fe7d1 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/tetsecyr.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + т + com.fontlab.metricsRight + ц + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/tewithmiddlehook-cy.glif b/sources/FixelText-Regular.ufo/glyphs/tewithmiddlehook-cy.glif new file mode 100644 index 00000000..3c07ae83 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/tewithmiddlehook-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + т + com.fontlab.metricsRight + gehookcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/thorn.glif b/sources/FixelText-Regular.ufo/glyphs/thorn.glif new file mode 100644 index 00000000..507eb83c --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/thorn.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + b + com.fontlab.metricsRight + b + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/thousandmillionscomb-cy.glif b/sources/FixelText-Regular.ufo/glyphs/thousandmillionscomb-cy.glif new file mode 100644 index 00000000..8ceddc87 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/thousandmillionscomb-cy.glif @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/thousandscyr.dnom.glif b/sources/FixelText-Regular.ufo/glyphs/thousandscyr.dnom.glif new file mode 100644 index 00000000..9b6d0e51 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/thousandscyr.dnom.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + | + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/thousandscyr.glif b/sources/FixelText-Regular.ufo/glyphs/thousandscyr.glif new file mode 100644 index 00000000..ad3e03ae --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/thousandscyr.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + | + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/three.glif b/sources/FixelText-Regular.ufo/glyphs/three.glif new file mode 100644 index 00000000..6382fdf2 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/three.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/three.osf.glif b/sources/FixelText-Regular.ufo/glyphs/three.osf.glif new file mode 100644 index 00000000..effd6aad --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/three.osf.glif @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + three + com.fontlab.metricsRight + three + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/three.tf.glif b/sources/FixelText-Regular.ufo/glyphs/three.tf.glif new file mode 100644 index 00000000..e08e8cf2 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/three.tf.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/threequarters.glif b/sources/FixelText-Regular.ufo/glyphs/threequarters.glif new file mode 100644 index 00000000..5d129f1c --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/threequarters.glif @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/threesuperior.glif b/sources/FixelText-Regular.ufo/glyphs/threesuperior.glif new file mode 100644 index 00000000..13059375 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/threesuperior.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/tilde.case.glif b/sources/FixelText-Regular.ufo/glyphs/tilde.case.glif new file mode 100644 index 00000000..237e1347 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/tilde.case.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/tilde.glif b/sources/FixelText-Regular.ufo/glyphs/tilde.glif new file mode 100644 index 00000000..344d1939 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/tilde.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/titlocombcyr.glif b/sources/FixelText-Regular.ufo/glyphs/titlocombcyr.glif new file mode 100644 index 00000000..05997d7d --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/titlocombcyr.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/tjekomicyr.glif b/sources/FixelText-Regular.ufo/glyphs/tjekomicyr.glif new file mode 100644 index 00000000..6e4e6640 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/tjekomicyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + т + com.fontlab.metricsRight + njekomicyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/trademark.glif b/sources/FixelText-Regular.ufo/glyphs/trademark.glif new file mode 100644 index 00000000..b1812f16 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/trademark.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/tse-cy.B_G_R_.glif b/sources/FixelText-Regular.ufo/glyphs/tse-cy.B_G_R_.glif new file mode 100644 index 00000000..9577c1f1 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/tse-cy.B_G_R_.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + u + com.fontlab.metricsRight + ц + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/tse-cy.glif b/sources/FixelText-Regular.ufo/glyphs/tse-cy.glif new file mode 100644 index 00000000..200dd307 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/tse-cy.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + д + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/tseR_eversed-cy.glif b/sources/FixelText-Regular.ufo/glyphs/tseR_eversed-cy.glif new file mode 100644 index 00000000..6e5e107d --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/tseR_eversed-cy.glif @@ -0,0 +1,20 @@ + + + + + + + + + + com.fontlab.metricsLeft + + com.fontlab.metricsRight + н + com.fontlab.recipe + ц + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/tshecyr.glif b/sources/FixelText-Regular.ufo/glyphs/tshecyr.glif new file mode 100644 index 00000000..153263d9 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/tshecyr.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + hbar + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/tsse-cy.glif b/sources/FixelText-Regular.ufo/glyphs/tsse-cy.glif new file mode 100644 index 00000000..4e5b60ce --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/tsse-cy.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + т + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/tswe-cy.glif b/sources/FixelText-Regular.ufo/glyphs/tswe-cy.glif new file mode 100644 index 00000000..cb8ae55f --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/tswe-cy.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ш + com.fontlab.metricsRight + shwe-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/twe-cy.glif b/sources/FixelText-Regular.ufo/glyphs/twe-cy.glif new file mode 100644 index 00000000..5c4d86f6 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/twe-cy.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + т.ss01 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/two.glif b/sources/FixelText-Regular.ufo/glyphs/two.glif new file mode 100644 index 00000000..78fa46d5 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/two.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/two.osf.glif b/sources/FixelText-Regular.ufo/glyphs/two.osf.glif new file mode 100644 index 00000000..bdbb00ae --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/two.osf.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + two + com.fontlab.metricsRight + two + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/two.tf.glif b/sources/FixelText-Regular.ufo/glyphs/two.tf.glif new file mode 100644 index 00000000..898ea71f --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/two.tf.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/twosuperior.glif b/sources/FixelText-Regular.ufo/glyphs/twosuperior.glif new file mode 100644 index 00000000..fc6253a7 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/twosuperior.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/u-cy.accented.glif b/sources/FixelText-Regular.ufo/glyphs/u-cy.accented.glif new file mode 100644 index 00000000..d2a9b475 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/u-cy.accented.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + y+acute + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/u-cy.glif b/sources/FixelText-Regular.ufo/glyphs/u-cy.glif new file mode 100644 index 00000000..adc27ee3 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/u-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + y + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/u.glif b/sources/FixelText-Regular.ufo/glyphs/u.glif new file mode 100644 index 00000000..c231cfb6 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/u.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |n + com.fontlab.metricsRight + l + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/uacute.glif b/sources/FixelText-Regular.ufo/glyphs/uacute.glif new file mode 100644 index 00000000..cb5951b7 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/uacute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+acute + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/uacutedblcyr.glif b/sources/FixelText-Regular.ufo/glyphs/uacutedblcyr.glif new file mode 100644 index 00000000..0fbff6cd --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/uacutedblcyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u-cy+hungarumlaut + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/ubreve.glif b/sources/FixelText-Regular.ufo/glyphs/ubreve.glif new file mode 100644 index 00000000..bf40dc99 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/ubreve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+breve + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/ucircumflex.glif b/sources/FixelText-Regular.ufo/glyphs/ucircumflex.glif new file mode 100644 index 00000000..6f88d849 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/ucircumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+circumflex + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/udieresis.glif b/sources/FixelText-Regular.ufo/glyphs/udieresis.glif new file mode 100644 index 00000000..c404359c --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/udieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+dieresis + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/udieresiscyr.glif b/sources/FixelText-Regular.ufo/glyphs/udieresiscyr.glif new file mode 100644 index 00000000..af46b793 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/udieresiscyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/ugrave.glif b/sources/FixelText-Regular.ufo/glyphs/ugrave.glif new file mode 100644 index 00000000..1437b727 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/ugrave.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+grave + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/uhungarumlaut.glif b/sources/FixelText-Regular.ufo/glyphs/uhungarumlaut.glif new file mode 100644 index 00000000..194a32fb --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/uhungarumlaut.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+hungarumlaut + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/ukM_onograph-cy.glif b/sources/FixelText-Regular.ufo/glyphs/ukM_onograph-cy.glif new file mode 100644 index 00000000..27abb061 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/ukM_onograph-cy.glif @@ -0,0 +1,78 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + y-30 + com.fontlab.metricsRight + y-20 + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/ukcyr.glif b/sources/FixelText-Regular.ufo/glyphs/ukcyr.glif new file mode 100644 index 00000000..32f43fcb --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/ukcyr.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + y + com.fontlab.recipe + uni1C82_у + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/umacron.glif b/sources/FixelText-Regular.ufo/glyphs/umacron.glif new file mode 100644 index 00000000..efc19996 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/umacron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+macron + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/umacroncyr.glif b/sources/FixelText-Regular.ufo/glyphs/umacroncyr.glif new file mode 100644 index 00000000..5e61531b --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/umacroncyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u-cy+macron + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/underscore.glif b/sources/FixelText-Regular.ufo/glyphs/underscore.glif new file mode 100644 index 00000000..51e3d117 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/underscore.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/uni1C_80.glif b/sources/FixelText-Regular.ufo/glyphs/uni1C_80.glif new file mode 100644 index 00000000..6573c5c2 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/uni1C_80.glif @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + б + com.fontlab.metricsRight + o-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/uni1C_81.glif b/sources/FixelText-Regular.ufo/glyphs/uni1C_81.glif new file mode 100644 index 00000000..35d808bc --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/uni1C_81.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + д-10 + com.fontlab.metricsRight + | + com.fontlab.recipe + д + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/uni1C_82.glif b/sources/FixelText-Regular.ufo/glyphs/uni1C_82.glif new file mode 100644 index 00000000..c13a74da --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/uni1C_82.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/uni1C_83.glif b/sources/FixelText-Regular.ufo/glyphs/uni1C_83.glif new file mode 100644 index 00000000..39c4e852 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/uni1C_83.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + c + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/uni1C_84.glif b/sources/FixelText-Regular.ufo/glyphs/uni1C_84.glif new file mode 100644 index 00000000..cd714bea --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/uni1C_84.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/uni1C_85.glif b/sources/FixelText-Regular.ufo/glyphs/uni1C_85.glif new file mode 100644 index 00000000..671ec00e --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/uni1C_85.glif @@ -0,0 +1,20 @@ + + + + + + + + + + com.fontlab.metricsLeft + ш + com.fontlab.metricsRight + l() + com.fontlab.recipe + ш + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/uni1C_86.glif b/sources/FixelText-Regular.ufo/glyphs/uni1C_86.glif new file mode 100644 index 00000000..1f70c4e2 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/uni1C_86.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + uni1C84 + com.fontlab.metricsRight + ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/uni1C_87.glif b/sources/FixelText-Regular.ufo/glyphs/uni1C_87.glif new file mode 100644 index 00000000..fed041d6 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/uni1C_87.glif @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + uni1C84-40 + com.fontlab.metricsRight + ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/uni1C_88.glif b/sources/FixelText-Regular.ufo/glyphs/uni1C_88.glif new file mode 100644 index 00000000..58dd28e2 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/uni1C_88.glif @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/uni1E_B_C_.glif b/sources/FixelText-Regular.ufo/glyphs/uni1E_B_C_.glif new file mode 100644 index 00000000..2e4ed960 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/uni1E_B_C_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+tilde.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/uni1E_B_D_.glif b/sources/FixelText-Regular.ufo/glyphs/uni1E_B_D_.glif new file mode 100644 index 00000000..f99566c2 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/uni1E_B_D_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+tilde + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/uni2010.glif b/sources/FixelText-Regular.ufo/glyphs/uni2010.glif new file mode 100644 index 00000000..10fc5ace --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/uni2010.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + hyphen + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/uni2D_E_E_.case.glif b/sources/FixelText-Regular.ufo/glyphs/uni2D_E_E_.case.glif new file mode 100644 index 00000000..216c1c9a --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/uni2D_E_E_.case.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/uni2D_E_E_.glif b/sources/FixelText-Regular.ufo/glyphs/uni2D_E_E_.glif new file mode 100644 index 00000000..b67834c8 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/uni2D_E_E_.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/uniE_000.alt.glif b/sources/FixelText-Regular.ufo/glyphs/uniE_000.alt.glif new file mode 100644 index 00000000..c9113d32 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/uniE_000.alt.glif @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + ї_ї + public.markColor + 0.6,0.997,1,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/uniE_000.glif b/sources/FixelText-Regular.ufo/glyphs/uniE_000.glif new file mode 100644 index 00000000..f5a5a78b --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/uniE_000.glif @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + ї_ї + public.markColor + 0.6,0.997,1,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/uniE_01A_.glif b/sources/FixelText-Regular.ufo/glyphs/uniE_01A_.glif new file mode 100644 index 00000000..d98b98cd --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/uniE_01A_.glif @@ -0,0 +1,115 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/uniF_43A_.glif b/sources/FixelText-Regular.ufo/glyphs/uniF_43A_.glif new file mode 100644 index 00000000..db6d4166 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/uniF_43A_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/uniF_43B_.glif b/sources/FixelText-Regular.ufo/glyphs/uniF_43B_.glif new file mode 100644 index 00000000..c7bfc9ab --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/uniF_43B_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ustraightcyr+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/uniF_45D_.glif b/sources/FixelText-Regular.ufo/glyphs/uniF_45D_.glif new file mode 100644 index 00000000..eaa7249a --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/uniF_45D_.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Є+acute.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/uniF_45E_.glif b/sources/FixelText-Regular.ufo/glyphs/uniF_45E_.glif new file mode 100644 index 00000000..8d473a6f --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/uniF_45E_.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Iacute + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/uniF_45F_.glif b/sources/FixelText-Regular.ufo/glyphs/uniF_45F_.glif new file mode 100644 index 00000000..d14fb3bc --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/uniF_45F_.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + com.fontlab.recipe + I+dieresiscase.alt+acute.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/uniF_475.glif b/sources/FixelText-Regular.ufo/glyphs/uniF_475.glif new file mode 100644 index 00000000..222e227f --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/uniF_475.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + є+acute + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/uniF_476.glif b/sources/FixelText-Regular.ufo/glyphs/uniF_476.glif new file mode 100644 index 00000000..1b8b2854 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/uniF_476.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + iacute + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/uniF_477.glif b/sources/FixelText-Regular.ufo/glyphs/uniF_477.glif new file mode 100644 index 00000000..9c264ae6 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/uniF_477.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + dotlessi+dieresisacute + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/uniF_478.glif b/sources/FixelText-Regular.ufo/glyphs/uniF_478.glif new file mode 100644 index 00000000..75f9c260 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/uniF_478.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Yat+acute.case + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/uniF_479.glif b/sources/FixelText-Regular.ufo/glyphs/uniF_479.glif new file mode 100644 index 00000000..0fa06ed1 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/uniF_479.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + yat+acute + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/uniF_498.glif b/sources/FixelText-Regular.ufo/glyphs/uniF_498.glif new file mode 100644 index 00000000..1ed29fbb --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/uniF_498.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ю+dieresis.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/uniF_499.glif b/sources/FixelText-Regular.ufo/glyphs/uniF_499.glif new file mode 100644 index 00000000..a3b480eb --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/uniF_499.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ю+dieresis + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/uniF_49A_.glif b/sources/FixelText-Regular.ufo/glyphs/uniF_49A_.glif new file mode 100644 index 00000000..3dc0a8e4 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/uniF_49A_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Obarcyr+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/uniF_49B_.glif b/sources/FixelText-Regular.ufo/glyphs/uniF_49B_.glif new file mode 100644 index 00000000..4a70e46e --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/uniF_49B_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + obarcyr+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/uniF_49C_.glif b/sources/FixelText-Regular.ufo/glyphs/uniF_49C_.glif new file mode 100644 index 00000000..44fbca1b --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/uniF_49C_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Schwacyr+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/uniF_49D_.glif b/sources/FixelText-Regular.ufo/glyphs/uniF_49D_.glif new file mode 100644 index 00000000..e978b0de --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/uniF_49D_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + schwacyr+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/uniF_49E_.glif b/sources/FixelText-Regular.ufo/glyphs/uniF_49E_.glif new file mode 100644 index 00000000..39e39415 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/uniF_49E_.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Yatcyr + com.fontlab.metricsRight + Tshecyr + com.fontlab.recipe + Shhacyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/uniF_49F_.glif b/sources/FixelText-Regular.ufo/glyphs/uniF_49F_.glif new file mode 100644 index 00000000..af2c6319 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/uniF_49F_.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + hbar + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/uniF_4C_6.glif b/sources/FixelText-Regular.ufo/glyphs/uniF_4C_6.glif new file mode 100644 index 00000000..a7abf74e --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/uniF_4C_6.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ч + com.fontlab.metricsRight + Ч + com.fontlab.recipe + Ч + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/uniF_4C_7.glif b/sources/FixelText-Regular.ufo/glyphs/uniF_4C_7.glif new file mode 100644 index 00000000..cec60969 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/uniF_4C_7.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ч + com.fontlab.metricsRight + ч + com.fontlab.recipe + ч+enhookcyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/uniF_4C_C_.glif b/sources/FixelText-Regular.ufo/glyphs/uniF_4C_C_.glif new file mode 100644 index 00000000..da502566 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/uniF_4C_C_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + У+acute.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/uniF_4C_D_.glif b/sources/FixelText-Regular.ufo/glyphs/uniF_4C_D_.glif new file mode 100644 index 00000000..4285e7ce --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/uniF_4C_D_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + y+acute + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/uniF_4D_2.glif b/sources/FixelText-Regular.ufo/glyphs/uniF_4D_2.glif new file mode 100644 index 00000000..edb6e47c --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/uniF_4D_2.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+grave.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/uniF_4D_3.glif b/sources/FixelText-Regular.ufo/glyphs/uniF_4D_3.glif new file mode 100644 index 00000000..d9936174 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/uniF_4D_3.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+grave + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/uniF_4D_4.glif b/sources/FixelText-Regular.ufo/glyphs/uniF_4D_4.glif new file mode 100644 index 00000000..5118a4a2 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/uniF_4D_4.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + P+caron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/uniF_4D_5.glif b/sources/FixelText-Regular.ufo/glyphs/uniF_4D_5.glif new file mode 100644 index 00000000..503a27d1 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/uniF_4D_5.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + p+caron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/uniF_4D_6.glif b/sources/FixelText-Regular.ufo/glyphs/uniF_4D_6.glif new file mode 100644 index 00000000..0c7b4afe --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/uniF_4D_6.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Э+dotaccent.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/uniF_4D_7.glif b/sources/FixelText-Regular.ufo/glyphs/uniF_4D_7.glif new file mode 100644 index 00000000..3ac581eb --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/uniF_4D_7.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + э+dotaccent + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/uniF_4D_8.glif b/sources/FixelText-Regular.ufo/glyphs/uniF_4D_8.glif new file mode 100644 index 00000000..356b8513 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/uniF_4D_8.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Я+dieresis.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/uniF_4D_9.glif b/sources/FixelText-Regular.ufo/glyphs/uniF_4D_9.glif new file mode 100644 index 00000000..cba97b52 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/uniF_4D_9.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + я+dieresis + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/uniF_50E_.glif b/sources/FixelText-Regular.ufo/glyphs/uniF_50E_.glif new file mode 100644 index 00000000..5b2cc0ea --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/uniF_50E_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/uniF_50F_.glif b/sources/FixelText-Regular.ufo/glyphs/uniF_50F_.glif new file mode 100644 index 00000000..10bc7b9e --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/uniF_50F_.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/uniF_510.glif b/sources/FixelText-Regular.ufo/glyphs/uniF_510.glif new file mode 100644 index 00000000..847c4e59 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/uniF_510.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/uniF_511.glif b/sources/FixelText-Regular.ufo/glyphs/uniF_511.glif new file mode 100644 index 00000000..de1f4efd --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/uniF_511.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/uniF_512.glif b/sources/FixelText-Regular.ufo/glyphs/uniF_512.glif new file mode 100644 index 00000000..1197fb68 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/uniF_512.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + com.fontlab.metricsLeft + E + com.fontlab.metricsRight + E + com.fontlab.recipe + E+dieresis.case+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/uniF_513.glif b/sources/FixelText-Regular.ufo/glyphs/uniF_513.glif new file mode 100644 index 00000000..a2d84f37 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/uniF_513.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.recipe + e+dieresis+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/uniF_514.glif b/sources/FixelText-Regular.ufo/glyphs/uniF_514.glif new file mode 100644 index 00000000..90b97ae1 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/uniF_514.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + com.fontlab.metricsLeft + E + com.fontlab.metricsRight + E + com.fontlab.recipe + E+dieresis.case+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/uniF_515.glif b/sources/FixelText-Regular.ufo/glyphs/uniF_515.glif new file mode 100644 index 00000000..e4ff9681 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/uniF_515.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.recipe + e+dieresis+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/uniF_516.glif b/sources/FixelText-Regular.ufo/glyphs/uniF_516.glif new file mode 100644 index 00000000..ba57a8a9 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/uniF_516.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + З+caron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/uniF_517.glif b/sources/FixelText-Regular.ufo/glyphs/uniF_517.glif new file mode 100644 index 00000000..1b5e4f4e --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/uniF_517.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + з+caron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/uniF_518.glif b/sources/FixelText-Regular.ufo/glyphs/uniF_518.glif new file mode 100644 index 00000000..52635510 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/uniF_518.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/uniF_519.glif b/sources/FixelText-Regular.ufo/glyphs/uniF_519.glif new file mode 100644 index 00000000..49e455a2 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/uniF_519.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/uniF_51A_.glif b/sources/FixelText-Regular.ufo/glyphs/uniF_51A_.glif new file mode 100644 index 00000000..794ffffb --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/uniF_51A_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/uniF_51B_.glif b/sources/FixelText-Regular.ufo/glyphs/uniF_51B_.glif new file mode 100644 index 00000000..f5affdff --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/uniF_51B_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/uniF_51C_.glif b/sources/FixelText-Regular.ufo/glyphs/uniF_51C_.glif new file mode 100644 index 00000000..298db969 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/uniF_51C_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Obarcyr+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/uniF_51D_.glif b/sources/FixelText-Regular.ufo/glyphs/uniF_51D_.glif new file mode 100644 index 00000000..b215f76b --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/uniF_51D_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + obarcyr+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/uniF_51E_.glif b/sources/FixelText-Regular.ufo/glyphs/uniF_51E_.glif new file mode 100644 index 00000000..9f97db7f --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/uniF_51E_.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + com.fontlab.recipe + Obarcyr+dieresis.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/uniF_51F_.glif b/sources/FixelText-Regular.ufo/glyphs/uniF_51F_.glif new file mode 100644 index 00000000..1e253903 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/uniF_51F_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.recipe + obarcyr+dieresis+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/uniF_521.glif b/sources/FixelText-Regular.ufo/glyphs/uniF_521.glif new file mode 100644 index 00000000..15e407ee --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/uniF_521.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ы+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/uniF_522.glif b/sources/FixelText-Regular.ufo/glyphs/uniF_522.glif new file mode 100644 index 00000000..965847d6 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/uniF_522.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Э+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/uniF_523.glif b/sources/FixelText-Regular.ufo/glyphs/uniF_523.glif new file mode 100644 index 00000000..6dc9f5ff --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/uniF_523.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + э+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/uniF_524.glif b/sources/FixelText-Regular.ufo/glyphs/uniF_524.glif new file mode 100644 index 00000000..20248f96 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/uniF_524.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Э+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/uniF_525.glif b/sources/FixelText-Regular.ufo/glyphs/uniF_525.glif new file mode 100644 index 00000000..93838051 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/uniF_525.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + э+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/uniF_526.glif b/sources/FixelText-Regular.ufo/glyphs/uniF_526.glif new file mode 100644 index 00000000..0160a086 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/uniF_526.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Є+dieresis.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/uniF_527.glif b/sources/FixelText-Regular.ufo/glyphs/uniF_527.glif new file mode 100644 index 00000000..fe0dcf07 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/uniF_527.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + є+dieresis + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/uniF_528.glif b/sources/FixelText-Regular.ufo/glyphs/uniF_528.glif new file mode 100644 index 00000000..09f7e416 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/uniF_528.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Я+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/uniF_529.glif b/sources/FixelText-Regular.ufo/glyphs/uniF_529.glif new file mode 100644 index 00000000..37074ebd --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/uniF_529.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + я+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/uniF_52A_.glif b/sources/FixelText-Regular.ufo/glyphs/uniF_52A_.glif new file mode 100644 index 00000000..6ee6d55e --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/uniF_52A_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Я+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/uniF_52B_.glif b/sources/FixelText-Regular.ufo/glyphs/uniF_52B_.glif new file mode 100644 index 00000000..a3e65dee --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/uniF_52B_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + я+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/uniF_52C_.glif b/sources/FixelText-Regular.ufo/glyphs/uniF_52C_.glif new file mode 100644 index 00000000..2fc74f36 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/uniF_52C_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ю+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/uniF_52D_.glif b/sources/FixelText-Regular.ufo/glyphs/uniF_52D_.glif new file mode 100644 index 00000000..66b8bf88 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/uniF_52D_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ю+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/uniF_52E_.glif b/sources/FixelText-Regular.ufo/glyphs/uniF_52E_.glif new file mode 100644 index 00000000..bbb2d5a4 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/uniF_52E_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ю+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/uniF_52F_.glif b/sources/FixelText-Regular.ufo/glyphs/uniF_52F_.glif new file mode 100644 index 00000000..5761a30c --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/uniF_52F_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ю+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/uniF_532.glif b/sources/FixelText-Regular.ufo/glyphs/uniF_532.glif new file mode 100644 index 00000000..0c4f8ca7 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/uniF_532.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Й + com.fontlab.metricsRight + Й + com.fontlab.recipe + Й + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/uniF_533.glif b/sources/FixelText-Regular.ufo/glyphs/uniF_533.glif new file mode 100644 index 00000000..d76504b0 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/uniF_533.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + l() + com.fontlab.recipe + й+enhookcyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/uniF_536.glif b/sources/FixelText-Regular.ufo/glyphs/uniF_536.glif new file mode 100644 index 00000000..2847fb60 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/uniF_536.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ы+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/uniF_537.glif b/sources/FixelText-Regular.ufo/glyphs/uniF_537.glif new file mode 100644 index 00000000..60628bd9 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/uniF_537.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ы+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/uniF_538.glif b/sources/FixelText-Regular.ufo/glyphs/uniF_538.glif new file mode 100644 index 00000000..d05a9b07 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/uniF_538.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Reversedzecyr+dieresis.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/uniF_539.glif b/sources/FixelText-Regular.ufo/glyphs/uniF_539.glif new file mode 100644 index 00000000..defe2cfe --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/uniF_539.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + reversedzecyr+dieresis + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/uniF_830.glif b/sources/FixelText-Regular.ufo/glyphs/uniF_830.glif new file mode 100644 index 00000000..7adcded5 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/uniF_830.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+circumflex.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/uniF_831.glif b/sources/FixelText-Regular.ufo/glyphs/uniF_831.glif new file mode 100644 index 00000000..f2b5b2f0 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/uniF_831.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+circumflex + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/uniF_833.glif b/sources/FixelText-Regular.ufo/glyphs/uniF_833.glif new file mode 100644 index 00000000..2186ad49 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/uniF_833.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+circumflex.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/uniF_834.glif b/sources/FixelText-Regular.ufo/glyphs/uniF_834.glif new file mode 100644 index 00000000..e3cb8a06 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/uniF_834.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+circumflex + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/uniF_839.glif b/sources/FixelText-Regular.ufo/glyphs/uniF_839.glif new file mode 100644 index 00000000..bb946be3 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/uniF_839.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+circumflex.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/uniF_83A_.glif b/sources/FixelText-Regular.ufo/glyphs/uniF_83A_.glif new file mode 100644 index 00000000..405b178a --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/uniF_83A_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+circumflex + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/uniF_86F_.glif b/sources/FixelText-Regular.ufo/glyphs/uniF_86F_.glif new file mode 100644 index 00000000..a02dcd0b --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/uniF_86F_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + K+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/uniF_870.glif b/sources/FixelText-Regular.ufo/glyphs/uniF_870.glif new file mode 100644 index 00000000..bec757f3 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/uniF_870.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + к+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/uniF_872.glif b/sources/FixelText-Regular.ufo/glyphs/uniF_872.glif new file mode 100644 index 00000000..1f108104 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/uniF_872.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Л+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/uniF_873.glif b/sources/FixelText-Regular.ufo/glyphs/uniF_873.glif new file mode 100644 index 00000000..a6362513 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/uniF_873.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + л+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/uniF_875.glif b/sources/FixelText-Regular.ufo/glyphs/uniF_875.glif new file mode 100644 index 00000000..07e0926f --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/uniF_875.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/uniF_876.glif b/sources/FixelText-Regular.ufo/glyphs/uniF_876.glif new file mode 100644 index 00000000..f392ff80 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/uniF_876.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/uniF_878.glif b/sources/FixelText-Regular.ufo/glyphs/uniF_878.glif new file mode 100644 index 00000000..0fae2f87 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/uniF_878.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + X+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/uniF_879.glif b/sources/FixelText-Regular.ufo/glyphs/uniF_879.glif new file mode 100644 index 00000000..f0e37ba2 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/uniF_879.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + x+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/uniF_87B_.glif b/sources/FixelText-Regular.ufo/glyphs/uniF_87B_.glif new file mode 100644 index 00000000..24dc24fc --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/uniF_87B_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ц+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/uniF_87C_.glif b/sources/FixelText-Regular.ufo/glyphs/uniF_87C_.glif new file mode 100644 index 00000000..1b62b928 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/uniF_87C_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ц+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/uniF_87E_.glif b/sources/FixelText-Regular.ufo/glyphs/uniF_87E_.glif new file mode 100644 index 00000000..339e3331 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/uniF_87E_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ч+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/uniF_87F_.glif b/sources/FixelText-Regular.ufo/glyphs/uniF_87F_.glif new file mode 100644 index 00000000..87e8bf29 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/uniF_87F_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ч+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/uogonek.glif b/sources/FixelText-Regular.ufo/glyphs/uogonek.glif new file mode 100644 index 00000000..3cd7f9fb --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/uogonek.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+ogonek + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/uring.glif b/sources/FixelText-Regular.ufo/glyphs/uring.glif new file mode 100644 index 00000000..62047721 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/uring.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+ring + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/ushort-cy.glif b/sources/FixelText-Regular.ufo/glyphs/ushort-cy.glif new file mode 100644 index 00000000..5b56ce33 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/ushort-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + uni0443+breve + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/ustraightcyr.glif b/sources/FixelText-Regular.ufo/glyphs/ustraightcyr.glif new file mode 100644 index 00000000..935a5664 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/ustraightcyr.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + v + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/ustraightstrokecyr.glif b/sources/FixelText-Regular.ufo/glyphs/ustraightstrokecyr.glif new file mode 100644 index 00000000..5c37cfe9 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/ustraightstrokecyr.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/utilde.glif b/sources/FixelText-Regular.ufo/glyphs/utilde.glif new file mode 100644 index 00000000..877c6647 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/utilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+tilde + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/v.glif b/sources/FixelText-Regular.ufo/glyphs/v.glif new file mode 100644 index 00000000..137c3cc2 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/v.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/ve-cy.B_G_R_.glif b/sources/FixelText-Regular.ufo/glyphs/ve-cy.B_G_R_.glif new file mode 100644 index 00000000..2ae342ae --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/ve-cy.B_G_R_.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + b-5 + com.fontlab.metricsRight + b + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/ve-cy.glif b/sources/FixelText-Regular.ufo/glyphs/ve-cy.glif new file mode 100644 index 00000000..d3f37821 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/ve-cy.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/ve-cy.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/ve-cy.ss01.glif new file mode 100644 index 00000000..ea352349 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/ve-cy.ss01.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/virgo.glif b/sources/FixelText-Regular.ufo/glyphs/virgo.glif new file mode 100644 index 00000000..23f8fc15 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/virgo.glif @@ -0,0 +1,224 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =55 + com.fontlab.metricsRight + =35 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/vzmetcomb-cy.glif b/sources/FixelText-Regular.ufo/glyphs/vzmetcomb-cy.glif new file mode 100644 index 00000000..65052f53 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/vzmetcomb-cy.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/w.glif b/sources/FixelText-Regular.ufo/glyphs/w.glif new file mode 100644 index 00000000..b4fd2710 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/w.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/wacute.glif b/sources/FixelText-Regular.ufo/glyphs/wacute.glif new file mode 100644 index 00000000..53248a08 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/wacute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + w+acute + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/wcircumflex.glif b/sources/FixelText-Regular.ufo/glyphs/wcircumflex.glif new file mode 100644 index 00000000..0c9a25b6 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/wcircumflex.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + w+circumflex + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/wdieresis.glif b/sources/FixelText-Regular.ufo/glyphs/wdieresis.glif new file mode 100644 index 00000000..82521234 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/wdieresis.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + w+dieresis + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/wecyr.glif b/sources/FixelText-Regular.ufo/glyphs/wecyr.glif new file mode 100644 index 00000000..8c876cf1 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/wecyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + w + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/wgrave.glif b/sources/FixelText-Regular.ufo/glyphs/wgrave.glif new file mode 100644 index 00000000..1747f4c9 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/wgrave.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + w+grave + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/x.glif b/sources/FixelText-Regular.ufo/glyphs/x.glif new file mode 100644 index 00000000..01cc64b9 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/x.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/xatailcyr.glif b/sources/FixelText-Regular.ufo/glyphs/xatailcyr.glif new file mode 100644 index 00000000..b32cd3fe --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/xatailcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + x + com.fontlab.metricsRight + zhetailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/y.glif b/sources/FixelText-Regular.ufo/glyphs/y.glif new file mode 100644 index 00000000..5395128a --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/y.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/yacute.glif b/sources/FixelText-Regular.ufo/glyphs/yacute.glif new file mode 100644 index 00000000..ba1acc61 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/yacute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + y+acute + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/yaecyr.glif b/sources/FixelText-Regular.ufo/glyphs/yaecyr.glif new file mode 100644 index 00000000..932bbed9 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/yaecyr.glif @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + я + com.fontlab.metricsRight + e + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/yatI_otified-cy.glif b/sources/FixelText-Regular.ufo/glyphs/yatI_otified-cy.glif new file mode 100644 index 00000000..0ed24943 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/yatI_otified-cy.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + com.fontlab.metricsRight + yatcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/yatcyr.B_G_R_.glif b/sources/FixelText-Regular.ufo/glyphs/yatcyr.B_G_R_.glif new file mode 100644 index 00000000..c50d43d7 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/yatcyr.B_G_R_.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hardsign-cy + com.fontlab.metricsRight + ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/yatcyr.glif b/sources/FixelText-Regular.ufo/glyphs/yatcyr.glif new file mode 100644 index 00000000..cc38bd77 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/yatcyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hardsign-cy + com.fontlab.metricsRight + ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/ycircumflex.glif b/sources/FixelText-Regular.ufo/glyphs/ycircumflex.glif new file mode 100644 index 00000000..144f96d1 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/ycircumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + y+circumflex + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/ydieresis.glif b/sources/FixelText-Regular.ufo/glyphs/ydieresis.glif new file mode 100644 index 00000000..e1aff8db --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/ydieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + y+dieresis + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/yen.glif b/sources/FixelText-Regular.ufo/glyphs/yen.glif new file mode 100644 index 00000000..4fb90a95 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/yen.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/yen.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/yen.ss01.glif new file mode 100644 index 00000000..1cbb14ca --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/yen.ss01.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/yerN_eutral-cy.glif b/sources/FixelText-Regular.ufo/glyphs/yerN_eutral-cy.glif new file mode 100644 index 00000000..6a7fba0d --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/yerN_eutral-cy.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hardsign-cy + com.fontlab.metricsRight + ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/yeru-cy.accented.glif b/sources/FixelText-Regular.ufo/glyphs/yeru-cy.accented.glif new file mode 100644 index 00000000..59ec212f --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/yeru-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ы+acute + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/yeru-cy.glif b/sources/FixelText-Regular.ufo/glyphs/yeru-cy.glif new file mode 100644 index 00000000..cca752c2 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/yeru-cy.glif @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/yeru-cy.ss01.glif b/sources/FixelText-Regular.ufo/glyphs/yeru-cy.ss01.glif new file mode 100644 index 00000000..a35fcea1 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/yeru-cy.ss01.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/yeruB_ackyer-cy.glif b/sources/FixelText-Regular.ufo/glyphs/yeruB_ackyer-cy.glif new file mode 100644 index 00000000..3d4ecb31 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/yeruB_ackyer-cy.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hardsign-cy + com.fontlab.metricsRight + dotlessi + com.fontlab.recipe + hardsign-cy_dotlessi + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/yi-cy.alt.glif b/sources/FixelText-Regular.ufo/glyphs/yi-cy.alt.glif new file mode 100644 index 00000000..41a7029d --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/yi-cy.alt.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.recipe + idieresis + public.markColor + 0.6,0.997,1,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/yi-cy.glif b/sources/FixelText-Regular.ufo/glyphs/yi-cy.glif new file mode 100644 index 00000000..f37af219 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/yi-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + idieresis + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/ylongdieresiscyr.glif b/sources/FixelText-Regular.ufo/glyphs/ylongdieresiscyr.glif new file mode 100644 index 00000000..c0ae82ae --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/ylongdieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + yeru-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/yn-cy.glif b/sources/FixelText-Regular.ufo/glyphs/yn-cy.glif new file mode 100644 index 00000000..d00a997f --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/yn-cy.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |izhitsacyr + com.fontlab.metricsRight + |izhitsacyr + com.fontlab.recipe + izhitsa + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/yuR_eversed-cy.glif b/sources/FixelText-Regular.ufo/glyphs/yuR_eversed-cy.glif new file mode 100644 index 00000000..7ad01927 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/yuR_eversed-cy.glif @@ -0,0 +1,20 @@ + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l + com.fontlab.recipe + ю + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/yusB_lended-cy.glif b/sources/FixelText-Regular.ufo/glyphs/yusB_lended-cy.glif new file mode 100644 index 00000000..385f5775 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/yusB_lended-cy.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + yusbigcyr + com.fontlab.metricsRight + yusbigcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/yusC_losedlittle-cy.glif b/sources/FixelText-Regular.ufo/glyphs/yusC_losedlittle-cy.glif new file mode 100644 index 00000000..aaa39885 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/yusC_losedlittle-cy.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + yuslittlecyr + com.fontlab.metricsRight + yuslittlecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/yusbigcyr.glif b/sources/FixelText-Regular.ufo/glyphs/yusbigcyr.glif new file mode 100644 index 00000000..5966ceb8 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/yusbigcyr.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/yusbigiotifiedcyr.B_G_R_.glif b/sources/FixelText-Regular.ufo/glyphs/yusbigiotifiedcyr.B_G_R_.glif new file mode 100644 index 00000000..7d945ffb --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/yusbigiotifiedcyr.B_G_R_.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + com.fontlab.metricsRight + ж + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/yusbigiotifiedcyr.glif b/sources/FixelText-Regular.ufo/glyphs/yusbigiotifiedcyr.glif new file mode 100644 index 00000000..741a91ed --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/yusbigiotifiedcyr.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + ж + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/yusiotifiedC_losedL_ittle-cy.glif b/sources/FixelText-Regular.ufo/glyphs/yusiotifiedC_losedL_ittle-cy.glif new file mode 100644 index 00000000..000d83d6 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/yusiotifiedC_losedL_ittle-cy.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + yusClosedlittle-cy + com.fontlab.recipe + yusClosedlittle-cy+н + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/yuslittlecyr.glif b/sources/FixelText-Regular.ufo/glyphs/yuslittlecyr.glif new file mode 100644 index 00000000..f28524ed --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/yuslittlecyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + v-5 + com.fontlab.metricsRight + v-5 + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/yuslittleiotifiedcyr.glif b/sources/FixelText-Regular.ufo/glyphs/yuslittleiotifiedcyr.glif new file mode 100644 index 00000000..e7305fa9 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/yuslittleiotifiedcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + v-10 + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/z.glif b/sources/FixelText-Regular.ufo/glyphs/z.glif new file mode 100644 index 00000000..c704c01f --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/z.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/zacute.glif b/sources/FixelText-Regular.ufo/glyphs/zacute.glif new file mode 100644 index 00000000..966e86cc --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/zacute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + z+acute + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/zcaron.glif b/sources/FixelText-Regular.ufo/glyphs/zcaron.glif new file mode 100644 index 00000000..b941cd79 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/zcaron.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + z+caron + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/zdotaccent.glif b/sources/FixelText-Regular.ufo/glyphs/zdotaccent.glif new file mode 100644 index 00000000..64cd135b --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/zdotaccent.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + z+dotaccent + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/ze-cy.B_G_R_.glif b/sources/FixelText-Regular.ufo/glyphs/ze-cy.B_G_R_.glif new file mode 100644 index 00000000..536ba6d2 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/ze-cy.B_G_R_.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |c-12 + com.fontlab.metricsRight + в-5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/ze-cy.glif b/sources/FixelText-Regular.ufo/glyphs/ze-cy.glif new file mode 100644 index 00000000..a2e848d1 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/ze-cy.glif @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |c-5 + com.fontlab.metricsRight + в + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/zedieresiscyr.glif b/sources/FixelText-Regular.ufo/glyphs/zedieresiscyr.glif new file mode 100644 index 00000000..2c43550b --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/zedieresiscyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ze-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/zemlya-cy.glif b/sources/FixelText-Regular.ufo/glyphs/zemlya-cy.glif new file mode 100644 index 00000000..a5c7765f --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/zemlya-cy.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + z-10 + com.fontlab.metricsRight + z + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/zero.glif b/sources/FixelText-Regular.ufo/glyphs/zero.glif new file mode 100644 index 00000000..51a497b6 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/zero.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/zero.osf.glif b/sources/FixelText-Regular.ufo/glyphs/zero.osf.glif new file mode 100644 index 00000000..5cf9beca --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/zero.osf.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + zero + com.fontlab.metricsRight + zero + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/zero.tf.glif b/sources/FixelText-Regular.ufo/glyphs/zero.tf.glif new file mode 100644 index 00000000..e4650e85 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/zero.tf.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/zetailcyr.B_S_H_.glif b/sources/FixelText-Regular.ufo/glyphs/zetailcyr.B_S_H_.glif new file mode 100644 index 00000000..0838fcf7 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/zetailcyr.B_S_H_.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + з + com.fontlab.metricsRight + з + com.fontlab.recipe + з + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/zetailcyr.glif b/sources/FixelText-Regular.ufo/glyphs/zetailcyr.glif new file mode 100644 index 00000000..c2de89ce --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/zetailcyr.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + з + com.fontlab.metricsRight + з + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/zhe-cy.B_G_R_.glif b/sources/FixelText-Regular.ufo/glyphs/zhe-cy.B_G_R_.glif new file mode 100644 index 00000000..a34e3ff4 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/zhe-cy.B_G_R_.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |k + com.fontlab.metricsRight + k + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/zhe-cy.glif b/sources/FixelText-Regular.ufo/glyphs/zhe-cy.glif new file mode 100644 index 00000000..d8dd0179 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/zhe-cy.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |k + com.fontlab.metricsRight + k + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/zhebrevecyr.glif b/sources/FixelText-Regular.ufo/glyphs/zhebrevecyr.glif new file mode 100644 index 00000000..bee4409a --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/zhebrevecyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + zhe-cy+breve + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/zhedieresiscyr.glif b/sources/FixelText-Regular.ufo/glyphs/zhedieresiscyr.glif new file mode 100644 index 00000000..7d3d5592 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/zhedieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + zhe-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/zhetailcyr.glif b/sources/FixelText-Regular.ufo/glyphs/zhetailcyr.glif new file mode 100644 index 00000000..07b6e44c --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/zhetailcyr.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ж + com.fontlab.metricsRight + katailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/zhwe-cy.glif b/sources/FixelText-Regular.ufo/glyphs/zhwe-cy.glif new file mode 100644 index 00000000..3e827a66 --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/zhwe-cy.glif @@ -0,0 +1,87 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + з + com.fontlab.metricsRight + ж + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Regular.ufo/glyphs/zjekomicyr.glif b/sources/FixelText-Regular.ufo/glyphs/zjekomicyr.glif new file mode 100644 index 00000000..3ac41d0c --- /dev/null +++ b/sources/FixelText-Regular.ufo/glyphs/zjekomicyr.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + з-20 + com.fontlab.metricsRight + njekomicyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Regular.ufo/groups.plist b/sources/FixelText-Regular.ufo/groups.plist new file mode 100644 index 00000000..0215e532 --- /dev/null +++ b/sources/FixelText-Regular.ufo/groups.plist @@ -0,0 +1,2992 @@ + + + + + accent + + grave + acute.case + grave.case + acute + + case + + arrowdown.case + arrowdown.ss01.case + arrowleft.case + arrowleft.ss01.case + arrowright.case + arrowright.ss01.case + arrowup.case + arrowup.ss01.case + backslash.case + bar.case + braceleft.case + braceright.case + bracketleft.case + bracketright.case + brokenbar.case + bullet.case + colon.case + emdash.case + endash.case + exclamdown.case + guillemetleft.case + guillemetright.case + guilsinglleft.case + guilsinglright.case + hyphen.case + parenleft.case + parenright.case + questiondown.case + semicolon.case + at.case + bracketangleleft.case + bracketangleright.case + slash.case + + case_def + + arrowdown + arrowdown.ss01 + arrowleft + arrowleft.ss01 + arrowright + arrowright.ss01 + arrowup + arrowup.ss01 + backslash + bar + braceleft + braceright + bracketleft + bracketright + brokenbar + bullet + colon + emdash + endash + exclamdown + guillemetleft + guillemetright + guilsinglleft + guilsinglright + hyphen + parenleft + parenright + questiondown + semicolon + at + bracketangleleft + bracketangleright + slash + + cpsp + + 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 + Agrave + Aacute + Acircumflex + Atilde + Adieresis + Aring + AE + Ccedilla + Egrave + Eacute + Ecircumflex + Edieresis + Igrave + Iacute + Icircumflex + Idieresis + Eth + Ntilde + Ograve + Oacute + Ocircumflex + Otilde + Odieresis + Oslash + Ugrave + Uacute + Ucircumflex + Udieresis + Yacute + Thorn + Amacron + Abreve + Aogonek + Cacute + Ccircumflex + Cdotaccent + Ccaron + Dcaron + Dcroat + Emacron + Ebreve + Edotaccent + Eogonek + Ecaron + Gcircumflex + Gbreve + Gdotaccent + Gcommaaccent + Hcircumflex + Hbar + Itilde + Imacron + Ibreve + Iogonek + Idotaccent + IJ + Jcircumflex + Kcommaaccent + Lacute + Lcommaaccent + Lcaron + Ldot + Lslash + Nacute + Ncommaaccent + Ncaron + Eng + Omacron + Obreve + Ohungarumlaut + OE + Racute + Rcommaaccent + Rcaron + Sacute + Scircumflex + Scedilla + Scaron + Tcedilla + Tcaron + Tbar + Utilde + Umacron + Ubreve + Uring + Uhungarumlaut + Uogonek + Wcircumflex + Ycircumflex + Ydieresis + Zacute + Zdotaccent + Zcaron + Schwa + Acaron + Gacute + AEacute + Oslashacute + Scommaaccent + Tcommaaccent + Delta + Omega + Iegravecyr + uniF43A + A-cy.accented + E-cy.accented + Ii-cy.accented + O-cy.accented + U-cy.accented + Yeru-cy.accented + Ereversed-cy.accented + Iu-cy.accented + Ia-cy.accented + Io-cy.accented + uniF498 + uniF49A + uniF49C + uniF49E + uniF4C6 + uniF4CC + uniF4D2 + uniF4D4 + uniF4D6 + uniF4D8 + uniF50E + uniF510 + uniF512 + uniF514 + uniF516 + uniF518 + uniF51A + uniF51C + uniF51E + Yeru-cymacron + uniF522 + uniF524 + uniF526 + uniF528 + uniF52A + uniF52C + uniF52E + uniF532 + uniF536 + uniF538 + uniF830 + uniF833 + uniF839 + uniF86F + uniF872 + uniF875 + uniF878 + uniF87B + uniF87E + Io-cy + Djecyr + Gjecyr + E-cy + Dze-cy + I-cy + Yi-cy + Jecyr + Ljecyr + Njecyr + Tshecyr + Kjecyr + Igravecyr + Ushort-cy + Dzhecyr + A-cy + Be-cy + Ve-cy + Ge-cy + De-cy + Ie-cy + Zhe-cy + Ze-cy + Ii-cy + Iishort-cy + Ka-cy + El-cy + Em-cy + En-cy + O-cy + Pe-cy + Er-cy + Es-cy + Te-cy + U-cy + Ef-cy + Ha-cy + Tse-cy + Che-cy + Sha-cy + Shcha-cy + Hardsign-cy + Yeru-cy + Softsign-cy + Ereversed-cy + Iu-cy + Ia-cy + Omegacyr + Yatcyr + Eiotifiedcyr + Yuslittlecyr + Yuslittleiotifiedcyr + Yusbigcyr + Yusbigiotifiedcyr + Ksicyr + Psicyr + Fitacyr + Izhitsacyr + Izhitsagravedblcyr + Ukcyr + Omegaroundcyr + Omegatitlocyr + Otcyr + Koppacyr + Ishortsharptailcyr + Semisoftcyr + Ertickcyr + Gheupturn-cy + Gestrokecyr + Gehookcyr + Zhetailcyr + Zetailcyr + Katailcyr + Kaverticalstrokecyr + Kastrokecyr + Kabashkcyr + Entailcyr + Engecyr + Pehookcyr + Haabkhcyr + Estailcyr + Tetailcyr + Ustraightcyr + Ustraightstrokecyr + Xatailcyr + Tetsecyr + Chetailcyr + Chevertcyr + Shhacyr + Cheabkhcyr + Cheabkhtailcyr + Palochkacyr + Zhebrevecyr + Kahookcyr + Elsharptailcyr + Enhookcyr + Ensharptailcyr + Chekhakascyr + Emsharptailcyr + Abrevecyr + Adieresiscyr + Aiecyr + Iebrevecyr + Schwacyr + Schwadieresiscyr + Zhedieresiscyr + Zedieresiscyr + Dzeabkhcyr + Imacroncyr + Idieresiscyr + Odieresiscyr + Obarcyr + Obardieresiscyr + Ereverseddieresiscyr + Umacroncyr + Udieresiscyr + Uacutedblcyr + Chedieresiscyr + Getailcyr + Ylongdieresiscyr + Gehookstrokecyr + Hahookcyr + Hastrokecyr + Dekomicyr + Djekomicyr + Zjekomicyr + Dzjekomicyr + Ljekomicyr + Njekomicyr + Sjekomicyr + Tjekomicyr + Reversedzecyr + Elhookcyr + Lhacyr + Rhacyr + Yaecyr + Qacyr + Wecyr + Kaaleutcyr + Elmiddlehookcyr + Enmiddlehookcyr + Petailcyr + Shhatailcyr + Enhookleftcyr + Dzzhecyr + Dchecyr + Eltailcyr + Wgrave + Wacute + Wdieresis + Germandbls + uni1EBC + Zemlya-cy + Dzelo-cy + DzeReversed-cy + Iota-cy + Djerv-cy + UkMonograph-cy + OmegaBroad-cy + YerNeutral-cy + YeruBackYer-cy + YatIotified-cy + YuReversed-cy + IotifiedA-cy + YusClosedlittle-cy + YusBlended-cy + YusiotifiedClosedLittle-cy + Yn-cy + TseReversed-cy + DeSoft-cy + ElSoft-cy + EmSoft-cy + OMonocular-cy + OBinocular-cy + ODoubleMonocular-cy + Dwe-cy + Dzwe-cy + Zhwe-cy + Cche-cy + Dzze-cy + TeWithMiddleHook-cy + Twe-cy + Tswe-cy + Tsse-cy + Tche-cy + Hwe-cy + Shwe-cy + DoubleO-cy + CrossedO-cy + A-cy.ss01 + A.ss01 + AE.ss01 + Aacute.ss01 + Abreve.ss01 + Acircumflex.ss01 + Adieresis.ss01 + Agrave.ss01 + Amacron.ss01 + Aogonek.ss01 + Aring.ss01 + Atilde.ss01 + Em-cy.ss01 + Eng.ss01 + G.ss01 + Gacute.ss01 + Gbreve.ss01 + Gcircumflex.ss01 + Gcommaaccent.ss01 + Gdotaccent.ss01 + Ha-cy.ss01 + Ia-cy.ss01 + J.ss01 + Jcircumflex.ss01 + K.ss01 + Ka-cy.ss01 + Kcommaaccent.ss01 + M.ss01 + N.ss01 + Nacute.ss01 + Ncaron.ss01 + Ncommaaccent.ss01 + Ntilde.ss01 + Q.ss01 + U-cy.ss01 + Ushort-cy.ss01 + V.ss01 + W.ss01 + Wacute.ss01 + Wcircumflex.ss01 + Wdieresis.ss01 + Wgrave.ss01 + X.ss01 + Y.ss01 + Yacute.ss01 + Ycircumflex.ss01 + Ydieresis.ss01 + Z.ss01 + Zacute.ss01 + Zcaron.ss01 + Zdotaccent.ss01 + Zetailcyr.BSH + Gestrokecyr.BSH + Estailcyr.BSH + Estailcyr.CHU + Zhe-cy.ss01 + + locl.SRB + + be-cy.SRB + iegravecyr.SRB + igravecyr.SRB + + loclSRB_def + + be-cy + iegravecyr + igravecyr + + locl_BGR + + De-cy.BGR + Ef-cy.BGR + El-cy.BGR + de-cy.BGR + eiotifiedcyr.BGR + el-cy.BGR + ge-cy.BGR + hardsign-cy.BGR + ii-cy.BGR + iishort-cy.BGR + iotifieda-cy.BGR + iu-cy.BGR + ka-cy.BGR + pe-cy.BGR + sha-cy.BGR + shcha-cy.BGR + softsign-cy.BGR + te-cy.BGR + tse-cy.BGR + ve-cy.BGR + yatcyr.BGR + yusbigiotifiedcyr.BGR + ze-cy.BGR + zhe-cy.BGR + + locl_def + + De-cy + Ef-cy + El-cy + de-cy + eiotifiedcyr + el-cy + ge-cy + hardsign-cy + ii-cy + iishort-cy + iotifieda-cy + iu-cy + ka-cy + pe-cy + sha-cy + shcha-cy + softsign-cy + te-cy + tse-cy + ve-cy + yatcyr + yusbigiotifiedcyr + ze-cy + zhe-cy + + pics + + neptune + leo + virgo + bishopwhite + knightwhite + rookblack + bishopblack + knightblack + heartwhite + diamondwhite-misc + spadewhite + heart + clubwhite + crossedswords + flower + floretteblack + florettewhite + floretteoutlinedpetalledblackeight + + pics_def + + A + B + C + D + E + F + G + H + I + J + K + L + M + N + O + P + Q + R + + public.kern1.A.ss012 + + A-cy.ss01 + A.ss01 + Aacute.ss01 + Abreve.ss01 + Acircumflex.ss01 + Adieresis.ss01 + Agrave.ss01 + Amacron.ss01 + Aogonek.ss01 + Aring.ss01 + Atilde.ss01 + + public.kern1.A2 + + A + A-cy + A-cy.accented + Aacute + Abreve + Abrevecyr + Acaron + Acircumflex + Adieresis + Adieresiscyr + Agrave + Amacron + Aogonek + Aring + Atilde + De-cy.BGR + Delta + El-cy.BGR + IotifiedA-cy + Yn-cy + YusClosedlittle-cy + YusiotifiedClosedLittle-cy + Yuslittlecyr + Yuslittleiotifiedcyr + uniF50E + uniF830 + + public.kern1.AE + + AE + AE.ss01 + AEacute + Aiecyr + + public.kern1.C1 + + C + Cacute + Ccaron + Ccedilla + Ccircumflex + Cdotaccent + E-cy + Eiotifiedcyr + Es-cy + Estailcyr + Estailcyr.BSH + Estailcyr.CHU + Reversedzecyr + uniF45D + uniF526 + uniF538 + uniF875 + + public.kern1.Decyr + + Chetailcyr + De-cy + Dwe-cy + Dzze-cy + Elsharptailcyr + Eltailcyr + Emsharptailcyr + Ensharptailcyr + Entailcyr + Ishortsharptailcyr + Petailcyr + Shcha-cy + Shwe-cy + Tetsecyr + Tse-cy + Tswe-cy + uniF87B + + public.kern1.E1 + + E + E-cy.accented + Eacute + Ebreve + Ecaron + Ecircumflex + Edieresis + Edotaccent + Egrave + Emacron + Eogonek + Ie-cy + Iebrevecyr + Io-cy + Io-cy.accented + Yaecyr + uni1EBC + uniF510 + uniF512 + uniF514 + uniF833 + + public.kern1.G.ss01 + + G.ss01 + Gacute.ss01 + Gbreve.ss01 + Gcircumflex.ss01 + Gcommaaccent.ss01 + Gdotaccent.ss01 + + public.kern1.G1 + + G + Gacute + Gbreve + Gcircumflex + Gcommaaccent + Gdotaccent + + public.kern1.Ge-cy + + DeSoft-cy + ElSoft-cy + EmSoft-cy + Engecyr + Ge-cy + Gehookstrokecyr + Gestrokecyr + Gestrokecyr.BSH + Getailcyr + Gheupturn-cy + Gjecyr + TseReversed-cy + YeruBackYer-cy + uniF872 + + public.kern1.H + + Eng + Eng.ss01 + H + Hbar + Hcircumflex + I + Iacute + Ibreve + Icircumflex + Idieresis + Idotaccent + Igrave + Imacron + Iogonek + Itilde + J.ss01 + Jcircumflex.ss01 + M + M.ss01 + N + N.ss01 + Nacute + Nacute.ss01 + Ncaron + Ncaron.ss01 + Ncommaaccent + Ncommaaccent.ss01 + Ntilde + Ntilde.ss01 + + public.kern1.Hardcyr + + Hardsign-cy + Ljecyr + Njecyr + Semisoftcyr + Shhacyr + Softsign-cy + YatIotified-cy + Yatcyr + YerNeutral-cy + uniF478 + + public.kern1.J1 + + J + Jcircumflex + Jecyr + + public.kern1.K + + K + K.ss01 + Ka-cy + Ka-cy.ss01 + Kaaleutcyr + Kabashkcyr + Kastrokecyr + Kcommaaccent + Kcommaaccent.ss01 + Kjecyr + uniF86F + + public.kern1.L + + L + Lacute + Lcaron + Lcommaaccent + Lslash + + public.kern1.O + + Cheabkhcyr + Cheabkhtailcyr + CrossedO-cy + D + Dcaron + Dcroat + DoubleO-cy + Ef-cy + Ef-cy.BGR + Ereversed-cy + Ereversed-cy.accented + Ereverseddieresiscyr + Eth + Fitacyr + Iu-cy + Iu-cy.accented + O + O-cy + O-cy.accented + OBinocular-cy + ODoubleMonocular-cy + OMonocular-cy + Oacute + Obarcyr + Obardieresiscyr + Obreve + Ocircumflex + Odieresis + Odieresiscyr + Ograve + Ohungarumlaut + Omacron + Omega + Omegaroundcyr + Oslash + Oslashacute + Otilde + Q + Qacyr + Schwa + Schwacyr + Schwadieresiscyr + Sjekomicyr + uniF498 + uniF49A + uniF49C + uniF4D2 + uniF4D6 + uniF518 + uniF51A + uniF51C + uniF51E + uniF522 + uniF524 + uniF52C + uniF52E + uniF839 + + public.kern1.Oslash.alt + + Ha-cy + Ha-cy.ss01 + Hahookcyr + Lhacyr + Rhacyr + X + X.ss01 + uniF878 + + public.kern1.P + + Er-cy + Ertickcyr + P + uniF4D4 + + public.kern1.R + + R + Racute + Rcaron + Rcommaaccent + + public.kern1.S1 + + Dzwe-cy + S + Sacute + Scaron + Scedilla + Scircumflex + Scommaaccent + + public.kern1.T1 + + Koppacyr + T + Tcaron + Tcedilla + Tcommaaccent + Te-cy + Tetailcyr + Tsse-cy + Twe-cy + + public.kern1.U1 + + OmegaBroad-cy + Omegacyr + Omegatitlocyr + Otcyr + Psicyr + U + Uacute + Ubreve + Ucircumflex + Udieresis + Ugrave + Uhungarumlaut + Umacron + Uogonek + Uring + Utilde + + public.kern1.Ucyr1 + + U-cy + U-cy.accented + U-cy.ss01 + Uacutedblcyr + Udieresiscyr + Umacroncyr + Ushort-cy + Ushort-cy.ss01 + uniF4CC + + public.kern1.V + + Izhitsacyr + Izhitsagravedblcyr + V + V.ss01 + + public.kern1.W.ss011 + + W.ss01 + Wacute.ss01 + Wcircumflex.ss01 + Wdieresis.ss01 + Wgrave.ss01 + + public.kern1.W1 + + W + Wacute + Wcircumflex + Wdieresis + Wecyr + Wgrave + + public.kern1.Y.ss011 + + Y.ss01 + Yacute.ss01 + Ycircumflex.ss01 + Ydieresis.ss01 + + public.kern1.Y1 + + Ustraightcyr + Ustraightstrokecyr + Y + Yacute + Ycircumflex + Ydieresis + uniF43A + + public.kern1.Yacyr + + Cche-cy + Che-cy + Chedieresiscyr + Chekhakascyr + Chevertcyr + Dekomicyr + Elhookcyr + Em-cy + En-cy + Enhookcyr + Enhookleftcyr + I-cy + Ia-cy + Ia-cy.accented + Ia-cy.ss01 + Idieresiscyr + Ii-cy + Ii-cy.accented + Iishort-cy + Imacroncyr + Palochkacyr + Pe-cy + Sha-cy + Tche-cy + Yeru-cy + Yeru-cy.accented + Yeru-cymacron + Yi-cy + Ylongdieresiscyr + YuReversed-cy + palochkacyr + uniF45E + uniF45F + uniF4C6 + uniF4D8 + uniF528 + uniF52A + uniF532 + uniF536 + uniF87E + + public.kern1.Z1 + + Dzelo-cy + Z + Z.ss01 + Zacute + Zacute.ss01 + Zcaron + Zcaron.ss01 + Zdotaccent + Zdotaccent.ss01 + Zemlya-cy + + public.kern1.Ze-cy + + Dzeabkhcyr + Ksicyr + Ze-cy + Zedieresiscyr + Zetailcyr + Zetailcyr.BSH + uniF516 + + public.kern1.Zhe-cy + + Dzzhecyr + Katailcyr + Kaverticalstrokecyr + Xatailcyr + YusBlended-cy + Yusbigcyr + Yusbigiotifiedcyr + Zhe-cy + Zhebrevecyr + Zhedieresiscyr + Zhetailcyr + Zhwe-cy + + public.kern1.a1 + + a + aacute + abreve + acaron + acircumflex + adieresis + agrave + amacron + aogonek + aring + atilde + + public.kern1.c1 + + c + cacute + ccaron + ccedilla + ccircumflex + cdotaccent + e-cy + e-cy.hist + eiotifiedcyr + eiotifiedcyr.BGR + es-cy + estailcyr + estailcyr.BSH + estailcyr.CHU + koppacyr + reversedzecyr + sjekomicyr + uni1C83 + uniF475 + uniF527 + uniF539 + uniF876 + + public.kern1.comma1 + + comma + quotedblbase + quotesinglbase + + public.kern1.copyright1 + + copyright + registered + + public.kern1.dcaron + + dcaron + dcaron.ss01 + lcaron + + public.kern1.decyr1 + + chetailcyr + dchecyr + de-cy + de-cy.ss01 + dwe-cy + dzze-cy + elsharptailcyr + eltailcyr + emsharptailcyr + ensharptailcyr + entailcyr + ishortsharptailcyr + petailcyr + shcha-cy + shcha-cy.BGR + shhatailcyr + shwe-cy + tetsecyr + tse-cy + tse-cy.BGR + tswe-cy + uniF87C + + public.kern1.e.ss011 + + e.ss01 + eacute.ss01 + ebreve.ss01 + ecaron.ss01 + ecircumflex.ss01 + edieresis.ss01 + edotaccent.ss01 + egrave.ss01 + emacron.ss01 + eogonek.ss01 + oe.ss01 + + public.kern1.e1 + + ae + aeacute + aiecyr + cheabkhcyr + cheabkhtailcyr + e + e-cy.accented + eacute + ebreve + ecaron + ecircumflex + edieresis + edotaccent + egrave + emacron + eogonek + ie-cy + iebrevecyr + iegravecyr + iegravecyr.SRB + io-cy + io-cy.accented + uni1EBD + uniF511 + uniF513 + uniF515 + uniF834 + yaecyr + + public.kern1.el-cy.BGR + + el-cy.BGR + iotifieda-cy + iotifieda-cy.BGR + uni1C81 + yn-cy + yusClosedlittle-cy + yusiotifiedClosedLittle-cy + yuslittlecyr + yuslittleiotifiedcyr + + public.kern1.emdash1 + + emdash + endash + hyphen + + public.kern1.f1 + + f + f_f + + public.kern1.fi + + f_f_i + fi + + public.kern1.five1 + + five + five.tf + + public.kern1.four1 + + four + four.tf + + public.kern1.g.ss011 + + g.ss01 + gacute.ss01 + gbreve.ss01 + gcircumflex.ss01 + gcommaaccent.ss01 + gdotaccent.ss01 + + public.kern1.g1 + + g + gacute + gbreve + gcircumflex + gcommaaccent + gdotaccent + + public.kern1.gecyr + + deSoft-cy + elSoft-cy + emSoft-cy + engecyr + ge-cy + gehookstrokecyr + gestrokecyr + gestrokecyr.BSH + getailcyr + gheupturn-cy + gjecyr + + public.kern1.guillemotright1 + + guillemetright + guilsinglright + + public.kern1.hardcyr + + Tjekomicyr + djekomicyr + elmiddlehookcyr + enmiddlehookcyr + gehookcyr + hardsign-cy + hardsign-cy.BGR + hardsign-cy.ss01 + ljecyr + ljecyr.ss01 + ljekomicyr + njecyr + njecyr.ss01 + njekomicyr + pehookcyr + semisoftcyr + softsign-cy + softsign-cy.BGR + softsign-cy.ss01 + tewithmiddlehook-cy + tjekomicyr + uni1C86 + uni1C87 + uniF479 + yatIotified-cy + yatcyr + yatcyr.BGR + yerNeutral-cy + zjekomicyr + + public.kern1.i1 + + Djekomicyr + Ljekomicyr + Njekomicyr + Zjekomicyr + i + i-cy + iacute + icircumflex + igrave + imacron + iogonek + itilde + uniF476 + yi-cy.alt + + public.kern1.icyr1 + + cche-cy + che-cy + chedieresiscyr + chekhakascyr + chevertcyr + de-cy.BGR + el-cy + elhookcyr + em-cy + en-cy + enhookcyr + enhookleftcyr + ia-cy + ia-cy.accented + idieresiscyr + igravecyr + ii-cy + ii-cy.accented + iishort-cy + imacroncyr + mu + pe-cy + psicyr + q + qacyr + sha-cy + sha-cy.BGR + tche-cy + tseReversed-cy + ubreve + uni1C85 + uniF4C7 + uniF4D9 + uniF521 + uniF529 + uniF52B + uniF533 + uniF537 + uniF873 + uniF87F + utilde + yeru-cy + yeru-cy.accented + yeru-cy.ss01 + yeruBackyer-cy + ylongdieresiscyr + yuReversed-cy + + public.kern1.j1 + + ij + j + jcircumflex + jdotless + + public.kern1.k + + k + ka-cy + ka-cy.BGR + kaaleutcyr + kabashkcyr + kastrokecyr + kcommaaccent + kgreenlandic + kjecyr + uniF870 + + public.kern1.l + + f_f_l + fl + l + lacute + lcommaaccent + + public.kern1.l.ss011 + + Iota-cy + iota-cy + l.ss01 + lacute.ss01 + lcommaaccent.ss01 + + public.kern1.n + + Djecyr + Elmiddlehookcyr + Enmiddlehookcyr + Gehookcyr + Hwe-cy + Kahookcyr + Pehookcyr + Shhatailcyr + TeWithMiddleHook-cy + Tshecyr + a-cy.accented + a-cy.ss01 + a.ss01 + aacute.ss01 + abreve.ss01 + abrevecyr + acircumflex.ss01 + adieresis.ss01 + adieresiscyr + agrave.ss01 + aogonek.ss01 + aring.ss01 + atilde.ss01 + djecyr + el-cy.ss01 + h + hbar + hcircumflex + hwe-cy + ia-cy.ss01 + iotifieda-cy.hist + m + n + nacute + napostrophe + ncaron + ncommaaccent + ntilde + pe-cy.BGR + q.ss01 + shhacyr + te-cy.BGR + tshecyr + uniF49E + uniF49F + uniF50F + uniF831 + + public.kern1.numero + + numero + numero.ss01 + + public.kern1.o1 + + b + b.ss01 + be-cy.SRB + crossedo-cy + ef-cy + er-cy + er-cy.ss01 + ereversed-cy + ereversed-cy.accented + ereverseddieresiscyr + ertickcyr + eturned + fitacyr + iu-cy + iu-cy.BGR + iu-cy.accented + o + o-cy + o-cy.accented + oBinocular-cy + oDoubleMonocular-cy + oMonocular-cy + oacute + obarcyr + obardieresiscyr + obreve + ocircumflex + odieresis + odieresiscyr + ograve + ohungarumlaut + omacron + omegaBroad-cy + omegaroundcyr + omegatitlocyr + oslashacute + otilde + p + p.ss01 + schwacyr + schwadieresiscyr + thorn + uni1C82 + uniF499 + uniF49D + uniF4D3 + uniF4D5 + uniF4D7 + uniF519 + uniF51B + uniF51D + uniF51F + uniF523 + uniF525 + uniF52D + uniF52F + uniF83A + + public.kern1.period1 + + ellipsis + period + + public.kern1.quotedbl1 + + quotedbl + quotesingle + + public.kern1.quoteleft1 + + quotedblleft + quoteleft + + public.kern1.quoteright1 + + apostrophemod + minute + quotedblright + quoteright + second + + public.kern1.s1 + + dzwe-cy + s + sacute + scaron + scedilla + scircumflex + scommaaccent + + public.kern1.t.ss011 + + t.ss01 + tcedilla.ss01 + tcommaaccent.ss01 + + public.kern1.t1 + + t + tcaron + tcedilla + tcommaaccent + + public.kern1.te-cy + + te-cy + tetailcyr + tsse-cy + twe-cy + + public.kern1.u1 + + igravecyr.SRB + ii-cy.BGR + iishort-cy.BGR + pe-cy.SRB + te-cy.SRB + u + uacute + ucircumflex + udieresis + ugrave + uhungarumlaut + umacron + uogonek + uring + + public.kern1.uni0435.ss011 + + ie-cy.ss01 + io-cy.ss01 + + public.kern1.v + + izhitsacyr + izhitsagravedblcyr + v + + public.kern1.w1 + + omegacyr + otcyr + w + wacute + wcircumflex + wdieresis + wecyr + wgrave + + public.kern1.x + + ha-cy + hahookcyr + lhacyr + rhacyr + uniF879 + x + + public.kern1.y1 + + Ukcyr + u-cy + u-cy.accented + uacutedblcyr + udieresiscyr + ukcyr + umacroncyr + uniF43B + uniF4CD + ushort-cy + ustraightcyr + ustraightstrokecyr + y + yacute + ycircumflex + ydieresis + + public.kern1.z1 + + dzelo-cy + z + zacute + zcaron + zdotaccent + zemlya-cy + + public.kern1.ze-cy + + dzeabkhcyr + ksicyr + uniF517 + ze-cy + ze-cy.BGR + zedieresiscyr + zetailcyr + zetailcyr.BSH + + public.kern1.zhe-cy + + dzzhecyr + katailcyr + kaverticalstrokecyr + xatailcyr + yusBlended-cy + yusbigcyr + yusbigiotifiedcyr + yusbigiotifiedcyr.BGR + zhe-cy + zhe-cy.BGR + zhebrevecyr + zhedieresiscyr + zhetailcyr + zhwe-cy + + public.kern2.A.ss01 + + A.ss01 + AE.ss01 + Aacute.ss01 + Acircumflex.ss01 + Adieresis.ss01 + Agrave.ss01 + Amacron.ss01 + Aogonek.ss01 + Atilde.ss01 + + public.kern2.A.ss012 + + A-cy.ss01 + Abreve.ss01 + Aring.ss01 + + public.kern2.A2 + + A + A-cy + A-cy.accented + AE + AEacute + Aacute + Abreve + Abrevecyr + Acaron + Acircumflex + Adieresis + Adieresiscyr + Agrave + Aiecyr + Amacron + Aogonek + Aring + Atilde + De-cy.BGR + Delta + El-cy.BGR + Yn-cy + YusClosedlittle-cy + Yuslittlecyr + uniF50E + uniF830 + + public.kern2.B + + B + D + Dcaron + E + Eacute + Ecaron + Ecircumflex + Edieresis + Edotaccent + Egrave + Emacron + Eogonek + F + H + Hbar + Hcircumflex + I + Iacute + Ibreve + Icircumflex + Idieresis + Idotaccent + Igrave + Imacron + Iogonek + Itilde + K + K.ss01 + Kcommaaccent + Kcommaaccent.ss01 + L + Lacute + Lcaron + Lcommaaccent + Ldot + M + N + N.ss01 + Nacute + Nacute.ss01 + Ncaron + Ncaron.ss01 + Ncommaaccent + Ncommaaccent.ss01 + Ntilde + Ntilde.ss01 + P + R + Racute + Rcaron + Rcommaaccent + Thorn + uni1EBC + + public.kern2.Che-cy + + Cche-cy + Che-cy + Chedieresiscyr + Chekhakascyr + Chetailcyr + Chevertcyr + uniF4C6 + uniF87E + + public.kern2.De-cy + + Dchecyr + De-cy + DeSoft-cy + Dwe-cy + Dzze-cy + Dzzhecyr + TseReversed-cy + + public.kern2.El-cy + + El-cy + ElSoft-cy + Elhookcyr + Elmiddlehookcyr + Elsharptailcyr + Eltailcyr + Lhacyr + Ljekomicyr + uniF872 + + public.kern2.Eth + + Dcroat + Eth + Gestrokecyr + + public.kern2.G + + C + Cacute + Ccaron + Ccedilla + Ccircumflex + Cdotaccent + CrossedO-cy + DoubleO-cy + E-cy + Ef-cy.BGR + Es-cy + Estailcyr + Estailcyr.BSH + Estailcyr.CHU + Fitacyr + G + G.ss01 + Gacute + Gacute.ss01 + Gbreve + Gbreve.ss01 + Gcircumflex + Gcircumflex.ss01 + Gcommaaccent + Gcommaaccent.ss01 + Gdotaccent + Gdotaccent.ss01 + Haabkhcyr + Koppacyr + O + O-cy + O-cy.accented + OBinocular-cy + ODoubleMonocular-cy + OE + OMonocular-cy + Oacute + Obarcyr + Obardieresiscyr + Obreve + Ocircumflex + Odieresis + Odieresiscyr + Ograve + Ohungarumlaut + Omacron + Omegaroundcyr + Oslash + Otilde + Q + Q.ss01 + Qacyr + Schwacyr + Schwadieresiscyr + Sjekomicyr + Ukcyr + YuReversed-cy + uniF45D + uniF49A + uniF49C + uniF4D2 + uniF518 + uniF51A + uniF51C + uniF51E + uniF526 + uniF839 + uniF875 + + public.kern2.Gecyr + + Be-cy + E-cy.accented + Eiotifiedcyr + Em-cy + EmSoft-cy + Emsharptailcyr + En-cy + Engecyr + Enhookcyr + Enhookleftcyr + Enmiddlehookcyr + Ensharptailcyr + Entailcyr + Er-cy + Ertickcyr + Gehookcyr + Gestrokecyr.BSH + Getailcyr + Gheupturn-cy + Gjecyr + Hwe-cy + I-cy + Iebrevecyr + Ii-cy + Ii-cy.accented + Io-cy.accented + IotifiedA-cy + Iu-cy.accented + Ka-cy + Kaaleutcyr + Kahookcyr + Katailcyr + Kaverticalstrokecyr + Kjecyr + Njekomicyr + Palochkacyr + Pe-cy + Pehookcyr + Petailcyr + Rhacyr + Shhacyr + Shhatailcyr + Shwe-cy + Tswe-cy + Ve-cy + Yeru-cy.accented + Yeru-cymacron + Yi-cy + Ylongdieresiscyr + Yusbigiotifiedcyr + YusiotifiedClosedLittle-cy + Yuslittleiotifiedcyr + palochkacyr + uniF45E + uniF45F + uniF498 + uniF4D4 + uniF510 + uniF512 + uniF514 + uniF52C + uniF52E + uniF532 + uniF536 + uniF833 + uniF86F + uniF87B + + public.kern2.Ia-cy + + Ia-cy + Ia-cy.accented + Yaecyr + uniF4D8 + uniF528 + uniF52A + + public.kern2.Iishort-cy + + Idieresiscyr + Iishort-cy + Imacroncyr + Ishortsharptailcyr + + public.kern2.J + + J + Jcircumflex + Jecyr + + public.kern2.Oslash.alt + + Ha-cy.ss01 + Hahookcyr + X + X.ss01 + Xatailcyr + uniF878 + + public.kern2.S + + Dzwe-cy + S + Sacute + Scaron + Scedilla + Scircumflex + Scommaaccent + + public.kern2.T + + Djecyr + T + Tcaron + Tcedilla + Tche-cy + Tcommaaccent + Te-cy + TeWithMiddleHook-cy + Tetailcyr + Tetsecyr + Tjekomicyr + Tshecyr + Tsse-cy + Twe-cy + + public.kern2.U + + Iota-cy + OmegaBroad-cy + Omegacyr + Omegatitlocyr + Otcyr + Psicyr + U + Uacute + Ubreve + Ucircumflex + Udieresis + Ugrave + Uhungarumlaut + Umacron + Uogonek + Uring + Utilde + + public.kern2.Ucyr.ss01 + + U-cy.accented + U-cy.ss01 + Uacutedblcyr + Udieresiscyr + Umacroncyr + Ushort-cy.ss01 + uniF4CC + + public.kern2.V + + Izhitsacyr + Izhitsagravedblcyr + V + V.ss01 + + public.kern2.W + + W + W.ss01 + Wacute + Wacute.ss01 + Wcircumflex + Wcircumflex.ss01 + Wdieresis + Wdieresis.ss01 + Wecyr + Wgrave + Wgrave.ss01 + + public.kern2.Y + + Ustraightcyr + Ustraightstrokecyr + Y + Y.ss01 + Yacute + Yacute.ss01 + Ycircumflex + Ycircumflex.ss01 + Ydieresis + Ydieresis.ss01 + uniF43A + + public.kern2.Z + + Dzelo-cy + Z + Z.ss01 + Zacute + Zacute.ss01 + Zcaron + Zcaron.ss01 + Zdotaccent + Zdotaccent.ss01 + Zemlya-cy + + public.kern2.Ze-cy1 + + Dzeabkhcyr + Ksicyr + Ze-cy + Zedieresiscyr + Zetailcyr + Zetailcyr.BSH + Zhwe-cy + uniF516 + + public.kern2.Zhe-cy1 + + YusBlended-cy + Yusbigcyr + Zhe-cy + Zhebrevecyr + Zhedieresiscyr + Zhetailcyr + + public.kern2.a + + a + a-cy + a-cy.accented + aacute + abreve + abrevecyr + acaron + acircumflex + adieresis + adieresiscyr + ae + aeacute + agrave + aiecyr + amacron + aogonek + aring + atilde + uniF50F + uniF831 + + public.kern2.acute.case + + acute.case + hungarumlaut.case + + public.kern2.che-cy + + cche-cy + che-cy + chedieresiscyr + chekhakascyr + chetailcyr + chevertcyr + uniF4C7 + uniF87F + + public.kern2.comma + + comma + quotedblbase + quotesinglbase + + public.kern2.copyright + + copyright + registered + + public.kern2.decyr.ss01 + + de-cy.ss01 + deSoft-cy + dwe-cy + dzze-cy + dzzhecyr + tseReversed-cy + + public.kern2.el-cy + + el-cy + el-cy.ss01 + elSoft-cy + elhookcyr + elmiddlehookcyr + elsharptailcyr + eltailcyr + lhacyr + ljecyr.ss01 + ljekomicyr + uniF873 + + public.kern2.el-cy.BGR1 + + el-cy.BGR + uni1C81 + yn-cy + yusClosedlittle-cy + yuslittlecyr + + public.kern2.emdash + + emdash + endash + hyphen + + public.kern2.f + + f + f_f + f_f_i + f_f_l + fi + fl + gestrokecyr + + public.kern2.f_f.ss01 + + f_f.ss01 + f_f_i.ss01 + f_f_l.ss01 + + public.kern2.fi.ss01 + + fi.ss01 + fl.ss01 + + public.kern2.five + + five + five.tf + + public.kern2.four + + four + four.tf + + public.kern2.g + + g + gacute + gbreve + gcircumflex + gcommaaccent + gdotaccent + + public.kern2.g.ss01 + + g.ss01 + gacute.ss01 + gbreve.ss01 + gcircumflex.ss01 + gcommaaccent.ss01 + gdotaccent.ss01 + + public.kern2.guillemotleft + + guillemetleft + guilsinglleft + + public.kern2.guillemotright + + guillemetright + guilsinglright + + public.kern2.h + + eiotifiedcyr.BGR + h + hcircumflex + hwe-cy + iotifieda-cy.BGR + iu-cy.BGR + k + ka-cy.BGR + kcommaaccent + l + lacute + lcaron + lcommaaccent + ldot + shhacyr + shhatailcyr + ve-cy.BGR + yatcyr.BGR + yusbigiotifiedcyr.BGR + + public.kern2.i1 + + i + i-cy + iacute + icircumflex + igrave + imacron + iogonek + itilde + uniF476 + yi-cy.alt + + public.kern2.ia-cy + + ia-cy + ia-cy.accented + ia-cy.ss01 + uniF4D9 + uniF529 + uniF52B + yaecyr + + public.kern2.j + + enhookleftcyr + j + jcircumflex + jdotless + + public.kern2.l.ss01 + + l.ss01 + lacute.ss01 + lcaron.ss01 + lcommaaccent.ss01 + ldot.ss01 + + public.kern2.m + + eiotifiedcyr + em-cy + emSoft-cy + emsharptailcyr + en-cy + eng + engecyr + enhookcyr + enmiddlehookcyr + ensharptailcyr + entailcyr + er-cy + er-cy.ss01 + ertickcyr + ge-cy + gehookcyr + gehookstrokecyr + gestrokecyr.BSH + getailcyr + gheupturn-cy + gjecyr + idieresiscyr + idotless + igravecyr + ii-cy + ii-cy.accented + iishort-cy + imacroncyr + iotifieda-cy + ishortsharptailcyr + iu-cy + iu-cy.accented + ka-cy + kaaleutcyr + kahookcyr + katailcyr + kaverticalstrokecyr + kgreenlandic + kjecyr + m + mu + n + nacute + ncaron + ncommaaccent + njecyr.ss01 + njekomicyr + ntilde + p + p.ss01 + pe-cy + pe-cy.BGR + pehookcyr + petailcyr + psicyr + r + racute + rcaron + rcommaaccent + rhacyr + sha-cy + shcha-cy + shwe-cy + softsign-cy + softsign-cy.BGR + softsign-cy.ss01 + te-cy.BGR + tse-cy + tswe-cy + uni1C85 + uniF499 + uniF4D5 + uniF521 + uniF52D + uniF52F + uniF533 + uniF537 + uniF870 + uniF87C + ve-cy + ve-cy.ss01 + yatIotified-cy + yeru-cy + yeru-cy.accented + yeru-cy.ss01 + ylongdieresiscyr + yusbigiotifiedcyr + yusiotifiedClosedLittle-cy + yuslittleiotifiedcyr + + public.kern2.o + + Dekomicyr + Djekomicyr + a-cy.ss01 + a.ss01 + aacute.ss01 + abreve.ss01 + acircumflex.ss01 + adieresis.ss01 + agrave.ss01 + amacron.ss01 + aogonek.ss01 + aring.ss01 + atilde.ss01 + c + cacute + ccaron + ccedilla + ccircumflex + cdotaccent + cent + crossedo-cy + d + d.ss01 + dcaron + dcaron.ss01 + dcroat + dcroat.ss01 + de-cy.BGR + dekomicyr + djekomicyr + e + e-cy + e-cy.accented + e-cy.hist + e.ss01 + eacute + eacute.ss01 + ebreve + ebreve.ss01 + ecaron + ecaron.ss01 + ecircumflex + ecircumflex.ss01 + edieresis + edieresis.ss01 + edotaccent + edotaccent.ss01 + ef-cy + egrave + egrave.ss01 + emacron + emacron.ss01 + eogonek + eogonek.ss01 + es-cy + estailcyr + estailcyr.BSH + estailcyr.CHU + eth + eturned + fitacyr + haabkhcyr + ie-cy + ie-cy.ss01 + iebrevecyr + iegravecyr + iegravecyr.SRB + io-cy + io-cy.accented + io-cy.ss01 + koppacyr + o + o-cy + o-cy.accented + oBinocular-cy + oDoubleMonocular-cy + oMonocular-cy + oacute + obarcyr + obardieresiscyr + obreve + ocircumflex + odieresis + odieresiscyr + oe.ss01 + ograve + ohungarumlaut + omacron + omegaBroad-cy + omegaroundcyr + omegatitlocyr + oslashacute + otilde + q + q.ss01 + qacyr + schwacyr + schwadieresiscyr + sjekomicyr + ukcyr + uni1C82 + uni1C83 + uni1EBD + uniF475 + uniF49D + uniF4D3 + uniF511 + uniF513 + uniF515 + uniF519 + uniF51B + uniF51D + uniF51F + uniF527 + uniF834 + uniF83A + uniF876 + yuReversed-cy + + public.kern2.percent + + percent + perthousand + + public.kern2.period + + ellipsis + period + + public.kern2.quotedbl + + quotedbl + quotesingle + + public.kern2.quoteleft + + quotedblleft + quoteleft + + public.kern2.quoteright + + apostrophemod + minute + quotedblright + quoteright + second + + public.kern2.s + + dzwe-cy + s + sacute + scaron + scedilla + scircumflex + scommaaccent + + public.kern2.t + + t + t.ss01 + tbar.ss01 + tcaron + tcaron.ss01 + tcedilla + tcedilla.ss01 + tcommaaccent + tcommaaccent.ss01 + + public.kern2.tecyr + + tche-cy + te-cy.ss01 + tetailcyr + tetsecyr + tewithmiddlehook-cy + tjekomicyr + tsse-cy + twe-cy + + public.kern2.u + + igravecyr.SRB + ii-cy.BGR + iishort-cy.BGR + iota-cy + pe-cy.SRB + sha-cy.BGR + shcha-cy.BGR + te-cy.SRB + tse-cy.BGR + u + uacute + ubreve + ucircumflex + udieresis + ugrave + uhungarumlaut + umacron + uogonek + uring + utilde + + public.kern2.v1 + + izhitsacyr + izhitsagravedblcyr + v + + public.kern2.w + + omegacyr + otcyr + w + wacute + wcircumflex + wdieresis + wecyr + wgrave + + public.kern2.x + + ha-cy + hahookcyr + uniF879 + x + + public.kern2.y + + u-cy + u-cy.accented + uacutedblcyr + udieresiscyr + umacroncyr + uniF43B + uniF4CD + ustraightcyr + ustraightstrokecyr + y + yacute + ycircumflex + ydieresis + + public.kern2.z + + dzelo-cy + z + zacute + zcaron + zdotaccent + zemlya-cy + + public.kern2.ze-cy1 + + dzeabkhcyr + ksicyr + uniF517 + ze-cy + ze-cy.BGR + zedieresiscyr + zetailcyr + zetailcyr.BSH + zhwe-cy + + public.kern2.zero + + uni1C80 + zero + zero.tf + + public.kern2.zhe-cy1 + + xatailcyr + yusBlended-cy + yusbigcyr + zhe-cy + zhe-cy.BGR + zhebrevecyr + zhedieresiscyr + zhetailcyr + + ss01 + + A-cy.ss01 + A.ss01 + AE.ss01 + Aacute.ss01 + Abreve.ss01 + Acircumflex.ss01 + Adieresis.ss01 + Agrave.ss01 + Amacron.ss01 + Aogonek.ss01 + Aring.ss01 + Atilde.ss01 + Em-cy.ss01 + Eng.ss01 + G.ss01 + Gacute.ss01 + Gbreve.ss01 + Gcircumflex.ss01 + Gcommaaccent.ss01 + Gdotaccent.ss01 + Ha-cy.ss01 + Ia-cy.ss01 + J.ss01 + Jcircumflex.ss01 + K.ss01 + Ka-cy.ss01 + Kcommaaccent.ss01 + M.ss01 + N.ss01 + Nacute.ss01 + Ncaron.ss01 + Ncommaaccent.ss01 + Ntilde.ss01 + Q.ss01 + U-cy.ss01 + Ushort-cy.ss01 + V.ss01 + W.ss01 + Wacute.ss01 + Wcircumflex.ss01 + Wdieresis.ss01 + Wgrave.ss01 + X.ss01 + Y.ss01 + Yacute.ss01 + Ycircumflex.ss01 + Ydieresis.ss01 + Z.ss01 + Zacute.ss01 + Zcaron.ss01 + Zdotaccent.ss01 + Zhe-cy.ss01 + a-cy.ss01 + a.ss01 + aacute.ss01 + abreve.ss01 + acircumflex.ss01 + adieresis.ss01 + ae.ss01 + agrave.ss01 + amacron.ss01 + aogonek.ss01 + aring.ss01 + arrowdown.ss01 + arrowdown.ss01.case + arrowleft.ss01 + arrowleft.ss01.case + arrowright.ss01 + arrowright.ss01.case + arrowup.ss01 + arrowup.ss01.case + atilde.ss01 + b.ss01 + d.ss01 + dcaron.ss01 + dcroat.ss01 + de-cy.ss01 + e.ss01 + eacute.ss01 + ebreve.ss01 + ecaron.ss01 + ecircumflex.ss01 + edieresis.ss01 + edotaccent.ss01 + egrave.ss01 + el-cy.ss01 + emacron.ss01 + eogonek.ss01 + er-cy.ss01 + f.ss01 + f_f.ss01 + f_f_i.ss01 + f_f_l.ss01 + fi.ss01 + fl.ss01 + g.ss01 + gacute.ss01 + gbreve.ss01 + gcircumflex.ss01 + gcommaaccent.ss01 + gdotaccent.ss01 + germandbls.ss01 + hardsign-cy.ss01 + ia-cy.ss01 + ie-cy.ss01 + io-cy.ss01 + l.ss01 + lacute.ss01 + lcaron.ss01 + lcommaaccent.ss01 + ldot.ss01 + ljecyr.ss01 + lslash.ss01 + njecyr.ss01 + numero.ss01 + oe.ss01 + p.ss01 + q.ss01 + softsign-cy.ss01 + t.ss01 + tbar.ss01 + tcaron.ss01 + tcedilla.ss01 + tcommaaccent.ss01 + te-cy.ss01 + ve-cy.ss01 + yen.ss01 + yeru-cy.ss01 + + ss01_def + + A-cy + A + AE + Aacute + Abreve + Acircumflex + Adieresis + Agrave + Amacron + Aogonek + Aring + Atilde + Em-cy + Eng + G + Gacute + Gbreve + Gcircumflex + Gcommaaccent + Gdotaccent + Ha-cy + Ia-cy + J + Jcircumflex + K + Ka-cy + Kcommaaccent + M + N + Nacute + Ncaron + Ncommaaccent + Ntilde + Q + U-cy + Ushort-cy + V + W + Wacute + Wcircumflex + Wdieresis + Wgrave + X + Y + Yacute + Ycircumflex + Ydieresis + Z + Zacute + Zcaron + Zdotaccent + Zhe-cy + a-cy + a + aacute + abreve + acircumflex + adieresis + ae + agrave + amacron + aogonek + aring + arrowdown + arrowdown.case + arrowleft + arrowleft.case + arrowright + arrowright.case + arrowup + arrowup.case + atilde + b + d + dcaron + dcroat + de-cy + e + eacute + ebreve + ecaron + ecircumflex + edieresis + edotaccent + egrave + el-cy + emacron + eogonek + er-cy + f + f_f + f_f_i + f_f_l + fi + fl + g + gacute + gbreve + gcircumflex + gcommaaccent + gdotaccent + germandbls + hardsign-cy + ia-cy + ie-cy + io-cy + l + lacute + lcaron + lcommaaccent + ldot + ljecyr + lslash + njecyr + numero + oe + p + q + softsign-cy + t + tbar + tcaron + tcedilla + tcommaaccent + te-cy + ve-cy + yen + yeru-cy + + + diff --git a/sources/FixelText-Regular.ufo/kerning.plist b/sources/FixelText-Regular.ufo/kerning.plist new file mode 100644 index 00000000..c3a3ccea --- /dev/null +++ b/sources/FixelText-Regular.ufo/kerning.plist @@ -0,0 +1,2044 @@ + + + + + Zhe-cy + + public.kern2.G + -30 + + space + + public.kern2.W + -10 + public.kern2.Y + -70 + + uni1C82 + + public.kern2.y + -60 + + public.kern1.A.ss012 + + public.kern2.G + -30 + public.kern2.T + -30 + public.kern2.U + -20 + public.kern2.Ucyr.ss01 + -30 + public.kern2.V + -30 + public.kern2.W + -20 + public.kern2.Y + -55 + public.kern2.Z + -10 + public.kern2.a + -10 + public.kern2.emdash + -10 + public.kern2.o + -20 + public.kern2.quotedbl + -40 + public.kern2.quoteright + -40 + public.kern2.tecyr + -30 + public.kern2.u + -20 + public.kern2.w + -30 + public.kern2.x + 4 + public.kern2.y + -10 + + public.kern1.A2 + + public.kern2.G + -20 + public.kern2.T + -40 + public.kern2.U + -10 + public.kern2.Ucyr.ss01 + -20 + public.kern2.V + -25 + public.kern2.W + -20 + public.kern2.Y + -50 + public.kern2.Z + 10 + public.kern2.a + -5 + public.kern2.decyr.ss01 + 4 + public.kern2.emdash + -10 + public.kern2.g + 5 + public.kern2.j + -20 + public.kern2.o + -10 + public.kern2.period + 30 + public.kern2.quotedbl + -50 + public.kern2.quoteright + -60 + public.kern2.t + -10 + public.kern2.tecyr + -30 + public.kern2.u + -5 + public.kern2.w + -20 + public.kern2.y + -40 + public.kern2.z + 10 + + public.kern1.C1 + + public.kern2.G + -5 + public.kern2.Oslash.alt + -5 + public.kern2.Ucyr.ss01 + -2 + public.kern2.Y + -20 + public.kern2.Z + -10 + public.kern2.emdash + -20 + public.kern2.f + -2 + public.kern2.g + -6 + public.kern2.j + -6 + public.kern2.o + -10 + public.kern2.period + -20 + public.kern2.tecyr + -2 + public.kern2.u + -4 + public.kern2.x + -5 + + public.kern1.Decyr + + public.kern2.G + -10 + public.kern2.Ucyr.ss01 + -30 + public.kern2.a + -10 + public.kern2.comma + 30 + public.kern2.decyr.ss01 + 2 + public.kern2.emdash + -10 + public.kern2.o + -10 + public.kern2.period + 10 + public.kern2.quoteright + -30 + public.kern2.tecyr + -20 + + public.kern1.E1 + + public.kern2.G + -5 + public.kern2.J + 10 + public.kern2.o + -10 + public.kern2.period + 20 + public.kern2.quotedbl + 10 + public.kern2.w + -5 + public.kern2.y + -10 + + public.kern1.G.ss01 + + public.kern2.A.ss01 + 10 + public.kern2.T + -10 + public.kern2.V + -20 + public.kern2.W + -10 + public.kern2.Y + -20 + public.kern2.quotedbl + -10 + public.kern2.quoteright + -20 + public.kern2.t + -4 + public.kern2.w + -23 + public.kern2.y + -20 + + public.kern1.G1 + + public.kern2.G + 10 + public.kern2.T + -10 + public.kern2.V + -20 + public.kern2.W + -10 + public.kern2.Y + -20 + public.kern2.comma + 10 + public.kern2.emdash + 20 + public.kern2.period + 10 + + public.kern1.Ge-cy + + public.kern2.A.ss012 + -30 + public.kern2.A2 + -30 + public.kern2.G + -10 + public.kern2.Gecyr + 10 + public.kern2.T + 60 + public.kern2.a + -60 + public.kern2.comma + -80 + public.kern2.emdash + -60 + public.kern2.guillemotright + -50 + public.kern2.i1 + 20 + public.kern2.m + -60 + public.kern2.o + -80 + public.kern2.period + -90 + public.kern2.x + -50 + public.kern2.y + -50 + + public.kern1.H + + public.kern2.Gecyr + 1 + public.kern2.comma + -20 + public.kern2.j + -10 + public.kern2.quoteright + -20 + + public.kern1.Hardcyr + + public.kern2.A.ss012 + 8 + public.kern2.Oslash.alt + -5 + public.kern2.T + -110 + public.kern2.Ucyr.ss01 + -70 + public.kern2.quotedbl + -120 + public.kern2.quoteright + -70 + public.kern2.tecyr + -30 + public.kern2.x + -20 + public.kern2.y + -30 + + public.kern1.J1 + + public.kern2.A.ss012 + 4 + public.kern2.A2 + -10 + public.kern2.S + -20 + public.kern2.T + -2 + public.kern2.Z + -10 + public.kern2.comma + -30 + public.kern2.period + -30 + + public.kern1.K + + public.kern2.G + -50 + public.kern2.J + 10 + public.kern2.S + -10 + public.kern2.U + -3 + public.kern2.a + -10 + public.kern2.emdash + -60 + public.kern2.f + -5 + public.kern2.g + -20 + public.kern2.j + -10 + public.kern2.o + -40 + public.kern2.period + 10 + public.kern2.quoteright + -30 + public.kern2.t + -30 + public.kern2.tecyr + -40 + public.kern2.u + -30 + public.kern2.w + -30 + public.kern2.y + -40 + + public.kern1.L + + public.kern2.G + -40 + public.kern2.J + 10 + public.kern2.T + -90 + public.kern2.U + -40 + public.kern2.V + -100 + public.kern2.W + -60 + public.kern2.Y + -90 + public.kern2.a + -10 + public.kern2.emdash + -80 + public.kern2.guillemotleft + -30 + public.kern2.j + -10 + public.kern2.o + -40 + public.kern2.quotedbl + -90 + public.kern2.quoteright + -70 + public.kern2.t + -20 + public.kern2.u + -10 + public.kern2.w + -60 + public.kern2.y + -90 + public.kern2.z + 10 + + public.kern1.O + + Zhe-cy + -30 + public.kern2.A.ss012 + 5 + public.kern2.A2 + -20 + public.kern2.J + -40 + public.kern2.Oslash.alt + -20 + public.kern2.T + -30 + public.kern2.Ucyr.ss01 + -30 + public.kern2.V + -30 + public.kern2.W + -10 + public.kern2.Y + -40 + public.kern2.Z + -40 + public.kern2.a + -10 + public.kern2.comma + -60 + public.kern2.decyr.ss01 + -20 + public.kern2.emdash + 20 + public.kern2.j + -10 + public.kern2.period + -50 + public.kern2.quotedbl + -20 + public.kern2.x + -10 + public.kern2.z + -10 + + public.kern1.Oslash.alt + + public.kern2.G + -30 + public.kern2.S + -5 + public.kern2.a + -10 + public.kern2.comma + 10 + public.kern2.emdash + -20 + public.kern2.f + -5 + public.kern2.g + -5 + public.kern2.j + -10 + public.kern2.o + -30 + public.kern2.period + 10 + public.kern2.quoteright + -40 + public.kern2.s + -5 + public.kern2.t + -10 + public.kern2.tecyr + -20 + public.kern2.u + -10 + public.kern2.w + -20 + public.kern2.y + -20 + + public.kern1.P + + public.kern2.A.ss01 + -40 + public.kern2.A.ss012 + -40 + public.kern2.A2 + -60 + public.kern2.J + -70 + public.kern2.Oslash.alt + -30 + public.kern2.T + -20 + public.kern2.Ucyr.ss01 + -20 + public.kern2.V + -5 + public.kern2.W + -5 + public.kern2.Y + -10 + public.kern2.Z + -40 + public.kern2.a + -20 + public.kern2.comma + -110 + public.kern2.decyr.ss01 + -30 + public.kern2.emdash + -4 + public.kern2.g + -10 + public.kern2.g.ss01 + -20 + public.kern2.j + -30 + public.kern2.o + -30 + public.kern2.period + -130 + public.kern2.quotedbl + -20 + public.kern2.s + -20 + public.kern2.tecyr + 4 + public.kern2.x + -5 + public.kern2.z + -10 + + public.kern1.R + + public.kern2.G + -10 + public.kern2.T + -20 + public.kern2.U + -20 + public.kern2.V + -15 + public.kern2.W + -5 + public.kern2.Y + -20 + public.kern2.a + -5 + public.kern2.emdash + -10 + public.kern2.j + -10 + public.kern2.o + -20 + public.kern2.quotedbl + -20 + public.kern2.quoteright + -10 + public.kern2.s + -5 + public.kern2.t + -5 + public.kern2.u + -20 + public.kern2.w + -5 + public.kern2.y + -5 + + public.kern1.S1 + + public.kern2.Oslash.alt + -5 + public.kern2.T + -5 + public.kern2.V + -10 + public.kern2.W + -10 + public.kern2.Y + -30 + public.kern2.Z + -10 + public.kern2.comma + -10 + public.kern2.emdash + 10 + public.kern2.g + -20 + public.kern2.j + -10 + public.kern2.quotedbl + -30 + public.kern2.quoteright + -30 + public.kern2.t + -5 + public.kern2.w + -10 + public.kern2.x + -5 + public.kern2.y + -10 + + public.kern1.T1 + + public.kern2.A.ss01 + -20 + public.kern2.A.ss012 + -45 + public.kern2.A2 + -40 + public.kern2.G + -30 + public.kern2.J + -70 + public.kern2.S + -10 + public.kern2.T + 40 + public.kern2.V + 20 + public.kern2.W + 20 + public.kern2.Y + 10 + public.kern2.a + -60 + public.kern2.comma + -50 + public.kern2.decyr.ss01 + -80 + public.kern2.emdash + -70 + public.kern2.f + -10 + public.kern2.g + -70 + public.kern2.guillemotleft + -50 + public.kern2.guillemotright + -60 + public.kern2.i1 + 20 + public.kern2.j + -20 + public.kern2.m + -60 + public.kern2.o + -80 + public.kern2.period + -70 + public.kern2.quotedbl + 20 + public.kern2.quoteright + -20 + public.kern2.s + -60 + public.kern2.tecyr + -60 + public.kern2.u + -55 + public.kern2.w + -60 + public.kern2.x + -60 + public.kern2.y + -60 + public.kern2.z + -50 + + public.kern1.U1 + + public.kern2.A.ss01 + -10 + public.kern2.A.ss012 + -4 + public.kern2.A2 + -10 + public.kern2.J + -20 + public.kern2.Z + -20 + public.kern2.comma + -30 + public.kern2.j + -20 + public.kern2.period + -30 + public.kern2.quoteright + -40 + public.kern2.z + -10 + + public.kern1.Ucyr1 + + public.kern2.A.ss012 + -20 + public.kern2.A2 + -20 + public.kern2.G + -20 + public.kern2.Gecyr + -10 + public.kern2.T + 10 + public.kern2.a + -50 + public.kern2.comma + -90 + public.kern2.decyr.ss01 + -50 + public.kern2.emdash + -50 + public.kern2.guillemotright + -60 + public.kern2.i1 + 20 + public.kern2.m + -60 + public.kern2.o + -70 + public.kern2.period + -90 + public.kern2.tecyr + -20 + public.kern2.x + -20 + public.kern2.y + -30 + + public.kern1.V + + public.kern2.A.ss01 + -60 + public.kern2.A.ss012 + -20 + public.kern2.A2 + -25 + public.kern2.G + -30 + public.kern2.J + -80 + public.kern2.S + -10 + public.kern2.T + 20 + public.kern2.a + -50 + public.kern2.comma + -100 + public.kern2.emdash + -40 + public.kern2.f + -5 + public.kern2.g + -40 + public.kern2.g.ss01 + -40 + public.kern2.guillemotleft + -40 + public.kern2.guillemotright + -30 + public.kern2.i1 + -2 + public.kern2.j + -20 + public.kern2.m + -50 + public.kern2.o + -60 + public.kern2.period + -100 + public.kern2.quotedbl + 10 + public.kern2.quoteright + -10 + public.kern2.s + -40 + public.kern2.t + -10 + public.kern2.u + -50 + public.kern2.w + -10 + public.kern2.x + -20 + public.kern2.y + -20 + public.kern2.z + -20 + + public.kern1.W.ss011 + + public.kern2.A.ss01 + -10 + public.kern2.A.ss012 + -10 + public.kern2.A2 + -20 + public.kern2.G + -13 + public.kern2.J + -30 + public.kern2.S + -10 + public.kern2.T + 30 + public.kern2.Y + 10 + public.kern2.Z + -9 + public.kern2.a + -20 + public.kern2.comma + -60 + public.kern2.emdash + -20 + public.kern2.g + -15 + public.kern2.g.ss01 + -11 + public.kern2.guillemotright + -12 + public.kern2.i1 + -9 + public.kern2.m + -10 + public.kern2.o + -40 + public.kern2.period + -80 + public.kern2.quotedbl + 10 + public.kern2.quoteright + 20 + public.kern2.s + -11 + public.kern2.u + -10 + public.kern2.w + -17 + public.kern2.y + -13 + public.kern2.z + -10 + + public.kern1.W1 + + public.kern2.A.ss01 + -40 + public.kern2.A.ss012 + -10 + public.kern2.A2 + -20 + public.kern2.G + -10 + public.kern2.J + -70 + public.kern2.S + -5 + public.kern2.T + 20 + public.kern2.Z + -10 + public.kern2.a + -40 + public.kern2.comma + -40 + public.kern2.emdash + -20 + public.kern2.g + -30 + public.kern2.guillemotleft + -30 + public.kern2.guillemotright + -10 + public.kern2.i1 + 10 + public.kern2.j + -20 + public.kern2.m + -30 + public.kern2.o + -50 + public.kern2.period + -40 + public.kern2.quoteright + -20 + public.kern2.s + -20 + public.kern2.u + -20 + public.kern2.w + -5 + public.kern2.x + -10 + public.kern2.y + -10 + public.kern2.z + -20 + + public.kern1.Y.ss011 + + public.kern2.A.ss01 + -50 + public.kern2.A.ss012 + -70 + public.kern2.G + -30 + public.kern2.S + -4 + public.kern2.a + -50 + public.kern2.comma + -90 + public.kern2.emdash + -50 + public.kern2.i1 + 10 + public.kern2.m + -70 + public.kern2.o + -100 + public.kern2.period + -90 + public.kern2.quoteright + -30 + public.kern2.s + -56 + public.kern2.u + -60 + public.kern2.w + -40 + + public.kern1.Y1 + + public.kern2.A.ss012 + -30 + public.kern2.A2 + -50 + public.kern2.G + -40 + public.kern2.J + -80 + public.kern2.S + -30 + public.kern2.T + 10 + public.kern2.a + -70 + public.kern2.comma + -80 + public.kern2.emdash + -60 + public.kern2.f + -30 + public.kern2.g + -60 + public.kern2.guillemotleft + -70 + public.kern2.guillemotright + -60 + public.kern2.i1 + -20 + public.kern2.j + -30 + public.kern2.m + -80 + public.kern2.o + -100 + public.kern2.period + -100 + public.kern2.quotedbl + 10 + public.kern2.quoteright + -20 + public.kern2.s + -70 + public.kern2.t + -10 + public.kern2.u + -70 + public.kern2.w + -30 + public.kern2.x + -40 + public.kern2.y + -40 + public.kern2.z + -50 + + public.kern1.Yacyr + + public.kern2.Ucyr.ss01 + -10 + + public.kern1.Z1 + + public.kern2.A.ss01 + 10 + public.kern2.A.ss012 + 20 + public.kern2.G + -20 + public.kern2.T + 10 + public.kern2.U + -20 + public.kern2.W + 10 + public.kern2.a + -10 + public.kern2.comma + 10 + public.kern2.emdash + -40 + public.kern2.f + -4 + public.kern2.i1 + 10 + public.kern2.o + -30 + public.kern2.period + 10 + public.kern2.quoteright + -40 + public.kern2.s + -10 + public.kern2.t + -10 + public.kern2.u + -20 + public.kern2.w + -20 + public.kern2.y + -10 + + public.kern1.a1 + + public.kern2.A.ss012 + 8 + public.kern2.G + -5 + public.kern2.S + -20 + public.kern2.T + -70 + public.kern2.Ucyr.ss01 + -4 + public.kern2.V + -60 + public.kern2.W + -40 + public.kern2.Y + -80 + public.kern2.comma + -10 + public.kern2.j + -20 + public.kern2.quotedbl + -40 + public.kern2.quoteright + -60 + public.kern2.t + -5 + public.kern2.tecyr + -3 + public.kern2.u + -10 + public.kern2.w + -15 + public.kern2.y + -20 + public.kern2.z + 5 + + public.kern1.c1 + + public.kern2.A2 + 20 + public.kern2.G + 10 + public.kern2.T + -50 + public.kern2.Ucyr.ss01 + -50 + public.kern2.V + -30 + public.kern2.W + -20 + public.kern2.Y + -50 + public.kern2.g + 5 + public.kern2.period + -20 + public.kern2.quotedbl + -30 + public.kern2.quoteright + -20 + + public.kern1.comma1 + + public.kern2.A.ss01 + 10 + public.kern2.G + -50 + public.kern2.J + 20 + public.kern2.T + -70 + public.kern2.U + -30 + public.kern2.V + -80 + public.kern2.W + -30 + public.kern2.Y + -100 + public.kern2.a + -20 + public.kern2.five + -20 + public.kern2.h + -20 + public.kern2.i1 + -20 + public.kern2.m + -20 + public.kern2.o + -30 + public.kern2.t + -30 + public.kern2.u + -30 + public.kern2.w + -30 + public.kern2.x + -20 + public.kern2.y + -70 + public.kern2.z + -10 + public.kern2.zero + -30 + + public.kern1.dcaron + + public.kern2.B + 20 + public.kern2.G + 10 + public.kern2.Oslash.alt + 60 + public.kern2.S + 20 + public.kern2.T + 90 + public.kern2.U + 30 + public.kern2.V + 80 + public.kern2.W + 60 + public.kern2.Y + 80 + public.kern2.Z + 50 + public.kern2.a + 10 + public.kern2.f + 50 + public.kern2.fi.ss01 + 50 + public.kern2.h + 40 + public.kern2.i1 + 40 + public.kern2.j + 10 + public.kern2.m + 10 + public.kern2.s + 10 + public.kern2.t + 40 + public.kern2.w + 30 + public.kern2.x + 30 + public.kern2.y + 30 + public.kern2.z + 30 + + public.kern1.decyr1 + + public.kern2.A2 + 10 + public.kern2.T + -80 + public.kern2.Ucyr.ss01 + -40 + public.kern2.comma + 10 + public.kern2.decyr.ss01 + 15 + public.kern2.emdash + -8 + public.kern2.o + -20 + public.kern2.period + 10 + public.kern2.quoteright + -20 + public.kern2.tecyr + -20 + public.kern2.y + -10 + + public.kern1.e.ss011 + + public.kern2.Oslash.alt + -10 + public.kern2.V + -50 + public.kern2.quotedbl + -40 + public.kern2.quoteright + -30 + + public.kern1.e1 + + public.kern2.A.ss012 + 8 + public.kern2.A2 + -5 + public.kern2.Oslash.alt + -20 + public.kern2.T + -80 + public.kern2.Ucyr.ss01 + -70 + public.kern2.V + -60 + public.kern2.W + -50 + public.kern2.Y + -110 + public.kern2.Z + -10 + public.kern2.comma + -20 + public.kern2.j + -20 + public.kern2.period + -20 + public.kern2.quotedbl + -30 + public.kern2.quoteright + -40 + public.kern2.w + -10 + public.kern2.x + -20 + public.kern2.y + -20 + public.kern2.z + -10 + + public.kern1.emdash1 + + public.kern2.A.ss01 + 10 + public.kern2.A2 + -10 + public.kern2.G + 20 + public.kern2.J + -50 + public.kern2.Oslash.alt + -20 + public.kern2.S + -30 + public.kern2.T + -70 + public.kern2.Ucyr.ss01 + -50 + public.kern2.V + -40 + public.kern2.W + -20 + public.kern2.Y + -60 + public.kern2.Z + -20 + public.kern2.decyr.ss01 + -30 + public.kern2.five + -20 + public.kern2.four + 20 + public.kern2.g.ss01 + 10 + public.kern2.j + -20 + public.kern2.o + 10 + public.kern2.tecyr + -40 + public.kern2.x + -20 + public.kern2.y + -10 + public.kern2.z + -30 + + public.kern1.f1 + + public.kern2.A.ss012 + -10 + public.kern2.A2 + -20 + public.kern2.J + -60 + public.kern2.S + 10 + public.kern2.T + 10 + public.kern2.V + 10 + public.kern2.Y + 10 + public.kern2.a + -5 + public.kern2.comma + -40 + public.kern2.emdash + -20 + public.kern2.f + 10 + public.kern2.g + -10 + public.kern2.i1 + 1 + public.kern2.o + -30 + public.kern2.period + -70 + public.kern2.quotedbl + 20 + public.kern2.quoteright + 20 + public.kern2.s + -20 + public.kern2.t + 15 + public.kern2.y + 20 + + public.kern1.five1 + + public.kern2.comma + -30 + public.kern2.period + -15 + + public.kern1.four1 + + public.kern2.emdash + -20 + public.kern2.five + 10 + public.kern2.four + 10 + public.kern2.quotedbl + -20 + + public.kern1.g.ss011 + + public.kern2.V + -20 + public.kern2.quoteright + 10 + + public.kern1.g1 + + public.kern2.A2 + 5 + public.kern2.T + -80 + public.kern2.V + -20 + public.kern2.W + -10 + public.kern2.Y + -30 + public.kern2.comma + 10 + public.kern2.f + 10 + public.kern2.j + 15 + public.kern2.quotedbl + -10 + public.kern2.y + 10 + + public.kern1.gecyr + + public.kern2.A2 + -10 + public.kern2.T + -40 + public.kern2.Ucyr.ss01 + -20 + public.kern2.comma + -80 + public.kern2.decyr.ss01 + -30 + public.kern2.emdash + -50 + public.kern2.o + -20 + public.kern2.period + -80 + public.kern2.quoteright + 20 + public.kern2.tecyr + 20 + public.kern2.x + 10 + public.kern2.y + 20 + + public.kern1.guillemotright1 + + public.kern2.J + -40 + public.kern2.T + -50 + public.kern2.V + -40 + public.kern2.W + -30 + public.kern2.Y + -70 + + public.kern1.hardcyr + + public.kern2.Oslash.alt + -10 + public.kern2.T + -70 + public.kern2.Ucyr.ss01 + -60 + public.kern2.quotedbl + -110 + public.kern2.quoteright + -90 + public.kern2.tecyr + -90 + public.kern2.x + -20 + public.kern2.y + -50 + + public.kern1.i1 + + public.kern2.T + 20 + public.kern2.V + 20 + public.kern2.W + 10 + public.kern2.Y + 20 + public.kern2.i1 + 20 + public.kern2.j + -40 + public.kern2.quoteright + -10 + + public.kern1.icyr1 + + public.kern2.T + -60 + public.kern2.Ucyr.ss01 + -60 + public.kern2.V + -50 + public.kern2.W + -20 + public.kern2.Y + -80 + public.kern2.j + 2 + public.kern2.quoteright + -20 + + public.kern1.j1 + + public.kern2.quoteright + -20 + + public.kern1.k + + public.kern2.A.ss012 + 10 + public.kern2.A2 + 10 + public.kern2.G + -10 + public.kern2.J + 10 + public.kern2.T + -60 + public.kern2.Ucyr.ss01 + -20 + public.kern2.W + -20 + public.kern2.Y + -20 + public.kern2.a + -10 + public.kern2.emdash + -40 + public.kern2.o + -20 + public.kern2.x + 10 + + public.kern1.l + + public.kern2.quoteright + -20 + + public.kern1.l.ss011 + + public.kern2.A.ss01 + 20 + public.kern2.V + -40 + public.kern2.W + -40 + public.kern2.f + -40 + public.kern2.j + -20 + public.kern2.quotedbl + -20 + public.kern2.t + -8 + public.kern2.w + -30 + public.kern2.y + -30 + + public.kern1.n + + public.kern2.T + -65 + public.kern2.Ucyr.ss01 + -70 + public.kern2.V + -60 + public.kern2.W + -40 + public.kern2.Y + -100 + public.kern2.j + -20 + public.kern2.quotedbl + -30 + public.kern2.quoteright + -20 + public.kern2.tecyr + -10 + public.kern2.w + -15 + public.kern2.y + -20 + + public.kern1.o1 + + public.kern2.A.ss012 + -2 + public.kern2.A2 + -10 + public.kern2.J + -20 + public.kern2.Oslash.alt + -30 + public.kern2.S + -10 + public.kern2.T + -80 + public.kern2.Ucyr.ss01 + -90 + public.kern2.V + -60 + public.kern2.W + -50 + public.kern2.Y + -100 + public.kern2.Z + -30 + public.kern2.a + -5 + public.kern2.comma + -40 + public.kern2.j + -20 + public.kern2.period + -50 + public.kern2.quotedbl + -40 + public.kern2.quoteright + -40 + public.kern2.s + -10 + public.kern2.tecyr + -20 + public.kern2.w + -15 + public.kern2.x + -25 + public.kern2.y + -25 + public.kern2.z + -20 + + public.kern1.period1 + + public.kern2.A.ss01 + 20 + public.kern2.A.ss012 + 30 + public.kern2.A2 + 30 + public.kern2.G + -50 + public.kern2.J + 20 + public.kern2.Oslash.alt + 10 + public.kern2.T + -70 + public.kern2.U + -30 + public.kern2.Ucyr.ss01 + -20 + public.kern2.V + -70 + public.kern2.W + -40 + public.kern2.Y + -100 + public.kern2.Z + 10 + public.kern2.five + -10 + public.kern2.j + -20 + public.kern2.o + -50 + public.kern2.t + -30 + public.kern2.tecyr + -60 + public.kern2.u + -30 + public.kern2.w + -30 + public.kern2.y + -75 + public.kern2.zero + -10 + + public.kern1.quotedbl1 + + public.kern2.A.ss01 + -50 + public.kern2.A.ss012 + -30 + public.kern2.A2 + -50 + public.kern2.G + -20 + public.kern2.J + -80 + public.kern2.T + 30 + public.kern2.V + 10 + public.kern2.W + 10 + public.kern2.Y + 10 + public.kern2.Z + -10 + public.kern2.a + -30 + public.kern2.decyr.ss01 + -40 + public.kern2.four + -60 + public.kern2.g + -30 + public.kern2.g.ss01 + -20 + public.kern2.j + -20 + public.kern2.o + -40 + public.kern2.period + -8 + public.kern2.s + -30 + public.kern2.x + -10 + public.kern2.z + -10 + public.kern2.zero + -20 + + public.kern1.quoteleft1 + + public.kern2.A.ss01 + -60 + public.kern2.A2 + -50 + public.kern2.G + -20 + public.kern2.J + -40 + public.kern2.Oslash.alt + 10 + public.kern2.T + 40 + public.kern2.V + 20 + public.kern2.W + 30 + public.kern2.Y + 30 + public.kern2.a + -30 + public.kern2.f + 10 + public.kern2.g + -50 + public.kern2.g.ss01 + -40 + public.kern2.i1 + 30 + public.kern2.j + -10 + public.kern2.m + -20 + public.kern2.o + -60 + public.kern2.s + -30 + public.kern2.u + -20 + public.kern2.w + -30 + public.kern2.x + -30 + public.kern2.y + -20 + public.kern2.z + -30 + + public.kern1.quoteright1 + + public.kern2.A.ss01 + -60 + public.kern2.A2 + -60 + public.kern2.B + -10 + public.kern2.G + -40 + public.kern2.J + -50 + public.kern2.Oslash.alt + -10 + public.kern2.S + -30 + public.kern2.T + 10 + public.kern2.U + -20 + public.kern2.V + 10 + public.kern2.W + 20 + public.kern2.Z + -20 + public.kern2.a + -70 + public.kern2.g + -80 + public.kern2.g.ss01 + -70 + public.kern2.h + -30 + public.kern2.i1 + -20 + public.kern2.m + -30 + public.kern2.o + -90 + public.kern2.s + -70 + public.kern2.t + -10 + public.kern2.u + -30 + public.kern2.w + -40 + public.kern2.x + -40 + public.kern2.y + -30 + public.kern2.z + -60 + + public.kern1.s1 + + public.kern2.A2 + 10 + public.kern2.J + 10 + public.kern2.Oslash.alt + -5 + public.kern2.T + -60 + public.kern2.V + -40 + public.kern2.W + -20 + public.kern2.Y + -60 + public.kern2.Z + -10 + public.kern2.comma + -10 + public.kern2.period + -20 + public.kern2.quotedbl + -30 + public.kern2.quoteright + -20 + public.kern2.x + -10 + + public.kern1.t.ss011 + + public.kern2.emdash + -10 + + public.kern1.t1 + + public.kern2.G + -10 + public.kern2.J + 20 + public.kern2.T + -15 + public.kern2.V + -20 + public.kern2.W + -10 + public.kern2.Y + -25 + public.kern2.emdash + -30 + public.kern2.h + 10 + public.kern2.o + -10 + public.kern2.t + 10 + public.kern2.y + 10 + public.kern2.z + 20 + + public.kern1.u1 + + public.kern2.T + -60 + public.kern2.V + -50 + public.kern2.W + -30 + public.kern2.Y + -80 + public.kern2.j + -20 + public.kern2.quoteright + -20 + + public.kern1.uni0435.ss011 + + public.kern2.T + -70 + public.kern2.Ucyr.ss01 + -60 + public.kern2.V + -50 + public.kern2.W + -20 + public.kern2.Y + -60 + public.kern2.w + -4 + public.kern2.x + -10 + public.kern2.y + -10 + + public.kern1.w1 + + public.kern2.A.ss012 + -3 + public.kern2.A2 + -20 + public.kern2.J + -30 + public.kern2.Oslash.alt + -20 + public.kern2.S + -20 + public.kern2.T + -60 + public.kern2.V + -10 + public.kern2.W + -5 + public.kern2.Y + -30 + public.kern2.Z + -30 + public.kern2.a + -15 + public.kern2.comma + -20 + public.kern2.g.ss01 + -10 + public.kern2.j + -10 + public.kern2.o + -15 + public.kern2.period + -30 + + public.kern1.x + + public.kern2.G + -10 + public.kern2.S + -10 + public.kern2.T + -60 + public.kern2.Ucyr.ss01 + -20 + public.kern2.V + -20 + public.kern2.W + -10 + public.kern2.Y + -40 + public.kern2.emdash + -20 + public.kern2.o + -25 + public.kern2.quotedbl + -10 + public.kern2.s + -10 + + public.kern1.y1 + + public.kern2.A.ss012 + -4 + public.kern2.A2 + -20 + public.kern2.J + -40 + public.kern2.Oslash.alt + -30 + public.kern2.T + -60 + public.kern2.Ucyr.ss01 + -6 + public.kern2.V + -20 + public.kern2.W + -5 + public.kern2.Y + -40 + public.kern2.Z + -20 + public.kern2.a + -5 + public.kern2.comma + -40 + public.kern2.decyr.ss01 + -20 + public.kern2.f + 20 + public.kern2.g + -10 + public.kern2.g.ss01 + -20 + public.kern2.j + -10 + public.kern2.o + -10 + public.kern2.period + -80 + public.kern2.quoteright + 20 + public.kern2.t + 10 + public.kern2.tecyr + 10 + + public.kern1.z1 + + public.kern2.A2 + 10 + public.kern2.S + -20 + public.kern2.T + -50 + public.kern2.V + -20 + public.kern2.W + -20 + public.kern2.Y + -50 + public.kern2.comma + 10 + public.kern2.f + 10 + public.kern2.o + -20 + public.kern2.quotedbl + -20 + public.kern2.quoteright + -10 + + + diff --git a/sources/FixelText-Regular.ufo/layercontents.plist b/sources/FixelText-Regular.ufo/layercontents.plist new file mode 100644 index 00000000..7a35a5cf --- /dev/null +++ b/sources/FixelText-Regular.ufo/layercontents.plist @@ -0,0 +1,10 @@ + + + + + + public.default + glyphs + + + diff --git a/sources/FixelText-Regular.ufo/lib.plist b/sources/FixelText-Regular.ufo/lib.plist new file mode 100644 index 00000000..c0069150 --- /dev/null +++ b/sources/FixelText-Regular.ufo/lib.plist @@ -0,0 +1,1671 @@ + + + + + com.fontlab.v2.tth + + stems + + 69 + + width + 69 + horizontal + + round + + 35 + 3 + 47 + 4 + 60 + 5 + 0 + 7 + 22 + 8 + + + 74 + + width + 74 + horizontal + + round + + 19 + 2 + 35 + 3 + 47 + 4 + 60 + 5 + 72 + 6 + 0 + 7 + 20 + 8 + + + 76 + + width + 76 + horizontal + + round + + 19 + 2 + 35 + 3 + 72 + 6 + 0 + 7 + 20 + 8 + + + 80 + + width + 80 + horizontal + + round + + 29 + 3 + 47 + 4 + 60 + 5 + 72 + 6 + 0 + 7 + 20 + 8 + + + 99 + + width + 99 + horizontal + + round + + 19 + 2 + 29 + 3 + 37 + 4 + 48 + 5 + 58 + 6 + 0 + 7 + 16 + 8 + + + 74 + + width + 74 + horizontal + + round + + 19 + 2 + 35 + 3 + 47 + 4 + 60 + 5 + 72 + 6 + 0 + 7 + 20 + 8 + + + 80 + + width + 80 + horizontal + + round + + 29 + 3 + 47 + 4 + 60 + 5 + 72 + 6 + 0 + 7 + 20 + 8 + + + 93 + + width + 93 + horizontal + + round + + 19 + 2 + 29 + 3 + 37 + 4 + 48 + 5 + 58 + 6 + 0 + 7 + 16 + 8 + + + + + com.schriftgestaltung.disablesAutomaticAlignment + + com.schriftgestaltung.fontMasterID + master01 + com.schriftgestaltung.glyphOrder + + com.schriftgestaltung.master.name + regular + com.schriftgestaltung.useNiceNames + + com.schriftgestaltung.weightValue + 400 + public.postscriptNames + + A-cy + uni0410 + A-cy.ss01 + uni0410.ss01 + Be-cy + uni0411 + Che-cy + uni0427 + De-cy + uni0414 + Dze-cy + uni0405 + E-cy + uni0404 + Ef-cy + uni0424 + El-cy + uni041B + Em-cy + uni041C + Em-cy.ss01 + uni041C.ss01 + En-cy + uni041D + Er-cy + uni0420 + Ereversed-cy + uni042D + Es-cy + uni0421 + Gacute + uni01F4 + Gacute.ss01 + uni01F4.ss01 + Gcommaaccent + uni0122 + Gcommaaccent.ss01 + uni0122.ss01 + Ge-cy + uni0413 + Germandbls + uni1E9E + Gheupturn-cy + uni0490 + Ha-cy + uni0425 + Ha-cy.ss01 + uni0425.ss01 + Hardsign-cy + uni042A + I-cy + uni0406 + Ia-cy + uni042F + Ia-cy.ss01 + uni042F.ss01 + Ie-cy + uni0415 + Ii-cy + uni0418 + Iishort-cy + uni0419 + Io-cy + uni0401 + Iu-cy + uni042E + Ka-cy + uni041A + Ka-cy.ss01 + uni041A.ss01 + Kcommaaccent + uni0136 + Kcommaaccent.ss01 + uni0136.ss01 + Lcommaaccent + uni013B + Ncommaaccent + uni0145 + Ncommaaccent.ss01 + uni0145.ss01 + O-cy + uni041E + Pe-cy + uni041F + Rcommaaccent + uni0156 + Scommaaccent + uni0218 + Sha-cy + uni0428 + Shcha-cy + uni0429 + Softsign-cy + uni042C + Tcedilla + uni0162 + Tcommaaccent + uni021A + Te-cy + uni0422 + Tse-cy + uni0426 + U-cy + uni0423 + U-cy.ss01 + uni0423.ss01 + Ushort-cy + uni040E + Ushort-cy.ss01 + uni040E.ss01 + Ve-cy + uni0412 + Yeru-cy + uni042B + Yi-cy + uni0407 + Ze-cy + uni0417 + Zhe-cy + uni0416 + Zhe-cy.ss01 + uni0416.ss01 + _perc-circule + _perccircule + a-cy + uni0430 + a-cy.ss01 + uni0430.ss01 + be-cy + uni0431 + che-cy + uni0447 + commaaccentcomb + uni0326 + commaaccentcomb.salt + uni0326.salt + de-cy + uni0434 + de-cy.ss01 + uni0434.ss01 + dze-cy + uni0455 + e-cy + uni0454 + ef-cy + uni0444 + el-cy + uni043B + el-cy.ss01 + uni043B.ss01 + em-cy + uni043C + en-cy + uni043D + er-cy + uni0440 + er-cy.ss01 + uni0440.ss01 + ereversed-cy + uni044D + es-cy + uni0441 + euro + Euro + gacute + uni01F5 + gacute.ss01 + uni01F5.ss01 + gcommaaccent + uni0123 + gcommaaccent.ss01 + uni0123.ss01 + ge-cy + uni0433 + gheupturn-cy + uni0491 + guillemetleft + guillemotleft + guillemetright + guillemotright + ha-cy + uni0445 + hardsign-cy + uni044A + hardsign-cy.ss01 + uni044A.ss01 + hryvnia + uni20B4 + i-cy + uni0456 + ia-cy + uni044F + ia-cy.ss01 + uni044F.ss01 + idotless + dotlessi + ie-cy + uni0435 + ie-cy.ss01 + uni0435.ss01 + ii-cy + uni0438 + iishort-cy + uni0439 + io-cy + uni0451 + io-cy.ss01 + uni0451.ss01 + iu-cy + uni044E + jdotless + uni0237 + je-cy + uni0458 + ka-cy + uni043A + kcommaaccent + uni0137 + lcommaaccent + uni013C + lcommaaccent.ss01 + uni013C.ss01 + ncommaaccent + uni0146 + numero + uni2116 + numero.ss01 + uni2116.ss01 + o-cy + uni043E + onesuperior + uni00B9 + pe-cy + uni043F + rcommaaccent + uni0157 + scommaaccent + uni0219 + sha-cy + uni0448 + shcha-cy + uni0449 + softsign-cy + uni044C + softsign-cy.ss01 + uni044C.ss01 + tcedilla + uni0163 + tcedilla.ss01 + uni0163.ss01 + tcommaaccent + uni021B + tcommaaccent.ss01 + uni021B.ss01 + te-cy + uni0442 + te-cy.ss01 + uni0442.ss01 + threesuperior + uni00B3 + tse-cy + uni0446 + twosuperior + uni00B2 + u-cy + uni0443 + ushort-cy + uni045E + ve-cy + uni0432 + ve-cy.ss01 + uni0432.ss01 + yeru-cy + uni044B + yeru-cy.ss01 + uni044B.ss01 + yi-cy + uni0457 + ze-cy + uni0437 + zhe-cy + uni0436 + + public.skipExportGlyphs + + Oslash.bold + oslash.bold + _perc-circule + + public.glyphOrder + + .notdef + NULL + CR + space + A + Aacute + Abreve + Acircumflex + Adieresis + Agrave + Amacron + Aogonek + Aring + Atilde + AE + B + C + Cacute + Ccaron + Ccedilla + Ccircumflex + Cdotaccent + D + Eth + Dcaron + Dcroat + E + Eacute + Ebreve + Ecaron + Ecircumflex + Edieresis + Edotaccent + Egrave + Emacron + Eogonek + F + G + Gacute + Gbreve + Gcircumflex + Gcommaaccent + Gdotaccent + H + Hbar + Hcircumflex + I + IJ + Iacute + Ibreve + Icircumflex + Idieresis + Idotaccent + Igrave + Imacron + Iogonek + Itilde + J + Jcircumflex + K + Kcommaaccent + L + Lacute + Lcaron + Lcommaaccent + Ldot + Lslash + M + N + Nacute + Ncaron + Ncommaaccent + Eng + Ntilde + O + Oacute + Obreve + Ocircumflex + Odieresis + Ograve + Ohungarumlaut + Omacron + Oslash + Otilde + OE + P + Thorn + Q + R + Racute + Rcaron + Rcommaaccent + S + Sacute + Scaron + Scedilla + Scircumflex + Scommaaccent + Germandbls + T + Tbar + Tcaron + Tcedilla + Tcommaaccent + U + Uacute + Ubreve + Ucircumflex + Udieresis + Ugrave + Uhungarumlaut + Umacron + Uogonek + Uring + Utilde + V + W + Wacute + Wcircumflex + Wdieresis + Wgrave + X + Y + Yacute + Ycircumflex + Ydieresis + Z + Zacute + Zcaron + Zdotaccent + A.ss01 + Aacute.ss01 + Abreve.ss01 + Acircumflex.ss01 + Adieresis.ss01 + Agrave.ss01 + Amacron.ss01 + Aogonek.ss01 + Aring.ss01 + Atilde.ss01 + AE.ss01 + G.ss01 + Gacute.ss01 + Gbreve.ss01 + Gcircumflex.ss01 + Gcommaaccent.ss01 + Gdotaccent.ss01 + J.ss01 + Jcircumflex.ss01 + K.ss01 + Kcommaaccent.ss01 + M.ss01 + N.ss01 + Nacute.ss01 + Ncaron.ss01 + Ncommaaccent.ss01 + Eng.ss01 + Ntilde.ss01 + Q.ss01 + V.ss01 + W.ss01 + Wacute.ss01 + Wcircumflex.ss01 + Wdieresis.ss01 + Wgrave.ss01 + X.ss01 + Y.ss01 + Yacute.ss01 + Ycircumflex.ss01 + Ydieresis.ss01 + Z.ss01 + Zacute.ss01 + Zcaron.ss01 + Zdotaccent.ss01 + a + aacute + abreve + acircumflex + adieresis + agrave + amacron + aogonek + aring + atilde + ae + b + c + cacute + ccaron + ccedilla + ccircumflex + cdotaccent + d + eth + dcaron + dcroat + e + eacute + ebreve + ecaron + ecircumflex + edieresis + edotaccent + egrave + emacron + eogonek + f + g + gacute + gbreve + gcircumflex + gcommaaccent + gdotaccent + h + hbar + hcircumflex + i + idotless + iacute + ibreve + icircumflex + idieresis + igrave + ij + imacron + iogonek + itilde + j + jdotless + jcircumflex + k + kcommaaccent + kgreenlandic + l + lacute + lcaron + lcommaaccent + ldot + lslash + m + n + nacute + napostrophe + ncaron + ncommaaccent + eng + ntilde + o + oacute + obreve + ocircumflex + odieresis + ograve + ohungarumlaut + omacron + oslash + otilde + oe + p + thorn + q + r + racute + rcaron + rcommaaccent + s + sacute + scaron + scedilla + scircumflex + scommaaccent + germandbls + t + tbar + tcaron + tcedilla + tcommaaccent + u + uacute + ubreve + ucircumflex + udieresis + ugrave + uhungarumlaut + umacron + uogonek + uring + utilde + v + w + wacute + wcircumflex + wdieresis + wgrave + x + y + yacute + ycircumflex + ydieresis + z + zacute + zcaron + zdotaccent + a.ss01 + aacute.ss01 + abreve.ss01 + acircumflex.ss01 + adieresis.ss01 + agrave.ss01 + amacron.ss01 + aogonek.ss01 + aring.ss01 + atilde.ss01 + ae.ss01 + b.ss01 + d.ss01 + dcaron.ss01 + dcroat.ss01 + e.ss01 + eacute.ss01 + ebreve.ss01 + ecaron.ss01 + ecircumflex.ss01 + edieresis.ss01 + edotaccent.ss01 + egrave.ss01 + emacron.ss01 + eogonek.ss01 + f.ss01 + g.ss01 + gacute.ss01 + gbreve.ss01 + gcircumflex.ss01 + gcommaaccent.ss01 + gdotaccent.ss01 + l.ss01 + lacute.ss01 + lcaron.ss01 + lcommaaccent.ss01 + ldot.ss01 + lslash.ss01 + oe.ss01 + p.ss01 + q.ss01 + germandbls.ss01 + t.ss01 + tbar.ss01 + tcaron.ss01 + tcedilla.ss01 + tcommaaccent.ss01 + f_f + f_f_i + f_f_l + fi + fl + f_f.ss01 + f_f_i.ss01 + f_f_l.ss01 + fi.ss01 + fl.ss01 + ordfeminine + ordmasculine + A-cy + Be-cy + Ve-cy + Ge-cy + Gheupturn-cy + De-cy + Ie-cy + Io-cy + Zhe-cy + Ze-cy + Ii-cy + Iishort-cy + Ka-cy + El-cy + Em-cy + En-cy + O-cy + Pe-cy + Er-cy + Es-cy + Te-cy + U-cy + Ushort-cy + Ef-cy + Ha-cy + Che-cy + Tse-cy + Sha-cy + Shcha-cy + Softsign-cy + Hardsign-cy + Yeru-cy + Dze-cy + E-cy + Ereversed-cy + I-cy + Yi-cy + Iu-cy + Ia-cy + A-cy.ss01 + Zhe-cy.ss01 + Ka-cy.ss01 + Em-cy.ss01 + U-cy.ss01 + Ushort-cy.ss01 + Ha-cy.ss01 + Ia-cy.ss01 + a-cy + be-cy + ve-cy + ge-cy + gheupturn-cy + de-cy + ie-cy + io-cy + zhe-cy + ze-cy + ii-cy + iishort-cy + ka-cy + el-cy + em-cy + en-cy + o-cy + pe-cy + er-cy + es-cy + te-cy + u-cy + ushort-cy + ef-cy + ha-cy + che-cy + tse-cy + sha-cy + shcha-cy + softsign-cy + hardsign-cy + yeru-cy + dze-cy + e-cy + ereversed-cy + i-cy + yi-cy + je-cy + iu-cy + ia-cy + a-cy.ss01 + ve-cy.ss01 + de-cy.ss01 + ie-cy.ss01 + io-cy.ss01 + el-cy.ss01 + er-cy.ss01 + te-cy.ss01 + softsign-cy.ss01 + hardsign-cy.ss01 + yeru-cy.ss01 + ia-cy.ss01 + zero + one + two + three + four + five + six + seven + eight + nine + zero.osf + one.osf + two.osf + three.osf + four.osf + five.osf + six.osf + seven.osf + nine.osf + zero.tf + one.tf + two.tf + three.tf + four.tf + five.tf + six.tf + seven.tf + eight.tf + nine.tf + onesuperior + twosuperior + threesuperior + period + comma + colon + semicolon + ellipsis + exclam + exclamdown + question + questiondown + periodcentered + bullet + asterisk + numbersign + slash + backslash + parenleft + parenright + braceleft + braceright + bracketleft + bracketright + hyphen + endash + emdash + underscore + quotesinglbase + quotedblbase + quotedblleft + quotedblright + quoteleft + quoteright + guillemetleft + guillemetright + guilsinglleft + guilsinglright + quotedbl + quotesingle + cent + currency + dollar + euro + hryvnia + sterling + yen + yen.ss01 + plus + minus + multiply + divide + equal + greater + less + asciitilde + asciicircum + percent + perthousand + at + ampersand + paragraph + section + copyright + registered + trademark + degree + bar + brokenbar + dagger + daggerdbl + numero + estimated + numero.ss01 + commaaccentcomb + dieresis + dotaccent + grave + acute + hungarumlaut + circumflex + caron + breve + ring + tilde + macron + cedilla + ogonek + dieresis.case + dotaccent.case + grave.case + acute.case + hungarumlaut.case + circumflex.case + caron.case + breve.case + ring.case + tilde.case + macron.case + commaaccentcomb.salt + caron.salt + uniE01A + _perc-circule + eight.osf + ruble + Ljecyr + Njecyr + Jecyr + dzhecyr + Dzhecyr + ljecyr + njecyr + Tshecyr + Djecyr + tshecyr + djecyr + tenge + ljecyr.ss01 + njecyr.ss01 + dramsignarmn + gjecyr + kjecyr + neptune + florin + plusminus + fraction + onequarter + onehalf + threequarters + mu + lessequal + greaterequal + minute + second + Schwacyr + schwacyr + Gestrokecyr + gestrokecyr + Obarcyr + obarcyr + Entailcyr + entailcyr + Katailcyr + katailcyr + Ustraightstrokecyr + ustraightstrokecyr + Shhacyr + shhacyr + ustraightcyr + Ustraightcyr + partialdiff + increment + integral + summation + radical + infinity + Omega + pi + longs + Delta + product + notequal + proportional + approxequal + Schwa + eturned + Oslashacute + oslashacute + AEacute + aeacute + uni2010 + Aiecyr + aiecyr + uni1EBC + uni1EBD + Acaron + acaron + Gjecyr + Kjecyr + uniE000 + uniE000.alt + arrowleft + arrowup + arrowright + arrowdown + arrowdown.ss01 + arrowleft.ss01 + arrowright.ss01 + arrowup.ss01 + yi-cy.alt + Omegacyr + omegacyr + Yatcyr + yatcyr + Eiotifiedcyr + eiotifiedcyr + Ksicyr + ksicyr + Shwe-cy + Fitacyr + fitacyr + Koppacyr + Iegravecyr + Igravecyr + iegravecyr + igravecyr + Zhebrevecyr + zhebrevecyr + Abrevecyr + abrevecyr + Adieresiscyr + adieresiscyr + Iebrevecyr + iebrevecyr + Schwadieresiscyr + schwadieresiscyr + Zhedieresiscyr + zhedieresiscyr + Zedieresiscyr + zedieresiscyr + Imacroncyr + imacroncyr + Idieresiscyr + idieresiscyr + Odieresiscyr + odieresiscyr + Umacroncyr + umacroncyr + Udieresiscyr + udieresiscyr + Uacutedblcyr + uacutedblcyr + Dekomicyr + dekomicyr + Wecyr + wecyr + Qacyr + qacyr + Ylongdieresiscyr + ylongdieresiscyr + Chedieresiscyr + chedieresiscyr + Obardieresiscyr + obardieresiscyr + Ereverseddieresiscyr + ereverseddieresiscyr + Zhetailcyr + zhetailcyr + Tetailcyr + tetailcyr + Xatailcyr + xatailcyr + Chetailcyr + chetailcyr + Chekhakascyr + chekhakascyr + Getailcyr + getailcyr + Petailcyr + petailcyr + Eltailcyr + eltailcyr + Shhatailcyr + shhatailcyr + Palochkacyr + palochkacyr + Dzzhecyr + Yaecyr + yaecyr + Tetsecyr + tetsecyr + Engecyr + engecyr + kabashkcyr + Kabashkcyr + semisoftcyr + Semisoftcyr + Reversedzecyr + reversedzecyr + Elmiddlehookcyr + Enmiddlehookcyr + Enhookcyr + Kahookcyr + Pehookcyr + Gehookcyr + parenleft.case + parenright.case + hyphen.case + bracketleft.case + bracketright.case + braceleft.case + braceright.case + exclamdown.case + guillemetleft.case + guillemetright.case + endash.case + emdash.case + bullet.case + guilsinglleft.case + guilsinglright.case + arrowleft.case + arrowup.case + arrowright.case + arrowdown.case + arrowdown.ss01.case + arrowleft.ss01.case + arrowright.ss01.case + arrowup.ss01.case + Enhookleftcyr + enhookleftcyr + enhookcyr + gehookcyr + pehookcyr + kahookcyr + enmiddlehookcyr + elmiddlehookcyr + kastrokecyr + Kastrokecyr + Chevertcyr + chevertcyr + Kaverticalstrokecyr + kaverticalstrokecyr + Elhookcyr + elhookcyr + zetailcyr + Zetailcyr + Estailcyr + estailcyr + Haabkhcyr + koppacyr + ukcyr + Ukcyr + omegaroundcyr + Izhitsagravedblcyr + izhitsagravedblcyr + izhitsacyr + Izhitsacyr + Yusbigcyr + yusbigcyr + Psicyr + psicyr + Omegaroundcyr + Yuslittlecyr + yuslittlecyr + yuslittleiotifiedcyr + Yuslittleiotifiedcyr + Yusbigiotifiedcyr + yusbigiotifiedcyr + Omegatitlocyr + omegatitlocyr + Otcyr + otcyr + uni2DEE + uni2DEE.case + ertickcyr + Ertickcyr + Lhacyr + lhacyr + ensharptailcyr + Ensharptailcyr + emsharptailcyr + elsharptailcyr + ishortsharptailcyr + Ishortsharptailcyr + Emsharptailcyr + Elsharptailcyr + njekomicyr + Njekomicyr + ljekomicyr + tjekomicyr + djekomicyr + zjekomicyr + colon.case + questiondown.case + slash.case + semicolon.case + backslash.case + bar.case + brokenbar.case + dzjekomicyr + Cheabkhcyr + cheabkhcyr + cheabkhtailcyr + sjekomicyr + Sjekomicyr + Ljekomicyr + Tjekomicyr + Djekomicyr + kaaleutcyr + dzzhecyr + haabkhcyr + Dchecyr + dchecyr + dzeabkhcyr + Dzeabkhcyr + palatcombcyr + Cheabkhtailcyr + Dzjekomicyr + Zjekomicyr + rhacyr + Rhacyr + Kaaleutcyr + thousandscyr + titlocombcyr + pokrytiecombcyr + hundredthousandscombcyr + millionscombcyr + Gehookstrokecyr + gehookstrokecyr + Hahookcyr + hahookcyr + Hastrokecyr + uni1C80 + uni1C81 + uni1C82 + uni1C83 + uni1C84 + uni1C85 + uni1C86 + uni1C87 + Zemlya-cy + zemlya-cy + Dzelo-cy + dzelo-cy + DzeReversed-cy + dzeReversed-cy + Iota-cy + iota-cy + Djerv-cy + djerv-cy + UkMonograph-cy + ukMonograph-cy + OmegaBroad-cy + omegaBroad-cy + YerNeutral-cy + yerNeutral-cy + YeruBackYer-cy + yeruBackyer-cy + YatIotified-cy + yatIotified-cy + YuReversed-cy + yuReversed-cy + IotifiedA-cy + iotifieda-cy + YusClosedlittle-cy + yusClosedlittle-cy + YusBlended-cy + yusBlended-cy + YusiotifiedClosedLittle-cy + yusiotifiedClosedLittle-cy + Yn-cy + yn-cy + TseReversed-cy + tseReversed-cy + DeSoft-cy + deSoft-cy + ElSoft-cy + elSoft-cy + EmSoft-cy + emSoft-cy + OMonocular-cy + oMonocular-cy + OBinocular-cy + oBinocular-cy + ODoubleMonocular-cy + oDoubleMonocular-cy + omultiocular-cy + vzmetcomb-cy + tenmillionscomb-cy + hundredmillionscomb-cy + thousandmillionscomb-cy + Dwe-cy + dwe-cy + Dzwe-cy + dzwe-cy + Zhwe-cy + zhwe-cy + Cche-cy + cche-cy + Dzze-cy + dzze-cy + TeWithMiddleHook-cy + tewithmiddlehook-cy + Twe-cy + twe-cy + Tswe-cy + tswe-cy + Tsse-cy + tsse-cy + Tche-cy + tche-cy + Hwe-cy + hwe-cy + shwe-cy + DoubleO-cy + doubleo-cy + CrossedO-cy + crossedo-cy + hastrokecyr + uniF43A + A-cy.accented + E-cy.accented + Ii-cy.accented + O-cy.accented + U-cy.accented + Yeru-cy.accented + Ereversed-cy.accented + Iu-cy.accented + Ia-cy.accented + Io-cy.accented + uniF498 + uniF49A + uniF49C + uniF49E + uniF4C6 + uniF4CC + uniF4D2 + uniF4D4 + uniF4D6 + uniF4D8 + Zetailcyr.BSH + Estailcyr.CHU + uniF50E + uniF510 + uniF512 + uniF514 + uniF516 + uniF518 + uniF51A + uniF51C + uniF51E + Yeru-cymacron + uniF522 + uniF524 + uniF526 + uniF528 + uniF52A + uniF52C + uniF52E + uniF532 + uniF536 + uniF538 + Gestrokecyr.BSH + Estailcyr.BSH + uniF830 + uniF833 + uniF839 + uniF86F + uniF872 + uniF875 + uniF878 + uniF87B + uniF87E + apostrophemod + colontriangularmod + uni1C88 + uniF87F + uniF87C + uniF879 + uniF876 + uniF873 + uniF870 + uniF83A + uniF834 + uniF831 + zetailcyr.BSH + estailcyr.CHU + uniF50F + uniF511 + uniF513 + uniF515 + uniF517 + uniF519 + uniF51B + uniF51D + uniF51F + uniF521 + uniF523 + uniF525 + uniF527 + uniF529 + uniF52B + uniF52D + uniF52F + uniF533 + uniF537 + uniF539 + gestrokecyr.BSH + estailcyr.BSH + uniF499 + uniF49B + uniF49D + uniF49F + uniF4C7 + uniF4CD + uniF4D3 + uniF4D5 + uniF4D7 + uniF4D9 + a-cy.accented + e-cy.accented + ii-cy.accented + o-cy.accented + u-cy.accented + yeru-cy.accented + ereversed-cy.accented + iu-cy.accented + ia-cy.accented + io-cy.accented + uniF43B + at.case + dieresis.alt + dieresiscase.alt + e-cy.hist + omultiocular-cy.alt + iotifieda-cy.hist + be-cy.SRB + ve-cy.BGR + ge-cy.BGR + de-cy.BGR + zhe-cy.BGR + ze-cy.BGR + ii-cy.BGR + iishort-cy.BGR + ka-cy.BGR + el-cy.BGR + pe-cy.BGR + te-cy.BGR + tse-cy.BGR + sha-cy.BGR + shcha-cy.BGR + hardsign-cy.BGR + softsign-cy.BGR + iu-cy.BGR + yatcyr.BGR + eiotifiedcyr.BGR + yusbigiotifiedcyr.BGR + iotifieda-cy.BGR + De-cy.BGR + El-cy.BGR + Ef-cy.BGR + dieresisacute + uniF45D + uniF45E + uniF45F + uniF475 + uniF476 + uniF477 + uniF478 + uniF479 + Elsmallcyr + enclosingcirclecomb + ge-cy.SRB + pe-cy.SRB + te-cy.SRB + gjecyr.SRB + macron-fwd + macron-fwd.alt + macronacute.SRB + iegravecyr.SRB + igravecyr.SRB + flower + knightwhite + knightblack + floretteblack + florettewhite + floretteoutlinedpetalledblackeight + rookblack + bishopblack + leo + heartwhite + diamondwhite-misc + spadewhite + clubwhite + bishopwhite + heart + crossedswords + virgo + thousandscyr.dnom + bracketangleleft + bracketangleright + bracketangleleft.case + bracketangleright.case + + + diff --git a/sources/FixelText-Regular.ufo/metainfo.plist b/sources/FixelText-Regular.ufo/metainfo.plist new file mode 100644 index 00000000..10582b84 --- /dev/null +++ b/sources/FixelText-Regular.ufo/metainfo.plist @@ -0,0 +1,10 @@ + + + + + creator + com.fontlab.ufoLib + formatVersion + 3 + + diff --git a/sources/FixelText-SemiBold.ufo/features.fea b/sources/FixelText-SemiBold.ufo/features.fea new file mode 100644 index 00000000..302ade93 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/features.fea @@ -0,0 +1,573 @@ +#> classes +#/> otclasses +@ss01_def = [A-cy A AE Aacute Abreve Acircumflex Adieresis Agrave Amacron Aogonek Aring Atilde Em-cy Eng G Gacute Gbreve Gcircumflex Gcommaaccent Gdotaccent Ha-cy Ia-cy J Jcircumflex K Ka-cy Kcommaaccent M N Nacute Ncaron Ncommaaccent Ntilde Q U-cy Ushort-cy V W Wacute Wcircumflex Wdieresis Wgrave X Y Yacute Ycircumflex Ydieresis Z Zacute Zcaron Zdotaccent Zhe-cy a-cy a aacute abreve acircumflex adieresis ae agrave amacron aogonek aring arrowdown arrowdown.case arrowleft arrowleft.case arrowright arrowright.case arrowup arrowup.case atilde b d dcaron dcroat de-cy e eacute ebreve ecaron ecircumflex edieresis edotaccent egrave el-cy emacron eogonek er-cy f f_f f_f_i f_f_l fi fl g gacute gbreve gcircumflex gcommaaccent gdotaccent germandbls hardsign-cy ia-cy ie-cy io-cy l lacute lcaron lcommaaccent ldot ljecyr lslash njecyr numero oe p q softsign-cy t tbar tcaron tcedilla tcommaaccent te-cy ve-cy yen yeru-cy]; +@ss01 = [A-cy.ss01 A.ss01 AE.ss01 Aacute.ss01 Abreve.ss01 Acircumflex.ss01 Adieresis.ss01 Agrave.ss01 Amacron.ss01 Aogonek.ss01 Aring.ss01 Atilde.ss01 Em-cy.ss01 Eng.ss01 G.ss01 Gacute.ss01 Gbreve.ss01 Gcircumflex.ss01 Gcommaaccent.ss01 Gdotaccent.ss01 Ha-cy.ss01 Ia-cy.ss01 J.ss01 Jcircumflex.ss01 K.ss01 Ka-cy.ss01 Kcommaaccent.ss01 M.ss01 N.ss01 Nacute.ss01 Ncaron.ss01 Ncommaaccent.ss01 Ntilde.ss01 Q.ss01 U-cy.ss01 Ushort-cy.ss01 V.ss01 W.ss01 Wacute.ss01 Wcircumflex.ss01 Wdieresis.ss01 Wgrave.ss01 X.ss01 Y.ss01 Yacute.ss01 Ycircumflex.ss01 Ydieresis.ss01 Z.ss01 Zacute.ss01 Zcaron.ss01 Zdotaccent.ss01 Zhe-cy.ss01 a-cy.ss01 a.ss01 aacute.ss01 abreve.ss01 acircumflex.ss01 adieresis.ss01 ae.ss01 agrave.ss01 amacron.ss01 aogonek.ss01 aring.ss01 arrowdown.ss01 arrowdown.ss01.case arrowleft.ss01 arrowleft.ss01.case arrowright.ss01 arrowright.ss01.case arrowup.ss01 arrowup.ss01.case atilde.ss01 b.ss01 d.ss01 dcaron.ss01 dcroat.ss01 de-cy.ss01 e.ss01 eacute.ss01 ebreve.ss01 ecaron.ss01 ecircumflex.ss01 edieresis.ss01 edotaccent.ss01 egrave.ss01 el-cy.ss01 emacron.ss01 eogonek.ss01 er-cy.ss01 f.ss01 f_f.ss01 f_f_i.ss01 f_f_l.ss01 fi.ss01 fl.ss01 g.ss01 gacute.ss01 gbreve.ss01 gcircumflex.ss01 gcommaaccent.ss01 gdotaccent.ss01 germandbls.ss01 hardsign-cy.ss01 ia-cy.ss01 ie-cy.ss01 io-cy.ss01 l.ss01 lacute.ss01 lcaron.ss01 lcommaaccent.ss01 ldot.ss01 ljecyr.ss01 lslash.ss01 njecyr.ss01 numero.ss01 oe.ss01 p.ss01 q.ss01 softsign-cy.ss01 t.ss01 tbar.ss01 tcaron.ss01 tcedilla.ss01 tcommaaccent.ss01 te-cy.ss01 ve-cy.ss01 yen.ss01 yeru-cy.ss01]; +@case = [arrowdown.case arrowdown.ss01.case arrowleft.case arrowleft.ss01.case arrowright.case arrowright.ss01.case arrowup.case arrowup.ss01.case backslash.case bar.case braceleft.case braceright.case bracketleft.case bracketright.case brokenbar.case bullet.case colon.case emdash.case endash.case exclamdown.case guillemetleft.case guillemetright.case guilsinglleft.case guilsinglright.case hyphen.case parenleft.case parenright.case questiondown.case semicolon.case at.case bracketangleleft.case bracketangleright.case slash.case]; +@case_def = [arrowdown arrowdown.ss01 arrowleft arrowleft.ss01 arrowright arrowright.ss01 arrowup arrowup.ss01 backslash bar braceleft braceright bracketleft bracketright brokenbar bullet colon emdash endash exclamdown guillemetleft guillemetright guilsinglleft guilsinglright hyphen parenleft parenright questiondown semicolon at bracketangleleft bracketangleright slash]; +@cpsp = [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 Agrave Aacute Acircumflex Atilde Adieresis Aring AE Ccedilla Egrave Eacute Ecircumflex Edieresis Igrave Iacute Icircumflex Idieresis Eth Ntilde Ograve Oacute Ocircumflex Otilde Odieresis Oslash Ugrave Uacute Ucircumflex Udieresis Yacute Thorn Amacron Abreve Aogonek Cacute Ccircumflex Cdotaccent Ccaron Dcaron Dcroat Emacron Ebreve Edotaccent Eogonek Ecaron Gcircumflex Gbreve Gdotaccent Gcommaaccent Hcircumflex Hbar Itilde Imacron Ibreve Iogonek Idotaccent IJ Jcircumflex Kcommaaccent Lacute Lcommaaccent Lcaron Ldot Lslash Nacute Ncommaaccent Ncaron Eng Omacron Obreve Ohungarumlaut OE Racute Rcommaaccent Rcaron Sacute Scircumflex Scedilla Scaron Tcedilla Tcaron Tbar Utilde Umacron Ubreve Uring Uhungarumlaut Uogonek Wcircumflex Ycircumflex Ydieresis Zacute Zdotaccent Zcaron Schwa Acaron Gacute AEacute Oslashacute Scommaaccent Tcommaaccent Delta Omega Iegravecyr uniF43A A-cy.accented E-cy.accented Ii-cy.accented O-cy.accented U-cy.accented Yeru-cy.accented Ereversed-cy.accented Iu-cy.accented Ia-cy.accented Io-cy.accented uniF498 uniF49A uniF49C uniF49E uniF4C6 uniF4CC uniF4D2 uniF4D4 uniF4D6 uniF4D8 uniF50E uniF510 uniF512 uniF514 uniF516 uniF518 uniF51A uniF51C uniF51E Yeru-cymacron uniF522 uniF524 uniF526 uniF528 uniF52A uniF52C uniF52E uniF532 uniF536 uniF538 uniF830 uniF833 uniF839 uniF86F uniF872 uniF875 uniF878 uniF87B uniF87E Io-cy Djecyr Gjecyr E-cy Dze-cy I-cy Yi-cy Jecyr Ljecyr Njecyr Tshecyr Kjecyr Igravecyr Ushort-cy Dzhecyr A-cy Be-cy Ve-cy Ge-cy De-cy Ie-cy Zhe-cy Ze-cy Ii-cy Iishort-cy Ka-cy El-cy Em-cy En-cy O-cy Pe-cy Er-cy Es-cy Te-cy U-cy Ef-cy Ha-cy Tse-cy Che-cy Sha-cy Shcha-cy Hardsign-cy Yeru-cy Softsign-cy Ereversed-cy Iu-cy Ia-cy Omegacyr Yatcyr Eiotifiedcyr Yuslittlecyr Yuslittleiotifiedcyr Yusbigcyr Yusbigiotifiedcyr Ksicyr Psicyr Fitacyr Izhitsacyr Izhitsagravedblcyr Ukcyr Omegaroundcyr Omegatitlocyr Otcyr Koppacyr Ishortsharptailcyr Semisoftcyr Ertickcyr Gheupturn-cy Gestrokecyr Gehookcyr Zhetailcyr Zetailcyr Katailcyr Kaverticalstrokecyr Kastrokecyr Kabashkcyr Entailcyr Engecyr Pehookcyr Haabkhcyr Estailcyr Tetailcyr Ustraightcyr Ustraightstrokecyr Xatailcyr Tetsecyr Chetailcyr Chevertcyr Shhacyr Cheabkhcyr Cheabkhtailcyr Palochkacyr Zhebrevecyr Kahookcyr Elsharptailcyr Enhookcyr Ensharptailcyr Chekhakascyr Emsharptailcyr Abrevecyr Adieresiscyr Aiecyr Iebrevecyr Schwacyr Schwadieresiscyr Zhedieresiscyr Zedieresiscyr Dzeabkhcyr Imacroncyr Idieresiscyr Odieresiscyr Obarcyr Obardieresiscyr Ereverseddieresiscyr Umacroncyr Udieresiscyr Uacutedblcyr Chedieresiscyr Getailcyr Ylongdieresiscyr Gehookstrokecyr Hahookcyr Hastrokecyr Dekomicyr Djekomicyr Zjekomicyr Dzjekomicyr Ljekomicyr Njekomicyr Sjekomicyr Tjekomicyr Reversedzecyr Elhookcyr Lhacyr Rhacyr Yaecyr Qacyr Wecyr Kaaleutcyr Elmiddlehookcyr Enmiddlehookcyr Petailcyr Shhatailcyr Enhookleftcyr Dzzhecyr Dchecyr Eltailcyr Wgrave Wacute Wdieresis Germandbls uni1EBC Zemlya-cy Dzelo-cy DzeReversed-cy Iota-cy Djerv-cy UkMonograph-cy OmegaBroad-cy YerNeutral-cy YeruBackYer-cy YatIotified-cy YuReversed-cy IotifiedA-cy YusClosedlittle-cy YusBlended-cy YusiotifiedClosedLittle-cy Yn-cy TseReversed-cy DeSoft-cy ElSoft-cy EmSoft-cy OMonocular-cy OBinocular-cy ODoubleMonocular-cy Dwe-cy Dzwe-cy Zhwe-cy Cche-cy Dzze-cy TeWithMiddleHook-cy Twe-cy Tswe-cy Tsse-cy Tche-cy Hwe-cy Shwe-cy DoubleO-cy CrossedO-cy A-cy.ss01 A.ss01 AE.ss01 Aacute.ss01 Abreve.ss01 Acircumflex.ss01 Adieresis.ss01 Agrave.ss01 Amacron.ss01 Aogonek.ss01 Aring.ss01 Atilde.ss01 Em-cy.ss01 Eng.ss01 G.ss01 Gacute.ss01 Gbreve.ss01 Gcircumflex.ss01 Gcommaaccent.ss01 Gdotaccent.ss01 Ha-cy.ss01 Ia-cy.ss01 J.ss01 Jcircumflex.ss01 K.ss01 Ka-cy.ss01 Kcommaaccent.ss01 M.ss01 N.ss01 Nacute.ss01 Ncaron.ss01 Ncommaaccent.ss01 Ntilde.ss01 Q.ss01 U-cy.ss01 Ushort-cy.ss01 V.ss01 W.ss01 Wacute.ss01 Wcircumflex.ss01 Wdieresis.ss01 Wgrave.ss01 X.ss01 Y.ss01 Yacute.ss01 Ycircumflex.ss01 Ydieresis.ss01 Z.ss01 Zacute.ss01 Zcaron.ss01 Zdotaccent.ss01 Zetailcyr.BSH Gestrokecyr.BSH Estailcyr.BSH Estailcyr.CHU Zhe-cy.ss01]; +@locl_BGR = [De-cy.BGR Ef-cy.BGR El-cy.BGR de-cy.BGR eiotifiedcyr.BGR el-cy.BGR ge-cy.BGR hardsign-cy.BGR ii-cy.BGR iishort-cy.BGR iotifieda-cy.BGR iu-cy.BGR ka-cy.BGR pe-cy.BGR sha-cy.BGR shcha-cy.BGR softsign-cy.BGR te-cy.BGR tse-cy.BGR ve-cy.BGR yatcyr.BGR yusbigiotifiedcyr.BGR ze-cy.BGR zhe-cy.BGR]; +@locl_def = [De-cy Ef-cy El-cy de-cy eiotifiedcyr el-cy ge-cy hardsign-cy ii-cy iishort-cy iotifieda-cy iu-cy ka-cy pe-cy sha-cy shcha-cy softsign-cy te-cy tse-cy ve-cy yatcyr yusbigiotifiedcyr ze-cy zhe-cy]; +@locl.SRB = [be-cy.SRB iegravecyr.SRB igravecyr.SRB]; +@loclSRB_def = [be-cy iegravecyr igravecyr]; +@accent = [grave acute.case grave.case acute]; +@pics = [neptune leo virgo bishopwhite knightwhite rookblack bishopblack knightblack heartwhite diamondwhite-misc spadewhite heart clubwhite crossedswords flower floretteblack florettewhite floretteoutlinedpetalledblackeight]; +@pics_def = [A B C D E F G H I J K L M N O P Q R]; +#/< otclasses + +#/> tags +@tag.omultiocular-cy.alt = [omultiocular-cy]; +@tag.yi-cy_yi-cy.alt = [uniE000]; +#/< tags +#< classes + +# automatic +@Uppercase = [ A Aacute Abreve Acircumflex Adieresis Agrave Amacron Aogonek Aring Atilde AE B C Cacute Ccaron Ccedilla Ccircumflex Cdotaccent D Eth Dcaron Dcroat E Eacute Ebreve Ecaron Ecircumflex Edieresis Edotaccent Egrave Emacron Eogonek F G Gacute Gbreve Gcircumflex Gcommaaccent Gdotaccent H Hbar Hcircumflex I IJ Iacute Ibreve Icircumflex Idieresis Idotaccent Igrave Imacron Iogonek Itilde J Jcircumflex K Kcommaaccent L Lacute Lcaron Lcommaaccent Ldot Lslash M N Nacute Ncaron Ncommaaccent Eng Ntilde O Oacute Obreve Ocircumflex Odieresis Ograve Ohungarumlaut Omacron Oslash Otilde OE P Thorn Q R Racute Rcaron Rcommaaccent S Sacute Scaron Scedilla Scircumflex Scommaaccent Germandbls T Tbar Tcaron Tcedilla Tcommaaccent U Uacute Ubreve Ucircumflex Udieresis Ugrave Uhungarumlaut Umacron Uogonek Uring Utilde V W Wacute Wcircumflex Wdieresis Wgrave X Y Yacute Ycircumflex Ydieresis Z Zacute Zcaron Zdotaccent A.ss01 Aacute.ss01 Abreve.ss01 Acircumflex.ss01 Adieresis.ss01 Agrave.ss01 Amacron.ss01 Aogonek.ss01 Aring.ss01 Atilde.ss01 AE.ss01 G.ss01 Gacute.ss01 Gbreve.ss01 Gcircumflex.ss01 Gcommaaccent.ss01 Gdotaccent.ss01 J.ss01 Jcircumflex.ss01 K.ss01 Kcommaaccent.ss01 M.ss01 N.ss01 Nacute.ss01 Ncaron.ss01 Ncommaaccent.ss01 Eng.ss01 Ntilde.ss01 Q.ss01 V.ss01 W.ss01 Wacute.ss01 Wcircumflex.ss01 Wdieresis.ss01 Wgrave.ss01 X.ss01 Y.ss01 Yacute.ss01 Ycircumflex.ss01 Ydieresis.ss01 Z.ss01 Zacute.ss01 Zcaron.ss01 Zdotaccent.ss01 A-cy Be-cy Ve-cy Ge-cy Gheupturn-cy De-cy Ie-cy Io-cy Zhe-cy Ze-cy Ii-cy Iishort-cy Ka-cy El-cy Em-cy En-cy O-cy Pe-cy Er-cy Es-cy Te-cy U-cy Ushort-cy Ef-cy Ha-cy Che-cy Tse-cy Sha-cy Shcha-cy Softsign-cy Hardsign-cy Yeru-cy Dze-cy E-cy Ereversed-cy I-cy Yi-cy Iu-cy Ia-cy A-cy.ss01 Zhe-cy.ss01 Ka-cy.ss01 Em-cy.ss01 U-cy.ss01 Ushort-cy.ss01 Ha-cy.ss01 Ia-cy.ss01 ]; + +# Prefix: Languagesystems +# automatic +languagesystem DFLT dflt; + +languagesystem latn dflt; +languagesystem latn ROM; +languagesystem latn MOL; +languagesystem latn CAT; +languagesystem cyrl dflt; +languagesystem cyrl BGR; +languagesystem cyrl BSH; +languagesystem cyrl CHU; +languagesystem cyrl SRB; +languagesystem cyrl MKD; + +lookup liga_accent { + sub @accent by [grave grave grave grave]; +} liga_accent; +feature aalt { +# Access All Alternates + +#> feature + feature locl; + feature sups; + feature case; + feature lnum; + feature pnum; + feature tnum; + feature onum; + feature salt; + feature ss01; + feature hist; +#< feature +} aalt; +feature ccmp { +# automatic +lookup ccmp_Other_1 { + @Markscomb = [dieresis dotaccent grave acute hungarumlaut circumflex caron breve ring tilde macron]; + @MarkscombCase = [dieresis.case dotaccent.case grave.case acute.case hungarumlaut.case circumflex.case caron.case breve.case ring.case tilde.case macron.case]; + sub @Markscomb @Markscomb' by @MarkscombCase; + sub @cpsp @Markscomb' by @MarkscombCase; +} ccmp_Other_1; + +lookup ccmp_Other_2 { + sub @Markscomb' @MarkscombCase by @MarkscombCase; + sub @MarkscombCase @Markscomb' by @MarkscombCase; +} ccmp_Other_2; +} ccmp; + +feature locl { +# automatic + +script latn; + language ROM; + language MOL; + sub Scedilla by Scommaaccent; + sub scedilla by scommaaccent; + sub Tcedilla by Tcommaaccent; + sub tcedilla by tcommaaccent; + +script latn; + language CAT; + sub l' periodcentered' l by ldot; + sub L' periodcentered' L by Ldot; + +script cyrl; # Cyrillic + language SRB ; # Serbian + + lookup locl_SRB_MCD { + # GSUB lookup 20, type 11 (Single) + sub @loclSRB_def by @locl.SRB; + } locl_SRB_MCD; + + language MKD ; # Serbian + lookup locl_SRB_MCD; + + language BSH ; # Bashkir + sub [Gestrokecyr gestrokecyr Zetailcyr zetailcyr] by [Gestrokecyr.BSH gestrokecyr.BSH Zetailcyr.BSH zetailcyr.BSH]; + sub [Estailcyr estailcyr] by [Estailcyr.BSH estailcyr.BSH]; + + language CHU ; # Chuvash + sub [Estailcyr estailcyr] by [Estailcyr.CHU estailcyr.CHU]; + + language BGR ; # Bulgarian + sub @locl_def by @locl_BGR; + +} locl; + +feature sups { +# Superscript + +#> feature + sub one by onesuperior; + sub three by threesuperior; + sub two by twosuperior; +#< feature +} sups; +feature ordn { +# Ordinals + +#> feature + sub [zero one two three four five six seven eight nine] [A a]' by ordfeminine; + sub [zero one two three four five six seven eight nine] [O o]' by ordmasculine; + sub N o period by numero; +#< feature +} ordn; +feature case { +# Case Sensitive Forms + +#> feature + + sub @case_def by @case; + +#< feature +} case; +feature liga { +# Standard Ligatures + +#> feature +sub f f i by f_f_i; +sub f f l by f_f_l; +sub f f by f_f; +sub f i by fi; +sub f l by fl; +sub yi-cy yi-cy by uniE000; +sub hyphen greater by arrowright; +sub less hyphen by arrowleft; +sub backslash bar slash by arrowdown; +sub slash bar backslash by arrowup; + + lookup accent_2 { + sub E-cy @accent' lookup liga_accent; + sub I-cy @accent' lookup liga_accent; + sub Yi-cy @accent' lookup liga_accent; + sub A-cy @accent' lookup liga_accent; + sub Ie-cy @accent' lookup liga_accent; + sub Ii-cy @accent' lookup liga_accent; + sub O-cy @accent' lookup liga_accent; + sub U-cy @accent' lookup liga_accent; + sub Yeru-cy @accent' lookup liga_accent; + sub Ereversed-cy @accent' lookup liga_accent; + sub Iu-cy @accent' lookup liga_accent; + sub Ia-cy @accent' lookup liga_accent; + sub Io-cy @accent' lookup liga_accent; + sub Yatcyr @accent' lookup liga_accent; + + sub e-cy @accent' lookup liga_accent; + sub i-cy @accent' lookup liga_accent; + sub yi-cy @accent' lookup liga_accent; + sub a-cy @accent' lookup liga_accent; + sub ie-cy @accent' lookup liga_accent; + sub ii-cy @accent' lookup liga_accent; + sub o-cy @accent' lookup liga_accent; + sub u-cy @accent' lookup liga_accent; + sub yeru-cy @accent' lookup liga_accent; + sub ereversed-cy @accent' lookup liga_accent; + sub iu-cy @accent' lookup liga_accent; + sub ia-cy @accent' lookup liga_accent; + sub io-cy @accent' lookup liga_accent; + sub yatcyr @accent' lookup liga_accent; + } accent_2; + + lookup accent_3 { + sub E-cy grave by uniF45D; + sub I-cy grave by uniF45E; + sub Yi-cy grave by uniF45F; + sub A-cy grave by A-cy.accented; + sub Ie-cy grave by E-cy.accented; + sub Ii-cy grave by Ii-cy.accented; + sub O-cy grave by O-cy.accented; + sub U-cy grave by U-cy.accented; + sub Yeru-cy grave by Yeru-cy.accented; + sub Ereversed-cy grave by Ereversed-cy.accented; + sub Iu-cy grave by Iu-cy.accented; + sub Ia-cy grave by Ia-cy.accented; + sub Io-cy grave by Io-cy.accented; + sub Yatcyr grave by uniF478; + + sub e-cy grave by uniF475; + sub i-cy grave by uniF476; + sub yi-cy grave by uniF477; + sub a-cy grave by a-cy.accented; + sub ie-cy grave by e-cy.accented; + sub ii-cy grave by ii-cy.accented; + sub o-cy grave by o-cy.accented; + sub u-cy grave by u-cy.accented; + sub yeru-cy grave by yeru-cy.accented; + sub ereversed-cy grave by ereversed-cy.accented; + sub iu-cy grave by iu-cy.accented; + sub ia-cy grave by ia-cy.accented; + sub io-cy grave by io-cy.accented; + sub yatcyr grave by uniF479; + } accent_3; + +#< feature +} liga; +feature dlig { +# Discretionary Ligatures + +#> feature + +sub M a c P a w l o g o by uniE01A; +sub M P a w l o g o by uniE01A; +sub M P l o g o by uniE01A; +sub M A C P A W L O G O by uniE01A; +sub m a c p a w l o g o by uniE01A; +sub t r i d e n t by neptune; +sub t r y z u b by neptune; +sub u k r a i n e s i g n by neptune; +sub T R I D E N T by neptune; +sub T R Y Z U B by neptune; +sub U k r a i n e S i g n by neptune; +sub T r y z u b by neptune; +sub T r i d e n t by neptune; +sub Te-cy Er-cy Ii-cy Ze-cy U-cy Be-cy by neptune; + +#< feature +} dlig; +feature lnum { +# Lining Figures + +#> feature + sub eight.osf by eight.tf; + sub eight by eight.tf; + sub five.osf by five.tf; + sub five by five.tf; + sub four.osf by four.tf; + sub four by four.tf; + sub nine.osf by nine.tf; + sub nine by nine.tf; + sub one.osf by one.tf; + sub one by one.tf; + sub seven.osf by seven.tf; + sub seven by seven.tf; + sub six.osf by six.tf; + sub six by six.tf; + sub three.osf by three.tf; + sub three by three.tf; + sub two.osf by two.tf; + sub two by two.tf; + sub zero.osf by zero.tf; + sub zero by zero.tf; +#< feature +} lnum; +feature pnum { +# Proportional Figures + +#> feature + sub eight.tf by eight.osf; + sub eight by eight.osf; + sub five.tf by five.osf; + sub five by five.osf; + sub four.tf by four.osf; + sub four by four.osf; + sub nine.tf by nine.osf; + sub nine by nine.osf; + sub one.tf by one.osf; + sub one by one.osf; + sub seven.tf by seven.osf; + sub seven by seven.osf; + sub six.tf by six.osf; + sub six by six.osf; + sub three.tf by three.osf; + sub three by three.osf; + sub two.tf by two.osf; + sub two by two.osf; + sub zero.tf by zero.osf; + sub zero by zero.osf; +#< feature +} pnum; +feature tnum { +# Tabular Figures + +#> feature + sub eight by eight.tf; + sub eight.osf by eight.tf; + sub five by five.tf; + sub five.osf by five.tf; + sub four by four.tf; + sub four.osf by four.tf; + sub nine by nine.tf; + sub nine.osf by nine.tf; + sub one by one.tf; + sub one.osf by one.tf; + sub seven by seven.tf; + sub seven.osf by seven.tf; + sub six by six.tf; + sub six.osf by six.tf; + sub three by three.tf; + sub three.osf by three.tf; + sub two by two.tf; + sub two.osf by two.tf; + sub zero by zero.tf; + sub zero.osf by zero.tf; +#< feature +} tnum; +feature onum { +# Oldstyle Figures + +#> feature + sub eight by eight.osf; + sub eight.tf by eight.osf; + sub five by five.osf; + sub five.tf by five.osf; + sub four by four.osf; + sub four.tf by four.osf; + sub nine by nine.osf; + sub nine.tf by nine.osf; + sub one by one.osf; + sub one.tf by one.osf; + sub seven by seven.osf; + sub seven.tf by seven.osf; + sub six by six.osf; + sub six.tf by six.osf; + sub three by three.osf; + sub three.tf by three.osf; + sub two by two.osf; + sub two.tf by two.osf; + sub zero by zero.osf; + sub zero.tf by zero.osf; +#< feature +} onum; +feature salt { +# Stylistic Alternates + +#> feature + sub A from [A.ss01]; + sub A-cy from [A-cy.ss01]; + sub AE from [AE.ss01]; + sub Aacute from [Aacute.ss01]; + sub Abreve from [Abreve.ss01]; + sub Acircumflex from [Acircumflex.ss01]; + sub Adieresis from [Adieresis.ss01]; + sub Agrave from [Agrave.ss01]; + sub Amacron from [Amacron.ss01]; + sub Aogonek from [Aogonek.ss01]; + sub Aring from [Aring.ss01]; + sub Atilde from [Atilde.ss01]; + sub Em-cy from [Em-cy.ss01]; + sub Eng from [Eng.ss01]; + sub G from [G.ss01]; + sub Gacute from [Gacute.ss01]; + sub Gbreve from [Gbreve.ss01]; + sub Gcircumflex from [Gcircumflex.ss01]; + sub Gcommaaccent from [Gcommaaccent.ss01]; + sub Gdotaccent from [Gdotaccent.ss01]; + sub Ha-cy from [Ha-cy.ss01]; + sub Ia-cy from [Ia-cy.ss01]; + sub J from [J.ss01]; + sub Jcircumflex from [Jcircumflex.ss01]; + sub K from [K.ss01]; + sub Ka-cy from [Ka-cy.ss01]; + sub Kcommaaccent from [Kcommaaccent.ss01]; + sub M from [M.ss01]; + sub N from [N.ss01]; + sub Nacute from [Nacute.ss01]; + sub Ncaron from [Ncaron.ss01]; + sub Ncommaaccent from [Ncommaaccent.ss01]; + sub Ntilde from [Ntilde.ss01]; + sub Q from [Q.ss01]; + sub U-cy from [U-cy.ss01]; + sub Ushort-cy from [Ushort-cy.ss01]; + sub V from [V.ss01]; + sub W from [W.ss01]; + sub Wacute from [Wacute.ss01]; + sub Wcircumflex from [Wcircumflex.ss01]; + sub Wdieresis from [Wdieresis.ss01]; + sub Wgrave from [Wgrave.ss01]; + sub X from [X.ss01]; + sub Y from [Y.ss01]; + sub Yacute from [Yacute.ss01]; + sub Ycircumflex from [Ycircumflex.ss01]; + sub Ydieresis from [Ydieresis.ss01]; + sub Z from [Z.ss01]; + sub Zacute from [Zacute.ss01]; + sub Zcaron from [Zcaron.ss01]; + sub Zdotaccent from [Zdotaccent.ss01]; + sub Zhe-cy from [Zhe-cy.ss01]; + sub a from [a.ss01]; + sub a-cy from [a-cy.ss01]; + sub aacute from [aacute.ss01]; + sub abreve from [abreve.ss01]; + sub acircumflex from [acircumflex.ss01]; + sub adieresis from [adieresis.ss01]; + sub ae from [ae.ss01]; + sub agrave from [agrave.ss01]; + sub amacron from [amacron.ss01]; + sub aogonek from [aogonek.ss01]; + sub aring from [aring.ss01]; + sub arrowdown from [arrowdown.ss01]; + sub arrowleft from [arrowleft.ss01]; + sub arrowright from [arrowright.ss01]; + sub arrowup from [arrowup.ss01]; + sub atilde from [atilde.ss01]; + sub b from [b.ss01]; + sub caron from [caron.salt]; + sub commaaccentcomb from [commaaccentcomb.salt]; + sub d from [d.ss01]; + sub dcaron from [dcaron.ss01]; + sub dcroat from [dcroat.ss01]; + sub de-cy from [de-cy.ss01]; + sub e from [e.ss01]; + sub eacute from [eacute.ss01]; + sub ebreve from [ebreve.ss01]; + sub ecaron from [ecaron.ss01]; + sub ecircumflex from [ecircumflex.ss01]; + sub edieresis from [edieresis.ss01]; + sub edotaccent from [edotaccent.ss01]; + sub egrave from [egrave.ss01]; + sub el-cy from [el-cy.ss01]; + sub emacron from [emacron.ss01]; + sub eogonek from [eogonek.ss01]; + sub er-cy from [er-cy.ss01]; + sub f from [f.ss01]; + sub f_f from [f_f.ss01]; + sub f_f_i from [f_f_i.ss01]; + sub f_f_l from [f_f_l.ss01]; + sub fi from [fi.ss01]; + sub fl from [fl.ss01]; + sub g from [g.ss01]; + sub gacute from [gacute.ss01]; + sub gbreve from [gbreve.ss01]; + sub gcircumflex from [gcircumflex.ss01]; + sub gcommaaccent from [gcommaaccent.ss01]; + sub gdotaccent from [gdotaccent.ss01]; + sub germandbls from [germandbls.ss01]; + sub hardsign-cy from [hardsign-cy.ss01]; + sub ia-cy from [ia-cy.ss01]; + sub ie-cy from [ie-cy.ss01]; + sub io-cy from [io-cy.ss01]; + sub l from [l.ss01]; + sub lacute from [lacute.ss01]; + sub lcaron from [lcaron.ss01]; + sub lcommaaccent from [lcommaaccent.ss01]; + sub ldot from [ldot.ss01]; + sub ljecyr from [ljecyr.ss01]; + sub lslash from [lslash.ss01]; + sub njecyr from [njecyr.ss01]; + sub numero from [numero.ss01]; + sub oe from [oe.ss01]; + sub p from [p.ss01]; + sub q from [q.ss01]; + sub softsign-cy from [softsign-cy.ss01]; + sub t from [t.ss01]; + sub tbar from [tbar.ss01]; + sub tcaron from [tcaron.ss01]; + sub tcedilla from [tcedilla.ss01]; + sub tcommaaccent from [tcommaaccent.ss01]; + sub te-cy from [te-cy.ss01]; + sub uniE000 from [uniE000.alt]; + sub ve-cy from [ve-cy.ss01]; + sub yen from [yen.ss01]; + sub yeru-cy from [yeru-cy.ss01]; +#< feature +} salt; +feature ss03 { +# Stylistic Set 01–20 + +#> feature + featureNames { + name "Bulgarian forms"; + name 1 "Bulgarian forms"; + }; + + sub @locl_def by @locl_BGR; + +#< feature +} ss03; +feature ss04 { +# Stylistic Set 01–20 + +#> feature + featureNames { + name "Serbian/Macedonian forms"; + name 1 "Serbian/Macedonian forms"; + }; + + sub @loclSRB_def by @locl.SRB; + +#< feature +} ss04; +feature ss01 { +# Stylistic Set 01–20 + +#> feature + + featureNames { + name "Humanistic forms"; + name 1 "Humanistic forms"; + }; + + sub @ss01_def by @ss01; + +#< feature +} ss01; +feature ss05 { +# Stylistic Set 01–20 + +#> feature + + featureNames { + name "Ukrainian pictograms"; + name 1 "Ukrainian pictograms"; + }; + + sub @pics_def by @pics; + +#< feature +} ss05; +feature hist { +# Historical Forms + +#> feature + sub e-cy by e-cy.hist; + sub s by longs; +#< feature +} hist; +feature frac { +# Fractions + +#> feature +lookup frac_precomposed { + + sub one slash four by onequarter; + sub one slash two by onehalf; + sub three slash four by threequarters; + sub one fraction four by onequarter; + sub one fraction two by onehalf; + sub three fraction four by threequarters; +} frac_precomposed; +#< feature +} frac; +feature cpsp { +# Capital Spacing + +#> feature + + pos @cpsp <5 0 10 0>; + +#< feature +} cpsp; +feature dnom { +# Denominator + +#> feature + sub thousandscyr by thousandscyr.dnom; +#< feature +} dnom; diff --git a/sources/FixelText-SemiBold.ufo/fontinfo.plist b/sources/FixelText-SemiBold.ufo/fontinfo.plist new file mode 100644 index 00000000..3c6edc2a --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/fontinfo.plist @@ -0,0 +1,207 @@ + + + + + ascender + 720 + capHeight + 700 + descender + -200 + familyName + Fixel Text + guidelines + + + angle + 0 + name + m + x + 0 + y + -133.2 + + + angle + 0 + name + m + x + 0 + y + 189 + + + italicAngle + 0 + openTypeGaspRangeRecords + + + rangeGaspBehavior + + 0 + 1 + 2 + 3 + + rangeMaxPPEM + 65535 + + + openTypeHeadCreated + 2023/09/05 09:25:20 + openTypeHeadFlags + + + openTypeHheaAscender + 720 + openTypeHheaCaretOffset + -0 + openTypeHheaDescender + -190 + openTypeHheaLineGap + 100 + openTypeNameDesigner + AlfaBravo + openTypeNameDesignerURL + https://alfabravo.design/ + openTypeNameManufacturer + Kyrylo Tkachov, Marchela Mozhyna, Serhii Makarenko, Maria Weinstein, Zakhar Kryvoshyya + + openTypeNameManufacturerURL + https://macpaw.com/ + openTypeNamePreferredFamilyName + Fixel Text + openTypeNamePreferredSubfamilyName + SemiBold + openTypeNameVersion + Version 1.200 + openTypeOS2CodePageRanges + + 0 + 1 + 2 + 4 + 7 + 29 + + openTypeOS2Panose + + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + + openTypeOS2Selection + + + openTypeOS2StrikeoutPosition + 300 + openTypeOS2StrikeoutSize + 50 + openTypeOS2SubscriptXOffset + -0 + openTypeOS2SubscriptXSize + 650 + openTypeOS2SubscriptYOffset + 75 + openTypeOS2SubscriptYSize + 600 + openTypeOS2SuperscriptXOffset + -0 + openTypeOS2SuperscriptXSize + 650 + openTypeOS2SuperscriptYOffset + 350 + openTypeOS2SuperscriptYSize + 600 + openTypeOS2Type + + 2 + + openTypeOS2TypoAscender + 720 + openTypeOS2TypoDescender + -200 + openTypeOS2TypoLineGap + 290 + openTypeOS2UnicodeRanges + + 0 + 1 + 2 + 9 + 31 + 33 + 60 + + openTypeOS2WeightClass + 600 + openTypeOS2WidthClass + 4 + openTypeOS2WinAscent + 750 + openTypeOS2WinDescent + 250 + postscriptBlueFuzz + 1 + postscriptBlueScale + 0.039625 + postscriptBlueShift + 7 + postscriptBlueValues + + -20 + 0 + + postscriptFontName + FixelText-SemiBold + postscriptForceBold + + postscriptFullName + Fixel Text SemiBold + postscriptIsFixedPitch + + postscriptStemSnapH + + 69 + 74 + 76 + 80 + 99 + + postscriptStemSnapV + + 74 + 80 + 93 + + postscriptUnderlinePosition + -100 + postscriptUnderlineThickness + 50 + postscriptWeightName + Semi Bold + styleMapFamilyName + Fixel Text SemiBold + styleMapStyleName + regular + styleName + SemiBold + unitsPerEm + 1000 + versionMajor + 1 + versionMinor + 200 + xHeight + 520 + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/A_-cy.accented.glif b/sources/FixelText-SemiBold.ufo/glyphs/A_-cy.accented.glif new file mode 100644 index 00000000..57d3dcd1 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/A_-cy.accented.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+acute.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/A_-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/A_-cy.glif new file mode 100644 index 00000000..1b16b4f0 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/A_-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/A_-cy.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/A_-cy.ss01.glif new file mode 100644 index 00000000..a6726e7f --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/A_-cy.ss01.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + com.fontlab.recipe + A + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/A_.glif b/sources/FixelText-SemiBold.ufo/glyphs/A_.glif new file mode 100644 index 00000000..3cba6190 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/A_.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/A_.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/A_.ss01.glif new file mode 100644 index 00000000..eb33a7f3 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/A_.ss01.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/A_E_.glif b/sources/FixelText-SemiBold.ufo/glyphs/A_E_.glif new file mode 100644 index 00000000..7a905dcb --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/A_E_.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + A + com.fontlab.metricsRight + E + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/A_E_.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/A_E_.ss01.glif new file mode 100644 index 00000000..0a15ca2d --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/A_E_.ss01.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + A.ss01 + com.fontlab.metricsRight + E + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/A_E_acute.glif b/sources/FixelText-SemiBold.ufo/glyphs/A_E_acute.glif new file mode 100644 index 00000000..2f5f5d3a --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/A_E_acute.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + AE+acute.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/A_acute.glif b/sources/FixelText-SemiBold.ufo/glyphs/A_acute.glif new file mode 100644 index 00000000..758a531d --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/A_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+acute.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/A_acute.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/A_acute.ss01.glif new file mode 100644 index 00000000..6fdb1a9a --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/A_acute.ss01.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + A.ss01+acute.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/A_breve.glif b/sources/FixelText-SemiBold.ufo/glyphs/A_breve.glif new file mode 100644 index 00000000..d719652b --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/A_breve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+breve.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/A_breve.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/A_breve.ss01.glif new file mode 100644 index 00000000..8faeb4f7 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/A_breve.ss01.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + A.ss01+breve.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/A_brevecyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/A_brevecyr.glif new file mode 100644 index 00000000..2b835a73 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/A_brevecyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+breve.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/A_caron.glif b/sources/FixelText-SemiBold.ufo/glyphs/A_caron.glif new file mode 100644 index 00000000..e18f01e4 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/A_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+caron.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/A_circumflex.glif b/sources/FixelText-SemiBold.ufo/glyphs/A_circumflex.glif new file mode 100644 index 00000000..2effb918 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/A_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+circumflex.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/A_circumflex.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/A_circumflex.ss01.glif new file mode 100644 index 00000000..34f355bd --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/A_circumflex.ss01.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + A.ss01+circumflex.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/A_dieresis.glif b/sources/FixelText-SemiBold.ufo/glyphs/A_dieresis.glif new file mode 100644 index 00000000..af082de3 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/A_dieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+dieresis.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/A_dieresis.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/A_dieresis.ss01.glif new file mode 100644 index 00000000..d86bf298 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/A_dieresis.ss01.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + A.ss01+dieresis.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/A_dieresiscyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/A_dieresiscyr.glif new file mode 100644 index 00000000..684ea3d7 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/A_dieresiscyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/A_grave.glif b/sources/FixelText-SemiBold.ufo/glyphs/A_grave.glif new file mode 100644 index 00000000..dde85c0a --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/A_grave.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+grave.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/A_grave.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/A_grave.ss01.glif new file mode 100644 index 00000000..e66c97d0 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/A_grave.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A.ss01+grave.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/A_iecyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/A_iecyr.glif new file mode 100644 index 00000000..f8cf84f7 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/A_iecyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + AE + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/A_macron.glif b/sources/FixelText-SemiBold.ufo/glyphs/A_macron.glif new file mode 100644 index 00000000..b4c8beb2 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/A_macron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+macron.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/A_macron.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/A_macron.ss01.glif new file mode 100644 index 00000000..76df39ce --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/A_macron.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A.ss01+macron.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/A_ogonek.glif b/sources/FixelText-SemiBold.ufo/glyphs/A_ogonek.glif new file mode 100644 index 00000000..52655ca2 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/A_ogonek.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+ogonek + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/A_ogonek.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/A_ogonek.ss01.glif new file mode 100644 index 00000000..665935e7 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/A_ogonek.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A.ss01+ogonek + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/A_ring.glif b/sources/FixelText-SemiBold.ufo/glyphs/A_ring.glif new file mode 100644 index 00000000..fb8fea89 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/A_ring.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+ring.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/A_ring.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/A_ring.ss01.glif new file mode 100644 index 00000000..9c752bfd --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/A_ring.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A.ss01+ring.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/A_tilde.glif b/sources/FixelText-SemiBold.ufo/glyphs/A_tilde.glif new file mode 100644 index 00000000..293ef87e --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/A_tilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+tilde.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/A_tilde.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/A_tilde.ss01.glif new file mode 100644 index 00000000..dbaf5b1c --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/A_tilde.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A.ss01+tilde.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/B_.glif b/sources/FixelText-SemiBold.ufo/glyphs/B_.glif new file mode 100644 index 00000000..71b1a79c --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/B_.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/B_e-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/B_e-cy.glif new file mode 100644 index 00000000..249d85fe --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/B_e-cy.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + B-10 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/C_.glif b/sources/FixelText-SemiBold.ufo/glyphs/C_.glif new file mode 100644 index 00000000..705df25e --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/C_.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/C_R_.glif b/sources/FixelText-SemiBold.ufo/glyphs/C_R_.glif new file mode 100644 index 00000000..a38a285e --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/C_R_.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/C_acute.glif b/sources/FixelText-SemiBold.ufo/glyphs/C_acute.glif new file mode 100644 index 00000000..8f24a5ff --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/C_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+acute.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/C_caron.glif b/sources/FixelText-SemiBold.ufo/glyphs/C_caron.glif new file mode 100644 index 00000000..54e9a6fd --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/C_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+caron.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/C_cedilla.glif b/sources/FixelText-SemiBold.ufo/glyphs/C_cedilla.glif new file mode 100644 index 00000000..7a5078a3 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/C_cedilla.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+cedilla + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/C_che-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/C_che-cy.glif new file mode 100644 index 00000000..5693dc09 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/C_che-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ч + com.fontlab.metricsRight + Ч + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/C_circumflex.glif b/sources/FixelText-SemiBold.ufo/glyphs/C_circumflex.glif new file mode 100644 index 00000000..5713ee89 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/C_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+circumflex.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/C_dotaccent.glif b/sources/FixelText-SemiBold.ufo/glyphs/C_dotaccent.glif new file mode 100644 index 00000000..fc3de2b1 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/C_dotaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+dotaccent.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/C_he-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/C_he-cy.glif new file mode 100644 index 00000000..5279b085 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/C_he-cy.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/C_heabkhcyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/C_heabkhcyr.glif new file mode 100644 index 00000000..cd2642c5 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/C_heabkhcyr.glif @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + |Schwa + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/C_heabkhtailcyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/C_heabkhtailcyr.glif new file mode 100644 index 00000000..fd67fa96 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/C_heabkhtailcyr.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Cheabkhcyr + com.fontlab.metricsRight + Cheabkhcyr + com.fontlab.recipe + Cheabkhcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/C_hedieresiscyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/C_hedieresiscyr.glif new file mode 100644 index 00000000..22ed141b --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/C_hedieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Che-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/C_hekhakascyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/C_hekhakascyr.glif new file mode 100644 index 00000000..4cfae7e7 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/C_hekhakascyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ч + com.fontlab.metricsRight + H + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/C_hetailcyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/C_hetailcyr.glif new file mode 100644 index 00000000..c9258e42 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/C_hetailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ч + com.fontlab.metricsRight + Entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/C_hevertcyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/C_hevertcyr.glif new file mode 100644 index 00000000..257c4d88 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/C_hevertcyr.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ч + com.fontlab.metricsRight + Н + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/C_rossedO_-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/C_rossedO_-cy.glif new file mode 100644 index 00000000..9feb355b --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/C_rossedO_-cy.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + com.fontlab.recipe + O + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/D_.glif b/sources/FixelText-SemiBold.ufo/glyphs/D_.glif new file mode 100644 index 00000000..4e8245d4 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/D_.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/D_caron.glif b/sources/FixelText-SemiBold.ufo/glyphs/D_caron.glif new file mode 100644 index 00000000..21864017 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/D_caron.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + D+caron.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/D_checyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/D_checyr.glif new file mode 100644 index 00000000..3a2272f9 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/D_checyr.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Д+10 + com.fontlab.metricsRight + Д + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/D_croat.glif b/sources/FixelText-SemiBold.ufo/glyphs/D_croat.glif new file mode 100644 index 00000000..3d014085 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/D_croat.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + D + com.fontlab.recipe + Eth + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/D_e-cy.B_G_R_.glif b/sources/FixelText-SemiBold.ufo/glyphs/D_e-cy.B_G_R_.glif new file mode 100644 index 00000000..48f084d9 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/D_e-cy.B_G_R_.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + l() + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/D_e-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/D_e-cy.glif new file mode 100644 index 00000000..48954708 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/D_e-cy.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/D_eS_oft-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/D_eS_oft-cy.glif new file mode 100644 index 00000000..653c4785 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/D_eS_oft-cy.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Д + com.fontlab.metricsRight + Ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/D_ekomicyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/D_ekomicyr.glif new file mode 100644 index 00000000..9a1e405a --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/D_ekomicyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.metricsLeft + |P + com.fontlab.metricsRight + H + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/D_elta.glif b/sources/FixelText-SemiBold.ufo/glyphs/D_elta.glif new file mode 100644 index 00000000..949bc7f6 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/D_elta.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + A + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/D_jecyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/D_jecyr.glif new file mode 100644 index 00000000..261947a1 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/D_jecyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/D_jekomicyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/D_jekomicyr.glif new file mode 100644 index 00000000..ee0e31f6 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/D_jekomicyr.glif @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Dekomicyr + com.fontlab.metricsRight + Njekomicyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/D_jerv-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/D_jerv-cy.glif new file mode 100644 index 00000000..e2688864 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/D_jerv-cy.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + r() + com.fontlab.metricsRight + O + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/D_oubleO_-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/D_oubleO_-cy.glif new file mode 100644 index 00000000..30239dfb --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/D_oubleO_-cy.glif @@ -0,0 +1,91 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + com.fontlab.recipe + O_O + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/D_we-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/D_we-cy.glif new file mode 100644 index 00000000..b97c88ef --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/D_we-cy.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Д + com.fontlab.metricsRight + Д + com.fontlab.recipe + Д + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/D_ze-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/D_ze-cy.glif new file mode 100644 index 00000000..3557880f --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/D_ze-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + S + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/D_zeR_eversed-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/D_zeR_eversed-cy.glif new file mode 100644 index 00000000..cf74df07 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/D_zeR_eversed-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + S + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/D_zeabkhcyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/D_zeabkhcyr.glif new file mode 100644 index 00000000..a76c48b8 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/D_zeabkhcyr.glif @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + З-10 + com.fontlab.metricsRight + З-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/D_zelo-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/D_zelo-cy.glif new file mode 100644 index 00000000..843b8b48 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/D_zelo-cy.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/D_zhecyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/D_zhecyr.glif new file mode 100644 index 00000000..13984bf9 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/D_zhecyr.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/D_zjekomicyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/D_zjekomicyr.glif new file mode 100644 index 00000000..672e70c8 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/D_zjekomicyr.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + З-10 + com.fontlab.metricsRight + Ц-5 + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/D_zwe-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/D_zwe-cy.glif new file mode 100644 index 00000000..5920e512 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/D_zwe-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + S + com.fontlab.metricsRight + S + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/D_zze-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/D_zze-cy.glif new file mode 100644 index 00000000..ce41b645 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/D_zze-cy.glif @@ -0,0 +1,84 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Д + com.fontlab.metricsRight + Д-20 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/D_zzhecyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/D_zzhecyr.glif new file mode 100644 index 00000000..68f9e5f5 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/D_zzhecyr.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Д + com.fontlab.metricsRight + Ж + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/E_-cy.accented.glif b/sources/FixelText-SemiBold.ufo/glyphs/E_-cy.accented.glif new file mode 100644 index 00000000..48949253 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/E_-cy.accented.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+acute.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/E_-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/E_-cy.glif new file mode 100644 index 00000000..70985a80 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/E_-cy.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + C + com.fontlab.metricsRight + C + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/E_.glif b/sources/FixelText-SemiBold.ufo/glyphs/E_.glif new file mode 100644 index 00000000..7ff070ab --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/E_.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + com.fontlab.metricsRight + F+10 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/E_acute.glif b/sources/FixelText-SemiBold.ufo/glyphs/E_acute.glif new file mode 100644 index 00000000..5751c912 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/E_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+acute.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/E_breve.glif b/sources/FixelText-SemiBold.ufo/glyphs/E_breve.glif new file mode 100644 index 00000000..943ebe75 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/E_breve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+breve.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/E_caron.glif b/sources/FixelText-SemiBold.ufo/glyphs/E_caron.glif new file mode 100644 index 00000000..f1049e1c --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/E_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+caron.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/E_circumflex.glif b/sources/FixelText-SemiBold.ufo/glyphs/E_circumflex.glif new file mode 100644 index 00000000..06776a25 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/E_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+circumflex.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/E_dieresis.glif b/sources/FixelText-SemiBold.ufo/glyphs/E_dieresis.glif new file mode 100644 index 00000000..0b4fad50 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/E_dieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+dieresiscase.alt + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/E_dotaccent.glif b/sources/FixelText-SemiBold.ufo/glyphs/E_dotaccent.glif new file mode 100644 index 00000000..2a0587df --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/E_dotaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+dotaccent.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/E_f-cy.B_G_R_.glif b/sources/FixelText-SemiBold.ufo/glyphs/E_f-cy.B_G_R_.glif new file mode 100644 index 00000000..49278d3e --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/E_f-cy.B_G_R_.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/E_f-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/E_f-cy.glif new file mode 100644 index 00000000..d0eb98ce --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/E_f-cy.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/E_grave.glif b/sources/FixelText-SemiBold.ufo/glyphs/E_grave.glif new file mode 100644 index 00000000..2505f4d3 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/E_grave.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+grave.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/E_iotifiedcyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/E_iotifiedcyr.glif new file mode 100644 index 00000000..2f5b6695 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/E_iotifiedcyr.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + C + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/E_l-cy.B_G_R_.glif b/sources/FixelText-SemiBold.ufo/glyphs/E_l-cy.B_G_R_.glif new file mode 100644 index 00000000..0a5a951b --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/E_l-cy.B_G_R_.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + A + com.fontlab.metricsRight + l() + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/E_l-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/E_l-cy.glif new file mode 100644 index 00000000..9a111607 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/E_l-cy.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/E_lS_oft-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/E_lS_oft-cy.glif new file mode 100644 index 00000000..41e9fefe --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/E_lS_oft-cy.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/E_lhookcyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/E_lhookcyr.glif new file mode 100644 index 00000000..ea83b178 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/E_lhookcyr.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Л + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/E_lmiddlehookcyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/E_lmiddlehookcyr.glif new file mode 100644 index 00000000..29b18c35 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/E_lmiddlehookcyr.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Shhacyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/E_lsharptailcyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/E_lsharptailcyr.glif new file mode 100644 index 00000000..ffbe55f4 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/E_lsharptailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Ensharptailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/E_lsmallcyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/E_lsmallcyr.glif new file mode 100644 index 00000000..2037a26d --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/E_lsmallcyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + el-cy.BGR + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/E_ltailcyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/E_ltailcyr.glif new file mode 100644 index 00000000..639c5054 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/E_ltailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/E_m-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/E_m-cy.glif new file mode 100644 index 00000000..592bc617 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/E_m-cy.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + M + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/E_m-cy.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/E_m-cy.ss01.glif new file mode 100644 index 00000000..9c128ac9 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/E_m-cy.ss01.glif @@ -0,0 +1,13 @@ + + + + + + + + + com.fontlab.recipe + M + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/E_mS_oft-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/E_mS_oft-cy.glif new file mode 100644 index 00000000..3f2759b0 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/E_mS_oft-cy.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + M + com.fontlab.metricsRight + Ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/E_macron.glif b/sources/FixelText-SemiBold.ufo/glyphs/E_macron.glif new file mode 100644 index 00000000..f322db0d --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/E_macron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+macron.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/E_msharptailcyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/E_msharptailcyr.glif new file mode 100644 index 00000000..09d1bc8f --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/E_msharptailcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Н + com.fontlab.metricsRight + Ensharptailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/E_n-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/E_n-cy.glif new file mode 100644 index 00000000..68d06ac3 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/E_n-cy.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + H + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/E_ng.glif b/sources/FixelText-SemiBold.ufo/glyphs/E_ng.glif new file mode 100644 index 00000000..2cd0282d --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/E_ng.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + N + com.fontlab.metricsRight + l() + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/E_ng.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/E_ng.ss01.glif new file mode 100644 index 00000000..985a3a0d --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/E_ng.ss01.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + N.ss01 + com.fontlab.metricsRight + J.ss01 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/E_ngecyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/E_ngecyr.glif new file mode 100644 index 00000000..572997e4 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/E_ngecyr.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/E_nhookcyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/E_nhookcyr.glif new file mode 100644 index 00000000..0c9ebdaf --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/E_nhookcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/E_nhookleftcyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/E_nhookleftcyr.glif new file mode 100644 index 00000000..51247a8f --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/E_nhookleftcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + r()-159 + com.fontlab.metricsRight + H + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/E_nmiddlehookcyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/E_nmiddlehookcyr.glif new file mode 100644 index 00000000..19d6e7f7 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/E_nmiddlehookcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Shhacyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/E_nsharptailcyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/E_nsharptailcyr.glif new file mode 100644 index 00000000..c0227928 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/E_nsharptailcyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Н + com.fontlab.metricsRight + Д + com.fontlab.recipe + Entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/E_ntailcyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/E_ntailcyr.glif new file mode 100644 index 00000000..cd17d92e --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/E_ntailcyr.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Ц + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/E_ogonek.glif b/sources/FixelText-SemiBold.ufo/glyphs/E_ogonek.glif new file mode 100644 index 00000000..caf12879 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/E_ogonek.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+ogonek + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/E_r-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/E_r-cy.glif new file mode 100644 index 00000000..62445328 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/E_r-cy.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + P + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/E_reversed-cy.accented.glif b/sources/FixelText-SemiBold.ufo/glyphs/E_reversed-cy.accented.glif new file mode 100644 index 00000000..b654c358 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/E_reversed-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Э+acute.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/E_reversed-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/E_reversed-cy.glif new file mode 100644 index 00000000..a2442502 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/E_reversed-cy.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |C + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/E_reverseddieresiscyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/E_reverseddieresiscyr.glif new file mode 100644 index 00000000..c219d6e2 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/E_reverseddieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ereversed-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/E_rtickcyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/E_rtickcyr.glif new file mode 100644 index 00000000..4c3e9ae5 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/E_rtickcyr.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + P + com.fontlab.metricsRight + P + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/E_s-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/E_s-cy.glif new file mode 100644 index 00000000..784d58e5 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/E_s-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/E_stailcyr.B_S_H_.glif b/sources/FixelText-SemiBold.ufo/glyphs/E_stailcyr.B_S_H_.glif new file mode 100644 index 00000000..c23e8cba --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/E_stailcyr.B_S_H_.glif @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + C + com.fontlab.metricsRight + C + com.fontlab.recipe + C + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/E_stailcyr.C_H_U_.glif b/sources/FixelText-SemiBold.ufo/glyphs/E_stailcyr.C_H_U_.glif new file mode 100644 index 00000000..765711fd --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/E_stailcyr.C_H_U_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+cedilla.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/E_stailcyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/E_stailcyr.glif new file mode 100644 index 00000000..9716620d --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/E_stailcyr.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + С + com.fontlab.metricsRight + С + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/E_th.glif b/sources/FixelText-SemiBold.ufo/glyphs/E_th.glif new file mode 100644 index 00000000..9460f940 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/E_th.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + D + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/F_.glif b/sources/FixelText-SemiBold.ufo/glyphs/F_.glif new file mode 100644 index 00000000..f058f0b1 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/F_.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/F_itacyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/F_itacyr.glif new file mode 100644 index 00000000..51ec0a9b --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/F_itacyr.glif @@ -0,0 +1,78 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + com.fontlab.recipe + Obarcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/G_.glif b/sources/FixelText-SemiBold.ufo/glyphs/G_.glif new file mode 100644 index 00000000..505a34fc --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/G_.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O+18 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/G_.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/G_.ss01.glif new file mode 100644 index 00000000..a2662735 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/G_.ss01.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O+10 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/G_acute.glif b/sources/FixelText-SemiBold.ufo/glyphs/G_acute.glif new file mode 100644 index 00000000..a3070c12 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/G_acute.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + G+acute.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/G_acute.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/G_acute.ss01.glif new file mode 100644 index 00000000..345b1222 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/G_acute.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G.ss01+acute.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/G_breve.glif b/sources/FixelText-SemiBold.ufo/glyphs/G_breve.glif new file mode 100644 index 00000000..f9ba6e28 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/G_breve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G+breve.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/G_breve.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/G_breve.ss01.glif new file mode 100644 index 00000000..82c9646d --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/G_breve.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G.ss01+breve.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/G_circumflex.glif b/sources/FixelText-SemiBold.ufo/glyphs/G_circumflex.glif new file mode 100644 index 00000000..9b36a316 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/G_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G+circumflex.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/G_circumflex.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/G_circumflex.ss01.glif new file mode 100644 index 00000000..76c38bc8 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/G_circumflex.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G.ss01+circumflex.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/G_commaaccent.glif b/sources/FixelText-SemiBold.ufo/glyphs/G_commaaccent.glif new file mode 100644 index 00000000..e5717527 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/G_commaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G+commaaccentcomb + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/G_commaaccent.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/G_commaaccent.ss01.glif new file mode 100644 index 00000000..bfdbbae5 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/G_commaaccent.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G.ss01+commaaccentcomb + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/G_dotaccent.glif b/sources/FixelText-SemiBold.ufo/glyphs/G_dotaccent.glif new file mode 100644 index 00000000..2861942e --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/G_dotaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G+dotaccent.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/G_dotaccent.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/G_dotaccent.ss01.glif new file mode 100644 index 00000000..2a362a22 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/G_dotaccent.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G.ss01+dotaccent.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/G_e-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/G_e-cy.glif new file mode 100644 index 00000000..39e36435 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/G_e-cy.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + T + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/G_ehookcyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/G_ehookcyr.glif new file mode 100644 index 00000000..03603122 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/G_ehookcyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Г + com.fontlab.metricsRight + Tshecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/G_ehookstrokecyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/G_ehookstrokecyr.glif new file mode 100644 index 00000000..999f11b2 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/G_ehookstrokecyr.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Gestrokecyr + com.fontlab.metricsRight + Gestrokecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/G_ermandbls.glif b/sources/FixelText-SemiBold.ufo/glyphs/G_ermandbls.glif new file mode 100644 index 00000000..7f1c817a --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/G_ermandbls.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + U + com.fontlab.metricsRight + B-5 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/G_estrokecyr.B_S_H_.glif b/sources/FixelText-SemiBold.ufo/glyphs/G_estrokecyr.B_S_H_.glif new file mode 100644 index 00000000..2c9fcacc --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/G_estrokecyr.B_S_H_.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + F + com.fontlab.metricsRight + Gestrokecyr + com.fontlab.recipe + Gestrokecyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/G_estrokecyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/G_estrokecyr.glif new file mode 100644 index 00000000..97cffb2a --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/G_estrokecyr.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + Г + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/G_etailcyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/G_etailcyr.glif new file mode 100644 index 00000000..f307ba42 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/G_etailcyr.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Г + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/G_heupturn-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/G_heupturn-cy.glif new file mode 100644 index 00000000..0cf8f105 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/G_heupturn-cy.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Г + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/G_jecyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/G_jecyr.glif new file mode 100644 index 00000000..1086ef3f --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/G_jecyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ge-cy+acute.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/H_.glif b/sources/FixelText-SemiBold.ufo/glyphs/H_.glif new file mode 100644 index 00000000..dbcb8a35 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/H_.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + com.fontlab.metricsRight + I + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/H_a-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/H_a-cy.glif new file mode 100644 index 00000000..fe23df1e --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/H_a-cy.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + X + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/H_a-cy.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/H_a-cy.ss01.glif new file mode 100644 index 00000000..e402430c --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/H_a-cy.ss01.glif @@ -0,0 +1,14 @@ + + + + + + + + + + com.fontlab.recipe + X + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/H_aabkhcyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/H_aabkhcyr.glif new file mode 100644 index 00000000..cb766334 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/H_aabkhcyr.glif @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/H_ahookcyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/H_ahookcyr.glif new file mode 100644 index 00000000..31fb3a5e --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/H_ahookcyr.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + X + com.fontlab.metricsRight + X + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/H_ardsign-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/H_ardsign-cy.glif new file mode 100644 index 00000000..7f281f8c --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/H_ardsign-cy.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + Ь + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/H_astrokecyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/H_astrokecyr.glif new file mode 100644 index 00000000..5d275eb2 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/H_astrokecyr.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + X + com.fontlab.metricsRight + X + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/H_bar.glif b/sources/FixelText-SemiBold.ufo/glyphs/H_bar.glif new file mode 100644 index 00000000..f04c16a3 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/H_bar.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + r() + com.fontlab.metricsRight + H + com.schriftgestaltung.Glyphs.rightMetricsKey + H + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/H_circumflex.glif b/sources/FixelText-SemiBold.ufo/glyphs/H_circumflex.glif new file mode 100644 index 00000000..281146f9 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/H_circumflex.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + H+circumflex.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/H_we-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/H_we-cy.glif new file mode 100644 index 00000000..f07ecc84 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/H_we-cy.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Iota-cy + com.fontlab.metricsRight + Tshecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/I_-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/I_-cy.glif new file mode 100644 index 00000000..ace0c01b --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/I_-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/I_.glif b/sources/FixelText-SemiBold.ufo/glyphs/I_.glif new file mode 100644 index 00000000..6608779e --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/I_.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/I_J_.glif b/sources/FixelText-SemiBold.ufo/glyphs/I_J_.glif new file mode 100644 index 00000000..460b0043 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/I_J_.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + I_J + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/I_a-cy.accented.glif b/sources/FixelText-SemiBold.ufo/glyphs/I_a-cy.accented.glif new file mode 100644 index 00000000..51672653 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/I_a-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Я+acute.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/I_a-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/I_a-cy.glif new file mode 100644 index 00000000..9171cfc8 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/I_a-cy.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |R+10 + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/I_a-cy.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/I_a-cy.ss01.glif new file mode 100644 index 00000000..61b48d22 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/I_a-cy.ss01.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/I_acute.glif b/sources/FixelText-SemiBold.ufo/glyphs/I_acute.glif new file mode 100644 index 00000000..d7a46a39 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/I_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+acute.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/I_breve.glif b/sources/FixelText-SemiBold.ufo/glyphs/I_breve.glif new file mode 100644 index 00000000..8e452baf --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/I_breve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+breve.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/I_circumflex.glif b/sources/FixelText-SemiBold.ufo/glyphs/I_circumflex.glif new file mode 100644 index 00000000..b12baa23 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/I_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+circumflex.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/I_dieresis.glif b/sources/FixelText-SemiBold.ufo/glyphs/I_dieresis.glif new file mode 100644 index 00000000..f35ff2a1 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/I_dieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+dieresiscase.alt + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/I_dieresiscyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/I_dieresiscyr.glif new file mode 100644 index 00000000..a2757413 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/I_dieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ii-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/I_dotaccent.glif b/sources/FixelText-SemiBold.ufo/glyphs/I_dotaccent.glif new file mode 100644 index 00000000..819f3532 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/I_dotaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+dotaccent.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/I_e-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/I_e-cy.glif new file mode 100644 index 00000000..4f9b1c1d --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/I_e-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/I_ebrevecyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/I_ebrevecyr.glif new file mode 100644 index 00000000..f5c98601 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/I_ebrevecyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+breve.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/I_egravecyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/I_egravecyr.glif new file mode 100644 index 00000000..6952f935 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/I_egravecyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+grave.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/I_grave.glif b/sources/FixelText-SemiBold.ufo/glyphs/I_grave.glif new file mode 100644 index 00000000..b6ad94a8 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/I_grave.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+grave.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/I_gravecyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/I_gravecyr.glif new file mode 100644 index 00000000..602ab778 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/I_gravecyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ii-cy+grave.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/I_i-cy.accented.glif b/sources/FixelText-SemiBold.ufo/glyphs/I_i-cy.accented.glif new file mode 100644 index 00000000..e926dc82 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/I_i-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + И+acute.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/I_i-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/I_i-cy.glif new file mode 100644 index 00000000..03d617f0 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/I_i-cy.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/I_ishort-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/I_ishort-cy.glif new file mode 100644 index 00000000..63ed60de --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/I_ishort-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + uni0418+breve.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/I_macron.glif b/sources/FixelText-SemiBold.ufo/glyphs/I_macron.glif new file mode 100644 index 00000000..2283bde0 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/I_macron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+macron.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/I_macroncyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/I_macroncyr.glif new file mode 100644 index 00000000..c0d15675 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/I_macroncyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ii-cy+macron.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/I_o-cy.accented.glif b/sources/FixelText-SemiBold.ufo/glyphs/I_o-cy.accented.glif new file mode 100644 index 00000000..4006b078 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/I_o-cy.accented.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + com.fontlab.recipe + E+dieresis.case+acute.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/I_o-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/I_o-cy.glif new file mode 100644 index 00000000..f5dacb15 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/I_o-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Edieresis + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/I_ogonek.glif b/sources/FixelText-SemiBold.ufo/glyphs/I_ogonek.glif new file mode 100644 index 00000000..5e465b4c --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/I_ogonek.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+ogonek + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/I_ota-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/I_ota-cy.glif new file mode 100644 index 00000000..a212d6c5 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/I_ota-cy.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |J + com.fontlab.metricsRight + |J + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/I_otifiedA_-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/I_otifiedA_-cy.glif new file mode 100644 index 00000000..e033d9e6 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/I_otifiedA_-cy.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + com.fontlab.metricsRight + A + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/I_shortsharptailcyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/I_shortsharptailcyr.glif new file mode 100644 index 00000000..005f4a80 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/I_shortsharptailcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Й + com.fontlab.metricsRight + Ensharptailcyr + com.fontlab.recipe + Й + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/I_tilde.glif b/sources/FixelText-SemiBold.ufo/glyphs/I_tilde.glif new file mode 100644 index 00000000..1ff99a4b --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/I_tilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+tilde.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/I_u-cy.accented.glif b/sources/FixelText-SemiBold.ufo/glyphs/I_u-cy.accented.glif new file mode 100644 index 00000000..eaea3cf1 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/I_u-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ю+acute.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/I_u-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/I_u-cy.glif new file mode 100644 index 00000000..b503aae8 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/I_u-cy.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/I_zhitsacyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/I_zhitsacyr.glif new file mode 100644 index 00000000..4e938a28 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/I_zhitsacyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + V + com.fontlab.metricsRight + + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/I_zhitsagravedblcyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/I_zhitsagravedblcyr.glif new file mode 100644 index 00000000..046bc896 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/I_zhitsagravedblcyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + com.fontlab.metricsLeft + Izhitsacyr + com.fontlab.metricsRight + Izhitsacyr + com.fontlab.recipe + Izhitsacyr+hungarumlaut.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/J_.glif b/sources/FixelText-SemiBold.ufo/glyphs/J_.glif new file mode 100644 index 00000000..b63aa269 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/J_.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + U + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/J_.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/J_.ss01.glif new file mode 100644 index 00000000..227c9bb7 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/J_.ss01.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + U + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/J_circumflex.glif b/sources/FixelText-SemiBold.ufo/glyphs/J_circumflex.glif new file mode 100644 index 00000000..471b5435 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/J_circumflex.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + J+circumflex.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/J_circumflex.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/J_circumflex.ss01.glif new file mode 100644 index 00000000..803d8693 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/J_circumflex.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + J.ss01+circumflex.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/J_ecyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/J_ecyr.glif new file mode 100644 index 00000000..9fea94d1 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/J_ecyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsLeft + J + com.fontlab.metricsRight + J + com.fontlab.recipe + J + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/K_.glif b/sources/FixelText-SemiBold.ufo/glyphs/K_.glif new file mode 100644 index 00000000..95617683 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/K_.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/K_.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/K_.ss01.glif new file mode 100644 index 00000000..e729f932 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/K_.ss01.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/K_a-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/K_a-cy.glif new file mode 100644 index 00000000..ca66b581 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/K_a-cy.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.recipe + K + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/K_a-cy.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/K_a-cy.ss01.glif new file mode 100644 index 00000000..7dec2d94 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/K_a-cy.ss01.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.recipe + K + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/K_aaleutcyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/K_aaleutcyr.glif new file mode 100644 index 00000000..2f6769e0 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/K_aaleutcyr.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + K + com.fontlab.metricsRight + K + com.fontlab.recipe + K + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/K_abashkcyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/K_abashkcyr.glif new file mode 100644 index 00000000..7d5f944d --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/K_abashkcyr.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Hardsign-cy + com.fontlab.metricsRight + K + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/K_ahookcyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/K_ahookcyr.glif new file mode 100644 index 00000000..4432b0d1 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/K_ahookcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + K + com.fontlab.metricsRight + Djecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/K_astrokecyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/K_astrokecyr.glif new file mode 100644 index 00000000..b21c97b1 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/K_astrokecyr.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Yatcyr + com.fontlab.metricsRight + K + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/K_atailcyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/K_atailcyr.glif new file mode 100644 index 00000000..becc86c5 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/K_atailcyr.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + К-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/K_averticalstrokecyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/K_averticalstrokecyr.glif new file mode 100644 index 00000000..b08bc9b0 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/K_averticalstrokecyr.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + K + com.fontlab.metricsRight + Ж + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/K_commaaccent.glif b/sources/FixelText-SemiBold.ufo/glyphs/K_commaaccent.glif new file mode 100644 index 00000000..d0774d24 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/K_commaaccent.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + K+commaaccentcomb + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/K_commaaccent.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/K_commaaccent.ss01.glif new file mode 100644 index 00000000..312595f2 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/K_commaaccent.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + K.ss01+commaaccentcomb + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/K_jecyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/K_jecyr.glif new file mode 100644 index 00000000..971aa4dd --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/K_jecyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ka-cy+acute.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/K_oppacyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/K_oppacyr.glif new file mode 100644 index 00000000..9e831136 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/K_oppacyr.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + C-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/K_sicyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/K_sicyr.glif new file mode 100644 index 00000000..35cf439e --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/K_sicyr.glif @@ -0,0 +1,98 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + З-10 + com.fontlab.metricsRight + З + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/L_.glif b/sources/FixelText-SemiBold.ufo/glyphs/L_.glif new file mode 100644 index 00000000..aa6d8e23 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/L_.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/L_acute.glif b/sources/FixelText-SemiBold.ufo/glyphs/L_acute.glif new file mode 100644 index 00000000..3d836fac --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/L_acute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + L+acute.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/L_caron.glif b/sources/FixelText-SemiBold.ufo/glyphs/L_caron.glif new file mode 100644 index 00000000..7ba071eb --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/L_caron.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + com.fontlab.recipe + L+caron.salt + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/L_commaaccent.glif b/sources/FixelText-SemiBold.ufo/glyphs/L_commaaccent.glif new file mode 100644 index 00000000..c7276cc3 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/L_commaaccent.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + L+commaaccentcomb + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/L_dot.glif b/sources/FixelText-SemiBold.ufo/glyphs/L_dot.glif new file mode 100644 index 00000000..80612049 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/L_dot.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + com.fontlab.metricsRight + L + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/L_hacyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/L_hacyr.glif new file mode 100644 index 00000000..db516a06 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/L_hacyr.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + X + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/L_jecyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/L_jecyr.glif new file mode 100644 index 00000000..b85f068e --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/L_jecyr.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Ь + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/L_jekomicyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/L_jekomicyr.glif new file mode 100644 index 00000000..16a08395 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/L_jekomicyr.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Njekomicyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/L_slash.glif b/sources/FixelText-SemiBold.ufo/glyphs/L_slash.glif new file mode 100644 index 00000000..dbedf150 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/L_slash.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + L-80 + com.fontlab.metricsRight + L + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/M_.glif b/sources/FixelText-SemiBold.ufo/glyphs/M_.glif new file mode 100644 index 00000000..ed7fedde --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/M_.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/M_.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/M_.ss01.glif new file mode 100644 index 00000000..4ce3f47b --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/M_.ss01.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H-25 + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/N_.glif b/sources/FixelText-SemiBold.ufo/glyphs/N_.glif new file mode 100644 index 00000000..edbd2eaa --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/N_.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/N_.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/N_.ss01.glif new file mode 100644 index 00000000..ebb78a12 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/N_.ss01.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H-10 + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/N_U_L_L_.glif b/sources/FixelText-SemiBold.ufo/glyphs/N_U_L_L_.glif new file mode 100644 index 00000000..1ad177ae --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/N_U_L_L_.glif @@ -0,0 +1,4 @@ + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/N_acute.glif b/sources/FixelText-SemiBold.ufo/glyphs/N_acute.glif new file mode 100644 index 00000000..2e81d4e6 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/N_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N+acute.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/N_acute.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/N_acute.ss01.glif new file mode 100644 index 00000000..8397b7ac --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/N_acute.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N.ss01+acute.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/N_caron.glif b/sources/FixelText-SemiBold.ufo/glyphs/N_caron.glif new file mode 100644 index 00000000..dfc3bd31 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/N_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N+caron.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/N_caron.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/N_caron.ss01.glif new file mode 100644 index 00000000..f17dc930 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/N_caron.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N.ss01+caron.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/N_commaaccent.glif b/sources/FixelText-SemiBold.ufo/glyphs/N_commaaccent.glif new file mode 100644 index 00000000..d43ac2a6 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/N_commaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N+commaaccentcomb + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/N_commaaccent.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/N_commaaccent.ss01.glif new file mode 100644 index 00000000..8eb2dfbe --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/N_commaaccent.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N.ss01+commaaccentcomb + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/N_jecyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/N_jecyr.glif new file mode 100644 index 00000000..1fd38dac --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/N_jecyr.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Н + com.fontlab.metricsRight + Ь + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/N_jekomicyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/N_jekomicyr.glif new file mode 100644 index 00000000..7a20895f --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/N_jekomicyr.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + |u + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/N_tilde.glif b/sources/FixelText-SemiBold.ufo/glyphs/N_tilde.glif new file mode 100644 index 00000000..7dfca66b --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/N_tilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N+tilde.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/N_tilde.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/N_tilde.ss01.glif new file mode 100644 index 00000000..cb21a333 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/N_tilde.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N.ss01+tilde.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/O_-cy.accented.glif b/sources/FixelText-SemiBold.ufo/glyphs/O_-cy.accented.glif new file mode 100644 index 00000000..a6a21990 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/O_-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+acute.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/O_-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/O_-cy.glif new file mode 100644 index 00000000..85742665 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/O_-cy.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/O_.glif b/sources/FixelText-SemiBold.ufo/glyphs/O_.glif new file mode 100644 index 00000000..8352274f --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/O_.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/O_B_inocular-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/O_B_inocular-cy.glif new file mode 100644 index 00000000..87c30249 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/O_B_inocular-cy.glif @@ -0,0 +1,81 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/O_D_oubleM_onocular-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/O_D_oubleM_onocular-cy.glif new file mode 100644 index 00000000..75697395 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/O_D_oubleM_onocular-cy.glif @@ -0,0 +1,119 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + com.fontlab.recipe + DoubleO-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/O_E_.glif b/sources/FixelText-SemiBold.ufo/glyphs/O_E_.glif new file mode 100644 index 00000000..a77ae3db --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/O_E_.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + E + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/O_M_onocular-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/O_M_onocular-cy.glif new file mode 100644 index 00000000..e2e6f6a7 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/O_M_onocular-cy.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/O_acute.glif b/sources/FixelText-SemiBold.ufo/glyphs/O_acute.glif new file mode 100644 index 00000000..195d1c04 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/O_acute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+acute.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/O_barcyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/O_barcyr.glif new file mode 100644 index 00000000..e0edece6 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/O_barcyr.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + r() + com.fontlab.metricsRight + O + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/O_bardieresiscyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/O_bardieresiscyr.glif new file mode 100644 index 00000000..38b97464 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/O_bardieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Obarcyr+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/O_breve.glif b/sources/FixelText-SemiBold.ufo/glyphs/O_breve.glif new file mode 100644 index 00000000..ea9d0952 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/O_breve.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+breve.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/O_circumflex.glif b/sources/FixelText-SemiBold.ufo/glyphs/O_circumflex.glif new file mode 100644 index 00000000..853f6dfb --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/O_circumflex.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+circumflex.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/O_dieresis.glif b/sources/FixelText-SemiBold.ufo/glyphs/O_dieresis.glif new file mode 100644 index 00000000..54d8940a --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/O_dieresis.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+dieresis.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/O_dieresiscyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/O_dieresiscyr.glif new file mode 100644 index 00000000..7a75e0c3 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/O_dieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/O_grave.glif b/sources/FixelText-SemiBold.ufo/glyphs/O_grave.glif new file mode 100644 index 00000000..d4b367e7 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/O_grave.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+grave.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/O_hungarumlaut.glif b/sources/FixelText-SemiBold.ufo/glyphs/O_hungarumlaut.glif new file mode 100644 index 00000000..6ffe7ca8 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/O_hungarumlaut.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+hungarumlaut.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/O_macron.glif b/sources/FixelText-SemiBold.ufo/glyphs/O_macron.glif new file mode 100644 index 00000000..8827ae9a --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/O_macron.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+macron.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/O_mega.glif b/sources/FixelText-SemiBold.ufo/glyphs/O_mega.glif new file mode 100644 index 00000000..43f3d4b1 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/O_mega.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O+10 + com.fontlab.metricsRight + O+10 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/O_megaB_road-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/O_megaB_road-cy.glif new file mode 100644 index 00000000..a10b855d --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/O_megaB_road-cy.glif @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O+10 + com.fontlab.metricsRight + O+10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/O_megacyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/O_megacyr.glif new file mode 100644 index 00000000..82817963 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/O_megacyr.glif @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O+10 + com.fontlab.metricsRight + O+10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/O_megaroundcyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/O_megaroundcyr.glif new file mode 100644 index 00000000..69c3570d --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/O_megaroundcyr.glif @@ -0,0 +1,81 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/O_megatitlocyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/O_megatitlocyr.glif new file mode 100644 index 00000000..11e92e80 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/O_megatitlocyr.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O+10 + com.fontlab.metricsRight + O+10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/O_slash.glif b/sources/FixelText-SemiBold.ufo/glyphs/O_slash.glif new file mode 100644 index 00000000..267dbbce --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/O_slash.glif @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/O_slashacute.glif b/sources/FixelText-SemiBold.ufo/glyphs/O_slashacute.glif new file mode 100644 index 00000000..9a6eb4c8 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/O_slashacute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Oslash+acute.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/O_tcyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/O_tcyr.glif new file mode 100644 index 00000000..ebb0aa29 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/O_tcyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Omegacyr+uni2DEE.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/O_tilde.glif b/sources/FixelText-SemiBold.ufo/glyphs/O_tilde.glif new file mode 100644 index 00000000..39e56404 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/O_tilde.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+tilde.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/P_.glif b/sources/FixelText-SemiBold.ufo/glyphs/P_.glif new file mode 100644 index 00000000..1eee30a2 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/P_.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/P_alochkacyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/P_alochkacyr.glif new file mode 100644 index 00000000..ef7a7e38 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/P_alochkacyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/P_e-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/P_e-cy.glif new file mode 100644 index 00000000..01fca6a4 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/P_e-cy.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/P_ehookcyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/P_ehookcyr.glif new file mode 100644 index 00000000..0d107101 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/P_ehookcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + П + com.fontlab.metricsRight + Shhacyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/P_etailcyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/P_etailcyr.glif new file mode 100644 index 00000000..6a83dcde --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/P_etailcyr.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/P_sicyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/P_sicyr.glif new file mode 100644 index 00000000..9ac7b478 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/P_sicyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + U-20 + com.fontlab.metricsRight + U-20 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/Q_.glif b/sources/FixelText-SemiBold.ufo/glyphs/Q_.glif new file mode 100644 index 00000000..0d66c8d2 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/Q_.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/Q_.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/Q_.ss01.glif new file mode 100644 index 00000000..97956175 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/Q_.ss01.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/Q_acyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/Q_acyr.glif new file mode 100644 index 00000000..19bd028f --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/Q_acyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Q + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/R_.glif b/sources/FixelText-SemiBold.ufo/glyphs/R_.glif new file mode 100644 index 00000000..19990533 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/R_.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/R_acute.glif b/sources/FixelText-SemiBold.ufo/glyphs/R_acute.glif new file mode 100644 index 00000000..86ee7139 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/R_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + R+acute.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/R_caron.glif b/sources/FixelText-SemiBold.ufo/glyphs/R_caron.glif new file mode 100644 index 00000000..81de504e --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/R_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + R+caron.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/R_commaaccent.glif b/sources/FixelText-SemiBold.ufo/glyphs/R_commaaccent.glif new file mode 100644 index 00000000..23fe2b4f --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/R_commaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + R+commaaccentcomb + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/R_eversedzecyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/R_eversedzecyr.glif new file mode 100644 index 00000000..16df492c --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/R_eversedzecyr.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + + com.fontlab.metricsRight + + com.fontlab.recipe + З + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/R_hacyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/R_hacyr.glif new file mode 100644 index 00000000..a7961f77 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/R_hacyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + P + com.fontlab.metricsRight + X + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/S_.glif b/sources/FixelText-SemiBold.ufo/glyphs/S_.glif new file mode 100644 index 00000000..67ec7f12 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/S_.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/S_acute.glif b/sources/FixelText-SemiBold.ufo/glyphs/S_acute.glif new file mode 100644 index 00000000..4ec09394 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/S_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + S+acute.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/S_caron.glif b/sources/FixelText-SemiBold.ufo/glyphs/S_caron.glif new file mode 100644 index 00000000..8f11b1c2 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/S_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + S+caron.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/S_cedilla.glif b/sources/FixelText-SemiBold.ufo/glyphs/S_cedilla.glif new file mode 100644 index 00000000..18e31ba1 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/S_cedilla.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + S+cedilla + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/S_chwa.glif b/sources/FixelText-SemiBold.ufo/glyphs/S_chwa.glif new file mode 100644 index 00000000..c09a09e4 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/S_chwa.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Schwacyr + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/S_chwacyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/S_chwacyr.glif new file mode 100644 index 00000000..2ff4513b --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/S_chwacyr.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O-10 + com.fontlab.metricsRight + O + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/S_chwadieresiscyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/S_chwadieresiscyr.glif new file mode 100644 index 00000000..d5fcbfa5 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/S_chwadieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Schwacyr+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/S_circumflex.glif b/sources/FixelText-SemiBold.ufo/glyphs/S_circumflex.glif new file mode 100644 index 00000000..a2b4dbd4 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/S_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + S+circumflex.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/S_commaaccent.glif b/sources/FixelText-SemiBold.ufo/glyphs/S_commaaccent.glif new file mode 100644 index 00000000..6d14ac4d --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/S_commaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + S+commaaccentcomb + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/S_emisoftcyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/S_emisoftcyr.glif new file mode 100644 index 00000000..251a33e3 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/S_emisoftcyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Yat + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/S_ha-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/S_ha-cy.glif new file mode 100644 index 00000000..eadcc688 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/S_ha-cy.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/S_hcha-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/S_hcha-cy.glif new file mode 100644 index 00000000..7835a9d4 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/S_hcha-cy.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Д + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/S_hhacyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/S_hhacyr.glif new file mode 100644 index 00000000..69f36b96 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/S_hhacyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.metricsLeft + Н + com.fontlab.metricsRight + Tshecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/S_hhatailcyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/S_hhatailcyr.glif new file mode 100644 index 00000000..e0764924 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/S_hhatailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/S_hwe-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/S_hwe-cy.glif new file mode 100644 index 00000000..6d323126 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/S_hwe-cy.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Щ + com.fontlab.metricsRight + Щ-20 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/S_jekomicyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/S_jekomicyr.glif new file mode 100644 index 00000000..84047d20 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/S_jekomicyr.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + |Schwa + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/S_oftsign-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/S_oftsign-cy.glif new file mode 100644 index 00000000..b1612bae --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/S_oftsign-cy.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + P + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/T_.glif b/sources/FixelText-SemiBold.ufo/glyphs/T_.glif new file mode 100644 index 00000000..2e691bc0 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/T_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/T_bar.glif b/sources/FixelText-SemiBold.ufo/glyphs/T_bar.glif new file mode 100644 index 00000000..008c1f5d --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/T_bar.glif @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/T_caron.glif b/sources/FixelText-SemiBold.ufo/glyphs/T_caron.glif new file mode 100644 index 00000000..cfe0bc65 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/T_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + T+caron.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/T_cedilla.glif b/sources/FixelText-SemiBold.ufo/glyphs/T_cedilla.glif new file mode 100644 index 00000000..7de949ca --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/T_cedilla.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + T+cedilla + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/T_che-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/T_che-cy.glif new file mode 100644 index 00000000..7b0444b4 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/T_che-cy.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Tetsecyr-20 + com.fontlab.metricsRight + Ч + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/T_commaaccent.glif b/sources/FixelText-SemiBold.ufo/glyphs/T_commaaccent.glif new file mode 100644 index 00000000..ec1134ab --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/T_commaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + T+commaaccentcomb + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/T_e-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/T_e-cy.glif new file mode 100644 index 00000000..c09a56ed --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/T_e-cy.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + com.fontlab.recipe + T + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/T_eW_ithM_iddleH_ook-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/T_eW_ithM_iddleH_ook-cy.glif new file mode 100644 index 00000000..ff42f0e2 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/T_eW_ithM_iddleH_ook-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Djecyr + com.fontlab.metricsRight + Gehookcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/T_etailcyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/T_etailcyr.glif new file mode 100644 index 00000000..f1d80000 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/T_etailcyr.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/T_etsecyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/T_etsecyr.glif new file mode 100644 index 00000000..906cab3d --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/T_etsecyr.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Tshecyr + com.fontlab.metricsRight + Ц + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/T_horn.glif b/sources/FixelText-SemiBold.ufo/glyphs/T_horn.glif new file mode 100644 index 00000000..16aeec83 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/T_horn.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + P + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/T_jekomicyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/T_jekomicyr.glif new file mode 100644 index 00000000..a961a260 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/T_jekomicyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + Njekomicyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/T_se-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/T_se-cy.glif new file mode 100644 index 00000000..be288a33 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/T_se-cy.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Д + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/T_seR_eversed-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/T_seR_eversed-cy.glif new file mode 100644 index 00000000..d602857d --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/T_seR_eversed-cy.glif @@ -0,0 +1,20 @@ + + + + + + + + + + com.fontlab.metricsLeft + + com.fontlab.metricsRight + H + com.fontlab.recipe + Ц + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/T_shecyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/T_shecyr.glif new file mode 100644 index 00000000..39411ddd --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/T_shecyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + n + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/T_sse-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/T_sse-cy.glif new file mode 100644 index 00000000..de317f66 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/T_sse-cy.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + T + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/T_swe-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/T_swe-cy.glif new file mode 100644 index 00000000..a840d0ac --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/T_swe-cy.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Shwe-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/T_we-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/T_we-cy.glif new file mode 100644 index 00000000..ba21e0c3 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/T_we-cy.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + T + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/U_-cy.accented.glif b/sources/FixelText-SemiBold.ufo/glyphs/U_-cy.accented.glif new file mode 100644 index 00000000..dfca392c --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/U_-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + У+acute.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/U_-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/U_-cy.glif new file mode 100644 index 00000000..f2f72021 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/U_-cy.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Y+10 + com.fontlab.metricsRight + Y+5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/U_-cy.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/U_-cy.ss01.glif new file mode 100644 index 00000000..f93f8d43 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/U_-cy.ss01.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/U_.glif b/sources/FixelText-SemiBold.ufo/glyphs/U_.glif new file mode 100644 index 00000000..e027a185 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/U_.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H-10 + com.fontlab.metricsRight + H-10 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/U_acute.glif b/sources/FixelText-SemiBold.ufo/glyphs/U_acute.glif new file mode 100644 index 00000000..47aceda2 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/U_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+acute.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/U_acutedblcyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/U_acutedblcyr.glif new file mode 100644 index 00000000..d18ead97 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/U_acutedblcyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U-cy+hungarumlaut.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/U_breve.glif b/sources/FixelText-SemiBold.ufo/glyphs/U_breve.glif new file mode 100644 index 00000000..751eea64 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/U_breve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+breve.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/U_circumflex.glif b/sources/FixelText-SemiBold.ufo/glyphs/U_circumflex.glif new file mode 100644 index 00000000..82f7284b --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/U_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+circumflex.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/U_dieresis.glif b/sources/FixelText-SemiBold.ufo/glyphs/U_dieresis.glif new file mode 100644 index 00000000..3e82e4a9 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/U_dieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+dieresis.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/U_dieresiscyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/U_dieresiscyr.glif new file mode 100644 index 00000000..ba58fce3 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/U_dieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/U_grave.glif b/sources/FixelText-SemiBold.ufo/glyphs/U_grave.glif new file mode 100644 index 00000000..acf1856c --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/U_grave.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+grave.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/U_hungarumlaut.glif b/sources/FixelText-SemiBold.ufo/glyphs/U_hungarumlaut.glif new file mode 100644 index 00000000..526bb106 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/U_hungarumlaut.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+hungarumlaut.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/U_kM_onograph-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/U_kM_onograph-cy.glif new file mode 100644 index 00000000..213590d5 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/U_kM_onograph-cy.glif @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/U_kcyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/U_kcyr.glif new file mode 100644 index 00000000..815f399a --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/U_kcyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + y + com.fontlab.recipe + О_у + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/U_macron.glif b/sources/FixelText-SemiBold.ufo/glyphs/U_macron.glif new file mode 100644 index 00000000..255d3aba --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/U_macron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+macron.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/U_macroncyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/U_macroncyr.glif new file mode 100644 index 00000000..34a0edc1 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/U_macroncyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U-cy+macron.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/U_ogonek.glif b/sources/FixelText-SemiBold.ufo/glyphs/U_ogonek.glif new file mode 100644 index 00000000..092ee15b --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/U_ogonek.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + U+ogonek + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/U_ring.glif b/sources/FixelText-SemiBold.ufo/glyphs/U_ring.glif new file mode 100644 index 00000000..33f99a37 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/U_ring.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+ring.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/U_short-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/U_short-cy.glif new file mode 100644 index 00000000..84227edd --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/U_short-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ucyr+breve.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/U_short-cy.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/U_short-cy.ss01.glif new file mode 100644 index 00000000..308c4396 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/U_short-cy.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ucyr.ss01+breve.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/U_straightcyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/U_straightcyr.glif new file mode 100644 index 00000000..455dd2bb --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/U_straightcyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsRight + Y + com.fontlab.recipe + Y + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/U_straightstrokecyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/U_straightstrokecyr.glif new file mode 100644 index 00000000..08f5a56a --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/U_straightstrokecyr.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/U_tilde.glif b/sources/FixelText-SemiBold.ufo/glyphs/U_tilde.glif new file mode 100644 index 00000000..0e73a118 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/U_tilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+tilde.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/V_.glif b/sources/FixelText-SemiBold.ufo/glyphs/V_.glif new file mode 100644 index 00000000..e282e402 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/V_.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/V_.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/V_.ss01.glif new file mode 100644 index 00000000..31a3f162 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/V_.ss01.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/V_e-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/V_e-cy.glif new file mode 100644 index 00000000..7640911e --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/V_e-cy.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + B + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/W_.glif b/sources/FixelText-SemiBold.ufo/glyphs/W_.glif new file mode 100644 index 00000000..ff0fef1c --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/W_.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/W_.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/W_.ss01.glif new file mode 100644 index 00000000..51a634b0 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/W_.ss01.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |A + com.fontlab.metricsRight + |A + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/W_acute.glif b/sources/FixelText-SemiBold.ufo/glyphs/W_acute.glif new file mode 100644 index 00000000..193863b1 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/W_acute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W+acute.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/W_acute.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/W_acute.ss01.glif new file mode 100644 index 00000000..ab1bc646 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/W_acute.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W.ss01+acute.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/W_circumflex.glif b/sources/FixelText-SemiBold.ufo/glyphs/W_circumflex.glif new file mode 100644 index 00000000..06efd12b --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/W_circumflex.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W+circumflex.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/W_circumflex.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/W_circumflex.ss01.glif new file mode 100644 index 00000000..0667a082 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/W_circumflex.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W.ss01+circumflex.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/W_dieresis.glif b/sources/FixelText-SemiBold.ufo/glyphs/W_dieresis.glif new file mode 100644 index 00000000..360cf514 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/W_dieresis.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + W+dieresis.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/W_dieresis.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/W_dieresis.ss01.glif new file mode 100644 index 00000000..30513371 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/W_dieresis.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W.ss01+dieresis.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/W_ecyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/W_ecyr.glif new file mode 100644 index 00000000..ad569f59 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/W_ecyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/W_grave.glif b/sources/FixelText-SemiBold.ufo/glyphs/W_grave.glif new file mode 100644 index 00000000..a153017b --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/W_grave.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W+grave.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/W_grave.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/W_grave.ss01.glif new file mode 100644 index 00000000..da1154fe --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/W_grave.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W.ss01+grave.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/X_.glif b/sources/FixelText-SemiBold.ufo/glyphs/X_.glif new file mode 100644 index 00000000..80e0e059 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/X_.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/X_.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/X_.ss01.glif new file mode 100644 index 00000000..533d5dd9 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/X_.ss01.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/X_atailcyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/X_atailcyr.glif new file mode 100644 index 00000000..a473a368 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/X_atailcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + X + com.fontlab.metricsRight + Katailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/Y_.glif b/sources/FixelText-SemiBold.ufo/glyphs/Y_.glif new file mode 100644 index 00000000..c9ce159f --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/Y_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/Y_.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/Y_.ss01.glif new file mode 100644 index 00000000..b03f565e --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/Y_.ss01.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/Y_acute.glif b/sources/FixelText-SemiBold.ufo/glyphs/Y_acute.glif new file mode 100644 index 00000000..acb17458 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/Y_acute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y+acute.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/Y_acute.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/Y_acute.ss01.glif new file mode 100644 index 00000000..9e1a6293 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/Y_acute.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y.ss01+acute.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/Y_aecyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/Y_aecyr.glif new file mode 100644 index 00000000..ba8585f6 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/Y_aecyr.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Я + com.fontlab.metricsRight + E + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/Y_atI_otified-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/Y_atI_otified-cy.glif new file mode 100644 index 00000000..1974ba55 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/Y_atI_otified-cy.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + com.fontlab.metricsRight + Yatcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/Y_atcyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/Y_atcyr.glif new file mode 100644 index 00000000..29bba708 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/Y_atcyr.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Т + com.fontlab.metricsRight + Ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/Y_circumflex.glif b/sources/FixelText-SemiBold.ufo/glyphs/Y_circumflex.glif new file mode 100644 index 00000000..2204111e --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/Y_circumflex.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y+circumflex.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/Y_circumflex.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/Y_circumflex.ss01.glif new file mode 100644 index 00000000..e740006c --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/Y_circumflex.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y.ss01+circumflex.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/Y_dieresis.glif b/sources/FixelText-SemiBold.ufo/glyphs/Y_dieresis.glif new file mode 100644 index 00000000..fcae13ed --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/Y_dieresis.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y+dieresis.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/Y_dieresis.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/Y_dieresis.ss01.glif new file mode 100644 index 00000000..79f958c9 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/Y_dieresis.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y.ss01+dieresis.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/Y_erN_eutral-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/Y_erN_eutral-cy.glif new file mode 100644 index 00000000..10bb2e68 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/Y_erN_eutral-cy.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Hardsign-cy + com.fontlab.metricsRight + Ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/Y_eru-cy.accented.glif b/sources/FixelText-SemiBold.ufo/glyphs/Y_eru-cy.accented.glif new file mode 100644 index 00000000..55827c1b --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/Y_eru-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ы+acute.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/Y_eru-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/Y_eru-cy.glif new file mode 100644 index 00000000..6b779d51 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/Y_eru-cy.glif @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/Y_eru-cymacron.glif b/sources/FixelText-SemiBold.ufo/glyphs/Y_eru-cymacron.glif new file mode 100644 index 00000000..5fb3918f --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/Y_eru-cymacron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ы+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/Y_eruB_ackY_er-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/Y_eruB_ackY_er-cy.glif new file mode 100644 index 00000000..441a3f79 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/Y_eruB_ackY_er-cy.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Hardsign + com.fontlab.metricsRight + I + com.fontlab.recipe + Hardsign-cy_I + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/Y_i-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/Y_i-cy.glif new file mode 100644 index 00000000..eb5685dd --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/Y_i-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Idieresis + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/Y_longdieresiscyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/Y_longdieresiscyr.glif new file mode 100644 index 00000000..9bd09ed1 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/Y_longdieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Yeru-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/Y_n-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/Y_n-cy.glif new file mode 100644 index 00000000..10f8ea42 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/Y_n-cy.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |Izhitsa + com.fontlab.metricsRight + |Izhitsa + com.fontlab.recipe + Izhitsa + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/Y_uR_eversed-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/Y_uR_eversed-cy.glif new file mode 100644 index 00000000..f07237d1 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/Y_uR_eversed-cy.glif @@ -0,0 +1,20 @@ + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + H + com.fontlab.recipe + Ю + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/Y_usB_lended-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/Y_usB_lended-cy.glif new file mode 100644 index 00000000..4471ef6c --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/Y_usB_lended-cy.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Yusbigcyr + com.fontlab.metricsRight + Yusbigcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/Y_usC_losedlittle-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/Y_usC_losedlittle-cy.glif new file mode 100644 index 00000000..5a1b8745 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/Y_usC_losedlittle-cy.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + A + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/Y_usbigcyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/Y_usbigcyr.glif new file mode 100644 index 00000000..bb50f6b9 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/Y_usbigcyr.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ж + com.fontlab.metricsRight + Ж + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/Y_usbigiotifiedcyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/Y_usbigiotifiedcyr.glif new file mode 100644 index 00000000..7685141a --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/Y_usbigiotifiedcyr.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + Ж + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/Y_usiotifiedC_losedL_ittle-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/Y_usiotifiedC_losedL_ittle-cy.glif new file mode 100644 index 00000000..3dd437a1 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/Y_usiotifiedC_losedL_ittle-cy.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + A + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/Y_uslittlecyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/Y_uslittlecyr.glif new file mode 100644 index 00000000..c5cbb76a --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/Y_uslittlecyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + А-5 + com.fontlab.metricsRight + А-5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/Y_uslittleiotifiedcyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/Y_uslittleiotifiedcyr.glif new file mode 100644 index 00000000..80f8d746 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/Y_uslittleiotifiedcyr.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + А-5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/Z_.glif b/sources/FixelText-SemiBold.ufo/glyphs/Z_.glif new file mode 100644 index 00000000..4b7a2472 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/Z_.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/Z_.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/Z_.ss01.glif new file mode 100644 index 00000000..829cb294 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/Z_.ss01.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/Z_acute.glif b/sources/FixelText-SemiBold.ufo/glyphs/Z_acute.glif new file mode 100644 index 00000000..810b0bcc --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/Z_acute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Z+acute.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/Z_acute.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/Z_acute.ss01.glif new file mode 100644 index 00000000..efb4cc9b --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/Z_acute.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Z.ss01+acute.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/Z_caron.glif b/sources/FixelText-SemiBold.ufo/glyphs/Z_caron.glif new file mode 100644 index 00000000..7a25d01b --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/Z_caron.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Z+caron.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/Z_caron.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/Z_caron.ss01.glif new file mode 100644 index 00000000..467efb19 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/Z_caron.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Z.ss01+caron.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/Z_dotaccent.glif b/sources/FixelText-SemiBold.ufo/glyphs/Z_dotaccent.glif new file mode 100644 index 00000000..01976f62 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/Z_dotaccent.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Z+dotaccent.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/Z_dotaccent.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/Z_dotaccent.ss01.glif new file mode 100644 index 00000000..740dbce9 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/Z_dotaccent.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Z.ss01+dotaccent.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/Z_e-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/Z_e-cy.glif new file mode 100644 index 00000000..699f06dd --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/Z_e-cy.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |C + com.fontlab.metricsRight + B + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/Z_edieresiscyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/Z_edieresiscyr.glif new file mode 100644 index 00000000..1e34a172 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/Z_edieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ze-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/Z_emlya-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/Z_emlya-cy.glif new file mode 100644 index 00000000..4c37923c --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/Z_emlya-cy.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Z-10 + com.fontlab.metricsRight + Z + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/Z_etailcyr.B_S_H_.glif b/sources/FixelText-SemiBold.ufo/glyphs/Z_etailcyr.B_S_H_.glif new file mode 100644 index 00000000..8c47e684 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/Z_etailcyr.B_S_H_.glif @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + З + com.fontlab.metricsRight + З + com.fontlab.recipe + Zetailcyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/Z_etailcyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/Z_etailcyr.glif new file mode 100644 index 00000000..38ba9277 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/Z_etailcyr.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + З + com.fontlab.metricsRight + З + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/Z_he-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/Z_he-cy.glif new file mode 100644 index 00000000..c724b3c3 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/Z_he-cy.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |K + com.fontlab.metricsRight + K + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/Z_he-cy.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/Z_he-cy.ss01.glif new file mode 100644 index 00000000..3ac93eb3 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/Z_he-cy.ss01.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |K + com.fontlab.metricsRight + K + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/Z_hebrevecyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/Z_hebrevecyr.glif new file mode 100644 index 00000000..47d275c8 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/Z_hebrevecyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Zhe-cy+breve.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/Z_hedieresiscyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/Z_hedieresiscyr.glif new file mode 100644 index 00000000..ffcbc8d6 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/Z_hedieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Zhe-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/Z_hetailcyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/Z_hetailcyr.glif new file mode 100644 index 00000000..eb3c3c60 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/Z_hetailcyr.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ж + com.fontlab.metricsRight + Katailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/Z_hwe-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/Z_hwe-cy.glif new file mode 100644 index 00000000..2b1af379 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/Z_hwe-cy.glif @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + З + com.fontlab.metricsRight + Ж + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/Z_jekomicyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/Z_jekomicyr.glif new file mode 100644 index 00000000..0679406d --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/Z_jekomicyr.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Dzjekomicyr + com.fontlab.metricsRight + Njekomicyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/_notdef.glif b/sources/FixelText-SemiBold.ufo/glyphs/_notdef.glif new file mode 100644 index 00000000..7261060b --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/_notdef.glif @@ -0,0 +1,178 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + =55 + com.schriftgestaltung.Glyphs.rightMetricsKey + =55 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/_perc-circule.glif b/sources/FixelText-SemiBold.ufo/glyphs/_perc-circule.glif new file mode 100644 index 00000000..2a3973ad --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/_perc-circule.glif @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.schriftgestaltung.Glyphs.Export + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/a-cy.accented.glif b/sources/FixelText-SemiBold.ufo/glyphs/a-cy.accented.glif new file mode 100644 index 00000000..185195e9 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/a-cy.accented.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+acute + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/a-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/a-cy.glif new file mode 100644 index 00000000..3ea102aa --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/a-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/a-cy.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/a-cy.ss01.glif new file mode 100644 index 00000000..7d9dcd6e --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/a-cy.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/a.glif b/sources/FixelText-SemiBold.ufo/glyphs/a.glif new file mode 100644 index 00000000..f7b8db59 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/a.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + n-10 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/a.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/a.ss01.glif new file mode 100644 index 00000000..920cdfe0 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/a.ss01.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/aacute.glif b/sources/FixelText-SemiBold.ufo/glyphs/aacute.glif new file mode 100644 index 00000000..43047d29 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/aacute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+acute + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/aacute.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/aacute.ss01.glif new file mode 100644 index 00000000..1f5fe9d1 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/aacute.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+acute + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/abreve.glif b/sources/FixelText-SemiBold.ufo/glyphs/abreve.glif new file mode 100644 index 00000000..fbaab49f --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/abreve.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+breve + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/abreve.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/abreve.ss01.glif new file mode 100644 index 00000000..ccff038e --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/abreve.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+breve + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/abrevecyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/abrevecyr.glif new file mode 100644 index 00000000..6a54f4eb --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/abrevecyr.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+breve + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/acaron.glif b/sources/FixelText-SemiBold.ufo/glyphs/acaron.glif new file mode 100644 index 00000000..c50a4737 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/acaron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+caron + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/acircumflex.glif b/sources/FixelText-SemiBold.ufo/glyphs/acircumflex.glif new file mode 100644 index 00000000..4db66e4b --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/acircumflex.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+circumflex + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/acircumflex.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/acircumflex.ss01.glif new file mode 100644 index 00000000..457ab233 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/acircumflex.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+circumflex + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/acute.case.glif b/sources/FixelText-SemiBold.ufo/glyphs/acute.case.glif new file mode 100644 index 00000000..2a8820d2 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/acute.case.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/acute.glif b/sources/FixelText-SemiBold.ufo/glyphs/acute.glif new file mode 100644 index 00000000..5d5f2447 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/acute.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/adieresis.glif b/sources/FixelText-SemiBold.ufo/glyphs/adieresis.glif new file mode 100644 index 00000000..06c33a4d --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/adieresis.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+dieresis + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/adieresis.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/adieresis.ss01.glif new file mode 100644 index 00000000..0d6d766b --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/adieresis.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+dieresis + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/adieresiscyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/adieresiscyr.glif new file mode 100644 index 00000000..b83d7079 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/adieresiscyr.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/ae.glif b/sources/FixelText-SemiBold.ufo/glyphs/ae.glif new file mode 100644 index 00000000..a14a3eed --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/ae.glif @@ -0,0 +1,101 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + a + com.fontlab.metricsRight + e + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/ae.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/ae.ss01.glif new file mode 100644 index 00000000..40fc349e --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/ae.ss01.glif @@ -0,0 +1,96 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + a + com.fontlab.metricsRight + e.ss01 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/aeacute.glif b/sources/FixelText-SemiBold.ufo/glyphs/aeacute.glif new file mode 100644 index 00000000..626685cd --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/aeacute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ae+acute + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/agrave.glif b/sources/FixelText-SemiBold.ufo/glyphs/agrave.glif new file mode 100644 index 00000000..10541846 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/agrave.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+grave + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/agrave.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/agrave.ss01.glif new file mode 100644 index 00000000..52c03f7d --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/agrave.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+grave + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/aiecyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/aiecyr.glif new file mode 100644 index 00000000..10bbb4d2 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/aiecyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ae + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/amacron.glif b/sources/FixelText-SemiBold.ufo/glyphs/amacron.glif new file mode 100644 index 00000000..fa1d2410 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/amacron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+macron + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/amacron.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/amacron.ss01.glif new file mode 100644 index 00000000..8ffe60fa --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/amacron.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+macron + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/ampersand.glif b/sources/FixelText-SemiBold.ufo/glyphs/ampersand.glif new file mode 100644 index 00000000..b798cda9 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/ampersand.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/aogonek.glif b/sources/FixelText-SemiBold.ufo/glyphs/aogonek.glif new file mode 100644 index 00000000..c394d253 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/aogonek.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+ogonek + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/aogonek.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/aogonek.ss01.glif new file mode 100644 index 00000000..cb5e0bf8 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/aogonek.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+ogonek + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/apostrophemod.glif b/sources/FixelText-SemiBold.ufo/glyphs/apostrophemod.glif new file mode 100644 index 00000000..856ed7e4 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/apostrophemod.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + apostrophe + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/approxequal.glif b/sources/FixelText-SemiBold.ufo/glyphs/approxequal.glif new file mode 100644 index 00000000..427e7196 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/approxequal.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/aring.glif b/sources/FixelText-SemiBold.ufo/glyphs/aring.glif new file mode 100644 index 00000000..eb958841 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/aring.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+ring + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/aring.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/aring.ss01.glif new file mode 100644 index 00000000..16a70e13 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/aring.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+ring + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/arrowdown.case.glif b/sources/FixelText-SemiBold.ufo/glyphs/arrowdown.case.glif new file mode 100644 index 00000000..656931a8 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/arrowdown.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + arrowup + com.fontlab.metricsRight + arrowup + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/arrowdown.glif b/sources/FixelText-SemiBold.ufo/glyphs/arrowdown.glif new file mode 100644 index 00000000..5c19f285 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/arrowdown.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + arrowup + com.fontlab.metricsRight + arrowup + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/arrowdown.ss01.case.glif b/sources/FixelText-SemiBold.ufo/glyphs/arrowdown.ss01.case.glif new file mode 100644 index 00000000..5c4634dc --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/arrowdown.ss01.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + arrowup + com.fontlab.metricsRight + arrowup + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/arrowdown.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/arrowdown.ss01.glif new file mode 100644 index 00000000..850c2471 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/arrowdown.ss01.glif @@ -0,0 +1,15 @@ + + + + + + + + + com.fontlab.metricsLeft + arrowup + com.fontlab.metricsRight + arrowup + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/arrowleft.case.glif b/sources/FixelText-SemiBold.ufo/glyphs/arrowleft.case.glif new file mode 100644 index 00000000..f0ce4b79 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/arrowleft.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + arrowleft + com.fontlab.metricsRight + arrowleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/arrowleft.glif b/sources/FixelText-SemiBold.ufo/glyphs/arrowleft.glif new file mode 100644 index 00000000..7ea0d5e1 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/arrowleft.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/arrowleft.ss01.case.glif b/sources/FixelText-SemiBold.ufo/glyphs/arrowleft.ss01.case.glif new file mode 100644 index 00000000..de23554d --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/arrowleft.ss01.case.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + arrowleft + com.fontlab.metricsRight + arrowleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/arrowleft.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/arrowleft.ss01.glif new file mode 100644 index 00000000..266ccd2f --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/arrowleft.ss01.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + arrowleft + com.fontlab.metricsRight + arrowleft + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/arrowright.case.glif b/sources/FixelText-SemiBold.ufo/glyphs/arrowright.case.glif new file mode 100644 index 00000000..d046ed61 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/arrowright.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |arrowleft + com.fontlab.metricsRight + |arrowleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/arrowright.glif b/sources/FixelText-SemiBold.ufo/glyphs/arrowright.glif new file mode 100644 index 00000000..0763e0ed --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/arrowright.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + |arrowleft + com.fontlab.metricsRight + |arrowleft + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/arrowright.ss01.case.glif b/sources/FixelText-SemiBold.ufo/glyphs/arrowright.ss01.case.glif new file mode 100644 index 00000000..60ae31f4 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/arrowright.ss01.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |arrowleft + com.fontlab.metricsRight + |arrowleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/arrowright.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/arrowright.ss01.glif new file mode 100644 index 00000000..7ebc45af --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/arrowright.ss01.glif @@ -0,0 +1,15 @@ + + + + + + + + + com.fontlab.metricsLeft + |arrowleft + com.fontlab.metricsRight + |arrowleft + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/arrowup.case.glif b/sources/FixelText-SemiBold.ufo/glyphs/arrowup.case.glif new file mode 100644 index 00000000..8226e80e --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/arrowup.case.glif @@ -0,0 +1,15 @@ + + + + + + + + + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/arrowup.glif b/sources/FixelText-SemiBold.ufo/glyphs/arrowup.glif new file mode 100644 index 00000000..0c8742b1 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/arrowup.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + l() + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/arrowup.ss01.case.glif b/sources/FixelText-SemiBold.ufo/glyphs/arrowup.ss01.case.glif new file mode 100644 index 00000000..3a780491 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/arrowup.ss01.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + arrowup + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/arrowup.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/arrowup.ss01.glif new file mode 100644 index 00000000..e4b3a226 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/arrowup.ss01.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + arrowup + com.fontlab.metricsRight + l() + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/asciicircum.glif b/sources/FixelText-SemiBold.ufo/glyphs/asciicircum.glif new file mode 100644 index 00000000..3053b3d9 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/asciicircum.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/asciitilde.glif b/sources/FixelText-SemiBold.ufo/glyphs/asciitilde.glif new file mode 100644 index 00000000..41474bbc --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/asciitilde.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/asterisk.glif b/sources/FixelText-SemiBold.ufo/glyphs/asterisk.glif new file mode 100644 index 00000000..390695f2 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/asterisk.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/at.case.glif b/sources/FixelText-SemiBold.ufo/glyphs/at.case.glif new file mode 100644 index 00000000..30168e0d --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/at.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/at.glif b/sources/FixelText-SemiBold.ufo/glyphs/at.glif new file mode 100644 index 00000000..70790371 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/at.glif @@ -0,0 +1,92 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/atilde.glif b/sources/FixelText-SemiBold.ufo/glyphs/atilde.glif new file mode 100644 index 00000000..45f2fce2 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/atilde.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+tilde + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/atilde.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/atilde.ss01.glif new file mode 100644 index 00000000..40afd771 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/atilde.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+tilde + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/b.glif b/sources/FixelText-SemiBold.ufo/glyphs/b.glif new file mode 100644 index 00000000..e5572ef5 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/b.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/b.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/b.ss01.glif new file mode 100644 index 00000000..f365c6a3 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/b.ss01.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/backslash.case.glif b/sources/FixelText-SemiBold.ufo/glyphs/backslash.case.glif new file mode 100644 index 00000000..ef90bb2d --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/backslash.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + backslash + com.fontlab.metricsRight + backslash + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/backslash.glif b/sources/FixelText-SemiBold.ufo/glyphs/backslash.glif new file mode 100644 index 00000000..6f65ed3b --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/backslash.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/bar.case.glif b/sources/FixelText-SemiBold.ufo/glyphs/bar.case.glif new file mode 100644 index 00000000..deee6b3d --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/bar.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + H-10 + com.fontlab.metricsRight + H-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/bar.glif b/sources/FixelText-SemiBold.ufo/glyphs/bar.glif new file mode 100644 index 00000000..164f5055 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/bar.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H-10 + com.fontlab.metricsRight + H-10 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/be-cy.S_R_B_.glif b/sources/FixelText-SemiBold.ufo/glyphs/be-cy.S_R_B_.glif new file mode 100644 index 00000000..f977155e --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/be-cy.S_R_B_.glif @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/be-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/be-cy.glif new file mode 100644 index 00000000..7bbd9b90 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/be-cy.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/bishopblack.glif b/sources/FixelText-SemiBold.ufo/glyphs/bishopblack.glif new file mode 100644 index 00000000..234ccb95 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/bishopblack.glif @@ -0,0 +1,241 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =10 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/bishopwhite.glif b/sources/FixelText-SemiBold.ufo/glyphs/bishopwhite.glif new file mode 100644 index 00000000..691b9361 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/bishopwhite.glif @@ -0,0 +1,331 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/braceleft.case.glif b/sources/FixelText-SemiBold.ufo/glyphs/braceleft.case.glif new file mode 100644 index 00000000..19be68e4 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/braceleft.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |braceright.case + com.fontlab.metricsRight + |braceright.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/braceleft.glif b/sources/FixelText-SemiBold.ufo/glyphs/braceleft.glif new file mode 100644 index 00000000..4a2331c4 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/braceleft.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/braceright.case.glif b/sources/FixelText-SemiBold.ufo/glyphs/braceright.case.glif new file mode 100644 index 00000000..e58cfdbf --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/braceright.case.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/braceright.glif b/sources/FixelText-SemiBold.ufo/glyphs/braceright.glif new file mode 100644 index 00000000..447e1209 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/braceright.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/bracketangleleft.case.glif b/sources/FixelText-SemiBold.ufo/glyphs/bracketangleleft.case.glif new file mode 100644 index 00000000..654c1fe3 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/bracketangleleft.case.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + parenleft.case + com.fontlab.metricsRight + parenleft.case + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/bracketangleleft.glif b/sources/FixelText-SemiBold.ufo/glyphs/bracketangleleft.glif new file mode 100644 index 00000000..c084e838 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/bracketangleleft.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + parenleft + com.fontlab.metricsRight + parenleft + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/bracketangleright.case.glif b/sources/FixelText-SemiBold.ufo/glyphs/bracketangleright.case.glif new file mode 100644 index 00000000..e918d319 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/bracketangleright.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |bracketangleleft.case + com.fontlab.metricsRight + |bracketangleleft.case + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/bracketangleright.glif b/sources/FixelText-SemiBold.ufo/glyphs/bracketangleright.glif new file mode 100644 index 00000000..c5b03783 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/bracketangleright.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.metricsLeft + |bracketangleleft + com.fontlab.metricsRight + |bracketangleleft + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/bracketleft.case.glif b/sources/FixelText-SemiBold.ufo/glyphs/bracketleft.case.glif new file mode 100644 index 00000000..da5381f0 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/bracketleft.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |bracketright.case + com.fontlab.metricsRight + |bracketright.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/bracketleft.glif b/sources/FixelText-SemiBold.ufo/glyphs/bracketleft.glif new file mode 100644 index 00000000..b97fc493 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/bracketleft.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/bracketright.case.glif b/sources/FixelText-SemiBold.ufo/glyphs/bracketright.case.glif new file mode 100644 index 00000000..b4a603fd --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/bracketright.case.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |bracketleft + com.fontlab.metricsRight + |bracketleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/bracketright.glif b/sources/FixelText-SemiBold.ufo/glyphs/bracketright.glif new file mode 100644 index 00000000..a14a5bfb --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/bracketright.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |bracketleft + com.fontlab.metricsRight + |bracketleft + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/breve.case.glif b/sources/FixelText-SemiBold.ufo/glyphs/breve.case.glif new file mode 100644 index 00000000..8c0c459e --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/breve.case.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/breve.glif b/sources/FixelText-SemiBold.ufo/glyphs/breve.glif new file mode 100644 index 00000000..9cc2730f --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/breve.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/brokenbar.case.glif b/sources/FixelText-SemiBold.ufo/glyphs/brokenbar.case.glif new file mode 100644 index 00000000..5fc0233b --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/brokenbar.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + bar + com.fontlab.metricsRight + bar + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/brokenbar.glif b/sources/FixelText-SemiBold.ufo/glyphs/brokenbar.glif new file mode 100644 index 00000000..ee628ca7 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/brokenbar.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + bar + com.fontlab.metricsRight + bar + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/bullet.case.glif b/sources/FixelText-SemiBold.ufo/glyphs/bullet.case.glif new file mode 100644 index 00000000..154632ef --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/bullet.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + period + com.fontlab.metricsRight + period + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/bullet.glif b/sources/FixelText-SemiBold.ufo/glyphs/bullet.glif new file mode 100644 index 00000000..cfaabb46 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/bullet.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + period + com.fontlab.metricsRight + period + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/c.glif b/sources/FixelText-SemiBold.ufo/glyphs/c.glif new file mode 100644 index 00000000..57dab593 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/c.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/cacute.glif b/sources/FixelText-SemiBold.ufo/glyphs/cacute.glif new file mode 100644 index 00000000..71ee4839 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/cacute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+acute + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/caron.case.glif b/sources/FixelText-SemiBold.ufo/glyphs/caron.case.glif new file mode 100644 index 00000000..f7dbfdf3 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/caron.case.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/caron.glif b/sources/FixelText-SemiBold.ufo/glyphs/caron.glif new file mode 100644 index 00000000..bb3626a2 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/caron.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/caron.salt.glif b/sources/FixelText-SemiBold.ufo/glyphs/caron.salt.glif new file mode 100644 index 00000000..4d742528 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/caron.salt.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/ccaron.glif b/sources/FixelText-SemiBold.ufo/glyphs/ccaron.glif new file mode 100644 index 00000000..d400ac57 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/ccaron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+caron + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/ccedilla.glif b/sources/FixelText-SemiBold.ufo/glyphs/ccedilla.glif new file mode 100644 index 00000000..fa98d3f9 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/ccedilla.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+cedilla + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/cche-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/cche-cy.glif new file mode 100644 index 00000000..d484dce0 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/cche-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ч + com.fontlab.metricsRight + ч + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/ccircumflex.glif b/sources/FixelText-SemiBold.ufo/glyphs/ccircumflex.glif new file mode 100644 index 00000000..3b8491fb --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/ccircumflex.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+circumflex + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/cdotaccent.glif b/sources/FixelText-SemiBold.ufo/glyphs/cdotaccent.glif new file mode 100644 index 00000000..c6aa7535 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/cdotaccent.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+dotaccent + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/cedilla.glif b/sources/FixelText-SemiBold.ufo/glyphs/cedilla.glif new file mode 100644 index 00000000..c11b0cac --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/cedilla.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/cent.glif b/sources/FixelText-SemiBold.ufo/glyphs/cent.glif new file mode 100644 index 00000000..b7c43adc --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/cent.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + c + com.fontlab.metricsRight + c + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/che-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/che-cy.glif new file mode 100644 index 00000000..3d66745a --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/che-cy.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + u-10 + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/cheabkhcyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/cheabkhcyr.glif new file mode 100644 index 00000000..0dab0293 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/cheabkhcyr.glif @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + e + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/cheabkhtailcyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/cheabkhtailcyr.glif new file mode 100644 index 00000000..cbb88170 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/cheabkhtailcyr.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + cheabkhcyr + com.fontlab.metricsRight + cheabkhcyr + com.fontlab.recipe + cheabkhcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/chedieresiscyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/chedieresiscyr.glif new file mode 100644 index 00000000..541661b0 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/chedieresiscyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + che-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/chekhakascyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/chekhakascyr.glif new file mode 100644 index 00000000..110a84f4 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/chekhakascyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ч + com.fontlab.metricsRight + н + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/chetailcyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/chetailcyr.glif new file mode 100644 index 00000000..85065586 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/chetailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ч + com.fontlab.metricsRight + entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/chevertcyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/chevertcyr.glif new file mode 100644 index 00000000..74ab4e58 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/chevertcyr.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ч + com.fontlab.metricsRight + н + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/circumflex.case.glif b/sources/FixelText-SemiBold.ufo/glyphs/circumflex.case.glif new file mode 100644 index 00000000..8f260255 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/circumflex.case.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/circumflex.glif b/sources/FixelText-SemiBold.ufo/glyphs/circumflex.glif new file mode 100644 index 00000000..9cf4f088 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/circumflex.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/clubwhite.glif b/sources/FixelText-SemiBold.ufo/glyphs/clubwhite.glif new file mode 100644 index 00000000..886e2580 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/clubwhite.glif @@ -0,0 +1,155 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/colon.case.glif b/sources/FixelText-SemiBold.ufo/glyphs/colon.case.glif new file mode 100644 index 00000000..c9d8c509 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/colon.case.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/colon.glif b/sources/FixelText-SemiBold.ufo/glyphs/colon.glif new file mode 100644 index 00000000..e40b8a43 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/colon.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/colontriangularmod.glif b/sources/FixelText-SemiBold.ufo/glyphs/colontriangularmod.glif new file mode 100644 index 00000000..273fad6e --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/colontriangularmod.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + colon + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/comma.glif b/sources/FixelText-SemiBold.ufo/glyphs/comma.glif new file mode 100644 index 00000000..8efd9014 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/comma.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/commaaccentcomb.glif b/sources/FixelText-SemiBold.ufo/glyphs/commaaccentcomb.glif new file mode 100644 index 00000000..5f13d320 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/commaaccentcomb.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/commaaccentcomb.salt.glif b/sources/FixelText-SemiBold.ufo/glyphs/commaaccentcomb.salt.glif new file mode 100644 index 00000000..972bc392 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/commaaccentcomb.salt.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/contents.plist b/sources/FixelText-SemiBold.ufo/glyphs/contents.plist new file mode 100644 index 00000000..2830b2de --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/contents.plist @@ -0,0 +1,2352 @@ + + + + + .notdef + _notdef.glif + A + A_.glif + A-cy + A_-cy.glif + A-cy.accented + A_-cy.accented.glif + A-cy.ss01 + A_-cy.ss01.glif + A.ss01 + A_.ss01.glif + AE + A_E_.glif + AE.ss01 + A_E_.ss01.glif + AEacute + A_E_acute.glif + Aacute + A_acute.glif + Aacute.ss01 + A_acute.ss01.glif + Abreve + A_breve.glif + Abreve.ss01 + A_breve.ss01.glif + Abrevecyr + A_brevecyr.glif + Acaron + A_caron.glif + Acircumflex + A_circumflex.glif + Acircumflex.ss01 + A_circumflex.ss01.glif + Adieresis + A_dieresis.glif + Adieresis.ss01 + A_dieresis.ss01.glif + Adieresiscyr + A_dieresiscyr.glif + Agrave + A_grave.glif + Agrave.ss01 + A_grave.ss01.glif + Aiecyr + A_iecyr.glif + Amacron + A_macron.glif + Amacron.ss01 + A_macron.ss01.glif + Aogonek + A_ogonek.glif + Aogonek.ss01 + A_ogonek.ss01.glif + Aring + A_ring.glif + Aring.ss01 + A_ring.ss01.glif + Atilde + A_tilde.glif + Atilde.ss01 + A_tilde.ss01.glif + B + B_.glif + Be-cy + B_e-cy.glif + C + C_.glif + CR + C_R_.glif + Cacute + C_acute.glif + Ccaron + C_caron.glif + Ccedilla + C_cedilla.glif + Cche-cy + C_che-cy.glif + Ccircumflex + C_circumflex.glif + Cdotaccent + C_dotaccent.glif + Che-cy + C_he-cy.glif + Cheabkhcyr + C_heabkhcyr.glif + Cheabkhtailcyr + C_heabkhtailcyr.glif + Chedieresiscyr + C_hedieresiscyr.glif + Chekhakascyr + C_hekhakascyr.glif + Chetailcyr + C_hetailcyr.glif + Chevertcyr + C_hevertcyr.glif + CrossedO-cy + C_rossedO_-cy.glif + D + D_.glif + Dcaron + D_caron.glif + Dchecyr + D_checyr.glif + Dcroat + D_croat.glif + De-cy + D_e-cy.glif + De-cy.BGR + D_e-cy.B_G_R_.glif + DeSoft-cy + D_eS_oft-cy.glif + Dekomicyr + D_ekomicyr.glif + Delta + D_elta.glif + Djecyr + D_jecyr.glif + Djekomicyr + D_jekomicyr.glif + Djerv-cy + D_jerv-cy.glif + DoubleO-cy + D_oubleO_-cy.glif + Dwe-cy + D_we-cy.glif + Dze-cy + D_ze-cy.glif + DzeReversed-cy + D_zeR_eversed-cy.glif + Dzeabkhcyr + D_zeabkhcyr.glif + Dzelo-cy + D_zelo-cy.glif + Dzhecyr + D_zhecyr.glif + Dzjekomicyr + D_zjekomicyr.glif + Dzwe-cy + D_zwe-cy.glif + Dzze-cy + D_zze-cy.glif + Dzzhecyr + D_zzhecyr.glif + E + E_.glif + E-cy + E_-cy.glif + E-cy.accented + E_-cy.accented.glif + Eacute + E_acute.glif + Ebreve + E_breve.glif + Ecaron + E_caron.glif + Ecircumflex + E_circumflex.glif + Edieresis + E_dieresis.glif + Edotaccent + E_dotaccent.glif + Ef-cy + E_f-cy.glif + Ef-cy.BGR + E_f-cy.B_G_R_.glif + Egrave + E_grave.glif + Eiotifiedcyr + E_iotifiedcyr.glif + El-cy + E_l-cy.glif + El-cy.BGR + E_l-cy.B_G_R_.glif + ElSoft-cy + E_lS_oft-cy.glif + Elhookcyr + E_lhookcyr.glif + Elmiddlehookcyr + E_lmiddlehookcyr.glif + Elsharptailcyr + E_lsharptailcyr.glif + Elsmallcyr + E_lsmallcyr.glif + Eltailcyr + E_ltailcyr.glif + Em-cy + E_m-cy.glif + Em-cy.ss01 + E_m-cy.ss01.glif + EmSoft-cy + E_mS_oft-cy.glif + Emacron + E_macron.glif + Emsharptailcyr + E_msharptailcyr.glif + En-cy + E_n-cy.glif + Eng + E_ng.glif + Eng.ss01 + E_ng.ss01.glif + Engecyr + E_ngecyr.glif + Enhookcyr + E_nhookcyr.glif + Enhookleftcyr + E_nhookleftcyr.glif + Enmiddlehookcyr + E_nmiddlehookcyr.glif + Ensharptailcyr + E_nsharptailcyr.glif + Entailcyr + E_ntailcyr.glif + Eogonek + E_ogonek.glif + Er-cy + E_r-cy.glif + Ereversed-cy + E_reversed-cy.glif + Ereversed-cy.accented + E_reversed-cy.accented.glif + Ereverseddieresiscyr + E_reverseddieresiscyr.glif + Ertickcyr + E_rtickcyr.glif + Es-cy + E_s-cy.glif + Estailcyr + E_stailcyr.glif + Estailcyr.BSH + E_stailcyr.B_S_H_.glif + Estailcyr.CHU + E_stailcyr.C_H_U_.glif + Eth + E_th.glif + F + F_.glif + Fitacyr + F_itacyr.glif + G + G_.glif + G.ss01 + G_.ss01.glif + Gacute + G_acute.glif + Gacute.ss01 + G_acute.ss01.glif + Gbreve + G_breve.glif + Gbreve.ss01 + G_breve.ss01.glif + Gcircumflex + G_circumflex.glif + Gcircumflex.ss01 + G_circumflex.ss01.glif + Gcommaaccent + G_commaaccent.glif + Gcommaaccent.ss01 + G_commaaccent.ss01.glif + Gdotaccent + G_dotaccent.glif + Gdotaccent.ss01 + G_dotaccent.ss01.glif + Ge-cy + G_e-cy.glif + Gehookcyr + G_ehookcyr.glif + Gehookstrokecyr + G_ehookstrokecyr.glif + Germandbls + G_ermandbls.glif + Gestrokecyr + G_estrokecyr.glif + Gestrokecyr.BSH + G_estrokecyr.B_S_H_.glif + Getailcyr + G_etailcyr.glif + Gheupturn-cy + G_heupturn-cy.glif + Gjecyr + G_jecyr.glif + H + H_.glif + Ha-cy + H_a-cy.glif + Ha-cy.ss01 + H_a-cy.ss01.glif + Haabkhcyr + H_aabkhcyr.glif + Hahookcyr + H_ahookcyr.glif + Hardsign-cy + H_ardsign-cy.glif + Hastrokecyr + H_astrokecyr.glif + Hbar + H_bar.glif + Hcircumflex + H_circumflex.glif + Hwe-cy + H_we-cy.glif + I + I_.glif + I-cy + I_-cy.glif + IJ + I_J_.glif + Ia-cy + I_a-cy.glif + Ia-cy.accented + I_a-cy.accented.glif + Ia-cy.ss01 + I_a-cy.ss01.glif + Iacute + I_acute.glif + Ibreve + I_breve.glif + Icircumflex + I_circumflex.glif + Idieresis + I_dieresis.glif + Idieresiscyr + I_dieresiscyr.glif + Idotaccent + I_dotaccent.glif + Ie-cy + I_e-cy.glif + Iebrevecyr + I_ebrevecyr.glif + Iegravecyr + I_egravecyr.glif + Igrave + I_grave.glif + Igravecyr + I_gravecyr.glif + Ii-cy + I_i-cy.glif + Ii-cy.accented + I_i-cy.accented.glif + Iishort-cy + I_ishort-cy.glif + Imacron + I_macron.glif + Imacroncyr + I_macroncyr.glif + Io-cy + I_o-cy.glif + Io-cy.accented + I_o-cy.accented.glif + Iogonek + I_ogonek.glif + Iota-cy + I_ota-cy.glif + IotifiedA-cy + I_otifiedA_-cy.glif + Ishortsharptailcyr + I_shortsharptailcyr.glif + Itilde + I_tilde.glif + Iu-cy + I_u-cy.glif + Iu-cy.accented + I_u-cy.accented.glif + Izhitsacyr + I_zhitsacyr.glif + Izhitsagravedblcyr + I_zhitsagravedblcyr.glif + J + J_.glif + J.ss01 + J_.ss01.glif + Jcircumflex + J_circumflex.glif + Jcircumflex.ss01 + J_circumflex.ss01.glif + Jecyr + J_ecyr.glif + K + K_.glif + K.ss01 + K_.ss01.glif + Ka-cy + K_a-cy.glif + Ka-cy.ss01 + K_a-cy.ss01.glif + Kaaleutcyr + K_aaleutcyr.glif + Kabashkcyr + K_abashkcyr.glif + Kahookcyr + K_ahookcyr.glif + Kastrokecyr + K_astrokecyr.glif + Katailcyr + K_atailcyr.glif + Kaverticalstrokecyr + K_averticalstrokecyr.glif + Kcommaaccent + K_commaaccent.glif + Kcommaaccent.ss01 + K_commaaccent.ss01.glif + Kjecyr + K_jecyr.glif + Koppacyr + K_oppacyr.glif + Ksicyr + K_sicyr.glif + L + L_.glif + Lacute + L_acute.glif + Lcaron + L_caron.glif + Lcommaaccent + L_commaaccent.glif + Ldot + L_dot.glif + Lhacyr + L_hacyr.glif + Ljecyr + L_jecyr.glif + Ljekomicyr + L_jekomicyr.glif + Lslash + L_slash.glif + M + M_.glif + M.ss01 + M_.ss01.glif + N + N_.glif + N.ss01 + N_.ss01.glif + NULL + N_U_L_L_.glif + Nacute + N_acute.glif + Nacute.ss01 + N_acute.ss01.glif + Ncaron + N_caron.glif + Ncaron.ss01 + N_caron.ss01.glif + Ncommaaccent + N_commaaccent.glif + Ncommaaccent.ss01 + N_commaaccent.ss01.glif + Njecyr + N_jecyr.glif + Njekomicyr + N_jekomicyr.glif + Ntilde + N_tilde.glif + Ntilde.ss01 + N_tilde.ss01.glif + O + O_.glif + O-cy + O_-cy.glif + O-cy.accented + O_-cy.accented.glif + OBinocular-cy + O_B_inocular-cy.glif + ODoubleMonocular-cy + O_D_oubleM_onocular-cy.glif + OE + O_E_.glif + OMonocular-cy + O_M_onocular-cy.glif + Oacute + O_acute.glif + Obarcyr + O_barcyr.glif + Obardieresiscyr + O_bardieresiscyr.glif + Obreve + O_breve.glif + Ocircumflex + O_circumflex.glif + Odieresis + O_dieresis.glif + Odieresiscyr + O_dieresiscyr.glif + Ograve + O_grave.glif + Ohungarumlaut + O_hungarumlaut.glif + Omacron + O_macron.glif + Omega + O_mega.glif + OmegaBroad-cy + O_megaB_road-cy.glif + Omegacyr + O_megacyr.glif + Omegaroundcyr + O_megaroundcyr.glif + Omegatitlocyr + O_megatitlocyr.glif + Oslash + O_slash.glif + Oslashacute + O_slashacute.glif + Otcyr + O_tcyr.glif + Otilde + O_tilde.glif + P + P_.glif + Palochkacyr + P_alochkacyr.glif + Pe-cy + P_e-cy.glif + Pehookcyr + P_ehookcyr.glif + Petailcyr + P_etailcyr.glif + Psicyr + P_sicyr.glif + Q + Q_.glif + Q.ss01 + Q_.ss01.glif + Qacyr + Q_acyr.glif + R + R_.glif + Racute + R_acute.glif + Rcaron + R_caron.glif + Rcommaaccent + R_commaaccent.glif + Reversedzecyr + R_eversedzecyr.glif + Rhacyr + R_hacyr.glif + S + S_.glif + Sacute + S_acute.glif + Scaron + S_caron.glif + Scedilla + S_cedilla.glif + Schwa + S_chwa.glif + Schwacyr + S_chwacyr.glif + Schwadieresiscyr + S_chwadieresiscyr.glif + Scircumflex + S_circumflex.glif + Scommaaccent + S_commaaccent.glif + Semisoftcyr + S_emisoftcyr.glif + Sha-cy + S_ha-cy.glif + Shcha-cy + S_hcha-cy.glif + Shhacyr + S_hhacyr.glif + Shhatailcyr + S_hhatailcyr.glif + Shwe-cy + S_hwe-cy.glif + Sjekomicyr + S_jekomicyr.glif + Softsign-cy + S_oftsign-cy.glif + T + T_.glif + Tbar + T_bar.glif + Tcaron + T_caron.glif + Tcedilla + T_cedilla.glif + Tche-cy + T_che-cy.glif + Tcommaaccent + T_commaaccent.glif + Te-cy + T_e-cy.glif + TeWithMiddleHook-cy + T_eW_ithM_iddleH_ook-cy.glif + Tetailcyr + T_etailcyr.glif + Tetsecyr + T_etsecyr.glif + Thorn + T_horn.glif + Tjekomicyr + T_jekomicyr.glif + Tse-cy + T_se-cy.glif + TseReversed-cy + T_seR_eversed-cy.glif + Tshecyr + T_shecyr.glif + Tsse-cy + T_sse-cy.glif + Tswe-cy + T_swe-cy.glif + Twe-cy + T_we-cy.glif + U + U_.glif + U-cy + U_-cy.glif + U-cy.accented + U_-cy.accented.glif + U-cy.ss01 + U_-cy.ss01.glif + Uacute + U_acute.glif + Uacutedblcyr + U_acutedblcyr.glif + Ubreve + U_breve.glif + Ucircumflex + U_circumflex.glif + Udieresis + U_dieresis.glif + Udieresiscyr + U_dieresiscyr.glif + Ugrave + U_grave.glif + Uhungarumlaut + U_hungarumlaut.glif + UkMonograph-cy + U_kM_onograph-cy.glif + Ukcyr + U_kcyr.glif + Umacron + U_macron.glif + Umacroncyr + U_macroncyr.glif + Uogonek + U_ogonek.glif + Uring + U_ring.glif + Ushort-cy + U_short-cy.glif + Ushort-cy.ss01 + U_short-cy.ss01.glif + Ustraightcyr + U_straightcyr.glif + Ustraightstrokecyr + U_straightstrokecyr.glif + Utilde + U_tilde.glif + V + V_.glif + V.ss01 + V_.ss01.glif + Ve-cy + V_e-cy.glif + W + W_.glif + W.ss01 + W_.ss01.glif + Wacute + W_acute.glif + Wacute.ss01 + W_acute.ss01.glif + Wcircumflex + W_circumflex.glif + Wcircumflex.ss01 + W_circumflex.ss01.glif + Wdieresis + W_dieresis.glif + Wdieresis.ss01 + W_dieresis.ss01.glif + Wecyr + W_ecyr.glif + Wgrave + W_grave.glif + Wgrave.ss01 + W_grave.ss01.glif + X + X_.glif + X.ss01 + X_.ss01.glif + Xatailcyr + X_atailcyr.glif + Y + Y_.glif + Y.ss01 + Y_.ss01.glif + Yacute + Y_acute.glif + Yacute.ss01 + Y_acute.ss01.glif + Yaecyr + Y_aecyr.glif + YatIotified-cy + Y_atI_otified-cy.glif + Yatcyr + Y_atcyr.glif + Ycircumflex + Y_circumflex.glif + Ycircumflex.ss01 + Y_circumflex.ss01.glif + Ydieresis + Y_dieresis.glif + Ydieresis.ss01 + Y_dieresis.ss01.glif + YerNeutral-cy + Y_erN_eutral-cy.glif + Yeru-cy + Y_eru-cy.glif + Yeru-cy.accented + Y_eru-cy.accented.glif + Yeru-cymacron + Y_eru-cymacron.glif + YeruBackYer-cy + Y_eruB_ackY_er-cy.glif + Yi-cy + Y_i-cy.glif + Ylongdieresiscyr + Y_longdieresiscyr.glif + Yn-cy + Y_n-cy.glif + YuReversed-cy + Y_uR_eversed-cy.glif + YusBlended-cy + Y_usB_lended-cy.glif + YusClosedlittle-cy + Y_usC_losedlittle-cy.glif + Yusbigcyr + Y_usbigcyr.glif + Yusbigiotifiedcyr + Y_usbigiotifiedcyr.glif + YusiotifiedClosedLittle-cy + Y_usiotifiedC_losedL_ittle-cy.glif + Yuslittlecyr + Y_uslittlecyr.glif + Yuslittleiotifiedcyr + Y_uslittleiotifiedcyr.glif + Z + Z_.glif + Z.ss01 + Z_.ss01.glif + Zacute + Z_acute.glif + Zacute.ss01 + Z_acute.ss01.glif + Zcaron + Z_caron.glif + Zcaron.ss01 + Z_caron.ss01.glif + Zdotaccent + Z_dotaccent.glif + Zdotaccent.ss01 + Z_dotaccent.ss01.glif + Ze-cy + Z_e-cy.glif + Zedieresiscyr + Z_edieresiscyr.glif + Zemlya-cy + Z_emlya-cy.glif + Zetailcyr + Z_etailcyr.glif + Zetailcyr.BSH + Z_etailcyr.B_S_H_.glif + Zhe-cy + Z_he-cy.glif + Zhe-cy.ss01 + Z_he-cy.ss01.glif + Zhebrevecyr + Z_hebrevecyr.glif + Zhedieresiscyr + Z_hedieresiscyr.glif + Zhetailcyr + Z_hetailcyr.glif + Zhwe-cy + Z_hwe-cy.glif + Zjekomicyr + Z_jekomicyr.glif + _perc-circule + _perc-circule.glif + a + a.glif + a-cy + a-cy.glif + a-cy.accented + a-cy.accented.glif + a-cy.ss01 + a-cy.ss01.glif + a.ss01 + a.ss01.glif + aacute + aacute.glif + aacute.ss01 + aacute.ss01.glif + abreve + abreve.glif + abreve.ss01 + abreve.ss01.glif + abrevecyr + abrevecyr.glif + acaron + acaron.glif + acircumflex + acircumflex.glif + acircumflex.ss01 + acircumflex.ss01.glif + acute + acute.glif + acute.case + acute.case.glif + adieresis + adieresis.glif + adieresis.ss01 + adieresis.ss01.glif + adieresiscyr + adieresiscyr.glif + ae + ae.glif + ae.ss01 + ae.ss01.glif + aeacute + aeacute.glif + agrave + agrave.glif + agrave.ss01 + agrave.ss01.glif + aiecyr + aiecyr.glif + amacron + amacron.glif + amacron.ss01 + amacron.ss01.glif + ampersand + ampersand.glif + aogonek + aogonek.glif + aogonek.ss01 + aogonek.ss01.glif + apostrophemod + apostrophemod.glif + approxequal + approxequal.glif + aring + aring.glif + aring.ss01 + aring.ss01.glif + arrowdown + arrowdown.glif + arrowdown.case + arrowdown.case.glif + arrowdown.ss01 + arrowdown.ss01.glif + arrowdown.ss01.case + arrowdown.ss01.case.glif + arrowleft + arrowleft.glif + arrowleft.case + arrowleft.case.glif + arrowleft.ss01 + arrowleft.ss01.glif + arrowleft.ss01.case + arrowleft.ss01.case.glif + arrowright + arrowright.glif + arrowright.case + arrowright.case.glif + arrowright.ss01 + arrowright.ss01.glif + arrowright.ss01.case + arrowright.ss01.case.glif + arrowup + arrowup.glif + arrowup.case + arrowup.case.glif + arrowup.ss01 + arrowup.ss01.glif + arrowup.ss01.case + arrowup.ss01.case.glif + asciicircum + asciicircum.glif + asciitilde + asciitilde.glif + asterisk + asterisk.glif + at + at.glif + at.case + at.case.glif + atilde + atilde.glif + atilde.ss01 + atilde.ss01.glif + b + b.glif + b.ss01 + b.ss01.glif + backslash + backslash.glif + backslash.case + backslash.case.glif + bar + bar.glif + bar.case + bar.case.glif + be-cy + be-cy.glif + be-cy.SRB + be-cy.S_R_B_.glif + bishopblack + bishopblack.glif + bishopwhite + bishopwhite.glif + braceleft + braceleft.glif + braceleft.case + braceleft.case.glif + braceright + braceright.glif + braceright.case + braceright.case.glif + bracketangleleft + bracketangleleft.glif + bracketangleleft.case + bracketangleleft.case.glif + bracketangleright + bracketangleright.glif + bracketangleright.case + bracketangleright.case.glif + bracketleft + bracketleft.glif + bracketleft.case + bracketleft.case.glif + bracketright + bracketright.glif + bracketright.case + bracketright.case.glif + breve + breve.glif + breve.case + breve.case.glif + brokenbar + brokenbar.glif + brokenbar.case + brokenbar.case.glif + bullet + bullet.glif + bullet.case + bullet.case.glif + c + c.glif + cacute + cacute.glif + caron + caron.glif + caron.case + caron.case.glif + caron.salt + caron.salt.glif + ccaron + ccaron.glif + ccedilla + ccedilla.glif + cche-cy + cche-cy.glif + ccircumflex + ccircumflex.glif + cdotaccent + cdotaccent.glif + cedilla + cedilla.glif + cent + cent.glif + che-cy + che-cy.glif + cheabkhcyr + cheabkhcyr.glif + cheabkhtailcyr + cheabkhtailcyr.glif + chedieresiscyr + chedieresiscyr.glif + chekhakascyr + chekhakascyr.glif + chetailcyr + chetailcyr.glif + chevertcyr + chevertcyr.glif + circumflex + circumflex.glif + circumflex.case + circumflex.case.glif + clubwhite + clubwhite.glif + colon + colon.glif + colon.case + colon.case.glif + colontriangularmod + colontriangularmod.glif + comma + comma.glif + commaaccentcomb + commaaccentcomb.glif + commaaccentcomb.salt + commaaccentcomb.salt.glif + copyright + copyright.glif + crossedo-cy + crossedo-cy.glif + crossedswords + crossedswords.glif + currency + currency.glif + d + d.glif + d.ss01 + d.ss01.glif + dagger + dagger.glif + daggerdbl + daggerdbl.glif + dcaron + dcaron.glif + dcaron.ss01 + dcaron.ss01.glif + dchecyr + dchecyr.glif + dcroat + dcroat.glif + dcroat.ss01 + dcroat.ss01.glif + de-cy + de-cy.glif + de-cy.BGR + de-cy.B_G_R_.glif + de-cy.ss01 + de-cy.ss01.glif + deSoft-cy + deS_oft-cy.glif + degree + degree.glif + dekomicyr + dekomicyr.glif + diamondwhite-misc + diamondwhite-misc.glif + dieresis + dieresis.glif + dieresis.alt + dieresis.alt.glif + dieresis.case + dieresis.case.glif + dieresisacute + dieresisacute.glif + dieresiscase.alt + dieresiscase.alt.glif + divide + divide.glif + djecyr + djecyr.glif + djekomicyr + djekomicyr.glif + djerv-cy + djerv-cy.glif + dollar + dollar.glif + dotaccent + dotaccent.glif + dotaccent.case + dotaccent.case.glif + doubleo-cy + doubleo-cy.glif + dramsignarmn + dramsignarmn.glif + dwe-cy + dwe-cy.glif + dze-cy + dze-cy.glif + dzeReversed-cy + dzeR_eversed-cy.glif + dzeabkhcyr + dzeabkhcyr.glif + dzelo-cy + dzelo-cy.glif + dzhecyr + dzhecyr.glif + dzjekomicyr + dzjekomicyr.glif + dzwe-cy + dzwe-cy.glif + dzze-cy + dzze-cy.glif + dzzhecyr + dzzhecyr.glif + e + e.glif + e-cy + e-cy.glif + e-cy.accented + e-cy.accented.glif + e-cy.hist + e-cy.hist.glif + e.ss01 + e.ss01.glif + eacute + eacute.glif + eacute.ss01 + eacute.ss01.glif + ebreve + ebreve.glif + ebreve.ss01 + ebreve.ss01.glif + ecaron + ecaron.glif + ecaron.ss01 + ecaron.ss01.glif + ecircumflex + ecircumflex.glif + ecircumflex.ss01 + ecircumflex.ss01.glif + edieresis + edieresis.glif + edieresis.ss01 + edieresis.ss01.glif + edotaccent + edotaccent.glif + edotaccent.ss01 + edotaccent.ss01.glif + ef-cy + ef-cy.glif + egrave + egrave.glif + egrave.ss01 + egrave.ss01.glif + eight + eight.glif + eight.osf + eight.osf.glif + eight.tf + eight.tf.glif + eiotifiedcyr + eiotifiedcyr.glif + eiotifiedcyr.BGR + eiotifiedcyr.B_G_R_.glif + el-cy + el-cy.glif + el-cy.BGR + el-cy.B_G_R_.glif + el-cy.ss01 + el-cy.ss01.glif + elSoft-cy + elS_oft-cy.glif + elhookcyr + elhookcyr.glif + ellipsis + ellipsis.glif + elmiddlehookcyr + elmiddlehookcyr.glif + elsharptailcyr + elsharptailcyr.glif + eltailcyr + eltailcyr.glif + em-cy + em-cy.glif + emSoft-cy + emS_oft-cy.glif + emacron + emacron.glif + emacron.ss01 + emacron.ss01.glif + emdash + emdash.glif + emdash.case + emdash.case.glif + emsharptailcyr + emsharptailcyr.glif + en-cy + en-cy.glif + enclosingcirclecomb + enclosingcirclecomb.glif + endash + endash.glif + endash.case + endash.case.glif + eng + eng.glif + engecyr + engecyr.glif + enhookcyr + enhookcyr.glif + enhookleftcyr + enhookleftcyr.glif + enmiddlehookcyr + enmiddlehookcyr.glif + ensharptailcyr + ensharptailcyr.glif + entailcyr + entailcyr.glif + eogonek + eogonek.glif + eogonek.ss01 + eogonek.ss01.glif + equal + equal.glif + er-cy + er-cy.glif + er-cy.ss01 + er-cy.ss01.glif + ereversed-cy + ereversed-cy.glif + ereversed-cy.accented + ereversed-cy.accented.glif + ereverseddieresiscyr + ereverseddieresiscyr.glif + ertickcyr + ertickcyr.glif + es-cy + es-cy.glif + estailcyr + estailcyr.glif + estailcyr.BSH + estailcyr.B_S_H_.glif + estailcyr.CHU + estailcyr.C_H_U_.glif + estimated + estimated.glif + eth + eth.glif + eturned + eturned.glif + euro + euro.glif + exclam + exclam.glif + exclamdown + exclamdown.glif + exclamdown.case + exclamdown.case.glif + f + f.glif + f.ss01 + f.ss01.glif + f_f + f_f.glif + f_f.ss01 + f_f.ss01.glif + f_f_i + f_f_i.glif + f_f_i.ss01 + f_f_i.ss01.glif + f_f_l + f_f_l.glif + f_f_l.ss01 + f_f_l.ss01.glif + fi + fi.glif + fi.ss01 + fi.ss01.glif + fitacyr + fitacyr.glif + five + five.glif + five.osf + five.osf.glif + five.tf + five.tf.glif + fl + fl.glif + fl.ss01 + fl.ss01.glif + floretteblack + floretteblack.glif + floretteoutlinedpetalledblackeight + floretteoutlinedpetalledblackeight.glif + florettewhite + florettewhite.glif + florin + florin.glif + flower + flower.glif + four + four.glif + four.osf + four.osf.glif + four.tf + four.tf.glif + fraction + fraction.glif + g + g.glif + g.ss01 + g.ss01.glif + gacute + gacute.glif + gacute.ss01 + gacute.ss01.glif + gbreve + gbreve.glif + gbreve.ss01 + gbreve.ss01.glif + gcircumflex + gcircumflex.glif + gcircumflex.ss01 + gcircumflex.ss01.glif + gcommaaccent + gcommaaccent.glif + gcommaaccent.ss01 + gcommaaccent.ss01.glif + gdotaccent + gdotaccent.glif + gdotaccent.ss01 + gdotaccent.ss01.glif + ge-cy + ge-cy.glif + ge-cy.BGR + ge-cy.B_G_R_.glif + ge-cy.SRB + ge-cy.S_R_B_.glif + gehookcyr + gehookcyr.glif + gehookstrokecyr + gehookstrokecyr.glif + germandbls + germandbls.glif + germandbls.ss01 + germandbls.ss01.glif + gestrokecyr + gestrokecyr.glif + gestrokecyr.BSH + gestrokecyr.B_S_H_.glif + getailcyr + getailcyr.glif + gheupturn-cy + gheupturn-cy.glif + gjecyr + gjecyr.glif + gjecyr.SRB + gjecyr.S_R_B_.glif + grave + grave.glif + grave.case + grave.case.glif + greater + greater.glif + greaterequal + greaterequal.glif + guillemetleft + guillemetleft.glif + guillemetleft.case + guillemetleft.case.glif + guillemetright + guillemetright.glif + guillemetright.case + guillemetright.case.glif + guilsinglleft + guilsinglleft.glif + guilsinglleft.case + guilsinglleft.case.glif + guilsinglright + guilsinglright.glif + guilsinglright.case + guilsinglright.case.glif + h + h.glif + ha-cy + ha-cy.glif + haabkhcyr + haabkhcyr.glif + hahookcyr + hahookcyr.glif + hardsign-cy + hardsign-cy.glif + hardsign-cy.BGR + hardsign-cy.B_G_R_.glif + hardsign-cy.ss01 + hardsign-cy.ss01.glif + hastrokecyr + hastrokecyr.glif + hbar + hbar.glif + hcircumflex + hcircumflex.glif + heart + heart.glif + heartwhite + heartwhite.glif + hryvnia + hryvnia.glif + hundredmillionscomb-cy + hundredmillionscomb-cy.glif + hundredthousandscombcyr + hundredthousandscombcyr.glif + hungarumlaut + hungarumlaut.glif + hungarumlaut.case + hungarumlaut.case.glif + hwe-cy + hwe-cy.glif + hyphen + hyphen.glif + hyphen.case + hyphen.case.glif + i + i.glif + i-cy + i-cy.glif + ia-cy + ia-cy.glif + ia-cy.accented + ia-cy.accented.glif + ia-cy.ss01 + ia-cy.ss01.glif + iacute + iacute.glif + ibreve + ibreve.glif + icircumflex + icircumflex.glif + idieresis + idieresis.glif + idieresiscyr + idieresiscyr.glif + idotless + idotless.glif + ie-cy + ie-cy.glif + ie-cy.ss01 + ie-cy.ss01.glif + iebrevecyr + iebrevecyr.glif + iegravecyr + iegravecyr.glif + iegravecyr.SRB + iegravecyr.S_R_B_.glif + igrave + igrave.glif + igravecyr + igravecyr.glif + igravecyr.SRB + igravecyr.S_R_B_.glif + ii-cy + ii-cy.glif + ii-cy.BGR + ii-cy.B_G_R_.glif + ii-cy.accented + ii-cy.accented.glif + iishort-cy + iishort-cy.glif + iishort-cy.BGR + iishort-cy.B_G_R_.glif + ij + ij.glif + imacron + imacron.glif + imacroncyr + imacroncyr.glif + increment + increment.glif + infinity + infinity.glif + integral + integral.glif + io-cy + io-cy.glif + io-cy.accented + io-cy.accented.glif + io-cy.ss01 + io-cy.ss01.glif + iogonek + iogonek.glif + iota-cy + iota-cy.glif + iotifieda-cy + iotifieda-cy.glif + iotifieda-cy.BGR + iotifieda-cy.B_G_R_.glif + iotifieda-cy.hist + iotifieda-cy.hist.glif + ishortsharptailcyr + ishortsharptailcyr.glif + itilde + itilde.glif + iu-cy + iu-cy.glif + iu-cy.BGR + iu-cy.B_G_R_.glif + iu-cy.accented + iu-cy.accented.glif + izhitsacyr + izhitsacyr.glif + izhitsagravedblcyr + izhitsagravedblcyr.glif + j + j.glif + jcircumflex + jcircumflex.glif + jdotless + jdotless.glif + je-cy + je-cy.glif + k + k.glif + ka-cy + ka-cy.glif + ka-cy.BGR + ka-cy.B_G_R_.glif + kaaleutcyr + kaaleutcyr.glif + kabashkcyr + kabashkcyr.glif + kahookcyr + kahookcyr.glif + kastrokecyr + kastrokecyr.glif + katailcyr + katailcyr.glif + kaverticalstrokecyr + kaverticalstrokecyr.glif + kcommaaccent + kcommaaccent.glif + kgreenlandic + kgreenlandic.glif + kjecyr + kjecyr.glif + knightblack + knightblack.glif + knightwhite + knightwhite.glif + koppacyr + koppacyr.glif + ksicyr + ksicyr.glif + l + l.glif + l.ss01 + l.ss01.glif + lacute + lacute.glif + lacute.ss01 + lacute.ss01.glif + lcaron + lcaron.glif + lcaron.ss01 + lcaron.ss01.glif + lcommaaccent + lcommaaccent.glif + lcommaaccent.ss01 + lcommaaccent.ss01.glif + ldot + ldot.glif + ldot.ss01 + ldot.ss01.glif + leo + leo.glif + less + less.glif + lessequal + lessequal.glif + lhacyr + lhacyr.glif + ljecyr + ljecyr.glif + ljecyr.ss01 + ljecyr.ss01.glif + ljekomicyr + ljekomicyr.glif + longs + longs.glif + lslash + lslash.glif + lslash.ss01 + lslash.ss01.glif + m + m.glif + macron + macron.glif + macron-fwd + macron-fwd.glif + macron-fwd.alt + macron-fwd.alt.glif + macron.case + macron.case.glif + macronacute.SRB + macronacute.S_R_B_.glif + millionscombcyr + millionscombcyr.glif + minus + minus.glif + minute + minute.glif + mu + mu.glif + multiply + multiply.glif + n + n.glif + nacute + nacute.glif + napostrophe + napostrophe.glif + ncaron + ncaron.glif + ncommaaccent + ncommaaccent.glif + neptune + neptune.glif + nine + nine.glif + nine.osf + nine.osf.glif + nine.tf + nine.tf.glif + njecyr + njecyr.glif + njecyr.ss01 + njecyr.ss01.glif + njekomicyr + njekomicyr.glif + notequal + notequal.glif + ntilde + ntilde.glif + numbersign + numbersign.glif + numero + numero.glif + numero.ss01 + numero.ss01.glif + o + o.glif + o-cy + o-cy.glif + o-cy.accented + o-cy.accented.glif + oBinocular-cy + oB_inocular-cy.glif + oDoubleMonocular-cy + oD_oubleM_onocular-cy.glif + oMonocular-cy + oM_onocular-cy.glif + oacute + oacute.glif + obarcyr + obarcyr.glif + obardieresiscyr + obardieresiscyr.glif + obreve + obreve.glif + ocircumflex + ocircumflex.glif + odieresis + odieresis.glif + odieresiscyr + odieresiscyr.glif + oe + oe.glif + oe.ss01 + oe.ss01.glif + ogonek + ogonek.glif + ograve + ograve.glif + ohungarumlaut + ohungarumlaut.glif + omacron + omacron.glif + omegaBroad-cy + omegaB_road-cy.glif + omegacyr + omegacyr.glif + omegaroundcyr + omegaroundcyr.glif + omegatitlocyr + omegatitlocyr.glif + omultiocular-cy + omultiocular-cy.glif + omultiocular-cy.alt + omultiocular-cy.alt.glif + one + one.glif + one.osf + one.osf.glif + one.tf + one.tf.glif + onehalf + onehalf.glif + onequarter + onequarter.glif + onesuperior + onesuperior.glif + ordfeminine + ordfeminine.glif + ordmasculine + ordmasculine.glif + oslash + oslash.glif + oslashacute + oslashacute.glif + otcyr + otcyr.glif + otilde + otilde.glif + p + p.glif + p.ss01 + p.ss01.glif + palatcombcyr + palatcombcyr.glif + palochkacyr + palochkacyr.glif + paragraph + paragraph.glif + parenleft + parenleft.glif + parenleft.case + parenleft.case.glif + parenright + parenright.glif + parenright.case + parenright.case.glif + partialdiff + partialdiff.glif + pe-cy + pe-cy.glif + pe-cy.BGR + pe-cy.B_G_R_.glif + pe-cy.SRB + pe-cy.S_R_B_.glif + pehookcyr + pehookcyr.glif + percent + percent.glif + period + period.glif + periodcentered + periodcentered.glif + perthousand + perthousand.glif + petailcyr + petailcyr.glif + pi + pi.glif + plus + plus.glif + plusminus + plusminus.glif + pokrytiecombcyr + pokrytiecombcyr.glif + product + product.glif + proportional + proportional.glif + psicyr + psicyr.glif + q + q.glif + q.ss01 + q.ss01.glif + qacyr + qacyr.glif + question + question.glif + questiondown + questiondown.glif + questiondown.case + questiondown.case.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 + radical + radical.glif + rcaron + rcaron.glif + rcommaaccent + rcommaaccent.glif + registered + registered.glif + reversedzecyr + reversedzecyr.glif + rhacyr + rhacyr.glif + ring + ring.glif + ring.case + ring.case.glif + rookblack + rookblack.glif + ruble + ruble.glif + s + s.glif + sacute + sacute.glif + scaron + scaron.glif + scedilla + scedilla.glif + schwacyr + schwacyr.glif + schwadieresiscyr + schwadieresiscyr.glif + scircumflex + scircumflex.glif + scommaaccent + scommaaccent.glif + second + second.glif + section + section.glif + semicolon + semicolon.glif + semicolon.case + semicolon.case.glif + semisoftcyr + semisoftcyr.glif + seven + seven.glif + seven.osf + seven.osf.glif + seven.tf + seven.tf.glif + sha-cy + sha-cy.glif + sha-cy.BGR + sha-cy.B_G_R_.glif + shcha-cy + shcha-cy.glif + shcha-cy.BGR + shcha-cy.B_G_R_.glif + shhacyr + shhacyr.glif + shhatailcyr + shhatailcyr.glif + shwe-cy + shwe-cy.glif + six + six.glif + six.osf + six.osf.glif + six.tf + six.tf.glif + sjekomicyr + sjekomicyr.glif + slash + slash.glif + slash.case + slash.case.glif + softsign-cy + softsign-cy.glif + softsign-cy.BGR + softsign-cy.B_G_R_.glif + softsign-cy.ss01 + softsign-cy.ss01.glif + space + space.glif + spadewhite + spadewhite.glif + sterling + sterling.glif + summation + summation.glif + t + t.glif + t.ss01 + t.ss01.glif + tbar + tbar.glif + tbar.ss01 + tbar.ss01.glif + tcaron + tcaron.glif + tcaron.ss01 + tcaron.ss01.glif + tcedilla + tcedilla.glif + tcedilla.ss01 + tcedilla.ss01.glif + tche-cy + tche-cy.glif + tcommaaccent + tcommaaccent.glif + tcommaaccent.ss01 + tcommaaccent.ss01.glif + te-cy + te-cy.glif + te-cy.BGR + te-cy.B_G_R_.glif + te-cy.SRB + te-cy.S_R_B_.glif + te-cy.ss01 + te-cy.ss01.glif + tenge + tenge.glif + tenmillionscomb-cy + tenmillionscomb-cy.glif + tetailcyr + tetailcyr.glif + tetsecyr + tetsecyr.glif + tewithmiddlehook-cy + tewithmiddlehook-cy.glif + thorn + thorn.glif + thousandmillionscomb-cy + thousandmillionscomb-cy.glif + thousandscyr + thousandscyr.glif + thousandscyr.dnom + thousandscyr.dnom.glif + three + three.glif + three.osf + three.osf.glif + three.tf + three.tf.glif + threequarters + threequarters.glif + threesuperior + threesuperior.glif + tilde + tilde.glif + tilde.case + tilde.case.glif + titlocombcyr + titlocombcyr.glif + tjekomicyr + tjekomicyr.glif + trademark + trademark.glif + tse-cy + tse-cy.glif + tse-cy.BGR + tse-cy.B_G_R_.glif + tseReversed-cy + tseR_eversed-cy.glif + tshecyr + tshecyr.glif + tsse-cy + tsse-cy.glif + tswe-cy + tswe-cy.glif + twe-cy + twe-cy.glif + two + two.glif + two.osf + two.osf.glif + two.tf + two.tf.glif + twosuperior + twosuperior.glif + u + u.glif + u-cy + u-cy.glif + u-cy.accented + u-cy.accented.glif + uacute + uacute.glif + uacutedblcyr + uacutedblcyr.glif + ubreve + ubreve.glif + ucircumflex + ucircumflex.glif + udieresis + udieresis.glif + udieresiscyr + udieresiscyr.glif + ugrave + ugrave.glif + uhungarumlaut + uhungarumlaut.glif + ukMonograph-cy + ukM_onograph-cy.glif + ukcyr + ukcyr.glif + umacron + umacron.glif + umacroncyr + umacroncyr.glif + underscore + underscore.glif + uni1C80 + uni1C_80.glif + uni1C81 + uni1C_81.glif + uni1C82 + uni1C_82.glif + uni1C83 + uni1C_83.glif + uni1C84 + uni1C_84.glif + uni1C85 + uni1C_85.glif + uni1C86 + uni1C_86.glif + uni1C87 + uni1C_87.glif + uni1C88 + uni1C_88.glif + uni1EBC + uni1E_B_C_.glif + uni1EBD + uni1E_B_D_.glif + uni2010 + uni2010.glif + uni2DEE + uni2D_E_E_.glif + uni2DEE.case + uni2D_E_E_.case.glif + uniE000 + uniE_000.glif + uniE000.alt + uniE_000.alt.glif + uniE01A + uniE_01A_.glif + uniF43A + uniF_43A_.glif + uniF43B + uniF_43B_.glif + uniF45D + uniF_45D_.glif + uniF45E + uniF_45E_.glif + uniF45F + uniF_45F_.glif + uniF475 + uniF_475.glif + uniF476 + uniF_476.glif + uniF477 + uniF_477.glif + uniF478 + uniF_478.glif + uniF479 + uniF_479.glif + uniF498 + uniF_498.glif + uniF499 + uniF_499.glif + uniF49A + uniF_49A_.glif + uniF49B + uniF_49B_.glif + uniF49C + uniF_49C_.glif + uniF49D + uniF_49D_.glif + uniF49E + uniF_49E_.glif + uniF49F + uniF_49F_.glif + uniF4C6 + uniF_4C_6.glif + uniF4C7 + uniF_4C_7.glif + uniF4CC + uniF_4C_C_.glif + uniF4CD + uniF_4C_D_.glif + uniF4D2 + uniF_4D_2.glif + uniF4D3 + uniF_4D_3.glif + uniF4D4 + uniF_4D_4.glif + uniF4D5 + uniF_4D_5.glif + uniF4D6 + uniF_4D_6.glif + uniF4D7 + uniF_4D_7.glif + uniF4D8 + uniF_4D_8.glif + uniF4D9 + uniF_4D_9.glif + uniF50E + uniF_50E_.glif + uniF50F + uniF_50F_.glif + uniF510 + uniF_510.glif + uniF511 + uniF_511.glif + uniF512 + uniF_512.glif + uniF513 + uniF_513.glif + uniF514 + uniF_514.glif + uniF515 + uniF_515.glif + uniF516 + uniF_516.glif + uniF517 + uniF_517.glif + uniF518 + uniF_518.glif + uniF519 + uniF_519.glif + uniF51A + uniF_51A_.glif + uniF51B + uniF_51B_.glif + uniF51C + uniF_51C_.glif + uniF51D + uniF_51D_.glif + uniF51E + uniF_51E_.glif + uniF51F + uniF_51F_.glif + uniF521 + uniF_521.glif + uniF522 + uniF_522.glif + uniF523 + uniF_523.glif + uniF524 + uniF_524.glif + uniF525 + uniF_525.glif + uniF526 + uniF_526.glif + uniF527 + uniF_527.glif + uniF528 + uniF_528.glif + uniF529 + uniF_529.glif + uniF52A + uniF_52A_.glif + uniF52B + uniF_52B_.glif + uniF52C + uniF_52C_.glif + uniF52D + uniF_52D_.glif + uniF52E + uniF_52E_.glif + uniF52F + uniF_52F_.glif + uniF532 + uniF_532.glif + uniF533 + uniF_533.glif + uniF536 + uniF_536.glif + uniF537 + uniF_537.glif + uniF538 + uniF_538.glif + uniF539 + uniF_539.glif + uniF830 + uniF_830.glif + uniF831 + uniF_831.glif + uniF833 + uniF_833.glif + uniF834 + uniF_834.glif + uniF839 + uniF_839.glif + uniF83A + uniF_83A_.glif + uniF86F + uniF_86F_.glif + uniF870 + uniF_870.glif + uniF872 + uniF_872.glif + uniF873 + uniF_873.glif + uniF875 + uniF_875.glif + uniF876 + uniF_876.glif + uniF878 + uniF_878.glif + uniF879 + uniF_879.glif + uniF87B + uniF_87B_.glif + uniF87C + uniF_87C_.glif + uniF87E + uniF_87E_.glif + uniF87F + uniF_87F_.glif + uogonek + uogonek.glif + uring + uring.glif + ushort-cy + ushort-cy.glif + ustraightcyr + ustraightcyr.glif + ustraightstrokecyr + ustraightstrokecyr.glif + utilde + utilde.glif + v + v.glif + ve-cy + ve-cy.glif + ve-cy.BGR + ve-cy.B_G_R_.glif + ve-cy.ss01 + ve-cy.ss01.glif + virgo + virgo.glif + vzmetcomb-cy + vzmetcomb-cy.glif + w + w.glif + wacute + wacute.glif + wcircumflex + wcircumflex.glif + wdieresis + wdieresis.glif + wecyr + wecyr.glif + wgrave + wgrave.glif + x + x.glif + xatailcyr + xatailcyr.glif + y + y.glif + yacute + yacute.glif + yaecyr + yaecyr.glif + yatIotified-cy + yatI_otified-cy.glif + yatcyr + yatcyr.glif + yatcyr.BGR + yatcyr.B_G_R_.glif + ycircumflex + ycircumflex.glif + ydieresis + ydieresis.glif + yen + yen.glif + yen.ss01 + yen.ss01.glif + yerNeutral-cy + yerN_eutral-cy.glif + yeru-cy + yeru-cy.glif + yeru-cy.accented + yeru-cy.accented.glif + yeru-cy.ss01 + yeru-cy.ss01.glif + yeruBackyer-cy + yeruB_ackyer-cy.glif + yi-cy + yi-cy.glif + yi-cy.alt + yi-cy.alt.glif + ylongdieresiscyr + ylongdieresiscyr.glif + yn-cy + yn-cy.glif + yuReversed-cy + yuR_eversed-cy.glif + yusBlended-cy + yusB_lended-cy.glif + yusClosedlittle-cy + yusC_losedlittle-cy.glif + yusbigcyr + yusbigcyr.glif + yusbigiotifiedcyr + yusbigiotifiedcyr.glif + yusbigiotifiedcyr.BGR + yusbigiotifiedcyr.B_G_R_.glif + yusiotifiedClosedLittle-cy + yusiotifiedC_losedL_ittle-cy.glif + yuslittlecyr + yuslittlecyr.glif + yuslittleiotifiedcyr + yuslittleiotifiedcyr.glif + z + z.glif + zacute + zacute.glif + zcaron + zcaron.glif + zdotaccent + zdotaccent.glif + ze-cy + ze-cy.glif + ze-cy.BGR + ze-cy.B_G_R_.glif + zedieresiscyr + zedieresiscyr.glif + zemlya-cy + zemlya-cy.glif + zero + zero.glif + zero.osf + zero.osf.glif + zero.tf + zero.tf.glif + zetailcyr + zetailcyr.glif + zetailcyr.BSH + zetailcyr.B_S_H_.glif + zhe-cy + zhe-cy.glif + zhe-cy.BGR + zhe-cy.B_G_R_.glif + zhebrevecyr + zhebrevecyr.glif + zhedieresiscyr + zhedieresiscyr.glif + zhetailcyr + zhetailcyr.glif + zhwe-cy + zhwe-cy.glif + zjekomicyr + zjekomicyr.glif + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/copyright.glif b/sources/FixelText-SemiBold.ufo/glyphs/copyright.glif new file mode 100644 index 00000000..85ff2766 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/copyright.glif @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/crossedo-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/crossedo-cy.glif new file mode 100644 index 00000000..0284c66c --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/crossedo-cy.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + com.fontlab.recipe + o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/crossedswords.glif b/sources/FixelText-SemiBold.ufo/glyphs/crossedswords.glif new file mode 100644 index 00000000..fc2d7cd3 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/crossedswords.glif @@ -0,0 +1,103 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/currency.glif b/sources/FixelText-SemiBold.ufo/glyphs/currency.glif new file mode 100644 index 00000000..9c44930e --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/currency.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/d.glif b/sources/FixelText-SemiBold.ufo/glyphs/d.glif new file mode 100644 index 00000000..1a115dbd --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/d.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/d.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/d.ss01.glif new file mode 100644 index 00000000..657cb512 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/d.ss01.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/dagger.glif b/sources/FixelText-SemiBold.ufo/glyphs/dagger.glif new file mode 100644 index 00000000..a2231cab --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/dagger.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/daggerdbl.glif b/sources/FixelText-SemiBold.ufo/glyphs/daggerdbl.glif new file mode 100644 index 00000000..9b377c84 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/daggerdbl.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/dcaron.glif b/sources/FixelText-SemiBold.ufo/glyphs/dcaron.glif new file mode 100644 index 00000000..0aae3918 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/dcaron.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + d+caron.salt + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/dcaron.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/dcaron.ss01.glif new file mode 100644 index 00000000..cf241b19 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/dcaron.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + d.ss01+caron.salt + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/dchecyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/dchecyr.glif new file mode 100644 index 00000000..58d51da5 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/dchecyr.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + д+10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/dcroat.glif b/sources/FixelText-SemiBold.ufo/glyphs/dcroat.glif new file mode 100644 index 00000000..e3401ba2 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/dcroat.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + d + com.fontlab.metricsRight + |hbar + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/dcroat.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/dcroat.ss01.glif new file mode 100644 index 00000000..d3c5cd61 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/dcroat.ss01.glif @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + d.ss01 + com.fontlab.metricsRight + |hbar + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/de-cy.B_G_R_.glif b/sources/FixelText-SemiBold.ufo/glyphs/de-cy.B_G_R_.glif new file mode 100644 index 00000000..1dca9a72 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/de-cy.B_G_R_.glif @@ -0,0 +1,77 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + q + com.fontlab.metricsRight + q + com.fontlab.recipe + uni1C81 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/de-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/de-cy.glif new file mode 100644 index 00000000..a4ac9c61 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/de-cy.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/de-cy.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/de-cy.ss01.glif new file mode 100644 index 00000000..f38e758f --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/de-cy.ss01.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/deS_oft-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/deS_oft-cy.glif new file mode 100644 index 00000000..3e964085 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/deS_oft-cy.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + д + com.fontlab.metricsRight + ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/degree.glif b/sources/FixelText-SemiBold.ufo/glyphs/degree.glif new file mode 100644 index 00000000..d1e22333 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/degree.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/dekomicyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/dekomicyr.glif new file mode 100644 index 00000000..bc6fea91 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/dekomicyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + d + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/diamondwhite-misc.glif b/sources/FixelText-SemiBold.ufo/glyphs/diamondwhite-misc.glif new file mode 100644 index 00000000..9a85226f --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/diamondwhite-misc.glif @@ -0,0 +1,145 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =36 + com.fontlab.metricsRight + =36 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/dieresis.alt.glif b/sources/FixelText-SemiBold.ufo/glyphs/dieresis.alt.glif new file mode 100644 index 00000000..1f3abd49 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/dieresis.alt.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 1,0.6,0.994,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/dieresis.case.glif b/sources/FixelText-SemiBold.ufo/glyphs/dieresis.case.glif new file mode 100644 index 00000000..a422ead0 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/dieresis.case.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/dieresis.glif b/sources/FixelText-SemiBold.ufo/glyphs/dieresis.glif new file mode 100644 index 00000000..980c9852 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/dieresis.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/dieresisacute.glif b/sources/FixelText-SemiBold.ufo/glyphs/dieresisacute.glif new file mode 100644 index 00000000..4619d16e --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/dieresisacute.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/dieresiscase.alt.glif b/sources/FixelText-SemiBold.ufo/glyphs/dieresiscase.alt.glif new file mode 100644 index 00000000..e5ae3283 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/dieresiscase.alt.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 1,0.6,0.994,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/divide.glif b/sources/FixelText-SemiBold.ufo/glyphs/divide.glif new file mode 100644 index 00000000..52133999 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/divide.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/djecyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/djecyr.glif new file mode 100644 index 00000000..fc9887cb --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/djecyr.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hbar + com.fontlab.metricsRight + h + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/djekomicyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/djekomicyr.glif new file mode 100644 index 00000000..7144c557 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/djekomicyr.glif @@ -0,0 +1,73 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + d + com.fontlab.metricsRight + njekomicyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/djerv-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/djerv-cy.glif new file mode 100644 index 00000000..7c108b29 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/djerv-cy.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + r() + com.fontlab.metricsRight + п-30 + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/dollar.glif b/sources/FixelText-SemiBold.ufo/glyphs/dollar.glif new file mode 100644 index 00000000..afbd68d7 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/dollar.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + S + com.fontlab.metricsRight + S + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/dotaccent.case.glif b/sources/FixelText-SemiBold.ufo/glyphs/dotaccent.case.glif new file mode 100644 index 00000000..fd67db34 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/dotaccent.case.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/dotaccent.glif b/sources/FixelText-SemiBold.ufo/glyphs/dotaccent.glif new file mode 100644 index 00000000..0db3ea9c --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/dotaccent.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/doubleo-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/doubleo-cy.glif new file mode 100644 index 00000000..d11c6b49 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/doubleo-cy.glif @@ -0,0 +1,91 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + com.fontlab.recipe + o_o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/dramsignarmn.glif b/sources/FixelText-SemiBold.ufo/glyphs/dramsignarmn.glif new file mode 100644 index 00000000..176c2dd1 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/dramsignarmn.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/dwe-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/dwe-cy.glif new file mode 100644 index 00000000..ee77cb0a --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/dwe-cy.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + д + com.fontlab.metricsRight + д + com.fontlab.recipe + д + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/dze-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/dze-cy.glif new file mode 100644 index 00000000..5fb6fde9 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/dze-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + s + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/dzeR_eversed-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/dzeR_eversed-cy.glif new file mode 100644 index 00000000..d118c4d9 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/dzeR_eversed-cy.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |s + com.fontlab.metricsRight + |s + com.fontlab.recipe + s + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/dzeabkhcyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/dzeabkhcyr.glif new file mode 100644 index 00000000..d238f054 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/dzeabkhcyr.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + z-30 + com.fontlab.metricsRight + з-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/dzelo-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/dzelo-cy.glif new file mode 100644 index 00000000..56eb65ba --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/dzelo-cy.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/dzhecyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/dzhecyr.glif new file mode 100644 index 00000000..afc8f327 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/dzhecyr.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/dzjekomicyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/dzjekomicyr.glif new file mode 100644 index 00000000..c2888c5a --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/dzjekomicyr.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + zjekomicyr + com.fontlab.metricsRight + ц-5 + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/dzwe-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/dzwe-cy.glif new file mode 100644 index 00000000..24a9a09c --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/dzwe-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + s + com.fontlab.metricsRight + s + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/dzze-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/dzze-cy.glif new file mode 100644 index 00000000..56775a9d --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/dzze-cy.glif @@ -0,0 +1,84 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + д + com.fontlab.metricsRight + д-30 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/dzzhecyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/dzzhecyr.glif new file mode 100644 index 00000000..852e8efb --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/dzzhecyr.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + д+5 + com.fontlab.metricsRight + ж+5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/e-cy.accented.glif b/sources/FixelText-SemiBold.ufo/glyphs/e-cy.accented.glif new file mode 100644 index 00000000..481f04ec --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/e-cy.accented.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+acute + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/e-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/e-cy.glif new file mode 100644 index 00000000..acc0c4fd --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/e-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + c + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/e-cy.hist.glif b/sources/FixelText-SemiBold.ufo/glyphs/e-cy.hist.glif new file mode 100644 index 00000000..ebf9d1d1 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/e-cy.hist.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + c + com.fontlab.recipe + uni1C83 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/e.glif b/sources/FixelText-SemiBold.ufo/glyphs/e.glif new file mode 100644 index 00000000..cf6633b9 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/e.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/e.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/e.ss01.glif new file mode 100644 index 00000000..5e60a4ce --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/e.ss01.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + O-5 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/eacute.glif b/sources/FixelText-SemiBold.ufo/glyphs/eacute.glif new file mode 100644 index 00000000..00d6bd29 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/eacute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+acute + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/eacute.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/eacute.ss01.glif new file mode 100644 index 00000000..14cd8418 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/eacute.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+acute + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/ebreve.glif b/sources/FixelText-SemiBold.ufo/glyphs/ebreve.glif new file mode 100644 index 00000000..3a3d7f4b --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/ebreve.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+breve + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/ebreve.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/ebreve.ss01.glif new file mode 100644 index 00000000..d4897502 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/ebreve.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+breve + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/ecaron.glif b/sources/FixelText-SemiBold.ufo/glyphs/ecaron.glif new file mode 100644 index 00000000..33056269 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/ecaron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+caron + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/ecaron.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/ecaron.ss01.glif new file mode 100644 index 00000000..84f7b4ef --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/ecaron.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+caron + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/ecircumflex.glif b/sources/FixelText-SemiBold.ufo/glyphs/ecircumflex.glif new file mode 100644 index 00000000..469f511e --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/ecircumflex.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+circumflex + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/ecircumflex.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/ecircumflex.ss01.glif new file mode 100644 index 00000000..f58a7ca0 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/ecircumflex.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+circumflex + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/edieresis.glif b/sources/FixelText-SemiBold.ufo/glyphs/edieresis.glif new file mode 100644 index 00000000..0ba93e92 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/edieresis.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsLeft + e + com.fontlab.metricsRight + e + com.fontlab.recipe + e+dieresis + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/edieresis.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/edieresis.ss01.glif new file mode 100644 index 00000000..ca1e8f63 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/edieresis.ss01.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsLeft + e + com.fontlab.metricsRight + e + com.fontlab.recipe + e.ss01+dieresis + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/edotaccent.glif b/sources/FixelText-SemiBold.ufo/glyphs/edotaccent.glif new file mode 100644 index 00000000..6c648c41 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/edotaccent.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+dotaccent + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/edotaccent.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/edotaccent.ss01.glif new file mode 100644 index 00000000..2f0567ab --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/edotaccent.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+dotaccent + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/ef-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/ef-cy.glif new file mode 100644 index 00000000..3f8cc1e2 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/ef-cy.glif @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/egrave.glif b/sources/FixelText-SemiBold.ufo/glyphs/egrave.glif new file mode 100644 index 00000000..b5a403cf --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/egrave.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+grave + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/egrave.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/egrave.ss01.glif new file mode 100644 index 00000000..eea9a2f6 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/egrave.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+grave + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/eight.glif b/sources/FixelText-SemiBold.ufo/glyphs/eight.glif new file mode 100644 index 00000000..ea814706 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/eight.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/eight.osf.glif b/sources/FixelText-SemiBold.ufo/glyphs/eight.osf.glif new file mode 100644 index 00000000..6d9d0c00 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/eight.osf.glif @@ -0,0 +1,15 @@ + + + + + + + + + com.fontlab.metricsLeft + eight + com.fontlab.metricsRight + eight + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/eight.tf.glif b/sources/FixelText-SemiBold.ufo/glyphs/eight.tf.glif new file mode 100644 index 00000000..d903fd18 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/eight.tf.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/eiotifiedcyr.B_G_R_.glif b/sources/FixelText-SemiBold.ufo/glyphs/eiotifiedcyr.B_G_R_.glif new file mode 100644 index 00000000..95799abb --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/eiotifiedcyr.B_G_R_.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + c + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/eiotifiedcyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/eiotifiedcyr.glif new file mode 100644 index 00000000..4b95eada --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/eiotifiedcyr.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + c + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/el-cy.B_G_R_.glif b/sources/FixelText-SemiBold.ufo/glyphs/el-cy.B_G_R_.glif new file mode 100644 index 00000000..2f522c57 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/el-cy.B_G_R_.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + v + com.fontlab.metricsRight + v + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/el-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/el-cy.glif new file mode 100644 index 00000000..71854656 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/el-cy.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/el-cy.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/el-cy.ss01.glif new file mode 100644 index 00000000..209eb53b --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/el-cy.ss01.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/elS_oft-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/elS_oft-cy.glif new file mode 100644 index 00000000..010c9446 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/elS_oft-cy.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/elhookcyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/elhookcyr.glif new file mode 100644 index 00000000..5ef79ca9 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/elhookcyr.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + н + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/ellipsis.glif b/sources/FixelText-SemiBold.ufo/glyphs/ellipsis.glif new file mode 100644 index 00000000..d1f25101 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/ellipsis.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/elmiddlehookcyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/elmiddlehookcyr.glif new file mode 100644 index 00000000..2d32efee --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/elmiddlehookcyr.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + enmiddlehookcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/elsharptailcyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/elsharptailcyr.glif new file mode 100644 index 00000000..468e57c5 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/elsharptailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + ensharptailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/eltailcyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/eltailcyr.glif new file mode 100644 index 00000000..83abb7da --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/eltailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/em-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/em-cy.glif new file mode 100644 index 00000000..1a9bbc0e --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/em-cy.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/emS_oft-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/emS_oft-cy.glif new file mode 100644 index 00000000..09ebbd43 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/emS_oft-cy.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + м + com.fontlab.metricsRight + ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/emacron.glif b/sources/FixelText-SemiBold.ufo/glyphs/emacron.glif new file mode 100644 index 00000000..3d07f381 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/emacron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+macron + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/emacron.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/emacron.ss01.glif new file mode 100644 index 00000000..216a89ae --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/emacron.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+macron + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/emdash.case.glif b/sources/FixelText-SemiBold.ufo/glyphs/emdash.case.glif new file mode 100644 index 00000000..4a79c3d4 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/emdash.case.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/emdash.glif b/sources/FixelText-SemiBold.ufo/glyphs/emdash.glif new file mode 100644 index 00000000..24bb1e95 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/emdash.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/emsharptailcyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/emsharptailcyr.glif new file mode 100644 index 00000000..21f72e31 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/emsharptailcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + м + com.fontlab.metricsRight + ensharptailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/en-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/en-cy.glif new file mode 100644 index 00000000..d4db5f0c --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/en-cy.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/enclosingcirclecomb.glif b/sources/FixelText-SemiBold.ufo/glyphs/enclosingcirclecomb.glif new file mode 100644 index 00000000..37dc78c8 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/enclosingcirclecomb.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/endash.case.glif b/sources/FixelText-SemiBold.ufo/glyphs/endash.case.glif new file mode 100644 index 00000000..1ad99edc --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/endash.case.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/endash.glif b/sources/FixelText-SemiBold.ufo/glyphs/endash.glif new file mode 100644 index 00000000..ead0269f --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/endash.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/eng.glif b/sources/FixelText-SemiBold.ufo/glyphs/eng.glif new file mode 100644 index 00000000..b3ccd4e8 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/eng.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + n + com.fontlab.metricsRight + dotlessj + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/engecyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/engecyr.glif new file mode 100644 index 00000000..302f9c87 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/engecyr.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/enhookcyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/enhookcyr.glif new file mode 100644 index 00000000..89faca0d --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/enhookcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/enhookleftcyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/enhookleftcyr.glif new file mode 100644 index 00000000..338f7602 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/enhookleftcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + j + com.fontlab.metricsRight + н + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/enmiddlehookcyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/enmiddlehookcyr.glif new file mode 100644 index 00000000..3f737d02 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/enmiddlehookcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + softsign-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/ensharptailcyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/ensharptailcyr.glif new file mode 100644 index 00000000..9284a406 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/ensharptailcyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + д + com.fontlab.recipe + entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/entailcyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/entailcyr.glif new file mode 100644 index 00000000..294deb3a --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/entailcyr.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + ц + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/eogonek.glif b/sources/FixelText-SemiBold.ufo/glyphs/eogonek.glif new file mode 100644 index 00000000..046cf201 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/eogonek.glif @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + e+ogonek + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/eogonek.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/eogonek.ss01.glif new file mode 100644 index 00000000..7b6a762b --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/eogonek.ss01.glif @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + e.ss01+ogonek + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/equal.glif b/sources/FixelText-SemiBold.ufo/glyphs/equal.glif new file mode 100644 index 00000000..ecc95d5a --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/equal.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/er-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/er-cy.glif new file mode 100644 index 00000000..1852a90d --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/er-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + p + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/er-cy.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/er-cy.ss01.glif new file mode 100644 index 00000000..32671107 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/er-cy.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + p.ss01 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/ereversed-cy.accented.glif b/sources/FixelText-SemiBold.ufo/glyphs/ereversed-cy.accented.glif new file mode 100644 index 00000000..2acee838 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/ereversed-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + э+acute + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/ereversed-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/ereversed-cy.glif new file mode 100644 index 00000000..65391a5e --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/ereversed-cy.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |c + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/ereverseddieresiscyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/ereverseddieresiscyr.glif new file mode 100644 index 00000000..630fe321 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/ereverseddieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ereversed-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/ertickcyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/ertickcyr.glif new file mode 100644 index 00000000..f31073b6 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/ertickcyr.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + p + com.fontlab.metricsRight + p + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/es-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/es-cy.glif new file mode 100644 index 00000000..b3e531d0 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/es-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/estailcyr.B_S_H_.glif b/sources/FixelText-SemiBold.ufo/glyphs/estailcyr.B_S_H_.glif new file mode 100644 index 00000000..6b2870eb --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/estailcyr.B_S_H_.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + c + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/estailcyr.C_H_U_.glif b/sources/FixelText-SemiBold.ufo/glyphs/estailcyr.C_H_U_.glif new file mode 100644 index 00000000..f59a2c3c --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/estailcyr.C_H_U_.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+cedilla + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/estailcyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/estailcyr.glif new file mode 100644 index 00000000..2c369870 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/estailcyr.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + с + com.fontlab.metricsRight + с + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/estimated.glif b/sources/FixelText-SemiBold.ufo/glyphs/estimated.glif new file mode 100644 index 00000000..5eae256b --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/estimated.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/eth.glif b/sources/FixelText-SemiBold.ufo/glyphs/eth.glif new file mode 100644 index 00000000..1421a750 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/eth.glif @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/eturned.glif b/sources/FixelText-SemiBold.ufo/glyphs/eturned.glif new file mode 100644 index 00000000..610fdde1 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/eturned.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + schwacyr + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/euro.glif b/sources/FixelText-SemiBold.ufo/glyphs/euro.glif new file mode 100644 index 00000000..fcf272ec --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/euro.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + C + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/exclam.glif b/sources/FixelText-SemiBold.ufo/glyphs/exclam.glif new file mode 100644 index 00000000..4d0f421c --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/exclam.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/exclamdown.case.glif b/sources/FixelText-SemiBold.ufo/glyphs/exclamdown.case.glif new file mode 100644 index 00000000..6f4874ec --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/exclamdown.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + exclamdown + com.fontlab.metricsRight + exclamdown + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/exclamdown.glif b/sources/FixelText-SemiBold.ufo/glyphs/exclamdown.glif new file mode 100644 index 00000000..b8ecdc16 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/exclamdown.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/f.glif b/sources/FixelText-SemiBold.ufo/glyphs/f.glif new file mode 100644 index 00000000..2b123380 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/f.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/f.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/f.ss01.glif new file mode 100644 index 00000000..81f63f2b --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/f.ss01.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/f_f.glif b/sources/FixelText-SemiBold.ufo/glyphs/f_f.glif new file mode 100644 index 00000000..9d2c38be --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/f_f.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f + com.fontlab.metricsRight + f + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/f_f.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/f_f.ss01.glif new file mode 100644 index 00000000..e8c572bf --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/f_f.ss01.glif @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f.ss01 + com.fontlab.metricsRight + f.ss01 + com.fontlab.recipe + f.ss01_f.ss01 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/f_f_i.glif b/sources/FixelText-SemiBold.ufo/glyphs/f_f_i.glif new file mode 100644 index 00000000..11ccfd45 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/f_f_i.glif @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f + com.fontlab.metricsRight + i + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/f_f_i.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/f_f_i.ss01.glif new file mode 100644 index 00000000..81dd7308 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/f_f_i.ss01.glif @@ -0,0 +1,88 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f.ss01 + com.fontlab.metricsRight + i + com.fontlab.recipe + f.ss01_f.ss01_i + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/f_f_l.glif b/sources/FixelText-SemiBold.ufo/glyphs/f_f_l.glif new file mode 100644 index 00000000..2165d80f --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/f_f_l.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f + com.fontlab.metricsRight + l + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/f_f_l.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/f_f_l.ss01.glif new file mode 100644 index 00000000..0ab1c130 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/f_f_l.ss01.glif @@ -0,0 +1,86 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f.ss01 + com.fontlab.metricsRight + l.ss01 + com.fontlab.recipe + f.ss01_f.ss01_l.ss01 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/fi.glif b/sources/FixelText-SemiBold.ufo/glyphs/fi.glif new file mode 100644 index 00000000..7af846f2 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/fi.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f + com.fontlab.metricsRight + i + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/fi.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/fi.ss01.glif new file mode 100644 index 00000000..06795b9e --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/fi.ss01.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f.ss01 + com.fontlab.metricsRight + i + com.fontlab.recipe + f.ss01_i + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/fitacyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/fitacyr.glif new file mode 100644 index 00000000..dcff52a7 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/fitacyr.glif @@ -0,0 +1,76 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + obarcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/five.glif b/sources/FixelText-SemiBold.ufo/glyphs/five.glif new file mode 100644 index 00000000..f076d8ff --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/five.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/five.osf.glif b/sources/FixelText-SemiBold.ufo/glyphs/five.osf.glif new file mode 100644 index 00000000..3c2fd390 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/five.osf.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + five + com.fontlab.metricsRight + five + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/five.tf.glif b/sources/FixelText-SemiBold.ufo/glyphs/five.tf.glif new file mode 100644 index 00000000..c7df22b3 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/five.tf.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/fl.glif b/sources/FixelText-SemiBold.ufo/glyphs/fl.glif new file mode 100644 index 00000000..66793077 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/fl.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f + com.fontlab.metricsRight + l + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/fl.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/fl.ss01.glif new file mode 100644 index 00000000..1eec8b1a --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/fl.ss01.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f.ss01 + com.fontlab.metricsRight + l.ss01 + com.fontlab.recipe + f.ss01_l.ss01 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/floretteblack.glif b/sources/FixelText-SemiBold.ufo/glyphs/floretteblack.glif new file mode 100644 index 00000000..3a3db57b --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/floretteblack.glif @@ -0,0 +1,522 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/floretteoutlinedpetalledblackeight.glif b/sources/FixelText-SemiBold.ufo/glyphs/floretteoutlinedpetalledblackeight.glif new file mode 100644 index 00000000..091568d1 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/floretteoutlinedpetalledblackeight.glif @@ -0,0 +1,693 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/florettewhite.glif b/sources/FixelText-SemiBold.ufo/glyphs/florettewhite.glif new file mode 100644 index 00000000..1d4f1e81 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/florettewhite.glif @@ -0,0 +1,417 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/florin.glif b/sources/FixelText-SemiBold.ufo/glyphs/florin.glif new file mode 100644 index 00000000..a45ae57b --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/florin.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/flower.glif b/sources/FixelText-SemiBold.ufo/glyphs/flower.glif new file mode 100644 index 00000000..2e23dc8a --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/flower.glif @@ -0,0 +1,278 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/four.glif b/sources/FixelText-SemiBold.ufo/glyphs/four.glif new file mode 100644 index 00000000..80fbb3c1 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/four.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/four.osf.glif b/sources/FixelText-SemiBold.ufo/glyphs/four.osf.glif new file mode 100644 index 00000000..13b375cd --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/four.osf.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + four + com.fontlab.metricsRight + four + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/four.tf.glif b/sources/FixelText-SemiBold.ufo/glyphs/four.tf.glif new file mode 100644 index 00000000..49301ea3 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/four.tf.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/fraction.glif b/sources/FixelText-SemiBold.ufo/glyphs/fraction.glif new file mode 100644 index 00000000..e3e774c5 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/fraction.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/g.glif b/sources/FixelText-SemiBold.ufo/glyphs/g.glif new file mode 100644 index 00000000..8a75ea58 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/g.glif @@ -0,0 +1,94 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/g.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/g.ss01.glif new file mode 100644 index 00000000..b253bc1d --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/g.ss01.glif @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/gacute.glif b/sources/FixelText-SemiBold.ufo/glyphs/gacute.glif new file mode 100644 index 00000000..970f75d2 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/gacute.glif @@ -0,0 +1,109 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + g+acute + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/gacute.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/gacute.ss01.glif new file mode 100644 index 00000000..5d0fc371 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/gacute.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + g.ss01+acute + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/gbreve.glif b/sources/FixelText-SemiBold.ufo/glyphs/gbreve.glif new file mode 100644 index 00000000..26ff3cd2 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/gbreve.glif @@ -0,0 +1,119 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + g+breve + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/gbreve.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/gbreve.ss01.glif new file mode 100644 index 00000000..7db8f454 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/gbreve.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + g.ss01+breve + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/gcircumflex.glif b/sources/FixelText-SemiBold.ufo/glyphs/gcircumflex.glif new file mode 100644 index 00000000..bbc9d1c4 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/gcircumflex.glif @@ -0,0 +1,113 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + g+circumflex + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/gcircumflex.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/gcircumflex.ss01.glif new file mode 100644 index 00000000..bf9dc8f7 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/gcircumflex.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + g.ss01+circumflex + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/gcommaaccent.glif b/sources/FixelText-SemiBold.ufo/glyphs/gcommaaccent.glif new file mode 100644 index 00000000..642b5b16 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/gcommaaccent.glif @@ -0,0 +1,121 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + g+commaaccentcomb.salt + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/gcommaaccent.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/gcommaaccent.ss01.glif new file mode 100644 index 00000000..0d6e1773 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/gcommaaccent.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + g.ss01+commaaccentcomb.salt + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/gdotaccent.glif b/sources/FixelText-SemiBold.ufo/glyphs/gdotaccent.glif new file mode 100644 index 00000000..046edeea --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/gdotaccent.glif @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + g+dotaccent + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/gdotaccent.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/gdotaccent.ss01.glif new file mode 100644 index 00000000..822e5170 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/gdotaccent.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + g.ss01+dotaccent + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/ge-cy.B_G_R_.glif b/sources/FixelText-SemiBold.ufo/glyphs/ge-cy.B_G_R_.glif new file mode 100644 index 00000000..640ae817 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/ge-cy.B_G_R_.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |s+5 + com.fontlab.metricsRight + |s+5 + com.fontlab.recipe + dzeReversed-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/ge-cy.S_R_B_.glif b/sources/FixelText-SemiBold.ufo/glyphs/ge-cy.S_R_B_.glif new file mode 100644 index 00000000..c092e8a2 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/ge-cy.S_R_B_.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + iota-cy+macron + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/ge-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/ge-cy.glif new file mode 100644 index 00000000..045054ed --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/ge-cy.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + т + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/gehookcyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/gehookcyr.glif new file mode 100644 index 00000000..706553f8 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/gehookcyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + г + com.fontlab.metricsRight + enmiddlehookcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/gehookstrokecyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/gehookstrokecyr.glif new file mode 100644 index 00000000..3b2439ef --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/gehookstrokecyr.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + gestrokecyr + com.fontlab.metricsRight + gestrokecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/germandbls.glif b/sources/FixelText-SemiBold.ufo/glyphs/germandbls.glif new file mode 100644 index 00000000..53528c20 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/germandbls.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + h-5 + com.fontlab.metricsRight + з + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/germandbls.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/germandbls.ss01.glif new file mode 100644 index 00000000..26c64c72 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/germandbls.ss01.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f.ss01 + com.fontlab.metricsRight + з + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/gestrokecyr.B_S_H_.glif b/sources/FixelText-SemiBold.ufo/glyphs/gestrokecyr.B_S_H_.glif new file mode 100644 index 00000000..6e7c4949 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/gestrokecyr.B_S_H_.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + г + com.fontlab.metricsRight + gestrokecyr + com.fontlab.recipe + gestrokecyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/gestrokecyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/gestrokecyr.glif new file mode 100644 index 00000000..8c63a3d5 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/gestrokecyr.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + г + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/getailcyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/getailcyr.glif new file mode 100644 index 00000000..51ade8c6 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/getailcyr.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + г + com.fontlab.metricsRight + г + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/gheupturn-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/gheupturn-cy.glif new file mode 100644 index 00000000..59407ec3 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/gheupturn-cy.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + г + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/gjecyr.S_R_B_.glif b/sources/FixelText-SemiBold.ufo/glyphs/gjecyr.S_R_B_.glif new file mode 100644 index 00000000..fa394ba5 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/gjecyr.S_R_B_.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + iota-cy+macronacute.SRB + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/gjecyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/gjecyr.glif new file mode 100644 index 00000000..ed5a33ff --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/gjecyr.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/grave.case.glif b/sources/FixelText-SemiBold.ufo/glyphs/grave.case.glif new file mode 100644 index 00000000..dfc9ae54 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/grave.case.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/grave.glif b/sources/FixelText-SemiBold.ufo/glyphs/grave.glif new file mode 100644 index 00000000..6aa6367e --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/grave.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/greater.glif b/sources/FixelText-SemiBold.ufo/glyphs/greater.glif new file mode 100644 index 00000000..fc4bbcf9 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/greater.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |less + com.fontlab.metricsRight + |less + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/greaterequal.glif b/sources/FixelText-SemiBold.ufo/glyphs/greaterequal.glif new file mode 100644 index 00000000..6cf188c2 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/greaterequal.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/guillemetleft.case.glif b/sources/FixelText-SemiBold.ufo/glyphs/guillemetleft.case.glif new file mode 100644 index 00000000..474610bc --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/guillemetleft.case.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + guilsinglleft + com.fontlab.metricsRight + guilsinglleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/guillemetleft.glif b/sources/FixelText-SemiBold.ufo/glyphs/guillemetleft.glif new file mode 100644 index 00000000..8fd82560 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/guillemetleft.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + guilsinglleft + com.fontlab.metricsRight + guilsinglleft + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/guillemetright.case.glif b/sources/FixelText-SemiBold.ufo/glyphs/guillemetright.case.glif new file mode 100644 index 00000000..e8fcaf70 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/guillemetright.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |guillemetleft.case + com.fontlab.metricsRight + |guillemetleft.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/guillemetright.glif b/sources/FixelText-SemiBold.ufo/glyphs/guillemetright.glif new file mode 100644 index 00000000..c0d7edf8 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/guillemetright.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |guilsinglleft + com.fontlab.metricsRight + |guilsinglleft + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/guilsinglleft.case.glif b/sources/FixelText-SemiBold.ufo/glyphs/guilsinglleft.case.glif new file mode 100644 index 00000000..b735602b --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/guilsinglleft.case.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/guilsinglleft.glif b/sources/FixelText-SemiBold.ufo/glyphs/guilsinglleft.glif new file mode 100644 index 00000000..b1bcb8c5 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/guilsinglleft.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/guilsinglright.case.glif b/sources/FixelText-SemiBold.ufo/glyphs/guilsinglright.case.glif new file mode 100644 index 00000000..18888e60 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/guilsinglright.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |guilsinglleft + com.fontlab.metricsRight + |guilsinglleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/guilsinglright.glif b/sources/FixelText-SemiBold.ufo/glyphs/guilsinglright.glif new file mode 100644 index 00000000..e412aacd --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/guilsinglright.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + |guilsinglleft + com.fontlab.metricsRight + |guilsinglleft + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/h.glif b/sources/FixelText-SemiBold.ufo/glyphs/h.glif new file mode 100644 index 00000000..4761c515 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/h.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + com.fontlab.metricsRight + n + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/ha-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/ha-cy.glif new file mode 100644 index 00000000..dd623148 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/ha-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + x + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/haabkhcyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/haabkhcyr.glif new file mode 100644 index 00000000..040410f6 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/haabkhcyr.glif @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + |o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/hahookcyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/hahookcyr.glif new file mode 100644 index 00000000..bb16e26a --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/hahookcyr.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + x + com.fontlab.metricsRight + x + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/hardsign-cy.B_G_R_.glif b/sources/FixelText-SemiBold.ufo/glyphs/hardsign-cy.B_G_R_.glif new file mode 100644 index 00000000..e9f16e56 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/hardsign-cy.B_G_R_.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/hardsign-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/hardsign-cy.glif new file mode 100644 index 00000000..7b86e47c --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/hardsign-cy.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/hardsign-cy.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/hardsign-cy.ss01.glif new file mode 100644 index 00000000..e3db0b65 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/hardsign-cy.ss01.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/hastrokecyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/hastrokecyr.glif new file mode 100644 index 00000000..ca3bd222 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/hastrokecyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + x + com.fontlab.metricsRight + x + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/hbar.glif b/sources/FixelText-SemiBold.ufo/glyphs/hbar.glif new file mode 100644 index 00000000..3f3248ec --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/hbar.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + h + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/hcircumflex.glif b/sources/FixelText-SemiBold.ufo/glyphs/hcircumflex.glif new file mode 100644 index 00000000..3626709b --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/hcircumflex.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + h+circumflex.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/heart.glif b/sources/FixelText-SemiBold.ufo/glyphs/heart.glif new file mode 100644 index 00000000..3a25b1cf --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/heart.glif @@ -0,0 +1,320 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/heartwhite.glif b/sources/FixelText-SemiBold.ufo/glyphs/heartwhite.glif new file mode 100644 index 00000000..0a3d37d4 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/heartwhite.glif @@ -0,0 +1,189 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =38 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/hryvnia.glif b/sources/FixelText-SemiBold.ufo/glyphs/hryvnia.glif new file mode 100644 index 00000000..69a64aaa --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/hryvnia.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/hundredmillionscomb-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/hundredmillionscomb-cy.glif new file mode 100644 index 00000000..e4c9b5df --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/hundredmillionscomb-cy.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/hundredthousandscombcyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/hundredthousandscombcyr.glif new file mode 100644 index 00000000..b40c108a --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/hundredthousandscombcyr.glif @@ -0,0 +1,141 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/hungarumlaut.case.glif b/sources/FixelText-SemiBold.ufo/glyphs/hungarumlaut.case.glif new file mode 100644 index 00000000..5adb0018 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/hungarumlaut.case.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/hungarumlaut.glif b/sources/FixelText-SemiBold.ufo/glyphs/hungarumlaut.glif new file mode 100644 index 00000000..8ee1205b --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/hungarumlaut.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/hwe-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/hwe-cy.glif new file mode 100644 index 00000000..656b1bcc --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/hwe-cy.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + h + com.fontlab.metricsRight + h + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/hyphen.case.glif b/sources/FixelText-SemiBold.ufo/glyphs/hyphen.case.glif new file mode 100644 index 00000000..995eafa0 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/hyphen.case.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.metricsLeft + hyphen + com.fontlab.metricsRight + hyphen + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/hyphen.glif b/sources/FixelText-SemiBold.ufo/glyphs/hyphen.glif new file mode 100644 index 00000000..81d0f794 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/hyphen.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/i-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/i-cy.glif new file mode 100644 index 00000000..f8c8c33a --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/i-cy.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + i + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/i.glif b/sources/FixelText-SemiBold.ufo/glyphs/i.glif new file mode 100644 index 00000000..cd0f899c --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/i.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + dotlessi+dotaccent + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/ia-cy.accented.glif b/sources/FixelText-SemiBold.ufo/glyphs/ia-cy.accented.glif new file mode 100644 index 00000000..43445e3e --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/ia-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + я+acute + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/ia-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/ia-cy.glif new file mode 100644 index 00000000..1ffaa3c5 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/ia-cy.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/ia-cy.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/ia-cy.ss01.glif new file mode 100644 index 00000000..f3bd7d44 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/ia-cy.ss01.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/iacute.glif b/sources/FixelText-SemiBold.ufo/glyphs/iacute.glif new file mode 100644 index 00000000..58b2d179 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/iacute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + dotlessi+acute + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/ibreve.glif b/sources/FixelText-SemiBold.ufo/glyphs/ibreve.glif new file mode 100644 index 00000000..c6eadfa5 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/ibreve.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + dotlessi+breve + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/icircumflex.glif b/sources/FixelText-SemiBold.ufo/glyphs/icircumflex.glif new file mode 100644 index 00000000..f668df3d --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/icircumflex.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + dotlessi+circumflex + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/idieresis.glif b/sources/FixelText-SemiBold.ufo/glyphs/idieresis.glif new file mode 100644 index 00000000..56c53d0d --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/idieresis.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + idotless+dieresis.alt + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/idieresiscyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/idieresiscyr.glif new file mode 100644 index 00000000..6704a7e2 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/idieresiscyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ii-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/idotless.glif b/sources/FixelText-SemiBold.ufo/glyphs/idotless.glif new file mode 100644 index 00000000..736cbc23 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/idotless.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/ie-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/ie-cy.glif new file mode 100644 index 00000000..9fd44068 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/ie-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/ie-cy.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/ie-cy.ss01.glif new file mode 100644 index 00000000..a0ab8f5d --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/ie-cy.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/iebrevecyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/iebrevecyr.glif new file mode 100644 index 00000000..609158a5 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/iebrevecyr.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+breve + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/iegravecyr.S_R_B_.glif b/sources/FixelText-SemiBold.ufo/glyphs/iegravecyr.S_R_B_.glif new file mode 100644 index 00000000..7f239c80 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/iegravecyr.S_R_B_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+grave + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/iegravecyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/iegravecyr.glif new file mode 100644 index 00000000..8fb5f38b --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/iegravecyr.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+grave + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/igrave.glif b/sources/FixelText-SemiBold.ufo/glyphs/igrave.glif new file mode 100644 index 00000000..9d35ac5d --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/igrave.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + dotlessi+grave + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/igravecyr.S_R_B_.glif b/sources/FixelText-SemiBold.ufo/glyphs/igravecyr.S_R_B_.glif new file mode 100644 index 00000000..2d833e79 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/igravecyr.S_R_B_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+grave + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/igravecyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/igravecyr.glif new file mode 100644 index 00000000..6875e8b8 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/igravecyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ii-cy+grave + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/ii-cy.B_G_R_.glif b/sources/FixelText-SemiBold.ufo/glyphs/ii-cy.B_G_R_.glif new file mode 100644 index 00000000..66413fec --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/ii-cy.B_G_R_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/ii-cy.accented.glif b/sources/FixelText-SemiBold.ufo/glyphs/ii-cy.accented.glif new file mode 100644 index 00000000..03efae53 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/ii-cy.accented.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + и+acute + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/ii-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/ii-cy.glif new file mode 100644 index 00000000..efa68752 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/ii-cy.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/iishort-cy.B_G_R_.glif b/sources/FixelText-SemiBold.ufo/glyphs/iishort-cy.B_G_R_.glif new file mode 100644 index 00000000..baef639f --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/iishort-cy.B_G_R_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/iishort-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/iishort-cy.glif new file mode 100644 index 00000000..6666e153 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/iishort-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + icyr+breve + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/ij.glif b/sources/FixelText-SemiBold.ufo/glyphs/ij.glif new file mode 100644 index 00000000..5be8d1f2 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/ij.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + i + com.fontlab.metricsRight + j + com.fontlab.recipe + i_j + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/imacron.glif b/sources/FixelText-SemiBold.ufo/glyphs/imacron.glif new file mode 100644 index 00000000..332afc82 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/imacron.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =5 + com.fontlab.metricsRight + =5 + com.fontlab.recipe + idotless+macron + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/imacroncyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/imacroncyr.glif new file mode 100644 index 00000000..5c70507d --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/imacroncyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ii-cy+macron + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/increment.glif b/sources/FixelText-SemiBold.ufo/glyphs/increment.glif new file mode 100644 index 00000000..95976e04 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/increment.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/infinity.glif b/sources/FixelText-SemiBold.ufo/glyphs/infinity.glif new file mode 100644 index 00000000..3f03e970 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/infinity.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/integral.glif b/sources/FixelText-SemiBold.ufo/glyphs/integral.glif new file mode 100644 index 00000000..573e7c75 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/integral.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/io-cy.accented.glif b/sources/FixelText-SemiBold.ufo/glyphs/io-cy.accented.glif new file mode 100644 index 00000000..43fe9102 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/io-cy.accented.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsLeft + e + com.fontlab.metricsRight + e + com.fontlab.recipe + e+dieresisacute + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/io-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/io-cy.glif new file mode 100644 index 00000000..f3cabff2 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/io-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + edieresis + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/io-cy.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/io-cy.ss01.glif new file mode 100644 index 00000000..6452a708 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/io-cy.ss01.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + edieresis.ss01 + com.schriftgestaltung.Glyphs.ComponentInfo + + + alignment + -1 + index + 0 + name + edieresis.ss01 + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/iogonek.glif b/sources/FixelText-SemiBold.ufo/glyphs/iogonek.glif new file mode 100644 index 00000000..24f77233 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/iogonek.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + i+ogonek + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/iota-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/iota-cy.glif new file mode 100644 index 00000000..4976432b --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/iota-cy.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l.ss01 + com.fontlab.metricsRight + l.ss01 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/iotifieda-cy.B_G_R_.glif b/sources/FixelText-SemiBold.ufo/glyphs/iotifieda-cy.B_G_R_.glif new file mode 100644 index 00000000..cc6830bc --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/iotifieda-cy.B_G_R_.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + el-cy.BGR + com.fontlab.recipe + iotifieda-cy + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/iotifieda-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/iotifieda-cy.glif new file mode 100644 index 00000000..f6c3eb15 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/iotifieda-cy.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + yusClosedlittle-cy + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/iotifieda-cy.hist.glif b/sources/FixelText-SemiBold.ufo/glyphs/iotifieda-cy.hist.glif new file mode 100644 index 00000000..5111eea1 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/iotifieda-cy.hist.glif @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + reversedzecyr + com.fontlab.metricsRight + a + public.markColor + 0.6,0.997,1,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/ishortsharptailcyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/ishortsharptailcyr.glif new file mode 100644 index 00000000..a89141c3 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/ishortsharptailcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + й + com.fontlab.metricsRight + ensharptailcyr + com.fontlab.recipe + й + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/itilde.glif b/sources/FixelText-SemiBold.ufo/glyphs/itilde.glif new file mode 100644 index 00000000..d401ab56 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/itilde.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + dotlessi+tilde + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/iu-cy.B_G_R_.glif b/sources/FixelText-SemiBold.ufo/glyphs/iu-cy.B_G_R_.glif new file mode 100644 index 00000000..b69c06f6 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/iu-cy.B_G_R_.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + o + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/iu-cy.accented.glif b/sources/FixelText-SemiBold.ufo/glyphs/iu-cy.accented.glif new file mode 100644 index 00000000..effb8830 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/iu-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ю+acute + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/iu-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/iu-cy.glif new file mode 100644 index 00000000..0caf0ba4 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/iu-cy.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/izhitsacyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/izhitsacyr.glif new file mode 100644 index 00000000..aa267b43 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/izhitsacyr.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + v + com.fontlab.metricsRight + + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/izhitsagravedblcyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/izhitsagravedblcyr.glif new file mode 100644 index 00000000..9520bd3b --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/izhitsagravedblcyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + com.fontlab.metricsLeft + izhitsacyr + com.fontlab.metricsRight + izhitsacyr + com.fontlab.recipe + izhitsacyr+hungarumlaut + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/j.glif b/sources/FixelText-SemiBold.ufo/glyphs/j.glif new file mode 100644 index 00000000..42a88ceb --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/j.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + i + com.fontlab.recipe + dotlessj+dotaccent + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/jcircumflex.glif b/sources/FixelText-SemiBold.ufo/glyphs/jcircumflex.glif new file mode 100644 index 00000000..a9db328d --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/jcircumflex.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + dotlessj+circumflex + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/jdotless.glif b/sources/FixelText-SemiBold.ufo/glyphs/jdotless.glif new file mode 100644 index 00000000..fd018007 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/jdotless.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + l + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/je-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/je-cy.glif new file mode 100644 index 00000000..ff5a8d34 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/je-cy.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + j + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/k.glif b/sources/FixelText-SemiBold.ufo/glyphs/k.glif new file mode 100644 index 00000000..876192c8 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/k.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/ka-cy.B_G_R_.glif b/sources/FixelText-SemiBold.ufo/glyphs/ka-cy.B_G_R_.glif new file mode 100644 index 00000000..41cc8ef6 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/ka-cy.B_G_R_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + k + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/ka-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/ka-cy.glif new file mode 100644 index 00000000..1a6325cf --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/ka-cy.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + k + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/kaaleutcyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/kaaleutcyr.glif new file mode 100644 index 00000000..e2476feb --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/kaaleutcyr.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + k + com.fontlab.metricsRight + k + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/kabashkcyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/kabashkcyr.glif new file mode 100644 index 00000000..49d959f6 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/kabashkcyr.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hardsign-cy + com.fontlab.metricsRight + k + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/kahookcyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/kahookcyr.glif new file mode 100644 index 00000000..4cc67de4 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/kahookcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + n + com.fontlab.metricsRight + k+10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/kastrokecyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/kastrokecyr.glif new file mode 100644 index 00000000..cad8811b --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/kastrokecyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hbar + com.fontlab.metricsRight + k + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/katailcyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/katailcyr.glif new file mode 100644 index 00000000..fb872a39 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/katailcyr.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + k + com.fontlab.metricsRight + к-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/kaverticalstrokecyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/kaverticalstrokecyr.glif new file mode 100644 index 00000000..29cb9bdb --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/kaverticalstrokecyr.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + k + com.fontlab.metricsRight + k + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/kcommaaccent.glif b/sources/FixelText-SemiBold.ufo/glyphs/kcommaaccent.glif new file mode 100644 index 00000000..85f4b943 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/kcommaaccent.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsLeft + k + com.fontlab.metricsRight + k + com.fontlab.recipe + k+commaaccentcomb + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/kgreenlandic.glif b/sources/FixelText-SemiBold.ufo/glyphs/kgreenlandic.glif new file mode 100644 index 00000000..048dc3b2 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/kgreenlandic.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + kacyr + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/kjecyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/kjecyr.glif new file mode 100644 index 00000000..6948c932 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/kjecyr.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/knightblack.glif b/sources/FixelText-SemiBold.ufo/glyphs/knightblack.glif new file mode 100644 index 00000000..f097317d --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/knightblack.glif @@ -0,0 +1,313 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/knightwhite.glif b/sources/FixelText-SemiBold.ufo/glyphs/knightwhite.glif new file mode 100644 index 00000000..22872436 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/knightwhite.glif @@ -0,0 +1,320 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/koppacyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/koppacyr.glif new file mode 100644 index 00000000..37bb8411 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/koppacyr.glif @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + c-20 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/ksicyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/ksicyr.glif new file mode 100644 index 00000000..e0d65ba1 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/ksicyr.glif @@ -0,0 +1,102 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + з-10 + com.fontlab.metricsRight + з + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/l.glif b/sources/FixelText-SemiBold.ufo/glyphs/l.glif new file mode 100644 index 00000000..20ba0ab9 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/l.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/l.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/l.ss01.glif new file mode 100644 index 00000000..47c1d7a4 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/l.ss01.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/lacute.glif b/sources/FixelText-SemiBold.ufo/glyphs/lacute.glif new file mode 100644 index 00000000..deebc5ac --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/lacute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l+acute.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/lacute.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/lacute.ss01.glif new file mode 100644 index 00000000..2f6146ef --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/lacute.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l.ss01+acute.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/layerinfo.plist b/sources/FixelText-SemiBold.ufo/glyphs/layerinfo.plist new file mode 100644 index 00000000..8c198655 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/layerinfo.plist @@ -0,0 +1,21 @@ + + + + + lib + + com.fontlab.layer.name + Body + com.fontlab.layer.opacity + 1 + com.fontlab.layer.visible + + com.fontlab.layer.locked + + com.fontlab.layer.service + + com.fontlab.layer.wireframe + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/lcaron.glif b/sources/FixelText-SemiBold.ufo/glyphs/lcaron.glif new file mode 100644 index 00000000..67048cf8 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/lcaron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l+caron.salt + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/lcaron.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/lcaron.ss01.glif new file mode 100644 index 00000000..e4b2a206 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/lcaron.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l.ss01+caron.salt + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/lcommaaccent.glif b/sources/FixelText-SemiBold.ufo/glyphs/lcommaaccent.glif new file mode 100644 index 00000000..a1b4a915 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/lcommaaccent.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l+commaaccentcomb + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/lcommaaccent.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/lcommaaccent.ss01.glif new file mode 100644 index 00000000..62a00e29 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/lcommaaccent.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l.ss01+commaaccentcomb + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/ldot.glif b/sources/FixelText-SemiBold.ufo/glyphs/ldot.glif new file mode 100644 index 00000000..645190b0 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/ldot.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/ldot.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/ldot.ss01.glif new file mode 100644 index 00000000..e0bbbf1a --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/ldot.ss01.glif @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + l.ss01_periodcentered + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/leo.glif b/sources/FixelText-SemiBold.ufo/glyphs/leo.glif new file mode 100644 index 00000000..72ac1b77 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/leo.glif @@ -0,0 +1,494 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/less.glif b/sources/FixelText-SemiBold.ufo/glyphs/less.glif new file mode 100644 index 00000000..3a8c8c40 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/less.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/lessequal.glif b/sources/FixelText-SemiBold.ufo/glyphs/lessequal.glif new file mode 100644 index 00000000..269dfd94 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/lessequal.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/lhacyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/lhacyr.glif new file mode 100644 index 00000000..dcf9e921 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/lhacyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + х + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/ljecyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/ljecyr.glif new file mode 100644 index 00000000..91508b61 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/ljecyr.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + ь + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/ljecyr.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/ljecyr.ss01.glif new file mode 100644 index 00000000..8108f6f1 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/ljecyr.ss01.glif @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + ь + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/ljekomicyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/ljekomicyr.glif new file mode 100644 index 00000000..86fd44c3 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/ljekomicyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + njekomicyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/longs.glif b/sources/FixelText-SemiBold.ufo/glyphs/longs.glif new file mode 100644 index 00000000..4b1bc792 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/longs.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + n + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/lslash.glif b/sources/FixelText-SemiBold.ufo/glyphs/lslash.glif new file mode 100644 index 00000000..04da20a7 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/lslash.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Lslash+12 + com.fontlab.metricsRight + |Lslash+12 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/lslash.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/lslash.ss01.glif new file mode 100644 index 00000000..f74713df --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/lslash.ss01.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Lslash-10 + com.fontlab.metricsRight + |Lslash + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/m.glif b/sources/FixelText-SemiBold.ufo/glyphs/m.glif new file mode 100644 index 00000000..f4ad91f6 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/m.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + n + com.fontlab.metricsRight + n + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/macron-fwd.alt.glif b/sources/FixelText-SemiBold.ufo/glyphs/macron-fwd.alt.glif new file mode 100644 index 00000000..07e72475 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/macron-fwd.alt.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/macron-fwd.glif b/sources/FixelText-SemiBold.ufo/glyphs/macron-fwd.glif new file mode 100644 index 00000000..3aba6958 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/macron-fwd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/macron.case.glif b/sources/FixelText-SemiBold.ufo/glyphs/macron.case.glif new file mode 100644 index 00000000..d60af668 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/macron.case.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/macron.glif b/sources/FixelText-SemiBold.ufo/glyphs/macron.glif new file mode 100644 index 00000000..a180e9d1 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/macron.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/macronacute.S_R_B_.glif b/sources/FixelText-SemiBold.ufo/glyphs/macronacute.S_R_B_.glif new file mode 100644 index 00000000..6d098d64 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/macronacute.S_R_B_.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + macron+acute + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/millionscombcyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/millionscombcyr.glif new file mode 100644 index 00000000..0e4e3a9a --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/millionscombcyr.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/minus.glif b/sources/FixelText-SemiBold.ufo/glyphs/minus.glif new file mode 100644 index 00000000..ac3ab6be --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/minus.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/minute.glif b/sources/FixelText-SemiBold.ufo/glyphs/minute.glif new file mode 100644 index 00000000..d05701ec --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/minute.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/mu.glif b/sources/FixelText-SemiBold.ufo/glyphs/mu.glif new file mode 100644 index 00000000..5c23b043 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/mu.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + p + com.fontlab.metricsRight + u + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/multiply.glif b/sources/FixelText-SemiBold.ufo/glyphs/multiply.glif new file mode 100644 index 00000000..81b3b1f9 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/multiply.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/n.glif b/sources/FixelText-SemiBold.ufo/glyphs/n.glif new file mode 100644 index 00000000..1912a566 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/n.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/nacute.glif b/sources/FixelText-SemiBold.ufo/glyphs/nacute.glif new file mode 100644 index 00000000..920a8c69 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/nacute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + n+acute + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/napostrophe.glif b/sources/FixelText-SemiBold.ufo/glyphs/napostrophe.glif new file mode 100644 index 00000000..bfe4dad5 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/napostrophe.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + com.fontlab.metricsRight + n + com.schriftgestaltung.Glyphs.ComponentInfo + + + alignment + -1 + index + 0 + name + n + + + alignment + -1 + index + 1 + name + quoteright + + + com.schriftgestaltung.Glyphs.rightMetricsKey + n + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/ncaron.glif b/sources/FixelText-SemiBold.ufo/glyphs/ncaron.glif new file mode 100644 index 00000000..e93b7d80 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/ncaron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + n+caron + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/ncommaaccent.glif b/sources/FixelText-SemiBold.ufo/glyphs/ncommaaccent.glif new file mode 100644 index 00000000..404fc89e --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/ncommaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + n+commaaccentcomb + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/neptune.glif b/sources/FixelText-SemiBold.ufo/glyphs/neptune.glif new file mode 100644 index 00000000..8eecead0 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/neptune.glif @@ -0,0 +1,125 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ш + com.fontlab.metricsRight + Ш + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/nine.glif b/sources/FixelText-SemiBold.ufo/glyphs/nine.glif new file mode 100644 index 00000000..d7759bde --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/nine.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + |six + com.fontlab.metricsRight + |six + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/nine.osf.glif b/sources/FixelText-SemiBold.ufo/glyphs/nine.osf.glif new file mode 100644 index 00000000..46286061 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/nine.osf.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |six + com.fontlab.metricsRight + |six + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/nine.tf.glif b/sources/FixelText-SemiBold.ufo/glyphs/nine.tf.glif new file mode 100644 index 00000000..407aabfd --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/nine.tf.glif @@ -0,0 +1,7 @@ + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/njecyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/njecyr.glif new file mode 100644 index 00000000..9cdc31c0 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/njecyr.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + ь + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/njecyr.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/njecyr.ss01.glif new file mode 100644 index 00000000..285ebd6b --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/njecyr.ss01.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + ь + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/njekomicyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/njekomicyr.glif new file mode 100644 index 00000000..005176c1 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/njekomicyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + |u + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/notequal.glif b/sources/FixelText-SemiBold.ufo/glyphs/notequal.glif new file mode 100644 index 00000000..fbe1857a --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/notequal.glif @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/ntilde.glif b/sources/FixelText-SemiBold.ufo/glyphs/ntilde.glif new file mode 100644 index 00000000..23a29634 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/ntilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + n+tilde + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/numbersign.glif b/sources/FixelText-SemiBold.ufo/glyphs/numbersign.glif new file mode 100644 index 00000000..47015531 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/numbersign.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/numero.glif b/sources/FixelText-SemiBold.ufo/glyphs/numero.glif new file mode 100644 index 00000000..e8ff0ff7 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/numero.glif @@ -0,0 +1,90 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + N + com.fontlab.recipe + N+ordmasculine + com.schriftgestaltung.Glyphs.ComponentInfo + + + alignment + -1 + index + 0 + name + N + + + alignment + -1 + index + 1 + name + ordmasculine + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/numero.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/numero.ss01.glif new file mode 100644 index 00000000..70323cc6 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/numero.ss01.glif @@ -0,0 +1,95 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + N.ss01 + com.fontlab.metricsRight + ordmasculine + com.fontlab.recipe + N.ss01+ordmasculine + com.schriftgestaltung.Glyphs.ComponentInfo + + + alignment + -1 + index + 0 + name + ordmasculine + + + alignment + -1 + index + 1 + name + N.ss01 + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/o-cy.accented.glif b/sources/FixelText-SemiBold.ufo/glyphs/o-cy.accented.glif new file mode 100644 index 00000000..6a1fe0ec --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/o-cy.accented.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+acute + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/o-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/o-cy.glif new file mode 100644 index 00000000..cf6ba10d --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/o-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/o.glif b/sources/FixelText-SemiBold.ufo/glyphs/o.glif new file mode 100644 index 00000000..3fe91e43 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/o.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/oB_inocular-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/oB_inocular-cy.glif new file mode 100644 index 00000000..6dd880d1 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/oB_inocular-cy.glif @@ -0,0 +1,81 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/oD_oubleM_onocular-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/oD_oubleM_onocular-cy.glif new file mode 100644 index 00000000..426e223b --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/oD_oubleM_onocular-cy.glif @@ -0,0 +1,121 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + com.fontlab.recipe + doubleo-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/oM_onocular-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/oM_onocular-cy.glif new file mode 100644 index 00000000..ab9bb9ae --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/oM_onocular-cy.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/oacute.glif b/sources/FixelText-SemiBold.ufo/glyphs/oacute.glif new file mode 100644 index 00000000..fcf4ca45 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/oacute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+acute + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/obarcyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/obarcyr.glif new file mode 100644 index 00000000..7b1a7997 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/obarcyr.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/obardieresiscyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/obardieresiscyr.glif new file mode 100644 index 00000000..95c73677 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/obardieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + obarcyr+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/obreve.glif b/sources/FixelText-SemiBold.ufo/glyphs/obreve.glif new file mode 100644 index 00000000..2180a911 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/obreve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+breve + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/ocircumflex.glif b/sources/FixelText-SemiBold.ufo/glyphs/ocircumflex.glif new file mode 100644 index 00000000..e6532964 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/ocircumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+circumflex + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/odieresis.glif b/sources/FixelText-SemiBold.ufo/glyphs/odieresis.glif new file mode 100644 index 00000000..1186af37 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/odieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+dieresis + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/odieresiscyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/odieresiscyr.glif new file mode 100644 index 00000000..01502786 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/odieresiscyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/oe.glif b/sources/FixelText-SemiBold.ufo/glyphs/oe.glif new file mode 100644 index 00000000..6e992461 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/oe.glif @@ -0,0 +1,86 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + e + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/oe.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/oe.ss01.glif new file mode 100644 index 00000000..77052dc5 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/oe.ss01.glif @@ -0,0 +1,95 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + e.ss01 + public.markColor + 0.6,0.997,1,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/ogonek.glif b/sources/FixelText-SemiBold.ufo/glyphs/ogonek.glif new file mode 100644 index 00000000..5349122a --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/ogonek.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/ograve.glif b/sources/FixelText-SemiBold.ufo/glyphs/ograve.glif new file mode 100644 index 00000000..1ee03193 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/ograve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+grave + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/ohungarumlaut.glif b/sources/FixelText-SemiBold.ufo/glyphs/ohungarumlaut.glif new file mode 100644 index 00000000..cf816f94 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/ohungarumlaut.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+hungarumlaut + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/omacron.glif b/sources/FixelText-SemiBold.ufo/glyphs/omacron.glif new file mode 100644 index 00000000..9d97740f --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/omacron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+macron + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/omegaB_road-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/omegaB_road-cy.glif new file mode 100644 index 00000000..8685885f --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/omegaB_road-cy.glif @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o+5 + com.fontlab.metricsRight + o+5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/omegacyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/omegacyr.glif new file mode 100644 index 00000000..fcaadab5 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/omegacyr.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + w + com.fontlab.metricsRight + w + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/omegaroundcyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/omegaroundcyr.glif new file mode 100644 index 00000000..a32ecfb3 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/omegaroundcyr.glif @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/omegatitlocyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/omegatitlocyr.glif new file mode 100644 index 00000000..1e79be66 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/omegatitlocyr.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o+5 + com.fontlab.metricsRight + o+5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/omultiocular-cy.alt.glif b/sources/FixelText-SemiBold.ufo/glyphs/omultiocular-cy.alt.glif new file mode 100644 index 00000000..df780364 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/omultiocular-cy.alt.glif @@ -0,0 +1,367 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + oMonocular-cy + com.fontlab.metricsRight + oMonocular-cy + public.markColor + 0.6,0.997,1,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/omultiocular-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/omultiocular-cy.glif new file mode 100644 index 00000000..4cf85de8 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/omultiocular-cy.glif @@ -0,0 +1,516 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + oMonocular-cy + com.fontlab.metricsRight + oMonocular-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/one.glif b/sources/FixelText-SemiBold.ufo/glyphs/one.glif new file mode 100644 index 00000000..bc843a21 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/one.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =40 + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/one.osf.glif b/sources/FixelText-SemiBold.ufo/glyphs/one.osf.glif new file mode 100644 index 00000000..126feded --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/one.osf.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + one + com.fontlab.metricsRight + one + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/one.tf.glif b/sources/FixelText-SemiBold.ufo/glyphs/one.tf.glif new file mode 100644 index 00000000..e8e6087f --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/one.tf.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/onehalf.glif b/sources/FixelText-SemiBold.ufo/glyphs/onehalf.glif new file mode 100644 index 00000000..1b259dc1 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/onehalf.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/onequarter.glif b/sources/FixelText-SemiBold.ufo/glyphs/onequarter.glif new file mode 100644 index 00000000..819e898e --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/onequarter.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/onesuperior.glif b/sources/FixelText-SemiBold.ufo/glyphs/onesuperior.glif new file mode 100644 index 00000000..38ca7300 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/onesuperior.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/ordfeminine.glif b/sources/FixelText-SemiBold.ufo/glyphs/ordfeminine.glif new file mode 100644 index 00000000..af44621d --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/ordfeminine.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/ordmasculine.glif b/sources/FixelText-SemiBold.ufo/glyphs/ordmasculine.glif new file mode 100644 index 00000000..d08c0f9d --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/ordmasculine.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/oslash.glif b/sources/FixelText-SemiBold.ufo/glyphs/oslash.glif new file mode 100644 index 00000000..6f87041e --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/oslash.glif @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/oslashacute.glif b/sources/FixelText-SemiBold.ufo/glyphs/oslashacute.glif new file mode 100644 index 00000000..f08b2f7c --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/oslashacute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + oslash+acute + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/otcyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/otcyr.glif new file mode 100644 index 00000000..922724f4 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/otcyr.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsRight + w + com.fontlab.recipe + omegacyr+uni2DEE + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/otilde.glif b/sources/FixelText-SemiBold.ufo/glyphs/otilde.glif new file mode 100644 index 00000000..7b9f6771 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/otilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+tilde + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/p.glif b/sources/FixelText-SemiBold.ufo/glyphs/p.glif new file mode 100644 index 00000000..a20661b4 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/p.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/p.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/p.ss01.glif new file mode 100644 index 00000000..e29ace71 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/p.ss01.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/palatcombcyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/palatcombcyr.glif new file mode 100644 index 00000000..faca034b --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/palatcombcyr.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/palochkacyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/palochkacyr.glif new file mode 100644 index 00000000..1f2e92e3 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/palochkacyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/paragraph.glif b/sources/FixelText-SemiBold.ufo/glyphs/paragraph.glif new file mode 100644 index 00000000..222bb990 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/paragraph.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |P + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/parenleft.case.glif b/sources/FixelText-SemiBold.ufo/glyphs/parenleft.case.glif new file mode 100644 index 00000000..614dedb2 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/parenleft.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |parenright.case + com.fontlab.metricsRight + |parenright.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/parenleft.glif b/sources/FixelText-SemiBold.ufo/glyphs/parenleft.glif new file mode 100644 index 00000000..a7616aa2 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/parenleft.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/parenright.case.glif b/sources/FixelText-SemiBold.ufo/glyphs/parenright.case.glif new file mode 100644 index 00000000..2f222457 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/parenright.case.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + parenright + com.fontlab.metricsRight + parenright + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/parenright.glif b/sources/FixelText-SemiBold.ufo/glyphs/parenright.glif new file mode 100644 index 00000000..39e2a2a9 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/parenright.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/partialdiff.glif b/sources/FixelText-SemiBold.ufo/glyphs/partialdiff.glif new file mode 100644 index 00000000..c6d6a1c4 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/partialdiff.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/pe-cy.B_G_R_.glif b/sources/FixelText-SemiBold.ufo/glyphs/pe-cy.B_G_R_.glif new file mode 100644 index 00000000..94fad168 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/pe-cy.B_G_R_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + n + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/pe-cy.S_R_B_.glif b/sources/FixelText-SemiBold.ufo/glyphs/pe-cy.S_R_B_.glif new file mode 100644 index 00000000..b2904a74 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/pe-cy.S_R_B_.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+macron-fwd.alt + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/pe-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/pe-cy.glif new file mode 100644 index 00000000..1eb0745c --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/pe-cy.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/pehookcyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/pehookcyr.glif new file mode 100644 index 00000000..859c8deb --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/pehookcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + п + com.fontlab.metricsRight + enmiddlehookcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/percent.glif b/sources/FixelText-SemiBold.ufo/glyphs/percent.glif new file mode 100644 index 00000000..2a3cad74 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/percent.glif @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/period.glif b/sources/FixelText-SemiBold.ufo/glyphs/period.glif new file mode 100644 index 00000000..6a380230 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/period.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/periodcentered.glif b/sources/FixelText-SemiBold.ufo/glyphs/periodcentered.glif new file mode 100644 index 00000000..e8ead1c3 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/periodcentered.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/perthousand.glif b/sources/FixelText-SemiBold.ufo/glyphs/perthousand.glif new file mode 100644 index 00000000..c645a2ef --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/perthousand.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/petailcyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/petailcyr.glif new file mode 100644 index 00000000..c1f6889b --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/petailcyr.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + п + com.fontlab.metricsRight + entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/pi.glif b/sources/FixelText-SemiBold.ufo/glyphs/pi.glif new file mode 100644 index 00000000..74db733c --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/pi.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f + com.fontlab.metricsRight + t + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/plus.glif b/sources/FixelText-SemiBold.ufo/glyphs/plus.glif new file mode 100644 index 00000000..c4af786f --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/plus.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/plusminus.glif b/sources/FixelText-SemiBold.ufo/glyphs/plusminus.glif new file mode 100644 index 00000000..26da5031 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/plusminus.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/pokrytiecombcyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/pokrytiecombcyr.glif new file mode 100644 index 00000000..c016e9d1 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/pokrytiecombcyr.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/product.glif b/sources/FixelText-SemiBold.ufo/glyphs/product.glif new file mode 100644 index 00000000..5db0e1fe --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/product.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/proportional.glif b/sources/FixelText-SemiBold.ufo/glyphs/proportional.glif new file mode 100644 index 00000000..53060ee1 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/proportional.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/psicyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/psicyr.glif new file mode 100644 index 00000000..76af1b45 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/psicyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + u + com.fontlab.metricsRight + |u + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/q.glif b/sources/FixelText-SemiBold.ufo/glyphs/q.glif new file mode 100644 index 00000000..580b13e4 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/q.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/q.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/q.ss01.glif new file mode 100644 index 00000000..16331709 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/q.ss01.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/qacyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/qacyr.glif new file mode 100644 index 00000000..0fb487d8 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/qacyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + q + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/question.glif b/sources/FixelText-SemiBold.ufo/glyphs/question.glif new file mode 100644 index 00000000..374efe27 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/question.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/questiondown.case.glif b/sources/FixelText-SemiBold.ufo/glyphs/questiondown.case.glif new file mode 100644 index 00000000..0d37a6eb --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/questiondown.case.glif @@ -0,0 +1,19 @@ + + + + + + + + + com.fontlab.metricsLeft + |question + com.fontlab.metricsRight + |question + com.fontlab.recipe + questiondown + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/questiondown.glif b/sources/FixelText-SemiBold.ufo/glyphs/questiondown.glif new file mode 100644 index 00000000..f85c6aee --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/questiondown.glif @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |question + com.fontlab.metricsRight + |question + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/quotedbl.glif b/sources/FixelText-SemiBold.ufo/glyphs/quotedbl.glif new file mode 100644 index 00000000..686fe75d --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/quotedbl.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/quotedblbase.glif b/sources/FixelText-SemiBold.ufo/glyphs/quotedblbase.glif new file mode 100644 index 00000000..1bb29776 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/quotedblbase.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + comma + com.fontlab.metricsRight + comma + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/quotedblleft.glif b/sources/FixelText-SemiBold.ufo/glyphs/quotedblleft.glif new file mode 100644 index 00000000..4a302e75 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/quotedblleft.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + |comma + com.fontlab.metricsRight + |comma + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/quotedblright.glif b/sources/FixelText-SemiBold.ufo/glyphs/quotedblright.glif new file mode 100644 index 00000000..54eb6f8c --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/quotedblright.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.metricsLeft + comma+20 + com.fontlab.metricsRight + comma-20 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/quoteleft.glif b/sources/FixelText-SemiBold.ufo/glyphs/quoteleft.glif new file mode 100644 index 00000000..4fd55b49 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/quoteleft.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + quotedblleft + com.fontlab.metricsRight + quotedblleft + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/quoteright.glif b/sources/FixelText-SemiBold.ufo/glyphs/quoteright.glif new file mode 100644 index 00000000..01fa4e62 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/quoteright.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + com.fontlab.metricsLeft + quotedblright + com.fontlab.metricsRight + quotedblright + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/quotesinglbase.glif b/sources/FixelText-SemiBold.ufo/glyphs/quotesinglbase.glif new file mode 100644 index 00000000..6ac9ed2e --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/quotesinglbase.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + com.fontlab.recipe + comma + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/quotesingle.glif b/sources/FixelText-SemiBold.ufo/glyphs/quotesingle.glif new file mode 100644 index 00000000..702eb48b --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/quotesingle.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/r.glif b/sources/FixelText-SemiBold.ufo/glyphs/r.glif new file mode 100644 index 00000000..eb941267 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/r.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/racute.glif b/sources/FixelText-SemiBold.ufo/glyphs/racute.glif new file mode 100644 index 00000000..88d6ff17 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/racute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + r+acute + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/radical.glif b/sources/FixelText-SemiBold.ufo/glyphs/radical.glif new file mode 100644 index 00000000..b7437a00 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/radical.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + V + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/rcaron.glif b/sources/FixelText-SemiBold.ufo/glyphs/rcaron.glif new file mode 100644 index 00000000..e442fc94 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/rcaron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + r+caron + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/rcommaaccent.glif b/sources/FixelText-SemiBold.ufo/glyphs/rcommaaccent.glif new file mode 100644 index 00000000..aca25fec --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/rcommaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + r+commaaccentcomb + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/registered.glif b/sources/FixelText-SemiBold.ufo/glyphs/registered.glif new file mode 100644 index 00000000..c6d0afbe --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/registered.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/reversedzecyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/reversedzecyr.glif new file mode 100644 index 00000000..7f9d4fdf --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/reversedzecyr.glif @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + + com.fontlab.metricsRight + + com.fontlab.recipe + з + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/rhacyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/rhacyr.glif new file mode 100644 index 00000000..5321d261 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/rhacyr.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + p + com.fontlab.metricsRight + x + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/ring.case.glif b/sources/FixelText-SemiBold.ufo/glyphs/ring.case.glif new file mode 100644 index 00000000..3b24344b --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/ring.case.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/ring.glif b/sources/FixelText-SemiBold.ufo/glyphs/ring.glif new file mode 100644 index 00000000..90b85779 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/ring.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/rookblack.glif b/sources/FixelText-SemiBold.ufo/glyphs/rookblack.glif new file mode 100644 index 00000000..4a684097 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/rookblack.glif @@ -0,0 +1,270 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/ruble.glif b/sources/FixelText-SemiBold.ufo/glyphs/ruble.glif new file mode 100644 index 00000000..81a2e471 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/ruble.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + P + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/s.glif b/sources/FixelText-SemiBold.ufo/glyphs/s.glif new file mode 100644 index 00000000..c237dcbc --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/s.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/sacute.glif b/sources/FixelText-SemiBold.ufo/glyphs/sacute.glif new file mode 100644 index 00000000..f2f63b9e --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/sacute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + s+acute + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/scaron.glif b/sources/FixelText-SemiBold.ufo/glyphs/scaron.glif new file mode 100644 index 00000000..ebc27b64 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/scaron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + s+caron + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/scedilla.glif b/sources/FixelText-SemiBold.ufo/glyphs/scedilla.glif new file mode 100644 index 00000000..e30df615 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/scedilla.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + s+cedilla + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/schwacyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/schwacyr.glif new file mode 100644 index 00000000..dcd18426 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/schwacyr.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |e + com.fontlab.metricsRight + o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/schwadieresiscyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/schwadieresiscyr.glif new file mode 100644 index 00000000..0645173c --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/schwadieresiscyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + schwacyr+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/scircumflex.glif b/sources/FixelText-SemiBold.ufo/glyphs/scircumflex.glif new file mode 100644 index 00000000..9bfbb409 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/scircumflex.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + s+circumflex + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/scommaaccent.glif b/sources/FixelText-SemiBold.ufo/glyphs/scommaaccent.glif new file mode 100644 index 00000000..d425110c --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/scommaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + s+commaaccentcomb + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/second.glif b/sources/FixelText-SemiBold.ufo/glyphs/second.glif new file mode 100644 index 00000000..b78929e3 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/second.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/section.glif b/sources/FixelText-SemiBold.ufo/glyphs/section.glif new file mode 100644 index 00000000..6d136663 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/section.glif @@ -0,0 +1,87 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + S + com.fontlab.metricsRight + S + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/semicolon.case.glif b/sources/FixelText-SemiBold.ufo/glyphs/semicolon.case.glif new file mode 100644 index 00000000..6ff972ac --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/semicolon.case.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.metricsLeft + semicolon + com.fontlab.metricsRight + semicolon + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/semicolon.glif b/sources/FixelText-SemiBold.ufo/glyphs/semicolon.glif new file mode 100644 index 00000000..97dc0b02 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/semicolon.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/semisoftcyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/semisoftcyr.glif new file mode 100644 index 00000000..6e3d56b7 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/semisoftcyr.glif @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + t + com.fontlab.metricsRight + ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/seven.glif b/sources/FixelText-SemiBold.ufo/glyphs/seven.glif new file mode 100644 index 00000000..586a5261 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/seven.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/seven.osf.glif b/sources/FixelText-SemiBold.ufo/glyphs/seven.osf.glif new file mode 100644 index 00000000..c3752d60 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/seven.osf.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + seven + com.fontlab.metricsRight + seven + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/seven.tf.glif b/sources/FixelText-SemiBold.ufo/glyphs/seven.tf.glif new file mode 100644 index 00000000..29db9127 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/seven.tf.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/sha-cy.B_G_R_.glif b/sources/FixelText-SemiBold.ufo/glyphs/sha-cy.B_G_R_.glif new file mode 100644 index 00000000..ccf4911a --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/sha-cy.B_G_R_.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + u + com.fontlab.metricsRight + l + com.fontlab.recipe + m + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/sha-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/sha-cy.glif new file mode 100644 index 00000000..dfdfb54d --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/sha-cy.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/shcha-cy.B_G_R_.glif b/sources/FixelText-SemiBold.ufo/glyphs/shcha-cy.B_G_R_.glif new file mode 100644 index 00000000..635af962 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/shcha-cy.B_G_R_.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + u + com.fontlab.metricsRight + щ + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/shcha-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/shcha-cy.glif new file mode 100644 index 00000000..c2c79e37 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/shcha-cy.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + д + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/shhacyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/shhacyr.glif new file mode 100644 index 00000000..ea974c1e --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/shhacyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsRight + n + com.fontlab.recipe + h + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/shhatailcyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/shhatailcyr.glif new file mode 100644 index 00000000..ae302f84 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/shhatailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + h + com.fontlab.metricsRight + entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/shwe-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/shwe-cy.glif new file mode 100644 index 00000000..be7e02a4 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/shwe-cy.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + щ + com.fontlab.metricsRight + щ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/six.glif b/sources/FixelText-SemiBold.ufo/glyphs/six.glif new file mode 100644 index 00000000..b6994f35 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/six.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/six.osf.glif b/sources/FixelText-SemiBold.ufo/glyphs/six.osf.glif new file mode 100644 index 00000000..3c776a6c --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/six.osf.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + six + com.fontlab.metricsRight + six + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/six.tf.glif b/sources/FixelText-SemiBold.ufo/glyphs/six.tf.glif new file mode 100644 index 00000000..620c08a8 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/six.tf.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/sjekomicyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/sjekomicyr.glif new file mode 100644 index 00000000..c1c0e1f5 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/sjekomicyr.glif @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + e + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/slash.case.glif b/sources/FixelText-SemiBold.ufo/glyphs/slash.case.glif new file mode 100644 index 00000000..aee97092 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/slash.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + slash + com.fontlab.metricsRight + slash + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/slash.glif b/sources/FixelText-SemiBold.ufo/glyphs/slash.glif new file mode 100644 index 00000000..ac87f2e2 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/slash.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/softsign-cy.B_G_R_.glif b/sources/FixelText-SemiBold.ufo/glyphs/softsign-cy.B_G_R_.glif new file mode 100644 index 00000000..717d84fd --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/softsign-cy.B_G_R_.glif @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + u + com.fontlab.metricsRight + ь-5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/softsign-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/softsign-cy.glif new file mode 100644 index 00000000..c6fd9ec2 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/softsign-cy.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/softsign-cy.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/softsign-cy.ss01.glif new file mode 100644 index 00000000..38f17c64 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/softsign-cy.ss01.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/space.glif b/sources/FixelText-SemiBold.ufo/glyphs/space.glif new file mode 100644 index 00000000..52472956 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/space.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/spadewhite.glif b/sources/FixelText-SemiBold.ufo/glyphs/spadewhite.glif new file mode 100644 index 00000000..1af44123 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/spadewhite.glif @@ -0,0 +1,453 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/sterling.glif b/sources/FixelText-SemiBold.ufo/glyphs/sterling.glif new file mode 100644 index 00000000..aed8e421 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/sterling.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/summation.glif b/sources/FixelText-SemiBold.ufo/glyphs/summation.glif new file mode 100644 index 00000000..d3d8f532 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/summation.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/t.glif b/sources/FixelText-SemiBold.ufo/glyphs/t.glif new file mode 100644 index 00000000..d3a433aa --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/t.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/t.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/t.ss01.glif new file mode 100644 index 00000000..ff5fd20c --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/t.ss01.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/tbar.glif b/sources/FixelText-SemiBold.ufo/glyphs/tbar.glif new file mode 100644 index 00000000..c08ec443 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/tbar.glif @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/tbar.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/tbar.ss01.glif new file mode 100644 index 00000000..c68b58e9 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/tbar.ss01.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/tcaron.glif b/sources/FixelText-SemiBold.ufo/glyphs/tcaron.glif new file mode 100644 index 00000000..91177fc8 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/tcaron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.metricsLeft + t + com.fontlab.metricsRight + t + com.fontlab.recipe + t+caron.salt + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/tcaron.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/tcaron.ss01.glif new file mode 100644 index 00000000..72eacc03 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/tcaron.ss01.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + com.fontlab.recipe + t.ss01+caron.salt + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/tcedilla.glif b/sources/FixelText-SemiBold.ufo/glyphs/tcedilla.glif new file mode 100644 index 00000000..638e4ad7 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/tcedilla.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + t+cedilla + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/tcedilla.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/tcedilla.ss01.glif new file mode 100644 index 00000000..c56afac3 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/tcedilla.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + t.ss01+cedilla + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/tche-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/tche-cy.glif new file mode 100644 index 00000000..5585f0e2 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/tche-cy.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + tetsecyr-20 + com.fontlab.metricsRight + ч + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/tcommaaccent.glif b/sources/FixelText-SemiBold.ufo/glyphs/tcommaaccent.glif new file mode 100644 index 00000000..94b16dd6 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/tcommaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + t+commaaccentcomb + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/tcommaaccent.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/tcommaaccent.ss01.glif new file mode 100644 index 00000000..6d297eda --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/tcommaaccent.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + t.ss01+commaaccentcomb + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/te-cy.B_G_R_.glif b/sources/FixelText-SemiBold.ufo/glyphs/te-cy.B_G_R_.glif new file mode 100644 index 00000000..f9c58d64 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/te-cy.B_G_R_.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + m + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/te-cy.S_R_B_.glif b/sources/FixelText-SemiBold.ufo/glyphs/te-cy.S_R_B_.glif new file mode 100644 index 00000000..dc93349e --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/te-cy.S_R_B_.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ш.BGR+macron-fwd + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/te-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/te-cy.glif new file mode 100644 index 00000000..cd36f3d2 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/te-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/te-cy.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/te-cy.ss01.glif new file mode 100644 index 00000000..a8f24c21 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/te-cy.ss01.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/tenge.glif b/sources/FixelText-SemiBold.ufo/glyphs/tenge.glif new file mode 100644 index 00000000..27d71ffe --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/tenge.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + T + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/tenmillionscomb-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/tenmillionscomb-cy.glif new file mode 100644 index 00000000..31f20e39 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/tenmillionscomb-cy.glif @@ -0,0 +1,109 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/tetailcyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/tetailcyr.glif new file mode 100644 index 00000000..22dfdd31 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/tetailcyr.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + т + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/tetsecyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/tetsecyr.glif new file mode 100644 index 00000000..882853fa --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/tetsecyr.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + т + com.fontlab.metricsRight + ц + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/tewithmiddlehook-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/tewithmiddlehook-cy.glif new file mode 100644 index 00000000..5825dc42 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/tewithmiddlehook-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + т + com.fontlab.metricsRight + gehookcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/thorn.glif b/sources/FixelText-SemiBold.ufo/glyphs/thorn.glif new file mode 100644 index 00000000..40596e0c --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/thorn.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + b + com.fontlab.metricsRight + b + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/thousandmillionscomb-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/thousandmillionscomb-cy.glif new file mode 100644 index 00000000..7c25cc98 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/thousandmillionscomb-cy.glif @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/thousandscyr.dnom.glif b/sources/FixelText-SemiBold.ufo/glyphs/thousandscyr.dnom.glif new file mode 100644 index 00000000..445d1407 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/thousandscyr.dnom.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + | + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/thousandscyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/thousandscyr.glif new file mode 100644 index 00000000..d48bfed5 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/thousandscyr.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + | + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/three.glif b/sources/FixelText-SemiBold.ufo/glyphs/three.glif new file mode 100644 index 00000000..35c7e8ed --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/three.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/three.osf.glif b/sources/FixelText-SemiBold.ufo/glyphs/three.osf.glif new file mode 100644 index 00000000..deed3d95 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/three.osf.glif @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + three + com.fontlab.metricsRight + three + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/three.tf.glif b/sources/FixelText-SemiBold.ufo/glyphs/three.tf.glif new file mode 100644 index 00000000..d4b69553 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/three.tf.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/threequarters.glif b/sources/FixelText-SemiBold.ufo/glyphs/threequarters.glif new file mode 100644 index 00000000..badbf471 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/threequarters.glif @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/threesuperior.glif b/sources/FixelText-SemiBold.ufo/glyphs/threesuperior.glif new file mode 100644 index 00000000..c9eb508e --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/threesuperior.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/tilde.case.glif b/sources/FixelText-SemiBold.ufo/glyphs/tilde.case.glif new file mode 100644 index 00000000..d914df36 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/tilde.case.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/tilde.glif b/sources/FixelText-SemiBold.ufo/glyphs/tilde.glif new file mode 100644 index 00000000..ef156803 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/tilde.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/titlocombcyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/titlocombcyr.glif new file mode 100644 index 00000000..c6ee0934 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/titlocombcyr.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/tjekomicyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/tjekomicyr.glif new file mode 100644 index 00000000..33cfd658 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/tjekomicyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + т + com.fontlab.metricsRight + njekomicyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/trademark.glif b/sources/FixelText-SemiBold.ufo/glyphs/trademark.glif new file mode 100644 index 00000000..57314406 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/trademark.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/tse-cy.B_G_R_.glif b/sources/FixelText-SemiBold.ufo/glyphs/tse-cy.B_G_R_.glif new file mode 100644 index 00000000..3e79d127 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/tse-cy.B_G_R_.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + u + com.fontlab.metricsRight + ц + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/tse-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/tse-cy.glif new file mode 100644 index 00000000..9cf3688e --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/tse-cy.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + д + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/tseR_eversed-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/tseR_eversed-cy.glif new file mode 100644 index 00000000..f168a45f --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/tseR_eversed-cy.glif @@ -0,0 +1,20 @@ + + + + + + + + + + com.fontlab.metricsLeft + + com.fontlab.metricsRight + н + com.fontlab.recipe + ц + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/tshecyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/tshecyr.glif new file mode 100644 index 00000000..cebe01f9 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/tshecyr.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + hbar + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/tsse-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/tsse-cy.glif new file mode 100644 index 00000000..118fe143 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/tsse-cy.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + т + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/tswe-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/tswe-cy.glif new file mode 100644 index 00000000..196f2988 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/tswe-cy.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ш + com.fontlab.metricsRight + shwe-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/twe-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/twe-cy.glif new file mode 100644 index 00000000..2ad6d68c --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/twe-cy.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + т.ss01 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/two.glif b/sources/FixelText-SemiBold.ufo/glyphs/two.glif new file mode 100644 index 00000000..39e0ead0 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/two.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/two.osf.glif b/sources/FixelText-SemiBold.ufo/glyphs/two.osf.glif new file mode 100644 index 00000000..f3f4660c --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/two.osf.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + two + com.fontlab.metricsRight + two + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/two.tf.glif b/sources/FixelText-SemiBold.ufo/glyphs/two.tf.glif new file mode 100644 index 00000000..f37c1d92 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/two.tf.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/twosuperior.glif b/sources/FixelText-SemiBold.ufo/glyphs/twosuperior.glif new file mode 100644 index 00000000..40027363 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/twosuperior.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/u-cy.accented.glif b/sources/FixelText-SemiBold.ufo/glyphs/u-cy.accented.glif new file mode 100644 index 00000000..dc92e785 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/u-cy.accented.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + y+acute + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/u-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/u-cy.glif new file mode 100644 index 00000000..27f518ad --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/u-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + y + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/u.glif b/sources/FixelText-SemiBold.ufo/glyphs/u.glif new file mode 100644 index 00000000..d1747b4c --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/u.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |n + com.fontlab.metricsRight + l + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/uacute.glif b/sources/FixelText-SemiBold.ufo/glyphs/uacute.glif new file mode 100644 index 00000000..6e4dbe95 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/uacute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+acute + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/uacutedblcyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/uacutedblcyr.glif new file mode 100644 index 00000000..98abe73a --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/uacutedblcyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u-cy+hungarumlaut + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/ubreve.glif b/sources/FixelText-SemiBold.ufo/glyphs/ubreve.glif new file mode 100644 index 00000000..ae888b98 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/ubreve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+breve + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/ucircumflex.glif b/sources/FixelText-SemiBold.ufo/glyphs/ucircumflex.glif new file mode 100644 index 00000000..7e7020b5 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/ucircumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+circumflex + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/udieresis.glif b/sources/FixelText-SemiBold.ufo/glyphs/udieresis.glif new file mode 100644 index 00000000..9b350234 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/udieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+dieresis + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/udieresiscyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/udieresiscyr.glif new file mode 100644 index 00000000..43bf4e3f --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/udieresiscyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/ugrave.glif b/sources/FixelText-SemiBold.ufo/glyphs/ugrave.glif new file mode 100644 index 00000000..4c40a5a9 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/ugrave.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+grave + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/uhungarumlaut.glif b/sources/FixelText-SemiBold.ufo/glyphs/uhungarumlaut.glif new file mode 100644 index 00000000..b70098ea --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/uhungarumlaut.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+hungarumlaut + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/ukM_onograph-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/ukM_onograph-cy.glif new file mode 100644 index 00000000..2412d26e --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/ukM_onograph-cy.glif @@ -0,0 +1,78 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + y-30 + com.fontlab.metricsRight + y-20 + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/ukcyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/ukcyr.glif new file mode 100644 index 00000000..3f385d3c --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/ukcyr.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + y + com.fontlab.recipe + uni1C82_у + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/umacron.glif b/sources/FixelText-SemiBold.ufo/glyphs/umacron.glif new file mode 100644 index 00000000..dafd1e6c --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/umacron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+macron + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/umacroncyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/umacroncyr.glif new file mode 100644 index 00000000..7e4b8c83 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/umacroncyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u-cy+macron + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/underscore.glif b/sources/FixelText-SemiBold.ufo/glyphs/underscore.glif new file mode 100644 index 00000000..11544d16 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/underscore.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/uni1C_80.glif b/sources/FixelText-SemiBold.ufo/glyphs/uni1C_80.glif new file mode 100644 index 00000000..e37f02a1 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/uni1C_80.glif @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + б + com.fontlab.metricsRight + o-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/uni1C_81.glif b/sources/FixelText-SemiBold.ufo/glyphs/uni1C_81.glif new file mode 100644 index 00000000..958382de --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/uni1C_81.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + д-10 + com.fontlab.metricsRight + | + com.fontlab.recipe + д + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/uni1C_82.glif b/sources/FixelText-SemiBold.ufo/glyphs/uni1C_82.glif new file mode 100644 index 00000000..18293172 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/uni1C_82.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/uni1C_83.glif b/sources/FixelText-SemiBold.ufo/glyphs/uni1C_83.glif new file mode 100644 index 00000000..6382c231 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/uni1C_83.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + c + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/uni1C_84.glif b/sources/FixelText-SemiBold.ufo/glyphs/uni1C_84.glif new file mode 100644 index 00000000..3b571ec4 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/uni1C_84.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/uni1C_85.glif b/sources/FixelText-SemiBold.ufo/glyphs/uni1C_85.glif new file mode 100644 index 00000000..cbb12609 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/uni1C_85.glif @@ -0,0 +1,20 @@ + + + + + + + + + + com.fontlab.metricsLeft + ш + com.fontlab.metricsRight + l() + com.fontlab.recipe + ш + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/uni1C_86.glif b/sources/FixelText-SemiBold.ufo/glyphs/uni1C_86.glif new file mode 100644 index 00000000..3e807fff --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/uni1C_86.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + uni1C84 + com.fontlab.metricsRight + ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/uni1C_87.glif b/sources/FixelText-SemiBold.ufo/glyphs/uni1C_87.glif new file mode 100644 index 00000000..fe52579d --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/uni1C_87.glif @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + uni1C84-40 + com.fontlab.metricsRight + ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/uni1C_88.glif b/sources/FixelText-SemiBold.ufo/glyphs/uni1C_88.glif new file mode 100644 index 00000000..0689a01f --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/uni1C_88.glif @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/uni1E_B_C_.glif b/sources/FixelText-SemiBold.ufo/glyphs/uni1E_B_C_.glif new file mode 100644 index 00000000..60a03e7b --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/uni1E_B_C_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+tilde.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/uni1E_B_D_.glif b/sources/FixelText-SemiBold.ufo/glyphs/uni1E_B_D_.glif new file mode 100644 index 00000000..0232d1b4 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/uni1E_B_D_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+tilde + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/uni2010.glif b/sources/FixelText-SemiBold.ufo/glyphs/uni2010.glif new file mode 100644 index 00000000..10fc5ace --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/uni2010.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + hyphen + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/uni2D_E_E_.case.glif b/sources/FixelText-SemiBold.ufo/glyphs/uni2D_E_E_.case.glif new file mode 100644 index 00000000..2be735aa --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/uni2D_E_E_.case.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/uni2D_E_E_.glif b/sources/FixelText-SemiBold.ufo/glyphs/uni2D_E_E_.glif new file mode 100644 index 00000000..1d64a2f7 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/uni2D_E_E_.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/uniE_000.alt.glif b/sources/FixelText-SemiBold.ufo/glyphs/uniE_000.alt.glif new file mode 100644 index 00000000..f1528510 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/uniE_000.alt.glif @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + ї_ї + public.markColor + 0.6,0.997,1,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/uniE_000.glif b/sources/FixelText-SemiBold.ufo/glyphs/uniE_000.glif new file mode 100644 index 00000000..d9b29d2e --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/uniE_000.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + ї_ї + public.markColor + 0.6,0.997,1,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/uniE_01A_.glif b/sources/FixelText-SemiBold.ufo/glyphs/uniE_01A_.glif new file mode 100644 index 00000000..6a5044c4 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/uniE_01A_.glif @@ -0,0 +1,115 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/uniF_43A_.glif b/sources/FixelText-SemiBold.ufo/glyphs/uniF_43A_.glif new file mode 100644 index 00000000..cddbace1 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/uniF_43A_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/uniF_43B_.glif b/sources/FixelText-SemiBold.ufo/glyphs/uniF_43B_.glif new file mode 100644 index 00000000..6393267a --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/uniF_43B_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ustraightcyr+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/uniF_45D_.glif b/sources/FixelText-SemiBold.ufo/glyphs/uniF_45D_.glif new file mode 100644 index 00000000..c43d52a5 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/uniF_45D_.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Є+acute.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/uniF_45E_.glif b/sources/FixelText-SemiBold.ufo/glyphs/uniF_45E_.glif new file mode 100644 index 00000000..b86f10e8 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/uniF_45E_.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Iacute + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/uniF_45F_.glif b/sources/FixelText-SemiBold.ufo/glyphs/uniF_45F_.glif new file mode 100644 index 00000000..eab7205c --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/uniF_45F_.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + com.fontlab.recipe + I+dieresiscase.alt+acute.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/uniF_475.glif b/sources/FixelText-SemiBold.ufo/glyphs/uniF_475.glif new file mode 100644 index 00000000..802b70bf --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/uniF_475.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + є+acute + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/uniF_476.glif b/sources/FixelText-SemiBold.ufo/glyphs/uniF_476.glif new file mode 100644 index 00000000..97bf3051 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/uniF_476.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + iacute + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/uniF_477.glif b/sources/FixelText-SemiBold.ufo/glyphs/uniF_477.glif new file mode 100644 index 00000000..3b26f6d7 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/uniF_477.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + dotlessi+dieresisacute + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/uniF_478.glif b/sources/FixelText-SemiBold.ufo/glyphs/uniF_478.glif new file mode 100644 index 00000000..06c723a6 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/uniF_478.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Yat+acute.case + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/uniF_479.glif b/sources/FixelText-SemiBold.ufo/glyphs/uniF_479.glif new file mode 100644 index 00000000..736ace3f --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/uniF_479.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + yat+acute + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/uniF_498.glif b/sources/FixelText-SemiBold.ufo/glyphs/uniF_498.glif new file mode 100644 index 00000000..ce0e0452 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/uniF_498.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ю+dieresis.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/uniF_499.glif b/sources/FixelText-SemiBold.ufo/glyphs/uniF_499.glif new file mode 100644 index 00000000..c9a5acf8 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/uniF_499.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ю+dieresis + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/uniF_49A_.glif b/sources/FixelText-SemiBold.ufo/glyphs/uniF_49A_.glif new file mode 100644 index 00000000..8986678d --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/uniF_49A_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Obarcyr+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/uniF_49B_.glif b/sources/FixelText-SemiBold.ufo/glyphs/uniF_49B_.glif new file mode 100644 index 00000000..d859f76d --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/uniF_49B_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + obarcyr+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/uniF_49C_.glif b/sources/FixelText-SemiBold.ufo/glyphs/uniF_49C_.glif new file mode 100644 index 00000000..d05d9066 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/uniF_49C_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Schwacyr+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/uniF_49D_.glif b/sources/FixelText-SemiBold.ufo/glyphs/uniF_49D_.glif new file mode 100644 index 00000000..36a6c283 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/uniF_49D_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + schwacyr+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/uniF_49E_.glif b/sources/FixelText-SemiBold.ufo/glyphs/uniF_49E_.glif new file mode 100644 index 00000000..d060b5b1 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/uniF_49E_.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Yatcyr + com.fontlab.metricsRight + Tshecyr + com.fontlab.recipe + Shhacyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/uniF_49F_.glif b/sources/FixelText-SemiBold.ufo/glyphs/uniF_49F_.glif new file mode 100644 index 00000000..f649eb25 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/uniF_49F_.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + hbar + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/uniF_4C_6.glif b/sources/FixelText-SemiBold.ufo/glyphs/uniF_4C_6.glif new file mode 100644 index 00000000..162bed97 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/uniF_4C_6.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ч + com.fontlab.metricsRight + Ч + com.fontlab.recipe + Ч + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/uniF_4C_7.glif b/sources/FixelText-SemiBold.ufo/glyphs/uniF_4C_7.glif new file mode 100644 index 00000000..f7de78e3 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/uniF_4C_7.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ч + com.fontlab.metricsRight + ч + com.fontlab.recipe + ч+enhookcyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/uniF_4C_C_.glif b/sources/FixelText-SemiBold.ufo/glyphs/uniF_4C_C_.glif new file mode 100644 index 00000000..f924ef2a --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/uniF_4C_C_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + У+acute.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/uniF_4C_D_.glif b/sources/FixelText-SemiBold.ufo/glyphs/uniF_4C_D_.glif new file mode 100644 index 00000000..34f7f66e --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/uniF_4C_D_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + y+acute + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/uniF_4D_2.glif b/sources/FixelText-SemiBold.ufo/glyphs/uniF_4D_2.glif new file mode 100644 index 00000000..e32ed106 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/uniF_4D_2.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+grave.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/uniF_4D_3.glif b/sources/FixelText-SemiBold.ufo/glyphs/uniF_4D_3.glif new file mode 100644 index 00000000..072da4e9 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/uniF_4D_3.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+grave + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/uniF_4D_4.glif b/sources/FixelText-SemiBold.ufo/glyphs/uniF_4D_4.glif new file mode 100644 index 00000000..8a78c12e --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/uniF_4D_4.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + P+caron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/uniF_4D_5.glif b/sources/FixelText-SemiBold.ufo/glyphs/uniF_4D_5.glif new file mode 100644 index 00000000..fd5d0cc4 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/uniF_4D_5.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + p+caron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/uniF_4D_6.glif b/sources/FixelText-SemiBold.ufo/glyphs/uniF_4D_6.glif new file mode 100644 index 00000000..e313dc1d --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/uniF_4D_6.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Э+dotaccent.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/uniF_4D_7.glif b/sources/FixelText-SemiBold.ufo/glyphs/uniF_4D_7.glif new file mode 100644 index 00000000..b966543e --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/uniF_4D_7.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + э+dotaccent + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/uniF_4D_8.glif b/sources/FixelText-SemiBold.ufo/glyphs/uniF_4D_8.glif new file mode 100644 index 00000000..447df888 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/uniF_4D_8.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Я+dieresis.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/uniF_4D_9.glif b/sources/FixelText-SemiBold.ufo/glyphs/uniF_4D_9.glif new file mode 100644 index 00000000..9e4d51c4 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/uniF_4D_9.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + я+dieresis + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/uniF_50E_.glif b/sources/FixelText-SemiBold.ufo/glyphs/uniF_50E_.glif new file mode 100644 index 00000000..cbd3c59c --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/uniF_50E_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/uniF_50F_.glif b/sources/FixelText-SemiBold.ufo/glyphs/uniF_50F_.glif new file mode 100644 index 00000000..2102caab --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/uniF_50F_.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/uniF_510.glif b/sources/FixelText-SemiBold.ufo/glyphs/uniF_510.glif new file mode 100644 index 00000000..feef9c5a --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/uniF_510.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/uniF_511.glif b/sources/FixelText-SemiBold.ufo/glyphs/uniF_511.glif new file mode 100644 index 00000000..a672e191 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/uniF_511.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/uniF_512.glif b/sources/FixelText-SemiBold.ufo/glyphs/uniF_512.glif new file mode 100644 index 00000000..8c94ea86 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/uniF_512.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + com.fontlab.metricsLeft + E + com.fontlab.metricsRight + E + com.fontlab.recipe + E+dieresis.case+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/uniF_513.glif b/sources/FixelText-SemiBold.ufo/glyphs/uniF_513.glif new file mode 100644 index 00000000..b25a7c35 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/uniF_513.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.recipe + e+dieresis+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/uniF_514.glif b/sources/FixelText-SemiBold.ufo/glyphs/uniF_514.glif new file mode 100644 index 00000000..d1af7d94 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/uniF_514.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + com.fontlab.metricsLeft + E + com.fontlab.metricsRight + E + com.fontlab.recipe + E+dieresis.case+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/uniF_515.glif b/sources/FixelText-SemiBold.ufo/glyphs/uniF_515.glif new file mode 100644 index 00000000..ec1dc34d --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/uniF_515.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.recipe + e+dieresis+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/uniF_516.glif b/sources/FixelText-SemiBold.ufo/glyphs/uniF_516.glif new file mode 100644 index 00000000..132894c4 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/uniF_516.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + З+caron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/uniF_517.glif b/sources/FixelText-SemiBold.ufo/glyphs/uniF_517.glif new file mode 100644 index 00000000..64c53626 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/uniF_517.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + з+caron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/uniF_518.glif b/sources/FixelText-SemiBold.ufo/glyphs/uniF_518.glif new file mode 100644 index 00000000..c23fde6d --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/uniF_518.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/uniF_519.glif b/sources/FixelText-SemiBold.ufo/glyphs/uniF_519.glif new file mode 100644 index 00000000..a02b1e4b --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/uniF_519.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/uniF_51A_.glif b/sources/FixelText-SemiBold.ufo/glyphs/uniF_51A_.glif new file mode 100644 index 00000000..dada8364 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/uniF_51A_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/uniF_51B_.glif b/sources/FixelText-SemiBold.ufo/glyphs/uniF_51B_.glif new file mode 100644 index 00000000..3b3a6ee7 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/uniF_51B_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/uniF_51C_.glif b/sources/FixelText-SemiBold.ufo/glyphs/uniF_51C_.glif new file mode 100644 index 00000000..bdb412e2 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/uniF_51C_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Obarcyr+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/uniF_51D_.glif b/sources/FixelText-SemiBold.ufo/glyphs/uniF_51D_.glif new file mode 100644 index 00000000..a1724197 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/uniF_51D_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + obarcyr+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/uniF_51E_.glif b/sources/FixelText-SemiBold.ufo/glyphs/uniF_51E_.glif new file mode 100644 index 00000000..afcb5291 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/uniF_51E_.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + com.fontlab.recipe + Obarcyr+dieresis.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/uniF_51F_.glif b/sources/FixelText-SemiBold.ufo/glyphs/uniF_51F_.glif new file mode 100644 index 00000000..75649e3b --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/uniF_51F_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.recipe + obarcyr+dieresis+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/uniF_521.glif b/sources/FixelText-SemiBold.ufo/glyphs/uniF_521.glif new file mode 100644 index 00000000..c68dd75d --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/uniF_521.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ы+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/uniF_522.glif b/sources/FixelText-SemiBold.ufo/glyphs/uniF_522.glif new file mode 100644 index 00000000..a5bf401d --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/uniF_522.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Э+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/uniF_523.glif b/sources/FixelText-SemiBold.ufo/glyphs/uniF_523.glif new file mode 100644 index 00000000..04e97ea8 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/uniF_523.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + э+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/uniF_524.glif b/sources/FixelText-SemiBold.ufo/glyphs/uniF_524.glif new file mode 100644 index 00000000..c39a4c93 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/uniF_524.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Э+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/uniF_525.glif b/sources/FixelText-SemiBold.ufo/glyphs/uniF_525.glif new file mode 100644 index 00000000..add42a27 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/uniF_525.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + э+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/uniF_526.glif b/sources/FixelText-SemiBold.ufo/glyphs/uniF_526.glif new file mode 100644 index 00000000..789372ab --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/uniF_526.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Є+dieresis.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/uniF_527.glif b/sources/FixelText-SemiBold.ufo/glyphs/uniF_527.glif new file mode 100644 index 00000000..aee29ce9 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/uniF_527.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + є+dieresis + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/uniF_528.glif b/sources/FixelText-SemiBold.ufo/glyphs/uniF_528.glif new file mode 100644 index 00000000..b7634156 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/uniF_528.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Я+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/uniF_529.glif b/sources/FixelText-SemiBold.ufo/glyphs/uniF_529.glif new file mode 100644 index 00000000..288708f3 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/uniF_529.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + я+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/uniF_52A_.glif b/sources/FixelText-SemiBold.ufo/glyphs/uniF_52A_.glif new file mode 100644 index 00000000..2c8b20d6 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/uniF_52A_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Я+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/uniF_52B_.glif b/sources/FixelText-SemiBold.ufo/glyphs/uniF_52B_.glif new file mode 100644 index 00000000..6de8bcb5 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/uniF_52B_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + я+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/uniF_52C_.glif b/sources/FixelText-SemiBold.ufo/glyphs/uniF_52C_.glif new file mode 100644 index 00000000..b2a1f315 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/uniF_52C_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ю+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/uniF_52D_.glif b/sources/FixelText-SemiBold.ufo/glyphs/uniF_52D_.glif new file mode 100644 index 00000000..55c2cd14 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/uniF_52D_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ю+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/uniF_52E_.glif b/sources/FixelText-SemiBold.ufo/glyphs/uniF_52E_.glif new file mode 100644 index 00000000..ef5745d3 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/uniF_52E_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ю+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/uniF_52F_.glif b/sources/FixelText-SemiBold.ufo/glyphs/uniF_52F_.glif new file mode 100644 index 00000000..5ffdf908 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/uniF_52F_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ю+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/uniF_532.glif b/sources/FixelText-SemiBold.ufo/glyphs/uniF_532.glif new file mode 100644 index 00000000..1d405157 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/uniF_532.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Й + com.fontlab.metricsRight + Й + com.fontlab.recipe + Й + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/uniF_533.glif b/sources/FixelText-SemiBold.ufo/glyphs/uniF_533.glif new file mode 100644 index 00000000..b4daded1 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/uniF_533.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + l() + com.fontlab.recipe + й+enhookcyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/uniF_536.glif b/sources/FixelText-SemiBold.ufo/glyphs/uniF_536.glif new file mode 100644 index 00000000..bae6921d --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/uniF_536.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ы+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/uniF_537.glif b/sources/FixelText-SemiBold.ufo/glyphs/uniF_537.glif new file mode 100644 index 00000000..d6eff77d --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/uniF_537.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ы+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/uniF_538.glif b/sources/FixelText-SemiBold.ufo/glyphs/uniF_538.glif new file mode 100644 index 00000000..40b301c6 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/uniF_538.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Reversedzecyr+dieresis.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/uniF_539.glif b/sources/FixelText-SemiBold.ufo/glyphs/uniF_539.glif new file mode 100644 index 00000000..7a49584d --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/uniF_539.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + reversedzecyr+dieresis + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/uniF_830.glif b/sources/FixelText-SemiBold.ufo/glyphs/uniF_830.glif new file mode 100644 index 00000000..9e160c35 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/uniF_830.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+circumflex.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/uniF_831.glif b/sources/FixelText-SemiBold.ufo/glyphs/uniF_831.glif new file mode 100644 index 00000000..9df32800 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/uniF_831.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+circumflex + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/uniF_833.glif b/sources/FixelText-SemiBold.ufo/glyphs/uniF_833.glif new file mode 100644 index 00000000..38524cd0 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/uniF_833.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+circumflex.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/uniF_834.glif b/sources/FixelText-SemiBold.ufo/glyphs/uniF_834.glif new file mode 100644 index 00000000..2d42ebdc --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/uniF_834.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+circumflex + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/uniF_839.glif b/sources/FixelText-SemiBold.ufo/glyphs/uniF_839.glif new file mode 100644 index 00000000..3c9b0038 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/uniF_839.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+circumflex.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/uniF_83A_.glif b/sources/FixelText-SemiBold.ufo/glyphs/uniF_83A_.glif new file mode 100644 index 00000000..923e0f98 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/uniF_83A_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+circumflex + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/uniF_86F_.glif b/sources/FixelText-SemiBold.ufo/glyphs/uniF_86F_.glif new file mode 100644 index 00000000..2e0700fb --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/uniF_86F_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + K+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/uniF_870.glif b/sources/FixelText-SemiBold.ufo/glyphs/uniF_870.glif new file mode 100644 index 00000000..acb7c5fb --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/uniF_870.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + к+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/uniF_872.glif b/sources/FixelText-SemiBold.ufo/glyphs/uniF_872.glif new file mode 100644 index 00000000..2675cc8c --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/uniF_872.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Л+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/uniF_873.glif b/sources/FixelText-SemiBold.ufo/glyphs/uniF_873.glif new file mode 100644 index 00000000..077370e0 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/uniF_873.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + л+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/uniF_875.glif b/sources/FixelText-SemiBold.ufo/glyphs/uniF_875.glif new file mode 100644 index 00000000..745295f0 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/uniF_875.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/uniF_876.glif b/sources/FixelText-SemiBold.ufo/glyphs/uniF_876.glif new file mode 100644 index 00000000..22d5f77d --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/uniF_876.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/uniF_878.glif b/sources/FixelText-SemiBold.ufo/glyphs/uniF_878.glif new file mode 100644 index 00000000..dea12818 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/uniF_878.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + X+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/uniF_879.glif b/sources/FixelText-SemiBold.ufo/glyphs/uniF_879.glif new file mode 100644 index 00000000..eabb682a --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/uniF_879.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + x+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/uniF_87B_.glif b/sources/FixelText-SemiBold.ufo/glyphs/uniF_87B_.glif new file mode 100644 index 00000000..2b568efe --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/uniF_87B_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ц+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/uniF_87C_.glif b/sources/FixelText-SemiBold.ufo/glyphs/uniF_87C_.glif new file mode 100644 index 00000000..b76facc9 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/uniF_87C_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ц+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/uniF_87E_.glif b/sources/FixelText-SemiBold.ufo/glyphs/uniF_87E_.glif new file mode 100644 index 00000000..c52935bc --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/uniF_87E_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ч+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/uniF_87F_.glif b/sources/FixelText-SemiBold.ufo/glyphs/uniF_87F_.glif new file mode 100644 index 00000000..9a249c4a --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/uniF_87F_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ч+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/uogonek.glif b/sources/FixelText-SemiBold.ufo/glyphs/uogonek.glif new file mode 100644 index 00000000..8ded2923 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/uogonek.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+ogonek + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/uring.glif b/sources/FixelText-SemiBold.ufo/glyphs/uring.glif new file mode 100644 index 00000000..58a19bfb --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/uring.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+ring + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/ushort-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/ushort-cy.glif new file mode 100644 index 00000000..1915634c --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/ushort-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + uni0443+breve + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/ustraightcyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/ustraightcyr.glif new file mode 100644 index 00000000..68aaba5d --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/ustraightcyr.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + v + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/ustraightstrokecyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/ustraightstrokecyr.glif new file mode 100644 index 00000000..69a0f58b --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/ustraightstrokecyr.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/utilde.glif b/sources/FixelText-SemiBold.ufo/glyphs/utilde.glif new file mode 100644 index 00000000..e1ea87be --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/utilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+tilde + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/v.glif b/sources/FixelText-SemiBold.ufo/glyphs/v.glif new file mode 100644 index 00000000..5f6643fc --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/v.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/ve-cy.B_G_R_.glif b/sources/FixelText-SemiBold.ufo/glyphs/ve-cy.B_G_R_.glif new file mode 100644 index 00000000..481cb746 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/ve-cy.B_G_R_.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + b-5 + com.fontlab.metricsRight + b + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/ve-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/ve-cy.glif new file mode 100644 index 00000000..e3a6349d --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/ve-cy.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/ve-cy.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/ve-cy.ss01.glif new file mode 100644 index 00000000..e89ba9e7 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/ve-cy.ss01.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/virgo.glif b/sources/FixelText-SemiBold.ufo/glyphs/virgo.glif new file mode 100644 index 00000000..56fe8f3f --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/virgo.glif @@ -0,0 +1,224 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =55 + com.fontlab.metricsRight + =35 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/vzmetcomb-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/vzmetcomb-cy.glif new file mode 100644 index 00000000..da2ecb79 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/vzmetcomb-cy.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/w.glif b/sources/FixelText-SemiBold.ufo/glyphs/w.glif new file mode 100644 index 00000000..2734d797 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/w.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/wacute.glif b/sources/FixelText-SemiBold.ufo/glyphs/wacute.glif new file mode 100644 index 00000000..91de69a0 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/wacute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + w+acute + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/wcircumflex.glif b/sources/FixelText-SemiBold.ufo/glyphs/wcircumflex.glif new file mode 100644 index 00000000..a970c151 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/wcircumflex.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + w+circumflex + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/wdieresis.glif b/sources/FixelText-SemiBold.ufo/glyphs/wdieresis.glif new file mode 100644 index 00000000..17e4a75e --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/wdieresis.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + w+dieresis + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/wecyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/wecyr.glif new file mode 100644 index 00000000..640cacfe --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/wecyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + w + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/wgrave.glif b/sources/FixelText-SemiBold.ufo/glyphs/wgrave.glif new file mode 100644 index 00000000..ae2a6fc0 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/wgrave.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + w+grave + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/x.glif b/sources/FixelText-SemiBold.ufo/glyphs/x.glif new file mode 100644 index 00000000..7144dc4f --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/x.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/xatailcyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/xatailcyr.glif new file mode 100644 index 00000000..af5d0554 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/xatailcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + x + com.fontlab.metricsRight + zhetailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/y.glif b/sources/FixelText-SemiBold.ufo/glyphs/y.glif new file mode 100644 index 00000000..e7317bf2 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/y.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/yacute.glif b/sources/FixelText-SemiBold.ufo/glyphs/yacute.glif new file mode 100644 index 00000000..3908cd42 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/yacute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + y+acute + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/yaecyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/yaecyr.glif new file mode 100644 index 00000000..36c91ecb --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/yaecyr.glif @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + я + com.fontlab.metricsRight + e + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/yatI_otified-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/yatI_otified-cy.glif new file mode 100644 index 00000000..bf6c7c18 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/yatI_otified-cy.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + com.fontlab.metricsRight + yatcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/yatcyr.B_G_R_.glif b/sources/FixelText-SemiBold.ufo/glyphs/yatcyr.B_G_R_.glif new file mode 100644 index 00000000..4a80f673 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/yatcyr.B_G_R_.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hardsign-cy + com.fontlab.metricsRight + ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/yatcyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/yatcyr.glif new file mode 100644 index 00000000..9485a33e --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/yatcyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hardsign-cy + com.fontlab.metricsRight + ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/ycircumflex.glif b/sources/FixelText-SemiBold.ufo/glyphs/ycircumflex.glif new file mode 100644 index 00000000..e5db72d2 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/ycircumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + y+circumflex + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/ydieresis.glif b/sources/FixelText-SemiBold.ufo/glyphs/ydieresis.glif new file mode 100644 index 00000000..a1c5b11f --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/ydieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + y+dieresis + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/yen.glif b/sources/FixelText-SemiBold.ufo/glyphs/yen.glif new file mode 100644 index 00000000..956bb4e0 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/yen.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/yen.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/yen.ss01.glif new file mode 100644 index 00000000..da8cbc57 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/yen.ss01.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/yerN_eutral-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/yerN_eutral-cy.glif new file mode 100644 index 00000000..1d1e4b2d --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/yerN_eutral-cy.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hardsign-cy + com.fontlab.metricsRight + ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/yeru-cy.accented.glif b/sources/FixelText-SemiBold.ufo/glyphs/yeru-cy.accented.glif new file mode 100644 index 00000000..972e0644 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/yeru-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ы+acute + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/yeru-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/yeru-cy.glif new file mode 100644 index 00000000..ded200b1 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/yeru-cy.glif @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/yeru-cy.ss01.glif b/sources/FixelText-SemiBold.ufo/glyphs/yeru-cy.ss01.glif new file mode 100644 index 00000000..83c97d51 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/yeru-cy.ss01.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/yeruB_ackyer-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/yeruB_ackyer-cy.glif new file mode 100644 index 00000000..c79f3530 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/yeruB_ackyer-cy.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hardsign-cy + com.fontlab.metricsRight + dotlessi + com.fontlab.recipe + hardsign-cy_dotlessi + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/yi-cy.alt.glif b/sources/FixelText-SemiBold.ufo/glyphs/yi-cy.alt.glif new file mode 100644 index 00000000..c7575cea --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/yi-cy.alt.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.recipe + idieresis + public.markColor + 0.6,0.997,1,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/yi-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/yi-cy.glif new file mode 100644 index 00000000..5d858318 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/yi-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + idieresis + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/ylongdieresiscyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/ylongdieresiscyr.glif new file mode 100644 index 00000000..34abb2e2 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/ylongdieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + yeru-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/yn-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/yn-cy.glif new file mode 100644 index 00000000..65423218 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/yn-cy.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |izhitsacyr + com.fontlab.metricsRight + |izhitsacyr + com.fontlab.recipe + izhitsa + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/yuR_eversed-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/yuR_eversed-cy.glif new file mode 100644 index 00000000..505f0d46 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/yuR_eversed-cy.glif @@ -0,0 +1,20 @@ + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l + com.fontlab.recipe + ю + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/yusB_lended-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/yusB_lended-cy.glif new file mode 100644 index 00000000..d65691de --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/yusB_lended-cy.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + yusbigcyr + com.fontlab.metricsRight + yusbigcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/yusC_losedlittle-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/yusC_losedlittle-cy.glif new file mode 100644 index 00000000..12a9d7e3 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/yusC_losedlittle-cy.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + yuslittlecyr + com.fontlab.metricsRight + yuslittlecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/yusbigcyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/yusbigcyr.glif new file mode 100644 index 00000000..7eb56f5c --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/yusbigcyr.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/yusbigiotifiedcyr.B_G_R_.glif b/sources/FixelText-SemiBold.ufo/glyphs/yusbigiotifiedcyr.B_G_R_.glif new file mode 100644 index 00000000..7e9e4879 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/yusbigiotifiedcyr.B_G_R_.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + com.fontlab.metricsRight + ж + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/yusbigiotifiedcyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/yusbigiotifiedcyr.glif new file mode 100644 index 00000000..3296537a --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/yusbigiotifiedcyr.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + ж + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/yusiotifiedC_losedL_ittle-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/yusiotifiedC_losedL_ittle-cy.glif new file mode 100644 index 00000000..fe882966 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/yusiotifiedC_losedL_ittle-cy.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + yusClosedlittle-cy + com.fontlab.recipe + yusClosedlittle-cy+н + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/yuslittlecyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/yuslittlecyr.glif new file mode 100644 index 00000000..8a2c66ea --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/yuslittlecyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + v-5 + com.fontlab.metricsRight + v-5 + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/yuslittleiotifiedcyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/yuslittleiotifiedcyr.glif new file mode 100644 index 00000000..9d7795c7 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/yuslittleiotifiedcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + v-10 + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/z.glif b/sources/FixelText-SemiBold.ufo/glyphs/z.glif new file mode 100644 index 00000000..6e68b645 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/z.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/zacute.glif b/sources/FixelText-SemiBold.ufo/glyphs/zacute.glif new file mode 100644 index 00000000..14f28d4a --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/zacute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + z+acute + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/zcaron.glif b/sources/FixelText-SemiBold.ufo/glyphs/zcaron.glif new file mode 100644 index 00000000..dd1b1677 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/zcaron.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + z+caron + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/zdotaccent.glif b/sources/FixelText-SemiBold.ufo/glyphs/zdotaccent.glif new file mode 100644 index 00000000..dd58db36 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/zdotaccent.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + z+dotaccent + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/ze-cy.B_G_R_.glif b/sources/FixelText-SemiBold.ufo/glyphs/ze-cy.B_G_R_.glif new file mode 100644 index 00000000..d9d97b61 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/ze-cy.B_G_R_.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |c-12 + com.fontlab.metricsRight + в-5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/ze-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/ze-cy.glif new file mode 100644 index 00000000..346d51d3 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/ze-cy.glif @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |c-5 + com.fontlab.metricsRight + в + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/zedieresiscyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/zedieresiscyr.glif new file mode 100644 index 00000000..522cbc7d --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/zedieresiscyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ze-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/zemlya-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/zemlya-cy.glif new file mode 100644 index 00000000..74d1fef7 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/zemlya-cy.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + z-10 + com.fontlab.metricsRight + z + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/zero.glif b/sources/FixelText-SemiBold.ufo/glyphs/zero.glif new file mode 100644 index 00000000..c9a22f49 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/zero.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/zero.osf.glif b/sources/FixelText-SemiBold.ufo/glyphs/zero.osf.glif new file mode 100644 index 00000000..d0d2d21e --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/zero.osf.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + zero + com.fontlab.metricsRight + zero + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/zero.tf.glif b/sources/FixelText-SemiBold.ufo/glyphs/zero.tf.glif new file mode 100644 index 00000000..300b2230 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/zero.tf.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/zetailcyr.B_S_H_.glif b/sources/FixelText-SemiBold.ufo/glyphs/zetailcyr.B_S_H_.glif new file mode 100644 index 00000000..6d5cd411 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/zetailcyr.B_S_H_.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + з + com.fontlab.metricsRight + з + com.fontlab.recipe + з + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/zetailcyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/zetailcyr.glif new file mode 100644 index 00000000..3194d13b --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/zetailcyr.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + з + com.fontlab.metricsRight + з + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/zhe-cy.B_G_R_.glif b/sources/FixelText-SemiBold.ufo/glyphs/zhe-cy.B_G_R_.glif new file mode 100644 index 00000000..e996aecc --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/zhe-cy.B_G_R_.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |k + com.fontlab.metricsRight + k + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/zhe-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/zhe-cy.glif new file mode 100644 index 00000000..81a08409 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/zhe-cy.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |k + com.fontlab.metricsRight + k + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/zhebrevecyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/zhebrevecyr.glif new file mode 100644 index 00000000..f9562f61 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/zhebrevecyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + zhe-cy+breve + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/zhedieresiscyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/zhedieresiscyr.glif new file mode 100644 index 00000000..eb00f382 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/zhedieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + zhe-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/zhetailcyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/zhetailcyr.glif new file mode 100644 index 00000000..ccc60b3a --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/zhetailcyr.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ж + com.fontlab.metricsRight + katailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/zhwe-cy.glif b/sources/FixelText-SemiBold.ufo/glyphs/zhwe-cy.glif new file mode 100644 index 00000000..82364b1d --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/zhwe-cy.glif @@ -0,0 +1,87 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + з + com.fontlab.metricsRight + ж + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/glyphs/zjekomicyr.glif b/sources/FixelText-SemiBold.ufo/glyphs/zjekomicyr.glif new file mode 100644 index 00000000..28feedc4 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/glyphs/zjekomicyr.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + з-20 + com.fontlab.metricsRight + njekomicyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-SemiBold.ufo/groups.plist b/sources/FixelText-SemiBold.ufo/groups.plist new file mode 100644 index 00000000..0215e532 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/groups.plist @@ -0,0 +1,2992 @@ + + + + + accent + + grave + acute.case + grave.case + acute + + case + + arrowdown.case + arrowdown.ss01.case + arrowleft.case + arrowleft.ss01.case + arrowright.case + arrowright.ss01.case + arrowup.case + arrowup.ss01.case + backslash.case + bar.case + braceleft.case + braceright.case + bracketleft.case + bracketright.case + brokenbar.case + bullet.case + colon.case + emdash.case + endash.case + exclamdown.case + guillemetleft.case + guillemetright.case + guilsinglleft.case + guilsinglright.case + hyphen.case + parenleft.case + parenright.case + questiondown.case + semicolon.case + at.case + bracketangleleft.case + bracketangleright.case + slash.case + + case_def + + arrowdown + arrowdown.ss01 + arrowleft + arrowleft.ss01 + arrowright + arrowright.ss01 + arrowup + arrowup.ss01 + backslash + bar + braceleft + braceright + bracketleft + bracketright + brokenbar + bullet + colon + emdash + endash + exclamdown + guillemetleft + guillemetright + guilsinglleft + guilsinglright + hyphen + parenleft + parenright + questiondown + semicolon + at + bracketangleleft + bracketangleright + slash + + cpsp + + 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 + Agrave + Aacute + Acircumflex + Atilde + Adieresis + Aring + AE + Ccedilla + Egrave + Eacute + Ecircumflex + Edieresis + Igrave + Iacute + Icircumflex + Idieresis + Eth + Ntilde + Ograve + Oacute + Ocircumflex + Otilde + Odieresis + Oslash + Ugrave + Uacute + Ucircumflex + Udieresis + Yacute + Thorn + Amacron + Abreve + Aogonek + Cacute + Ccircumflex + Cdotaccent + Ccaron + Dcaron + Dcroat + Emacron + Ebreve + Edotaccent + Eogonek + Ecaron + Gcircumflex + Gbreve + Gdotaccent + Gcommaaccent + Hcircumflex + Hbar + Itilde + Imacron + Ibreve + Iogonek + Idotaccent + IJ + Jcircumflex + Kcommaaccent + Lacute + Lcommaaccent + Lcaron + Ldot + Lslash + Nacute + Ncommaaccent + Ncaron + Eng + Omacron + Obreve + Ohungarumlaut + OE + Racute + Rcommaaccent + Rcaron + Sacute + Scircumflex + Scedilla + Scaron + Tcedilla + Tcaron + Tbar + Utilde + Umacron + Ubreve + Uring + Uhungarumlaut + Uogonek + Wcircumflex + Ycircumflex + Ydieresis + Zacute + Zdotaccent + Zcaron + Schwa + Acaron + Gacute + AEacute + Oslashacute + Scommaaccent + Tcommaaccent + Delta + Omega + Iegravecyr + uniF43A + A-cy.accented + E-cy.accented + Ii-cy.accented + O-cy.accented + U-cy.accented + Yeru-cy.accented + Ereversed-cy.accented + Iu-cy.accented + Ia-cy.accented + Io-cy.accented + uniF498 + uniF49A + uniF49C + uniF49E + uniF4C6 + uniF4CC + uniF4D2 + uniF4D4 + uniF4D6 + uniF4D8 + uniF50E + uniF510 + uniF512 + uniF514 + uniF516 + uniF518 + uniF51A + uniF51C + uniF51E + Yeru-cymacron + uniF522 + uniF524 + uniF526 + uniF528 + uniF52A + uniF52C + uniF52E + uniF532 + uniF536 + uniF538 + uniF830 + uniF833 + uniF839 + uniF86F + uniF872 + uniF875 + uniF878 + uniF87B + uniF87E + Io-cy + Djecyr + Gjecyr + E-cy + Dze-cy + I-cy + Yi-cy + Jecyr + Ljecyr + Njecyr + Tshecyr + Kjecyr + Igravecyr + Ushort-cy + Dzhecyr + A-cy + Be-cy + Ve-cy + Ge-cy + De-cy + Ie-cy + Zhe-cy + Ze-cy + Ii-cy + Iishort-cy + Ka-cy + El-cy + Em-cy + En-cy + O-cy + Pe-cy + Er-cy + Es-cy + Te-cy + U-cy + Ef-cy + Ha-cy + Tse-cy + Che-cy + Sha-cy + Shcha-cy + Hardsign-cy + Yeru-cy + Softsign-cy + Ereversed-cy + Iu-cy + Ia-cy + Omegacyr + Yatcyr + Eiotifiedcyr + Yuslittlecyr + Yuslittleiotifiedcyr + Yusbigcyr + Yusbigiotifiedcyr + Ksicyr + Psicyr + Fitacyr + Izhitsacyr + Izhitsagravedblcyr + Ukcyr + Omegaroundcyr + Omegatitlocyr + Otcyr + Koppacyr + Ishortsharptailcyr + Semisoftcyr + Ertickcyr + Gheupturn-cy + Gestrokecyr + Gehookcyr + Zhetailcyr + Zetailcyr + Katailcyr + Kaverticalstrokecyr + Kastrokecyr + Kabashkcyr + Entailcyr + Engecyr + Pehookcyr + Haabkhcyr + Estailcyr + Tetailcyr + Ustraightcyr + Ustraightstrokecyr + Xatailcyr + Tetsecyr + Chetailcyr + Chevertcyr + Shhacyr + Cheabkhcyr + Cheabkhtailcyr + Palochkacyr + Zhebrevecyr + Kahookcyr + Elsharptailcyr + Enhookcyr + Ensharptailcyr + Chekhakascyr + Emsharptailcyr + Abrevecyr + Adieresiscyr + Aiecyr + Iebrevecyr + Schwacyr + Schwadieresiscyr + Zhedieresiscyr + Zedieresiscyr + Dzeabkhcyr + Imacroncyr + Idieresiscyr + Odieresiscyr + Obarcyr + Obardieresiscyr + Ereverseddieresiscyr + Umacroncyr + Udieresiscyr + Uacutedblcyr + Chedieresiscyr + Getailcyr + Ylongdieresiscyr + Gehookstrokecyr + Hahookcyr + Hastrokecyr + Dekomicyr + Djekomicyr + Zjekomicyr + Dzjekomicyr + Ljekomicyr + Njekomicyr + Sjekomicyr + Tjekomicyr + Reversedzecyr + Elhookcyr + Lhacyr + Rhacyr + Yaecyr + Qacyr + Wecyr + Kaaleutcyr + Elmiddlehookcyr + Enmiddlehookcyr + Petailcyr + Shhatailcyr + Enhookleftcyr + Dzzhecyr + Dchecyr + Eltailcyr + Wgrave + Wacute + Wdieresis + Germandbls + uni1EBC + Zemlya-cy + Dzelo-cy + DzeReversed-cy + Iota-cy + Djerv-cy + UkMonograph-cy + OmegaBroad-cy + YerNeutral-cy + YeruBackYer-cy + YatIotified-cy + YuReversed-cy + IotifiedA-cy + YusClosedlittle-cy + YusBlended-cy + YusiotifiedClosedLittle-cy + Yn-cy + TseReversed-cy + DeSoft-cy + ElSoft-cy + EmSoft-cy + OMonocular-cy + OBinocular-cy + ODoubleMonocular-cy + Dwe-cy + Dzwe-cy + Zhwe-cy + Cche-cy + Dzze-cy + TeWithMiddleHook-cy + Twe-cy + Tswe-cy + Tsse-cy + Tche-cy + Hwe-cy + Shwe-cy + DoubleO-cy + CrossedO-cy + A-cy.ss01 + A.ss01 + AE.ss01 + Aacute.ss01 + Abreve.ss01 + Acircumflex.ss01 + Adieresis.ss01 + Agrave.ss01 + Amacron.ss01 + Aogonek.ss01 + Aring.ss01 + Atilde.ss01 + Em-cy.ss01 + Eng.ss01 + G.ss01 + Gacute.ss01 + Gbreve.ss01 + Gcircumflex.ss01 + Gcommaaccent.ss01 + Gdotaccent.ss01 + Ha-cy.ss01 + Ia-cy.ss01 + J.ss01 + Jcircumflex.ss01 + K.ss01 + Ka-cy.ss01 + Kcommaaccent.ss01 + M.ss01 + N.ss01 + Nacute.ss01 + Ncaron.ss01 + Ncommaaccent.ss01 + Ntilde.ss01 + Q.ss01 + U-cy.ss01 + Ushort-cy.ss01 + V.ss01 + W.ss01 + Wacute.ss01 + Wcircumflex.ss01 + Wdieresis.ss01 + Wgrave.ss01 + X.ss01 + Y.ss01 + Yacute.ss01 + Ycircumflex.ss01 + Ydieresis.ss01 + Z.ss01 + Zacute.ss01 + Zcaron.ss01 + Zdotaccent.ss01 + Zetailcyr.BSH + Gestrokecyr.BSH + Estailcyr.BSH + Estailcyr.CHU + Zhe-cy.ss01 + + locl.SRB + + be-cy.SRB + iegravecyr.SRB + igravecyr.SRB + + loclSRB_def + + be-cy + iegravecyr + igravecyr + + locl_BGR + + De-cy.BGR + Ef-cy.BGR + El-cy.BGR + de-cy.BGR + eiotifiedcyr.BGR + el-cy.BGR + ge-cy.BGR + hardsign-cy.BGR + ii-cy.BGR + iishort-cy.BGR + iotifieda-cy.BGR + iu-cy.BGR + ka-cy.BGR + pe-cy.BGR + sha-cy.BGR + shcha-cy.BGR + softsign-cy.BGR + te-cy.BGR + tse-cy.BGR + ve-cy.BGR + yatcyr.BGR + yusbigiotifiedcyr.BGR + ze-cy.BGR + zhe-cy.BGR + + locl_def + + De-cy + Ef-cy + El-cy + de-cy + eiotifiedcyr + el-cy + ge-cy + hardsign-cy + ii-cy + iishort-cy + iotifieda-cy + iu-cy + ka-cy + pe-cy + sha-cy + shcha-cy + softsign-cy + te-cy + tse-cy + ve-cy + yatcyr + yusbigiotifiedcyr + ze-cy + zhe-cy + + pics + + neptune + leo + virgo + bishopwhite + knightwhite + rookblack + bishopblack + knightblack + heartwhite + diamondwhite-misc + spadewhite + heart + clubwhite + crossedswords + flower + floretteblack + florettewhite + floretteoutlinedpetalledblackeight + + pics_def + + A + B + C + D + E + F + G + H + I + J + K + L + M + N + O + P + Q + R + + public.kern1.A.ss012 + + A-cy.ss01 + A.ss01 + Aacute.ss01 + Abreve.ss01 + Acircumflex.ss01 + Adieresis.ss01 + Agrave.ss01 + Amacron.ss01 + Aogonek.ss01 + Aring.ss01 + Atilde.ss01 + + public.kern1.A2 + + A + A-cy + A-cy.accented + Aacute + Abreve + Abrevecyr + Acaron + Acircumflex + Adieresis + Adieresiscyr + Agrave + Amacron + Aogonek + Aring + Atilde + De-cy.BGR + Delta + El-cy.BGR + IotifiedA-cy + Yn-cy + YusClosedlittle-cy + YusiotifiedClosedLittle-cy + Yuslittlecyr + Yuslittleiotifiedcyr + uniF50E + uniF830 + + public.kern1.AE + + AE + AE.ss01 + AEacute + Aiecyr + + public.kern1.C1 + + C + Cacute + Ccaron + Ccedilla + Ccircumflex + Cdotaccent + E-cy + Eiotifiedcyr + Es-cy + Estailcyr + Estailcyr.BSH + Estailcyr.CHU + Reversedzecyr + uniF45D + uniF526 + uniF538 + uniF875 + + public.kern1.Decyr + + Chetailcyr + De-cy + Dwe-cy + Dzze-cy + Elsharptailcyr + Eltailcyr + Emsharptailcyr + Ensharptailcyr + Entailcyr + Ishortsharptailcyr + Petailcyr + Shcha-cy + Shwe-cy + Tetsecyr + Tse-cy + Tswe-cy + uniF87B + + public.kern1.E1 + + E + E-cy.accented + Eacute + Ebreve + Ecaron + Ecircumflex + Edieresis + Edotaccent + Egrave + Emacron + Eogonek + Ie-cy + Iebrevecyr + Io-cy + Io-cy.accented + Yaecyr + uni1EBC + uniF510 + uniF512 + uniF514 + uniF833 + + public.kern1.G.ss01 + + G.ss01 + Gacute.ss01 + Gbreve.ss01 + Gcircumflex.ss01 + Gcommaaccent.ss01 + Gdotaccent.ss01 + + public.kern1.G1 + + G + Gacute + Gbreve + Gcircumflex + Gcommaaccent + Gdotaccent + + public.kern1.Ge-cy + + DeSoft-cy + ElSoft-cy + EmSoft-cy + Engecyr + Ge-cy + Gehookstrokecyr + Gestrokecyr + Gestrokecyr.BSH + Getailcyr + Gheupturn-cy + Gjecyr + TseReversed-cy + YeruBackYer-cy + uniF872 + + public.kern1.H + + Eng + Eng.ss01 + H + Hbar + Hcircumflex + I + Iacute + Ibreve + Icircumflex + Idieresis + Idotaccent + Igrave + Imacron + Iogonek + Itilde + J.ss01 + Jcircumflex.ss01 + M + M.ss01 + N + N.ss01 + Nacute + Nacute.ss01 + Ncaron + Ncaron.ss01 + Ncommaaccent + Ncommaaccent.ss01 + Ntilde + Ntilde.ss01 + + public.kern1.Hardcyr + + Hardsign-cy + Ljecyr + Njecyr + Semisoftcyr + Shhacyr + Softsign-cy + YatIotified-cy + Yatcyr + YerNeutral-cy + uniF478 + + public.kern1.J1 + + J + Jcircumflex + Jecyr + + public.kern1.K + + K + K.ss01 + Ka-cy + Ka-cy.ss01 + Kaaleutcyr + Kabashkcyr + Kastrokecyr + Kcommaaccent + Kcommaaccent.ss01 + Kjecyr + uniF86F + + public.kern1.L + + L + Lacute + Lcaron + Lcommaaccent + Lslash + + public.kern1.O + + Cheabkhcyr + Cheabkhtailcyr + CrossedO-cy + D + Dcaron + Dcroat + DoubleO-cy + Ef-cy + Ef-cy.BGR + Ereversed-cy + Ereversed-cy.accented + Ereverseddieresiscyr + Eth + Fitacyr + Iu-cy + Iu-cy.accented + O + O-cy + O-cy.accented + OBinocular-cy + ODoubleMonocular-cy + OMonocular-cy + Oacute + Obarcyr + Obardieresiscyr + Obreve + Ocircumflex + Odieresis + Odieresiscyr + Ograve + Ohungarumlaut + Omacron + Omega + Omegaroundcyr + Oslash + Oslashacute + Otilde + Q + Qacyr + Schwa + Schwacyr + Schwadieresiscyr + Sjekomicyr + uniF498 + uniF49A + uniF49C + uniF4D2 + uniF4D6 + uniF518 + uniF51A + uniF51C + uniF51E + uniF522 + uniF524 + uniF52C + uniF52E + uniF839 + + public.kern1.Oslash.alt + + Ha-cy + Ha-cy.ss01 + Hahookcyr + Lhacyr + Rhacyr + X + X.ss01 + uniF878 + + public.kern1.P + + Er-cy + Ertickcyr + P + uniF4D4 + + public.kern1.R + + R + Racute + Rcaron + Rcommaaccent + + public.kern1.S1 + + Dzwe-cy + S + Sacute + Scaron + Scedilla + Scircumflex + Scommaaccent + + public.kern1.T1 + + Koppacyr + T + Tcaron + Tcedilla + Tcommaaccent + Te-cy + Tetailcyr + Tsse-cy + Twe-cy + + public.kern1.U1 + + OmegaBroad-cy + Omegacyr + Omegatitlocyr + Otcyr + Psicyr + U + Uacute + Ubreve + Ucircumflex + Udieresis + Ugrave + Uhungarumlaut + Umacron + Uogonek + Uring + Utilde + + public.kern1.Ucyr1 + + U-cy + U-cy.accented + U-cy.ss01 + Uacutedblcyr + Udieresiscyr + Umacroncyr + Ushort-cy + Ushort-cy.ss01 + uniF4CC + + public.kern1.V + + Izhitsacyr + Izhitsagravedblcyr + V + V.ss01 + + public.kern1.W.ss011 + + W.ss01 + Wacute.ss01 + Wcircumflex.ss01 + Wdieresis.ss01 + Wgrave.ss01 + + public.kern1.W1 + + W + Wacute + Wcircumflex + Wdieresis + Wecyr + Wgrave + + public.kern1.Y.ss011 + + Y.ss01 + Yacute.ss01 + Ycircumflex.ss01 + Ydieresis.ss01 + + public.kern1.Y1 + + Ustraightcyr + Ustraightstrokecyr + Y + Yacute + Ycircumflex + Ydieresis + uniF43A + + public.kern1.Yacyr + + Cche-cy + Che-cy + Chedieresiscyr + Chekhakascyr + Chevertcyr + Dekomicyr + Elhookcyr + Em-cy + En-cy + Enhookcyr + Enhookleftcyr + I-cy + Ia-cy + Ia-cy.accented + Ia-cy.ss01 + Idieresiscyr + Ii-cy + Ii-cy.accented + Iishort-cy + Imacroncyr + Palochkacyr + Pe-cy + Sha-cy + Tche-cy + Yeru-cy + Yeru-cy.accented + Yeru-cymacron + Yi-cy + Ylongdieresiscyr + YuReversed-cy + palochkacyr + uniF45E + uniF45F + uniF4C6 + uniF4D8 + uniF528 + uniF52A + uniF532 + uniF536 + uniF87E + + public.kern1.Z1 + + Dzelo-cy + Z + Z.ss01 + Zacute + Zacute.ss01 + Zcaron + Zcaron.ss01 + Zdotaccent + Zdotaccent.ss01 + Zemlya-cy + + public.kern1.Ze-cy + + Dzeabkhcyr + Ksicyr + Ze-cy + Zedieresiscyr + Zetailcyr + Zetailcyr.BSH + uniF516 + + public.kern1.Zhe-cy + + Dzzhecyr + Katailcyr + Kaverticalstrokecyr + Xatailcyr + YusBlended-cy + Yusbigcyr + Yusbigiotifiedcyr + Zhe-cy + Zhebrevecyr + Zhedieresiscyr + Zhetailcyr + Zhwe-cy + + public.kern1.a1 + + a + aacute + abreve + acaron + acircumflex + adieresis + agrave + amacron + aogonek + aring + atilde + + public.kern1.c1 + + c + cacute + ccaron + ccedilla + ccircumflex + cdotaccent + e-cy + e-cy.hist + eiotifiedcyr + eiotifiedcyr.BGR + es-cy + estailcyr + estailcyr.BSH + estailcyr.CHU + koppacyr + reversedzecyr + sjekomicyr + uni1C83 + uniF475 + uniF527 + uniF539 + uniF876 + + public.kern1.comma1 + + comma + quotedblbase + quotesinglbase + + public.kern1.copyright1 + + copyright + registered + + public.kern1.dcaron + + dcaron + dcaron.ss01 + lcaron + + public.kern1.decyr1 + + chetailcyr + dchecyr + de-cy + de-cy.ss01 + dwe-cy + dzze-cy + elsharptailcyr + eltailcyr + emsharptailcyr + ensharptailcyr + entailcyr + ishortsharptailcyr + petailcyr + shcha-cy + shcha-cy.BGR + shhatailcyr + shwe-cy + tetsecyr + tse-cy + tse-cy.BGR + tswe-cy + uniF87C + + public.kern1.e.ss011 + + e.ss01 + eacute.ss01 + ebreve.ss01 + ecaron.ss01 + ecircumflex.ss01 + edieresis.ss01 + edotaccent.ss01 + egrave.ss01 + emacron.ss01 + eogonek.ss01 + oe.ss01 + + public.kern1.e1 + + ae + aeacute + aiecyr + cheabkhcyr + cheabkhtailcyr + e + e-cy.accented + eacute + ebreve + ecaron + ecircumflex + edieresis + edotaccent + egrave + emacron + eogonek + ie-cy + iebrevecyr + iegravecyr + iegravecyr.SRB + io-cy + io-cy.accented + uni1EBD + uniF511 + uniF513 + uniF515 + uniF834 + yaecyr + + public.kern1.el-cy.BGR + + el-cy.BGR + iotifieda-cy + iotifieda-cy.BGR + uni1C81 + yn-cy + yusClosedlittle-cy + yusiotifiedClosedLittle-cy + yuslittlecyr + yuslittleiotifiedcyr + + public.kern1.emdash1 + + emdash + endash + hyphen + + public.kern1.f1 + + f + f_f + + public.kern1.fi + + f_f_i + fi + + public.kern1.five1 + + five + five.tf + + public.kern1.four1 + + four + four.tf + + public.kern1.g.ss011 + + g.ss01 + gacute.ss01 + gbreve.ss01 + gcircumflex.ss01 + gcommaaccent.ss01 + gdotaccent.ss01 + + public.kern1.g1 + + g + gacute + gbreve + gcircumflex + gcommaaccent + gdotaccent + + public.kern1.gecyr + + deSoft-cy + elSoft-cy + emSoft-cy + engecyr + ge-cy + gehookstrokecyr + gestrokecyr + gestrokecyr.BSH + getailcyr + gheupturn-cy + gjecyr + + public.kern1.guillemotright1 + + guillemetright + guilsinglright + + public.kern1.hardcyr + + Tjekomicyr + djekomicyr + elmiddlehookcyr + enmiddlehookcyr + gehookcyr + hardsign-cy + hardsign-cy.BGR + hardsign-cy.ss01 + ljecyr + ljecyr.ss01 + ljekomicyr + njecyr + njecyr.ss01 + njekomicyr + pehookcyr + semisoftcyr + softsign-cy + softsign-cy.BGR + softsign-cy.ss01 + tewithmiddlehook-cy + tjekomicyr + uni1C86 + uni1C87 + uniF479 + yatIotified-cy + yatcyr + yatcyr.BGR + yerNeutral-cy + zjekomicyr + + public.kern1.i1 + + Djekomicyr + Ljekomicyr + Njekomicyr + Zjekomicyr + i + i-cy + iacute + icircumflex + igrave + imacron + iogonek + itilde + uniF476 + yi-cy.alt + + public.kern1.icyr1 + + cche-cy + che-cy + chedieresiscyr + chekhakascyr + chevertcyr + de-cy.BGR + el-cy + elhookcyr + em-cy + en-cy + enhookcyr + enhookleftcyr + ia-cy + ia-cy.accented + idieresiscyr + igravecyr + ii-cy + ii-cy.accented + iishort-cy + imacroncyr + mu + pe-cy + psicyr + q + qacyr + sha-cy + sha-cy.BGR + tche-cy + tseReversed-cy + ubreve + uni1C85 + uniF4C7 + uniF4D9 + uniF521 + uniF529 + uniF52B + uniF533 + uniF537 + uniF873 + uniF87F + utilde + yeru-cy + yeru-cy.accented + yeru-cy.ss01 + yeruBackyer-cy + ylongdieresiscyr + yuReversed-cy + + public.kern1.j1 + + ij + j + jcircumflex + jdotless + + public.kern1.k + + k + ka-cy + ka-cy.BGR + kaaleutcyr + kabashkcyr + kastrokecyr + kcommaaccent + kgreenlandic + kjecyr + uniF870 + + public.kern1.l + + f_f_l + fl + l + lacute + lcommaaccent + + public.kern1.l.ss011 + + Iota-cy + iota-cy + l.ss01 + lacute.ss01 + lcommaaccent.ss01 + + public.kern1.n + + Djecyr + Elmiddlehookcyr + Enmiddlehookcyr + Gehookcyr + Hwe-cy + Kahookcyr + Pehookcyr + Shhatailcyr + TeWithMiddleHook-cy + Tshecyr + a-cy.accented + a-cy.ss01 + a.ss01 + aacute.ss01 + abreve.ss01 + abrevecyr + acircumflex.ss01 + adieresis.ss01 + adieresiscyr + agrave.ss01 + aogonek.ss01 + aring.ss01 + atilde.ss01 + djecyr + el-cy.ss01 + h + hbar + hcircumflex + hwe-cy + ia-cy.ss01 + iotifieda-cy.hist + m + n + nacute + napostrophe + ncaron + ncommaaccent + ntilde + pe-cy.BGR + q.ss01 + shhacyr + te-cy.BGR + tshecyr + uniF49E + uniF49F + uniF50F + uniF831 + + public.kern1.numero + + numero + numero.ss01 + + public.kern1.o1 + + b + b.ss01 + be-cy.SRB + crossedo-cy + ef-cy + er-cy + er-cy.ss01 + ereversed-cy + ereversed-cy.accented + ereverseddieresiscyr + ertickcyr + eturned + fitacyr + iu-cy + iu-cy.BGR + iu-cy.accented + o + o-cy + o-cy.accented + oBinocular-cy + oDoubleMonocular-cy + oMonocular-cy + oacute + obarcyr + obardieresiscyr + obreve + ocircumflex + odieresis + odieresiscyr + ograve + ohungarumlaut + omacron + omegaBroad-cy + omegaroundcyr + omegatitlocyr + oslashacute + otilde + p + p.ss01 + schwacyr + schwadieresiscyr + thorn + uni1C82 + uniF499 + uniF49D + uniF4D3 + uniF4D5 + uniF4D7 + uniF519 + uniF51B + uniF51D + uniF51F + uniF523 + uniF525 + uniF52D + uniF52F + uniF83A + + public.kern1.period1 + + ellipsis + period + + public.kern1.quotedbl1 + + quotedbl + quotesingle + + public.kern1.quoteleft1 + + quotedblleft + quoteleft + + public.kern1.quoteright1 + + apostrophemod + minute + quotedblright + quoteright + second + + public.kern1.s1 + + dzwe-cy + s + sacute + scaron + scedilla + scircumflex + scommaaccent + + public.kern1.t.ss011 + + t.ss01 + tcedilla.ss01 + tcommaaccent.ss01 + + public.kern1.t1 + + t + tcaron + tcedilla + tcommaaccent + + public.kern1.te-cy + + te-cy + tetailcyr + tsse-cy + twe-cy + + public.kern1.u1 + + igravecyr.SRB + ii-cy.BGR + iishort-cy.BGR + pe-cy.SRB + te-cy.SRB + u + uacute + ucircumflex + udieresis + ugrave + uhungarumlaut + umacron + uogonek + uring + + public.kern1.uni0435.ss011 + + ie-cy.ss01 + io-cy.ss01 + + public.kern1.v + + izhitsacyr + izhitsagravedblcyr + v + + public.kern1.w1 + + omegacyr + otcyr + w + wacute + wcircumflex + wdieresis + wecyr + wgrave + + public.kern1.x + + ha-cy + hahookcyr + lhacyr + rhacyr + uniF879 + x + + public.kern1.y1 + + Ukcyr + u-cy + u-cy.accented + uacutedblcyr + udieresiscyr + ukcyr + umacroncyr + uniF43B + uniF4CD + ushort-cy + ustraightcyr + ustraightstrokecyr + y + yacute + ycircumflex + ydieresis + + public.kern1.z1 + + dzelo-cy + z + zacute + zcaron + zdotaccent + zemlya-cy + + public.kern1.ze-cy + + dzeabkhcyr + ksicyr + uniF517 + ze-cy + ze-cy.BGR + zedieresiscyr + zetailcyr + zetailcyr.BSH + + public.kern1.zhe-cy + + dzzhecyr + katailcyr + kaverticalstrokecyr + xatailcyr + yusBlended-cy + yusbigcyr + yusbigiotifiedcyr + yusbigiotifiedcyr.BGR + zhe-cy + zhe-cy.BGR + zhebrevecyr + zhedieresiscyr + zhetailcyr + zhwe-cy + + public.kern2.A.ss01 + + A.ss01 + AE.ss01 + Aacute.ss01 + Acircumflex.ss01 + Adieresis.ss01 + Agrave.ss01 + Amacron.ss01 + Aogonek.ss01 + Atilde.ss01 + + public.kern2.A.ss012 + + A-cy.ss01 + Abreve.ss01 + Aring.ss01 + + public.kern2.A2 + + A + A-cy + A-cy.accented + AE + AEacute + Aacute + Abreve + Abrevecyr + Acaron + Acircumflex + Adieresis + Adieresiscyr + Agrave + Aiecyr + Amacron + Aogonek + Aring + Atilde + De-cy.BGR + Delta + El-cy.BGR + Yn-cy + YusClosedlittle-cy + Yuslittlecyr + uniF50E + uniF830 + + public.kern2.B + + B + D + Dcaron + E + Eacute + Ecaron + Ecircumflex + Edieresis + Edotaccent + Egrave + Emacron + Eogonek + F + H + Hbar + Hcircumflex + I + Iacute + Ibreve + Icircumflex + Idieresis + Idotaccent + Igrave + Imacron + Iogonek + Itilde + K + K.ss01 + Kcommaaccent + Kcommaaccent.ss01 + L + Lacute + Lcaron + Lcommaaccent + Ldot + M + N + N.ss01 + Nacute + Nacute.ss01 + Ncaron + Ncaron.ss01 + Ncommaaccent + Ncommaaccent.ss01 + Ntilde + Ntilde.ss01 + P + R + Racute + Rcaron + Rcommaaccent + Thorn + uni1EBC + + public.kern2.Che-cy + + Cche-cy + Che-cy + Chedieresiscyr + Chekhakascyr + Chetailcyr + Chevertcyr + uniF4C6 + uniF87E + + public.kern2.De-cy + + Dchecyr + De-cy + DeSoft-cy + Dwe-cy + Dzze-cy + Dzzhecyr + TseReversed-cy + + public.kern2.El-cy + + El-cy + ElSoft-cy + Elhookcyr + Elmiddlehookcyr + Elsharptailcyr + Eltailcyr + Lhacyr + Ljekomicyr + uniF872 + + public.kern2.Eth + + Dcroat + Eth + Gestrokecyr + + public.kern2.G + + C + Cacute + Ccaron + Ccedilla + Ccircumflex + Cdotaccent + CrossedO-cy + DoubleO-cy + E-cy + Ef-cy.BGR + Es-cy + Estailcyr + Estailcyr.BSH + Estailcyr.CHU + Fitacyr + G + G.ss01 + Gacute + Gacute.ss01 + Gbreve + Gbreve.ss01 + Gcircumflex + Gcircumflex.ss01 + Gcommaaccent + Gcommaaccent.ss01 + Gdotaccent + Gdotaccent.ss01 + Haabkhcyr + Koppacyr + O + O-cy + O-cy.accented + OBinocular-cy + ODoubleMonocular-cy + OE + OMonocular-cy + Oacute + Obarcyr + Obardieresiscyr + Obreve + Ocircumflex + Odieresis + Odieresiscyr + Ograve + Ohungarumlaut + Omacron + Omegaroundcyr + Oslash + Otilde + Q + Q.ss01 + Qacyr + Schwacyr + Schwadieresiscyr + Sjekomicyr + Ukcyr + YuReversed-cy + uniF45D + uniF49A + uniF49C + uniF4D2 + uniF518 + uniF51A + uniF51C + uniF51E + uniF526 + uniF839 + uniF875 + + public.kern2.Gecyr + + Be-cy + E-cy.accented + Eiotifiedcyr + Em-cy + EmSoft-cy + Emsharptailcyr + En-cy + Engecyr + Enhookcyr + Enhookleftcyr + Enmiddlehookcyr + Ensharptailcyr + Entailcyr + Er-cy + Ertickcyr + Gehookcyr + Gestrokecyr.BSH + Getailcyr + Gheupturn-cy + Gjecyr + Hwe-cy + I-cy + Iebrevecyr + Ii-cy + Ii-cy.accented + Io-cy.accented + IotifiedA-cy + Iu-cy.accented + Ka-cy + Kaaleutcyr + Kahookcyr + Katailcyr + Kaverticalstrokecyr + Kjecyr + Njekomicyr + Palochkacyr + Pe-cy + Pehookcyr + Petailcyr + Rhacyr + Shhacyr + Shhatailcyr + Shwe-cy + Tswe-cy + Ve-cy + Yeru-cy.accented + Yeru-cymacron + Yi-cy + Ylongdieresiscyr + Yusbigiotifiedcyr + YusiotifiedClosedLittle-cy + Yuslittleiotifiedcyr + palochkacyr + uniF45E + uniF45F + uniF498 + uniF4D4 + uniF510 + uniF512 + uniF514 + uniF52C + uniF52E + uniF532 + uniF536 + uniF833 + uniF86F + uniF87B + + public.kern2.Ia-cy + + Ia-cy + Ia-cy.accented + Yaecyr + uniF4D8 + uniF528 + uniF52A + + public.kern2.Iishort-cy + + Idieresiscyr + Iishort-cy + Imacroncyr + Ishortsharptailcyr + + public.kern2.J + + J + Jcircumflex + Jecyr + + public.kern2.Oslash.alt + + Ha-cy.ss01 + Hahookcyr + X + X.ss01 + Xatailcyr + uniF878 + + public.kern2.S + + Dzwe-cy + S + Sacute + Scaron + Scedilla + Scircumflex + Scommaaccent + + public.kern2.T + + Djecyr + T + Tcaron + Tcedilla + Tche-cy + Tcommaaccent + Te-cy + TeWithMiddleHook-cy + Tetailcyr + Tetsecyr + Tjekomicyr + Tshecyr + Tsse-cy + Twe-cy + + public.kern2.U + + Iota-cy + OmegaBroad-cy + Omegacyr + Omegatitlocyr + Otcyr + Psicyr + U + Uacute + Ubreve + Ucircumflex + Udieresis + Ugrave + Uhungarumlaut + Umacron + Uogonek + Uring + Utilde + + public.kern2.Ucyr.ss01 + + U-cy.accented + U-cy.ss01 + Uacutedblcyr + Udieresiscyr + Umacroncyr + Ushort-cy.ss01 + uniF4CC + + public.kern2.V + + Izhitsacyr + Izhitsagravedblcyr + V + V.ss01 + + public.kern2.W + + W + W.ss01 + Wacute + Wacute.ss01 + Wcircumflex + Wcircumflex.ss01 + Wdieresis + Wdieresis.ss01 + Wecyr + Wgrave + Wgrave.ss01 + + public.kern2.Y + + Ustraightcyr + Ustraightstrokecyr + Y + Y.ss01 + Yacute + Yacute.ss01 + Ycircumflex + Ycircumflex.ss01 + Ydieresis + Ydieresis.ss01 + uniF43A + + public.kern2.Z + + Dzelo-cy + Z + Z.ss01 + Zacute + Zacute.ss01 + Zcaron + Zcaron.ss01 + Zdotaccent + Zdotaccent.ss01 + Zemlya-cy + + public.kern2.Ze-cy1 + + Dzeabkhcyr + Ksicyr + Ze-cy + Zedieresiscyr + Zetailcyr + Zetailcyr.BSH + Zhwe-cy + uniF516 + + public.kern2.Zhe-cy1 + + YusBlended-cy + Yusbigcyr + Zhe-cy + Zhebrevecyr + Zhedieresiscyr + Zhetailcyr + + public.kern2.a + + a + a-cy + a-cy.accented + aacute + abreve + abrevecyr + acaron + acircumflex + adieresis + adieresiscyr + ae + aeacute + agrave + aiecyr + amacron + aogonek + aring + atilde + uniF50F + uniF831 + + public.kern2.acute.case + + acute.case + hungarumlaut.case + + public.kern2.che-cy + + cche-cy + che-cy + chedieresiscyr + chekhakascyr + chetailcyr + chevertcyr + uniF4C7 + uniF87F + + public.kern2.comma + + comma + quotedblbase + quotesinglbase + + public.kern2.copyright + + copyright + registered + + public.kern2.decyr.ss01 + + de-cy.ss01 + deSoft-cy + dwe-cy + dzze-cy + dzzhecyr + tseReversed-cy + + public.kern2.el-cy + + el-cy + el-cy.ss01 + elSoft-cy + elhookcyr + elmiddlehookcyr + elsharptailcyr + eltailcyr + lhacyr + ljecyr.ss01 + ljekomicyr + uniF873 + + public.kern2.el-cy.BGR1 + + el-cy.BGR + uni1C81 + yn-cy + yusClosedlittle-cy + yuslittlecyr + + public.kern2.emdash + + emdash + endash + hyphen + + public.kern2.f + + f + f_f + f_f_i + f_f_l + fi + fl + gestrokecyr + + public.kern2.f_f.ss01 + + f_f.ss01 + f_f_i.ss01 + f_f_l.ss01 + + public.kern2.fi.ss01 + + fi.ss01 + fl.ss01 + + public.kern2.five + + five + five.tf + + public.kern2.four + + four + four.tf + + public.kern2.g + + g + gacute + gbreve + gcircumflex + gcommaaccent + gdotaccent + + public.kern2.g.ss01 + + g.ss01 + gacute.ss01 + gbreve.ss01 + gcircumflex.ss01 + gcommaaccent.ss01 + gdotaccent.ss01 + + public.kern2.guillemotleft + + guillemetleft + guilsinglleft + + public.kern2.guillemotright + + guillemetright + guilsinglright + + public.kern2.h + + eiotifiedcyr.BGR + h + hcircumflex + hwe-cy + iotifieda-cy.BGR + iu-cy.BGR + k + ka-cy.BGR + kcommaaccent + l + lacute + lcaron + lcommaaccent + ldot + shhacyr + shhatailcyr + ve-cy.BGR + yatcyr.BGR + yusbigiotifiedcyr.BGR + + public.kern2.i1 + + i + i-cy + iacute + icircumflex + igrave + imacron + iogonek + itilde + uniF476 + yi-cy.alt + + public.kern2.ia-cy + + ia-cy + ia-cy.accented + ia-cy.ss01 + uniF4D9 + uniF529 + uniF52B + yaecyr + + public.kern2.j + + enhookleftcyr + j + jcircumflex + jdotless + + public.kern2.l.ss01 + + l.ss01 + lacute.ss01 + lcaron.ss01 + lcommaaccent.ss01 + ldot.ss01 + + public.kern2.m + + eiotifiedcyr + em-cy + emSoft-cy + emsharptailcyr + en-cy + eng + engecyr + enhookcyr + enmiddlehookcyr + ensharptailcyr + entailcyr + er-cy + er-cy.ss01 + ertickcyr + ge-cy + gehookcyr + gehookstrokecyr + gestrokecyr.BSH + getailcyr + gheupturn-cy + gjecyr + idieresiscyr + idotless + igravecyr + ii-cy + ii-cy.accented + iishort-cy + imacroncyr + iotifieda-cy + ishortsharptailcyr + iu-cy + iu-cy.accented + ka-cy + kaaleutcyr + kahookcyr + katailcyr + kaverticalstrokecyr + kgreenlandic + kjecyr + m + mu + n + nacute + ncaron + ncommaaccent + njecyr.ss01 + njekomicyr + ntilde + p + p.ss01 + pe-cy + pe-cy.BGR + pehookcyr + petailcyr + psicyr + r + racute + rcaron + rcommaaccent + rhacyr + sha-cy + shcha-cy + shwe-cy + softsign-cy + softsign-cy.BGR + softsign-cy.ss01 + te-cy.BGR + tse-cy + tswe-cy + uni1C85 + uniF499 + uniF4D5 + uniF521 + uniF52D + uniF52F + uniF533 + uniF537 + uniF870 + uniF87C + ve-cy + ve-cy.ss01 + yatIotified-cy + yeru-cy + yeru-cy.accented + yeru-cy.ss01 + ylongdieresiscyr + yusbigiotifiedcyr + yusiotifiedClosedLittle-cy + yuslittleiotifiedcyr + + public.kern2.o + + Dekomicyr + Djekomicyr + a-cy.ss01 + a.ss01 + aacute.ss01 + abreve.ss01 + acircumflex.ss01 + adieresis.ss01 + agrave.ss01 + amacron.ss01 + aogonek.ss01 + aring.ss01 + atilde.ss01 + c + cacute + ccaron + ccedilla + ccircumflex + cdotaccent + cent + crossedo-cy + d + d.ss01 + dcaron + dcaron.ss01 + dcroat + dcroat.ss01 + de-cy.BGR + dekomicyr + djekomicyr + e + e-cy + e-cy.accented + e-cy.hist + e.ss01 + eacute + eacute.ss01 + ebreve + ebreve.ss01 + ecaron + ecaron.ss01 + ecircumflex + ecircumflex.ss01 + edieresis + edieresis.ss01 + edotaccent + edotaccent.ss01 + ef-cy + egrave + egrave.ss01 + emacron + emacron.ss01 + eogonek + eogonek.ss01 + es-cy + estailcyr + estailcyr.BSH + estailcyr.CHU + eth + eturned + fitacyr + haabkhcyr + ie-cy + ie-cy.ss01 + iebrevecyr + iegravecyr + iegravecyr.SRB + io-cy + io-cy.accented + io-cy.ss01 + koppacyr + o + o-cy + o-cy.accented + oBinocular-cy + oDoubleMonocular-cy + oMonocular-cy + oacute + obarcyr + obardieresiscyr + obreve + ocircumflex + odieresis + odieresiscyr + oe.ss01 + ograve + ohungarumlaut + omacron + omegaBroad-cy + omegaroundcyr + omegatitlocyr + oslashacute + otilde + q + q.ss01 + qacyr + schwacyr + schwadieresiscyr + sjekomicyr + ukcyr + uni1C82 + uni1C83 + uni1EBD + uniF475 + uniF49D + uniF4D3 + uniF511 + uniF513 + uniF515 + uniF519 + uniF51B + uniF51D + uniF51F + uniF527 + uniF834 + uniF83A + uniF876 + yuReversed-cy + + public.kern2.percent + + percent + perthousand + + public.kern2.period + + ellipsis + period + + public.kern2.quotedbl + + quotedbl + quotesingle + + public.kern2.quoteleft + + quotedblleft + quoteleft + + public.kern2.quoteright + + apostrophemod + minute + quotedblright + quoteright + second + + public.kern2.s + + dzwe-cy + s + sacute + scaron + scedilla + scircumflex + scommaaccent + + public.kern2.t + + t + t.ss01 + tbar.ss01 + tcaron + tcaron.ss01 + tcedilla + tcedilla.ss01 + tcommaaccent + tcommaaccent.ss01 + + public.kern2.tecyr + + tche-cy + te-cy.ss01 + tetailcyr + tetsecyr + tewithmiddlehook-cy + tjekomicyr + tsse-cy + twe-cy + + public.kern2.u + + igravecyr.SRB + ii-cy.BGR + iishort-cy.BGR + iota-cy + pe-cy.SRB + sha-cy.BGR + shcha-cy.BGR + te-cy.SRB + tse-cy.BGR + u + uacute + ubreve + ucircumflex + udieresis + ugrave + uhungarumlaut + umacron + uogonek + uring + utilde + + public.kern2.v1 + + izhitsacyr + izhitsagravedblcyr + v + + public.kern2.w + + omegacyr + otcyr + w + wacute + wcircumflex + wdieresis + wecyr + wgrave + + public.kern2.x + + ha-cy + hahookcyr + uniF879 + x + + public.kern2.y + + u-cy + u-cy.accented + uacutedblcyr + udieresiscyr + umacroncyr + uniF43B + uniF4CD + ustraightcyr + ustraightstrokecyr + y + yacute + ycircumflex + ydieresis + + public.kern2.z + + dzelo-cy + z + zacute + zcaron + zdotaccent + zemlya-cy + + public.kern2.ze-cy1 + + dzeabkhcyr + ksicyr + uniF517 + ze-cy + ze-cy.BGR + zedieresiscyr + zetailcyr + zetailcyr.BSH + zhwe-cy + + public.kern2.zero + + uni1C80 + zero + zero.tf + + public.kern2.zhe-cy1 + + xatailcyr + yusBlended-cy + yusbigcyr + zhe-cy + zhe-cy.BGR + zhebrevecyr + zhedieresiscyr + zhetailcyr + + ss01 + + A-cy.ss01 + A.ss01 + AE.ss01 + Aacute.ss01 + Abreve.ss01 + Acircumflex.ss01 + Adieresis.ss01 + Agrave.ss01 + Amacron.ss01 + Aogonek.ss01 + Aring.ss01 + Atilde.ss01 + Em-cy.ss01 + Eng.ss01 + G.ss01 + Gacute.ss01 + Gbreve.ss01 + Gcircumflex.ss01 + Gcommaaccent.ss01 + Gdotaccent.ss01 + Ha-cy.ss01 + Ia-cy.ss01 + J.ss01 + Jcircumflex.ss01 + K.ss01 + Ka-cy.ss01 + Kcommaaccent.ss01 + M.ss01 + N.ss01 + Nacute.ss01 + Ncaron.ss01 + Ncommaaccent.ss01 + Ntilde.ss01 + Q.ss01 + U-cy.ss01 + Ushort-cy.ss01 + V.ss01 + W.ss01 + Wacute.ss01 + Wcircumflex.ss01 + Wdieresis.ss01 + Wgrave.ss01 + X.ss01 + Y.ss01 + Yacute.ss01 + Ycircumflex.ss01 + Ydieresis.ss01 + Z.ss01 + Zacute.ss01 + Zcaron.ss01 + Zdotaccent.ss01 + Zhe-cy.ss01 + a-cy.ss01 + a.ss01 + aacute.ss01 + abreve.ss01 + acircumflex.ss01 + adieresis.ss01 + ae.ss01 + agrave.ss01 + amacron.ss01 + aogonek.ss01 + aring.ss01 + arrowdown.ss01 + arrowdown.ss01.case + arrowleft.ss01 + arrowleft.ss01.case + arrowright.ss01 + arrowright.ss01.case + arrowup.ss01 + arrowup.ss01.case + atilde.ss01 + b.ss01 + d.ss01 + dcaron.ss01 + dcroat.ss01 + de-cy.ss01 + e.ss01 + eacute.ss01 + ebreve.ss01 + ecaron.ss01 + ecircumflex.ss01 + edieresis.ss01 + edotaccent.ss01 + egrave.ss01 + el-cy.ss01 + emacron.ss01 + eogonek.ss01 + er-cy.ss01 + f.ss01 + f_f.ss01 + f_f_i.ss01 + f_f_l.ss01 + fi.ss01 + fl.ss01 + g.ss01 + gacute.ss01 + gbreve.ss01 + gcircumflex.ss01 + gcommaaccent.ss01 + gdotaccent.ss01 + germandbls.ss01 + hardsign-cy.ss01 + ia-cy.ss01 + ie-cy.ss01 + io-cy.ss01 + l.ss01 + lacute.ss01 + lcaron.ss01 + lcommaaccent.ss01 + ldot.ss01 + ljecyr.ss01 + lslash.ss01 + njecyr.ss01 + numero.ss01 + oe.ss01 + p.ss01 + q.ss01 + softsign-cy.ss01 + t.ss01 + tbar.ss01 + tcaron.ss01 + tcedilla.ss01 + tcommaaccent.ss01 + te-cy.ss01 + ve-cy.ss01 + yen.ss01 + yeru-cy.ss01 + + ss01_def + + A-cy + A + AE + Aacute + Abreve + Acircumflex + Adieresis + Agrave + Amacron + Aogonek + Aring + Atilde + Em-cy + Eng + G + Gacute + Gbreve + Gcircumflex + Gcommaaccent + Gdotaccent + Ha-cy + Ia-cy + J + Jcircumflex + K + Ka-cy + Kcommaaccent + M + N + Nacute + Ncaron + Ncommaaccent + Ntilde + Q + U-cy + Ushort-cy + V + W + Wacute + Wcircumflex + Wdieresis + Wgrave + X + Y + Yacute + Ycircumflex + Ydieresis + Z + Zacute + Zcaron + Zdotaccent + Zhe-cy + a-cy + a + aacute + abreve + acircumflex + adieresis + ae + agrave + amacron + aogonek + aring + arrowdown + arrowdown.case + arrowleft + arrowleft.case + arrowright + arrowright.case + arrowup + arrowup.case + atilde + b + d + dcaron + dcroat + de-cy + e + eacute + ebreve + ecaron + ecircumflex + edieresis + edotaccent + egrave + el-cy + emacron + eogonek + er-cy + f + f_f + f_f_i + f_f_l + fi + fl + g + gacute + gbreve + gcircumflex + gcommaaccent + gdotaccent + germandbls + hardsign-cy + ia-cy + ie-cy + io-cy + l + lacute + lcaron + lcommaaccent + ldot + ljecyr + lslash + njecyr + numero + oe + p + q + softsign-cy + t + tbar + tcaron + tcedilla + tcommaaccent + te-cy + ve-cy + yen + yeru-cy + + + diff --git a/sources/FixelText-SemiBold.ufo/kerning.plist b/sources/FixelText-SemiBold.ufo/kerning.plist new file mode 100644 index 00000000..1748e25e --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/kerning.plist @@ -0,0 +1,2733 @@ + + + + + Zhe-cy + + public.kern2.G + -38 + + space + + public.kern2.W + -6 + public.kern2.Y + -90 + + uni1C82 + + public.kern2.y + -52 + + public.kern1.A.ss012 + + public.kern2.G + -30 + public.kern2.T + -46 + public.kern2.U + -20 + public.kern2.Ucyr.ss01 + -42 + public.kern2.V + -42 + public.kern2.W + -32 + public.kern2.Y + -69 + public.kern2.Z + -6 + public.kern2.a + -14 + public.kern2.decyr.ss01 + 4 + public.kern2.emdash + -14 + public.kern2.l.ss01 + -8 + public.kern2.m + -4 + public.kern2.o + -20 + public.kern2.quotedbl + -44 + public.kern2.quoteright + -44 + public.kern2.t + -16 + public.kern2.tecyr + -38 + public.kern2.u + -16 + public.kern2.w + -26 + public.kern2.x + 6 + public.kern2.y + -26 + + public.kern1.A2 + + public.kern2.A2 + 12 + public.kern2.G + -24 + public.kern2.J + 16 + public.kern2.Oslash.alt + 8 + public.kern2.S + 6 + public.kern2.T + -52 + public.kern2.U + -14 + public.kern2.Ucyr.ss01 + -32 + public.kern2.V + -37 + public.kern2.W + -34 + public.kern2.Y + -66 + public.kern2.Z + 22 + public.kern2.a + -3 + public.kern2.comma + 8 + public.kern2.decyr.ss01 + 2 + public.kern2.emdash + -6 + public.kern2.g + 11 + public.kern2.j + -8 + public.kern2.o + -10 + public.kern2.period + 34 + public.kern2.quotedbl + -50 + public.kern2.quoteright + -56 + public.kern2.t + -14 + public.kern2.tecyr + -30 + public.kern2.u + -3 + public.kern2.w + -20 + public.kern2.x + 4 + public.kern2.y + -36 + public.kern2.z + 10 + + public.kern1.C1 + + public.kern2.A2 + -4 + public.kern2.B + -4 + public.kern2.G + -17 + public.kern2.J + 8 + public.kern2.Oslash.alt + -11 + public.kern2.S + -4 + public.kern2.U + -4 + public.kern2.Ucyr.ss01 + -9 + public.kern2.V + -8 + public.kern2.W + -8 + public.kern2.Y + -20 + public.kern2.Z + -2 + public.kern2.comma + -4 + public.kern2.emdash + -24 + public.kern2.f + -5 + public.kern2.g + -12 + public.kern2.g.ss01 + -8 + public.kern2.j + -4 + public.kern2.o + -14 + public.kern2.period + -12 + public.kern2.quoteright + -12 + public.kern2.s + -4 + public.kern2.t + -4 + public.kern2.tecyr + -5 + public.kern2.u + -6 + public.kern2.w + -8 + public.kern2.x + -11 + public.kern2.y + -12 + + public.kern1.Decyr + + public.kern2.A.ss012 + 8 + public.kern2.A2 + 4 + public.kern2.G + -10 + public.kern2.T + -14 + public.kern2.Ucyr.ss01 + -30 + public.kern2.a + -6 + public.kern2.comma + 34 + public.kern2.decyr.ss01 + 17 + public.kern2.emdash + -14 + public.kern2.o + -10 + public.kern2.period + 14 + public.kern2.quoteright + -30 + public.kern2.tecyr + -24 + public.kern2.y + -8 + + public.kern1.E1 + + public.kern2.G + -7 + public.kern2.J + 10 + public.kern2.a + -4 + public.kern2.f + -8 + public.kern2.g.ss01 + -4 + public.kern2.i1 + 4 + public.kern2.j + -4 + public.kern2.o + -14 + public.kern2.period + 12 + public.kern2.quotedbl + 6 + public.kern2.quoteright + -4 + public.kern2.s + -4 + public.kern2.t + -4 + public.kern2.w + -15 + public.kern2.y + -18 + + public.kern1.G.ss01 + + public.kern2.A.ss01 + 10 + public.kern2.G + -8 + public.kern2.Oslash.alt + -4 + public.kern2.T + -14 + public.kern2.V + -32 + public.kern2.W + -22 + public.kern2.Y + -36 + public.kern2.Z + -4 + public.kern2.comma + -8 + public.kern2.emdash + -4 + public.kern2.o + -4 + public.kern2.quotedbl + -6 + public.kern2.quoteright + -24 + public.kern2.t + -6 + public.kern2.w + -26 + public.kern2.y + -24 + + public.kern1.G1 + + public.kern2.B + 4 + public.kern2.G + 6 + public.kern2.J + 8 + public.kern2.T + -14 + public.kern2.V + -32 + public.kern2.W + -22 + public.kern2.Y + -32 + public.kern2.comma + 6 + public.kern2.emdash + 12 + public.kern2.period + 10 + public.kern2.quotedbl + -8 + public.kern2.quoteright + -4 + public.kern2.w + -4 + public.kern2.y + -8 + + public.kern1.Ge-cy + + public.kern2.A.ss012 + -42 + public.kern2.A2 + -46 + public.kern2.G + -14 + public.kern2.Gecyr + 6 + public.kern2.T + 40 + public.kern2.a + -76 + public.kern2.comma + -80 + public.kern2.decyr.ss01 + -16 + public.kern2.emdash + -64 + public.kern2.guillemotright + -46 + public.kern2.i1 + 28 + public.kern2.m + -52 + public.kern2.o + -88 + public.kern2.period + -102 + public.kern2.x + -30 + public.kern2.y + -30 + + public.kern1.H + + public.kern2.Gecyr + 1 + public.kern2.comma + -12 + public.kern2.i1 + 4 + public.kern2.j + -2 + public.kern2.quoteright + -12 + + public.kern1.Hardcyr + + public.kern2.A.ss012 + 13 + public.kern2.Oslash.alt + -11 + public.kern2.T + -102 + public.kern2.Ucyr.ss01 + -70 + public.kern2.comma + -12 + public.kern2.quotedbl + -120 + public.kern2.quoteright + -50 + public.kern2.tecyr + -26 + public.kern2.x + -24 + public.kern2.y + -30 + + public.kern1.J1 + + public.kern2.A.ss012 + 6 + public.kern2.A2 + -10 + public.kern2.J + 4 + public.kern2.S + -10 + public.kern2.T + -1 + public.kern2.Z + -6 + public.kern2.comma + -30 + public.kern2.i1 + 4 + public.kern2.period + -18 + public.kern2.s + -4 + + public.kern1.K + + public.kern2.A2 + 8 + public.kern2.G + -58 + public.kern2.J + 10 + public.kern2.S + -10 + public.kern2.U + -2 + public.kern2.a + -10 + public.kern2.comma + 4 + public.kern2.emdash + -52 + public.kern2.f + -15 + public.kern2.g + -12 + public.kern2.i1 + 16 + public.kern2.j + -6 + public.kern2.l.ss01 + -4 + public.kern2.o + -40 + public.kern2.period + 6 + public.kern2.quoteright + -34 + public.kern2.t + -34 + public.kern2.tecyr + -56 + public.kern2.u + -30 + public.kern2.w + -30 + public.kern2.y + -40 + + public.kern1.L + + public.kern2.A.ss01 + 8 + public.kern2.A2 + 12 + public.kern2.G + -36 + public.kern2.J + 14 + public.kern2.T + -94 + public.kern2.U + -32 + public.kern2.V + -100 + public.kern2.W + -56 + public.kern2.Y + -106 + public.kern2.Z + 4 + public.kern2.a + -10 + public.kern2.emdash + -56 + public.kern2.guillemotleft + -30 + public.kern2.j + -2 + public.kern2.o + -28 + public.kern2.period + 8 + public.kern2.quotedbl + -90 + public.kern2.quoteright + -78 + public.kern2.t + -24 + public.kern2.u + -10 + public.kern2.w + -56 + public.kern2.x + -4 + public.kern2.y + -82 + public.kern2.z + 10 + + public.kern1.O + + Zhe-cy + -38 + public.kern2.A.ss01 + -4 + public.kern2.A.ss012 + -3 + public.kern2.A2 + -24 + public.kern2.J + -32 + public.kern2.Oslash.alt + -32 + public.kern2.S + -4 + public.kern2.T + -30 + public.kern2.Ucyr.ss01 + -30 + public.kern2.V + -34 + public.kern2.W + -14 + public.kern2.Y + -52 + public.kern2.Z + -36 + public.kern2.a + -10 + public.kern2.comma + -56 + public.kern2.decyr.ss01 + -16 + public.kern2.emdash + 12 + public.kern2.j + -6 + public.kern2.period + -46 + public.kern2.quotedbl + -16 + public.kern2.quoteright + 4 + public.kern2.s + -4 + public.kern2.tecyr + 4 + public.kern2.w + -4 + public.kern2.x + -14 + public.kern2.y + -4 + public.kern2.z + -6 + + public.kern1.Oslash.alt + + public.kern2.A.ss01 + 4 + public.kern2.A.ss012 + 4 + public.kern2.A2 + 8 + public.kern2.G + -38 + public.kern2.J + 12 + public.kern2.S + -7 + public.kern2.Ucyr.ss01 + 4 + public.kern2.W + 4 + public.kern2.a + -10 + public.kern2.comma + 10 + public.kern2.decyr.ss01 + 4 + public.kern2.emdash + -24 + public.kern2.f + -3 + public.kern2.g + -3 + public.kern2.i1 + 16 + public.kern2.j + -6 + public.kern2.o + -30 + public.kern2.period + 6 + public.kern2.quotedbl + 4 + public.kern2.quoteright + -48 + public.kern2.s + -3 + public.kern2.t + -14 + public.kern2.tecyr + -32 + public.kern2.u + -10 + public.kern2.w + -20 + public.kern2.x + 4 + public.kern2.y + -24 + + public.kern1.P + + public.kern2.A.ss01 + -40 + public.kern2.A.ss012 + -40 + public.kern2.A2 + -57 + public.kern2.J + -64 + public.kern2.Oslash.alt + -38 + public.kern2.T + -14 + public.kern2.Ucyr.ss01 + -24 + public.kern2.V + -7 + public.kern2.W + -3 + public.kern2.Y + -18 + public.kern2.Z + -32 + public.kern2.a + -20 + public.kern2.comma + -106 + public.kern2.decyr.ss01 + -34 + public.kern2.emdash + -10 + public.kern2.g + -10 + public.kern2.g.ss01 + -16 + public.kern2.j + -22 + public.kern2.o + -26 + public.kern2.period + -138 + public.kern2.quotedbl + -12 + public.kern2.quoteright + 4 + public.kern2.s + -16 + public.kern2.t + 8 + public.kern2.tecyr + 6 + public.kern2.x + -3 + public.kern2.z + -6 + + public.kern1.R + + public.kern2.A.ss01 + 5 + public.kern2.G + -18 + public.kern2.S + -8 + public.kern2.T + -24 + public.kern2.U + -16 + public.kern2.V + -21 + public.kern2.W + -7 + public.kern2.Y + -28 + public.kern2.a + -3 + public.kern2.emdash + -18 + public.kern2.f + -4 + public.kern2.j + -6 + public.kern2.m + -4 + public.kern2.o + -20 + public.kern2.period + 4 + public.kern2.quotedbl + -12 + public.kern2.quoteright + -10 + public.kern2.s + -3 + public.kern2.t + -7 + public.kern2.u + -16 + public.kern2.w + -7 + public.kern2.y + -3 + + public.kern1.S1 + + public.kern2.A.ss01 + 8 + public.kern2.J + 8 + public.kern2.Oslash.alt + -11 + public.kern2.T + -11 + public.kern2.V + -14 + public.kern2.W + -14 + public.kern2.Y + -30 + public.kern2.Z + -6 + public.kern2.comma + -6 + public.kern2.emdash + 10 + public.kern2.f + -8 + public.kern2.g + -12 + public.kern2.i1 + 4 + public.kern2.j + -10 + public.kern2.o + 4 + public.kern2.quotedbl + -26 + public.kern2.quoteright + -22 + public.kern2.t + -3 + public.kern2.w + -12 + public.kern2.x + -11 + public.kern2.y + -16 + + public.kern1.T1 + + public.kern2.A.ss01 + -32 + public.kern2.A.ss012 + -51 + public.kern2.A2 + -52 + public.kern2.G + -30 + public.kern2.J + -66 + public.kern2.S + -6 + public.kern2.T + 32 + public.kern2.Ucyr.ss01 + 4 + public.kern2.V + 12 + public.kern2.W + 16 + public.kern2.Y + 6 + public.kern2.a + -60 + public.kern2.comma + -62 + public.kern2.decyr.ss01 + -72 + public.kern2.emdash + -78 + public.kern2.f + -10 + public.kern2.g + -70 + public.kern2.g.ss01 + -28 + public.kern2.guillemotleft + -54 + public.kern2.guillemotright + -60 + public.kern2.i1 + 6 + public.kern2.j + -20 + public.kern2.m + -48 + public.kern2.o + -80 + public.kern2.period + -86 + public.kern2.quotedbl + 24 + public.kern2.quoteright + -24 + public.kern2.s + -58 + public.kern2.tecyr + -44 + public.kern2.u + -41 + public.kern2.w + -36 + public.kern2.x + -36 + public.kern2.y + -36 + public.kern2.z + -34 + + public.kern1.U1 + + public.kern2.A.ss01 + -10 + public.kern2.A.ss012 + -2 + public.kern2.A2 + -14 + public.kern2.J + -16 + public.kern2.Z + -16 + public.kern2.comma + -30 + public.kern2.i1 + 4 + public.kern2.j + -12 + public.kern2.period + -22 + public.kern2.quoteright + -28 + public.kern2.z + -10 + + public.kern1.Ucyr1 + + public.kern2.A.ss012 + -36 + public.kern2.A2 + -40 + public.kern2.G + -24 + public.kern2.Gecyr + -6 + public.kern2.T + 10 + public.kern2.a + -54 + public.kern2.comma + -86 + public.kern2.decyr.ss01 + -50 + public.kern2.emdash + -50 + public.kern2.guillemotright + -60 + public.kern2.i1 + 32 + public.kern2.m + -52 + public.kern2.o + -66 + public.kern2.period + -98 + public.kern2.tecyr + -16 + public.kern2.x + -24 + public.kern2.y + -30 + + public.kern1.V + + public.kern2.A.ss01 + -56 + public.kern2.A.ss012 + -36 + public.kern2.A2 + -41 + public.kern2.G + -34 + public.kern2.J + -72 + public.kern2.S + -10 + public.kern2.T + 12 + public.kern2.W + 4 + public.kern2.Y + 4 + public.kern2.a + -50 + public.kern2.comma + -92 + public.kern2.emdash + -56 + public.kern2.f + -3 + public.kern2.g + -36 + public.kern2.g.ss01 + -48 + public.kern2.guillemotleft + -44 + public.kern2.guillemotright + -30 + public.kern2.i1 + 19 + public.kern2.j + -16 + public.kern2.m + -50 + public.kern2.o + -62 + public.kern2.period + -104 + public.kern2.quotedbl + 14 + public.kern2.quoteright + -10 + public.kern2.s + -40 + public.kern2.t + -10 + public.kern2.u + -50 + public.kern2.w + -14 + public.kern2.x + -20 + public.kern2.y + -20 + public.kern2.z + -20 + + public.kern1.W.ss011 + + public.kern2.A.ss01 + -22 + public.kern2.A.ss012 + -22 + public.kern2.A2 + -60 + public.kern2.G + -16 + public.kern2.J + -38 + public.kern2.Oslash.alt + 4 + public.kern2.S + -10 + public.kern2.T + 26 + public.kern2.V + 4 + public.kern2.W + 12 + public.kern2.Y + 14 + public.kern2.Z + -9 + public.kern2.a + -32 + public.kern2.comma + -68 + public.kern2.emdash + -28 + public.kern2.g + -17 + public.kern2.g.ss01 + -23 + public.kern2.guillemotright + -11 + public.kern2.i1 + 23 + public.kern2.m + -14 + public.kern2.o + -36 + public.kern2.period + -84 + public.kern2.quotedbl + 18 + public.kern2.quoteright + 12 + public.kern2.s + -19 + public.kern2.u + -18 + public.kern2.w + -22 + public.kern2.y + -4 + public.kern2.z + -14 + + public.kern1.W1 + + public.kern2.A.ss01 + -36 + public.kern2.A.ss012 + -22 + public.kern2.A2 + -34 + public.kern2.G + -14 + public.kern2.J + -58 + public.kern2.S + -7 + public.kern2.T + 12 + public.kern2.V + 4 + public.kern2.Y + 4 + public.kern2.Z + -10 + public.kern2.a + -44 + public.kern2.comma + -40 + public.kern2.emdash + -20 + public.kern2.g + -26 + public.kern2.guillemotleft + -30 + public.kern2.guillemotright + -10 + public.kern2.i1 + 4 + public.kern2.j + -12 + public.kern2.m + -30 + public.kern2.o + -46 + public.kern2.period + -52 + public.kern2.quotedbl + 8 + public.kern2.quoteright + -16 + public.kern2.s + -20 + public.kern2.u + -24 + public.kern2.w + -7 + public.kern2.x + -6 + public.kern2.y + -10 + public.kern2.z + -24 + + public.kern1.Y.ss011 + + public.kern2.A.ss01 + -62 + public.kern2.A.ss012 + -82 + public.kern2.B + -8 + public.kern2.G + -42 + public.kern2.S + -14 + public.kern2.W + 8 + public.kern2.Y + 12 + public.kern2.a + -46 + public.kern2.comma + -98 + public.kern2.emdash + -78 + public.kern2.g.ss01 + -44 + public.kern2.i1 + 30 + public.kern2.m + -78 + public.kern2.o + -108 + public.kern2.period + -110 + public.kern2.quotedbl + 8 + public.kern2.quoteright + -30 + public.kern2.s + -70 + public.kern2.t + -12 + public.kern2.u + -60 + public.kern2.w + -40 + public.kern2.x + -16 + public.kern2.y + -12 + public.kern2.z + -16 + + public.kern1.Y1 + + public.kern2.A.ss012 + -62 + public.kern2.A2 + -66 + public.kern2.B + -4 + public.kern2.G + -52 + public.kern2.J + -68 + public.kern2.S + -34 + public.kern2.T + 10 + public.kern2.V + 7 + public.kern2.W + 4 + public.kern2.Y + 12 + public.kern2.a + -74 + public.kern2.comma + -88 + public.kern2.emdash + -84 + public.kern2.f + -30 + public.kern2.g + -68 + public.kern2.guillemotleft + -82 + public.kern2.guillemotright + -64 + public.kern2.i1 + 12 + public.kern2.j + -18 + public.kern2.m + -84 + public.kern2.o + -104 + public.kern2.period + -124 + public.kern2.quotedbl + 18 + public.kern2.quoteright + -28 + public.kern2.s + -78 + public.kern2.t + -14 + public.kern2.u + -70 + public.kern2.w + -42 + public.kern2.x + -44 + public.kern2.y + -44 + public.kern2.z + -50 + + public.kern1.Yacyr + + public.kern2.A.ss012 + 4 + public.kern2.Ucyr.ss01 + -6 + public.kern2.i1 + 4 + + public.kern1.Z1 + + public.kern2.A.ss01 + 22 + public.kern2.A.ss012 + 24 + public.kern2.A2 + 8 + public.kern2.B + 4 + public.kern2.G + -24 + public.kern2.J + 16 + public.kern2.Oslash.alt + -4 + public.kern2.S + 8 + public.kern2.T + 6 + public.kern2.U + -12 + public.kern2.V + 4 + public.kern2.W + 6 + public.kern2.Z + 8 + public.kern2.a + -2 + public.kern2.comma + 18 + public.kern2.emdash + -36 + public.kern2.f + -2 + public.kern2.h + 4 + public.kern2.i1 + 22 + public.kern2.j + 8 + public.kern2.o + -16 + public.kern2.period + 18 + public.kern2.quoteright + -36 + public.kern2.s + -2 + public.kern2.t + -6 + public.kern2.u + -16 + public.kern2.w + -16 + public.kern2.x + 4 + public.kern2.y + -10 + public.kern2.z + 12 + + public.kern1.a1 + + public.kern2.A.ss012 + 13 + public.kern2.G + -3 + public.kern2.J + 4 + public.kern2.S + -12 + public.kern2.T + -70 + public.kern2.U + -4 + public.kern2.Ucyr.ss01 + -2 + public.kern2.V + -62 + public.kern2.W + -40 + public.kern2.Y + -88 + public.kern2.comma + -6 + public.kern2.f + -2 + public.kern2.j + -12 + public.kern2.quotedbl + -38 + public.kern2.quoteright + -44 + public.kern2.t + -7 + public.kern2.tecyr + -2 + public.kern2.u + -10 + public.kern2.w + -21 + public.kern2.y + -20 + public.kern2.z + 5 + + public.kern1.c1 + + public.kern2.A.ss012 + 8 + public.kern2.A2 + 16 + public.kern2.G + 6 + public.kern2.J + 8 + public.kern2.Oslash.alt + -4 + public.kern2.T + -50 + public.kern2.Ucyr.ss01 + -42 + public.kern2.V + -34 + public.kern2.W + -20 + public.kern2.Y + -50 + public.kern2.Z + 4 + public.kern2.emdash + -12 + public.kern2.g + 3 + public.kern2.h + -4 + public.kern2.o + -4 + public.kern2.period + -8 + public.kern2.quotedbl + -18 + public.kern2.quoteright + -12 + public.kern2.t + 4 + public.kern2.tecyr + 4 + public.kern2.x + -4 + public.kern2.y + -2 + + public.kern1.comma1 + + public.kern2.A.ss01 + 6 + public.kern2.A.ss012 + 4 + public.kern2.G + -38 + public.kern2.J + 24 + public.kern2.T + -74 + public.kern2.U + -18 + public.kern2.Ucyr.ss01 + -12 + public.kern2.V + -76 + public.kern2.W + -34 + public.kern2.Y + -104 + public.kern2.Z + 12 + public.kern2.a + -12 + public.kern2.decyr.ss01 + 4 + public.kern2.f + -8 + public.kern2.five + -12 + public.kern2.h + -12 + public.kern2.i1 + -12 + public.kern2.j + 4 + public.kern2.m + -16 + public.kern2.o + -22 + public.kern2.t + -30 + public.kern2.tecyr + -28 + public.kern2.u + -18 + public.kern2.w + -22 + public.kern2.x + -16 + public.kern2.y + -50 + public.kern2.z + -2 + public.kern2.zero + -18 + + public.kern1.dcaron + + public.kern2.A2 + 4 + public.kern2.B + 56 + public.kern2.G + 22 + public.kern2.J + 8 + public.kern2.Oslash.alt + 92 + public.kern2.S + 48 + public.kern2.T + 110 + public.kern2.U + 62 + public.kern2.V + 112 + public.kern2.W + 96 + public.kern2.Y + 112 + public.kern2.Z + 82 + public.kern2.a + 10 + public.kern2.f + 62 + public.kern2.fi.ss01 + 70 + public.kern2.g + 4 + public.kern2.g.ss01 + 4 + public.kern2.h + 76 + public.kern2.i1 + 80 + public.kern2.j + 62 + public.kern2.l.ss01 + 52 + public.kern2.m + 18 + public.kern2.o + 10 + public.kern2.s + 14 + public.kern2.t + 60 + public.kern2.u + 8 + public.kern2.w + 30 + public.kern2.x + 30 + public.kern2.y + 30 + public.kern2.z + 34 + + public.kern1.decyr1 + + public.kern2.A.ss012 + 12 + public.kern2.A2 + 14 + public.kern2.G + -8 + public.kern2.Oslash.alt + 4 + public.kern2.T + -68 + public.kern2.Ucyr.ss01 + -32 + public.kern2.comma + 22 + public.kern2.decyr.ss01 + 17 + public.kern2.emdash + -9 + public.kern2.o + -16 + public.kern2.period + 14 + public.kern2.quoteright + -20 + public.kern2.tecyr + -24 + public.kern2.x + 4 + public.kern2.y + -10 + + public.kern1.e.ss011 + + public.kern2.Oslash.alt + -10 + public.kern2.T + -32 + public.kern2.V + -50 + public.kern2.W + -12 + public.kern2.Y + -40 + public.kern2.comma + -4 + public.kern2.l.ss01 + -4 + public.kern2.o + -4 + public.kern2.quotedbl + -40 + public.kern2.quoteright + -18 + public.kern2.w + -8 + public.kern2.y + -8 + + public.kern1.e1 + + public.kern2.A.ss012 + 13 + public.kern2.A2 + -3 + public.kern2.G + 4 + public.kern2.Oslash.alt + -20 + public.kern2.T + -72 + public.kern2.Ucyr.ss01 + -62 + public.kern2.V + -60 + public.kern2.W + -42 + public.kern2.Y + -102 + public.kern2.Z + -10 + public.kern2.comma + -12 + public.kern2.emdash + 2 + public.kern2.j + -12 + public.kern2.o + 4 + public.kern2.period + -12 + public.kern2.quotedbl + -26 + public.kern2.quoteright + -24 + public.kern2.w + -14 + public.kern2.x + -20 + public.kern2.y + -24 + public.kern2.z + -6 + + public.kern1.emdash1 + + public.kern2.A.ss01 + 14 + public.kern2.A2 + -6 + public.kern2.G + 12 + public.kern2.J + -18 + public.kern2.Oslash.alt + -24 + public.kern2.S + -22 + public.kern2.T + -78 + public.kern2.Ucyr.ss01 + -50 + public.kern2.V + -48 + public.kern2.W + -20 + public.kern2.Y + -84 + public.kern2.Z + -16 + public.kern2.decyr.ss01 + -22 + public.kern2.f + -12 + public.kern2.five + -20 + public.kern2.four + 12 + public.kern2.g.ss01 + 10 + public.kern2.j + -12 + public.kern2.o + 10 + public.kern2.s + -4 + public.kern2.t + -8 + public.kern2.tecyr + -40 + public.kern2.w + -4 + public.kern2.x + -28 + public.kern2.y + -18 + public.kern2.z + -18 + + public.kern1.f1 + + public.kern2.A.ss012 + -10 + public.kern2.A2 + -28 + public.kern2.J + -48 + public.kern2.S + 10 + public.kern2.T + 14 + public.kern2.V + 6 + public.kern2.Y + 10 + public.kern2.a + -11 + public.kern2.comma + -44 + public.kern2.emdash + -24 + public.kern2.f + 10 + public.kern2.g + -6 + public.kern2.h + 6 + public.kern2.i1 + 1 + public.kern2.o + -22 + public.kern2.period + -62 + public.kern2.quotedbl + 28 + public.kern2.quoteright + 20 + public.kern2.s + -12 + public.kern2.t + 21 + public.kern2.w + 4 + public.kern2.x + 4 + public.kern2.y + 16 + + public.kern1.five1 + + public.kern2.comma + -30 + public.kern2.five + -8 + public.kern2.four + 4 + public.kern2.i1 + 8 + public.kern2.period + -9 + + public.kern1.four1 + + public.kern2.emdash + -12 + public.kern2.five + 14 + public.kern2.four + 14 + public.kern2.period + 8 + public.kern2.quotedbl + -20 + + public.kern1.g.ss011 + + public.kern2.A.ss01 + 8 + public.kern2.V + -12 + public.kern2.W + 8 + public.kern2.Y + -12 + public.kern2.g.ss01 + 8 + public.kern2.h + 4 + public.kern2.i1 + 4 + public.kern2.j + 28 + public.kern2.l.ss01 + 8 + public.kern2.m + 4 + public.kern2.o + 4 + public.kern2.quotedbl + 16 + public.kern2.quoteright + 22 + public.kern2.s + 4 + public.kern2.t + 16 + public.kern2.w + 8 + public.kern2.x + 8 + public.kern2.y + 12 + public.kern2.z + 12 + + public.kern1.g1 + + public.kern2.A2 + 11 + public.kern2.T + -48 + public.kern2.V + -20 + public.kern2.W + -6 + public.kern2.Y + -30 + public.kern2.a + -4 + public.kern2.comma + 14 + public.kern2.f + 8 + public.kern2.i1 + 4 + public.kern2.j + 33 + public.kern2.m + -4 + public.kern2.quotedbl + -6 + public.kern2.s + -4 + public.kern2.w + -4 + public.kern2.y + 2 + + public.kern1.gecyr + + public.kern2.A.ss012 + -4 + public.kern2.A2 + -18 + public.kern2.G + 4 + public.kern2.Oslash.alt + -8 + public.kern2.T + -32 + public.kern2.Ucyr.ss01 + -28 + public.kern2.a + -8 + public.kern2.comma + -68 + public.kern2.decyr.ss01 + -30 + public.kern2.emdash + -50 + public.kern2.i1 + 16 + public.kern2.o + -18 + public.kern2.period + -88 + public.kern2.quoteright + 24 + public.kern2.tecyr + 12 + public.kern2.x + 6 + public.kern2.y + 12 + + public.kern1.guillemotright1 + + public.kern2.J + -36 + public.kern2.T + -54 + public.kern2.V + -44 + public.kern2.W + -30 + public.kern2.Y + -82 + + public.kern1.hardcyr + + public.kern2.Oslash.alt + -10 + public.kern2.T + -74 + public.kern2.Ucyr.ss01 + -52 + public.kern2.comma + -4 + public.kern2.quotedbl + -97 + public.kern2.quoteright + -62 + public.kern2.tecyr + -82 + public.kern2.x + -20 + public.kern2.y + -54 + + public.kern1.i1 + + public.kern2.B + 4 + public.kern2.Gecyr + 4 + public.kern2.Oslash.alt + 16 + public.kern2.T + 4 + public.kern2.U + 4 + public.kern2.Ucyr.ss01 + 20 + public.kern2.V + 32 + public.kern2.W + 30 + public.kern2.Y + 36 + public.kern2.Z + 12 + public.kern2.h + 4 + public.kern2.i1 + 16 + public.kern2.j + -20 + public.kern2.percent + 12 + public.kern2.quotedbl + 4 + public.kern2.quoteright + -10 + + public.kern1.icyr1 + + public.kern2.A.ss012 + 4 + public.kern2.J + 4 + public.kern2.T + -44 + public.kern2.Ucyr.ss01 + -52 + public.kern2.V + -30 + public.kern2.W + -20 + public.kern2.Y + -80 + public.kern2.comma + -4 + public.kern2.j + 13 + public.kern2.quoteright + -12 + + public.kern1.j1 + + public.kern2.T + -8 + public.kern2.i1 + 4 + public.kern2.j + 12 + public.kern2.quotedbl + 4 + public.kern2.quoteright + -12 + public.kern2.z + 4 + + public.kern1.k + + public.kern2.A.ss01 + 8 + public.kern2.A.ss012 + 14 + public.kern2.A2 + 14 + public.kern2.G + -14 + public.kern2.J + 14 + public.kern2.T + -36 + public.kern2.Ucyr.ss01 + -20 + public.kern2.V + -12 + public.kern2.W + -20 + public.kern2.Y + -32 + public.kern2.a + -10 + public.kern2.emdash + -44 + public.kern2.l.ss01 + -4 + public.kern2.o + -24 + public.kern2.quoteright + -4 + public.kern2.x + 12 + public.kern2.z + 4 + + public.kern1.l + + public.kern2.guillemotright + 4 + public.kern2.i1 + 4 + public.kern2.quoteright + -12 + public.kern2.s + 2 + + public.kern1.l.ss011 + + public.kern2.A.ss01 + 20 + public.kern2.G + -4 + public.kern2.T + -28 + public.kern2.U + -4 + public.kern2.V + -44 + public.kern2.W + -40 + public.kern2.Y + -20 + public.kern2.emdash + -4 + public.kern2.f + -40 + public.kern2.fi.ss01 + -4 + public.kern2.j + -12 + public.kern2.o + -4 + public.kern2.period + 4 + public.kern2.quotedbl + -24 + public.kern2.quoteright + -12 + public.kern2.t + -21 + public.kern2.w + -38 + public.kern2.y + -42 + public.kern2.z + 4 + + public.kern1.n + + public.kern2.A.ss01 + 4 + public.kern2.A.ss012 + 4 + public.kern2.G + -4 + public.kern2.J + 8 + public.kern2.T + -63 + public.kern2.Ucyr.ss01 + -62 + public.kern2.V + -60 + public.kern2.W + -40 + public.kern2.Y + -100 + public.kern2.emdash + 4 + public.kern2.guillemotright + 4 + public.kern2.j + -12 + public.kern2.quotedbl + -29 + public.kern2.quoteright + -12 + public.kern2.t + -4 + public.kern2.tecyr + -6 + public.kern2.w + -17 + public.kern2.y + -22 + + public.kern1.numero + + public.kern2.i1 + 16 + + public.kern1.o1 + + public.kern2.A.ss01 + 4 + public.kern2.A.ss012 + 3 + public.kern2.A2 + -10 + public.kern2.J + -8 + public.kern2.Oslash.alt + -30 + public.kern2.S + -14 + public.kern2.T + -80 + public.kern2.Ucyr.ss01 + -70 + public.kern2.V + -62 + public.kern2.W + -46 + public.kern2.Y + -104 + public.kern2.Z + -26 + public.kern2.a + -3 + public.kern2.comma + -32 + public.kern2.emdash + 4 + public.kern2.j + -12 + public.kern2.period + -34 + public.kern2.quotedbl + -32 + public.kern2.quoteright + -28 + public.kern2.s + -10 + public.kern2.tecyr + -16 + public.kern2.w + -17 + public.kern2.x + -25 + public.kern2.y + -27 + public.kern2.z + -16 + + public.kern1.period1 + + public.kern2.A.ss01 + 24 + public.kern2.A.ss012 + 30 + public.kern2.A2 + 34 + public.kern2.G + -46 + public.kern2.J + 32 + public.kern2.Oslash.alt + 10 + public.kern2.T + -86 + public.kern2.U + -22 + public.kern2.Ucyr.ss01 + -20 + public.kern2.V + -86 + public.kern2.W + -52 + public.kern2.Y + -124 + public.kern2.Z + 14 + public.kern2.decyr.ss01 + 8 + public.kern2.f + -12 + public.kern2.five + -6 + public.kern2.g.ss01 + 4 + public.kern2.j + -8 + public.kern2.o + -34 + public.kern2.quotedbl + -16 + public.kern2.t + -30 + public.kern2.tecyr + -64 + public.kern2.u + -18 + public.kern2.w + -34 + public.kern2.y + -75 + public.kern2.z + 4 + public.kern2.zero + -14 + + public.kern1.quotedbl1 + + public.kern2.A.ss01 + -58 + public.kern2.A.ss012 + -38 + public.kern2.A2 + -50 + public.kern2.G + -16 + public.kern2.J + -68 + public.kern2.Oslash.alt + 8 + public.kern2.T + 30 + public.kern2.V + 14 + public.kern2.W + 18 + public.kern2.Y + 18 + public.kern2.Z + -2 + public.kern2.a + -22 + public.kern2.decyr.ss01 + -40 + public.kern2.four + -64 + public.kern2.g + -26 + public.kern2.g.ss01 + -24 + public.kern2.h + 4 + public.kern2.i1 + 4 + public.kern2.j + -12 + public.kern2.l.ss01 + 4 + public.kern2.o + -32 + public.kern2.period + -21 + public.kern2.s + -26 + public.kern2.t + 8 + public.kern2.w + 4 + public.kern2.x + -6 + public.kern2.y + 4 + public.kern2.z + -6 + public.kern2.zero + -16 + + public.kern1.quoteleft1 + + public.kern2.A.ss01 + -56 + public.kern2.A.ss012 + -20 + public.kern2.A2 + -42 + public.kern2.B + 4 + public.kern2.G + -20 + public.kern2.Gecyr + 4 + public.kern2.J + -24 + public.kern2.Oslash.alt + 18 + public.kern2.T + 32 + public.kern2.Ucyr.ss01 + 20 + public.kern2.V + 24 + public.kern2.W + 30 + public.kern2.Y + 34 + public.kern2.Z + 4 + public.kern2.a + -30 + public.kern2.decyr.ss01 + -4 + public.kern2.f + 6 + public.kern2.g + -46 + public.kern2.g.ss01 + -36 + public.kern2.i1 + 38 + public.kern2.j + -6 + public.kern2.m + -20 + public.kern2.o + -52 + public.kern2.s + -26 + public.kern2.u + -20 + public.kern2.w + -18 + public.kern2.x + -26 + public.kern2.y + -16 + public.kern2.z + -26 + + public.kern1.quoteright1 + + public.kern2.A.ss01 + -60 + public.kern2.A2 + -60 + public.kern2.B + -6 + public.kern2.G + -36 + public.kern2.J + -46 + public.kern2.Oslash.alt + -2 + public.kern2.S + -22 + public.kern2.T + 14 + public.kern2.U + -12 + public.kern2.V + 18 + public.kern2.W + 24 + public.kern2.Y + 16 + public.kern2.Z + -12 + public.kern2.a + -66 + public.kern2.f + -4 + public.kern2.g + -76 + public.kern2.g.ss01 + -58 + public.kern2.h + -22 + public.kern2.i1 + -4 + public.kern2.m + -26 + public.kern2.o + -82 + public.kern2.s + -70 + public.kern2.t + -6 + public.kern2.u + -26 + public.kern2.w + -24 + public.kern2.x + -24 + public.kern2.y + -30 + public.kern2.z + -48 + + public.kern1.s1 + + public.kern2.A.ss01 + 4 + public.kern2.A2 + 6 + public.kern2.G + -4 + public.kern2.J + 10 + public.kern2.Oslash.alt + -3 + public.kern2.T + -58 + public.kern2.V + -40 + public.kern2.W + -24 + public.kern2.Y + -68 + public.kern2.Z + -6 + public.kern2.a + 2 + public.kern2.comma + -6 + public.kern2.f + -4 + public.kern2.g.ss01 + -4 + public.kern2.guillemotright + 8 + public.kern2.period + -12 + public.kern2.quotedbl + -30 + public.kern2.quoteright + -16 + public.kern2.t + -4 + public.kern2.w + -10 + public.kern2.x + -10 + public.kern2.y + -12 + + public.kern1.t.ss011 + + public.kern2.A.ss01 + 12 + public.kern2.B + 4 + public.kern2.G + 4 + public.kern2.Y + -16 + public.kern2.Z + 4 + public.kern2.emdash + -6 + public.kern2.h + 4 + public.kern2.l.ss01 + 4 + public.kern2.m + 4 + public.kern2.o + 4 + public.kern2.period + 8 + public.kern2.quoteright + 4 + public.kern2.t + 12 + public.kern2.z + 12 + + public.kern1.t1 + + public.kern2.G + -6 + public.kern2.J + 24 + public.kern2.T + -9 + public.kern2.V + -20 + public.kern2.W + -6 + public.kern2.Y + -23 + public.kern2.Z + 4 + public.kern2.emdash + -18 + public.kern2.f + 8 + public.kern2.g + 4 + public.kern2.h + 8 + public.kern2.i1 + 4 + public.kern2.j + 4 + public.kern2.l.ss01 + 4 + public.kern2.o + -6 + public.kern2.period + 4 + public.kern2.quotedbl + 8 + public.kern2.quoteright + 4 + public.kern2.t + 14 + public.kern2.x + 4 + public.kern2.y + 6 + public.kern2.z + 16 + + public.kern1.u1 + + public.kern2.A.ss01 + 4 + public.kern2.J + 4 + public.kern2.T + -52 + public.kern2.V + -50 + public.kern2.W + -26 + public.kern2.Y + -80 + public.kern2.j + -12 + public.kern2.quoteright + -12 + + public.kern1.uni0435.ss011 + + public.kern2.A.ss012 + 8 + public.kern2.T + -66 + public.kern2.Ucyr.ss01 + -48 + public.kern2.V + -50 + public.kern2.W + -16 + public.kern2.Y + -68 + public.kern2.period + 4 + public.kern2.quoteright + 8 + public.kern2.w + -6 + public.kern2.x + -6 + public.kern2.y + -10 + + public.kern1.w1 + + public.kern2.A.ss01 + -8 + public.kern2.A.ss012 + -6 + public.kern2.A2 + -20 + public.kern2.J + -22 + public.kern2.Oslash.alt + -20 + public.kern2.S + -12 + public.kern2.T + -36 + public.kern2.V + -14 + public.kern2.W + -7 + public.kern2.Y + -42 + public.kern2.Z + -30 + public.kern2.a + -17 + public.kern2.comma + -28 + public.kern2.emdash + -4 + public.kern2.f + 4 + public.kern2.g + -4 + public.kern2.g.ss01 + -10 + public.kern2.j + -10 + public.kern2.o + -17 + public.kern2.period + -34 + public.kern2.quotedbl + 4 + public.kern2.quoteright + 4 + public.kern2.s + -10 + public.kern2.w + -4 + + public.kern1.x + + public.kern2.A.ss01 + 8 + public.kern2.A2 + 4 + public.kern2.G + -14 + public.kern2.J + 8 + public.kern2.S + -6 + public.kern2.T + -36 + public.kern2.Ucyr.ss01 + -16 + public.kern2.V + -20 + public.kern2.W + -6 + public.kern2.Y + -44 + public.kern2.a + -4 + public.kern2.emdash + -28 + public.kern2.o + -25 + public.kern2.quotedbl + -6 + public.kern2.quoteright + -4 + public.kern2.s + -6 + + public.kern1.y1 + + public.kern2.A.ss01 + -8 + public.kern2.A.ss012 + -10 + public.kern2.A2 + -20 + public.kern2.G + -4 + public.kern2.J + -32 + public.kern2.Oslash.alt + -30 + public.kern2.T + -36 + public.kern2.Ucyr.ss01 + -16 + public.kern2.V + -20 + public.kern2.W + -7 + public.kern2.Y + -44 + public.kern2.Z + -20 + public.kern2.a + -9 + public.kern2.comma + -48 + public.kern2.decyr.ss01 + -24 + public.kern2.emdash + -12 + public.kern2.f + 16 + public.kern2.g + -10 + public.kern2.g.ss01 + -12 + public.kern2.h + -4 + public.kern2.j + -10 + public.kern2.o + -14 + public.kern2.period + -76 + public.kern2.quotedbl + 4 + public.kern2.quoteright + 16 + public.kern2.s + -8 + public.kern2.t + 10 + public.kern2.tecyr + 6 + public.kern2.x + 4 + public.kern2.y + 4 + + public.kern1.z1 + + public.kern2.A.ss012 + 8 + public.kern2.A2 + 14 + public.kern2.J + 12 + public.kern2.S + -12 + public.kern2.T + -34 + public.kern2.V + -20 + public.kern2.W + -24 + public.kern2.Y + -50 + public.kern2.comma + 10 + public.kern2.f + 6 + public.kern2.g + 4 + public.kern2.j + 4 + public.kern2.o + -16 + public.kern2.period + 4 + public.kern2.quotedbl + -12 + public.kern2.quoteright + -6 + public.kern2.s + 2 + public.kern2.t + 4 + public.kern2.x + 4 + public.kern2.z + 4 + + + diff --git a/sources/FixelText-SemiBold.ufo/layercontents.plist b/sources/FixelText-SemiBold.ufo/layercontents.plist new file mode 100644 index 00000000..7a35a5cf --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/layercontents.plist @@ -0,0 +1,10 @@ + + + + + + public.default + glyphs + + + diff --git a/sources/FixelText-SemiBold.ufo/lib.plist b/sources/FixelText-SemiBold.ufo/lib.plist new file mode 100644 index 00000000..c0069150 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/lib.plist @@ -0,0 +1,1671 @@ + + + + + com.fontlab.v2.tth + + stems + + 69 + + width + 69 + horizontal + + round + + 35 + 3 + 47 + 4 + 60 + 5 + 0 + 7 + 22 + 8 + + + 74 + + width + 74 + horizontal + + round + + 19 + 2 + 35 + 3 + 47 + 4 + 60 + 5 + 72 + 6 + 0 + 7 + 20 + 8 + + + 76 + + width + 76 + horizontal + + round + + 19 + 2 + 35 + 3 + 72 + 6 + 0 + 7 + 20 + 8 + + + 80 + + width + 80 + horizontal + + round + + 29 + 3 + 47 + 4 + 60 + 5 + 72 + 6 + 0 + 7 + 20 + 8 + + + 99 + + width + 99 + horizontal + + round + + 19 + 2 + 29 + 3 + 37 + 4 + 48 + 5 + 58 + 6 + 0 + 7 + 16 + 8 + + + 74 + + width + 74 + horizontal + + round + + 19 + 2 + 35 + 3 + 47 + 4 + 60 + 5 + 72 + 6 + 0 + 7 + 20 + 8 + + + 80 + + width + 80 + horizontal + + round + + 29 + 3 + 47 + 4 + 60 + 5 + 72 + 6 + 0 + 7 + 20 + 8 + + + 93 + + width + 93 + horizontal + + round + + 19 + 2 + 29 + 3 + 37 + 4 + 48 + 5 + 58 + 6 + 0 + 7 + 16 + 8 + + + + + com.schriftgestaltung.disablesAutomaticAlignment + + com.schriftgestaltung.fontMasterID + master01 + com.schriftgestaltung.glyphOrder + + com.schriftgestaltung.master.name + regular + com.schriftgestaltung.useNiceNames + + com.schriftgestaltung.weightValue + 400 + public.postscriptNames + + A-cy + uni0410 + A-cy.ss01 + uni0410.ss01 + Be-cy + uni0411 + Che-cy + uni0427 + De-cy + uni0414 + Dze-cy + uni0405 + E-cy + uni0404 + Ef-cy + uni0424 + El-cy + uni041B + Em-cy + uni041C + Em-cy.ss01 + uni041C.ss01 + En-cy + uni041D + Er-cy + uni0420 + Ereversed-cy + uni042D + Es-cy + uni0421 + Gacute + uni01F4 + Gacute.ss01 + uni01F4.ss01 + Gcommaaccent + uni0122 + Gcommaaccent.ss01 + uni0122.ss01 + Ge-cy + uni0413 + Germandbls + uni1E9E + Gheupturn-cy + uni0490 + Ha-cy + uni0425 + Ha-cy.ss01 + uni0425.ss01 + Hardsign-cy + uni042A + I-cy + uni0406 + Ia-cy + uni042F + Ia-cy.ss01 + uni042F.ss01 + Ie-cy + uni0415 + Ii-cy + uni0418 + Iishort-cy + uni0419 + Io-cy + uni0401 + Iu-cy + uni042E + Ka-cy + uni041A + Ka-cy.ss01 + uni041A.ss01 + Kcommaaccent + uni0136 + Kcommaaccent.ss01 + uni0136.ss01 + Lcommaaccent + uni013B + Ncommaaccent + uni0145 + Ncommaaccent.ss01 + uni0145.ss01 + O-cy + uni041E + Pe-cy + uni041F + Rcommaaccent + uni0156 + Scommaaccent + uni0218 + Sha-cy + uni0428 + Shcha-cy + uni0429 + Softsign-cy + uni042C + Tcedilla + uni0162 + Tcommaaccent + uni021A + Te-cy + uni0422 + Tse-cy + uni0426 + U-cy + uni0423 + U-cy.ss01 + uni0423.ss01 + Ushort-cy + uni040E + Ushort-cy.ss01 + uni040E.ss01 + Ve-cy + uni0412 + Yeru-cy + uni042B + Yi-cy + uni0407 + Ze-cy + uni0417 + Zhe-cy + uni0416 + Zhe-cy.ss01 + uni0416.ss01 + _perc-circule + _perccircule + a-cy + uni0430 + a-cy.ss01 + uni0430.ss01 + be-cy + uni0431 + che-cy + uni0447 + commaaccentcomb + uni0326 + commaaccentcomb.salt + uni0326.salt + de-cy + uni0434 + de-cy.ss01 + uni0434.ss01 + dze-cy + uni0455 + e-cy + uni0454 + ef-cy + uni0444 + el-cy + uni043B + el-cy.ss01 + uni043B.ss01 + em-cy + uni043C + en-cy + uni043D + er-cy + uni0440 + er-cy.ss01 + uni0440.ss01 + ereversed-cy + uni044D + es-cy + uni0441 + euro + Euro + gacute + uni01F5 + gacute.ss01 + uni01F5.ss01 + gcommaaccent + uni0123 + gcommaaccent.ss01 + uni0123.ss01 + ge-cy + uni0433 + gheupturn-cy + uni0491 + guillemetleft + guillemotleft + guillemetright + guillemotright + ha-cy + uni0445 + hardsign-cy + uni044A + hardsign-cy.ss01 + uni044A.ss01 + hryvnia + uni20B4 + i-cy + uni0456 + ia-cy + uni044F + ia-cy.ss01 + uni044F.ss01 + idotless + dotlessi + ie-cy + uni0435 + ie-cy.ss01 + uni0435.ss01 + ii-cy + uni0438 + iishort-cy + uni0439 + io-cy + uni0451 + io-cy.ss01 + uni0451.ss01 + iu-cy + uni044E + jdotless + uni0237 + je-cy + uni0458 + ka-cy + uni043A + kcommaaccent + uni0137 + lcommaaccent + uni013C + lcommaaccent.ss01 + uni013C.ss01 + ncommaaccent + uni0146 + numero + uni2116 + numero.ss01 + uni2116.ss01 + o-cy + uni043E + onesuperior + uni00B9 + pe-cy + uni043F + rcommaaccent + uni0157 + scommaaccent + uni0219 + sha-cy + uni0448 + shcha-cy + uni0449 + softsign-cy + uni044C + softsign-cy.ss01 + uni044C.ss01 + tcedilla + uni0163 + tcedilla.ss01 + uni0163.ss01 + tcommaaccent + uni021B + tcommaaccent.ss01 + uni021B.ss01 + te-cy + uni0442 + te-cy.ss01 + uni0442.ss01 + threesuperior + uni00B3 + tse-cy + uni0446 + twosuperior + uni00B2 + u-cy + uni0443 + ushort-cy + uni045E + ve-cy + uni0432 + ve-cy.ss01 + uni0432.ss01 + yeru-cy + uni044B + yeru-cy.ss01 + uni044B.ss01 + yi-cy + uni0457 + ze-cy + uni0437 + zhe-cy + uni0436 + + public.skipExportGlyphs + + Oslash.bold + oslash.bold + _perc-circule + + public.glyphOrder + + .notdef + NULL + CR + space + A + Aacute + Abreve + Acircumflex + Adieresis + Agrave + Amacron + Aogonek + Aring + Atilde + AE + B + C + Cacute + Ccaron + Ccedilla + Ccircumflex + Cdotaccent + D + Eth + Dcaron + Dcroat + E + Eacute + Ebreve + Ecaron + Ecircumflex + Edieresis + Edotaccent + Egrave + Emacron + Eogonek + F + G + Gacute + Gbreve + Gcircumflex + Gcommaaccent + Gdotaccent + H + Hbar + Hcircumflex + I + IJ + Iacute + Ibreve + Icircumflex + Idieresis + Idotaccent + Igrave + Imacron + Iogonek + Itilde + J + Jcircumflex + K + Kcommaaccent + L + Lacute + Lcaron + Lcommaaccent + Ldot + Lslash + M + N + Nacute + Ncaron + Ncommaaccent + Eng + Ntilde + O + Oacute + Obreve + Ocircumflex + Odieresis + Ograve + Ohungarumlaut + Omacron + Oslash + Otilde + OE + P + Thorn + Q + R + Racute + Rcaron + Rcommaaccent + S + Sacute + Scaron + Scedilla + Scircumflex + Scommaaccent + Germandbls + T + Tbar + Tcaron + Tcedilla + Tcommaaccent + U + Uacute + Ubreve + Ucircumflex + Udieresis + Ugrave + Uhungarumlaut + Umacron + Uogonek + Uring + Utilde + V + W + Wacute + Wcircumflex + Wdieresis + Wgrave + X + Y + Yacute + Ycircumflex + Ydieresis + Z + Zacute + Zcaron + Zdotaccent + A.ss01 + Aacute.ss01 + Abreve.ss01 + Acircumflex.ss01 + Adieresis.ss01 + Agrave.ss01 + Amacron.ss01 + Aogonek.ss01 + Aring.ss01 + Atilde.ss01 + AE.ss01 + G.ss01 + Gacute.ss01 + Gbreve.ss01 + Gcircumflex.ss01 + Gcommaaccent.ss01 + Gdotaccent.ss01 + J.ss01 + Jcircumflex.ss01 + K.ss01 + Kcommaaccent.ss01 + M.ss01 + N.ss01 + Nacute.ss01 + Ncaron.ss01 + Ncommaaccent.ss01 + Eng.ss01 + Ntilde.ss01 + Q.ss01 + V.ss01 + W.ss01 + Wacute.ss01 + Wcircumflex.ss01 + Wdieresis.ss01 + Wgrave.ss01 + X.ss01 + Y.ss01 + Yacute.ss01 + Ycircumflex.ss01 + Ydieresis.ss01 + Z.ss01 + Zacute.ss01 + Zcaron.ss01 + Zdotaccent.ss01 + a + aacute + abreve + acircumflex + adieresis + agrave + amacron + aogonek + aring + atilde + ae + b + c + cacute + ccaron + ccedilla + ccircumflex + cdotaccent + d + eth + dcaron + dcroat + e + eacute + ebreve + ecaron + ecircumflex + edieresis + edotaccent + egrave + emacron + eogonek + f + g + gacute + gbreve + gcircumflex + gcommaaccent + gdotaccent + h + hbar + hcircumflex + i + idotless + iacute + ibreve + icircumflex + idieresis + igrave + ij + imacron + iogonek + itilde + j + jdotless + jcircumflex + k + kcommaaccent + kgreenlandic + l + lacute + lcaron + lcommaaccent + ldot + lslash + m + n + nacute + napostrophe + ncaron + ncommaaccent + eng + ntilde + o + oacute + obreve + ocircumflex + odieresis + ograve + ohungarumlaut + omacron + oslash + otilde + oe + p + thorn + q + r + racute + rcaron + rcommaaccent + s + sacute + scaron + scedilla + scircumflex + scommaaccent + germandbls + t + tbar + tcaron + tcedilla + tcommaaccent + u + uacute + ubreve + ucircumflex + udieresis + ugrave + uhungarumlaut + umacron + uogonek + uring + utilde + v + w + wacute + wcircumflex + wdieresis + wgrave + x + y + yacute + ycircumflex + ydieresis + z + zacute + zcaron + zdotaccent + a.ss01 + aacute.ss01 + abreve.ss01 + acircumflex.ss01 + adieresis.ss01 + agrave.ss01 + amacron.ss01 + aogonek.ss01 + aring.ss01 + atilde.ss01 + ae.ss01 + b.ss01 + d.ss01 + dcaron.ss01 + dcroat.ss01 + e.ss01 + eacute.ss01 + ebreve.ss01 + ecaron.ss01 + ecircumflex.ss01 + edieresis.ss01 + edotaccent.ss01 + egrave.ss01 + emacron.ss01 + eogonek.ss01 + f.ss01 + g.ss01 + gacute.ss01 + gbreve.ss01 + gcircumflex.ss01 + gcommaaccent.ss01 + gdotaccent.ss01 + l.ss01 + lacute.ss01 + lcaron.ss01 + lcommaaccent.ss01 + ldot.ss01 + lslash.ss01 + oe.ss01 + p.ss01 + q.ss01 + germandbls.ss01 + t.ss01 + tbar.ss01 + tcaron.ss01 + tcedilla.ss01 + tcommaaccent.ss01 + f_f + f_f_i + f_f_l + fi + fl + f_f.ss01 + f_f_i.ss01 + f_f_l.ss01 + fi.ss01 + fl.ss01 + ordfeminine + ordmasculine + A-cy + Be-cy + Ve-cy + Ge-cy + Gheupturn-cy + De-cy + Ie-cy + Io-cy + Zhe-cy + Ze-cy + Ii-cy + Iishort-cy + Ka-cy + El-cy + Em-cy + En-cy + O-cy + Pe-cy + Er-cy + Es-cy + Te-cy + U-cy + Ushort-cy + Ef-cy + Ha-cy + Che-cy + Tse-cy + Sha-cy + Shcha-cy + Softsign-cy + Hardsign-cy + Yeru-cy + Dze-cy + E-cy + Ereversed-cy + I-cy + Yi-cy + Iu-cy + Ia-cy + A-cy.ss01 + Zhe-cy.ss01 + Ka-cy.ss01 + Em-cy.ss01 + U-cy.ss01 + Ushort-cy.ss01 + Ha-cy.ss01 + Ia-cy.ss01 + a-cy + be-cy + ve-cy + ge-cy + gheupturn-cy + de-cy + ie-cy + io-cy + zhe-cy + ze-cy + ii-cy + iishort-cy + ka-cy + el-cy + em-cy + en-cy + o-cy + pe-cy + er-cy + es-cy + te-cy + u-cy + ushort-cy + ef-cy + ha-cy + che-cy + tse-cy + sha-cy + shcha-cy + softsign-cy + hardsign-cy + yeru-cy + dze-cy + e-cy + ereversed-cy + i-cy + yi-cy + je-cy + iu-cy + ia-cy + a-cy.ss01 + ve-cy.ss01 + de-cy.ss01 + ie-cy.ss01 + io-cy.ss01 + el-cy.ss01 + er-cy.ss01 + te-cy.ss01 + softsign-cy.ss01 + hardsign-cy.ss01 + yeru-cy.ss01 + ia-cy.ss01 + zero + one + two + three + four + five + six + seven + eight + nine + zero.osf + one.osf + two.osf + three.osf + four.osf + five.osf + six.osf + seven.osf + nine.osf + zero.tf + one.tf + two.tf + three.tf + four.tf + five.tf + six.tf + seven.tf + eight.tf + nine.tf + onesuperior + twosuperior + threesuperior + period + comma + colon + semicolon + ellipsis + exclam + exclamdown + question + questiondown + periodcentered + bullet + asterisk + numbersign + slash + backslash + parenleft + parenright + braceleft + braceright + bracketleft + bracketright + hyphen + endash + emdash + underscore + quotesinglbase + quotedblbase + quotedblleft + quotedblright + quoteleft + quoteright + guillemetleft + guillemetright + guilsinglleft + guilsinglright + quotedbl + quotesingle + cent + currency + dollar + euro + hryvnia + sterling + yen + yen.ss01 + plus + minus + multiply + divide + equal + greater + less + asciitilde + asciicircum + percent + perthousand + at + ampersand + paragraph + section + copyright + registered + trademark + degree + bar + brokenbar + dagger + daggerdbl + numero + estimated + numero.ss01 + commaaccentcomb + dieresis + dotaccent + grave + acute + hungarumlaut + circumflex + caron + breve + ring + tilde + macron + cedilla + ogonek + dieresis.case + dotaccent.case + grave.case + acute.case + hungarumlaut.case + circumflex.case + caron.case + breve.case + ring.case + tilde.case + macron.case + commaaccentcomb.salt + caron.salt + uniE01A + _perc-circule + eight.osf + ruble + Ljecyr + Njecyr + Jecyr + dzhecyr + Dzhecyr + ljecyr + njecyr + Tshecyr + Djecyr + tshecyr + djecyr + tenge + ljecyr.ss01 + njecyr.ss01 + dramsignarmn + gjecyr + kjecyr + neptune + florin + plusminus + fraction + onequarter + onehalf + threequarters + mu + lessequal + greaterequal + minute + second + Schwacyr + schwacyr + Gestrokecyr + gestrokecyr + Obarcyr + obarcyr + Entailcyr + entailcyr + Katailcyr + katailcyr + Ustraightstrokecyr + ustraightstrokecyr + Shhacyr + shhacyr + ustraightcyr + Ustraightcyr + partialdiff + increment + integral + summation + radical + infinity + Omega + pi + longs + Delta + product + notequal + proportional + approxequal + Schwa + eturned + Oslashacute + oslashacute + AEacute + aeacute + uni2010 + Aiecyr + aiecyr + uni1EBC + uni1EBD + Acaron + acaron + Gjecyr + Kjecyr + uniE000 + uniE000.alt + arrowleft + arrowup + arrowright + arrowdown + arrowdown.ss01 + arrowleft.ss01 + arrowright.ss01 + arrowup.ss01 + yi-cy.alt + Omegacyr + omegacyr + Yatcyr + yatcyr + Eiotifiedcyr + eiotifiedcyr + Ksicyr + ksicyr + Shwe-cy + Fitacyr + fitacyr + Koppacyr + Iegravecyr + Igravecyr + iegravecyr + igravecyr + Zhebrevecyr + zhebrevecyr + Abrevecyr + abrevecyr + Adieresiscyr + adieresiscyr + Iebrevecyr + iebrevecyr + Schwadieresiscyr + schwadieresiscyr + Zhedieresiscyr + zhedieresiscyr + Zedieresiscyr + zedieresiscyr + Imacroncyr + imacroncyr + Idieresiscyr + idieresiscyr + Odieresiscyr + odieresiscyr + Umacroncyr + umacroncyr + Udieresiscyr + udieresiscyr + Uacutedblcyr + uacutedblcyr + Dekomicyr + dekomicyr + Wecyr + wecyr + Qacyr + qacyr + Ylongdieresiscyr + ylongdieresiscyr + Chedieresiscyr + chedieresiscyr + Obardieresiscyr + obardieresiscyr + Ereverseddieresiscyr + ereverseddieresiscyr + Zhetailcyr + zhetailcyr + Tetailcyr + tetailcyr + Xatailcyr + xatailcyr + Chetailcyr + chetailcyr + Chekhakascyr + chekhakascyr + Getailcyr + getailcyr + Petailcyr + petailcyr + Eltailcyr + eltailcyr + Shhatailcyr + shhatailcyr + Palochkacyr + palochkacyr + Dzzhecyr + Yaecyr + yaecyr + Tetsecyr + tetsecyr + Engecyr + engecyr + kabashkcyr + Kabashkcyr + semisoftcyr + Semisoftcyr + Reversedzecyr + reversedzecyr + Elmiddlehookcyr + Enmiddlehookcyr + Enhookcyr + Kahookcyr + Pehookcyr + Gehookcyr + parenleft.case + parenright.case + hyphen.case + bracketleft.case + bracketright.case + braceleft.case + braceright.case + exclamdown.case + guillemetleft.case + guillemetright.case + endash.case + emdash.case + bullet.case + guilsinglleft.case + guilsinglright.case + arrowleft.case + arrowup.case + arrowright.case + arrowdown.case + arrowdown.ss01.case + arrowleft.ss01.case + arrowright.ss01.case + arrowup.ss01.case + Enhookleftcyr + enhookleftcyr + enhookcyr + gehookcyr + pehookcyr + kahookcyr + enmiddlehookcyr + elmiddlehookcyr + kastrokecyr + Kastrokecyr + Chevertcyr + chevertcyr + Kaverticalstrokecyr + kaverticalstrokecyr + Elhookcyr + elhookcyr + zetailcyr + Zetailcyr + Estailcyr + estailcyr + Haabkhcyr + koppacyr + ukcyr + Ukcyr + omegaroundcyr + Izhitsagravedblcyr + izhitsagravedblcyr + izhitsacyr + Izhitsacyr + Yusbigcyr + yusbigcyr + Psicyr + psicyr + Omegaroundcyr + Yuslittlecyr + yuslittlecyr + yuslittleiotifiedcyr + Yuslittleiotifiedcyr + Yusbigiotifiedcyr + yusbigiotifiedcyr + Omegatitlocyr + omegatitlocyr + Otcyr + otcyr + uni2DEE + uni2DEE.case + ertickcyr + Ertickcyr + Lhacyr + lhacyr + ensharptailcyr + Ensharptailcyr + emsharptailcyr + elsharptailcyr + ishortsharptailcyr + Ishortsharptailcyr + Emsharptailcyr + Elsharptailcyr + njekomicyr + Njekomicyr + ljekomicyr + tjekomicyr + djekomicyr + zjekomicyr + colon.case + questiondown.case + slash.case + semicolon.case + backslash.case + bar.case + brokenbar.case + dzjekomicyr + Cheabkhcyr + cheabkhcyr + cheabkhtailcyr + sjekomicyr + Sjekomicyr + Ljekomicyr + Tjekomicyr + Djekomicyr + kaaleutcyr + dzzhecyr + haabkhcyr + Dchecyr + dchecyr + dzeabkhcyr + Dzeabkhcyr + palatcombcyr + Cheabkhtailcyr + Dzjekomicyr + Zjekomicyr + rhacyr + Rhacyr + Kaaleutcyr + thousandscyr + titlocombcyr + pokrytiecombcyr + hundredthousandscombcyr + millionscombcyr + Gehookstrokecyr + gehookstrokecyr + Hahookcyr + hahookcyr + Hastrokecyr + uni1C80 + uni1C81 + uni1C82 + uni1C83 + uni1C84 + uni1C85 + uni1C86 + uni1C87 + Zemlya-cy + zemlya-cy + Dzelo-cy + dzelo-cy + DzeReversed-cy + dzeReversed-cy + Iota-cy + iota-cy + Djerv-cy + djerv-cy + UkMonograph-cy + ukMonograph-cy + OmegaBroad-cy + omegaBroad-cy + YerNeutral-cy + yerNeutral-cy + YeruBackYer-cy + yeruBackyer-cy + YatIotified-cy + yatIotified-cy + YuReversed-cy + yuReversed-cy + IotifiedA-cy + iotifieda-cy + YusClosedlittle-cy + yusClosedlittle-cy + YusBlended-cy + yusBlended-cy + YusiotifiedClosedLittle-cy + yusiotifiedClosedLittle-cy + Yn-cy + yn-cy + TseReversed-cy + tseReversed-cy + DeSoft-cy + deSoft-cy + ElSoft-cy + elSoft-cy + EmSoft-cy + emSoft-cy + OMonocular-cy + oMonocular-cy + OBinocular-cy + oBinocular-cy + ODoubleMonocular-cy + oDoubleMonocular-cy + omultiocular-cy + vzmetcomb-cy + tenmillionscomb-cy + hundredmillionscomb-cy + thousandmillionscomb-cy + Dwe-cy + dwe-cy + Dzwe-cy + dzwe-cy + Zhwe-cy + zhwe-cy + Cche-cy + cche-cy + Dzze-cy + dzze-cy + TeWithMiddleHook-cy + tewithmiddlehook-cy + Twe-cy + twe-cy + Tswe-cy + tswe-cy + Tsse-cy + tsse-cy + Tche-cy + tche-cy + Hwe-cy + hwe-cy + shwe-cy + DoubleO-cy + doubleo-cy + CrossedO-cy + crossedo-cy + hastrokecyr + uniF43A + A-cy.accented + E-cy.accented + Ii-cy.accented + O-cy.accented + U-cy.accented + Yeru-cy.accented + Ereversed-cy.accented + Iu-cy.accented + Ia-cy.accented + Io-cy.accented + uniF498 + uniF49A + uniF49C + uniF49E + uniF4C6 + uniF4CC + uniF4D2 + uniF4D4 + uniF4D6 + uniF4D8 + Zetailcyr.BSH + Estailcyr.CHU + uniF50E + uniF510 + uniF512 + uniF514 + uniF516 + uniF518 + uniF51A + uniF51C + uniF51E + Yeru-cymacron + uniF522 + uniF524 + uniF526 + uniF528 + uniF52A + uniF52C + uniF52E + uniF532 + uniF536 + uniF538 + Gestrokecyr.BSH + Estailcyr.BSH + uniF830 + uniF833 + uniF839 + uniF86F + uniF872 + uniF875 + uniF878 + uniF87B + uniF87E + apostrophemod + colontriangularmod + uni1C88 + uniF87F + uniF87C + uniF879 + uniF876 + uniF873 + uniF870 + uniF83A + uniF834 + uniF831 + zetailcyr.BSH + estailcyr.CHU + uniF50F + uniF511 + uniF513 + uniF515 + uniF517 + uniF519 + uniF51B + uniF51D + uniF51F + uniF521 + uniF523 + uniF525 + uniF527 + uniF529 + uniF52B + uniF52D + uniF52F + uniF533 + uniF537 + uniF539 + gestrokecyr.BSH + estailcyr.BSH + uniF499 + uniF49B + uniF49D + uniF49F + uniF4C7 + uniF4CD + uniF4D3 + uniF4D5 + uniF4D7 + uniF4D9 + a-cy.accented + e-cy.accented + ii-cy.accented + o-cy.accented + u-cy.accented + yeru-cy.accented + ereversed-cy.accented + iu-cy.accented + ia-cy.accented + io-cy.accented + uniF43B + at.case + dieresis.alt + dieresiscase.alt + e-cy.hist + omultiocular-cy.alt + iotifieda-cy.hist + be-cy.SRB + ve-cy.BGR + ge-cy.BGR + de-cy.BGR + zhe-cy.BGR + ze-cy.BGR + ii-cy.BGR + iishort-cy.BGR + ka-cy.BGR + el-cy.BGR + pe-cy.BGR + te-cy.BGR + tse-cy.BGR + sha-cy.BGR + shcha-cy.BGR + hardsign-cy.BGR + softsign-cy.BGR + iu-cy.BGR + yatcyr.BGR + eiotifiedcyr.BGR + yusbigiotifiedcyr.BGR + iotifieda-cy.BGR + De-cy.BGR + El-cy.BGR + Ef-cy.BGR + dieresisacute + uniF45D + uniF45E + uniF45F + uniF475 + uniF476 + uniF477 + uniF478 + uniF479 + Elsmallcyr + enclosingcirclecomb + ge-cy.SRB + pe-cy.SRB + te-cy.SRB + gjecyr.SRB + macron-fwd + macron-fwd.alt + macronacute.SRB + iegravecyr.SRB + igravecyr.SRB + flower + knightwhite + knightblack + floretteblack + florettewhite + floretteoutlinedpetalledblackeight + rookblack + bishopblack + leo + heartwhite + diamondwhite-misc + spadewhite + clubwhite + bishopwhite + heart + crossedswords + virgo + thousandscyr.dnom + bracketangleleft + bracketangleright + bracketangleleft.case + bracketangleright.case + + + diff --git a/sources/FixelText-SemiBold.ufo/metainfo.plist b/sources/FixelText-SemiBold.ufo/metainfo.plist new file mode 100644 index 00000000..10582b84 --- /dev/null +++ b/sources/FixelText-SemiBold.ufo/metainfo.plist @@ -0,0 +1,10 @@ + + + + + creator + com.fontlab.ufoLib + formatVersion + 3 + + diff --git a/sources/FixelText-Thin.ufo/features.fea b/sources/FixelText-Thin.ufo/features.fea new file mode 100644 index 00000000..302ade93 --- /dev/null +++ b/sources/FixelText-Thin.ufo/features.fea @@ -0,0 +1,573 @@ +#> classes +#/> otclasses +@ss01_def = [A-cy A AE Aacute Abreve Acircumflex Adieresis Agrave Amacron Aogonek Aring Atilde Em-cy Eng G Gacute Gbreve Gcircumflex Gcommaaccent Gdotaccent Ha-cy Ia-cy J Jcircumflex K Ka-cy Kcommaaccent M N Nacute Ncaron Ncommaaccent Ntilde Q U-cy Ushort-cy V W Wacute Wcircumflex Wdieresis Wgrave X Y Yacute Ycircumflex Ydieresis Z Zacute Zcaron Zdotaccent Zhe-cy a-cy a aacute abreve acircumflex adieresis ae agrave amacron aogonek aring arrowdown arrowdown.case arrowleft arrowleft.case arrowright arrowright.case arrowup arrowup.case atilde b d dcaron dcroat de-cy e eacute ebreve ecaron ecircumflex edieresis edotaccent egrave el-cy emacron eogonek er-cy f f_f f_f_i f_f_l fi fl g gacute gbreve gcircumflex gcommaaccent gdotaccent germandbls hardsign-cy ia-cy ie-cy io-cy l lacute lcaron lcommaaccent ldot ljecyr lslash njecyr numero oe p q softsign-cy t tbar tcaron tcedilla tcommaaccent te-cy ve-cy yen yeru-cy]; +@ss01 = [A-cy.ss01 A.ss01 AE.ss01 Aacute.ss01 Abreve.ss01 Acircumflex.ss01 Adieresis.ss01 Agrave.ss01 Amacron.ss01 Aogonek.ss01 Aring.ss01 Atilde.ss01 Em-cy.ss01 Eng.ss01 G.ss01 Gacute.ss01 Gbreve.ss01 Gcircumflex.ss01 Gcommaaccent.ss01 Gdotaccent.ss01 Ha-cy.ss01 Ia-cy.ss01 J.ss01 Jcircumflex.ss01 K.ss01 Ka-cy.ss01 Kcommaaccent.ss01 M.ss01 N.ss01 Nacute.ss01 Ncaron.ss01 Ncommaaccent.ss01 Ntilde.ss01 Q.ss01 U-cy.ss01 Ushort-cy.ss01 V.ss01 W.ss01 Wacute.ss01 Wcircumflex.ss01 Wdieresis.ss01 Wgrave.ss01 X.ss01 Y.ss01 Yacute.ss01 Ycircumflex.ss01 Ydieresis.ss01 Z.ss01 Zacute.ss01 Zcaron.ss01 Zdotaccent.ss01 Zhe-cy.ss01 a-cy.ss01 a.ss01 aacute.ss01 abreve.ss01 acircumflex.ss01 adieresis.ss01 ae.ss01 agrave.ss01 amacron.ss01 aogonek.ss01 aring.ss01 arrowdown.ss01 arrowdown.ss01.case arrowleft.ss01 arrowleft.ss01.case arrowright.ss01 arrowright.ss01.case arrowup.ss01 arrowup.ss01.case atilde.ss01 b.ss01 d.ss01 dcaron.ss01 dcroat.ss01 de-cy.ss01 e.ss01 eacute.ss01 ebreve.ss01 ecaron.ss01 ecircumflex.ss01 edieresis.ss01 edotaccent.ss01 egrave.ss01 el-cy.ss01 emacron.ss01 eogonek.ss01 er-cy.ss01 f.ss01 f_f.ss01 f_f_i.ss01 f_f_l.ss01 fi.ss01 fl.ss01 g.ss01 gacute.ss01 gbreve.ss01 gcircumflex.ss01 gcommaaccent.ss01 gdotaccent.ss01 germandbls.ss01 hardsign-cy.ss01 ia-cy.ss01 ie-cy.ss01 io-cy.ss01 l.ss01 lacute.ss01 lcaron.ss01 lcommaaccent.ss01 ldot.ss01 ljecyr.ss01 lslash.ss01 njecyr.ss01 numero.ss01 oe.ss01 p.ss01 q.ss01 softsign-cy.ss01 t.ss01 tbar.ss01 tcaron.ss01 tcedilla.ss01 tcommaaccent.ss01 te-cy.ss01 ve-cy.ss01 yen.ss01 yeru-cy.ss01]; +@case = [arrowdown.case arrowdown.ss01.case arrowleft.case arrowleft.ss01.case arrowright.case arrowright.ss01.case arrowup.case arrowup.ss01.case backslash.case bar.case braceleft.case braceright.case bracketleft.case bracketright.case brokenbar.case bullet.case colon.case emdash.case endash.case exclamdown.case guillemetleft.case guillemetright.case guilsinglleft.case guilsinglright.case hyphen.case parenleft.case parenright.case questiondown.case semicolon.case at.case bracketangleleft.case bracketangleright.case slash.case]; +@case_def = [arrowdown arrowdown.ss01 arrowleft arrowleft.ss01 arrowright arrowright.ss01 arrowup arrowup.ss01 backslash bar braceleft braceright bracketleft bracketright brokenbar bullet colon emdash endash exclamdown guillemetleft guillemetright guilsinglleft guilsinglright hyphen parenleft parenright questiondown semicolon at bracketangleleft bracketangleright slash]; +@cpsp = [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 Agrave Aacute Acircumflex Atilde Adieresis Aring AE Ccedilla Egrave Eacute Ecircumflex Edieresis Igrave Iacute Icircumflex Idieresis Eth Ntilde Ograve Oacute Ocircumflex Otilde Odieresis Oslash Ugrave Uacute Ucircumflex Udieresis Yacute Thorn Amacron Abreve Aogonek Cacute Ccircumflex Cdotaccent Ccaron Dcaron Dcroat Emacron Ebreve Edotaccent Eogonek Ecaron Gcircumflex Gbreve Gdotaccent Gcommaaccent Hcircumflex Hbar Itilde Imacron Ibreve Iogonek Idotaccent IJ Jcircumflex Kcommaaccent Lacute Lcommaaccent Lcaron Ldot Lslash Nacute Ncommaaccent Ncaron Eng Omacron Obreve Ohungarumlaut OE Racute Rcommaaccent Rcaron Sacute Scircumflex Scedilla Scaron Tcedilla Tcaron Tbar Utilde Umacron Ubreve Uring Uhungarumlaut Uogonek Wcircumflex Ycircumflex Ydieresis Zacute Zdotaccent Zcaron Schwa Acaron Gacute AEacute Oslashacute Scommaaccent Tcommaaccent Delta Omega Iegravecyr uniF43A A-cy.accented E-cy.accented Ii-cy.accented O-cy.accented U-cy.accented Yeru-cy.accented Ereversed-cy.accented Iu-cy.accented Ia-cy.accented Io-cy.accented uniF498 uniF49A uniF49C uniF49E uniF4C6 uniF4CC uniF4D2 uniF4D4 uniF4D6 uniF4D8 uniF50E uniF510 uniF512 uniF514 uniF516 uniF518 uniF51A uniF51C uniF51E Yeru-cymacron uniF522 uniF524 uniF526 uniF528 uniF52A uniF52C uniF52E uniF532 uniF536 uniF538 uniF830 uniF833 uniF839 uniF86F uniF872 uniF875 uniF878 uniF87B uniF87E Io-cy Djecyr Gjecyr E-cy Dze-cy I-cy Yi-cy Jecyr Ljecyr Njecyr Tshecyr Kjecyr Igravecyr Ushort-cy Dzhecyr A-cy Be-cy Ve-cy Ge-cy De-cy Ie-cy Zhe-cy Ze-cy Ii-cy Iishort-cy Ka-cy El-cy Em-cy En-cy O-cy Pe-cy Er-cy Es-cy Te-cy U-cy Ef-cy Ha-cy Tse-cy Che-cy Sha-cy Shcha-cy Hardsign-cy Yeru-cy Softsign-cy Ereversed-cy Iu-cy Ia-cy Omegacyr Yatcyr Eiotifiedcyr Yuslittlecyr Yuslittleiotifiedcyr Yusbigcyr Yusbigiotifiedcyr Ksicyr Psicyr Fitacyr Izhitsacyr Izhitsagravedblcyr Ukcyr Omegaroundcyr Omegatitlocyr Otcyr Koppacyr Ishortsharptailcyr Semisoftcyr Ertickcyr Gheupturn-cy Gestrokecyr Gehookcyr Zhetailcyr Zetailcyr Katailcyr Kaverticalstrokecyr Kastrokecyr Kabashkcyr Entailcyr Engecyr Pehookcyr Haabkhcyr Estailcyr Tetailcyr Ustraightcyr Ustraightstrokecyr Xatailcyr Tetsecyr Chetailcyr Chevertcyr Shhacyr Cheabkhcyr Cheabkhtailcyr Palochkacyr Zhebrevecyr Kahookcyr Elsharptailcyr Enhookcyr Ensharptailcyr Chekhakascyr Emsharptailcyr Abrevecyr Adieresiscyr Aiecyr Iebrevecyr Schwacyr Schwadieresiscyr Zhedieresiscyr Zedieresiscyr Dzeabkhcyr Imacroncyr Idieresiscyr Odieresiscyr Obarcyr Obardieresiscyr Ereverseddieresiscyr Umacroncyr Udieresiscyr Uacutedblcyr Chedieresiscyr Getailcyr Ylongdieresiscyr Gehookstrokecyr Hahookcyr Hastrokecyr Dekomicyr Djekomicyr Zjekomicyr Dzjekomicyr Ljekomicyr Njekomicyr Sjekomicyr Tjekomicyr Reversedzecyr Elhookcyr Lhacyr Rhacyr Yaecyr Qacyr Wecyr Kaaleutcyr Elmiddlehookcyr Enmiddlehookcyr Petailcyr Shhatailcyr Enhookleftcyr Dzzhecyr Dchecyr Eltailcyr Wgrave Wacute Wdieresis Germandbls uni1EBC Zemlya-cy Dzelo-cy DzeReversed-cy Iota-cy Djerv-cy UkMonograph-cy OmegaBroad-cy YerNeutral-cy YeruBackYer-cy YatIotified-cy YuReversed-cy IotifiedA-cy YusClosedlittle-cy YusBlended-cy YusiotifiedClosedLittle-cy Yn-cy TseReversed-cy DeSoft-cy ElSoft-cy EmSoft-cy OMonocular-cy OBinocular-cy ODoubleMonocular-cy Dwe-cy Dzwe-cy Zhwe-cy Cche-cy Dzze-cy TeWithMiddleHook-cy Twe-cy Tswe-cy Tsse-cy Tche-cy Hwe-cy Shwe-cy DoubleO-cy CrossedO-cy A-cy.ss01 A.ss01 AE.ss01 Aacute.ss01 Abreve.ss01 Acircumflex.ss01 Adieresis.ss01 Agrave.ss01 Amacron.ss01 Aogonek.ss01 Aring.ss01 Atilde.ss01 Em-cy.ss01 Eng.ss01 G.ss01 Gacute.ss01 Gbreve.ss01 Gcircumflex.ss01 Gcommaaccent.ss01 Gdotaccent.ss01 Ha-cy.ss01 Ia-cy.ss01 J.ss01 Jcircumflex.ss01 K.ss01 Ka-cy.ss01 Kcommaaccent.ss01 M.ss01 N.ss01 Nacute.ss01 Ncaron.ss01 Ncommaaccent.ss01 Ntilde.ss01 Q.ss01 U-cy.ss01 Ushort-cy.ss01 V.ss01 W.ss01 Wacute.ss01 Wcircumflex.ss01 Wdieresis.ss01 Wgrave.ss01 X.ss01 Y.ss01 Yacute.ss01 Ycircumflex.ss01 Ydieresis.ss01 Z.ss01 Zacute.ss01 Zcaron.ss01 Zdotaccent.ss01 Zetailcyr.BSH Gestrokecyr.BSH Estailcyr.BSH Estailcyr.CHU Zhe-cy.ss01]; +@locl_BGR = [De-cy.BGR Ef-cy.BGR El-cy.BGR de-cy.BGR eiotifiedcyr.BGR el-cy.BGR ge-cy.BGR hardsign-cy.BGR ii-cy.BGR iishort-cy.BGR iotifieda-cy.BGR iu-cy.BGR ka-cy.BGR pe-cy.BGR sha-cy.BGR shcha-cy.BGR softsign-cy.BGR te-cy.BGR tse-cy.BGR ve-cy.BGR yatcyr.BGR yusbigiotifiedcyr.BGR ze-cy.BGR zhe-cy.BGR]; +@locl_def = [De-cy Ef-cy El-cy de-cy eiotifiedcyr el-cy ge-cy hardsign-cy ii-cy iishort-cy iotifieda-cy iu-cy ka-cy pe-cy sha-cy shcha-cy softsign-cy te-cy tse-cy ve-cy yatcyr yusbigiotifiedcyr ze-cy zhe-cy]; +@locl.SRB = [be-cy.SRB iegravecyr.SRB igravecyr.SRB]; +@loclSRB_def = [be-cy iegravecyr igravecyr]; +@accent = [grave acute.case grave.case acute]; +@pics = [neptune leo virgo bishopwhite knightwhite rookblack bishopblack knightblack heartwhite diamondwhite-misc spadewhite heart clubwhite crossedswords flower floretteblack florettewhite floretteoutlinedpetalledblackeight]; +@pics_def = [A B C D E F G H I J K L M N O P Q R]; +#/< otclasses + +#/> tags +@tag.omultiocular-cy.alt = [omultiocular-cy]; +@tag.yi-cy_yi-cy.alt = [uniE000]; +#/< tags +#< classes + +# automatic +@Uppercase = [ A Aacute Abreve Acircumflex Adieresis Agrave Amacron Aogonek Aring Atilde AE B C Cacute Ccaron Ccedilla Ccircumflex Cdotaccent D Eth Dcaron Dcroat E Eacute Ebreve Ecaron Ecircumflex Edieresis Edotaccent Egrave Emacron Eogonek F G Gacute Gbreve Gcircumflex Gcommaaccent Gdotaccent H Hbar Hcircumflex I IJ Iacute Ibreve Icircumflex Idieresis Idotaccent Igrave Imacron Iogonek Itilde J Jcircumflex K Kcommaaccent L Lacute Lcaron Lcommaaccent Ldot Lslash M N Nacute Ncaron Ncommaaccent Eng Ntilde O Oacute Obreve Ocircumflex Odieresis Ograve Ohungarumlaut Omacron Oslash Otilde OE P Thorn Q R Racute Rcaron Rcommaaccent S Sacute Scaron Scedilla Scircumflex Scommaaccent Germandbls T Tbar Tcaron Tcedilla Tcommaaccent U Uacute Ubreve Ucircumflex Udieresis Ugrave Uhungarumlaut Umacron Uogonek Uring Utilde V W Wacute Wcircumflex Wdieresis Wgrave X Y Yacute Ycircumflex Ydieresis Z Zacute Zcaron Zdotaccent A.ss01 Aacute.ss01 Abreve.ss01 Acircumflex.ss01 Adieresis.ss01 Agrave.ss01 Amacron.ss01 Aogonek.ss01 Aring.ss01 Atilde.ss01 AE.ss01 G.ss01 Gacute.ss01 Gbreve.ss01 Gcircumflex.ss01 Gcommaaccent.ss01 Gdotaccent.ss01 J.ss01 Jcircumflex.ss01 K.ss01 Kcommaaccent.ss01 M.ss01 N.ss01 Nacute.ss01 Ncaron.ss01 Ncommaaccent.ss01 Eng.ss01 Ntilde.ss01 Q.ss01 V.ss01 W.ss01 Wacute.ss01 Wcircumflex.ss01 Wdieresis.ss01 Wgrave.ss01 X.ss01 Y.ss01 Yacute.ss01 Ycircumflex.ss01 Ydieresis.ss01 Z.ss01 Zacute.ss01 Zcaron.ss01 Zdotaccent.ss01 A-cy Be-cy Ve-cy Ge-cy Gheupturn-cy De-cy Ie-cy Io-cy Zhe-cy Ze-cy Ii-cy Iishort-cy Ka-cy El-cy Em-cy En-cy O-cy Pe-cy Er-cy Es-cy Te-cy U-cy Ushort-cy Ef-cy Ha-cy Che-cy Tse-cy Sha-cy Shcha-cy Softsign-cy Hardsign-cy Yeru-cy Dze-cy E-cy Ereversed-cy I-cy Yi-cy Iu-cy Ia-cy A-cy.ss01 Zhe-cy.ss01 Ka-cy.ss01 Em-cy.ss01 U-cy.ss01 Ushort-cy.ss01 Ha-cy.ss01 Ia-cy.ss01 ]; + +# Prefix: Languagesystems +# automatic +languagesystem DFLT dflt; + +languagesystem latn dflt; +languagesystem latn ROM; +languagesystem latn MOL; +languagesystem latn CAT; +languagesystem cyrl dflt; +languagesystem cyrl BGR; +languagesystem cyrl BSH; +languagesystem cyrl CHU; +languagesystem cyrl SRB; +languagesystem cyrl MKD; + +lookup liga_accent { + sub @accent by [grave grave grave grave]; +} liga_accent; +feature aalt { +# Access All Alternates + +#> feature + feature locl; + feature sups; + feature case; + feature lnum; + feature pnum; + feature tnum; + feature onum; + feature salt; + feature ss01; + feature hist; +#< feature +} aalt; +feature ccmp { +# automatic +lookup ccmp_Other_1 { + @Markscomb = [dieresis dotaccent grave acute hungarumlaut circumflex caron breve ring tilde macron]; + @MarkscombCase = [dieresis.case dotaccent.case grave.case acute.case hungarumlaut.case circumflex.case caron.case breve.case ring.case tilde.case macron.case]; + sub @Markscomb @Markscomb' by @MarkscombCase; + sub @cpsp @Markscomb' by @MarkscombCase; +} ccmp_Other_1; + +lookup ccmp_Other_2 { + sub @Markscomb' @MarkscombCase by @MarkscombCase; + sub @MarkscombCase @Markscomb' by @MarkscombCase; +} ccmp_Other_2; +} ccmp; + +feature locl { +# automatic + +script latn; + language ROM; + language MOL; + sub Scedilla by Scommaaccent; + sub scedilla by scommaaccent; + sub Tcedilla by Tcommaaccent; + sub tcedilla by tcommaaccent; + +script latn; + language CAT; + sub l' periodcentered' l by ldot; + sub L' periodcentered' L by Ldot; + +script cyrl; # Cyrillic + language SRB ; # Serbian + + lookup locl_SRB_MCD { + # GSUB lookup 20, type 11 (Single) + sub @loclSRB_def by @locl.SRB; + } locl_SRB_MCD; + + language MKD ; # Serbian + lookup locl_SRB_MCD; + + language BSH ; # Bashkir + sub [Gestrokecyr gestrokecyr Zetailcyr zetailcyr] by [Gestrokecyr.BSH gestrokecyr.BSH Zetailcyr.BSH zetailcyr.BSH]; + sub [Estailcyr estailcyr] by [Estailcyr.BSH estailcyr.BSH]; + + language CHU ; # Chuvash + sub [Estailcyr estailcyr] by [Estailcyr.CHU estailcyr.CHU]; + + language BGR ; # Bulgarian + sub @locl_def by @locl_BGR; + +} locl; + +feature sups { +# Superscript + +#> feature + sub one by onesuperior; + sub three by threesuperior; + sub two by twosuperior; +#< feature +} sups; +feature ordn { +# Ordinals + +#> feature + sub [zero one two three four five six seven eight nine] [A a]' by ordfeminine; + sub [zero one two three four five six seven eight nine] [O o]' by ordmasculine; + sub N o period by numero; +#< feature +} ordn; +feature case { +# Case Sensitive Forms + +#> feature + + sub @case_def by @case; + +#< feature +} case; +feature liga { +# Standard Ligatures + +#> feature +sub f f i by f_f_i; +sub f f l by f_f_l; +sub f f by f_f; +sub f i by fi; +sub f l by fl; +sub yi-cy yi-cy by uniE000; +sub hyphen greater by arrowright; +sub less hyphen by arrowleft; +sub backslash bar slash by arrowdown; +sub slash bar backslash by arrowup; + + lookup accent_2 { + sub E-cy @accent' lookup liga_accent; + sub I-cy @accent' lookup liga_accent; + sub Yi-cy @accent' lookup liga_accent; + sub A-cy @accent' lookup liga_accent; + sub Ie-cy @accent' lookup liga_accent; + sub Ii-cy @accent' lookup liga_accent; + sub O-cy @accent' lookup liga_accent; + sub U-cy @accent' lookup liga_accent; + sub Yeru-cy @accent' lookup liga_accent; + sub Ereversed-cy @accent' lookup liga_accent; + sub Iu-cy @accent' lookup liga_accent; + sub Ia-cy @accent' lookup liga_accent; + sub Io-cy @accent' lookup liga_accent; + sub Yatcyr @accent' lookup liga_accent; + + sub e-cy @accent' lookup liga_accent; + sub i-cy @accent' lookup liga_accent; + sub yi-cy @accent' lookup liga_accent; + sub a-cy @accent' lookup liga_accent; + sub ie-cy @accent' lookup liga_accent; + sub ii-cy @accent' lookup liga_accent; + sub o-cy @accent' lookup liga_accent; + sub u-cy @accent' lookup liga_accent; + sub yeru-cy @accent' lookup liga_accent; + sub ereversed-cy @accent' lookup liga_accent; + sub iu-cy @accent' lookup liga_accent; + sub ia-cy @accent' lookup liga_accent; + sub io-cy @accent' lookup liga_accent; + sub yatcyr @accent' lookup liga_accent; + } accent_2; + + lookup accent_3 { + sub E-cy grave by uniF45D; + sub I-cy grave by uniF45E; + sub Yi-cy grave by uniF45F; + sub A-cy grave by A-cy.accented; + sub Ie-cy grave by E-cy.accented; + sub Ii-cy grave by Ii-cy.accented; + sub O-cy grave by O-cy.accented; + sub U-cy grave by U-cy.accented; + sub Yeru-cy grave by Yeru-cy.accented; + sub Ereversed-cy grave by Ereversed-cy.accented; + sub Iu-cy grave by Iu-cy.accented; + sub Ia-cy grave by Ia-cy.accented; + sub Io-cy grave by Io-cy.accented; + sub Yatcyr grave by uniF478; + + sub e-cy grave by uniF475; + sub i-cy grave by uniF476; + sub yi-cy grave by uniF477; + sub a-cy grave by a-cy.accented; + sub ie-cy grave by e-cy.accented; + sub ii-cy grave by ii-cy.accented; + sub o-cy grave by o-cy.accented; + sub u-cy grave by u-cy.accented; + sub yeru-cy grave by yeru-cy.accented; + sub ereversed-cy grave by ereversed-cy.accented; + sub iu-cy grave by iu-cy.accented; + sub ia-cy grave by ia-cy.accented; + sub io-cy grave by io-cy.accented; + sub yatcyr grave by uniF479; + } accent_3; + +#< feature +} liga; +feature dlig { +# Discretionary Ligatures + +#> feature + +sub M a c P a w l o g o by uniE01A; +sub M P a w l o g o by uniE01A; +sub M P l o g o by uniE01A; +sub M A C P A W L O G O by uniE01A; +sub m a c p a w l o g o by uniE01A; +sub t r i d e n t by neptune; +sub t r y z u b by neptune; +sub u k r a i n e s i g n by neptune; +sub T R I D E N T by neptune; +sub T R Y Z U B by neptune; +sub U k r a i n e S i g n by neptune; +sub T r y z u b by neptune; +sub T r i d e n t by neptune; +sub Te-cy Er-cy Ii-cy Ze-cy U-cy Be-cy by neptune; + +#< feature +} dlig; +feature lnum { +# Lining Figures + +#> feature + sub eight.osf by eight.tf; + sub eight by eight.tf; + sub five.osf by five.tf; + sub five by five.tf; + sub four.osf by four.tf; + sub four by four.tf; + sub nine.osf by nine.tf; + sub nine by nine.tf; + sub one.osf by one.tf; + sub one by one.tf; + sub seven.osf by seven.tf; + sub seven by seven.tf; + sub six.osf by six.tf; + sub six by six.tf; + sub three.osf by three.tf; + sub three by three.tf; + sub two.osf by two.tf; + sub two by two.tf; + sub zero.osf by zero.tf; + sub zero by zero.tf; +#< feature +} lnum; +feature pnum { +# Proportional Figures + +#> feature + sub eight.tf by eight.osf; + sub eight by eight.osf; + sub five.tf by five.osf; + sub five by five.osf; + sub four.tf by four.osf; + sub four by four.osf; + sub nine.tf by nine.osf; + sub nine by nine.osf; + sub one.tf by one.osf; + sub one by one.osf; + sub seven.tf by seven.osf; + sub seven by seven.osf; + sub six.tf by six.osf; + sub six by six.osf; + sub three.tf by three.osf; + sub three by three.osf; + sub two.tf by two.osf; + sub two by two.osf; + sub zero.tf by zero.osf; + sub zero by zero.osf; +#< feature +} pnum; +feature tnum { +# Tabular Figures + +#> feature + sub eight by eight.tf; + sub eight.osf by eight.tf; + sub five by five.tf; + sub five.osf by five.tf; + sub four by four.tf; + sub four.osf by four.tf; + sub nine by nine.tf; + sub nine.osf by nine.tf; + sub one by one.tf; + sub one.osf by one.tf; + sub seven by seven.tf; + sub seven.osf by seven.tf; + sub six by six.tf; + sub six.osf by six.tf; + sub three by three.tf; + sub three.osf by three.tf; + sub two by two.tf; + sub two.osf by two.tf; + sub zero by zero.tf; + sub zero.osf by zero.tf; +#< feature +} tnum; +feature onum { +# Oldstyle Figures + +#> feature + sub eight by eight.osf; + sub eight.tf by eight.osf; + sub five by five.osf; + sub five.tf by five.osf; + sub four by four.osf; + sub four.tf by four.osf; + sub nine by nine.osf; + sub nine.tf by nine.osf; + sub one by one.osf; + sub one.tf by one.osf; + sub seven by seven.osf; + sub seven.tf by seven.osf; + sub six by six.osf; + sub six.tf by six.osf; + sub three by three.osf; + sub three.tf by three.osf; + sub two by two.osf; + sub two.tf by two.osf; + sub zero by zero.osf; + sub zero.tf by zero.osf; +#< feature +} onum; +feature salt { +# Stylistic Alternates + +#> feature + sub A from [A.ss01]; + sub A-cy from [A-cy.ss01]; + sub AE from [AE.ss01]; + sub Aacute from [Aacute.ss01]; + sub Abreve from [Abreve.ss01]; + sub Acircumflex from [Acircumflex.ss01]; + sub Adieresis from [Adieresis.ss01]; + sub Agrave from [Agrave.ss01]; + sub Amacron from [Amacron.ss01]; + sub Aogonek from [Aogonek.ss01]; + sub Aring from [Aring.ss01]; + sub Atilde from [Atilde.ss01]; + sub Em-cy from [Em-cy.ss01]; + sub Eng from [Eng.ss01]; + sub G from [G.ss01]; + sub Gacute from [Gacute.ss01]; + sub Gbreve from [Gbreve.ss01]; + sub Gcircumflex from [Gcircumflex.ss01]; + sub Gcommaaccent from [Gcommaaccent.ss01]; + sub Gdotaccent from [Gdotaccent.ss01]; + sub Ha-cy from [Ha-cy.ss01]; + sub Ia-cy from [Ia-cy.ss01]; + sub J from [J.ss01]; + sub Jcircumflex from [Jcircumflex.ss01]; + sub K from [K.ss01]; + sub Ka-cy from [Ka-cy.ss01]; + sub Kcommaaccent from [Kcommaaccent.ss01]; + sub M from [M.ss01]; + sub N from [N.ss01]; + sub Nacute from [Nacute.ss01]; + sub Ncaron from [Ncaron.ss01]; + sub Ncommaaccent from [Ncommaaccent.ss01]; + sub Ntilde from [Ntilde.ss01]; + sub Q from [Q.ss01]; + sub U-cy from [U-cy.ss01]; + sub Ushort-cy from [Ushort-cy.ss01]; + sub V from [V.ss01]; + sub W from [W.ss01]; + sub Wacute from [Wacute.ss01]; + sub Wcircumflex from [Wcircumflex.ss01]; + sub Wdieresis from [Wdieresis.ss01]; + sub Wgrave from [Wgrave.ss01]; + sub X from [X.ss01]; + sub Y from [Y.ss01]; + sub Yacute from [Yacute.ss01]; + sub Ycircumflex from [Ycircumflex.ss01]; + sub Ydieresis from [Ydieresis.ss01]; + sub Z from [Z.ss01]; + sub Zacute from [Zacute.ss01]; + sub Zcaron from [Zcaron.ss01]; + sub Zdotaccent from [Zdotaccent.ss01]; + sub Zhe-cy from [Zhe-cy.ss01]; + sub a from [a.ss01]; + sub a-cy from [a-cy.ss01]; + sub aacute from [aacute.ss01]; + sub abreve from [abreve.ss01]; + sub acircumflex from [acircumflex.ss01]; + sub adieresis from [adieresis.ss01]; + sub ae from [ae.ss01]; + sub agrave from [agrave.ss01]; + sub amacron from [amacron.ss01]; + sub aogonek from [aogonek.ss01]; + sub aring from [aring.ss01]; + sub arrowdown from [arrowdown.ss01]; + sub arrowleft from [arrowleft.ss01]; + sub arrowright from [arrowright.ss01]; + sub arrowup from [arrowup.ss01]; + sub atilde from [atilde.ss01]; + sub b from [b.ss01]; + sub caron from [caron.salt]; + sub commaaccentcomb from [commaaccentcomb.salt]; + sub d from [d.ss01]; + sub dcaron from [dcaron.ss01]; + sub dcroat from [dcroat.ss01]; + sub de-cy from [de-cy.ss01]; + sub e from [e.ss01]; + sub eacute from [eacute.ss01]; + sub ebreve from [ebreve.ss01]; + sub ecaron from [ecaron.ss01]; + sub ecircumflex from [ecircumflex.ss01]; + sub edieresis from [edieresis.ss01]; + sub edotaccent from [edotaccent.ss01]; + sub egrave from [egrave.ss01]; + sub el-cy from [el-cy.ss01]; + sub emacron from [emacron.ss01]; + sub eogonek from [eogonek.ss01]; + sub er-cy from [er-cy.ss01]; + sub f from [f.ss01]; + sub f_f from [f_f.ss01]; + sub f_f_i from [f_f_i.ss01]; + sub f_f_l from [f_f_l.ss01]; + sub fi from [fi.ss01]; + sub fl from [fl.ss01]; + sub g from [g.ss01]; + sub gacute from [gacute.ss01]; + sub gbreve from [gbreve.ss01]; + sub gcircumflex from [gcircumflex.ss01]; + sub gcommaaccent from [gcommaaccent.ss01]; + sub gdotaccent from [gdotaccent.ss01]; + sub germandbls from [germandbls.ss01]; + sub hardsign-cy from [hardsign-cy.ss01]; + sub ia-cy from [ia-cy.ss01]; + sub ie-cy from [ie-cy.ss01]; + sub io-cy from [io-cy.ss01]; + sub l from [l.ss01]; + sub lacute from [lacute.ss01]; + sub lcaron from [lcaron.ss01]; + sub lcommaaccent from [lcommaaccent.ss01]; + sub ldot from [ldot.ss01]; + sub ljecyr from [ljecyr.ss01]; + sub lslash from [lslash.ss01]; + sub njecyr from [njecyr.ss01]; + sub numero from [numero.ss01]; + sub oe from [oe.ss01]; + sub p from [p.ss01]; + sub q from [q.ss01]; + sub softsign-cy from [softsign-cy.ss01]; + sub t from [t.ss01]; + sub tbar from [tbar.ss01]; + sub tcaron from [tcaron.ss01]; + sub tcedilla from [tcedilla.ss01]; + sub tcommaaccent from [tcommaaccent.ss01]; + sub te-cy from [te-cy.ss01]; + sub uniE000 from [uniE000.alt]; + sub ve-cy from [ve-cy.ss01]; + sub yen from [yen.ss01]; + sub yeru-cy from [yeru-cy.ss01]; +#< feature +} salt; +feature ss03 { +# Stylistic Set 01–20 + +#> feature + featureNames { + name "Bulgarian forms"; + name 1 "Bulgarian forms"; + }; + + sub @locl_def by @locl_BGR; + +#< feature +} ss03; +feature ss04 { +# Stylistic Set 01–20 + +#> feature + featureNames { + name "Serbian/Macedonian forms"; + name 1 "Serbian/Macedonian forms"; + }; + + sub @loclSRB_def by @locl.SRB; + +#< feature +} ss04; +feature ss01 { +# Stylistic Set 01–20 + +#> feature + + featureNames { + name "Humanistic forms"; + name 1 "Humanistic forms"; + }; + + sub @ss01_def by @ss01; + +#< feature +} ss01; +feature ss05 { +# Stylistic Set 01–20 + +#> feature + + featureNames { + name "Ukrainian pictograms"; + name 1 "Ukrainian pictograms"; + }; + + sub @pics_def by @pics; + +#< feature +} ss05; +feature hist { +# Historical Forms + +#> feature + sub e-cy by e-cy.hist; + sub s by longs; +#< feature +} hist; +feature frac { +# Fractions + +#> feature +lookup frac_precomposed { + + sub one slash four by onequarter; + sub one slash two by onehalf; + sub three slash four by threequarters; + sub one fraction four by onequarter; + sub one fraction two by onehalf; + sub three fraction four by threequarters; +} frac_precomposed; +#< feature +} frac; +feature cpsp { +# Capital Spacing + +#> feature + + pos @cpsp <5 0 10 0>; + +#< feature +} cpsp; +feature dnom { +# Denominator + +#> feature + sub thousandscyr by thousandscyr.dnom; +#< feature +} dnom; diff --git a/sources/FixelText-Thin.ufo/fontinfo.plist b/sources/FixelText-Thin.ufo/fontinfo.plist new file mode 100644 index 00000000..c377b5d6 --- /dev/null +++ b/sources/FixelText-Thin.ufo/fontinfo.plist @@ -0,0 +1,207 @@ + + + + + ascender + 720 + capHeight + 700 + descender + -200 + familyName + Fixel Text + guidelines + + + angle + 0 + name + m + x + 0 + y + 198 + + + angle + 0 + name + m + x + 0 + y + 189 + + + italicAngle + -0 + openTypeGaspRangeRecords + + + rangeGaspBehavior + + 0 + 1 + 2 + 3 + + rangeMaxPPEM + 65535 + + + openTypeHeadCreated + 2023/09/05 09:25:08 + openTypeHeadFlags + + + openTypeHheaAscender + 720 + openTypeHheaCaretOffset + -0 + openTypeHheaDescender + -190 + openTypeHheaLineGap + 100 + openTypeNameDesigner + AlfaBravo + openTypeNameDesignerURL + https://alfabravo.design/ + openTypeNameManufacturer + Kyrylo Tkachov, Marchela Mozhyna, Serhii Makarenko, Maria Weinstein, Zakhar Kryvoshyya + + openTypeNameManufacturerURL + https://macpaw.com/ + openTypeNamePreferredFamilyName + Fixel Text + openTypeNamePreferredSubfamilyName + Thin + openTypeNameVersion + Version 1.200 + openTypeOS2CodePageRanges + + 0 + 1 + 2 + 4 + 7 + 29 + + openTypeOS2Panose + + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + + openTypeOS2Selection + + + openTypeOS2StrikeoutPosition + 300 + openTypeOS2StrikeoutSize + 50 + openTypeOS2SubscriptXOffset + -0 + openTypeOS2SubscriptXSize + 650 + openTypeOS2SubscriptYOffset + 75 + openTypeOS2SubscriptYSize + 600 + openTypeOS2SuperscriptXOffset + -0 + openTypeOS2SuperscriptXSize + 650 + openTypeOS2SuperscriptYOffset + 350 + openTypeOS2SuperscriptYSize + 600 + openTypeOS2Type + + 2 + + openTypeOS2TypoAscender + 720 + openTypeOS2TypoDescender + -200 + openTypeOS2TypoLineGap + 290 + openTypeOS2UnicodeRanges + + 0 + 1 + 2 + 9 + 31 + 33 + 60 + + openTypeOS2WeightClass + 100 + openTypeOS2WidthClass + 4 + openTypeOS2WinAscent + 750 + openTypeOS2WinDescent + 250 + postscriptBlueFuzz + 1 + postscriptBlueScale + 0.039625 + postscriptBlueShift + 7 + postscriptBlueValues + + -20 + 0 + + postscriptFontName + FixelText-Thin + postscriptForceBold + + postscriptFullName + Fixel Text Thin + postscriptIsFixedPitch + + postscriptStemSnapH + + 69 + 74 + 76 + 80 + 99 + + postscriptStemSnapV + + 74 + 80 + 93 + + postscriptUnderlinePosition + -100 + postscriptUnderlineThickness + 50 + postscriptWeightName + Thin + styleMapFamilyName + Fixel Text Thin + styleMapStyleName + regular + styleName + Thin + unitsPerEm + 1000 + versionMajor + 1 + versionMinor + 200 + xHeight + 520 + + diff --git a/sources/FixelText-Thin.ufo/glyphs/A_-cy.accented.glif b/sources/FixelText-Thin.ufo/glyphs/A_-cy.accented.glif new file mode 100644 index 00000000..71d45177 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/A_-cy.accented.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+acute.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/A_-cy.glif b/sources/FixelText-Thin.ufo/glyphs/A_-cy.glif new file mode 100644 index 00000000..3b8533fd --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/A_-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/A_-cy.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/A_-cy.ss01.glif new file mode 100644 index 00000000..2e589c36 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/A_-cy.ss01.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + com.fontlab.recipe + A + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/A_.glif b/sources/FixelText-Thin.ufo/glyphs/A_.glif new file mode 100644 index 00000000..29249563 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/A_.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/A_.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/A_.ss01.glif new file mode 100644 index 00000000..baf9f6ee --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/A_.ss01.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/A_E_.glif b/sources/FixelText-Thin.ufo/glyphs/A_E_.glif new file mode 100644 index 00000000..e0170483 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/A_E_.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + A + com.fontlab.metricsRight + E + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/A_E_.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/A_E_.ss01.glif new file mode 100644 index 00000000..2ce24dcc --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/A_E_.ss01.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + A.ss01 + com.fontlab.metricsRight + E + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/A_E_acute.glif b/sources/FixelText-Thin.ufo/glyphs/A_E_acute.glif new file mode 100644 index 00000000..9ae5daa3 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/A_E_acute.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + AE+acute.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/A_acute.glif b/sources/FixelText-Thin.ufo/glyphs/A_acute.glif new file mode 100644 index 00000000..d2b5f942 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/A_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+acute.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/A_acute.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/A_acute.ss01.glif new file mode 100644 index 00000000..94b73043 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/A_acute.ss01.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + A.ss01+acute.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/A_breve.glif b/sources/FixelText-Thin.ufo/glyphs/A_breve.glif new file mode 100644 index 00000000..5c084bc6 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/A_breve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+breve.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/A_breve.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/A_breve.ss01.glif new file mode 100644 index 00000000..704ed61b --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/A_breve.ss01.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + A.ss01+breve.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/A_brevecyr.glif b/sources/FixelText-Thin.ufo/glyphs/A_brevecyr.glif new file mode 100644 index 00000000..529337a3 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/A_brevecyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+breve.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/A_caron.glif b/sources/FixelText-Thin.ufo/glyphs/A_caron.glif new file mode 100644 index 00000000..fc053010 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/A_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+caron.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/A_circumflex.glif b/sources/FixelText-Thin.ufo/glyphs/A_circumflex.glif new file mode 100644 index 00000000..67016f6c --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/A_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+circumflex.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/A_circumflex.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/A_circumflex.ss01.glif new file mode 100644 index 00000000..4841a748 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/A_circumflex.ss01.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + A.ss01+circumflex.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/A_dieresis.glif b/sources/FixelText-Thin.ufo/glyphs/A_dieresis.glif new file mode 100644 index 00000000..7ee19495 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/A_dieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+dieresis.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/A_dieresis.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/A_dieresis.ss01.glif new file mode 100644 index 00000000..4824f8c6 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/A_dieresis.ss01.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + A.ss01+dieresis.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/A_dieresiscyr.glif b/sources/FixelText-Thin.ufo/glyphs/A_dieresiscyr.glif new file mode 100644 index 00000000..a7d948da --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/A_dieresiscyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/A_grave.glif b/sources/FixelText-Thin.ufo/glyphs/A_grave.glif new file mode 100644 index 00000000..064d0bc6 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/A_grave.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+grave.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/A_grave.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/A_grave.ss01.glif new file mode 100644 index 00000000..08e2bb19 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/A_grave.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A.ss01+grave.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/A_iecyr.glif b/sources/FixelText-Thin.ufo/glyphs/A_iecyr.glif new file mode 100644 index 00000000..f0a95fef --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/A_iecyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + AE + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/A_macron.glif b/sources/FixelText-Thin.ufo/glyphs/A_macron.glif new file mode 100644 index 00000000..5e6e30b1 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/A_macron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+macron.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/A_macron.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/A_macron.ss01.glif new file mode 100644 index 00000000..33deb469 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/A_macron.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A.ss01+macron.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/A_ogonek.glif b/sources/FixelText-Thin.ufo/glyphs/A_ogonek.glif new file mode 100644 index 00000000..f1a0bf94 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/A_ogonek.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+ogonek + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/A_ogonek.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/A_ogonek.ss01.glif new file mode 100644 index 00000000..a859d3b6 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/A_ogonek.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A.ss01+ogonek + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/A_ring.glif b/sources/FixelText-Thin.ufo/glyphs/A_ring.glif new file mode 100644 index 00000000..892d8937 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/A_ring.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+ring.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/A_ring.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/A_ring.ss01.glif new file mode 100644 index 00000000..939476ec --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/A_ring.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A.ss01+ring.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/A_tilde.glif b/sources/FixelText-Thin.ufo/glyphs/A_tilde.glif new file mode 100644 index 00000000..c371c680 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/A_tilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+tilde.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/A_tilde.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/A_tilde.ss01.glif new file mode 100644 index 00000000..eb9f0f0d --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/A_tilde.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A.ss01+tilde.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/B_.glif b/sources/FixelText-Thin.ufo/glyphs/B_.glif new file mode 100644 index 00000000..fff73cfc --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/B_.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/B_e-cy.glif b/sources/FixelText-Thin.ufo/glyphs/B_e-cy.glif new file mode 100644 index 00000000..a2b2313a --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/B_e-cy.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + B-10 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/C_.glif b/sources/FixelText-Thin.ufo/glyphs/C_.glif new file mode 100644 index 00000000..1bb06b1d --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/C_.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/C_R_.glif b/sources/FixelText-Thin.ufo/glyphs/C_R_.glif new file mode 100644 index 00000000..a38a285e --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/C_R_.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/C_acute.glif b/sources/FixelText-Thin.ufo/glyphs/C_acute.glif new file mode 100644 index 00000000..f4942499 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/C_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+acute.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/C_caron.glif b/sources/FixelText-Thin.ufo/glyphs/C_caron.glif new file mode 100644 index 00000000..7e4713be --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/C_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+caron.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/C_cedilla.glif b/sources/FixelText-Thin.ufo/glyphs/C_cedilla.glif new file mode 100644 index 00000000..e5dbba35 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/C_cedilla.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+cedilla + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/C_che-cy.glif b/sources/FixelText-Thin.ufo/glyphs/C_che-cy.glif new file mode 100644 index 00000000..2c093d06 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/C_che-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ч + com.fontlab.metricsRight + Ч + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/C_circumflex.glif b/sources/FixelText-Thin.ufo/glyphs/C_circumflex.glif new file mode 100644 index 00000000..cee6bfe0 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/C_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+circumflex.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/C_dotaccent.glif b/sources/FixelText-Thin.ufo/glyphs/C_dotaccent.glif new file mode 100644 index 00000000..9429827d --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/C_dotaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+dotaccent.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/C_he-cy.glif b/sources/FixelText-Thin.ufo/glyphs/C_he-cy.glif new file mode 100644 index 00000000..f3d309e5 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/C_he-cy.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/C_heabkhcyr.glif b/sources/FixelText-Thin.ufo/glyphs/C_heabkhcyr.glif new file mode 100644 index 00000000..ede5af10 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/C_heabkhcyr.glif @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + |Schwa + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/C_heabkhtailcyr.glif b/sources/FixelText-Thin.ufo/glyphs/C_heabkhtailcyr.glif new file mode 100644 index 00000000..84e66f8f --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/C_heabkhtailcyr.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Cheabkhcyr + com.fontlab.metricsRight + Cheabkhcyr + com.fontlab.recipe + Cheabkhcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/C_hedieresiscyr.glif b/sources/FixelText-Thin.ufo/glyphs/C_hedieresiscyr.glif new file mode 100644 index 00000000..89080810 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/C_hedieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Che-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/C_hekhakascyr.glif b/sources/FixelText-Thin.ufo/glyphs/C_hekhakascyr.glif new file mode 100644 index 00000000..da670946 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/C_hekhakascyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ч + com.fontlab.metricsRight + H + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/C_hetailcyr.glif b/sources/FixelText-Thin.ufo/glyphs/C_hetailcyr.glif new file mode 100644 index 00000000..de5e634b --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/C_hetailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ч + com.fontlab.metricsRight + Entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/C_hevertcyr.glif b/sources/FixelText-Thin.ufo/glyphs/C_hevertcyr.glif new file mode 100644 index 00000000..4ada2312 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/C_hevertcyr.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ч + com.fontlab.metricsRight + Н + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/C_rossedO_-cy.glif b/sources/FixelText-Thin.ufo/glyphs/C_rossedO_-cy.glif new file mode 100644 index 00000000..87ddb435 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/C_rossedO_-cy.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + com.fontlab.recipe + O + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/D_.glif b/sources/FixelText-Thin.ufo/glyphs/D_.glif new file mode 100644 index 00000000..c1fc9f63 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/D_.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/D_caron.glif b/sources/FixelText-Thin.ufo/glyphs/D_caron.glif new file mode 100644 index 00000000..4853cb53 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/D_caron.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + D+caron.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/D_checyr.glif b/sources/FixelText-Thin.ufo/glyphs/D_checyr.glif new file mode 100644 index 00000000..9f6d4601 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/D_checyr.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Д+10 + com.fontlab.metricsRight + Д + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/D_croat.glif b/sources/FixelText-Thin.ufo/glyphs/D_croat.glif new file mode 100644 index 00000000..6e975f68 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/D_croat.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + D + com.fontlab.recipe + Eth + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/D_e-cy.B_G_R_.glif b/sources/FixelText-Thin.ufo/glyphs/D_e-cy.B_G_R_.glif new file mode 100644 index 00000000..17524a14 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/D_e-cy.B_G_R_.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + l() + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/D_e-cy.glif b/sources/FixelText-Thin.ufo/glyphs/D_e-cy.glif new file mode 100644 index 00000000..a742e61e --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/D_e-cy.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/D_eS_oft-cy.glif b/sources/FixelText-Thin.ufo/glyphs/D_eS_oft-cy.glif new file mode 100644 index 00000000..e32711bd --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/D_eS_oft-cy.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Д + com.fontlab.metricsRight + Ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/D_ekomicyr.glif b/sources/FixelText-Thin.ufo/glyphs/D_ekomicyr.glif new file mode 100644 index 00000000..82933241 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/D_ekomicyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.metricsLeft + |P + com.fontlab.metricsRight + H + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/D_elta.glif b/sources/FixelText-Thin.ufo/glyphs/D_elta.glif new file mode 100644 index 00000000..cd921674 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/D_elta.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + A + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/D_jecyr.glif b/sources/FixelText-Thin.ufo/glyphs/D_jecyr.glif new file mode 100644 index 00000000..0685ed71 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/D_jecyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/D_jekomicyr.glif b/sources/FixelText-Thin.ufo/glyphs/D_jekomicyr.glif new file mode 100644 index 00000000..576ce2ed --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/D_jekomicyr.glif @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Dekomicyr + com.fontlab.metricsRight + Njekomicyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/D_jerv-cy.glif b/sources/FixelText-Thin.ufo/glyphs/D_jerv-cy.glif new file mode 100644 index 00000000..c1b072c3 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/D_jerv-cy.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + r() + com.fontlab.metricsRight + O + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/D_oubleO_-cy.glif b/sources/FixelText-Thin.ufo/glyphs/D_oubleO_-cy.glif new file mode 100644 index 00000000..c324a763 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/D_oubleO_-cy.glif @@ -0,0 +1,91 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + com.fontlab.recipe + O_O + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/D_we-cy.glif b/sources/FixelText-Thin.ufo/glyphs/D_we-cy.glif new file mode 100644 index 00000000..e1e03b9e --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/D_we-cy.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Д + com.fontlab.metricsRight + Д + com.fontlab.recipe + Д + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/D_ze-cy.glif b/sources/FixelText-Thin.ufo/glyphs/D_ze-cy.glif new file mode 100644 index 00000000..9a6daaf3 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/D_ze-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + S + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/D_zeR_eversed-cy.glif b/sources/FixelText-Thin.ufo/glyphs/D_zeR_eversed-cy.glif new file mode 100644 index 00000000..3784f0bb --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/D_zeR_eversed-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + S + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/D_zeabkhcyr.glif b/sources/FixelText-Thin.ufo/glyphs/D_zeabkhcyr.glif new file mode 100644 index 00000000..e6703dd8 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/D_zeabkhcyr.glif @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + З-10 + com.fontlab.metricsRight + З-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/D_zelo-cy.glif b/sources/FixelText-Thin.ufo/glyphs/D_zelo-cy.glif new file mode 100644 index 00000000..71391bed --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/D_zelo-cy.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/D_zhecyr.glif b/sources/FixelText-Thin.ufo/glyphs/D_zhecyr.glif new file mode 100644 index 00000000..dff5f2b2 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/D_zhecyr.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/D_zjekomicyr.glif b/sources/FixelText-Thin.ufo/glyphs/D_zjekomicyr.glif new file mode 100644 index 00000000..0268b783 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/D_zjekomicyr.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + З-10 + com.fontlab.metricsRight + Ц-5 + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/D_zwe-cy.glif b/sources/FixelText-Thin.ufo/glyphs/D_zwe-cy.glif new file mode 100644 index 00000000..24b43646 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/D_zwe-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + S + com.fontlab.metricsRight + S + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/D_zze-cy.glif b/sources/FixelText-Thin.ufo/glyphs/D_zze-cy.glif new file mode 100644 index 00000000..eee541aa --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/D_zze-cy.glif @@ -0,0 +1,84 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Д + com.fontlab.metricsRight + Д-20 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/D_zzhecyr.glif b/sources/FixelText-Thin.ufo/glyphs/D_zzhecyr.glif new file mode 100644 index 00000000..5d3d62e3 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/D_zzhecyr.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Д + com.fontlab.metricsRight + Ж + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/E_-cy.accented.glif b/sources/FixelText-Thin.ufo/glyphs/E_-cy.accented.glif new file mode 100644 index 00000000..49ad3f1a --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/E_-cy.accented.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+acute.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/E_-cy.glif b/sources/FixelText-Thin.ufo/glyphs/E_-cy.glif new file mode 100644 index 00000000..0575e73f --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/E_-cy.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + C + com.fontlab.metricsRight + C + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/E_.glif b/sources/FixelText-Thin.ufo/glyphs/E_.glif new file mode 100644 index 00000000..29f83d0d --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/E_.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + com.fontlab.metricsRight + F+10 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/E_acute.glif b/sources/FixelText-Thin.ufo/glyphs/E_acute.glif new file mode 100644 index 00000000..ce293314 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/E_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+acute.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/E_breve.glif b/sources/FixelText-Thin.ufo/glyphs/E_breve.glif new file mode 100644 index 00000000..0b456a58 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/E_breve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+breve.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/E_caron.glif b/sources/FixelText-Thin.ufo/glyphs/E_caron.glif new file mode 100644 index 00000000..0364e266 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/E_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+caron.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/E_circumflex.glif b/sources/FixelText-Thin.ufo/glyphs/E_circumflex.glif new file mode 100644 index 00000000..69a8a9a9 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/E_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+circumflex.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/E_dieresis.glif b/sources/FixelText-Thin.ufo/glyphs/E_dieresis.glif new file mode 100644 index 00000000..eb601a41 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/E_dieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+dieresiscase.alt + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/E_dotaccent.glif b/sources/FixelText-Thin.ufo/glyphs/E_dotaccent.glif new file mode 100644 index 00000000..b8bfe417 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/E_dotaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+dotaccent.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/E_f-cy.B_G_R_.glif b/sources/FixelText-Thin.ufo/glyphs/E_f-cy.B_G_R_.glif new file mode 100644 index 00000000..ce9bbcea --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/E_f-cy.B_G_R_.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/E_f-cy.glif b/sources/FixelText-Thin.ufo/glyphs/E_f-cy.glif new file mode 100644 index 00000000..d2a37cf2 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/E_f-cy.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/E_grave.glif b/sources/FixelText-Thin.ufo/glyphs/E_grave.glif new file mode 100644 index 00000000..e1826e1e --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/E_grave.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+grave.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/E_iotifiedcyr.glif b/sources/FixelText-Thin.ufo/glyphs/E_iotifiedcyr.glif new file mode 100644 index 00000000..e9e9924e --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/E_iotifiedcyr.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + C + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/E_l-cy.B_G_R_.glif b/sources/FixelText-Thin.ufo/glyphs/E_l-cy.B_G_R_.glif new file mode 100644 index 00000000..a4f3d3dd --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/E_l-cy.B_G_R_.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + A + com.fontlab.metricsRight + l() + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/E_l-cy.glif b/sources/FixelText-Thin.ufo/glyphs/E_l-cy.glif new file mode 100644 index 00000000..101d271b --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/E_l-cy.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/E_lS_oft-cy.glif b/sources/FixelText-Thin.ufo/glyphs/E_lS_oft-cy.glif new file mode 100644 index 00000000..98238e67 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/E_lS_oft-cy.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/E_lhookcyr.glif b/sources/FixelText-Thin.ufo/glyphs/E_lhookcyr.glif new file mode 100644 index 00000000..67b9d0bc --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/E_lhookcyr.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Л + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/E_lmiddlehookcyr.glif b/sources/FixelText-Thin.ufo/glyphs/E_lmiddlehookcyr.glif new file mode 100644 index 00000000..c966aac5 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/E_lmiddlehookcyr.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Shhacyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/E_lsharptailcyr.glif b/sources/FixelText-Thin.ufo/glyphs/E_lsharptailcyr.glif new file mode 100644 index 00000000..51dcddb8 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/E_lsharptailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Ensharptailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/E_lsmallcyr.glif b/sources/FixelText-Thin.ufo/glyphs/E_lsmallcyr.glif new file mode 100644 index 00000000..f32bdf38 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/E_lsmallcyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + el-cy.BGR + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/E_ltailcyr.glif b/sources/FixelText-Thin.ufo/glyphs/E_ltailcyr.glif new file mode 100644 index 00000000..81c0688b --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/E_ltailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/E_m-cy.glif b/sources/FixelText-Thin.ufo/glyphs/E_m-cy.glif new file mode 100644 index 00000000..f49d5fc8 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/E_m-cy.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + M + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/E_m-cy.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/E_m-cy.ss01.glif new file mode 100644 index 00000000..342b3be5 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/E_m-cy.ss01.glif @@ -0,0 +1,13 @@ + + + + + + + + + com.fontlab.recipe + M + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/E_mS_oft-cy.glif b/sources/FixelText-Thin.ufo/glyphs/E_mS_oft-cy.glif new file mode 100644 index 00000000..f91aef32 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/E_mS_oft-cy.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + M + com.fontlab.metricsRight + Ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/E_macron.glif b/sources/FixelText-Thin.ufo/glyphs/E_macron.glif new file mode 100644 index 00000000..34472f8a --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/E_macron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+macron.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/E_msharptailcyr.glif b/sources/FixelText-Thin.ufo/glyphs/E_msharptailcyr.glif new file mode 100644 index 00000000..ae463648 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/E_msharptailcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Н + com.fontlab.metricsRight + Ensharptailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/E_n-cy.glif b/sources/FixelText-Thin.ufo/glyphs/E_n-cy.glif new file mode 100644 index 00000000..70999676 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/E_n-cy.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + H + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/E_ng.glif b/sources/FixelText-Thin.ufo/glyphs/E_ng.glif new file mode 100644 index 00000000..7f16dd65 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/E_ng.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + N + com.fontlab.metricsRight + l() + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/E_ng.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/E_ng.ss01.glif new file mode 100644 index 00000000..d0177d69 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/E_ng.ss01.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + N.ss01 + com.fontlab.metricsRight + J.ss01 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/E_ngecyr.glif b/sources/FixelText-Thin.ufo/glyphs/E_ngecyr.glif new file mode 100644 index 00000000..e6d93c41 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/E_ngecyr.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/E_nhookcyr.glif b/sources/FixelText-Thin.ufo/glyphs/E_nhookcyr.glif new file mode 100644 index 00000000..0342f2d2 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/E_nhookcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/E_nhookleftcyr.glif b/sources/FixelText-Thin.ufo/glyphs/E_nhookleftcyr.glif new file mode 100644 index 00000000..cebd0c55 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/E_nhookleftcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + r()-159 + com.fontlab.metricsRight + H + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/E_nmiddlehookcyr.glif b/sources/FixelText-Thin.ufo/glyphs/E_nmiddlehookcyr.glif new file mode 100644 index 00000000..1c00efbf --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/E_nmiddlehookcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Shhacyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/E_nsharptailcyr.glif b/sources/FixelText-Thin.ufo/glyphs/E_nsharptailcyr.glif new file mode 100644 index 00000000..2e4fbdac --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/E_nsharptailcyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Н + com.fontlab.metricsRight + Д + com.fontlab.recipe + Entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/E_ntailcyr.glif b/sources/FixelText-Thin.ufo/glyphs/E_ntailcyr.glif new file mode 100644 index 00000000..0d7ba3db --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/E_ntailcyr.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Ц + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/E_ogonek.glif b/sources/FixelText-Thin.ufo/glyphs/E_ogonek.glif new file mode 100644 index 00000000..2adb4900 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/E_ogonek.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+ogonek + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/E_r-cy.glif b/sources/FixelText-Thin.ufo/glyphs/E_r-cy.glif new file mode 100644 index 00000000..e236d526 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/E_r-cy.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + P + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/E_reversed-cy.accented.glif b/sources/FixelText-Thin.ufo/glyphs/E_reversed-cy.accented.glif new file mode 100644 index 00000000..8b3b66da --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/E_reversed-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Э+acute.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/E_reversed-cy.glif b/sources/FixelText-Thin.ufo/glyphs/E_reversed-cy.glif new file mode 100644 index 00000000..15c9efb5 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/E_reversed-cy.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |C + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/E_reverseddieresiscyr.glif b/sources/FixelText-Thin.ufo/glyphs/E_reverseddieresiscyr.glif new file mode 100644 index 00000000..8ff01b09 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/E_reverseddieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ereversed-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/E_rtickcyr.glif b/sources/FixelText-Thin.ufo/glyphs/E_rtickcyr.glif new file mode 100644 index 00000000..ade8bb8c --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/E_rtickcyr.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + P + com.fontlab.metricsRight + P + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/E_s-cy.glif b/sources/FixelText-Thin.ufo/glyphs/E_s-cy.glif new file mode 100644 index 00000000..d95ae2b3 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/E_s-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/E_stailcyr.B_S_H_.glif b/sources/FixelText-Thin.ufo/glyphs/E_stailcyr.B_S_H_.glif new file mode 100644 index 00000000..4997c8e7 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/E_stailcyr.B_S_H_.glif @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + C + com.fontlab.metricsRight + C + com.fontlab.recipe + C + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/E_stailcyr.C_H_U_.glif b/sources/FixelText-Thin.ufo/glyphs/E_stailcyr.C_H_U_.glif new file mode 100644 index 00000000..0ef1af5e --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/E_stailcyr.C_H_U_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+cedilla.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/E_stailcyr.glif b/sources/FixelText-Thin.ufo/glyphs/E_stailcyr.glif new file mode 100644 index 00000000..829cfa88 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/E_stailcyr.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + С + com.fontlab.metricsRight + С + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/E_th.glif b/sources/FixelText-Thin.ufo/glyphs/E_th.glif new file mode 100644 index 00000000..a26fd2ec --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/E_th.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + D + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/F_.glif b/sources/FixelText-Thin.ufo/glyphs/F_.glif new file mode 100644 index 00000000..ade7dcf8 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/F_.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/F_itacyr.glif b/sources/FixelText-Thin.ufo/glyphs/F_itacyr.glif new file mode 100644 index 00000000..8319a7da --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/F_itacyr.glif @@ -0,0 +1,78 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + com.fontlab.recipe + Obarcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/G_.glif b/sources/FixelText-Thin.ufo/glyphs/G_.glif new file mode 100644 index 00000000..21a3021c --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/G_.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O+18 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/G_.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/G_.ss01.glif new file mode 100644 index 00000000..53ad540c --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/G_.ss01.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O+10 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/G_acute.glif b/sources/FixelText-Thin.ufo/glyphs/G_acute.glif new file mode 100644 index 00000000..07421ab1 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/G_acute.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + G+acute.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/G_acute.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/G_acute.ss01.glif new file mode 100644 index 00000000..dc303013 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/G_acute.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G.ss01+acute.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/G_breve.glif b/sources/FixelText-Thin.ufo/glyphs/G_breve.glif new file mode 100644 index 00000000..9ca3ada6 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/G_breve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G+breve.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/G_breve.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/G_breve.ss01.glif new file mode 100644 index 00000000..94aac0c6 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/G_breve.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G.ss01+breve.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/G_circumflex.glif b/sources/FixelText-Thin.ufo/glyphs/G_circumflex.glif new file mode 100644 index 00000000..8962900d --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/G_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G+circumflex.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/G_circumflex.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/G_circumflex.ss01.glif new file mode 100644 index 00000000..3be2b53a --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/G_circumflex.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G.ss01+circumflex.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/G_commaaccent.glif b/sources/FixelText-Thin.ufo/glyphs/G_commaaccent.glif new file mode 100644 index 00000000..1317ba05 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/G_commaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G+commaaccentcomb + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/G_commaaccent.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/G_commaaccent.ss01.glif new file mode 100644 index 00000000..56ee67e2 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/G_commaaccent.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G.ss01+commaaccentcomb + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/G_dotaccent.glif b/sources/FixelText-Thin.ufo/glyphs/G_dotaccent.glif new file mode 100644 index 00000000..536ffdb9 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/G_dotaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G+dotaccent.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/G_dotaccent.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/G_dotaccent.ss01.glif new file mode 100644 index 00000000..3c347e2f --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/G_dotaccent.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + G.ss01+dotaccent.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/G_e-cy.glif b/sources/FixelText-Thin.ufo/glyphs/G_e-cy.glif new file mode 100644 index 00000000..da964d44 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/G_e-cy.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + T + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/G_ehookcyr.glif b/sources/FixelText-Thin.ufo/glyphs/G_ehookcyr.glif new file mode 100644 index 00000000..62f935d7 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/G_ehookcyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Г + com.fontlab.metricsRight + Tshecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/G_ehookstrokecyr.glif b/sources/FixelText-Thin.ufo/glyphs/G_ehookstrokecyr.glif new file mode 100644 index 00000000..dcd4343c --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/G_ehookstrokecyr.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Gestrokecyr + com.fontlab.metricsRight + Gestrokecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/G_ermandbls.glif b/sources/FixelText-Thin.ufo/glyphs/G_ermandbls.glif new file mode 100644 index 00000000..c0944c7c --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/G_ermandbls.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + U + com.fontlab.metricsRight + B-5 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/G_estrokecyr.B_S_H_.glif b/sources/FixelText-Thin.ufo/glyphs/G_estrokecyr.B_S_H_.glif new file mode 100644 index 00000000..6da326c7 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/G_estrokecyr.B_S_H_.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + F + com.fontlab.metricsRight + Gestrokecyr + com.fontlab.recipe + Gestrokecyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/G_estrokecyr.glif b/sources/FixelText-Thin.ufo/glyphs/G_estrokecyr.glif new file mode 100644 index 00000000..7c917c6c --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/G_estrokecyr.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + Г + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/G_etailcyr.glif b/sources/FixelText-Thin.ufo/glyphs/G_etailcyr.glif new file mode 100644 index 00000000..9d00498d --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/G_etailcyr.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Г + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/G_heupturn-cy.glif b/sources/FixelText-Thin.ufo/glyphs/G_heupturn-cy.glif new file mode 100644 index 00000000..74ffd1ad --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/G_heupturn-cy.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Г + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/G_jecyr.glif b/sources/FixelText-Thin.ufo/glyphs/G_jecyr.glif new file mode 100644 index 00000000..4134b368 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/G_jecyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ge-cy+acute.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/H_.glif b/sources/FixelText-Thin.ufo/glyphs/H_.glif new file mode 100644 index 00000000..3005fdab --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/H_.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + com.fontlab.metricsRight + I + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/H_a-cy.glif b/sources/FixelText-Thin.ufo/glyphs/H_a-cy.glif new file mode 100644 index 00000000..052df24f --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/H_a-cy.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + X + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/H_a-cy.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/H_a-cy.ss01.glif new file mode 100644 index 00000000..5843c6f4 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/H_a-cy.ss01.glif @@ -0,0 +1,14 @@ + + + + + + + + + + com.fontlab.recipe + X + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/H_aabkhcyr.glif b/sources/FixelText-Thin.ufo/glyphs/H_aabkhcyr.glif new file mode 100644 index 00000000..bb5dcc7b --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/H_aabkhcyr.glif @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/H_ahookcyr.glif b/sources/FixelText-Thin.ufo/glyphs/H_ahookcyr.glif new file mode 100644 index 00000000..a76f943d --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/H_ahookcyr.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + X + com.fontlab.metricsRight + X + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/H_ardsign-cy.glif b/sources/FixelText-Thin.ufo/glyphs/H_ardsign-cy.glif new file mode 100644 index 00000000..00636991 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/H_ardsign-cy.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + Ь + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/H_astrokecyr.glif b/sources/FixelText-Thin.ufo/glyphs/H_astrokecyr.glif new file mode 100644 index 00000000..d2e8a433 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/H_astrokecyr.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + X + com.fontlab.metricsRight + X + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/H_bar.glif b/sources/FixelText-Thin.ufo/glyphs/H_bar.glif new file mode 100644 index 00000000..f3867898 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/H_bar.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + r() + com.fontlab.metricsRight + H + com.schriftgestaltung.Glyphs.rightMetricsKey + H + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/H_circumflex.glif b/sources/FixelText-Thin.ufo/glyphs/H_circumflex.glif new file mode 100644 index 00000000..653de104 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/H_circumflex.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + H+circumflex.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/H_we-cy.glif b/sources/FixelText-Thin.ufo/glyphs/H_we-cy.glif new file mode 100644 index 00000000..f9bf7ac5 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/H_we-cy.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Iota-cy + com.fontlab.metricsRight + Tshecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/I_-cy.glif b/sources/FixelText-Thin.ufo/glyphs/I_-cy.glif new file mode 100644 index 00000000..2497d53f --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/I_-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/I_.glif b/sources/FixelText-Thin.ufo/glyphs/I_.glif new file mode 100644 index 00000000..e9201f3f --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/I_.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/I_J_.glif b/sources/FixelText-Thin.ufo/glyphs/I_J_.glif new file mode 100644 index 00000000..f75b707a --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/I_J_.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + I_J + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/I_a-cy.accented.glif b/sources/FixelText-Thin.ufo/glyphs/I_a-cy.accented.glif new file mode 100644 index 00000000..c7b7350d --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/I_a-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Я+acute.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/I_a-cy.glif b/sources/FixelText-Thin.ufo/glyphs/I_a-cy.glif new file mode 100644 index 00000000..a68edf8d --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/I_a-cy.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |R+10 + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/I_a-cy.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/I_a-cy.ss01.glif new file mode 100644 index 00000000..16a74e7f --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/I_a-cy.ss01.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/I_acute.glif b/sources/FixelText-Thin.ufo/glyphs/I_acute.glif new file mode 100644 index 00000000..ee15142a --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/I_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+acute.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/I_breve.glif b/sources/FixelText-Thin.ufo/glyphs/I_breve.glif new file mode 100644 index 00000000..a4f857db --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/I_breve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+breve.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/I_circumflex.glif b/sources/FixelText-Thin.ufo/glyphs/I_circumflex.glif new file mode 100644 index 00000000..067755ea --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/I_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+circumflex.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/I_dieresis.glif b/sources/FixelText-Thin.ufo/glyphs/I_dieresis.glif new file mode 100644 index 00000000..9ce517a0 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/I_dieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+dieresiscase.alt + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/I_dieresiscyr.glif b/sources/FixelText-Thin.ufo/glyphs/I_dieresiscyr.glif new file mode 100644 index 00000000..7dc14c17 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/I_dieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ii-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/I_dotaccent.glif b/sources/FixelText-Thin.ufo/glyphs/I_dotaccent.glif new file mode 100644 index 00000000..680b80b7 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/I_dotaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+dotaccent.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/I_e-cy.glif b/sources/FixelText-Thin.ufo/glyphs/I_e-cy.glif new file mode 100644 index 00000000..f0ae46ac --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/I_e-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/I_ebrevecyr.glif b/sources/FixelText-Thin.ufo/glyphs/I_ebrevecyr.glif new file mode 100644 index 00000000..8b61b3f2 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/I_ebrevecyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+breve.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/I_egravecyr.glif b/sources/FixelText-Thin.ufo/glyphs/I_egravecyr.glif new file mode 100644 index 00000000..8fc5df7f --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/I_egravecyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+grave.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/I_grave.glif b/sources/FixelText-Thin.ufo/glyphs/I_grave.glif new file mode 100644 index 00000000..ae5f3258 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/I_grave.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+grave.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/I_gravecyr.glif b/sources/FixelText-Thin.ufo/glyphs/I_gravecyr.glif new file mode 100644 index 00000000..5c5854e1 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/I_gravecyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ii-cy+grave.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/I_i-cy.accented.glif b/sources/FixelText-Thin.ufo/glyphs/I_i-cy.accented.glif new file mode 100644 index 00000000..1face46d --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/I_i-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + И+acute.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/I_i-cy.glif b/sources/FixelText-Thin.ufo/glyphs/I_i-cy.glif new file mode 100644 index 00000000..9cf509d3 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/I_i-cy.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/I_ishort-cy.glif b/sources/FixelText-Thin.ufo/glyphs/I_ishort-cy.glif new file mode 100644 index 00000000..3da8173f --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/I_ishort-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + uni0418+breve.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/I_macron.glif b/sources/FixelText-Thin.ufo/glyphs/I_macron.glif new file mode 100644 index 00000000..7f20e036 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/I_macron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+macron.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/I_macroncyr.glif b/sources/FixelText-Thin.ufo/glyphs/I_macroncyr.glif new file mode 100644 index 00000000..c6ed0b2c --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/I_macroncyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ii-cy+macron.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/I_o-cy.accented.glif b/sources/FixelText-Thin.ufo/glyphs/I_o-cy.accented.glif new file mode 100644 index 00000000..af3a79b0 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/I_o-cy.accented.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + com.fontlab.recipe + E+dieresis.case+acute.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/I_o-cy.glif b/sources/FixelText-Thin.ufo/glyphs/I_o-cy.glif new file mode 100644 index 00000000..899b2be5 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/I_o-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Edieresis + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/I_ogonek.glif b/sources/FixelText-Thin.ufo/glyphs/I_ogonek.glif new file mode 100644 index 00000000..6b9dd67c --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/I_ogonek.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+ogonek + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/I_ota-cy.glif b/sources/FixelText-Thin.ufo/glyphs/I_ota-cy.glif new file mode 100644 index 00000000..10b7a292 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/I_ota-cy.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |J + com.fontlab.metricsRight + |J + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/I_otifiedA_-cy.glif b/sources/FixelText-Thin.ufo/glyphs/I_otifiedA_-cy.glif new file mode 100644 index 00000000..d46a74c6 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/I_otifiedA_-cy.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + com.fontlab.metricsRight + A + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/I_shortsharptailcyr.glif b/sources/FixelText-Thin.ufo/glyphs/I_shortsharptailcyr.glif new file mode 100644 index 00000000..db18ac5d --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/I_shortsharptailcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Й + com.fontlab.metricsRight + Ensharptailcyr + com.fontlab.recipe + Й + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/I_tilde.glif b/sources/FixelText-Thin.ufo/glyphs/I_tilde.glif new file mode 100644 index 00000000..2840d3d7 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/I_tilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I+tilde.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/I_u-cy.accented.glif b/sources/FixelText-Thin.ufo/glyphs/I_u-cy.accented.glif new file mode 100644 index 00000000..fb16fb75 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/I_u-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ю+acute.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/I_u-cy.glif b/sources/FixelText-Thin.ufo/glyphs/I_u-cy.glif new file mode 100644 index 00000000..aa886469 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/I_u-cy.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/I_zhitsacyr.glif b/sources/FixelText-Thin.ufo/glyphs/I_zhitsacyr.glif new file mode 100644 index 00000000..9e1688ce --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/I_zhitsacyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + V + com.fontlab.metricsRight + + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/I_zhitsagravedblcyr.glif b/sources/FixelText-Thin.ufo/glyphs/I_zhitsagravedblcyr.glif new file mode 100644 index 00000000..b5c4a731 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/I_zhitsagravedblcyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + com.fontlab.metricsLeft + Izhitsacyr + com.fontlab.metricsRight + Izhitsacyr + com.fontlab.recipe + Izhitsacyr+hungarumlaut.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/J_.glif b/sources/FixelText-Thin.ufo/glyphs/J_.glif new file mode 100644 index 00000000..e2f3e718 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/J_.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + U + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/J_.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/J_.ss01.glif new file mode 100644 index 00000000..b3f5d5a2 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/J_.ss01.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + U + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/J_circumflex.glif b/sources/FixelText-Thin.ufo/glyphs/J_circumflex.glif new file mode 100644 index 00000000..cf6c4a97 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/J_circumflex.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + J+circumflex.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/J_circumflex.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/J_circumflex.ss01.glif new file mode 100644 index 00000000..7d6a9152 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/J_circumflex.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + J.ss01+circumflex.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/J_ecyr.glif b/sources/FixelText-Thin.ufo/glyphs/J_ecyr.glif new file mode 100644 index 00000000..7df9a481 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/J_ecyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsLeft + J + com.fontlab.metricsRight + J + com.fontlab.recipe + J + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/K_.glif b/sources/FixelText-Thin.ufo/glyphs/K_.glif new file mode 100644 index 00000000..5055b419 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/K_.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/K_.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/K_.ss01.glif new file mode 100644 index 00000000..650b0d9c --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/K_.ss01.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/K_a-cy.glif b/sources/FixelText-Thin.ufo/glyphs/K_a-cy.glif new file mode 100644 index 00000000..13d23059 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/K_a-cy.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.recipe + K + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/K_a-cy.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/K_a-cy.ss01.glif new file mode 100644 index 00000000..8d67c69f --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/K_a-cy.ss01.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.recipe + K + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/K_aaleutcyr.glif b/sources/FixelText-Thin.ufo/glyphs/K_aaleutcyr.glif new file mode 100644 index 00000000..f95afa85 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/K_aaleutcyr.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + K + com.fontlab.metricsRight + K + com.fontlab.recipe + K + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/K_abashkcyr.glif b/sources/FixelText-Thin.ufo/glyphs/K_abashkcyr.glif new file mode 100644 index 00000000..87e97406 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/K_abashkcyr.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Hardsign-cy + com.fontlab.metricsRight + K + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/K_ahookcyr.glif b/sources/FixelText-Thin.ufo/glyphs/K_ahookcyr.glif new file mode 100644 index 00000000..25f9180b --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/K_ahookcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + K + com.fontlab.metricsRight + Djecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/K_astrokecyr.glif b/sources/FixelText-Thin.ufo/glyphs/K_astrokecyr.glif new file mode 100644 index 00000000..6657bcd8 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/K_astrokecyr.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Yatcyr + com.fontlab.metricsRight + K + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/K_atailcyr.glif b/sources/FixelText-Thin.ufo/glyphs/K_atailcyr.glif new file mode 100644 index 00000000..834134b9 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/K_atailcyr.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + К-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/K_averticalstrokecyr.glif b/sources/FixelText-Thin.ufo/glyphs/K_averticalstrokecyr.glif new file mode 100644 index 00000000..16ccbf49 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/K_averticalstrokecyr.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + K + com.fontlab.metricsRight + Ж + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/K_commaaccent.glif b/sources/FixelText-Thin.ufo/glyphs/K_commaaccent.glif new file mode 100644 index 00000000..a54f5362 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/K_commaaccent.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + K+commaaccentcomb + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/K_commaaccent.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/K_commaaccent.ss01.glif new file mode 100644 index 00000000..95e08c2e --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/K_commaaccent.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + K.ss01+commaaccentcomb + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/K_jecyr.glif b/sources/FixelText-Thin.ufo/glyphs/K_jecyr.glif new file mode 100644 index 00000000..b71eda00 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/K_jecyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ka-cy+acute.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/K_oppacyr.glif b/sources/FixelText-Thin.ufo/glyphs/K_oppacyr.glif new file mode 100644 index 00000000..268fc744 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/K_oppacyr.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + C-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/K_sicyr.glif b/sources/FixelText-Thin.ufo/glyphs/K_sicyr.glif new file mode 100644 index 00000000..8db92c2c --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/K_sicyr.glif @@ -0,0 +1,98 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + З-10 + com.fontlab.metricsRight + З + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/L_.glif b/sources/FixelText-Thin.ufo/glyphs/L_.glif new file mode 100644 index 00000000..2d5fd330 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/L_.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/L_acute.glif b/sources/FixelText-Thin.ufo/glyphs/L_acute.glif new file mode 100644 index 00000000..3f421f1f --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/L_acute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + L+acute.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/L_caron.glif b/sources/FixelText-Thin.ufo/glyphs/L_caron.glif new file mode 100644 index 00000000..b76162f0 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/L_caron.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + com.fontlab.recipe + L+caron.salt + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/L_commaaccent.glif b/sources/FixelText-Thin.ufo/glyphs/L_commaaccent.glif new file mode 100644 index 00000000..f68d709b --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/L_commaaccent.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + L+commaaccentcomb + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/L_dot.glif b/sources/FixelText-Thin.ufo/glyphs/L_dot.glif new file mode 100644 index 00000000..cfd06710 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/L_dot.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + com.fontlab.metricsRight + L + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/L_hacyr.glif b/sources/FixelText-Thin.ufo/glyphs/L_hacyr.glif new file mode 100644 index 00000000..4bb5d3a0 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/L_hacyr.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + X + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/L_jecyr.glif b/sources/FixelText-Thin.ufo/glyphs/L_jecyr.glif new file mode 100644 index 00000000..cef1a335 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/L_jecyr.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Ь + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/L_jekomicyr.glif b/sources/FixelText-Thin.ufo/glyphs/L_jekomicyr.glif new file mode 100644 index 00000000..73a38425 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/L_jekomicyr.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Л + com.fontlab.metricsRight + Njekomicyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/L_slash.glif b/sources/FixelText-Thin.ufo/glyphs/L_slash.glif new file mode 100644 index 00000000..06dd6938 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/L_slash.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + L-80 + com.fontlab.metricsRight + L + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/M_.glif b/sources/FixelText-Thin.ufo/glyphs/M_.glif new file mode 100644 index 00000000..527518a0 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/M_.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/M_.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/M_.ss01.glif new file mode 100644 index 00000000..2304d3a3 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/M_.ss01.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H-25 + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/N_.glif b/sources/FixelText-Thin.ufo/glyphs/N_.glif new file mode 100644 index 00000000..d12bd21a --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/N_.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/N_.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/N_.ss01.glif new file mode 100644 index 00000000..3fd7a89e --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/N_.ss01.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H-10 + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/N_U_L_L_.glif b/sources/FixelText-Thin.ufo/glyphs/N_U_L_L_.glif new file mode 100644 index 00000000..1ad177ae --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/N_U_L_L_.glif @@ -0,0 +1,4 @@ + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/N_acute.glif b/sources/FixelText-Thin.ufo/glyphs/N_acute.glif new file mode 100644 index 00000000..7a292ad2 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/N_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N+acute.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/N_acute.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/N_acute.ss01.glif new file mode 100644 index 00000000..4671db3d --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/N_acute.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N.ss01+acute.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/N_caron.glif b/sources/FixelText-Thin.ufo/glyphs/N_caron.glif new file mode 100644 index 00000000..8c404116 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/N_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N+caron.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/N_caron.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/N_caron.ss01.glif new file mode 100644 index 00000000..5bc78fb5 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/N_caron.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N.ss01+caron.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/N_commaaccent.glif b/sources/FixelText-Thin.ufo/glyphs/N_commaaccent.glif new file mode 100644 index 00000000..c5c8b3ec --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/N_commaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N+commaaccentcomb + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/N_commaaccent.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/N_commaaccent.ss01.glif new file mode 100644 index 00000000..e2ee3fde --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/N_commaaccent.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N.ss01+commaaccentcomb + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/N_jecyr.glif b/sources/FixelText-Thin.ufo/glyphs/N_jecyr.glif new file mode 100644 index 00000000..163c986e --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/N_jecyr.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Н + com.fontlab.metricsRight + Ь + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/N_jekomicyr.glif b/sources/FixelText-Thin.ufo/glyphs/N_jekomicyr.glif new file mode 100644 index 00000000..fddf7c90 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/N_jekomicyr.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + |u + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/N_tilde.glif b/sources/FixelText-Thin.ufo/glyphs/N_tilde.glif new file mode 100644 index 00000000..73f7b946 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/N_tilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N+tilde.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/N_tilde.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/N_tilde.ss01.glif new file mode 100644 index 00000000..2a6a9771 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/N_tilde.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + N.ss01+tilde.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/O_-cy.accented.glif b/sources/FixelText-Thin.ufo/glyphs/O_-cy.accented.glif new file mode 100644 index 00000000..8c5d9bc3 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/O_-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+acute.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/O_-cy.glif b/sources/FixelText-Thin.ufo/glyphs/O_-cy.glif new file mode 100644 index 00000000..d2364750 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/O_-cy.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/O_.glif b/sources/FixelText-Thin.ufo/glyphs/O_.glif new file mode 100644 index 00000000..effc98a8 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/O_.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/O_B_inocular-cy.glif b/sources/FixelText-Thin.ufo/glyphs/O_B_inocular-cy.glif new file mode 100644 index 00000000..390c670a --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/O_B_inocular-cy.glif @@ -0,0 +1,81 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/O_D_oubleM_onocular-cy.glif b/sources/FixelText-Thin.ufo/glyphs/O_D_oubleM_onocular-cy.glif new file mode 100644 index 00000000..49b1eb2c --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/O_D_oubleM_onocular-cy.glif @@ -0,0 +1,119 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + com.fontlab.recipe + DoubleO-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/O_E_.glif b/sources/FixelText-Thin.ufo/glyphs/O_E_.glif new file mode 100644 index 00000000..d93b0e9d --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/O_E_.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + E + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/O_M_onocular-cy.glif b/sources/FixelText-Thin.ufo/glyphs/O_M_onocular-cy.glif new file mode 100644 index 00000000..2e94de2b --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/O_M_onocular-cy.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/O_acute.glif b/sources/FixelText-Thin.ufo/glyphs/O_acute.glif new file mode 100644 index 00000000..8bf18500 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/O_acute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+acute.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/O_barcyr.glif b/sources/FixelText-Thin.ufo/glyphs/O_barcyr.glif new file mode 100644 index 00000000..894406fb --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/O_barcyr.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + r() + com.fontlab.metricsRight + O + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/O_bardieresiscyr.glif b/sources/FixelText-Thin.ufo/glyphs/O_bardieresiscyr.glif new file mode 100644 index 00000000..9806aee1 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/O_bardieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Obarcyr+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/O_breve.glif b/sources/FixelText-Thin.ufo/glyphs/O_breve.glif new file mode 100644 index 00000000..8e0ddb70 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/O_breve.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+breve.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/O_circumflex.glif b/sources/FixelText-Thin.ufo/glyphs/O_circumflex.glif new file mode 100644 index 00000000..e91fdfb7 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/O_circumflex.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+circumflex.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/O_dieresis.glif b/sources/FixelText-Thin.ufo/glyphs/O_dieresis.glif new file mode 100644 index 00000000..970f8e05 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/O_dieresis.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+dieresis.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/O_dieresiscyr.glif b/sources/FixelText-Thin.ufo/glyphs/O_dieresiscyr.glif new file mode 100644 index 00000000..a84ad36a --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/O_dieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/O_grave.glif b/sources/FixelText-Thin.ufo/glyphs/O_grave.glif new file mode 100644 index 00000000..e9d93886 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/O_grave.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+grave.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/O_hungarumlaut.glif b/sources/FixelText-Thin.ufo/glyphs/O_hungarumlaut.glif new file mode 100644 index 00000000..3aa54e06 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/O_hungarumlaut.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+hungarumlaut.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/O_macron.glif b/sources/FixelText-Thin.ufo/glyphs/O_macron.glif new file mode 100644 index 00000000..9afcc999 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/O_macron.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+macron.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/O_mega.glif b/sources/FixelText-Thin.ufo/glyphs/O_mega.glif new file mode 100644 index 00000000..4905cc62 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/O_mega.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O+10 + com.fontlab.metricsRight + O+10 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/O_megaB_road-cy.glif b/sources/FixelText-Thin.ufo/glyphs/O_megaB_road-cy.glif new file mode 100644 index 00000000..1eb96a79 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/O_megaB_road-cy.glif @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O+10 + com.fontlab.metricsRight + O+10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/O_megacyr.glif b/sources/FixelText-Thin.ufo/glyphs/O_megacyr.glif new file mode 100644 index 00000000..9400ed33 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/O_megacyr.glif @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O+10 + com.fontlab.metricsRight + O+10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/O_megaroundcyr.glif b/sources/FixelText-Thin.ufo/glyphs/O_megaroundcyr.glif new file mode 100644 index 00000000..69dd580f --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/O_megaroundcyr.glif @@ -0,0 +1,81 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/O_megatitlocyr.glif b/sources/FixelText-Thin.ufo/glyphs/O_megatitlocyr.glif new file mode 100644 index 00000000..a5a98dfb --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/O_megatitlocyr.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O+10 + com.fontlab.metricsRight + O+10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/O_slash.glif b/sources/FixelText-Thin.ufo/glyphs/O_slash.glif new file mode 100644 index 00000000..3fdd22d6 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/O_slash.glif @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/O_slashacute.glif b/sources/FixelText-Thin.ufo/glyphs/O_slashacute.glif new file mode 100644 index 00000000..062bb47c --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/O_slashacute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Oslash+acute.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/O_tcyr.glif b/sources/FixelText-Thin.ufo/glyphs/O_tcyr.glif new file mode 100644 index 00000000..e2bc1708 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/O_tcyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Omegacyr+uni2DEE.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/O_tilde.glif b/sources/FixelText-Thin.ufo/glyphs/O_tilde.glif new file mode 100644 index 00000000..91ae048b --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/O_tilde.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+tilde.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/P_.glif b/sources/FixelText-Thin.ufo/glyphs/P_.glif new file mode 100644 index 00000000..37eff4f0 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/P_.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/P_alochkacyr.glif b/sources/FixelText-Thin.ufo/glyphs/P_alochkacyr.glif new file mode 100644 index 00000000..e7d9c8fb --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/P_alochkacyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + I + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/P_e-cy.glif b/sources/FixelText-Thin.ufo/glyphs/P_e-cy.glif new file mode 100644 index 00000000..ca086ee5 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/P_e-cy.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/P_ehookcyr.glif b/sources/FixelText-Thin.ufo/glyphs/P_ehookcyr.glif new file mode 100644 index 00000000..4dae6fae --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/P_ehookcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + П + com.fontlab.metricsRight + Shhacyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/P_etailcyr.glif b/sources/FixelText-Thin.ufo/glyphs/P_etailcyr.glif new file mode 100644 index 00000000..bcdd0e21 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/P_etailcyr.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/P_sicyr.glif b/sources/FixelText-Thin.ufo/glyphs/P_sicyr.glif new file mode 100644 index 00000000..b0c69e27 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/P_sicyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + U-20 + com.fontlab.metricsRight + U-20 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/Q_.glif b/sources/FixelText-Thin.ufo/glyphs/Q_.glif new file mode 100644 index 00000000..318d0c07 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/Q_.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/Q_.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/Q_.ss01.glif new file mode 100644 index 00000000..dc484d4f --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/Q_.ss01.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/Q_acyr.glif b/sources/FixelText-Thin.ufo/glyphs/Q_acyr.glif new file mode 100644 index 00000000..eb05788a --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/Q_acyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Q + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/R_.glif b/sources/FixelText-Thin.ufo/glyphs/R_.glif new file mode 100644 index 00000000..a2d57bae --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/R_.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/R_acute.glif b/sources/FixelText-Thin.ufo/glyphs/R_acute.glif new file mode 100644 index 00000000..d8f10e8d --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/R_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + R+acute.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/R_caron.glif b/sources/FixelText-Thin.ufo/glyphs/R_caron.glif new file mode 100644 index 00000000..a5e3fa96 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/R_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + R+caron.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/R_commaaccent.glif b/sources/FixelText-Thin.ufo/glyphs/R_commaaccent.glif new file mode 100644 index 00000000..e5f973b3 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/R_commaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + R+commaaccentcomb + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/R_eversedzecyr.glif b/sources/FixelText-Thin.ufo/glyphs/R_eversedzecyr.glif new file mode 100644 index 00000000..0483a7f3 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/R_eversedzecyr.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + + com.fontlab.metricsRight + + com.fontlab.recipe + З + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/R_hacyr.glif b/sources/FixelText-Thin.ufo/glyphs/R_hacyr.glif new file mode 100644 index 00000000..045f1c92 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/R_hacyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + P + com.fontlab.metricsRight + X + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/S_.glif b/sources/FixelText-Thin.ufo/glyphs/S_.glif new file mode 100644 index 00000000..c4eb7490 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/S_.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/S_acute.glif b/sources/FixelText-Thin.ufo/glyphs/S_acute.glif new file mode 100644 index 00000000..b41e0915 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/S_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + S+acute.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/S_caron.glif b/sources/FixelText-Thin.ufo/glyphs/S_caron.glif new file mode 100644 index 00000000..6fe78566 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/S_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + S+caron.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/S_cedilla.glif b/sources/FixelText-Thin.ufo/glyphs/S_cedilla.glif new file mode 100644 index 00000000..cf10810c --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/S_cedilla.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + S+cedilla + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/S_chwa.glif b/sources/FixelText-Thin.ufo/glyphs/S_chwa.glif new file mode 100644 index 00000000..f129acd4 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/S_chwa.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Schwacyr + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/S_chwacyr.glif b/sources/FixelText-Thin.ufo/glyphs/S_chwacyr.glif new file mode 100644 index 00000000..e0621e1f --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/S_chwacyr.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O-10 + com.fontlab.metricsRight + O + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/S_chwadieresiscyr.glif b/sources/FixelText-Thin.ufo/glyphs/S_chwadieresiscyr.glif new file mode 100644 index 00000000..858e936b --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/S_chwadieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Schwacyr+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/S_circumflex.glif b/sources/FixelText-Thin.ufo/glyphs/S_circumflex.glif new file mode 100644 index 00000000..433ba744 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/S_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + S+circumflex.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/S_commaaccent.glif b/sources/FixelText-Thin.ufo/glyphs/S_commaaccent.glif new file mode 100644 index 00000000..a820f843 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/S_commaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + S+commaaccentcomb + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/S_emisoftcyr.glif b/sources/FixelText-Thin.ufo/glyphs/S_emisoftcyr.glif new file mode 100644 index 00000000..f3630566 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/S_emisoftcyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Yat + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/S_ha-cy.glif b/sources/FixelText-Thin.ufo/glyphs/S_ha-cy.glif new file mode 100644 index 00000000..e9cc4a9d --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/S_ha-cy.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/S_hcha-cy.glif b/sources/FixelText-Thin.ufo/glyphs/S_hcha-cy.glif new file mode 100644 index 00000000..b7e722d8 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/S_hcha-cy.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Д + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/S_hhacyr.glif b/sources/FixelText-Thin.ufo/glyphs/S_hhacyr.glif new file mode 100644 index 00000000..77b5bf69 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/S_hhacyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.metricsLeft + Н + com.fontlab.metricsRight + Tshecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/S_hhatailcyr.glif b/sources/FixelText-Thin.ufo/glyphs/S_hhatailcyr.glif new file mode 100644 index 00000000..1721b2ac --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/S_hhatailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/S_hwe-cy.glif b/sources/FixelText-Thin.ufo/glyphs/S_hwe-cy.glif new file mode 100644 index 00000000..8ad4a3d1 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/S_hwe-cy.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Щ + com.fontlab.metricsRight + Щ-20 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/S_jekomicyr.glif b/sources/FixelText-Thin.ufo/glyphs/S_jekomicyr.glif new file mode 100644 index 00000000..3d665c28 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/S_jekomicyr.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + |Schwa + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/S_oftsign-cy.glif b/sources/FixelText-Thin.ufo/glyphs/S_oftsign-cy.glif new file mode 100644 index 00000000..66ab78f4 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/S_oftsign-cy.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + P + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/T_.glif b/sources/FixelText-Thin.ufo/glyphs/T_.glif new file mode 100644 index 00000000..e65950c2 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/T_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/T_bar.glif b/sources/FixelText-Thin.ufo/glyphs/T_bar.glif new file mode 100644 index 00000000..29169ec2 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/T_bar.glif @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/T_caron.glif b/sources/FixelText-Thin.ufo/glyphs/T_caron.glif new file mode 100644 index 00000000..0915ffc1 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/T_caron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + T+caron.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/T_cedilla.glif b/sources/FixelText-Thin.ufo/glyphs/T_cedilla.glif new file mode 100644 index 00000000..ade5b1ed --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/T_cedilla.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + T+cedilla + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/T_che-cy.glif b/sources/FixelText-Thin.ufo/glyphs/T_che-cy.glif new file mode 100644 index 00000000..14cff66e --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/T_che-cy.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Tetsecyr-20 + com.fontlab.metricsRight + Ч + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/T_commaaccent.glif b/sources/FixelText-Thin.ufo/glyphs/T_commaaccent.glif new file mode 100644 index 00000000..be6e1736 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/T_commaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + T+commaaccentcomb + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/T_e-cy.glif b/sources/FixelText-Thin.ufo/glyphs/T_e-cy.glif new file mode 100644 index 00000000..110f47c1 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/T_e-cy.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + com.fontlab.recipe + T + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/T_eW_ithM_iddleH_ook-cy.glif b/sources/FixelText-Thin.ufo/glyphs/T_eW_ithM_iddleH_ook-cy.glif new file mode 100644 index 00000000..7a481943 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/T_eW_ithM_iddleH_ook-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Djecyr + com.fontlab.metricsRight + Gehookcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/T_etailcyr.glif b/sources/FixelText-Thin.ufo/glyphs/T_etailcyr.glif new file mode 100644 index 00000000..c52bc1a4 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/T_etailcyr.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/T_etsecyr.glif b/sources/FixelText-Thin.ufo/glyphs/T_etsecyr.glif new file mode 100644 index 00000000..14262817 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/T_etsecyr.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Tshecyr + com.fontlab.metricsRight + Ц + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/T_horn.glif b/sources/FixelText-Thin.ufo/glyphs/T_horn.glif new file mode 100644 index 00000000..56c4b500 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/T_horn.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + P + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/T_jekomicyr.glif b/sources/FixelText-Thin.ufo/glyphs/T_jekomicyr.glif new file mode 100644 index 00000000..22d9c9aa --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/T_jekomicyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + Njekomicyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/T_se-cy.glif b/sources/FixelText-Thin.ufo/glyphs/T_se-cy.glif new file mode 100644 index 00000000..5194bdce --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/T_se-cy.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Д + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/T_seR_eversed-cy.glif b/sources/FixelText-Thin.ufo/glyphs/T_seR_eversed-cy.glif new file mode 100644 index 00000000..d95c1b71 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/T_seR_eversed-cy.glif @@ -0,0 +1,20 @@ + + + + + + + + + + com.fontlab.metricsLeft + + com.fontlab.metricsRight + H + com.fontlab.recipe + Ц + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/T_shecyr.glif b/sources/FixelText-Thin.ufo/glyphs/T_shecyr.glif new file mode 100644 index 00000000..c725f30d --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/T_shecyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + n + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/T_sse-cy.glif b/sources/FixelText-Thin.ufo/glyphs/T_sse-cy.glif new file mode 100644 index 00000000..8c777708 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/T_sse-cy.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + T + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/T_swe-cy.glif b/sources/FixelText-Thin.ufo/glyphs/T_swe-cy.glif new file mode 100644 index 00000000..96a85f01 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/T_swe-cy.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + Shwe-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/T_we-cy.glif b/sources/FixelText-Thin.ufo/glyphs/T_we-cy.glif new file mode 100644 index 00000000..72a5e6f7 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/T_we-cy.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + T + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/U_-cy.accented.glif b/sources/FixelText-Thin.ufo/glyphs/U_-cy.accented.glif new file mode 100644 index 00000000..48b4b501 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/U_-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + У+acute.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/U_-cy.glif b/sources/FixelText-Thin.ufo/glyphs/U_-cy.glif new file mode 100644 index 00000000..f08bc243 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/U_-cy.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Y+10 + com.fontlab.metricsRight + Y+5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/U_-cy.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/U_-cy.ss01.glif new file mode 100644 index 00000000..0083e783 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/U_-cy.ss01.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/U_.glif b/sources/FixelText-Thin.ufo/glyphs/U_.glif new file mode 100644 index 00000000..e89dbed4 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/U_.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H-10 + com.fontlab.metricsRight + H-10 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/U_acute.glif b/sources/FixelText-Thin.ufo/glyphs/U_acute.glif new file mode 100644 index 00000000..1d9cefb6 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/U_acute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+acute.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/U_acutedblcyr.glif b/sources/FixelText-Thin.ufo/glyphs/U_acutedblcyr.glif new file mode 100644 index 00000000..111a3009 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/U_acutedblcyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U-cy+hungarumlaut.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/U_breve.glif b/sources/FixelText-Thin.ufo/glyphs/U_breve.glif new file mode 100644 index 00000000..1818fdd5 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/U_breve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+breve.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/U_circumflex.glif b/sources/FixelText-Thin.ufo/glyphs/U_circumflex.glif new file mode 100644 index 00000000..62691a21 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/U_circumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+circumflex.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/U_dieresis.glif b/sources/FixelText-Thin.ufo/glyphs/U_dieresis.glif new file mode 100644 index 00000000..fa367bdf --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/U_dieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+dieresis.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/U_dieresiscyr.glif b/sources/FixelText-Thin.ufo/glyphs/U_dieresiscyr.glif new file mode 100644 index 00000000..a06add2b --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/U_dieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/U_grave.glif b/sources/FixelText-Thin.ufo/glyphs/U_grave.glif new file mode 100644 index 00000000..b348370e --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/U_grave.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+grave.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/U_hungarumlaut.glif b/sources/FixelText-Thin.ufo/glyphs/U_hungarumlaut.glif new file mode 100644 index 00000000..6d9e4e65 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/U_hungarumlaut.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+hungarumlaut.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/U_kM_onograph-cy.glif b/sources/FixelText-Thin.ufo/glyphs/U_kM_onograph-cy.glif new file mode 100644 index 00000000..8bd1b1f9 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/U_kM_onograph-cy.glif @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/U_kcyr.glif b/sources/FixelText-Thin.ufo/glyphs/U_kcyr.glif new file mode 100644 index 00000000..1cb98242 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/U_kcyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + y + com.fontlab.recipe + О_у + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/U_macron.glif b/sources/FixelText-Thin.ufo/glyphs/U_macron.glif new file mode 100644 index 00000000..a577727f --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/U_macron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+macron.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/U_macroncyr.glif b/sources/FixelText-Thin.ufo/glyphs/U_macroncyr.glif new file mode 100644 index 00000000..ea4842ac --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/U_macroncyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U-cy+macron.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/U_ogonek.glif b/sources/FixelText-Thin.ufo/glyphs/U_ogonek.glif new file mode 100644 index 00000000..8d1e2a39 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/U_ogonek.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + U+ogonek + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/U_ring.glif b/sources/FixelText-Thin.ufo/glyphs/U_ring.glif new file mode 100644 index 00000000..2ad5dd29 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/U_ring.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+ring.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/U_short-cy.glif b/sources/FixelText-Thin.ufo/glyphs/U_short-cy.glif new file mode 100644 index 00000000..4227f4fa --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/U_short-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ucyr+breve.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/U_short-cy.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/U_short-cy.ss01.glif new file mode 100644 index 00000000..4638f5fd --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/U_short-cy.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ucyr.ss01+breve.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/U_straightcyr.glif b/sources/FixelText-Thin.ufo/glyphs/U_straightcyr.glif new file mode 100644 index 00000000..7b778edc --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/U_straightcyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsRight + Y + com.fontlab.recipe + Y + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/U_straightstrokecyr.glif b/sources/FixelText-Thin.ufo/glyphs/U_straightstrokecyr.glif new file mode 100644 index 00000000..ed053da8 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/U_straightstrokecyr.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/U_tilde.glif b/sources/FixelText-Thin.ufo/glyphs/U_tilde.glif new file mode 100644 index 00000000..6511ded6 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/U_tilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + U+tilde.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/V_.glif b/sources/FixelText-Thin.ufo/glyphs/V_.glif new file mode 100644 index 00000000..c125e4f4 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/V_.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/V_.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/V_.ss01.glif new file mode 100644 index 00000000..06ea64f0 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/V_.ss01.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/V_e-cy.glif b/sources/FixelText-Thin.ufo/glyphs/V_e-cy.glif new file mode 100644 index 00000000..40b87d05 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/V_e-cy.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + B + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/W_.glif b/sources/FixelText-Thin.ufo/glyphs/W_.glif new file mode 100644 index 00000000..a2ce6828 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/W_.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/W_.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/W_.ss01.glif new file mode 100644 index 00000000..45895ae8 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/W_.ss01.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |A + com.fontlab.metricsRight + |A + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/W_acute.glif b/sources/FixelText-Thin.ufo/glyphs/W_acute.glif new file mode 100644 index 00000000..96236946 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/W_acute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W+acute.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/W_acute.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/W_acute.ss01.glif new file mode 100644 index 00000000..0ed680fb --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/W_acute.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W.ss01+acute.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/W_circumflex.glif b/sources/FixelText-Thin.ufo/glyphs/W_circumflex.glif new file mode 100644 index 00000000..7d38f347 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/W_circumflex.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W+circumflex.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/W_circumflex.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/W_circumflex.ss01.glif new file mode 100644 index 00000000..378c0ea1 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/W_circumflex.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W.ss01+circumflex.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/W_dieresis.glif b/sources/FixelText-Thin.ufo/glyphs/W_dieresis.glif new file mode 100644 index 00000000..af8127f0 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/W_dieresis.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + W+dieresis.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/W_dieresis.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/W_dieresis.ss01.glif new file mode 100644 index 00000000..f2b3caa7 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/W_dieresis.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W.ss01+dieresis.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/W_ecyr.glif b/sources/FixelText-Thin.ufo/glyphs/W_ecyr.glif new file mode 100644 index 00000000..6d5b22a5 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/W_ecyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/W_grave.glif b/sources/FixelText-Thin.ufo/glyphs/W_grave.glif new file mode 100644 index 00000000..476a87a6 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/W_grave.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W+grave.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/W_grave.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/W_grave.ss01.glif new file mode 100644 index 00000000..1f798fa1 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/W_grave.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + W.ss01+grave.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/X_.glif b/sources/FixelText-Thin.ufo/glyphs/X_.glif new file mode 100644 index 00000000..4eac5790 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/X_.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/X_.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/X_.ss01.glif new file mode 100644 index 00000000..7d19766e --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/X_.ss01.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/X_atailcyr.glif b/sources/FixelText-Thin.ufo/glyphs/X_atailcyr.glif new file mode 100644 index 00000000..e60698b1 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/X_atailcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + X + com.fontlab.metricsRight + Katailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/Y_.glif b/sources/FixelText-Thin.ufo/glyphs/Y_.glif new file mode 100644 index 00000000..1727c077 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/Y_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/Y_.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/Y_.ss01.glif new file mode 100644 index 00000000..5aab7cf1 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/Y_.ss01.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/Y_acute.glif b/sources/FixelText-Thin.ufo/glyphs/Y_acute.glif new file mode 100644 index 00000000..12b8f1f1 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/Y_acute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y+acute.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/Y_acute.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/Y_acute.ss01.glif new file mode 100644 index 00000000..2c0878bd --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/Y_acute.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y.ss01+acute.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/Y_aecyr.glif b/sources/FixelText-Thin.ufo/glyphs/Y_aecyr.glif new file mode 100644 index 00000000..bd4f521e --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/Y_aecyr.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Я + com.fontlab.metricsRight + E + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/Y_atI_otified-cy.glif b/sources/FixelText-Thin.ufo/glyphs/Y_atI_otified-cy.glif new file mode 100644 index 00000000..2e6389fe --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/Y_atI_otified-cy.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + I + com.fontlab.metricsRight + Yatcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/Y_atcyr.glif b/sources/FixelText-Thin.ufo/glyphs/Y_atcyr.glif new file mode 100644 index 00000000..8c7dadf8 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/Y_atcyr.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Т + com.fontlab.metricsRight + Ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/Y_circumflex.glif b/sources/FixelText-Thin.ufo/glyphs/Y_circumflex.glif new file mode 100644 index 00000000..e3b59f0e --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/Y_circumflex.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y+circumflex.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/Y_circumflex.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/Y_circumflex.ss01.glif new file mode 100644 index 00000000..f96ad464 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/Y_circumflex.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y.ss01+circumflex.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/Y_dieresis.glif b/sources/FixelText-Thin.ufo/glyphs/Y_dieresis.glif new file mode 100644 index 00000000..ef212395 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/Y_dieresis.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y+dieresis.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/Y_dieresis.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/Y_dieresis.ss01.glif new file mode 100644 index 00000000..77d60327 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/Y_dieresis.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y.ss01+dieresis.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/Y_erN_eutral-cy.glif b/sources/FixelText-Thin.ufo/glyphs/Y_erN_eutral-cy.glif new file mode 100644 index 00000000..9dd70a1e --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/Y_erN_eutral-cy.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Hardsign-cy + com.fontlab.metricsRight + Ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/Y_eru-cy.accented.glif b/sources/FixelText-Thin.ufo/glyphs/Y_eru-cy.accented.glif new file mode 100644 index 00000000..052cb069 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/Y_eru-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ы+acute.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/Y_eru-cy.glif b/sources/FixelText-Thin.ufo/glyphs/Y_eru-cy.glif new file mode 100644 index 00000000..8eb5f935 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/Y_eru-cy.glif @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/Y_eru-cymacron.glif b/sources/FixelText-Thin.ufo/glyphs/Y_eru-cymacron.glif new file mode 100644 index 00000000..84974a7d --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/Y_eru-cymacron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ы+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/Y_eruB_ackY_er-cy.glif b/sources/FixelText-Thin.ufo/glyphs/Y_eruB_ackY_er-cy.glif new file mode 100644 index 00000000..0c86e9a9 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/Y_eruB_ackY_er-cy.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Hardsign + com.fontlab.metricsRight + I + com.fontlab.recipe + Hardsign-cy_I + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/Y_i-cy.glif b/sources/FixelText-Thin.ufo/glyphs/Y_i-cy.glif new file mode 100644 index 00000000..af7c755f --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/Y_i-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Idieresis + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/Y_longdieresiscyr.glif b/sources/FixelText-Thin.ufo/glyphs/Y_longdieresiscyr.glif new file mode 100644 index 00000000..f68092ff --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/Y_longdieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Yeru-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/Y_n-cy.glif b/sources/FixelText-Thin.ufo/glyphs/Y_n-cy.glif new file mode 100644 index 00000000..4c157696 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/Y_n-cy.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |Izhitsa + com.fontlab.metricsRight + |Izhitsa + com.fontlab.recipe + Izhitsa + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/Y_uR_eversed-cy.glif b/sources/FixelText-Thin.ufo/glyphs/Y_uR_eversed-cy.glif new file mode 100644 index 00000000..746b4b5d --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/Y_uR_eversed-cy.glif @@ -0,0 +1,20 @@ + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + H + com.fontlab.recipe + Ю + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/Y_usB_lended-cy.glif b/sources/FixelText-Thin.ufo/glyphs/Y_usB_lended-cy.glif new file mode 100644 index 00000000..0dfe9966 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/Y_usB_lended-cy.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Yusbigcyr + com.fontlab.metricsRight + Yusbigcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/Y_usC_losedlittle-cy.glif b/sources/FixelText-Thin.ufo/glyphs/Y_usC_losedlittle-cy.glif new file mode 100644 index 00000000..152b0a9f --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/Y_usC_losedlittle-cy.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + A + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/Y_usbigcyr.glif b/sources/FixelText-Thin.ufo/glyphs/Y_usbigcyr.glif new file mode 100644 index 00000000..97ad31e6 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/Y_usbigcyr.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ж + com.fontlab.metricsRight + Ж + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/Y_usbigiotifiedcyr.glif b/sources/FixelText-Thin.ufo/glyphs/Y_usbigiotifiedcyr.glif new file mode 100644 index 00000000..e99d91cc --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/Y_usbigiotifiedcyr.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + Ж + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/Y_usiotifiedC_losedL_ittle-cy.glif b/sources/FixelText-Thin.ufo/glyphs/Y_usiotifiedC_losedL_ittle-cy.glif new file mode 100644 index 00000000..6e358c66 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/Y_usiotifiedC_losedL_ittle-cy.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + A + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/Y_uslittlecyr.glif b/sources/FixelText-Thin.ufo/glyphs/Y_uslittlecyr.glif new file mode 100644 index 00000000..101c98f1 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/Y_uslittlecyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + А-5 + com.fontlab.metricsRight + А-5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/Y_uslittleiotifiedcyr.glif b/sources/FixelText-Thin.ufo/glyphs/Y_uslittleiotifiedcyr.glif new file mode 100644 index 00000000..726875c2 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/Y_uslittleiotifiedcyr.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H + com.fontlab.metricsRight + А-5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/Z_.glif b/sources/FixelText-Thin.ufo/glyphs/Z_.glif new file mode 100644 index 00000000..05014022 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/Z_.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/Z_.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/Z_.ss01.glif new file mode 100644 index 00000000..aed39768 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/Z_.ss01.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/Z_acute.glif b/sources/FixelText-Thin.ufo/glyphs/Z_acute.glif new file mode 100644 index 00000000..3e4375da --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/Z_acute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Z+acute.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/Z_acute.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/Z_acute.ss01.glif new file mode 100644 index 00000000..e2620f34 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/Z_acute.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Z.ss01+acute.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/Z_caron.glif b/sources/FixelText-Thin.ufo/glyphs/Z_caron.glif new file mode 100644 index 00000000..3881a651 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/Z_caron.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Z+caron.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/Z_caron.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/Z_caron.ss01.glif new file mode 100644 index 00000000..c044b9fd --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/Z_caron.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Z.ss01+caron.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/Z_dotaccent.glif b/sources/FixelText-Thin.ufo/glyphs/Z_dotaccent.glif new file mode 100644 index 00000000..137a2d03 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/Z_dotaccent.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Z+dotaccent.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/Z_dotaccent.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/Z_dotaccent.ss01.glif new file mode 100644 index 00000000..5ea6880b --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/Z_dotaccent.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Z.ss01+dotaccent.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/Z_e-cy.glif b/sources/FixelText-Thin.ufo/glyphs/Z_e-cy.glif new file mode 100644 index 00000000..f93ce505 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/Z_e-cy.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |C + com.fontlab.metricsRight + B + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/Z_edieresiscyr.glif b/sources/FixelText-Thin.ufo/glyphs/Z_edieresiscyr.glif new file mode 100644 index 00000000..b50e2fab --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/Z_edieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ze-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/Z_emlya-cy.glif b/sources/FixelText-Thin.ufo/glyphs/Z_emlya-cy.glif new file mode 100644 index 00000000..2d93f1a3 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/Z_emlya-cy.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Z-10 + com.fontlab.metricsRight + Z + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/Z_etailcyr.B_S_H_.glif b/sources/FixelText-Thin.ufo/glyphs/Z_etailcyr.B_S_H_.glif new file mode 100644 index 00000000..43297a48 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/Z_etailcyr.B_S_H_.glif @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + З + com.fontlab.metricsRight + З + com.fontlab.recipe + Zetailcyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/Z_etailcyr.glif b/sources/FixelText-Thin.ufo/glyphs/Z_etailcyr.glif new file mode 100644 index 00000000..27786ca3 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/Z_etailcyr.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + З + com.fontlab.metricsRight + З + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/Z_he-cy.glif b/sources/FixelText-Thin.ufo/glyphs/Z_he-cy.glif new file mode 100644 index 00000000..309a6cbb --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/Z_he-cy.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |K + com.fontlab.metricsRight + K + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/Z_he-cy.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/Z_he-cy.ss01.glif new file mode 100644 index 00000000..e5e22551 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/Z_he-cy.ss01.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |K + com.fontlab.metricsRight + K + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/Z_hebrevecyr.glif b/sources/FixelText-Thin.ufo/glyphs/Z_hebrevecyr.glif new file mode 100644 index 00000000..4d7ea936 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/Z_hebrevecyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Zhe-cy+breve.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/Z_hedieresiscyr.glif b/sources/FixelText-Thin.ufo/glyphs/Z_hedieresiscyr.glif new file mode 100644 index 00000000..af580fc8 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/Z_hedieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Zhe-cy+dieresis.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/Z_hetailcyr.glif b/sources/FixelText-Thin.ufo/glyphs/Z_hetailcyr.glif new file mode 100644 index 00000000..bb3ef1f6 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/Z_hetailcyr.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ж + com.fontlab.metricsRight + Katailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/Z_hwe-cy.glif b/sources/FixelText-Thin.ufo/glyphs/Z_hwe-cy.glif new file mode 100644 index 00000000..325d8080 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/Z_hwe-cy.glif @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + З + com.fontlab.metricsRight + Ж + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/Z_jekomicyr.glif b/sources/FixelText-Thin.ufo/glyphs/Z_jekomicyr.glif new file mode 100644 index 00000000..17c9d8fb --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/Z_jekomicyr.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Dzjekomicyr + com.fontlab.metricsRight + Njekomicyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/_notdef.glif b/sources/FixelText-Thin.ufo/glyphs/_notdef.glif new file mode 100644 index 00000000..7261060b --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/_notdef.glif @@ -0,0 +1,178 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + =55 + com.schriftgestaltung.Glyphs.rightMetricsKey + =55 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/_perc-circule.glif b/sources/FixelText-Thin.ufo/glyphs/_perc-circule.glif new file mode 100644 index 00000000..abd1f957 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/_perc-circule.glif @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.schriftgestaltung.Glyphs.Export + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/a-cy.accented.glif b/sources/FixelText-Thin.ufo/glyphs/a-cy.accented.glif new file mode 100644 index 00000000..e45a3ae2 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/a-cy.accented.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+acute + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/a-cy.glif b/sources/FixelText-Thin.ufo/glyphs/a-cy.glif new file mode 100644 index 00000000..7f0eeb94 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/a-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/a-cy.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/a-cy.ss01.glif new file mode 100644 index 00000000..6b638cd7 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/a-cy.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/a.glif b/sources/FixelText-Thin.ufo/glyphs/a.glif new file mode 100644 index 00000000..12283e31 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/a.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + n-10 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/a.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/a.ss01.glif new file mode 100644 index 00000000..07428382 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/a.ss01.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/aacute.glif b/sources/FixelText-Thin.ufo/glyphs/aacute.glif new file mode 100644 index 00000000..7f402e88 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/aacute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+acute + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/aacute.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/aacute.ss01.glif new file mode 100644 index 00000000..eedbd183 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/aacute.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+acute + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/abreve.glif b/sources/FixelText-Thin.ufo/glyphs/abreve.glif new file mode 100644 index 00000000..9bd5fbfe --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/abreve.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+breve + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/abreve.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/abreve.ss01.glif new file mode 100644 index 00000000..fd818ce0 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/abreve.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+breve + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/abrevecyr.glif b/sources/FixelText-Thin.ufo/glyphs/abrevecyr.glif new file mode 100644 index 00000000..6d57fe4c --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/abrevecyr.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+breve + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/acaron.glif b/sources/FixelText-Thin.ufo/glyphs/acaron.glif new file mode 100644 index 00000000..2f722c34 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/acaron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+caron + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/acircumflex.glif b/sources/FixelText-Thin.ufo/glyphs/acircumflex.glif new file mode 100644 index 00000000..d10f37b3 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/acircumflex.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+circumflex + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/acircumflex.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/acircumflex.ss01.glif new file mode 100644 index 00000000..300ff8cd --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/acircumflex.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+circumflex + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/acute.case.glif b/sources/FixelText-Thin.ufo/glyphs/acute.case.glif new file mode 100644 index 00000000..e34126ba --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/acute.case.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/acute.glif b/sources/FixelText-Thin.ufo/glyphs/acute.glif new file mode 100644 index 00000000..6a8d08cd --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/acute.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/adieresis.glif b/sources/FixelText-Thin.ufo/glyphs/adieresis.glif new file mode 100644 index 00000000..32c5b0cc --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/adieresis.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+dieresis + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/adieresis.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/adieresis.ss01.glif new file mode 100644 index 00000000..fba499e4 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/adieresis.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+dieresis + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/adieresiscyr.glif b/sources/FixelText-Thin.ufo/glyphs/adieresiscyr.glif new file mode 100644 index 00000000..ae9bf256 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/adieresiscyr.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/ae.glif b/sources/FixelText-Thin.ufo/glyphs/ae.glif new file mode 100644 index 00000000..3d95a296 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/ae.glif @@ -0,0 +1,101 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + a + com.fontlab.metricsRight + e + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/ae.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/ae.ss01.glif new file mode 100644 index 00000000..31fffb69 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/ae.ss01.glif @@ -0,0 +1,96 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + a + com.fontlab.metricsRight + e.ss01 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/aeacute.glif b/sources/FixelText-Thin.ufo/glyphs/aeacute.glif new file mode 100644 index 00000000..ac0f8f50 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/aeacute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ae+acute + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/agrave.glif b/sources/FixelText-Thin.ufo/glyphs/agrave.glif new file mode 100644 index 00000000..f719ac21 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/agrave.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+grave + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/agrave.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/agrave.ss01.glif new file mode 100644 index 00000000..ac873648 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/agrave.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+grave + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/aiecyr.glif b/sources/FixelText-Thin.ufo/glyphs/aiecyr.glif new file mode 100644 index 00000000..3638c099 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/aiecyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ae + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/amacron.glif b/sources/FixelText-Thin.ufo/glyphs/amacron.glif new file mode 100644 index 00000000..01ce3851 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/amacron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+macron + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/amacron.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/amacron.ss01.glif new file mode 100644 index 00000000..a4ba1367 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/amacron.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+macron + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/ampersand.glif b/sources/FixelText-Thin.ufo/glyphs/ampersand.glif new file mode 100644 index 00000000..6b6dc39d --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/ampersand.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/aogonek.glif b/sources/FixelText-Thin.ufo/glyphs/aogonek.glif new file mode 100644 index 00000000..d30a79e2 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/aogonek.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+ogonek + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/aogonek.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/aogonek.ss01.glif new file mode 100644 index 00000000..ee31d0c5 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/aogonek.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+ogonek + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/apostrophemod.glif b/sources/FixelText-Thin.ufo/glyphs/apostrophemod.glif new file mode 100644 index 00000000..b35d3cf0 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/apostrophemod.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + apostrophe + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/approxequal.glif b/sources/FixelText-Thin.ufo/glyphs/approxequal.glif new file mode 100644 index 00000000..0ad33c0e --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/approxequal.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/aring.glif b/sources/FixelText-Thin.ufo/glyphs/aring.glif new file mode 100644 index 00000000..e3d49b20 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/aring.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+ring + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/aring.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/aring.ss01.glif new file mode 100644 index 00000000..d6ebbccf --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/aring.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+ring + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/arrowdown.case.glif b/sources/FixelText-Thin.ufo/glyphs/arrowdown.case.glif new file mode 100644 index 00000000..be28baaf --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/arrowdown.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + arrowup + com.fontlab.metricsRight + arrowup + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/arrowdown.glif b/sources/FixelText-Thin.ufo/glyphs/arrowdown.glif new file mode 100644 index 00000000..1cdd65b4 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/arrowdown.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + arrowup + com.fontlab.metricsRight + arrowup + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/arrowdown.ss01.case.glif b/sources/FixelText-Thin.ufo/glyphs/arrowdown.ss01.case.glif new file mode 100644 index 00000000..4a3ccb4b --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/arrowdown.ss01.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + arrowup + com.fontlab.metricsRight + arrowup + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/arrowdown.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/arrowdown.ss01.glif new file mode 100644 index 00000000..682dcb0b --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/arrowdown.ss01.glif @@ -0,0 +1,15 @@ + + + + + + + + + com.fontlab.metricsLeft + arrowup + com.fontlab.metricsRight + arrowup + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/arrowleft.case.glif b/sources/FixelText-Thin.ufo/glyphs/arrowleft.case.glif new file mode 100644 index 00000000..fcc604df --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/arrowleft.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + arrowleft + com.fontlab.metricsRight + arrowleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/arrowleft.glif b/sources/FixelText-Thin.ufo/glyphs/arrowleft.glif new file mode 100644 index 00000000..310ac5d1 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/arrowleft.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/arrowleft.ss01.case.glif b/sources/FixelText-Thin.ufo/glyphs/arrowleft.ss01.case.glif new file mode 100644 index 00000000..c706dabd --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/arrowleft.ss01.case.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + arrowleft + com.fontlab.metricsRight + arrowleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/arrowleft.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/arrowleft.ss01.glif new file mode 100644 index 00000000..5a5d9fea --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/arrowleft.ss01.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + arrowleft + com.fontlab.metricsRight + arrowleft + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/arrowright.case.glif b/sources/FixelText-Thin.ufo/glyphs/arrowright.case.glif new file mode 100644 index 00000000..70e39cd4 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/arrowright.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |arrowleft + com.fontlab.metricsRight + |arrowleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/arrowright.glif b/sources/FixelText-Thin.ufo/glyphs/arrowright.glif new file mode 100644 index 00000000..08305f69 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/arrowright.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + |arrowleft + com.fontlab.metricsRight + |arrowleft + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/arrowright.ss01.case.glif b/sources/FixelText-Thin.ufo/glyphs/arrowright.ss01.case.glif new file mode 100644 index 00000000..11e4697f --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/arrowright.ss01.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |arrowleft + com.fontlab.metricsRight + |arrowleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/arrowright.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/arrowright.ss01.glif new file mode 100644 index 00000000..5e7527f1 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/arrowright.ss01.glif @@ -0,0 +1,15 @@ + + + + + + + + + com.fontlab.metricsLeft + |arrowleft + com.fontlab.metricsRight + |arrowleft + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/arrowup.case.glif b/sources/FixelText-Thin.ufo/glyphs/arrowup.case.glif new file mode 100644 index 00000000..87f10968 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/arrowup.case.glif @@ -0,0 +1,15 @@ + + + + + + + + + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/arrowup.glif b/sources/FixelText-Thin.ufo/glyphs/arrowup.glif new file mode 100644 index 00000000..388cb5b3 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/arrowup.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + l() + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/arrowup.ss01.case.glif b/sources/FixelText-Thin.ufo/glyphs/arrowup.ss01.case.glif new file mode 100644 index 00000000..ae06e613 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/arrowup.ss01.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + arrowup + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/arrowup.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/arrowup.ss01.glif new file mode 100644 index 00000000..942977ac --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/arrowup.ss01.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + arrowup + com.fontlab.metricsRight + l() + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/asciicircum.glif b/sources/FixelText-Thin.ufo/glyphs/asciicircum.glif new file mode 100644 index 00000000..c983f56f --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/asciicircum.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/asciitilde.glif b/sources/FixelText-Thin.ufo/glyphs/asciitilde.glif new file mode 100644 index 00000000..4df8f60c --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/asciitilde.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/asterisk.glif b/sources/FixelText-Thin.ufo/glyphs/asterisk.glif new file mode 100644 index 00000000..52189bfc --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/asterisk.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/at.case.glif b/sources/FixelText-Thin.ufo/glyphs/at.case.glif new file mode 100644 index 00000000..7754576e --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/at.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/at.glif b/sources/FixelText-Thin.ufo/glyphs/at.glif new file mode 100644 index 00000000..237bf907 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/at.glif @@ -0,0 +1,92 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/atilde.glif b/sources/FixelText-Thin.ufo/glyphs/atilde.glif new file mode 100644 index 00000000..0640fc5d --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/atilde.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+tilde + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/atilde.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/atilde.ss01.glif new file mode 100644 index 00000000..88113fe1 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/atilde.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a.ss01+tilde + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/b.glif b/sources/FixelText-Thin.ufo/glyphs/b.glif new file mode 100644 index 00000000..b7adec71 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/b.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/b.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/b.ss01.glif new file mode 100644 index 00000000..74953f52 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/b.ss01.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/backslash.case.glif b/sources/FixelText-Thin.ufo/glyphs/backslash.case.glif new file mode 100644 index 00000000..3df6d020 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/backslash.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + backslash + com.fontlab.metricsRight + backslash + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/backslash.glif b/sources/FixelText-Thin.ufo/glyphs/backslash.glif new file mode 100644 index 00000000..86659a9f --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/backslash.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/bar.case.glif b/sources/FixelText-Thin.ufo/glyphs/bar.case.glif new file mode 100644 index 00000000..af61ac26 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/bar.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + H-10 + com.fontlab.metricsRight + H-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/bar.glif b/sources/FixelText-Thin.ufo/glyphs/bar.glif new file mode 100644 index 00000000..8138a1e2 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/bar.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + com.fontlab.metricsLeft + H-10 + com.fontlab.metricsRight + H-10 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/be-cy.S_R_B_.glif b/sources/FixelText-Thin.ufo/glyphs/be-cy.S_R_B_.glif new file mode 100644 index 00000000..f6cea6f9 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/be-cy.S_R_B_.glif @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/be-cy.glif b/sources/FixelText-Thin.ufo/glyphs/be-cy.glif new file mode 100644 index 00000000..6097ec41 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/be-cy.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/bishopblack.glif b/sources/FixelText-Thin.ufo/glyphs/bishopblack.glif new file mode 100644 index 00000000..db686ffb --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/bishopblack.glif @@ -0,0 +1,241 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =10 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/bishopwhite.glif b/sources/FixelText-Thin.ufo/glyphs/bishopwhite.glif new file mode 100644 index 00000000..1205ea54 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/bishopwhite.glif @@ -0,0 +1,331 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/braceleft.case.glif b/sources/FixelText-Thin.ufo/glyphs/braceleft.case.glif new file mode 100644 index 00000000..0baf6ae5 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/braceleft.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |braceright.case + com.fontlab.metricsRight + |braceright.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/braceleft.glif b/sources/FixelText-Thin.ufo/glyphs/braceleft.glif new file mode 100644 index 00000000..c5cf7698 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/braceleft.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/braceright.case.glif b/sources/FixelText-Thin.ufo/glyphs/braceright.case.glif new file mode 100644 index 00000000..0178e4b9 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/braceright.case.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/braceright.glif b/sources/FixelText-Thin.ufo/glyphs/braceright.glif new file mode 100644 index 00000000..9aacc1f5 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/braceright.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/bracketangleleft.case.glif b/sources/FixelText-Thin.ufo/glyphs/bracketangleleft.case.glif new file mode 100644 index 00000000..f407f176 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/bracketangleleft.case.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + parenleft.case + com.fontlab.metricsRight + parenleft.case + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/bracketangleleft.glif b/sources/FixelText-Thin.ufo/glyphs/bracketangleleft.glif new file mode 100644 index 00000000..e577804d --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/bracketangleleft.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + parenleft + com.fontlab.metricsRight + parenleft + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/bracketangleright.case.glif b/sources/FixelText-Thin.ufo/glyphs/bracketangleright.case.glif new file mode 100644 index 00000000..0f222f9a --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/bracketangleright.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |bracketangleleft.case + com.fontlab.metricsRight + |bracketangleleft.case + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/bracketangleright.glif b/sources/FixelText-Thin.ufo/glyphs/bracketangleright.glif new file mode 100644 index 00000000..645fc2ff --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/bracketangleright.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.metricsLeft + |bracketangleleft + com.fontlab.metricsRight + |bracketangleleft + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/bracketleft.case.glif b/sources/FixelText-Thin.ufo/glyphs/bracketleft.case.glif new file mode 100644 index 00000000..6ccf9ddb --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/bracketleft.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |bracketright.case + com.fontlab.metricsRight + |bracketright.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/bracketleft.glif b/sources/FixelText-Thin.ufo/glyphs/bracketleft.glif new file mode 100644 index 00000000..09b60760 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/bracketleft.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/bracketright.case.glif b/sources/FixelText-Thin.ufo/glyphs/bracketright.case.glif new file mode 100644 index 00000000..97617e60 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/bracketright.case.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |bracketleft + com.fontlab.metricsRight + |bracketleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/bracketright.glif b/sources/FixelText-Thin.ufo/glyphs/bracketright.glif new file mode 100644 index 00000000..0f87820b --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/bracketright.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |bracketleft + com.fontlab.metricsRight + |bracketleft + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/breve.case.glif b/sources/FixelText-Thin.ufo/glyphs/breve.case.glif new file mode 100644 index 00000000..7a52bd89 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/breve.case.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/breve.glif b/sources/FixelText-Thin.ufo/glyphs/breve.glif new file mode 100644 index 00000000..0a30454a --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/breve.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/brokenbar.case.glif b/sources/FixelText-Thin.ufo/glyphs/brokenbar.case.glif new file mode 100644 index 00000000..56b5faeb --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/brokenbar.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + bar + com.fontlab.metricsRight + bar + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/brokenbar.glif b/sources/FixelText-Thin.ufo/glyphs/brokenbar.glif new file mode 100644 index 00000000..0621c561 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/brokenbar.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + bar + com.fontlab.metricsRight + bar + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/bullet.case.glif b/sources/FixelText-Thin.ufo/glyphs/bullet.case.glif new file mode 100644 index 00000000..c7e7a129 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/bullet.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + period + com.fontlab.metricsRight + period + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/bullet.glif b/sources/FixelText-Thin.ufo/glyphs/bullet.glif new file mode 100644 index 00000000..13fb5ea9 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/bullet.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + period + com.fontlab.metricsRight + period + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/c.glif b/sources/FixelText-Thin.ufo/glyphs/c.glif new file mode 100644 index 00000000..586aa0eb --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/c.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/cacute.glif b/sources/FixelText-Thin.ufo/glyphs/cacute.glif new file mode 100644 index 00000000..06610ac8 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/cacute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+acute + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/caron.case.glif b/sources/FixelText-Thin.ufo/glyphs/caron.case.glif new file mode 100644 index 00000000..dc3790af --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/caron.case.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/caron.glif b/sources/FixelText-Thin.ufo/glyphs/caron.glif new file mode 100644 index 00000000..71b71c87 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/caron.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/caron.salt.glif b/sources/FixelText-Thin.ufo/glyphs/caron.salt.glif new file mode 100644 index 00000000..9e39e3eb --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/caron.salt.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/ccaron.glif b/sources/FixelText-Thin.ufo/glyphs/ccaron.glif new file mode 100644 index 00000000..7b939c15 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/ccaron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+caron + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/ccedilla.glif b/sources/FixelText-Thin.ufo/glyphs/ccedilla.glif new file mode 100644 index 00000000..af1b1931 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/ccedilla.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+cedilla + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/cche-cy.glif b/sources/FixelText-Thin.ufo/glyphs/cche-cy.glif new file mode 100644 index 00000000..50de3b50 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/cche-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ч + com.fontlab.metricsRight + ч + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/ccircumflex.glif b/sources/FixelText-Thin.ufo/glyphs/ccircumflex.glif new file mode 100644 index 00000000..34a88439 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/ccircumflex.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+circumflex + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/cdotaccent.glif b/sources/FixelText-Thin.ufo/glyphs/cdotaccent.glif new file mode 100644 index 00000000..eb9cf744 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/cdotaccent.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+dotaccent + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/cedilla.glif b/sources/FixelText-Thin.ufo/glyphs/cedilla.glif new file mode 100644 index 00000000..8249695d --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/cedilla.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/cent.glif b/sources/FixelText-Thin.ufo/glyphs/cent.glif new file mode 100644 index 00000000..e69080cf --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/cent.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + c + com.fontlab.metricsRight + c + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/che-cy.glif b/sources/FixelText-Thin.ufo/glyphs/che-cy.glif new file mode 100644 index 00000000..86567fef --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/che-cy.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + u-10 + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/cheabkhcyr.glif b/sources/FixelText-Thin.ufo/glyphs/cheabkhcyr.glif new file mode 100644 index 00000000..ac705b7f --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/cheabkhcyr.glif @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + e + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/cheabkhtailcyr.glif b/sources/FixelText-Thin.ufo/glyphs/cheabkhtailcyr.glif new file mode 100644 index 00000000..c2e9043a --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/cheabkhtailcyr.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + cheabkhcyr + com.fontlab.metricsRight + cheabkhcyr + com.fontlab.recipe + cheabkhcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/chedieresiscyr.glif b/sources/FixelText-Thin.ufo/glyphs/chedieresiscyr.glif new file mode 100644 index 00000000..2a172d24 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/chedieresiscyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + che-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/chekhakascyr.glif b/sources/FixelText-Thin.ufo/glyphs/chekhakascyr.glif new file mode 100644 index 00000000..c6a803b1 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/chekhakascyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ч + com.fontlab.metricsRight + н + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/chetailcyr.glif b/sources/FixelText-Thin.ufo/glyphs/chetailcyr.glif new file mode 100644 index 00000000..bdfdabf8 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/chetailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ч + com.fontlab.metricsRight + entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/chevertcyr.glif b/sources/FixelText-Thin.ufo/glyphs/chevertcyr.glif new file mode 100644 index 00000000..7148741b --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/chevertcyr.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ч + com.fontlab.metricsRight + н + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/circumflex.case.glif b/sources/FixelText-Thin.ufo/glyphs/circumflex.case.glif new file mode 100644 index 00000000..a90d4612 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/circumflex.case.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/circumflex.glif b/sources/FixelText-Thin.ufo/glyphs/circumflex.glif new file mode 100644 index 00000000..6f5d2893 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/circumflex.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/clubwhite.glif b/sources/FixelText-Thin.ufo/glyphs/clubwhite.glif new file mode 100644 index 00000000..1051e5ff --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/clubwhite.glif @@ -0,0 +1,155 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/colon.case.glif b/sources/FixelText-Thin.ufo/glyphs/colon.case.glif new file mode 100644 index 00000000..7807e4f1 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/colon.case.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/colon.glif b/sources/FixelText-Thin.ufo/glyphs/colon.glif new file mode 100644 index 00000000..64aa5696 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/colon.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/colontriangularmod.glif b/sources/FixelText-Thin.ufo/glyphs/colontriangularmod.glif new file mode 100644 index 00000000..8fb21afd --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/colontriangularmod.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + colon + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/comma.glif b/sources/FixelText-Thin.ufo/glyphs/comma.glif new file mode 100644 index 00000000..2c1fa3cf --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/comma.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/commaaccentcomb.glif b/sources/FixelText-Thin.ufo/glyphs/commaaccentcomb.glif new file mode 100644 index 00000000..f797e50b --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/commaaccentcomb.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/commaaccentcomb.salt.glif b/sources/FixelText-Thin.ufo/glyphs/commaaccentcomb.salt.glif new file mode 100644 index 00000000..91cbcf56 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/commaaccentcomb.salt.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/contents.plist b/sources/FixelText-Thin.ufo/glyphs/contents.plist new file mode 100644 index 00000000..2830b2de --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/contents.plist @@ -0,0 +1,2352 @@ + + + + + .notdef + _notdef.glif + A + A_.glif + A-cy + A_-cy.glif + A-cy.accented + A_-cy.accented.glif + A-cy.ss01 + A_-cy.ss01.glif + A.ss01 + A_.ss01.glif + AE + A_E_.glif + AE.ss01 + A_E_.ss01.glif + AEacute + A_E_acute.glif + Aacute + A_acute.glif + Aacute.ss01 + A_acute.ss01.glif + Abreve + A_breve.glif + Abreve.ss01 + A_breve.ss01.glif + Abrevecyr + A_brevecyr.glif + Acaron + A_caron.glif + Acircumflex + A_circumflex.glif + Acircumflex.ss01 + A_circumflex.ss01.glif + Adieresis + A_dieresis.glif + Adieresis.ss01 + A_dieresis.ss01.glif + Adieresiscyr + A_dieresiscyr.glif + Agrave + A_grave.glif + Agrave.ss01 + A_grave.ss01.glif + Aiecyr + A_iecyr.glif + Amacron + A_macron.glif + Amacron.ss01 + A_macron.ss01.glif + Aogonek + A_ogonek.glif + Aogonek.ss01 + A_ogonek.ss01.glif + Aring + A_ring.glif + Aring.ss01 + A_ring.ss01.glif + Atilde + A_tilde.glif + Atilde.ss01 + A_tilde.ss01.glif + B + B_.glif + Be-cy + B_e-cy.glif + C + C_.glif + CR + C_R_.glif + Cacute + C_acute.glif + Ccaron + C_caron.glif + Ccedilla + C_cedilla.glif + Cche-cy + C_che-cy.glif + Ccircumflex + C_circumflex.glif + Cdotaccent + C_dotaccent.glif + Che-cy + C_he-cy.glif + Cheabkhcyr + C_heabkhcyr.glif + Cheabkhtailcyr + C_heabkhtailcyr.glif + Chedieresiscyr + C_hedieresiscyr.glif + Chekhakascyr + C_hekhakascyr.glif + Chetailcyr + C_hetailcyr.glif + Chevertcyr + C_hevertcyr.glif + CrossedO-cy + C_rossedO_-cy.glif + D + D_.glif + Dcaron + D_caron.glif + Dchecyr + D_checyr.glif + Dcroat + D_croat.glif + De-cy + D_e-cy.glif + De-cy.BGR + D_e-cy.B_G_R_.glif + DeSoft-cy + D_eS_oft-cy.glif + Dekomicyr + D_ekomicyr.glif + Delta + D_elta.glif + Djecyr + D_jecyr.glif + Djekomicyr + D_jekomicyr.glif + Djerv-cy + D_jerv-cy.glif + DoubleO-cy + D_oubleO_-cy.glif + Dwe-cy + D_we-cy.glif + Dze-cy + D_ze-cy.glif + DzeReversed-cy + D_zeR_eversed-cy.glif + Dzeabkhcyr + D_zeabkhcyr.glif + Dzelo-cy + D_zelo-cy.glif + Dzhecyr + D_zhecyr.glif + Dzjekomicyr + D_zjekomicyr.glif + Dzwe-cy + D_zwe-cy.glif + Dzze-cy + D_zze-cy.glif + Dzzhecyr + D_zzhecyr.glif + E + E_.glif + E-cy + E_-cy.glif + E-cy.accented + E_-cy.accented.glif + Eacute + E_acute.glif + Ebreve + E_breve.glif + Ecaron + E_caron.glif + Ecircumflex + E_circumflex.glif + Edieresis + E_dieresis.glif + Edotaccent + E_dotaccent.glif + Ef-cy + E_f-cy.glif + Ef-cy.BGR + E_f-cy.B_G_R_.glif + Egrave + E_grave.glif + Eiotifiedcyr + E_iotifiedcyr.glif + El-cy + E_l-cy.glif + El-cy.BGR + E_l-cy.B_G_R_.glif + ElSoft-cy + E_lS_oft-cy.glif + Elhookcyr + E_lhookcyr.glif + Elmiddlehookcyr + E_lmiddlehookcyr.glif + Elsharptailcyr + E_lsharptailcyr.glif + Elsmallcyr + E_lsmallcyr.glif + Eltailcyr + E_ltailcyr.glif + Em-cy + E_m-cy.glif + Em-cy.ss01 + E_m-cy.ss01.glif + EmSoft-cy + E_mS_oft-cy.glif + Emacron + E_macron.glif + Emsharptailcyr + E_msharptailcyr.glif + En-cy + E_n-cy.glif + Eng + E_ng.glif + Eng.ss01 + E_ng.ss01.glif + Engecyr + E_ngecyr.glif + Enhookcyr + E_nhookcyr.glif + Enhookleftcyr + E_nhookleftcyr.glif + Enmiddlehookcyr + E_nmiddlehookcyr.glif + Ensharptailcyr + E_nsharptailcyr.glif + Entailcyr + E_ntailcyr.glif + Eogonek + E_ogonek.glif + Er-cy + E_r-cy.glif + Ereversed-cy + E_reversed-cy.glif + Ereversed-cy.accented + E_reversed-cy.accented.glif + Ereverseddieresiscyr + E_reverseddieresiscyr.glif + Ertickcyr + E_rtickcyr.glif + Es-cy + E_s-cy.glif + Estailcyr + E_stailcyr.glif + Estailcyr.BSH + E_stailcyr.B_S_H_.glif + Estailcyr.CHU + E_stailcyr.C_H_U_.glif + Eth + E_th.glif + F + F_.glif + Fitacyr + F_itacyr.glif + G + G_.glif + G.ss01 + G_.ss01.glif + Gacute + G_acute.glif + Gacute.ss01 + G_acute.ss01.glif + Gbreve + G_breve.glif + Gbreve.ss01 + G_breve.ss01.glif + Gcircumflex + G_circumflex.glif + Gcircumflex.ss01 + G_circumflex.ss01.glif + Gcommaaccent + G_commaaccent.glif + Gcommaaccent.ss01 + G_commaaccent.ss01.glif + Gdotaccent + G_dotaccent.glif + Gdotaccent.ss01 + G_dotaccent.ss01.glif + Ge-cy + G_e-cy.glif + Gehookcyr + G_ehookcyr.glif + Gehookstrokecyr + G_ehookstrokecyr.glif + Germandbls + G_ermandbls.glif + Gestrokecyr + G_estrokecyr.glif + Gestrokecyr.BSH + G_estrokecyr.B_S_H_.glif + Getailcyr + G_etailcyr.glif + Gheupturn-cy + G_heupturn-cy.glif + Gjecyr + G_jecyr.glif + H + H_.glif + Ha-cy + H_a-cy.glif + Ha-cy.ss01 + H_a-cy.ss01.glif + Haabkhcyr + H_aabkhcyr.glif + Hahookcyr + H_ahookcyr.glif + Hardsign-cy + H_ardsign-cy.glif + Hastrokecyr + H_astrokecyr.glif + Hbar + H_bar.glif + Hcircumflex + H_circumflex.glif + Hwe-cy + H_we-cy.glif + I + I_.glif + I-cy + I_-cy.glif + IJ + I_J_.glif + Ia-cy + I_a-cy.glif + Ia-cy.accented + I_a-cy.accented.glif + Ia-cy.ss01 + I_a-cy.ss01.glif + Iacute + I_acute.glif + Ibreve + I_breve.glif + Icircumflex + I_circumflex.glif + Idieresis + I_dieresis.glif + Idieresiscyr + I_dieresiscyr.glif + Idotaccent + I_dotaccent.glif + Ie-cy + I_e-cy.glif + Iebrevecyr + I_ebrevecyr.glif + Iegravecyr + I_egravecyr.glif + Igrave + I_grave.glif + Igravecyr + I_gravecyr.glif + Ii-cy + I_i-cy.glif + Ii-cy.accented + I_i-cy.accented.glif + Iishort-cy + I_ishort-cy.glif + Imacron + I_macron.glif + Imacroncyr + I_macroncyr.glif + Io-cy + I_o-cy.glif + Io-cy.accented + I_o-cy.accented.glif + Iogonek + I_ogonek.glif + Iota-cy + I_ota-cy.glif + IotifiedA-cy + I_otifiedA_-cy.glif + Ishortsharptailcyr + I_shortsharptailcyr.glif + Itilde + I_tilde.glif + Iu-cy + I_u-cy.glif + Iu-cy.accented + I_u-cy.accented.glif + Izhitsacyr + I_zhitsacyr.glif + Izhitsagravedblcyr + I_zhitsagravedblcyr.glif + J + J_.glif + J.ss01 + J_.ss01.glif + Jcircumflex + J_circumflex.glif + Jcircumflex.ss01 + J_circumflex.ss01.glif + Jecyr + J_ecyr.glif + K + K_.glif + K.ss01 + K_.ss01.glif + Ka-cy + K_a-cy.glif + Ka-cy.ss01 + K_a-cy.ss01.glif + Kaaleutcyr + K_aaleutcyr.glif + Kabashkcyr + K_abashkcyr.glif + Kahookcyr + K_ahookcyr.glif + Kastrokecyr + K_astrokecyr.glif + Katailcyr + K_atailcyr.glif + Kaverticalstrokecyr + K_averticalstrokecyr.glif + Kcommaaccent + K_commaaccent.glif + Kcommaaccent.ss01 + K_commaaccent.ss01.glif + Kjecyr + K_jecyr.glif + Koppacyr + K_oppacyr.glif + Ksicyr + K_sicyr.glif + L + L_.glif + Lacute + L_acute.glif + Lcaron + L_caron.glif + Lcommaaccent + L_commaaccent.glif + Ldot + L_dot.glif + Lhacyr + L_hacyr.glif + Ljecyr + L_jecyr.glif + Ljekomicyr + L_jekomicyr.glif + Lslash + L_slash.glif + M + M_.glif + M.ss01 + M_.ss01.glif + N + N_.glif + N.ss01 + N_.ss01.glif + NULL + N_U_L_L_.glif + Nacute + N_acute.glif + Nacute.ss01 + N_acute.ss01.glif + Ncaron + N_caron.glif + Ncaron.ss01 + N_caron.ss01.glif + Ncommaaccent + N_commaaccent.glif + Ncommaaccent.ss01 + N_commaaccent.ss01.glif + Njecyr + N_jecyr.glif + Njekomicyr + N_jekomicyr.glif + Ntilde + N_tilde.glif + Ntilde.ss01 + N_tilde.ss01.glif + O + O_.glif + O-cy + O_-cy.glif + O-cy.accented + O_-cy.accented.glif + OBinocular-cy + O_B_inocular-cy.glif + ODoubleMonocular-cy + O_D_oubleM_onocular-cy.glif + OE + O_E_.glif + OMonocular-cy + O_M_onocular-cy.glif + Oacute + O_acute.glif + Obarcyr + O_barcyr.glif + Obardieresiscyr + O_bardieresiscyr.glif + Obreve + O_breve.glif + Ocircumflex + O_circumflex.glif + Odieresis + O_dieresis.glif + Odieresiscyr + O_dieresiscyr.glif + Ograve + O_grave.glif + Ohungarumlaut + O_hungarumlaut.glif + Omacron + O_macron.glif + Omega + O_mega.glif + OmegaBroad-cy + O_megaB_road-cy.glif + Omegacyr + O_megacyr.glif + Omegaroundcyr + O_megaroundcyr.glif + Omegatitlocyr + O_megatitlocyr.glif + Oslash + O_slash.glif + Oslashacute + O_slashacute.glif + Otcyr + O_tcyr.glif + Otilde + O_tilde.glif + P + P_.glif + Palochkacyr + P_alochkacyr.glif + Pe-cy + P_e-cy.glif + Pehookcyr + P_ehookcyr.glif + Petailcyr + P_etailcyr.glif + Psicyr + P_sicyr.glif + Q + Q_.glif + Q.ss01 + Q_.ss01.glif + Qacyr + Q_acyr.glif + R + R_.glif + Racute + R_acute.glif + Rcaron + R_caron.glif + Rcommaaccent + R_commaaccent.glif + Reversedzecyr + R_eversedzecyr.glif + Rhacyr + R_hacyr.glif + S + S_.glif + Sacute + S_acute.glif + Scaron + S_caron.glif + Scedilla + S_cedilla.glif + Schwa + S_chwa.glif + Schwacyr + S_chwacyr.glif + Schwadieresiscyr + S_chwadieresiscyr.glif + Scircumflex + S_circumflex.glif + Scommaaccent + S_commaaccent.glif + Semisoftcyr + S_emisoftcyr.glif + Sha-cy + S_ha-cy.glif + Shcha-cy + S_hcha-cy.glif + Shhacyr + S_hhacyr.glif + Shhatailcyr + S_hhatailcyr.glif + Shwe-cy + S_hwe-cy.glif + Sjekomicyr + S_jekomicyr.glif + Softsign-cy + S_oftsign-cy.glif + T + T_.glif + Tbar + T_bar.glif + Tcaron + T_caron.glif + Tcedilla + T_cedilla.glif + Tche-cy + T_che-cy.glif + Tcommaaccent + T_commaaccent.glif + Te-cy + T_e-cy.glif + TeWithMiddleHook-cy + T_eW_ithM_iddleH_ook-cy.glif + Tetailcyr + T_etailcyr.glif + Tetsecyr + T_etsecyr.glif + Thorn + T_horn.glif + Tjekomicyr + T_jekomicyr.glif + Tse-cy + T_se-cy.glif + TseReversed-cy + T_seR_eversed-cy.glif + Tshecyr + T_shecyr.glif + Tsse-cy + T_sse-cy.glif + Tswe-cy + T_swe-cy.glif + Twe-cy + T_we-cy.glif + U + U_.glif + U-cy + U_-cy.glif + U-cy.accented + U_-cy.accented.glif + U-cy.ss01 + U_-cy.ss01.glif + Uacute + U_acute.glif + Uacutedblcyr + U_acutedblcyr.glif + Ubreve + U_breve.glif + Ucircumflex + U_circumflex.glif + Udieresis + U_dieresis.glif + Udieresiscyr + U_dieresiscyr.glif + Ugrave + U_grave.glif + Uhungarumlaut + U_hungarumlaut.glif + UkMonograph-cy + U_kM_onograph-cy.glif + Ukcyr + U_kcyr.glif + Umacron + U_macron.glif + Umacroncyr + U_macroncyr.glif + Uogonek + U_ogonek.glif + Uring + U_ring.glif + Ushort-cy + U_short-cy.glif + Ushort-cy.ss01 + U_short-cy.ss01.glif + Ustraightcyr + U_straightcyr.glif + Ustraightstrokecyr + U_straightstrokecyr.glif + Utilde + U_tilde.glif + V + V_.glif + V.ss01 + V_.ss01.glif + Ve-cy + V_e-cy.glif + W + W_.glif + W.ss01 + W_.ss01.glif + Wacute + W_acute.glif + Wacute.ss01 + W_acute.ss01.glif + Wcircumflex + W_circumflex.glif + Wcircumflex.ss01 + W_circumflex.ss01.glif + Wdieresis + W_dieresis.glif + Wdieresis.ss01 + W_dieresis.ss01.glif + Wecyr + W_ecyr.glif + Wgrave + W_grave.glif + Wgrave.ss01 + W_grave.ss01.glif + X + X_.glif + X.ss01 + X_.ss01.glif + Xatailcyr + X_atailcyr.glif + Y + Y_.glif + Y.ss01 + Y_.ss01.glif + Yacute + Y_acute.glif + Yacute.ss01 + Y_acute.ss01.glif + Yaecyr + Y_aecyr.glif + YatIotified-cy + Y_atI_otified-cy.glif + Yatcyr + Y_atcyr.glif + Ycircumflex + Y_circumflex.glif + Ycircumflex.ss01 + Y_circumflex.ss01.glif + Ydieresis + Y_dieresis.glif + Ydieresis.ss01 + Y_dieresis.ss01.glif + YerNeutral-cy + Y_erN_eutral-cy.glif + Yeru-cy + Y_eru-cy.glif + Yeru-cy.accented + Y_eru-cy.accented.glif + Yeru-cymacron + Y_eru-cymacron.glif + YeruBackYer-cy + Y_eruB_ackY_er-cy.glif + Yi-cy + Y_i-cy.glif + Ylongdieresiscyr + Y_longdieresiscyr.glif + Yn-cy + Y_n-cy.glif + YuReversed-cy + Y_uR_eversed-cy.glif + YusBlended-cy + Y_usB_lended-cy.glif + YusClosedlittle-cy + Y_usC_losedlittle-cy.glif + Yusbigcyr + Y_usbigcyr.glif + Yusbigiotifiedcyr + Y_usbigiotifiedcyr.glif + YusiotifiedClosedLittle-cy + Y_usiotifiedC_losedL_ittle-cy.glif + Yuslittlecyr + Y_uslittlecyr.glif + Yuslittleiotifiedcyr + Y_uslittleiotifiedcyr.glif + Z + Z_.glif + Z.ss01 + Z_.ss01.glif + Zacute + Z_acute.glif + Zacute.ss01 + Z_acute.ss01.glif + Zcaron + Z_caron.glif + Zcaron.ss01 + Z_caron.ss01.glif + Zdotaccent + Z_dotaccent.glif + Zdotaccent.ss01 + Z_dotaccent.ss01.glif + Ze-cy + Z_e-cy.glif + Zedieresiscyr + Z_edieresiscyr.glif + Zemlya-cy + Z_emlya-cy.glif + Zetailcyr + Z_etailcyr.glif + Zetailcyr.BSH + Z_etailcyr.B_S_H_.glif + Zhe-cy + Z_he-cy.glif + Zhe-cy.ss01 + Z_he-cy.ss01.glif + Zhebrevecyr + Z_hebrevecyr.glif + Zhedieresiscyr + Z_hedieresiscyr.glif + Zhetailcyr + Z_hetailcyr.glif + Zhwe-cy + Z_hwe-cy.glif + Zjekomicyr + Z_jekomicyr.glif + _perc-circule + _perc-circule.glif + a + a.glif + a-cy + a-cy.glif + a-cy.accented + a-cy.accented.glif + a-cy.ss01 + a-cy.ss01.glif + a.ss01 + a.ss01.glif + aacute + aacute.glif + aacute.ss01 + aacute.ss01.glif + abreve + abreve.glif + abreve.ss01 + abreve.ss01.glif + abrevecyr + abrevecyr.glif + acaron + acaron.glif + acircumflex + acircumflex.glif + acircumflex.ss01 + acircumflex.ss01.glif + acute + acute.glif + acute.case + acute.case.glif + adieresis + adieresis.glif + adieresis.ss01 + adieresis.ss01.glif + adieresiscyr + adieresiscyr.glif + ae + ae.glif + ae.ss01 + ae.ss01.glif + aeacute + aeacute.glif + agrave + agrave.glif + agrave.ss01 + agrave.ss01.glif + aiecyr + aiecyr.glif + amacron + amacron.glif + amacron.ss01 + amacron.ss01.glif + ampersand + ampersand.glif + aogonek + aogonek.glif + aogonek.ss01 + aogonek.ss01.glif + apostrophemod + apostrophemod.glif + approxequal + approxequal.glif + aring + aring.glif + aring.ss01 + aring.ss01.glif + arrowdown + arrowdown.glif + arrowdown.case + arrowdown.case.glif + arrowdown.ss01 + arrowdown.ss01.glif + arrowdown.ss01.case + arrowdown.ss01.case.glif + arrowleft + arrowleft.glif + arrowleft.case + arrowleft.case.glif + arrowleft.ss01 + arrowleft.ss01.glif + arrowleft.ss01.case + arrowleft.ss01.case.glif + arrowright + arrowright.glif + arrowright.case + arrowright.case.glif + arrowright.ss01 + arrowright.ss01.glif + arrowright.ss01.case + arrowright.ss01.case.glif + arrowup + arrowup.glif + arrowup.case + arrowup.case.glif + arrowup.ss01 + arrowup.ss01.glif + arrowup.ss01.case + arrowup.ss01.case.glif + asciicircum + asciicircum.glif + asciitilde + asciitilde.glif + asterisk + asterisk.glif + at + at.glif + at.case + at.case.glif + atilde + atilde.glif + atilde.ss01 + atilde.ss01.glif + b + b.glif + b.ss01 + b.ss01.glif + backslash + backslash.glif + backslash.case + backslash.case.glif + bar + bar.glif + bar.case + bar.case.glif + be-cy + be-cy.glif + be-cy.SRB + be-cy.S_R_B_.glif + bishopblack + bishopblack.glif + bishopwhite + bishopwhite.glif + braceleft + braceleft.glif + braceleft.case + braceleft.case.glif + braceright + braceright.glif + braceright.case + braceright.case.glif + bracketangleleft + bracketangleleft.glif + bracketangleleft.case + bracketangleleft.case.glif + bracketangleright + bracketangleright.glif + bracketangleright.case + bracketangleright.case.glif + bracketleft + bracketleft.glif + bracketleft.case + bracketleft.case.glif + bracketright + bracketright.glif + bracketright.case + bracketright.case.glif + breve + breve.glif + breve.case + breve.case.glif + brokenbar + brokenbar.glif + brokenbar.case + brokenbar.case.glif + bullet + bullet.glif + bullet.case + bullet.case.glif + c + c.glif + cacute + cacute.glif + caron + caron.glif + caron.case + caron.case.glif + caron.salt + caron.salt.glif + ccaron + ccaron.glif + ccedilla + ccedilla.glif + cche-cy + cche-cy.glif + ccircumflex + ccircumflex.glif + cdotaccent + cdotaccent.glif + cedilla + cedilla.glif + cent + cent.glif + che-cy + che-cy.glif + cheabkhcyr + cheabkhcyr.glif + cheabkhtailcyr + cheabkhtailcyr.glif + chedieresiscyr + chedieresiscyr.glif + chekhakascyr + chekhakascyr.glif + chetailcyr + chetailcyr.glif + chevertcyr + chevertcyr.glif + circumflex + circumflex.glif + circumflex.case + circumflex.case.glif + clubwhite + clubwhite.glif + colon + colon.glif + colon.case + colon.case.glif + colontriangularmod + colontriangularmod.glif + comma + comma.glif + commaaccentcomb + commaaccentcomb.glif + commaaccentcomb.salt + commaaccentcomb.salt.glif + copyright + copyright.glif + crossedo-cy + crossedo-cy.glif + crossedswords + crossedswords.glif + currency + currency.glif + d + d.glif + d.ss01 + d.ss01.glif + dagger + dagger.glif + daggerdbl + daggerdbl.glif + dcaron + dcaron.glif + dcaron.ss01 + dcaron.ss01.glif + dchecyr + dchecyr.glif + dcroat + dcroat.glif + dcroat.ss01 + dcroat.ss01.glif + de-cy + de-cy.glif + de-cy.BGR + de-cy.B_G_R_.glif + de-cy.ss01 + de-cy.ss01.glif + deSoft-cy + deS_oft-cy.glif + degree + degree.glif + dekomicyr + dekomicyr.glif + diamondwhite-misc + diamondwhite-misc.glif + dieresis + dieresis.glif + dieresis.alt + dieresis.alt.glif + dieresis.case + dieresis.case.glif + dieresisacute + dieresisacute.glif + dieresiscase.alt + dieresiscase.alt.glif + divide + divide.glif + djecyr + djecyr.glif + djekomicyr + djekomicyr.glif + djerv-cy + djerv-cy.glif + dollar + dollar.glif + dotaccent + dotaccent.glif + dotaccent.case + dotaccent.case.glif + doubleo-cy + doubleo-cy.glif + dramsignarmn + dramsignarmn.glif + dwe-cy + dwe-cy.glif + dze-cy + dze-cy.glif + dzeReversed-cy + dzeR_eversed-cy.glif + dzeabkhcyr + dzeabkhcyr.glif + dzelo-cy + dzelo-cy.glif + dzhecyr + dzhecyr.glif + dzjekomicyr + dzjekomicyr.glif + dzwe-cy + dzwe-cy.glif + dzze-cy + dzze-cy.glif + dzzhecyr + dzzhecyr.glif + e + e.glif + e-cy + e-cy.glif + e-cy.accented + e-cy.accented.glif + e-cy.hist + e-cy.hist.glif + e.ss01 + e.ss01.glif + eacute + eacute.glif + eacute.ss01 + eacute.ss01.glif + ebreve + ebreve.glif + ebreve.ss01 + ebreve.ss01.glif + ecaron + ecaron.glif + ecaron.ss01 + ecaron.ss01.glif + ecircumflex + ecircumflex.glif + ecircumflex.ss01 + ecircumflex.ss01.glif + edieresis + edieresis.glif + edieresis.ss01 + edieresis.ss01.glif + edotaccent + edotaccent.glif + edotaccent.ss01 + edotaccent.ss01.glif + ef-cy + ef-cy.glif + egrave + egrave.glif + egrave.ss01 + egrave.ss01.glif + eight + eight.glif + eight.osf + eight.osf.glif + eight.tf + eight.tf.glif + eiotifiedcyr + eiotifiedcyr.glif + eiotifiedcyr.BGR + eiotifiedcyr.B_G_R_.glif + el-cy + el-cy.glif + el-cy.BGR + el-cy.B_G_R_.glif + el-cy.ss01 + el-cy.ss01.glif + elSoft-cy + elS_oft-cy.glif + elhookcyr + elhookcyr.glif + ellipsis + ellipsis.glif + elmiddlehookcyr + elmiddlehookcyr.glif + elsharptailcyr + elsharptailcyr.glif + eltailcyr + eltailcyr.glif + em-cy + em-cy.glif + emSoft-cy + emS_oft-cy.glif + emacron + emacron.glif + emacron.ss01 + emacron.ss01.glif + emdash + emdash.glif + emdash.case + emdash.case.glif + emsharptailcyr + emsharptailcyr.glif + en-cy + en-cy.glif + enclosingcirclecomb + enclosingcirclecomb.glif + endash + endash.glif + endash.case + endash.case.glif + eng + eng.glif + engecyr + engecyr.glif + enhookcyr + enhookcyr.glif + enhookleftcyr + enhookleftcyr.glif + enmiddlehookcyr + enmiddlehookcyr.glif + ensharptailcyr + ensharptailcyr.glif + entailcyr + entailcyr.glif + eogonek + eogonek.glif + eogonek.ss01 + eogonek.ss01.glif + equal + equal.glif + er-cy + er-cy.glif + er-cy.ss01 + er-cy.ss01.glif + ereversed-cy + ereversed-cy.glif + ereversed-cy.accented + ereversed-cy.accented.glif + ereverseddieresiscyr + ereverseddieresiscyr.glif + ertickcyr + ertickcyr.glif + es-cy + es-cy.glif + estailcyr + estailcyr.glif + estailcyr.BSH + estailcyr.B_S_H_.glif + estailcyr.CHU + estailcyr.C_H_U_.glif + estimated + estimated.glif + eth + eth.glif + eturned + eturned.glif + euro + euro.glif + exclam + exclam.glif + exclamdown + exclamdown.glif + exclamdown.case + exclamdown.case.glif + f + f.glif + f.ss01 + f.ss01.glif + f_f + f_f.glif + f_f.ss01 + f_f.ss01.glif + f_f_i + f_f_i.glif + f_f_i.ss01 + f_f_i.ss01.glif + f_f_l + f_f_l.glif + f_f_l.ss01 + f_f_l.ss01.glif + fi + fi.glif + fi.ss01 + fi.ss01.glif + fitacyr + fitacyr.glif + five + five.glif + five.osf + five.osf.glif + five.tf + five.tf.glif + fl + fl.glif + fl.ss01 + fl.ss01.glif + floretteblack + floretteblack.glif + floretteoutlinedpetalledblackeight + floretteoutlinedpetalledblackeight.glif + florettewhite + florettewhite.glif + florin + florin.glif + flower + flower.glif + four + four.glif + four.osf + four.osf.glif + four.tf + four.tf.glif + fraction + fraction.glif + g + g.glif + g.ss01 + g.ss01.glif + gacute + gacute.glif + gacute.ss01 + gacute.ss01.glif + gbreve + gbreve.glif + gbreve.ss01 + gbreve.ss01.glif + gcircumflex + gcircumflex.glif + gcircumflex.ss01 + gcircumflex.ss01.glif + gcommaaccent + gcommaaccent.glif + gcommaaccent.ss01 + gcommaaccent.ss01.glif + gdotaccent + gdotaccent.glif + gdotaccent.ss01 + gdotaccent.ss01.glif + ge-cy + ge-cy.glif + ge-cy.BGR + ge-cy.B_G_R_.glif + ge-cy.SRB + ge-cy.S_R_B_.glif + gehookcyr + gehookcyr.glif + gehookstrokecyr + gehookstrokecyr.glif + germandbls + germandbls.glif + germandbls.ss01 + germandbls.ss01.glif + gestrokecyr + gestrokecyr.glif + gestrokecyr.BSH + gestrokecyr.B_S_H_.glif + getailcyr + getailcyr.glif + gheupturn-cy + gheupturn-cy.glif + gjecyr + gjecyr.glif + gjecyr.SRB + gjecyr.S_R_B_.glif + grave + grave.glif + grave.case + grave.case.glif + greater + greater.glif + greaterequal + greaterequal.glif + guillemetleft + guillemetleft.glif + guillemetleft.case + guillemetleft.case.glif + guillemetright + guillemetright.glif + guillemetright.case + guillemetright.case.glif + guilsinglleft + guilsinglleft.glif + guilsinglleft.case + guilsinglleft.case.glif + guilsinglright + guilsinglright.glif + guilsinglright.case + guilsinglright.case.glif + h + h.glif + ha-cy + ha-cy.glif + haabkhcyr + haabkhcyr.glif + hahookcyr + hahookcyr.glif + hardsign-cy + hardsign-cy.glif + hardsign-cy.BGR + hardsign-cy.B_G_R_.glif + hardsign-cy.ss01 + hardsign-cy.ss01.glif + hastrokecyr + hastrokecyr.glif + hbar + hbar.glif + hcircumflex + hcircumflex.glif + heart + heart.glif + heartwhite + heartwhite.glif + hryvnia + hryvnia.glif + hundredmillionscomb-cy + hundredmillionscomb-cy.glif + hundredthousandscombcyr + hundredthousandscombcyr.glif + hungarumlaut + hungarumlaut.glif + hungarumlaut.case + hungarumlaut.case.glif + hwe-cy + hwe-cy.glif + hyphen + hyphen.glif + hyphen.case + hyphen.case.glif + i + i.glif + i-cy + i-cy.glif + ia-cy + ia-cy.glif + ia-cy.accented + ia-cy.accented.glif + ia-cy.ss01 + ia-cy.ss01.glif + iacute + iacute.glif + ibreve + ibreve.glif + icircumflex + icircumflex.glif + idieresis + idieresis.glif + idieresiscyr + idieresiscyr.glif + idotless + idotless.glif + ie-cy + ie-cy.glif + ie-cy.ss01 + ie-cy.ss01.glif + iebrevecyr + iebrevecyr.glif + iegravecyr + iegravecyr.glif + iegravecyr.SRB + iegravecyr.S_R_B_.glif + igrave + igrave.glif + igravecyr + igravecyr.glif + igravecyr.SRB + igravecyr.S_R_B_.glif + ii-cy + ii-cy.glif + ii-cy.BGR + ii-cy.B_G_R_.glif + ii-cy.accented + ii-cy.accented.glif + iishort-cy + iishort-cy.glif + iishort-cy.BGR + iishort-cy.B_G_R_.glif + ij + ij.glif + imacron + imacron.glif + imacroncyr + imacroncyr.glif + increment + increment.glif + infinity + infinity.glif + integral + integral.glif + io-cy + io-cy.glif + io-cy.accented + io-cy.accented.glif + io-cy.ss01 + io-cy.ss01.glif + iogonek + iogonek.glif + iota-cy + iota-cy.glif + iotifieda-cy + iotifieda-cy.glif + iotifieda-cy.BGR + iotifieda-cy.B_G_R_.glif + iotifieda-cy.hist + iotifieda-cy.hist.glif + ishortsharptailcyr + ishortsharptailcyr.glif + itilde + itilde.glif + iu-cy + iu-cy.glif + iu-cy.BGR + iu-cy.B_G_R_.glif + iu-cy.accented + iu-cy.accented.glif + izhitsacyr + izhitsacyr.glif + izhitsagravedblcyr + izhitsagravedblcyr.glif + j + j.glif + jcircumflex + jcircumflex.glif + jdotless + jdotless.glif + je-cy + je-cy.glif + k + k.glif + ka-cy + ka-cy.glif + ka-cy.BGR + ka-cy.B_G_R_.glif + kaaleutcyr + kaaleutcyr.glif + kabashkcyr + kabashkcyr.glif + kahookcyr + kahookcyr.glif + kastrokecyr + kastrokecyr.glif + katailcyr + katailcyr.glif + kaverticalstrokecyr + kaverticalstrokecyr.glif + kcommaaccent + kcommaaccent.glif + kgreenlandic + kgreenlandic.glif + kjecyr + kjecyr.glif + knightblack + knightblack.glif + knightwhite + knightwhite.glif + koppacyr + koppacyr.glif + ksicyr + ksicyr.glif + l + l.glif + l.ss01 + l.ss01.glif + lacute + lacute.glif + lacute.ss01 + lacute.ss01.glif + lcaron + lcaron.glif + lcaron.ss01 + lcaron.ss01.glif + lcommaaccent + lcommaaccent.glif + lcommaaccent.ss01 + lcommaaccent.ss01.glif + ldot + ldot.glif + ldot.ss01 + ldot.ss01.glif + leo + leo.glif + less + less.glif + lessequal + lessequal.glif + lhacyr + lhacyr.glif + ljecyr + ljecyr.glif + ljecyr.ss01 + ljecyr.ss01.glif + ljekomicyr + ljekomicyr.glif + longs + longs.glif + lslash + lslash.glif + lslash.ss01 + lslash.ss01.glif + m + m.glif + macron + macron.glif + macron-fwd + macron-fwd.glif + macron-fwd.alt + macron-fwd.alt.glif + macron.case + macron.case.glif + macronacute.SRB + macronacute.S_R_B_.glif + millionscombcyr + millionscombcyr.glif + minus + minus.glif + minute + minute.glif + mu + mu.glif + multiply + multiply.glif + n + n.glif + nacute + nacute.glif + napostrophe + napostrophe.glif + ncaron + ncaron.glif + ncommaaccent + ncommaaccent.glif + neptune + neptune.glif + nine + nine.glif + nine.osf + nine.osf.glif + nine.tf + nine.tf.glif + njecyr + njecyr.glif + njecyr.ss01 + njecyr.ss01.glif + njekomicyr + njekomicyr.glif + notequal + notequal.glif + ntilde + ntilde.glif + numbersign + numbersign.glif + numero + numero.glif + numero.ss01 + numero.ss01.glif + o + o.glif + o-cy + o-cy.glif + o-cy.accented + o-cy.accented.glif + oBinocular-cy + oB_inocular-cy.glif + oDoubleMonocular-cy + oD_oubleM_onocular-cy.glif + oMonocular-cy + oM_onocular-cy.glif + oacute + oacute.glif + obarcyr + obarcyr.glif + obardieresiscyr + obardieresiscyr.glif + obreve + obreve.glif + ocircumflex + ocircumflex.glif + odieresis + odieresis.glif + odieresiscyr + odieresiscyr.glif + oe + oe.glif + oe.ss01 + oe.ss01.glif + ogonek + ogonek.glif + ograve + ograve.glif + ohungarumlaut + ohungarumlaut.glif + omacron + omacron.glif + omegaBroad-cy + omegaB_road-cy.glif + omegacyr + omegacyr.glif + omegaroundcyr + omegaroundcyr.glif + omegatitlocyr + omegatitlocyr.glif + omultiocular-cy + omultiocular-cy.glif + omultiocular-cy.alt + omultiocular-cy.alt.glif + one + one.glif + one.osf + one.osf.glif + one.tf + one.tf.glif + onehalf + onehalf.glif + onequarter + onequarter.glif + onesuperior + onesuperior.glif + ordfeminine + ordfeminine.glif + ordmasculine + ordmasculine.glif + oslash + oslash.glif + oslashacute + oslashacute.glif + otcyr + otcyr.glif + otilde + otilde.glif + p + p.glif + p.ss01 + p.ss01.glif + palatcombcyr + palatcombcyr.glif + palochkacyr + palochkacyr.glif + paragraph + paragraph.glif + parenleft + parenleft.glif + parenleft.case + parenleft.case.glif + parenright + parenright.glif + parenright.case + parenright.case.glif + partialdiff + partialdiff.glif + pe-cy + pe-cy.glif + pe-cy.BGR + pe-cy.B_G_R_.glif + pe-cy.SRB + pe-cy.S_R_B_.glif + pehookcyr + pehookcyr.glif + percent + percent.glif + period + period.glif + periodcentered + periodcentered.glif + perthousand + perthousand.glif + petailcyr + petailcyr.glif + pi + pi.glif + plus + plus.glif + plusminus + plusminus.glif + pokrytiecombcyr + pokrytiecombcyr.glif + product + product.glif + proportional + proportional.glif + psicyr + psicyr.glif + q + q.glif + q.ss01 + q.ss01.glif + qacyr + qacyr.glif + question + question.glif + questiondown + questiondown.glif + questiondown.case + questiondown.case.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 + radical + radical.glif + rcaron + rcaron.glif + rcommaaccent + rcommaaccent.glif + registered + registered.glif + reversedzecyr + reversedzecyr.glif + rhacyr + rhacyr.glif + ring + ring.glif + ring.case + ring.case.glif + rookblack + rookblack.glif + ruble + ruble.glif + s + s.glif + sacute + sacute.glif + scaron + scaron.glif + scedilla + scedilla.glif + schwacyr + schwacyr.glif + schwadieresiscyr + schwadieresiscyr.glif + scircumflex + scircumflex.glif + scommaaccent + scommaaccent.glif + second + second.glif + section + section.glif + semicolon + semicolon.glif + semicolon.case + semicolon.case.glif + semisoftcyr + semisoftcyr.glif + seven + seven.glif + seven.osf + seven.osf.glif + seven.tf + seven.tf.glif + sha-cy + sha-cy.glif + sha-cy.BGR + sha-cy.B_G_R_.glif + shcha-cy + shcha-cy.glif + shcha-cy.BGR + shcha-cy.B_G_R_.glif + shhacyr + shhacyr.glif + shhatailcyr + shhatailcyr.glif + shwe-cy + shwe-cy.glif + six + six.glif + six.osf + six.osf.glif + six.tf + six.tf.glif + sjekomicyr + sjekomicyr.glif + slash + slash.glif + slash.case + slash.case.glif + softsign-cy + softsign-cy.glif + softsign-cy.BGR + softsign-cy.B_G_R_.glif + softsign-cy.ss01 + softsign-cy.ss01.glif + space + space.glif + spadewhite + spadewhite.glif + sterling + sterling.glif + summation + summation.glif + t + t.glif + t.ss01 + t.ss01.glif + tbar + tbar.glif + tbar.ss01 + tbar.ss01.glif + tcaron + tcaron.glif + tcaron.ss01 + tcaron.ss01.glif + tcedilla + tcedilla.glif + tcedilla.ss01 + tcedilla.ss01.glif + tche-cy + tche-cy.glif + tcommaaccent + tcommaaccent.glif + tcommaaccent.ss01 + tcommaaccent.ss01.glif + te-cy + te-cy.glif + te-cy.BGR + te-cy.B_G_R_.glif + te-cy.SRB + te-cy.S_R_B_.glif + te-cy.ss01 + te-cy.ss01.glif + tenge + tenge.glif + tenmillionscomb-cy + tenmillionscomb-cy.glif + tetailcyr + tetailcyr.glif + tetsecyr + tetsecyr.glif + tewithmiddlehook-cy + tewithmiddlehook-cy.glif + thorn + thorn.glif + thousandmillionscomb-cy + thousandmillionscomb-cy.glif + thousandscyr + thousandscyr.glif + thousandscyr.dnom + thousandscyr.dnom.glif + three + three.glif + three.osf + three.osf.glif + three.tf + three.tf.glif + threequarters + threequarters.glif + threesuperior + threesuperior.glif + tilde + tilde.glif + tilde.case + tilde.case.glif + titlocombcyr + titlocombcyr.glif + tjekomicyr + tjekomicyr.glif + trademark + trademark.glif + tse-cy + tse-cy.glif + tse-cy.BGR + tse-cy.B_G_R_.glif + tseReversed-cy + tseR_eversed-cy.glif + tshecyr + tshecyr.glif + tsse-cy + tsse-cy.glif + tswe-cy + tswe-cy.glif + twe-cy + twe-cy.glif + two + two.glif + two.osf + two.osf.glif + two.tf + two.tf.glif + twosuperior + twosuperior.glif + u + u.glif + u-cy + u-cy.glif + u-cy.accented + u-cy.accented.glif + uacute + uacute.glif + uacutedblcyr + uacutedblcyr.glif + ubreve + ubreve.glif + ucircumflex + ucircumflex.glif + udieresis + udieresis.glif + udieresiscyr + udieresiscyr.glif + ugrave + ugrave.glif + uhungarumlaut + uhungarumlaut.glif + ukMonograph-cy + ukM_onograph-cy.glif + ukcyr + ukcyr.glif + umacron + umacron.glif + umacroncyr + umacroncyr.glif + underscore + underscore.glif + uni1C80 + uni1C_80.glif + uni1C81 + uni1C_81.glif + uni1C82 + uni1C_82.glif + uni1C83 + uni1C_83.glif + uni1C84 + uni1C_84.glif + uni1C85 + uni1C_85.glif + uni1C86 + uni1C_86.glif + uni1C87 + uni1C_87.glif + uni1C88 + uni1C_88.glif + uni1EBC + uni1E_B_C_.glif + uni1EBD + uni1E_B_D_.glif + uni2010 + uni2010.glif + uni2DEE + uni2D_E_E_.glif + uni2DEE.case + uni2D_E_E_.case.glif + uniE000 + uniE_000.glif + uniE000.alt + uniE_000.alt.glif + uniE01A + uniE_01A_.glif + uniF43A + uniF_43A_.glif + uniF43B + uniF_43B_.glif + uniF45D + uniF_45D_.glif + uniF45E + uniF_45E_.glif + uniF45F + uniF_45F_.glif + uniF475 + uniF_475.glif + uniF476 + uniF_476.glif + uniF477 + uniF_477.glif + uniF478 + uniF_478.glif + uniF479 + uniF_479.glif + uniF498 + uniF_498.glif + uniF499 + uniF_499.glif + uniF49A + uniF_49A_.glif + uniF49B + uniF_49B_.glif + uniF49C + uniF_49C_.glif + uniF49D + uniF_49D_.glif + uniF49E + uniF_49E_.glif + uniF49F + uniF_49F_.glif + uniF4C6 + uniF_4C_6.glif + uniF4C7 + uniF_4C_7.glif + uniF4CC + uniF_4C_C_.glif + uniF4CD + uniF_4C_D_.glif + uniF4D2 + uniF_4D_2.glif + uniF4D3 + uniF_4D_3.glif + uniF4D4 + uniF_4D_4.glif + uniF4D5 + uniF_4D_5.glif + uniF4D6 + uniF_4D_6.glif + uniF4D7 + uniF_4D_7.glif + uniF4D8 + uniF_4D_8.glif + uniF4D9 + uniF_4D_9.glif + uniF50E + uniF_50E_.glif + uniF50F + uniF_50F_.glif + uniF510 + uniF_510.glif + uniF511 + uniF_511.glif + uniF512 + uniF_512.glif + uniF513 + uniF_513.glif + uniF514 + uniF_514.glif + uniF515 + uniF_515.glif + uniF516 + uniF_516.glif + uniF517 + uniF_517.glif + uniF518 + uniF_518.glif + uniF519 + uniF_519.glif + uniF51A + uniF_51A_.glif + uniF51B + uniF_51B_.glif + uniF51C + uniF_51C_.glif + uniF51D + uniF_51D_.glif + uniF51E + uniF_51E_.glif + uniF51F + uniF_51F_.glif + uniF521 + uniF_521.glif + uniF522 + uniF_522.glif + uniF523 + uniF_523.glif + uniF524 + uniF_524.glif + uniF525 + uniF_525.glif + uniF526 + uniF_526.glif + uniF527 + uniF_527.glif + uniF528 + uniF_528.glif + uniF529 + uniF_529.glif + uniF52A + uniF_52A_.glif + uniF52B + uniF_52B_.glif + uniF52C + uniF_52C_.glif + uniF52D + uniF_52D_.glif + uniF52E + uniF_52E_.glif + uniF52F + uniF_52F_.glif + uniF532 + uniF_532.glif + uniF533 + uniF_533.glif + uniF536 + uniF_536.glif + uniF537 + uniF_537.glif + uniF538 + uniF_538.glif + uniF539 + uniF_539.glif + uniF830 + uniF_830.glif + uniF831 + uniF_831.glif + uniF833 + uniF_833.glif + uniF834 + uniF_834.glif + uniF839 + uniF_839.glif + uniF83A + uniF_83A_.glif + uniF86F + uniF_86F_.glif + uniF870 + uniF_870.glif + uniF872 + uniF_872.glif + uniF873 + uniF_873.glif + uniF875 + uniF_875.glif + uniF876 + uniF_876.glif + uniF878 + uniF_878.glif + uniF879 + uniF_879.glif + uniF87B + uniF_87B_.glif + uniF87C + uniF_87C_.glif + uniF87E + uniF_87E_.glif + uniF87F + uniF_87F_.glif + uogonek + uogonek.glif + uring + uring.glif + ushort-cy + ushort-cy.glif + ustraightcyr + ustraightcyr.glif + ustraightstrokecyr + ustraightstrokecyr.glif + utilde + utilde.glif + v + v.glif + ve-cy + ve-cy.glif + ve-cy.BGR + ve-cy.B_G_R_.glif + ve-cy.ss01 + ve-cy.ss01.glif + virgo + virgo.glif + vzmetcomb-cy + vzmetcomb-cy.glif + w + w.glif + wacute + wacute.glif + wcircumflex + wcircumflex.glif + wdieresis + wdieresis.glif + wecyr + wecyr.glif + wgrave + wgrave.glif + x + x.glif + xatailcyr + xatailcyr.glif + y + y.glif + yacute + yacute.glif + yaecyr + yaecyr.glif + yatIotified-cy + yatI_otified-cy.glif + yatcyr + yatcyr.glif + yatcyr.BGR + yatcyr.B_G_R_.glif + ycircumflex + ycircumflex.glif + ydieresis + ydieresis.glif + yen + yen.glif + yen.ss01 + yen.ss01.glif + yerNeutral-cy + yerN_eutral-cy.glif + yeru-cy + yeru-cy.glif + yeru-cy.accented + yeru-cy.accented.glif + yeru-cy.ss01 + yeru-cy.ss01.glif + yeruBackyer-cy + yeruB_ackyer-cy.glif + yi-cy + yi-cy.glif + yi-cy.alt + yi-cy.alt.glif + ylongdieresiscyr + ylongdieresiscyr.glif + yn-cy + yn-cy.glif + yuReversed-cy + yuR_eversed-cy.glif + yusBlended-cy + yusB_lended-cy.glif + yusClosedlittle-cy + yusC_losedlittle-cy.glif + yusbigcyr + yusbigcyr.glif + yusbigiotifiedcyr + yusbigiotifiedcyr.glif + yusbigiotifiedcyr.BGR + yusbigiotifiedcyr.B_G_R_.glif + yusiotifiedClosedLittle-cy + yusiotifiedC_losedL_ittle-cy.glif + yuslittlecyr + yuslittlecyr.glif + yuslittleiotifiedcyr + yuslittleiotifiedcyr.glif + z + z.glif + zacute + zacute.glif + zcaron + zcaron.glif + zdotaccent + zdotaccent.glif + ze-cy + ze-cy.glif + ze-cy.BGR + ze-cy.B_G_R_.glif + zedieresiscyr + zedieresiscyr.glif + zemlya-cy + zemlya-cy.glif + zero + zero.glif + zero.osf + zero.osf.glif + zero.tf + zero.tf.glif + zetailcyr + zetailcyr.glif + zetailcyr.BSH + zetailcyr.B_S_H_.glif + zhe-cy + zhe-cy.glif + zhe-cy.BGR + zhe-cy.B_G_R_.glif + zhebrevecyr + zhebrevecyr.glif + zhedieresiscyr + zhedieresiscyr.glif + zhetailcyr + zhetailcyr.glif + zhwe-cy + zhwe-cy.glif + zjekomicyr + zjekomicyr.glif + + diff --git a/sources/FixelText-Thin.ufo/glyphs/copyright.glif b/sources/FixelText-Thin.ufo/glyphs/copyright.glif new file mode 100644 index 00000000..0b907f73 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/copyright.glif @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/crossedo-cy.glif b/sources/FixelText-Thin.ufo/glyphs/crossedo-cy.glif new file mode 100644 index 00000000..cf5557b1 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/crossedo-cy.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + com.fontlab.recipe + o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/crossedswords.glif b/sources/FixelText-Thin.ufo/glyphs/crossedswords.glif new file mode 100644 index 00000000..44e8bd16 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/crossedswords.glif @@ -0,0 +1,103 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/currency.glif b/sources/FixelText-Thin.ufo/glyphs/currency.glif new file mode 100644 index 00000000..129e7993 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/currency.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/d.glif b/sources/FixelText-Thin.ufo/glyphs/d.glif new file mode 100644 index 00000000..8bbe66a2 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/d.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/d.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/d.ss01.glif new file mode 100644 index 00000000..68e6af23 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/d.ss01.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/dagger.glif b/sources/FixelText-Thin.ufo/glyphs/dagger.glif new file mode 100644 index 00000000..a39932b0 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/dagger.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/daggerdbl.glif b/sources/FixelText-Thin.ufo/glyphs/daggerdbl.glif new file mode 100644 index 00000000..550f7fa3 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/daggerdbl.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/dcaron.glif b/sources/FixelText-Thin.ufo/glyphs/dcaron.glif new file mode 100644 index 00000000..d75897f0 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/dcaron.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + d+caron.salt + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/dcaron.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/dcaron.ss01.glif new file mode 100644 index 00000000..0ec692a5 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/dcaron.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + d.ss01+caron.salt + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/dchecyr.glif b/sources/FixelText-Thin.ufo/glyphs/dchecyr.glif new file mode 100644 index 00000000..8e9f6060 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/dchecyr.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + д+10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/dcroat.glif b/sources/FixelText-Thin.ufo/glyphs/dcroat.glif new file mode 100644 index 00000000..104ee425 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/dcroat.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + d + com.fontlab.metricsRight + |hbar + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/dcroat.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/dcroat.ss01.glif new file mode 100644 index 00000000..65a64478 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/dcroat.ss01.glif @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + d.ss01 + com.fontlab.metricsRight + |hbar + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/de-cy.B_G_R_.glif b/sources/FixelText-Thin.ufo/glyphs/de-cy.B_G_R_.glif new file mode 100644 index 00000000..562f818a --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/de-cy.B_G_R_.glif @@ -0,0 +1,77 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + q + com.fontlab.metricsRight + q + com.fontlab.recipe + uni1C81 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/de-cy.glif b/sources/FixelText-Thin.ufo/glyphs/de-cy.glif new file mode 100644 index 00000000..4fdc953c --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/de-cy.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/de-cy.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/de-cy.ss01.glif new file mode 100644 index 00000000..f8ea2892 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/de-cy.ss01.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/deS_oft-cy.glif b/sources/FixelText-Thin.ufo/glyphs/deS_oft-cy.glif new file mode 100644 index 00000000..b4ffeafd --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/deS_oft-cy.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + д + com.fontlab.metricsRight + ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/degree.glif b/sources/FixelText-Thin.ufo/glyphs/degree.glif new file mode 100644 index 00000000..bc525b06 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/degree.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/dekomicyr.glif b/sources/FixelText-Thin.ufo/glyphs/dekomicyr.glif new file mode 100644 index 00000000..c4c74e90 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/dekomicyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + d + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/diamondwhite-misc.glif b/sources/FixelText-Thin.ufo/glyphs/diamondwhite-misc.glif new file mode 100644 index 00000000..c9ddad83 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/diamondwhite-misc.glif @@ -0,0 +1,145 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/dieresis.alt.glif b/sources/FixelText-Thin.ufo/glyphs/dieresis.alt.glif new file mode 100644 index 00000000..c0ecb3e0 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/dieresis.alt.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 1,0.6,0.994,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/dieresis.case.glif b/sources/FixelText-Thin.ufo/glyphs/dieresis.case.glif new file mode 100644 index 00000000..7a5ed130 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/dieresis.case.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/dieresis.glif b/sources/FixelText-Thin.ufo/glyphs/dieresis.glif new file mode 100644 index 00000000..1e8a5ac1 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/dieresis.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/dieresisacute.glif b/sources/FixelText-Thin.ufo/glyphs/dieresisacute.glif new file mode 100644 index 00000000..b1eea369 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/dieresisacute.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/dieresiscase.alt.glif b/sources/FixelText-Thin.ufo/glyphs/dieresiscase.alt.glif new file mode 100644 index 00000000..e5e6ba0d --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/dieresiscase.alt.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 1,0.6,0.994,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/divide.glif b/sources/FixelText-Thin.ufo/glyphs/divide.glif new file mode 100644 index 00000000..af4f0ec7 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/divide.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/djecyr.glif b/sources/FixelText-Thin.ufo/glyphs/djecyr.glif new file mode 100644 index 00000000..fcf0efe9 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/djecyr.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hbar + com.fontlab.metricsRight + h + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/djekomicyr.glif b/sources/FixelText-Thin.ufo/glyphs/djekomicyr.glif new file mode 100644 index 00000000..b54d9c0e --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/djekomicyr.glif @@ -0,0 +1,73 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + d + com.fontlab.metricsRight + njekomicyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/djerv-cy.glif b/sources/FixelText-Thin.ufo/glyphs/djerv-cy.glif new file mode 100644 index 00000000..ade00b95 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/djerv-cy.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + r() + com.fontlab.metricsRight + п-30 + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/dollar.glif b/sources/FixelText-Thin.ufo/glyphs/dollar.glif new file mode 100644 index 00000000..7bc7054f --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/dollar.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + S + com.fontlab.metricsRight + S + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/dotaccent.case.glif b/sources/FixelText-Thin.ufo/glyphs/dotaccent.case.glif new file mode 100644 index 00000000..7c5e028e --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/dotaccent.case.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/dotaccent.glif b/sources/FixelText-Thin.ufo/glyphs/dotaccent.glif new file mode 100644 index 00000000..b2829598 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/dotaccent.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/doubleo-cy.glif b/sources/FixelText-Thin.ufo/glyphs/doubleo-cy.glif new file mode 100644 index 00000000..631e0b13 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/doubleo-cy.glif @@ -0,0 +1,91 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + com.fontlab.recipe + o_o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/dramsignarmn.glif b/sources/FixelText-Thin.ufo/glyphs/dramsignarmn.glif new file mode 100644 index 00000000..21746684 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/dramsignarmn.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/dwe-cy.glif b/sources/FixelText-Thin.ufo/glyphs/dwe-cy.glif new file mode 100644 index 00000000..9112b321 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/dwe-cy.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + д + com.fontlab.metricsRight + д + com.fontlab.recipe + д + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/dze-cy.glif b/sources/FixelText-Thin.ufo/glyphs/dze-cy.glif new file mode 100644 index 00000000..52f0b704 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/dze-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + s + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/dzeR_eversed-cy.glif b/sources/FixelText-Thin.ufo/glyphs/dzeR_eversed-cy.glif new file mode 100644 index 00000000..f4646e9a --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/dzeR_eversed-cy.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |s + com.fontlab.metricsRight + |s + com.fontlab.recipe + s + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/dzeabkhcyr.glif b/sources/FixelText-Thin.ufo/glyphs/dzeabkhcyr.glif new file mode 100644 index 00000000..ef74cf2b --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/dzeabkhcyr.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + z-30 + com.fontlab.metricsRight + з-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/dzelo-cy.glif b/sources/FixelText-Thin.ufo/glyphs/dzelo-cy.glif new file mode 100644 index 00000000..360f1b83 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/dzelo-cy.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/dzhecyr.glif b/sources/FixelText-Thin.ufo/glyphs/dzhecyr.glif new file mode 100644 index 00000000..9a27de37 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/dzhecyr.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/dzjekomicyr.glif b/sources/FixelText-Thin.ufo/glyphs/dzjekomicyr.glif new file mode 100644 index 00000000..6f07e055 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/dzjekomicyr.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + zjekomicyr + com.fontlab.metricsRight + ц-5 + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/dzwe-cy.glif b/sources/FixelText-Thin.ufo/glyphs/dzwe-cy.glif new file mode 100644 index 00000000..db794b4f --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/dzwe-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + s + com.fontlab.metricsRight + s + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/dzze-cy.glif b/sources/FixelText-Thin.ufo/glyphs/dzze-cy.glif new file mode 100644 index 00000000..9d694e41 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/dzze-cy.glif @@ -0,0 +1,84 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + д + com.fontlab.metricsRight + д-30 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/dzzhecyr.glif b/sources/FixelText-Thin.ufo/glyphs/dzzhecyr.glif new file mode 100644 index 00000000..1adb0e62 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/dzzhecyr.glif @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + д+5 + com.fontlab.metricsRight + ж+5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/e-cy.accented.glif b/sources/FixelText-Thin.ufo/glyphs/e-cy.accented.glif new file mode 100644 index 00000000..ce23d9c9 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/e-cy.accented.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+acute + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/e-cy.glif b/sources/FixelText-Thin.ufo/glyphs/e-cy.glif new file mode 100644 index 00000000..b35a8fbc --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/e-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + c + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/e-cy.hist.glif b/sources/FixelText-Thin.ufo/glyphs/e-cy.hist.glif new file mode 100644 index 00000000..8b872692 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/e-cy.hist.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + c + com.fontlab.recipe + uni1C83 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/e.glif b/sources/FixelText-Thin.ufo/glyphs/e.glif new file mode 100644 index 00000000..db18d891 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/e.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/e.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/e.ss01.glif new file mode 100644 index 00000000..5183160a --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/e.ss01.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + O-5 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/eacute.glif b/sources/FixelText-Thin.ufo/glyphs/eacute.glif new file mode 100644 index 00000000..7679d861 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/eacute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+acute + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/eacute.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/eacute.ss01.glif new file mode 100644 index 00000000..575a54b8 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/eacute.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+acute + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/ebreve.glif b/sources/FixelText-Thin.ufo/glyphs/ebreve.glif new file mode 100644 index 00000000..0465e4ce --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/ebreve.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+breve + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/ebreve.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/ebreve.ss01.glif new file mode 100644 index 00000000..56cb6896 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/ebreve.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+breve + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/ecaron.glif b/sources/FixelText-Thin.ufo/glyphs/ecaron.glif new file mode 100644 index 00000000..48960c9f --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/ecaron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+caron + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/ecaron.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/ecaron.ss01.glif new file mode 100644 index 00000000..a1786ada --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/ecaron.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+caron + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/ecircumflex.glif b/sources/FixelText-Thin.ufo/glyphs/ecircumflex.glif new file mode 100644 index 00000000..ce8173e1 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/ecircumflex.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+circumflex + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/ecircumflex.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/ecircumflex.ss01.glif new file mode 100644 index 00000000..eace2daa --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/ecircumflex.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+circumflex + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/edieresis.glif b/sources/FixelText-Thin.ufo/glyphs/edieresis.glif new file mode 100644 index 00000000..e99ec3d6 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/edieresis.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsLeft + e + com.fontlab.metricsRight + e + com.fontlab.recipe + e+dieresis + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/edieresis.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/edieresis.ss01.glif new file mode 100644 index 00000000..32954c38 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/edieresis.ss01.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsLeft + e + com.fontlab.metricsRight + e + com.fontlab.recipe + e.ss01+dieresis + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/edotaccent.glif b/sources/FixelText-Thin.ufo/glyphs/edotaccent.glif new file mode 100644 index 00000000..c29565c4 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/edotaccent.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+dotaccent + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/edotaccent.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/edotaccent.ss01.glif new file mode 100644 index 00000000..8a618e97 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/edotaccent.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+dotaccent + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/ef-cy.glif b/sources/FixelText-Thin.ufo/glyphs/ef-cy.glif new file mode 100644 index 00000000..cb2b7158 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/ef-cy.glif @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/egrave.glif b/sources/FixelText-Thin.ufo/glyphs/egrave.glif new file mode 100644 index 00000000..26780a31 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/egrave.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+grave + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/egrave.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/egrave.ss01.glif new file mode 100644 index 00000000..f5f8f601 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/egrave.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+grave + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/eight.glif b/sources/FixelText-Thin.ufo/glyphs/eight.glif new file mode 100644 index 00000000..620d7f42 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/eight.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/eight.osf.glif b/sources/FixelText-Thin.ufo/glyphs/eight.osf.glif new file mode 100644 index 00000000..5c060186 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/eight.osf.glif @@ -0,0 +1,15 @@ + + + + + + + + + com.fontlab.metricsLeft + eight + com.fontlab.metricsRight + eight + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/eight.tf.glif b/sources/FixelText-Thin.ufo/glyphs/eight.tf.glif new file mode 100644 index 00000000..382cb54d --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/eight.tf.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/eiotifiedcyr.B_G_R_.glif b/sources/FixelText-Thin.ufo/glyphs/eiotifiedcyr.B_G_R_.glif new file mode 100644 index 00000000..471995bd --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/eiotifiedcyr.B_G_R_.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + c + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/eiotifiedcyr.glif b/sources/FixelText-Thin.ufo/glyphs/eiotifiedcyr.glif new file mode 100644 index 00000000..3eea93d8 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/eiotifiedcyr.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + c + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/el-cy.B_G_R_.glif b/sources/FixelText-Thin.ufo/glyphs/el-cy.B_G_R_.glif new file mode 100644 index 00000000..ae15e191 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/el-cy.B_G_R_.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + v + com.fontlab.metricsRight + v + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/el-cy.glif b/sources/FixelText-Thin.ufo/glyphs/el-cy.glif new file mode 100644 index 00000000..9bdec83a --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/el-cy.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/el-cy.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/el-cy.ss01.glif new file mode 100644 index 00000000..6f44234b --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/el-cy.ss01.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/elS_oft-cy.glif b/sources/FixelText-Thin.ufo/glyphs/elS_oft-cy.glif new file mode 100644 index 00000000..8486f66a --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/elS_oft-cy.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/elhookcyr.glif b/sources/FixelText-Thin.ufo/glyphs/elhookcyr.glif new file mode 100644 index 00000000..0e0f3cfa --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/elhookcyr.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + н + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/ellipsis.glif b/sources/FixelText-Thin.ufo/glyphs/ellipsis.glif new file mode 100644 index 00000000..2de2605f --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/ellipsis.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/elmiddlehookcyr.glif b/sources/FixelText-Thin.ufo/glyphs/elmiddlehookcyr.glif new file mode 100644 index 00000000..d9024feb --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/elmiddlehookcyr.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + enmiddlehookcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/elsharptailcyr.glif b/sources/FixelText-Thin.ufo/glyphs/elsharptailcyr.glif new file mode 100644 index 00000000..6e6c804e --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/elsharptailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + ensharptailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/eltailcyr.glif b/sources/FixelText-Thin.ufo/glyphs/eltailcyr.glif new file mode 100644 index 00000000..5879ddb1 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/eltailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/em-cy.glif b/sources/FixelText-Thin.ufo/glyphs/em-cy.glif new file mode 100644 index 00000000..3a76071d --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/em-cy.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/emS_oft-cy.glif b/sources/FixelText-Thin.ufo/glyphs/emS_oft-cy.glif new file mode 100644 index 00000000..3ea45e60 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/emS_oft-cy.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + м + com.fontlab.metricsRight + ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/emacron.glif b/sources/FixelText-Thin.ufo/glyphs/emacron.glif new file mode 100644 index 00000000..cbdd5125 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/emacron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+macron + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/emacron.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/emacron.ss01.glif new file mode 100644 index 00000000..4f9a0dee --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/emacron.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+macron + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/emdash.case.glif b/sources/FixelText-Thin.ufo/glyphs/emdash.case.glif new file mode 100644 index 00000000..3a861282 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/emdash.case.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/emdash.glif b/sources/FixelText-Thin.ufo/glyphs/emdash.glif new file mode 100644 index 00000000..c3af9db6 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/emdash.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/emsharptailcyr.glif b/sources/FixelText-Thin.ufo/glyphs/emsharptailcyr.glif new file mode 100644 index 00000000..da989638 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/emsharptailcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + м + com.fontlab.metricsRight + ensharptailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/en-cy.glif b/sources/FixelText-Thin.ufo/glyphs/en-cy.glif new file mode 100644 index 00000000..f5ccd800 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/en-cy.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/enclosingcirclecomb.glif b/sources/FixelText-Thin.ufo/glyphs/enclosingcirclecomb.glif new file mode 100644 index 00000000..c28acd13 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/enclosingcirclecomb.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/endash.case.glif b/sources/FixelText-Thin.ufo/glyphs/endash.case.glif new file mode 100644 index 00000000..4cb6a99f --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/endash.case.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/endash.glif b/sources/FixelText-Thin.ufo/glyphs/endash.glif new file mode 100644 index 00000000..eaf9f41e --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/endash.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/eng.glif b/sources/FixelText-Thin.ufo/glyphs/eng.glif new file mode 100644 index 00000000..fc33b406 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/eng.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + n + com.fontlab.metricsRight + dotlessj + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/engecyr.glif b/sources/FixelText-Thin.ufo/glyphs/engecyr.glif new file mode 100644 index 00000000..260f1121 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/engecyr.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + ґ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/enhookcyr.glif b/sources/FixelText-Thin.ufo/glyphs/enhookcyr.glif new file mode 100644 index 00000000..60b5e92d --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/enhookcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/enhookleftcyr.glif b/sources/FixelText-Thin.ufo/glyphs/enhookleftcyr.glif new file mode 100644 index 00000000..ef8e9d60 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/enhookleftcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + j + com.fontlab.metricsRight + н + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/enmiddlehookcyr.glif b/sources/FixelText-Thin.ufo/glyphs/enmiddlehookcyr.glif new file mode 100644 index 00000000..d66994b2 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/enmiddlehookcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + softsign-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/ensharptailcyr.glif b/sources/FixelText-Thin.ufo/glyphs/ensharptailcyr.glif new file mode 100644 index 00000000..4324ca7c --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/ensharptailcyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + д + com.fontlab.recipe + entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/entailcyr.glif b/sources/FixelText-Thin.ufo/glyphs/entailcyr.glif new file mode 100644 index 00000000..5a69739c --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/entailcyr.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + ц + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/eogonek.glif b/sources/FixelText-Thin.ufo/glyphs/eogonek.glif new file mode 100644 index 00000000..8d78dca4 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/eogonek.glif @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + e+ogonek + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/eogonek.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/eogonek.ss01.glif new file mode 100644 index 00000000..b73e2247 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/eogonek.ss01.glif @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + e.ss01+ogonek + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/equal.glif b/sources/FixelText-Thin.ufo/glyphs/equal.glif new file mode 100644 index 00000000..29321c20 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/equal.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/er-cy.glif b/sources/FixelText-Thin.ufo/glyphs/er-cy.glif new file mode 100644 index 00000000..48e39d07 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/er-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + p + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/er-cy.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/er-cy.ss01.glif new file mode 100644 index 00000000..6c8999cc --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/er-cy.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + p.ss01 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/ereversed-cy.accented.glif b/sources/FixelText-Thin.ufo/glyphs/ereversed-cy.accented.glif new file mode 100644 index 00000000..19accfb2 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/ereversed-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + э+acute + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/ereversed-cy.glif b/sources/FixelText-Thin.ufo/glyphs/ereversed-cy.glif new file mode 100644 index 00000000..21c899b4 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/ereversed-cy.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |c + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/ereverseddieresiscyr.glif b/sources/FixelText-Thin.ufo/glyphs/ereverseddieresiscyr.glif new file mode 100644 index 00000000..d73286b8 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/ereverseddieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ereversed-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/ertickcyr.glif b/sources/FixelText-Thin.ufo/glyphs/ertickcyr.glif new file mode 100644 index 00000000..5ed18670 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/ertickcyr.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + p + com.fontlab.metricsRight + p + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/es-cy.glif b/sources/FixelText-Thin.ufo/glyphs/es-cy.glif new file mode 100644 index 00000000..ef1bf7cc --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/es-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/estailcyr.B_S_H_.glif b/sources/FixelText-Thin.ufo/glyphs/estailcyr.B_S_H_.glif new file mode 100644 index 00000000..c42e9c08 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/estailcyr.B_S_H_.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + c + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/estailcyr.C_H_U_.glif b/sources/FixelText-Thin.ufo/glyphs/estailcyr.C_H_U_.glif new file mode 100644 index 00000000..96373d87 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/estailcyr.C_H_U_.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+cedilla + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/estailcyr.glif b/sources/FixelText-Thin.ufo/glyphs/estailcyr.glif new file mode 100644 index 00000000..81602cb2 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/estailcyr.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + с + com.fontlab.metricsRight + с + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/estimated.glif b/sources/FixelText-Thin.ufo/glyphs/estimated.glif new file mode 100644 index 00000000..442e7071 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/estimated.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/eth.glif b/sources/FixelText-Thin.ufo/glyphs/eth.glif new file mode 100644 index 00000000..d5ccd915 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/eth.glif @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/eturned.glif b/sources/FixelText-Thin.ufo/glyphs/eturned.glif new file mode 100644 index 00000000..ee6f41f5 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/eturned.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + schwacyr + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/euro.glif b/sources/FixelText-Thin.ufo/glyphs/euro.glif new file mode 100644 index 00000000..9412e8f0 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/euro.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + C + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/exclam.glif b/sources/FixelText-Thin.ufo/glyphs/exclam.glif new file mode 100644 index 00000000..2f6b224f --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/exclam.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/exclamdown.case.glif b/sources/FixelText-Thin.ufo/glyphs/exclamdown.case.glif new file mode 100644 index 00000000..1622898c --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/exclamdown.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + exclamdown + com.fontlab.metricsRight + exclamdown + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/exclamdown.glif b/sources/FixelText-Thin.ufo/glyphs/exclamdown.glif new file mode 100644 index 00000000..ca8d3d64 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/exclamdown.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/f.glif b/sources/FixelText-Thin.ufo/glyphs/f.glif new file mode 100644 index 00000000..a1028bcd --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/f.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/f.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/f.ss01.glif new file mode 100644 index 00000000..0be88d48 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/f.ss01.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/f_f.glif b/sources/FixelText-Thin.ufo/glyphs/f_f.glif new file mode 100644 index 00000000..b263f0a2 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/f_f.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f + com.fontlab.metricsRight + f + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/f_f.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/f_f.ss01.glif new file mode 100644 index 00000000..df8f51d2 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/f_f.ss01.glif @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f.ss01 + com.fontlab.metricsRight + f.ss01 + com.fontlab.recipe + f.ss01_f.ss01 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/f_f_i.glif b/sources/FixelText-Thin.ufo/glyphs/f_f_i.glif new file mode 100644 index 00000000..548cd059 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/f_f_i.glif @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f + com.fontlab.metricsRight + i + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/f_f_i.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/f_f_i.ss01.glif new file mode 100644 index 00000000..d4a51c67 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/f_f_i.ss01.glif @@ -0,0 +1,88 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f.ss01 + com.fontlab.metricsRight + i + com.fontlab.recipe + f.ss01_f.ss01_i + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/f_f_l.glif b/sources/FixelText-Thin.ufo/glyphs/f_f_l.glif new file mode 100644 index 00000000..15a23b32 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/f_f_l.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f + com.fontlab.metricsRight + l + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/f_f_l.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/f_f_l.ss01.glif new file mode 100644 index 00000000..42911abf --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/f_f_l.ss01.glif @@ -0,0 +1,86 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f.ss01 + com.fontlab.metricsRight + l.ss01 + com.fontlab.recipe + f.ss01_f.ss01_l.ss01 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/fi.glif b/sources/FixelText-Thin.ufo/glyphs/fi.glif new file mode 100644 index 00000000..39e70c24 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/fi.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f + com.fontlab.metricsRight + i + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/fi.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/fi.ss01.glif new file mode 100644 index 00000000..91635055 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/fi.ss01.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f.ss01 + com.fontlab.metricsRight + i + com.fontlab.recipe + f.ss01_i + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/fitacyr.glif b/sources/FixelText-Thin.ufo/glyphs/fitacyr.glif new file mode 100644 index 00000000..9ea48a4a --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/fitacyr.glif @@ -0,0 +1,76 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + obarcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/five.glif b/sources/FixelText-Thin.ufo/glyphs/five.glif new file mode 100644 index 00000000..4c67fbbe --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/five.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/five.osf.glif b/sources/FixelText-Thin.ufo/glyphs/five.osf.glif new file mode 100644 index 00000000..ac8fc32c --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/five.osf.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + five + com.fontlab.metricsRight + five + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/five.tf.glif b/sources/FixelText-Thin.ufo/glyphs/five.tf.glif new file mode 100644 index 00000000..4a0772ed --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/five.tf.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/fl.glif b/sources/FixelText-Thin.ufo/glyphs/fl.glif new file mode 100644 index 00000000..3a9df591 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/fl.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f + com.fontlab.metricsRight + l + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/fl.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/fl.ss01.glif new file mode 100644 index 00000000..1054c505 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/fl.ss01.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f.ss01 + com.fontlab.metricsRight + l.ss01 + com.fontlab.recipe + f.ss01_l.ss01 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/floretteblack.glif b/sources/FixelText-Thin.ufo/glyphs/floretteblack.glif new file mode 100644 index 00000000..f96bfb21 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/floretteblack.glif @@ -0,0 +1,522 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/floretteoutlinedpetalledblackeight.glif b/sources/FixelText-Thin.ufo/glyphs/floretteoutlinedpetalledblackeight.glif new file mode 100644 index 00000000..2a5eac06 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/floretteoutlinedpetalledblackeight.glif @@ -0,0 +1,693 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/florettewhite.glif b/sources/FixelText-Thin.ufo/glyphs/florettewhite.glif new file mode 100644 index 00000000..e135cdf0 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/florettewhite.glif @@ -0,0 +1,417 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/florin.glif b/sources/FixelText-Thin.ufo/glyphs/florin.glif new file mode 100644 index 00000000..333140aa --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/florin.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/flower.glif b/sources/FixelText-Thin.ufo/glyphs/flower.glif new file mode 100644 index 00000000..90d37008 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/flower.glif @@ -0,0 +1,278 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/four.glif b/sources/FixelText-Thin.ufo/glyphs/four.glif new file mode 100644 index 00000000..0adf2109 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/four.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/four.osf.glif b/sources/FixelText-Thin.ufo/glyphs/four.osf.glif new file mode 100644 index 00000000..7b9beab1 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/four.osf.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + four + com.fontlab.metricsRight + four + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/four.tf.glif b/sources/FixelText-Thin.ufo/glyphs/four.tf.glif new file mode 100644 index 00000000..6cf18924 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/four.tf.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/fraction.glif b/sources/FixelText-Thin.ufo/glyphs/fraction.glif new file mode 100644 index 00000000..e06de5bc --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/fraction.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/g.glif b/sources/FixelText-Thin.ufo/glyphs/g.glif new file mode 100644 index 00000000..00b74921 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/g.glif @@ -0,0 +1,94 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/g.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/g.ss01.glif new file mode 100644 index 00000000..bacd4c8d --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/g.ss01.glif @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/gacute.glif b/sources/FixelText-Thin.ufo/glyphs/gacute.glif new file mode 100644 index 00000000..f24abb66 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/gacute.glif @@ -0,0 +1,109 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + g+acute + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/gacute.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/gacute.ss01.glif new file mode 100644 index 00000000..870272e2 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/gacute.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + g.ss01+acute + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/gbreve.glif b/sources/FixelText-Thin.ufo/glyphs/gbreve.glif new file mode 100644 index 00000000..fbca988f --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/gbreve.glif @@ -0,0 +1,119 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + g+breve + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/gbreve.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/gbreve.ss01.glif new file mode 100644 index 00000000..ef2a732f --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/gbreve.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + g.ss01+breve + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/gcircumflex.glif b/sources/FixelText-Thin.ufo/glyphs/gcircumflex.glif new file mode 100644 index 00000000..04261fcd --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/gcircumflex.glif @@ -0,0 +1,113 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + g+circumflex + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/gcircumflex.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/gcircumflex.ss01.glif new file mode 100644 index 00000000..2baa482e --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/gcircumflex.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + g.ss01+circumflex + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/gcommaaccent.glif b/sources/FixelText-Thin.ufo/glyphs/gcommaaccent.glif new file mode 100644 index 00000000..1a158e6a --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/gcommaaccent.glif @@ -0,0 +1,121 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + g+commaaccentcomb.salt + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/gcommaaccent.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/gcommaaccent.ss01.glif new file mode 100644 index 00000000..2055a1a2 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/gcommaaccent.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + g.ss01+commaaccentcomb.salt + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/gdotaccent.glif b/sources/FixelText-Thin.ufo/glyphs/gdotaccent.glif new file mode 100644 index 00000000..e63d8480 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/gdotaccent.glif @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + g+dotaccent + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/gdotaccent.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/gdotaccent.ss01.glif new file mode 100644 index 00000000..2db3d665 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/gdotaccent.ss01.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + g.ss01+dotaccent + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/ge-cy.B_G_R_.glif b/sources/FixelText-Thin.ufo/glyphs/ge-cy.B_G_R_.glif new file mode 100644 index 00000000..b4b39121 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/ge-cy.B_G_R_.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |s+5 + com.fontlab.metricsRight + |s+5 + com.fontlab.recipe + dzeReversed-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/ge-cy.S_R_B_.glif b/sources/FixelText-Thin.ufo/glyphs/ge-cy.S_R_B_.glif new file mode 100644 index 00000000..0599587a --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/ge-cy.S_R_B_.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + iota-cy+macron + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/ge-cy.glif b/sources/FixelText-Thin.ufo/glyphs/ge-cy.glif new file mode 100644 index 00000000..ba14c04c --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/ge-cy.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + т + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/gehookcyr.glif b/sources/FixelText-Thin.ufo/glyphs/gehookcyr.glif new file mode 100644 index 00000000..5b11e857 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/gehookcyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + г + com.fontlab.metricsRight + enmiddlehookcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/gehookstrokecyr.glif b/sources/FixelText-Thin.ufo/glyphs/gehookstrokecyr.glif new file mode 100644 index 00000000..f58d1313 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/gehookstrokecyr.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + gestrokecyr + com.fontlab.metricsRight + gestrokecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/germandbls.glif b/sources/FixelText-Thin.ufo/glyphs/germandbls.glif new file mode 100644 index 00000000..aba18cca --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/germandbls.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + h-5 + com.fontlab.metricsRight + з + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/germandbls.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/germandbls.ss01.glif new file mode 100644 index 00000000..3dbe2602 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/germandbls.ss01.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f.ss01 + com.fontlab.metricsRight + з + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/gestrokecyr.B_S_H_.glif b/sources/FixelText-Thin.ufo/glyphs/gestrokecyr.B_S_H_.glif new file mode 100644 index 00000000..3602d347 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/gestrokecyr.B_S_H_.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + г + com.fontlab.metricsRight + gestrokecyr + com.fontlab.recipe + gestrokecyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/gestrokecyr.glif b/sources/FixelText-Thin.ufo/glyphs/gestrokecyr.glif new file mode 100644 index 00000000..b407d965 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/gestrokecyr.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + г + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/getailcyr.glif b/sources/FixelText-Thin.ufo/glyphs/getailcyr.glif new file mode 100644 index 00000000..9f4ba492 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/getailcyr.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + г + com.fontlab.metricsRight + г + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/gheupturn-cy.glif b/sources/FixelText-Thin.ufo/glyphs/gheupturn-cy.glif new file mode 100644 index 00000000..947aa4a4 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/gheupturn-cy.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + г + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/gjecyr.S_R_B_.glif b/sources/FixelText-Thin.ufo/glyphs/gjecyr.S_R_B_.glif new file mode 100644 index 00000000..4ed71d52 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/gjecyr.S_R_B_.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + iota-cy+macronacute.SRB + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/gjecyr.glif b/sources/FixelText-Thin.ufo/glyphs/gjecyr.glif new file mode 100644 index 00000000..c4b20961 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/gjecyr.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/grave.case.glif b/sources/FixelText-Thin.ufo/glyphs/grave.case.glif new file mode 100644 index 00000000..8b667153 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/grave.case.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/grave.glif b/sources/FixelText-Thin.ufo/glyphs/grave.glif new file mode 100644 index 00000000..47c914f7 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/grave.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/greater.glif b/sources/FixelText-Thin.ufo/glyphs/greater.glif new file mode 100644 index 00000000..080ce465 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/greater.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |less + com.fontlab.metricsRight + |less + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/greaterequal.glif b/sources/FixelText-Thin.ufo/glyphs/greaterequal.glif new file mode 100644 index 00000000..993a5b42 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/greaterequal.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/guillemetleft.case.glif b/sources/FixelText-Thin.ufo/glyphs/guillemetleft.case.glif new file mode 100644 index 00000000..9ac3d670 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/guillemetleft.case.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + guilsinglleft + com.fontlab.metricsRight + guilsinglleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/guillemetleft.glif b/sources/FixelText-Thin.ufo/glyphs/guillemetleft.glif new file mode 100644 index 00000000..72f57417 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/guillemetleft.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + guilsinglleft + com.fontlab.metricsRight + guilsinglleft + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/guillemetright.case.glif b/sources/FixelText-Thin.ufo/glyphs/guillemetright.case.glif new file mode 100644 index 00000000..76722d71 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/guillemetright.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |guillemetleft.case + com.fontlab.metricsRight + |guillemetleft.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/guillemetright.glif b/sources/FixelText-Thin.ufo/glyphs/guillemetright.glif new file mode 100644 index 00000000..dc113eb8 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/guillemetright.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |guilsinglleft + com.fontlab.metricsRight + |guilsinglleft + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/guilsinglleft.case.glif b/sources/FixelText-Thin.ufo/glyphs/guilsinglleft.case.glif new file mode 100644 index 00000000..920634f5 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/guilsinglleft.case.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/guilsinglleft.glif b/sources/FixelText-Thin.ufo/glyphs/guilsinglleft.glif new file mode 100644 index 00000000..e0d8e7b9 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/guilsinglleft.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/guilsinglright.case.glif b/sources/FixelText-Thin.ufo/glyphs/guilsinglright.case.glif new file mode 100644 index 00000000..662121dd --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/guilsinglright.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |guilsinglleft + com.fontlab.metricsRight + |guilsinglleft + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/guilsinglright.glif b/sources/FixelText-Thin.ufo/glyphs/guilsinglright.glif new file mode 100644 index 00000000..1a58f570 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/guilsinglright.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + |guilsinglleft + com.fontlab.metricsRight + |guilsinglleft + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/h.glif b/sources/FixelText-Thin.ufo/glyphs/h.glif new file mode 100644 index 00000000..e367998a --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/h.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + com.fontlab.metricsRight + n + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/ha-cy.glif b/sources/FixelText-Thin.ufo/glyphs/ha-cy.glif new file mode 100644 index 00000000..530e6349 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/ha-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + x + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/haabkhcyr.glif b/sources/FixelText-Thin.ufo/glyphs/haabkhcyr.glif new file mode 100644 index 00000000..0a6dc9ae --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/haabkhcyr.glif @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + |o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/hahookcyr.glif b/sources/FixelText-Thin.ufo/glyphs/hahookcyr.glif new file mode 100644 index 00000000..b5f81e40 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/hahookcyr.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + x + com.fontlab.metricsRight + x + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/hardsign-cy.B_G_R_.glif b/sources/FixelText-Thin.ufo/glyphs/hardsign-cy.B_G_R_.glif new file mode 100644 index 00000000..b878a394 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/hardsign-cy.B_G_R_.glif @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/hardsign-cy.glif b/sources/FixelText-Thin.ufo/glyphs/hardsign-cy.glif new file mode 100644 index 00000000..0366f77f --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/hardsign-cy.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/hardsign-cy.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/hardsign-cy.ss01.glif new file mode 100644 index 00000000..d97e6549 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/hardsign-cy.ss01.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/hastrokecyr.glif b/sources/FixelText-Thin.ufo/glyphs/hastrokecyr.glif new file mode 100644 index 00000000..7603e4cb --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/hastrokecyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + x + com.fontlab.metricsRight + x + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/hbar.glif b/sources/FixelText-Thin.ufo/glyphs/hbar.glif new file mode 100644 index 00000000..88f0773c --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/hbar.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + h + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/hcircumflex.glif b/sources/FixelText-Thin.ufo/glyphs/hcircumflex.glif new file mode 100644 index 00000000..0696d7e6 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/hcircumflex.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + h+circumflex.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/heart.glif b/sources/FixelText-Thin.ufo/glyphs/heart.glif new file mode 100644 index 00000000..2f50e60e --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/heart.glif @@ -0,0 +1,320 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/heartwhite.glif b/sources/FixelText-Thin.ufo/glyphs/heartwhite.glif new file mode 100644 index 00000000..73987819 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/heartwhite.glif @@ -0,0 +1,189 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/hryvnia.glif b/sources/FixelText-Thin.ufo/glyphs/hryvnia.glif new file mode 100644 index 00000000..3473b84a --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/hryvnia.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/hundredmillionscomb-cy.glif b/sources/FixelText-Thin.ufo/glyphs/hundredmillionscomb-cy.glif new file mode 100644 index 00000000..d4c0ed1a --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/hundredmillionscomb-cy.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/hundredthousandscombcyr.glif b/sources/FixelText-Thin.ufo/glyphs/hundredthousandscombcyr.glif new file mode 100644 index 00000000..c0f89ad9 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/hundredthousandscombcyr.glif @@ -0,0 +1,141 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/hungarumlaut.case.glif b/sources/FixelText-Thin.ufo/glyphs/hungarumlaut.case.glif new file mode 100644 index 00000000..b2796c8a --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/hungarumlaut.case.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/hungarumlaut.glif b/sources/FixelText-Thin.ufo/glyphs/hungarumlaut.glif new file mode 100644 index 00000000..a06726d4 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/hungarumlaut.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/hwe-cy.glif b/sources/FixelText-Thin.ufo/glyphs/hwe-cy.glif new file mode 100644 index 00000000..ef7da369 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/hwe-cy.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + h + com.fontlab.metricsRight + h + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/hyphen.case.glif b/sources/FixelText-Thin.ufo/glyphs/hyphen.case.glif new file mode 100644 index 00000000..c9988224 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/hyphen.case.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.metricsLeft + hyphen + com.fontlab.metricsRight + hyphen + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/hyphen.glif b/sources/FixelText-Thin.ufo/glyphs/hyphen.glif new file mode 100644 index 00000000..f3d13cae --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/hyphen.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/i-cy.glif b/sources/FixelText-Thin.ufo/glyphs/i-cy.glif new file mode 100644 index 00000000..a9e0cd49 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/i-cy.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + i + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/i.glif b/sources/FixelText-Thin.ufo/glyphs/i.glif new file mode 100644 index 00000000..bfa0e2b2 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/i.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + dotlessi+dotaccent + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/ia-cy.accented.glif b/sources/FixelText-Thin.ufo/glyphs/ia-cy.accented.glif new file mode 100644 index 00000000..bff8eb0f --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/ia-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + я+acute + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/ia-cy.glif b/sources/FixelText-Thin.ufo/glyphs/ia-cy.glif new file mode 100644 index 00000000..52e23d5d --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/ia-cy.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/ia-cy.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/ia-cy.ss01.glif new file mode 100644 index 00000000..9f08d9da --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/ia-cy.ss01.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/iacute.glif b/sources/FixelText-Thin.ufo/glyphs/iacute.glif new file mode 100644 index 00000000..85895183 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/iacute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + dotlessi+acute + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/ibreve.glif b/sources/FixelText-Thin.ufo/glyphs/ibreve.glif new file mode 100644 index 00000000..112b8c61 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/ibreve.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + dotlessi+breve + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/icircumflex.glif b/sources/FixelText-Thin.ufo/glyphs/icircumflex.glif new file mode 100644 index 00000000..71daac3c --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/icircumflex.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + dotlessi+circumflex + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/idieresis.glif b/sources/FixelText-Thin.ufo/glyphs/idieresis.glif new file mode 100644 index 00000000..0d98a0da --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/idieresis.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + idotless+dieresis.alt + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/idieresiscyr.glif b/sources/FixelText-Thin.ufo/glyphs/idieresiscyr.glif new file mode 100644 index 00000000..27fbc0d6 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/idieresiscyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ii-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/idotless.glif b/sources/FixelText-Thin.ufo/glyphs/idotless.glif new file mode 100644 index 00000000..b9364dd8 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/idotless.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/ie-cy.glif b/sources/FixelText-Thin.ufo/glyphs/ie-cy.glif new file mode 100644 index 00000000..24b4554c --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/ie-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/ie-cy.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/ie-cy.ss01.glif new file mode 100644 index 00000000..0157d9e2 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/ie-cy.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/iebrevecyr.glif b/sources/FixelText-Thin.ufo/glyphs/iebrevecyr.glif new file mode 100644 index 00000000..034ec105 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/iebrevecyr.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+breve + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/iegravecyr.S_R_B_.glif b/sources/FixelText-Thin.ufo/glyphs/iegravecyr.S_R_B_.glif new file mode 100644 index 00000000..20fdd0e3 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/iegravecyr.S_R_B_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e.ss01+grave + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/iegravecyr.glif b/sources/FixelText-Thin.ufo/glyphs/iegravecyr.glif new file mode 100644 index 00000000..b847eeda --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/iegravecyr.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+grave + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/igrave.glif b/sources/FixelText-Thin.ufo/glyphs/igrave.glif new file mode 100644 index 00000000..a1c75cd2 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/igrave.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + dotlessi+grave + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/igravecyr.S_R_B_.glif b/sources/FixelText-Thin.ufo/glyphs/igravecyr.S_R_B_.glif new file mode 100644 index 00000000..79840214 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/igravecyr.S_R_B_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+grave + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/igravecyr.glif b/sources/FixelText-Thin.ufo/glyphs/igravecyr.glif new file mode 100644 index 00000000..a3e14c27 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/igravecyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ii-cy+grave + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/ii-cy.B_G_R_.glif b/sources/FixelText-Thin.ufo/glyphs/ii-cy.B_G_R_.glif new file mode 100644 index 00000000..de7ccf9c --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/ii-cy.B_G_R_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/ii-cy.accented.glif b/sources/FixelText-Thin.ufo/glyphs/ii-cy.accented.glif new file mode 100644 index 00000000..01b21039 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/ii-cy.accented.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + и+acute + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/ii-cy.glif b/sources/FixelText-Thin.ufo/glyphs/ii-cy.glif new file mode 100644 index 00000000..19041698 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/ii-cy.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/iishort-cy.B_G_R_.glif b/sources/FixelText-Thin.ufo/glyphs/iishort-cy.B_G_R_.glif new file mode 100644 index 00000000..5869c637 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/iishort-cy.B_G_R_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/iishort-cy.glif b/sources/FixelText-Thin.ufo/glyphs/iishort-cy.glif new file mode 100644 index 00000000..6f3a1ef2 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/iishort-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + icyr+breve + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/ij.glif b/sources/FixelText-Thin.ufo/glyphs/ij.glif new file mode 100644 index 00000000..b6bac0f4 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/ij.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + i + com.fontlab.metricsRight + j + com.fontlab.recipe + i_j + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/imacron.glif b/sources/FixelText-Thin.ufo/glyphs/imacron.glif new file mode 100644 index 00000000..e5231367 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/imacron.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =5 + com.fontlab.metricsRight + =5 + com.fontlab.recipe + idotless+macron + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/imacroncyr.glif b/sources/FixelText-Thin.ufo/glyphs/imacroncyr.glif new file mode 100644 index 00000000..f43724e7 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/imacroncyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ii-cy+macron + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/increment.glif b/sources/FixelText-Thin.ufo/glyphs/increment.glif new file mode 100644 index 00000000..36e39374 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/increment.glif @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/infinity.glif b/sources/FixelText-Thin.ufo/glyphs/infinity.glif new file mode 100644 index 00000000..34e47696 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/infinity.glif @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/integral.glif b/sources/FixelText-Thin.ufo/glyphs/integral.glif new file mode 100644 index 00000000..b7b53c88 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/integral.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/io-cy.accented.glif b/sources/FixelText-Thin.ufo/glyphs/io-cy.accented.glif new file mode 100644 index 00000000..b120f233 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/io-cy.accented.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsLeft + e + com.fontlab.metricsRight + e + com.fontlab.recipe + e+dieresisacute + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/io-cy.glif b/sources/FixelText-Thin.ufo/glyphs/io-cy.glif new file mode 100644 index 00000000..79feb0d4 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/io-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + edieresis + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/io-cy.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/io-cy.ss01.glif new file mode 100644 index 00000000..0865f582 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/io-cy.ss01.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + edieresis.ss01 + com.schriftgestaltung.Glyphs.ComponentInfo + + + alignment + -1 + index + 0 + name + edieresis.ss01 + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/iogonek.glif b/sources/FixelText-Thin.ufo/glyphs/iogonek.glif new file mode 100644 index 00000000..df075521 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/iogonek.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + i+ogonek + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/iota-cy.glif b/sources/FixelText-Thin.ufo/glyphs/iota-cy.glif new file mode 100644 index 00000000..0a46afc1 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/iota-cy.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l.ss01 + com.fontlab.metricsRight + l.ss01 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/iotifieda-cy.B_G_R_.glif b/sources/FixelText-Thin.ufo/glyphs/iotifieda-cy.B_G_R_.glif new file mode 100644 index 00000000..273f6467 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/iotifieda-cy.B_G_R_.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + el-cy.BGR + com.fontlab.recipe + iotifieda-cy + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/iotifieda-cy.glif b/sources/FixelText-Thin.ufo/glyphs/iotifieda-cy.glif new file mode 100644 index 00000000..4054daad --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/iotifieda-cy.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + yusClosedlittle-cy + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/iotifieda-cy.hist.glif b/sources/FixelText-Thin.ufo/glyphs/iotifieda-cy.hist.glif new file mode 100644 index 00000000..d8a48c66 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/iotifieda-cy.hist.glif @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + reversedzecyr + com.fontlab.metricsRight + a + public.markColor + 0.6,0.997,1,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/ishortsharptailcyr.glif b/sources/FixelText-Thin.ufo/glyphs/ishortsharptailcyr.glif new file mode 100644 index 00000000..6a51e9dc --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/ishortsharptailcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + й + com.fontlab.metricsRight + ensharptailcyr + com.fontlab.recipe + й + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/itilde.glif b/sources/FixelText-Thin.ufo/glyphs/itilde.glif new file mode 100644 index 00000000..3215a0db --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/itilde.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + dotlessi+tilde + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/iu-cy.B_G_R_.glif b/sources/FixelText-Thin.ufo/glyphs/iu-cy.B_G_R_.glif new file mode 100644 index 00000000..0ad604fe --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/iu-cy.B_G_R_.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + o + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/iu-cy.accented.glif b/sources/FixelText-Thin.ufo/glyphs/iu-cy.accented.glif new file mode 100644 index 00000000..678380a0 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/iu-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ю+acute + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/iu-cy.glif b/sources/FixelText-Thin.ufo/glyphs/iu-cy.glif new file mode 100644 index 00000000..193498a0 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/iu-cy.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/izhitsacyr.glif b/sources/FixelText-Thin.ufo/glyphs/izhitsacyr.glif new file mode 100644 index 00000000..21c03c80 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/izhitsacyr.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + v + com.fontlab.metricsRight + + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/izhitsagravedblcyr.glif b/sources/FixelText-Thin.ufo/glyphs/izhitsagravedblcyr.glif new file mode 100644 index 00000000..4d3785fd --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/izhitsagravedblcyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + com.fontlab.metricsLeft + izhitsacyr + com.fontlab.metricsRight + izhitsacyr + com.fontlab.recipe + izhitsacyr+hungarumlaut + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/j.glif b/sources/FixelText-Thin.ufo/glyphs/j.glif new file mode 100644 index 00000000..ae2c57df --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/j.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + i + com.fontlab.recipe + dotlessj+dotaccent + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/jcircumflex.glif b/sources/FixelText-Thin.ufo/glyphs/jcircumflex.glif new file mode 100644 index 00000000..c2c44686 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/jcircumflex.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + dotlessj+circumflex + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/jdotless.glif b/sources/FixelText-Thin.ufo/glyphs/jdotless.glif new file mode 100644 index 00000000..3df12cf0 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/jdotless.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + l + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/je-cy.glif b/sources/FixelText-Thin.ufo/glyphs/je-cy.glif new file mode 100644 index 00000000..032296f1 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/je-cy.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + j + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/k.glif b/sources/FixelText-Thin.ufo/glyphs/k.glif new file mode 100644 index 00000000..f39bcc1a --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/k.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/ka-cy.B_G_R_.glif b/sources/FixelText-Thin.ufo/glyphs/ka-cy.B_G_R_.glif new file mode 100644 index 00000000..8a39af71 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/ka-cy.B_G_R_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + k + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/ka-cy.glif b/sources/FixelText-Thin.ufo/glyphs/ka-cy.glif new file mode 100644 index 00000000..3627bf52 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/ka-cy.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + k + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/kaaleutcyr.glif b/sources/FixelText-Thin.ufo/glyphs/kaaleutcyr.glif new file mode 100644 index 00000000..902ff71f --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/kaaleutcyr.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + k + com.fontlab.metricsRight + k + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/kabashkcyr.glif b/sources/FixelText-Thin.ufo/glyphs/kabashkcyr.glif new file mode 100644 index 00000000..7615f079 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/kabashkcyr.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hardsign-cy + com.fontlab.metricsRight + k + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/kahookcyr.glif b/sources/FixelText-Thin.ufo/glyphs/kahookcyr.glif new file mode 100644 index 00000000..97b5a095 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/kahookcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + n + com.fontlab.metricsRight + k+10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/kastrokecyr.glif b/sources/FixelText-Thin.ufo/glyphs/kastrokecyr.glif new file mode 100644 index 00000000..034d4942 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/kastrokecyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hbar + com.fontlab.metricsRight + k + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/katailcyr.glif b/sources/FixelText-Thin.ufo/glyphs/katailcyr.glif new file mode 100644 index 00000000..45a3b443 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/katailcyr.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + k + com.fontlab.metricsRight + к-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/kaverticalstrokecyr.glif b/sources/FixelText-Thin.ufo/glyphs/kaverticalstrokecyr.glif new file mode 100644 index 00000000..ecd1352d --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/kaverticalstrokecyr.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + k + com.fontlab.metricsRight + k + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/kcommaaccent.glif b/sources/FixelText-Thin.ufo/glyphs/kcommaaccent.glif new file mode 100644 index 00000000..05219010 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/kcommaaccent.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsLeft + k + com.fontlab.metricsRight + k + com.fontlab.recipe + k+commaaccentcomb + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/kgreenlandic.glif b/sources/FixelText-Thin.ufo/glyphs/kgreenlandic.glif new file mode 100644 index 00000000..7dc909b4 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/kgreenlandic.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + kacyr + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/kjecyr.glif b/sources/FixelText-Thin.ufo/glyphs/kjecyr.glif new file mode 100644 index 00000000..5d5614c9 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/kjecyr.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/knightblack.glif b/sources/FixelText-Thin.ufo/glyphs/knightblack.glif new file mode 100644 index 00000000..5ba5cb3b --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/knightblack.glif @@ -0,0 +1,313 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/knightwhite.glif b/sources/FixelText-Thin.ufo/glyphs/knightwhite.glif new file mode 100644 index 00000000..bb1a8d7f --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/knightwhite.glif @@ -0,0 +1,320 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/koppacyr.glif b/sources/FixelText-Thin.ufo/glyphs/koppacyr.glif new file mode 100644 index 00000000..da365283 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/koppacyr.glif @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + c-20 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/ksicyr.glif b/sources/FixelText-Thin.ufo/glyphs/ksicyr.glif new file mode 100644 index 00000000..4271a1d8 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/ksicyr.glif @@ -0,0 +1,102 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + з-10 + com.fontlab.metricsRight + з + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/l.glif b/sources/FixelText-Thin.ufo/glyphs/l.glif new file mode 100644 index 00000000..0a5a70fe --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/l.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/l.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/l.ss01.glif new file mode 100644 index 00000000..23c4a942 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/l.ss01.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/lacute.glif b/sources/FixelText-Thin.ufo/glyphs/lacute.glif new file mode 100644 index 00000000..b20cebbd --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/lacute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l+acute.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/lacute.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/lacute.ss01.glif new file mode 100644 index 00000000..9cdf8a30 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/lacute.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l.ss01+acute.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/layerinfo.plist b/sources/FixelText-Thin.ufo/glyphs/layerinfo.plist new file mode 100644 index 00000000..8c198655 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/layerinfo.plist @@ -0,0 +1,21 @@ + + + + + lib + + com.fontlab.layer.name + Body + com.fontlab.layer.opacity + 1 + com.fontlab.layer.visible + + com.fontlab.layer.locked + + com.fontlab.layer.service + + com.fontlab.layer.wireframe + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/lcaron.glif b/sources/FixelText-Thin.ufo/glyphs/lcaron.glif new file mode 100644 index 00000000..d55b89eb --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/lcaron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l+caron.salt + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/lcaron.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/lcaron.ss01.glif new file mode 100644 index 00000000..2604df00 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/lcaron.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l.ss01+caron.salt + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/lcommaaccent.glif b/sources/FixelText-Thin.ufo/glyphs/lcommaaccent.glif new file mode 100644 index 00000000..6300ea4e --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/lcommaaccent.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l+commaaccentcomb + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/lcommaaccent.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/lcommaaccent.ss01.glif new file mode 100644 index 00000000..e4318cee --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/lcommaaccent.ss01.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l.ss01+commaaccentcomb + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/ldot.glif b/sources/FixelText-Thin.ufo/glyphs/ldot.glif new file mode 100644 index 00000000..d1de1066 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/ldot.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/ldot.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/ldot.ss01.glif new file mode 100644 index 00000000..0272b442 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/ldot.ss01.glif @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + l.ss01_periodcentered + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/leo.glif b/sources/FixelText-Thin.ufo/glyphs/leo.glif new file mode 100644 index 00000000..4984a6a8 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/leo.glif @@ -0,0 +1,494 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/less.glif b/sources/FixelText-Thin.ufo/glyphs/less.glif new file mode 100644 index 00000000..21c1ef2b --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/less.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/lessequal.glif b/sources/FixelText-Thin.ufo/glyphs/lessequal.glif new file mode 100644 index 00000000..f6c09360 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/lessequal.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/lhacyr.glif b/sources/FixelText-Thin.ufo/glyphs/lhacyr.glif new file mode 100644 index 00000000..47181e54 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/lhacyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + х + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/ljecyr.glif b/sources/FixelText-Thin.ufo/glyphs/ljecyr.glif new file mode 100644 index 00000000..0d34365c --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/ljecyr.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + ь + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/ljecyr.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/ljecyr.ss01.glif new file mode 100644 index 00000000..407a140c --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/ljecyr.ss01.glif @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + ь + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/ljekomicyr.glif b/sources/FixelText-Thin.ufo/glyphs/ljekomicyr.glif new file mode 100644 index 00000000..6a5c034a --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/ljekomicyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + л + com.fontlab.metricsRight + njekomicyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/longs.glif b/sources/FixelText-Thin.ufo/glyphs/longs.glif new file mode 100644 index 00000000..9ec2c2c6 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/longs.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + n + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/lslash.glif b/sources/FixelText-Thin.ufo/glyphs/lslash.glif new file mode 100644 index 00000000..84851a0b --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/lslash.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Lslash+12 + com.fontlab.metricsRight + |Lslash+12 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/lslash.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/lslash.ss01.glif new file mode 100644 index 00000000..5f513119 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/lslash.ss01.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Lslash-10 + com.fontlab.metricsRight + |Lslash + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/m.glif b/sources/FixelText-Thin.ufo/glyphs/m.glif new file mode 100644 index 00000000..1ea81a03 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/m.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + n + com.fontlab.metricsRight + n + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/macron-fwd.alt.glif b/sources/FixelText-Thin.ufo/glyphs/macron-fwd.alt.glif new file mode 100644 index 00000000..1a6d9fc4 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/macron-fwd.alt.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/macron-fwd.glif b/sources/FixelText-Thin.ufo/glyphs/macron-fwd.glif new file mode 100644 index 00000000..4c71c1eb --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/macron-fwd.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/macron.case.glif b/sources/FixelText-Thin.ufo/glyphs/macron.case.glif new file mode 100644 index 00000000..a8206c6b --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/macron.case.glif @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/macron.glif b/sources/FixelText-Thin.ufo/glyphs/macron.glif new file mode 100644 index 00000000..2a1cf9f6 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/macron.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/macronacute.S_R_B_.glif b/sources/FixelText-Thin.ufo/glyphs/macronacute.S_R_B_.glif new file mode 100644 index 00000000..a5c30191 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/macronacute.S_R_B_.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + macron+acute + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/millionscombcyr.glif b/sources/FixelText-Thin.ufo/glyphs/millionscombcyr.glif new file mode 100644 index 00000000..1069477e --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/millionscombcyr.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/minus.glif b/sources/FixelText-Thin.ufo/glyphs/minus.glif new file mode 100644 index 00000000..cf652de8 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/minus.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/minute.glif b/sources/FixelText-Thin.ufo/glyphs/minute.glif new file mode 100644 index 00000000..3ea41b4d --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/minute.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/mu.glif b/sources/FixelText-Thin.ufo/glyphs/mu.glif new file mode 100644 index 00000000..2caf6529 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/mu.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + p + com.fontlab.metricsRight + u + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/multiply.glif b/sources/FixelText-Thin.ufo/glyphs/multiply.glif new file mode 100644 index 00000000..3151342e --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/multiply.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/n.glif b/sources/FixelText-Thin.ufo/glyphs/n.glif new file mode 100644 index 00000000..25081d05 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/n.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/nacute.glif b/sources/FixelText-Thin.ufo/glyphs/nacute.glif new file mode 100644 index 00000000..73a77240 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/nacute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + n+acute + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/napostrophe.glif b/sources/FixelText-Thin.ufo/glyphs/napostrophe.glif new file mode 100644 index 00000000..9efbb5af --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/napostrophe.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + com.fontlab.metricsRight + n + com.schriftgestaltung.Glyphs.ComponentInfo + + + alignment + -1 + index + 0 + name + n + + + alignment + -1 + index + 1 + name + quoteright + + + com.schriftgestaltung.Glyphs.rightMetricsKey + n + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/ncaron.glif b/sources/FixelText-Thin.ufo/glyphs/ncaron.glif new file mode 100644 index 00000000..2f978915 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/ncaron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + n+caron + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/ncommaaccent.glif b/sources/FixelText-Thin.ufo/glyphs/ncommaaccent.glif new file mode 100644 index 00000000..bb4e36e5 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/ncommaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + n+commaaccentcomb + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/neptune.glif b/sources/FixelText-Thin.ufo/glyphs/neptune.glif new file mode 100644 index 00000000..70e22456 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/neptune.glif @@ -0,0 +1,125 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ш + com.fontlab.metricsRight + Ш + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/nine.glif b/sources/FixelText-Thin.ufo/glyphs/nine.glif new file mode 100644 index 00000000..f5d169a0 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/nine.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + |six + com.fontlab.metricsRight + |six + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/nine.osf.glif b/sources/FixelText-Thin.ufo/glyphs/nine.osf.glif new file mode 100644 index 00000000..e738da7b --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/nine.osf.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |six + com.fontlab.metricsRight + |six + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/nine.tf.glif b/sources/FixelText-Thin.ufo/glyphs/nine.tf.glif new file mode 100644 index 00000000..7cbcb23a --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/nine.tf.glif @@ -0,0 +1,7 @@ + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/njecyr.glif b/sources/FixelText-Thin.ufo/glyphs/njecyr.glif new file mode 100644 index 00000000..7d0969f3 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/njecyr.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + ь + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/njecyr.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/njecyr.ss01.glif new file mode 100644 index 00000000..23f4575a --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/njecyr.ss01.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + ь + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/njekomicyr.glif b/sources/FixelText-Thin.ufo/glyphs/njekomicyr.glif new file mode 100644 index 00000000..51e8f8ce --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/njekomicyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + |u + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/notequal.glif b/sources/FixelText-Thin.ufo/glyphs/notequal.glif new file mode 100644 index 00000000..cfce5077 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/notequal.glif @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/ntilde.glif b/sources/FixelText-Thin.ufo/glyphs/ntilde.glif new file mode 100644 index 00000000..eed6ee35 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/ntilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + n+tilde + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/numbersign.glif b/sources/FixelText-Thin.ufo/glyphs/numbersign.glif new file mode 100644 index 00000000..3dce555d --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/numbersign.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/numero.glif b/sources/FixelText-Thin.ufo/glyphs/numero.glif new file mode 100644 index 00000000..6e963ef1 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/numero.glif @@ -0,0 +1,90 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + N + com.fontlab.recipe + N+ordmasculine + com.schriftgestaltung.Glyphs.ComponentInfo + + + alignment + -1 + index + 0 + name + N + + + alignment + -1 + index + 1 + name + ordmasculine + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/numero.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/numero.ss01.glif new file mode 100644 index 00000000..45aa7b6d --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/numero.ss01.glif @@ -0,0 +1,95 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + N.ss01 + com.fontlab.metricsRight + ordmasculine + com.fontlab.recipe + N.ss01+ordmasculine + com.schriftgestaltung.Glyphs.ComponentInfo + + + alignment + -1 + index + 0 + name + ordmasculine + + + alignment + -1 + index + 1 + name + N.ss01 + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/o-cy.accented.glif b/sources/FixelText-Thin.ufo/glyphs/o-cy.accented.glif new file mode 100644 index 00000000..b6285b14 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/o-cy.accented.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+acute + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/o-cy.glif b/sources/FixelText-Thin.ufo/glyphs/o-cy.glif new file mode 100644 index 00000000..bc93ba2f --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/o-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/o.glif b/sources/FixelText-Thin.ufo/glyphs/o.glif new file mode 100644 index 00000000..ca37b138 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/o.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/oB_inocular-cy.glif b/sources/FixelText-Thin.ufo/glyphs/oB_inocular-cy.glif new file mode 100644 index 00000000..7137aa3f --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/oB_inocular-cy.glif @@ -0,0 +1,81 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/oD_oubleM_onocular-cy.glif b/sources/FixelText-Thin.ufo/glyphs/oD_oubleM_onocular-cy.glif new file mode 100644 index 00000000..51cf5372 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/oD_oubleM_onocular-cy.glif @@ -0,0 +1,121 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + com.fontlab.recipe + doubleo-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/oM_onocular-cy.glif b/sources/FixelText-Thin.ufo/glyphs/oM_onocular-cy.glif new file mode 100644 index 00000000..1e02e0f1 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/oM_onocular-cy.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/oacute.glif b/sources/FixelText-Thin.ufo/glyphs/oacute.glif new file mode 100644 index 00000000..d286a2e5 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/oacute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+acute + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/obarcyr.glif b/sources/FixelText-Thin.ufo/glyphs/obarcyr.glif new file mode 100644 index 00000000..c99c5722 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/obarcyr.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/obardieresiscyr.glif b/sources/FixelText-Thin.ufo/glyphs/obardieresiscyr.glif new file mode 100644 index 00000000..2af2a80a --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/obardieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + obarcyr+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/obreve.glif b/sources/FixelText-Thin.ufo/glyphs/obreve.glif new file mode 100644 index 00000000..f742a030 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/obreve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+breve + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/ocircumflex.glif b/sources/FixelText-Thin.ufo/glyphs/ocircumflex.glif new file mode 100644 index 00000000..7692a93d --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/ocircumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+circumflex + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/odieresis.glif b/sources/FixelText-Thin.ufo/glyphs/odieresis.glif new file mode 100644 index 00000000..49543af6 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/odieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+dieresis + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/odieresiscyr.glif b/sources/FixelText-Thin.ufo/glyphs/odieresiscyr.glif new file mode 100644 index 00000000..39a9dc59 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/odieresiscyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/oe.glif b/sources/FixelText-Thin.ufo/glyphs/oe.glif new file mode 100644 index 00000000..339d6a5a --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/oe.glif @@ -0,0 +1,86 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + e + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/oe.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/oe.ss01.glif new file mode 100644 index 00000000..f1fce447 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/oe.ss01.glif @@ -0,0 +1,95 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + e.ss01 + public.markColor + 0.6,0.997,1,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/ogonek.glif b/sources/FixelText-Thin.ufo/glyphs/ogonek.glif new file mode 100644 index 00000000..f6d9427d --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/ogonek.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/ograve.glif b/sources/FixelText-Thin.ufo/glyphs/ograve.glif new file mode 100644 index 00000000..6ddad35c --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/ograve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+grave + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/ohungarumlaut.glif b/sources/FixelText-Thin.ufo/glyphs/ohungarumlaut.glif new file mode 100644 index 00000000..a27c5211 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/ohungarumlaut.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+hungarumlaut + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/omacron.glif b/sources/FixelText-Thin.ufo/glyphs/omacron.glif new file mode 100644 index 00000000..7e68361d --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/omacron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+macron + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/omegaB_road-cy.glif b/sources/FixelText-Thin.ufo/glyphs/omegaB_road-cy.glif new file mode 100644 index 00000000..3fb38c05 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/omegaB_road-cy.glif @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o+5 + com.fontlab.metricsRight + o+5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/omegacyr.glif b/sources/FixelText-Thin.ufo/glyphs/omegacyr.glif new file mode 100644 index 00000000..77b789aa --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/omegacyr.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + w + com.fontlab.metricsRight + w + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/omegaroundcyr.glif b/sources/FixelText-Thin.ufo/glyphs/omegaroundcyr.glif new file mode 100644 index 00000000..3a9122d6 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/omegaroundcyr.glif @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/omegatitlocyr.glif b/sources/FixelText-Thin.ufo/glyphs/omegatitlocyr.glif new file mode 100644 index 00000000..d2ff857d --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/omegatitlocyr.glif @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o+5 + com.fontlab.metricsRight + o+5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/omultiocular-cy.alt.glif b/sources/FixelText-Thin.ufo/glyphs/omultiocular-cy.alt.glif new file mode 100644 index 00000000..99c9a9f3 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/omultiocular-cy.alt.glif @@ -0,0 +1,367 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + oMonocular-cy + com.fontlab.metricsRight + oMonocular-cy + public.markColor + 0.6,0.997,1,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/omultiocular-cy.glif b/sources/FixelText-Thin.ufo/glyphs/omultiocular-cy.glif new file mode 100644 index 00000000..2ecb6ebe --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/omultiocular-cy.glif @@ -0,0 +1,516 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + oMonocular-cy + com.fontlab.metricsRight + oMonocular-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/one.glif b/sources/FixelText-Thin.ufo/glyphs/one.glif new file mode 100644 index 00000000..fca6af4c --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/one.glif @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =40 + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/one.osf.glif b/sources/FixelText-Thin.ufo/glyphs/one.osf.glif new file mode 100644 index 00000000..140eeaee --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/one.osf.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + one + com.fontlab.metricsRight + one + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/one.tf.glif b/sources/FixelText-Thin.ufo/glyphs/one.tf.glif new file mode 100644 index 00000000..983b1343 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/one.tf.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/onehalf.glif b/sources/FixelText-Thin.ufo/glyphs/onehalf.glif new file mode 100644 index 00000000..b0cf7c4a --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/onehalf.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/onequarter.glif b/sources/FixelText-Thin.ufo/glyphs/onequarter.glif new file mode 100644 index 00000000..f8851872 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/onequarter.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/onesuperior.glif b/sources/FixelText-Thin.ufo/glyphs/onesuperior.glif new file mode 100644 index 00000000..9dbfea76 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/onesuperior.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/ordfeminine.glif b/sources/FixelText-Thin.ufo/glyphs/ordfeminine.glif new file mode 100644 index 00000000..2cdd4737 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/ordfeminine.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/ordmasculine.glif b/sources/FixelText-Thin.ufo/glyphs/ordmasculine.glif new file mode 100644 index 00000000..fa9c7e08 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/ordmasculine.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/oslash.glif b/sources/FixelText-Thin.ufo/glyphs/oslash.glif new file mode 100644 index 00000000..b474f667 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/oslash.glif @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/oslashacute.glif b/sources/FixelText-Thin.ufo/glyphs/oslashacute.glif new file mode 100644 index 00000000..1ea4b171 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/oslashacute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + oslash+acute + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/otcyr.glif b/sources/FixelText-Thin.ufo/glyphs/otcyr.glif new file mode 100644 index 00000000..49118f6f --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/otcyr.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsRight + w + com.fontlab.recipe + omegacyr+uni2DEE + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/otilde.glif b/sources/FixelText-Thin.ufo/glyphs/otilde.glif new file mode 100644 index 00000000..3b624e63 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/otilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+tilde + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/p.glif b/sources/FixelText-Thin.ufo/glyphs/p.glif new file mode 100644 index 00000000..1d458d9b --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/p.glif @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + com.fontlab.metricsRight + o + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/p.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/p.ss01.glif new file mode 100644 index 00000000..a32292b7 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/p.ss01.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/palatcombcyr.glif b/sources/FixelText-Thin.ufo/glyphs/palatcombcyr.glif new file mode 100644 index 00000000..1ad8a18f --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/palatcombcyr.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/palochkacyr.glif b/sources/FixelText-Thin.ufo/glyphs/palochkacyr.glif new file mode 100644 index 00000000..6f01211e --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/palochkacyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + l + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/paragraph.glif b/sources/FixelText-Thin.ufo/glyphs/paragraph.glif new file mode 100644 index 00000000..2d6aaae8 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/paragraph.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |P + com.fontlab.metricsRight + H + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/parenleft.case.glif b/sources/FixelText-Thin.ufo/glyphs/parenleft.case.glif new file mode 100644 index 00000000..c62673f4 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/parenleft.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + |parenright.case + com.fontlab.metricsRight + |parenright.case + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/parenleft.glif b/sources/FixelText-Thin.ufo/glyphs/parenleft.glif new file mode 100644 index 00000000..2ea64441 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/parenleft.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/parenright.case.glif b/sources/FixelText-Thin.ufo/glyphs/parenright.case.glif new file mode 100644 index 00000000..4b430ca8 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/parenright.case.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + parenright + com.fontlab.metricsRight + parenright + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/parenright.glif b/sources/FixelText-Thin.ufo/glyphs/parenright.glif new file mode 100644 index 00000000..69778e65 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/parenright.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/partialdiff.glif b/sources/FixelText-Thin.ufo/glyphs/partialdiff.glif new file mode 100644 index 00000000..ea8549e8 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/partialdiff.glif @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/pe-cy.B_G_R_.glif b/sources/FixelText-Thin.ufo/glyphs/pe-cy.B_G_R_.glif new file mode 100644 index 00000000..8c281137 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/pe-cy.B_G_R_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + n + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/pe-cy.S_R_B_.glif b/sources/FixelText-Thin.ufo/glyphs/pe-cy.S_R_B_.glif new file mode 100644 index 00000000..16f1b881 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/pe-cy.S_R_B_.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+macron-fwd.alt + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/pe-cy.glif b/sources/FixelText-Thin.ufo/glyphs/pe-cy.glif new file mode 100644 index 00000000..0c77bac4 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/pe-cy.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/pehookcyr.glif b/sources/FixelText-Thin.ufo/glyphs/pehookcyr.glif new file mode 100644 index 00000000..02c969d6 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/pehookcyr.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + п + com.fontlab.metricsRight + enmiddlehookcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/percent.glif b/sources/FixelText-Thin.ufo/glyphs/percent.glif new file mode 100644 index 00000000..b0a3ec04 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/percent.glif @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/period.glif b/sources/FixelText-Thin.ufo/glyphs/period.glif new file mode 100644 index 00000000..dfc6c107 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/period.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/periodcentered.glif b/sources/FixelText-Thin.ufo/glyphs/periodcentered.glif new file mode 100644 index 00000000..f375801e --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/periodcentered.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/perthousand.glif b/sources/FixelText-Thin.ufo/glyphs/perthousand.glif new file mode 100644 index 00000000..bfe6b4b1 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/perthousand.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/petailcyr.glif b/sources/FixelText-Thin.ufo/glyphs/petailcyr.glif new file mode 100644 index 00000000..2307acbf --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/petailcyr.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + п + com.fontlab.metricsRight + entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/pi.glif b/sources/FixelText-Thin.ufo/glyphs/pi.glif new file mode 100644 index 00000000..ade339d6 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/pi.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + f + com.fontlab.metricsRight + t + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/plus.glif b/sources/FixelText-Thin.ufo/glyphs/plus.glif new file mode 100644 index 00000000..aa3c81c0 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/plus.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/plusminus.glif b/sources/FixelText-Thin.ufo/glyphs/plusminus.glif new file mode 100644 index 00000000..e31036c4 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/plusminus.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/pokrytiecombcyr.glif b/sources/FixelText-Thin.ufo/glyphs/pokrytiecombcyr.glif new file mode 100644 index 00000000..e67b2690 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/pokrytiecombcyr.glif @@ -0,0 +1,14 @@ + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/product.glif b/sources/FixelText-Thin.ufo/glyphs/product.glif new file mode 100644 index 00000000..86371dbf --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/product.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/proportional.glif b/sources/FixelText-Thin.ufo/glyphs/proportional.glif new file mode 100644 index 00000000..59d510c4 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/proportional.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/psicyr.glif b/sources/FixelText-Thin.ufo/glyphs/psicyr.glif new file mode 100644 index 00000000..a7dc9349 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/psicyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + u + com.fontlab.metricsRight + |u + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/q.glif b/sources/FixelText-Thin.ufo/glyphs/q.glif new file mode 100644 index 00000000..6c7a0c76 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/q.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/q.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/q.ss01.glif new file mode 100644 index 00000000..1e63626a --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/q.ss01.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/qacyr.glif b/sources/FixelText-Thin.ufo/glyphs/qacyr.glif new file mode 100644 index 00000000..6eada14c --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/qacyr.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + q + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/question.glif b/sources/FixelText-Thin.ufo/glyphs/question.glif new file mode 100644 index 00000000..34a623b7 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/question.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/questiondown.case.glif b/sources/FixelText-Thin.ufo/glyphs/questiondown.case.glif new file mode 100644 index 00000000..a86180f4 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/questiondown.case.glif @@ -0,0 +1,19 @@ + + + + + + + + + com.fontlab.metricsLeft + |question + com.fontlab.metricsRight + |question + com.fontlab.recipe + questiondown + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/questiondown.glif b/sources/FixelText-Thin.ufo/glyphs/questiondown.glif new file mode 100644 index 00000000..bc690249 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/questiondown.glif @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |question + com.fontlab.metricsRight + |question + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/quotedbl.glif b/sources/FixelText-Thin.ufo/glyphs/quotedbl.glif new file mode 100644 index 00000000..16baede6 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/quotedbl.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/quotedblbase.glif b/sources/FixelText-Thin.ufo/glyphs/quotedblbase.glif new file mode 100644 index 00000000..28f2ddb4 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/quotedblbase.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + comma + com.fontlab.metricsRight + comma + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/quotedblleft.glif b/sources/FixelText-Thin.ufo/glyphs/quotedblleft.glif new file mode 100644 index 00000000..b0691706 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/quotedblleft.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + |comma + com.fontlab.metricsRight + |comma + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/quotedblright.glif b/sources/FixelText-Thin.ufo/glyphs/quotedblright.glif new file mode 100644 index 00000000..e8800e25 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/quotedblright.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.metricsLeft + comma+20 + com.fontlab.metricsRight + comma-20 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/quoteleft.glif b/sources/FixelText-Thin.ufo/glyphs/quoteleft.glif new file mode 100644 index 00000000..71f28e3e --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/quoteleft.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.metricsLeft + quotedblleft + com.fontlab.metricsRight + quotedblleft + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/quoteright.glif b/sources/FixelText-Thin.ufo/glyphs/quoteright.glif new file mode 100644 index 00000000..254ebea4 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/quoteright.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + com.fontlab.metricsLeft + quotedblright + com.fontlab.metricsRight + quotedblright + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/quotesinglbase.glif b/sources/FixelText-Thin.ufo/glyphs/quotesinglbase.glif new file mode 100644 index 00000000..18acf2ea --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/quotesinglbase.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + com.fontlab.recipe + comma + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/quotesingle.glif b/sources/FixelText-Thin.ufo/glyphs/quotesingle.glif new file mode 100644 index 00000000..426feb70 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/quotesingle.glif @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/r.glif b/sources/FixelText-Thin.ufo/glyphs/r.glif new file mode 100644 index 00000000..782ed2a8 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/r.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/racute.glif b/sources/FixelText-Thin.ufo/glyphs/racute.glif new file mode 100644 index 00000000..3d4c2077 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/racute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + r+acute + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/radical.glif b/sources/FixelText-Thin.ufo/glyphs/radical.glif new file mode 100644 index 00000000..ee5a4920 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/radical.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + V + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/rcaron.glif b/sources/FixelText-Thin.ufo/glyphs/rcaron.glif new file mode 100644 index 00000000..103c0d88 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/rcaron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + r+caron + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/rcommaaccent.glif b/sources/FixelText-Thin.ufo/glyphs/rcommaaccent.glif new file mode 100644 index 00000000..5804cf53 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/rcommaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + r+commaaccentcomb + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/registered.glif b/sources/FixelText-Thin.ufo/glyphs/registered.glif new file mode 100644 index 00000000..163d64f8 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/registered.glif @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/reversedzecyr.glif b/sources/FixelText-Thin.ufo/glyphs/reversedzecyr.glif new file mode 100644 index 00000000..e949f83e --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/reversedzecyr.glif @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + + com.fontlab.metricsRight + + com.fontlab.recipe + з + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/rhacyr.glif b/sources/FixelText-Thin.ufo/glyphs/rhacyr.glif new file mode 100644 index 00000000..74c84877 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/rhacyr.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + p + com.fontlab.metricsRight + x + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/ring.case.glif b/sources/FixelText-Thin.ufo/glyphs/ring.case.glif new file mode 100644 index 00000000..7665b8c9 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/ring.case.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/ring.glif b/sources/FixelText-Thin.ufo/glyphs/ring.glif new file mode 100644 index 00000000..deabec5d --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/ring.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/rookblack.glif b/sources/FixelText-Thin.ufo/glyphs/rookblack.glif new file mode 100644 index 00000000..3783cb40 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/rookblack.glif @@ -0,0 +1,270 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/ruble.glif b/sources/FixelText-Thin.ufo/glyphs/ruble.glif new file mode 100644 index 00000000..24b0caa3 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/ruble.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + P + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/s.glif b/sources/FixelText-Thin.ufo/glyphs/s.glif new file mode 100644 index 00000000..e9f39625 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/s.glif @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/sacute.glif b/sources/FixelText-Thin.ufo/glyphs/sacute.glif new file mode 100644 index 00000000..b9adacbb --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/sacute.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + s+acute + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/scaron.glif b/sources/FixelText-Thin.ufo/glyphs/scaron.glif new file mode 100644 index 00000000..e5309814 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/scaron.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + s+caron + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/scedilla.glif b/sources/FixelText-Thin.ufo/glyphs/scedilla.glif new file mode 100644 index 00000000..5e233357 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/scedilla.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + s+cedilla + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/schwacyr.glif b/sources/FixelText-Thin.ufo/glyphs/schwacyr.glif new file mode 100644 index 00000000..603595f7 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/schwacyr.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |e + com.fontlab.metricsRight + o + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/schwadieresiscyr.glif b/sources/FixelText-Thin.ufo/glyphs/schwadieresiscyr.glif new file mode 100644 index 00000000..532208ad --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/schwadieresiscyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + schwacyr+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/scircumflex.glif b/sources/FixelText-Thin.ufo/glyphs/scircumflex.glif new file mode 100644 index 00000000..fda0a801 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/scircumflex.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + s+circumflex + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/scommaaccent.glif b/sources/FixelText-Thin.ufo/glyphs/scommaaccent.glif new file mode 100644 index 00000000..7edb8866 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/scommaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + s+commaaccentcomb + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/second.glif b/sources/FixelText-Thin.ufo/glyphs/second.glif new file mode 100644 index 00000000..d75004d8 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/second.glif @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/section.glif b/sources/FixelText-Thin.ufo/glyphs/section.glif new file mode 100644 index 00000000..5dc124b6 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/section.glif @@ -0,0 +1,87 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + S + com.fontlab.metricsRight + S + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/semicolon.case.glif b/sources/FixelText-Thin.ufo/glyphs/semicolon.case.glif new file mode 100644 index 00000000..928c3c5d --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/semicolon.case.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.metricsLeft + semicolon + com.fontlab.metricsRight + semicolon + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/semicolon.glif b/sources/FixelText-Thin.ufo/glyphs/semicolon.glif new file mode 100644 index 00000000..bad2cac3 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/semicolon.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/semisoftcyr.glif b/sources/FixelText-Thin.ufo/glyphs/semisoftcyr.glif new file mode 100644 index 00000000..8d51d029 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/semisoftcyr.glif @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + t + com.fontlab.metricsRight + ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/seven.glif b/sources/FixelText-Thin.ufo/glyphs/seven.glif new file mode 100644 index 00000000..90be1284 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/seven.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/seven.osf.glif b/sources/FixelText-Thin.ufo/glyphs/seven.osf.glif new file mode 100644 index 00000000..3e5c96e5 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/seven.osf.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + seven + com.fontlab.metricsRight + seven + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/seven.tf.glif b/sources/FixelText-Thin.ufo/glyphs/seven.tf.glif new file mode 100644 index 00000000..0cf557ce --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/seven.tf.glif @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/sha-cy.B_G_R_.glif b/sources/FixelText-Thin.ufo/glyphs/sha-cy.B_G_R_.glif new file mode 100644 index 00000000..ba530e60 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/sha-cy.B_G_R_.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + u + com.fontlab.metricsRight + l + com.fontlab.recipe + m + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/sha-cy.glif b/sources/FixelText-Thin.ufo/glyphs/sha-cy.glif new file mode 100644 index 00000000..96b6f4f7 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/sha-cy.glif @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/shcha-cy.B_G_R_.glif b/sources/FixelText-Thin.ufo/glyphs/shcha-cy.B_G_R_.glif new file mode 100644 index 00000000..0cb50137 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/shcha-cy.B_G_R_.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + u + com.fontlab.metricsRight + щ + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/shcha-cy.glif b/sources/FixelText-Thin.ufo/glyphs/shcha-cy.glif new file mode 100644 index 00000000..03970ffc --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/shcha-cy.glif @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + д + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/shhacyr.glif b/sources/FixelText-Thin.ufo/glyphs/shhacyr.glif new file mode 100644 index 00000000..46c4c57f --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/shhacyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsRight + n + com.fontlab.recipe + h + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/shhatailcyr.glif b/sources/FixelText-Thin.ufo/glyphs/shhatailcyr.glif new file mode 100644 index 00000000..326555dc --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/shhatailcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + h + com.fontlab.metricsRight + entailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/shwe-cy.glif b/sources/FixelText-Thin.ufo/glyphs/shwe-cy.glif new file mode 100644 index 00000000..fecf7e13 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/shwe-cy.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + щ + com.fontlab.metricsRight + щ + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/six.glif b/sources/FixelText-Thin.ufo/glyphs/six.glif new file mode 100644 index 00000000..47205dca --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/six.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/six.osf.glif b/sources/FixelText-Thin.ufo/glyphs/six.osf.glif new file mode 100644 index 00000000..727f013a --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/six.osf.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + six + com.fontlab.metricsRight + six + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/six.tf.glif b/sources/FixelText-Thin.ufo/glyphs/six.tf.glif new file mode 100644 index 00000000..e1fdd65e --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/six.tf.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/sjekomicyr.glif b/sources/FixelText-Thin.ufo/glyphs/sjekomicyr.glif new file mode 100644 index 00000000..01a96bf0 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/sjekomicyr.glif @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + e + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/slash.case.glif b/sources/FixelText-Thin.ufo/glyphs/slash.case.glif new file mode 100644 index 00000000..99c15195 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/slash.case.glif @@ -0,0 +1,17 @@ + + + + + + + + + com.fontlab.metricsLeft + slash + com.fontlab.metricsRight + slash + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/slash.glif b/sources/FixelText-Thin.ufo/glyphs/slash.glif new file mode 100644 index 00000000..90ad86ff --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/slash.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/softsign-cy.B_G_R_.glif b/sources/FixelText-Thin.ufo/glyphs/softsign-cy.B_G_R_.glif new file mode 100644 index 00000000..0d5e0b4d --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/softsign-cy.B_G_R_.glif @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + u + com.fontlab.metricsRight + ь-5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/softsign-cy.glif b/sources/FixelText-Thin.ufo/glyphs/softsign-cy.glif new file mode 100644 index 00000000..7925a3db --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/softsign-cy.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/softsign-cy.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/softsign-cy.ss01.glif new file mode 100644 index 00000000..53cfe564 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/softsign-cy.ss01.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/space.glif b/sources/FixelText-Thin.ufo/glyphs/space.glif new file mode 100644 index 00000000..c36915b5 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/space.glif @@ -0,0 +1,5 @@ + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/spadewhite.glif b/sources/FixelText-Thin.ufo/glyphs/spadewhite.glif new file mode 100644 index 00000000..fada60e2 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/spadewhite.glif @@ -0,0 +1,453 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =50 + com.fontlab.metricsRight + =50 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/sterling.glif b/sources/FixelText-Thin.ufo/glyphs/sterling.glif new file mode 100644 index 00000000..36211775 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/sterling.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/summation.glif b/sources/FixelText-Thin.ufo/glyphs/summation.glif new file mode 100644 index 00000000..2eae5604 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/summation.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/t.glif b/sources/FixelText-Thin.ufo/glyphs/t.glif new file mode 100644 index 00000000..d6109f55 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/t.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/t.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/t.ss01.glif new file mode 100644 index 00000000..29c111d4 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/t.ss01.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/tbar.glif b/sources/FixelText-Thin.ufo/glyphs/tbar.glif new file mode 100644 index 00000000..938f3ade --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/tbar.glif @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/tbar.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/tbar.ss01.glif new file mode 100644 index 00000000..b7a9669b --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/tbar.ss01.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/tcaron.glif b/sources/FixelText-Thin.ufo/glyphs/tcaron.glif new file mode 100644 index 00000000..3aad9a9a --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/tcaron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.metricsLeft + t + com.fontlab.metricsRight + t + com.fontlab.recipe + t+caron.salt + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/tcaron.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/tcaron.ss01.glif new file mode 100644 index 00000000..e5be2e85 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/tcaron.ss01.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + com.fontlab.recipe + t.ss01+caron.salt + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/tcedilla.glif b/sources/FixelText-Thin.ufo/glyphs/tcedilla.glif new file mode 100644 index 00000000..84068035 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/tcedilla.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + t+cedilla + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/tcedilla.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/tcedilla.ss01.glif new file mode 100644 index 00000000..1aab82fe --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/tcedilla.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + t.ss01+cedilla + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/tche-cy.glif b/sources/FixelText-Thin.ufo/glyphs/tche-cy.glif new file mode 100644 index 00000000..4ce5e9f4 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/tche-cy.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + tetsecyr-20 + com.fontlab.metricsRight + ч + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/tcommaaccent.glif b/sources/FixelText-Thin.ufo/glyphs/tcommaaccent.glif new file mode 100644 index 00000000..d50783b2 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/tcommaaccent.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + t+commaaccentcomb + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/tcommaaccent.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/tcommaaccent.ss01.glif new file mode 100644 index 00000000..12e754ff --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/tcommaaccent.ss01.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + t.ss01+commaaccentcomb + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/te-cy.B_G_R_.glif b/sources/FixelText-Thin.ufo/glyphs/te-cy.B_G_R_.glif new file mode 100644 index 00000000..8b0ff8bb --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/te-cy.B_G_R_.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + m + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/te-cy.S_R_B_.glif b/sources/FixelText-Thin.ufo/glyphs/te-cy.S_R_B_.glif new file mode 100644 index 00000000..871e1c5d --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/te-cy.S_R_B_.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ш.BGR+macron-fwd + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/te-cy.glif b/sources/FixelText-Thin.ufo/glyphs/te-cy.glif new file mode 100644 index 00000000..1731caec --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/te-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/te-cy.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/te-cy.ss01.glif new file mode 100644 index 00000000..7f4660f1 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/te-cy.ss01.glif @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/tenge.glif b/sources/FixelText-Thin.ufo/glyphs/tenge.glif new file mode 100644 index 00000000..1fc637a4 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/tenge.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + T + com.fontlab.metricsRight + T + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/tenmillionscomb-cy.glif b/sources/FixelText-Thin.ufo/glyphs/tenmillionscomb-cy.glif new file mode 100644 index 00000000..6780c3a0 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/tenmillionscomb-cy.glif @@ -0,0 +1,109 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/tetailcyr.glif b/sources/FixelText-Thin.ufo/glyphs/tetailcyr.glif new file mode 100644 index 00000000..9d5d0d38 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/tetailcyr.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + т + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/tetsecyr.glif b/sources/FixelText-Thin.ufo/glyphs/tetsecyr.glif new file mode 100644 index 00000000..36b7b108 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/tetsecyr.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + т + com.fontlab.metricsRight + ц + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/tewithmiddlehook-cy.glif b/sources/FixelText-Thin.ufo/glyphs/tewithmiddlehook-cy.glif new file mode 100644 index 00000000..eb97ec93 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/tewithmiddlehook-cy.glif @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + т + com.fontlab.metricsRight + gehookcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/thorn.glif b/sources/FixelText-Thin.ufo/glyphs/thorn.glif new file mode 100644 index 00000000..16f90f2e --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/thorn.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + b + com.fontlab.metricsRight + b + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/thousandmillionscomb-cy.glif b/sources/FixelText-Thin.ufo/glyphs/thousandmillionscomb-cy.glif new file mode 100644 index 00000000..3ea3ef02 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/thousandmillionscomb-cy.glif @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/thousandscyr.dnom.glif b/sources/FixelText-Thin.ufo/glyphs/thousandscyr.dnom.glif new file mode 100644 index 00000000..0adecb6e --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/thousandscyr.dnom.glif @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + | + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/thousandscyr.glif b/sources/FixelText-Thin.ufo/glyphs/thousandscyr.glif new file mode 100644 index 00000000..74d4b8b8 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/thousandscyr.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + | + public.markColor + 1,0.6,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/three.glif b/sources/FixelText-Thin.ufo/glyphs/three.glif new file mode 100644 index 00000000..2e41fba6 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/three.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/three.osf.glif b/sources/FixelText-Thin.ufo/glyphs/three.osf.glif new file mode 100644 index 00000000..9f8e1634 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/three.osf.glif @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + three + com.fontlab.metricsRight + three + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/three.tf.glif b/sources/FixelText-Thin.ufo/glyphs/three.tf.glif new file mode 100644 index 00000000..1e453ed0 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/three.tf.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/threequarters.glif b/sources/FixelText-Thin.ufo/glyphs/threequarters.glif new file mode 100644 index 00000000..52573069 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/threequarters.glif @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/threesuperior.glif b/sources/FixelText-Thin.ufo/glyphs/threesuperior.glif new file mode 100644 index 00000000..e4f810e7 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/threesuperior.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/tilde.case.glif b/sources/FixelText-Thin.ufo/glyphs/tilde.case.glif new file mode 100644 index 00000000..bd728560 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/tilde.case.glif @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/tilde.glif b/sources/FixelText-Thin.ufo/glyphs/tilde.glif new file mode 100644 index 00000000..3a20bc68 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/tilde.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/titlocombcyr.glif b/sources/FixelText-Thin.ufo/glyphs/titlocombcyr.glif new file mode 100644 index 00000000..fc61a3fe --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/titlocombcyr.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/tjekomicyr.glif b/sources/FixelText-Thin.ufo/glyphs/tjekomicyr.glif new file mode 100644 index 00000000..f9581f30 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/tjekomicyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + т + com.fontlab.metricsRight + njekomicyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/trademark.glif b/sources/FixelText-Thin.ufo/glyphs/trademark.glif new file mode 100644 index 00000000..549dfb4d --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/trademark.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/tse-cy.B_G_R_.glif b/sources/FixelText-Thin.ufo/glyphs/tse-cy.B_G_R_.glif new file mode 100644 index 00000000..ab2f198b --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/tse-cy.B_G_R_.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + u + com.fontlab.metricsRight + ц + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/tse-cy.glif b/sources/FixelText-Thin.ufo/glyphs/tse-cy.glif new file mode 100644 index 00000000..50befc82 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/tse-cy.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + д + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/tseR_eversed-cy.glif b/sources/FixelText-Thin.ufo/glyphs/tseR_eversed-cy.glif new file mode 100644 index 00000000..6e5e107d --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/tseR_eversed-cy.glif @@ -0,0 +1,20 @@ + + + + + + + + + + com.fontlab.metricsLeft + + com.fontlab.metricsRight + н + com.fontlab.recipe + ц + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/tshecyr.glif b/sources/FixelText-Thin.ufo/glyphs/tshecyr.glif new file mode 100644 index 00000000..eb013daf --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/tshecyr.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + hbar + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/tsse-cy.glif b/sources/FixelText-Thin.ufo/glyphs/tsse-cy.glif new file mode 100644 index 00000000..63126277 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/tsse-cy.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + т + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/tswe-cy.glif b/sources/FixelText-Thin.ufo/glyphs/tswe-cy.glif new file mode 100644 index 00000000..21e2d791 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/tswe-cy.glif @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ш + com.fontlab.metricsRight + shwe-cy + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/twe-cy.glif b/sources/FixelText-Thin.ufo/glyphs/twe-cy.glif new file mode 100644 index 00000000..5c4d86f6 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/twe-cy.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + т.ss01 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/two.glif b/sources/FixelText-Thin.ufo/glyphs/two.glif new file mode 100644 index 00000000..4e59daf9 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/two.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/two.osf.glif b/sources/FixelText-Thin.ufo/glyphs/two.osf.glif new file mode 100644 index 00000000..3d1d295b --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/two.osf.glif @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + two + com.fontlab.metricsRight + two + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/two.tf.glif b/sources/FixelText-Thin.ufo/glyphs/two.tf.glif new file mode 100644 index 00000000..c2a4111b --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/two.tf.glif @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/twosuperior.glif b/sources/FixelText-Thin.ufo/glyphs/twosuperior.glif new file mode 100644 index 00000000..3c490db2 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/twosuperior.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/u-cy.accented.glif b/sources/FixelText-Thin.ufo/glyphs/u-cy.accented.glif new file mode 100644 index 00000000..3306a17f --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/u-cy.accented.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + y+acute + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/u-cy.glif b/sources/FixelText-Thin.ufo/glyphs/u-cy.glif new file mode 100644 index 00000000..3db686bf --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/u-cy.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + y + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/u.glif b/sources/FixelText-Thin.ufo/glyphs/u.glif new file mode 100644 index 00000000..5ef69c3a --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/u.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |n + com.fontlab.metricsRight + l + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/uacute.glif b/sources/FixelText-Thin.ufo/glyphs/uacute.glif new file mode 100644 index 00000000..24d7a4fb --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/uacute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+acute + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/uacutedblcyr.glif b/sources/FixelText-Thin.ufo/glyphs/uacutedblcyr.glif new file mode 100644 index 00000000..6092961f --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/uacutedblcyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u-cy+hungarumlaut + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/ubreve.glif b/sources/FixelText-Thin.ufo/glyphs/ubreve.glif new file mode 100644 index 00000000..71dbc3e5 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/ubreve.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+breve + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/ucircumflex.glif b/sources/FixelText-Thin.ufo/glyphs/ucircumflex.glif new file mode 100644 index 00000000..1b13d6ca --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/ucircumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+circumflex + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/udieresis.glif b/sources/FixelText-Thin.ufo/glyphs/udieresis.glif new file mode 100644 index 00000000..b83ddcbd --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/udieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+dieresis + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/udieresiscyr.glif b/sources/FixelText-Thin.ufo/glyphs/udieresiscyr.glif new file mode 100644 index 00000000..f4c1243c --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/udieresiscyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/ugrave.glif b/sources/FixelText-Thin.ufo/glyphs/ugrave.glif new file mode 100644 index 00000000..db10c0c3 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/ugrave.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+grave + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/uhungarumlaut.glif b/sources/FixelText-Thin.ufo/glyphs/uhungarumlaut.glif new file mode 100644 index 00000000..d640d4b3 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/uhungarumlaut.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+hungarumlaut + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/ukM_onograph-cy.glif b/sources/FixelText-Thin.ufo/glyphs/ukM_onograph-cy.glif new file mode 100644 index 00000000..6bf59a5d --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/ukM_onograph-cy.glif @@ -0,0 +1,78 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + y-30 + com.fontlab.metricsRight + y-20 + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/ukcyr.glif b/sources/FixelText-Thin.ufo/glyphs/ukcyr.glif new file mode 100644 index 00000000..63087320 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/ukcyr.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + y + com.fontlab.recipe + uni1C82_у + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/umacron.glif b/sources/FixelText-Thin.ufo/glyphs/umacron.glif new file mode 100644 index 00000000..ea92129b --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/umacron.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+macron + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/umacroncyr.glif b/sources/FixelText-Thin.ufo/glyphs/umacroncyr.glif new file mode 100644 index 00000000..9daad859 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/umacroncyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u-cy+macron + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/underscore.glif b/sources/FixelText-Thin.ufo/glyphs/underscore.glif new file mode 100644 index 00000000..b58e1eb8 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/underscore.glif @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/uni1C_80.glif b/sources/FixelText-Thin.ufo/glyphs/uni1C_80.glif new file mode 100644 index 00000000..0a2685f5 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/uni1C_80.glif @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + б + com.fontlab.metricsRight + o-10 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/uni1C_81.glif b/sources/FixelText-Thin.ufo/glyphs/uni1C_81.glif new file mode 100644 index 00000000..3c233c4a --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/uni1C_81.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + д-10 + com.fontlab.metricsRight + | + com.fontlab.recipe + д + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/uni1C_82.glif b/sources/FixelText-Thin.ufo/glyphs/uni1C_82.glif new file mode 100644 index 00000000..d8bf79e7 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/uni1C_82.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l() + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/uni1C_83.glif b/sources/FixelText-Thin.ufo/glyphs/uni1C_83.glif new file mode 100644 index 00000000..c4cfd111 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/uni1C_83.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + c + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/uni1C_84.glif b/sources/FixelText-Thin.ufo/glyphs/uni1C_84.glif new file mode 100644 index 00000000..b5f6a4bd --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/uni1C_84.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/uni1C_85.glif b/sources/FixelText-Thin.ufo/glyphs/uni1C_85.glif new file mode 100644 index 00000000..671ec00e --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/uni1C_85.glif @@ -0,0 +1,20 @@ + + + + + + + + + + com.fontlab.metricsLeft + ш + com.fontlab.metricsRight + l() + com.fontlab.recipe + ш + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/uni1C_86.glif b/sources/FixelText-Thin.ufo/glyphs/uni1C_86.glif new file mode 100644 index 00000000..0c809d57 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/uni1C_86.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + uni1C84 + com.fontlab.metricsRight + ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/uni1C_87.glif b/sources/FixelText-Thin.ufo/glyphs/uni1C_87.glif new file mode 100644 index 00000000..5a1a08ec --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/uni1C_87.glif @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + uni1C84-40 + com.fontlab.metricsRight + ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/uni1C_88.glif b/sources/FixelText-Thin.ufo/glyphs/uni1C_88.glif new file mode 100644 index 00000000..ffb0e99d --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/uni1C_88.glif @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/uni1E_B_C_.glif b/sources/FixelText-Thin.ufo/glyphs/uni1E_B_C_.glif new file mode 100644 index 00000000..0416a2ae --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/uni1E_B_C_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+tilde.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/uni1E_B_D_.glif b/sources/FixelText-Thin.ufo/glyphs/uni1E_B_D_.glif new file mode 100644 index 00000000..acc05933 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/uni1E_B_D_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+tilde + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/uni2010.glif b/sources/FixelText-Thin.ufo/glyphs/uni2010.glif new file mode 100644 index 00000000..10fc5ace --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/uni2010.glif @@ -0,0 +1,16 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + hyphen + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/uni2D_E_E_.case.glif b/sources/FixelText-Thin.ufo/glyphs/uni2D_E_E_.case.glif new file mode 100644 index 00000000..9c973dbf --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/uni2D_E_E_.case.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/uni2D_E_E_.glif b/sources/FixelText-Thin.ufo/glyphs/uni2D_E_E_.glif new file mode 100644 index 00000000..7b43384a --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/uni2D_E_E_.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/uniE_000.alt.glif b/sources/FixelText-Thin.ufo/glyphs/uniE_000.alt.glif new file mode 100644 index 00000000..63975c29 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/uniE_000.alt.glif @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + ї_ї + public.markColor + 0.6,0.997,1,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/uniE_000.glif b/sources/FixelText-Thin.ufo/glyphs/uniE_000.glif new file mode 100644 index 00000000..f9ddd886 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/uniE_000.glif @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.recipe + ї_ї + public.markColor + 0.6,0.997,1,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/uniE_01A_.glif b/sources/FixelText-Thin.ufo/glyphs/uniE_01A_.glif new file mode 100644 index 00000000..c05f3e00 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/uniE_01A_.glif @@ -0,0 +1,115 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + O + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/uniF_43A_.glif b/sources/FixelText-Thin.ufo/glyphs/uniF_43A_.glif new file mode 100644 index 00000000..c46c633f --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/uniF_43A_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Y+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/uniF_43B_.glif b/sources/FixelText-Thin.ufo/glyphs/uniF_43B_.glif new file mode 100644 index 00000000..a258f410 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/uniF_43B_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ustraightcyr+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/uniF_45D_.glif b/sources/FixelText-Thin.ufo/glyphs/uniF_45D_.glif new file mode 100644 index 00000000..c1574cce --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/uniF_45D_.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Є+acute.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/uniF_45E_.glif b/sources/FixelText-Thin.ufo/glyphs/uniF_45E_.glif new file mode 100644 index 00000000..890e2d3c --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/uniF_45E_.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Iacute + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/uniF_45F_.glif b/sources/FixelText-Thin.ufo/glyphs/uniF_45F_.glif new file mode 100644 index 00000000..2e7a04fe --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/uniF_45F_.glif @@ -0,0 +1,16 @@ + + + + + + + + + + + + com.fontlab.recipe + I+dieresiscase.alt+acute.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/uniF_475.glif b/sources/FixelText-Thin.ufo/glyphs/uniF_475.glif new file mode 100644 index 00000000..eca1ec6f --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/uniF_475.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + є+acute + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/uniF_476.glif b/sources/FixelText-Thin.ufo/glyphs/uniF_476.glif new file mode 100644 index 00000000..9f6e2391 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/uniF_476.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + iacute + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/uniF_477.glif b/sources/FixelText-Thin.ufo/glyphs/uniF_477.glif new file mode 100644 index 00000000..b055186d --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/uniF_477.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + dotlessi+dieresisacute + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/uniF_478.glif b/sources/FixelText-Thin.ufo/glyphs/uniF_478.glif new file mode 100644 index 00000000..33766a94 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/uniF_478.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Yat+acute.case + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/uniF_479.glif b/sources/FixelText-Thin.ufo/glyphs/uniF_479.glif new file mode 100644 index 00000000..2337c721 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/uniF_479.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + yat+acute + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/uniF_498.glif b/sources/FixelText-Thin.ufo/glyphs/uniF_498.glif new file mode 100644 index 00000000..01c0313b --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/uniF_498.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ю+dieresis.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/uniF_499.glif b/sources/FixelText-Thin.ufo/glyphs/uniF_499.glif new file mode 100644 index 00000000..425b267d --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/uniF_499.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ю+dieresis + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/uniF_49A_.glif b/sources/FixelText-Thin.ufo/glyphs/uniF_49A_.glif new file mode 100644 index 00000000..eef4f2da --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/uniF_49A_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Obarcyr+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/uniF_49B_.glif b/sources/FixelText-Thin.ufo/glyphs/uniF_49B_.glif new file mode 100644 index 00000000..23bf3a61 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/uniF_49B_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + obarcyr+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/uniF_49C_.glif b/sources/FixelText-Thin.ufo/glyphs/uniF_49C_.glif new file mode 100644 index 00000000..97c5a830 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/uniF_49C_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Schwacyr+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/uniF_49D_.glif b/sources/FixelText-Thin.ufo/glyphs/uniF_49D_.glif new file mode 100644 index 00000000..d9b7c2a4 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/uniF_49D_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + schwacyr+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/uniF_49E_.glif b/sources/FixelText-Thin.ufo/glyphs/uniF_49E_.glif new file mode 100644 index 00000000..35c9a79e --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/uniF_49E_.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Yatcyr + com.fontlab.metricsRight + Tshecyr + com.fontlab.recipe + Shhacyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/uniF_49F_.glif b/sources/FixelText-Thin.ufo/glyphs/uniF_49F_.glif new file mode 100644 index 00000000..4e48fd25 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/uniF_49F_.glif @@ -0,0 +1,18 @@ + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + hbar + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/uniF_4C_6.glif b/sources/FixelText-Thin.ufo/glyphs/uniF_4C_6.glif new file mode 100644 index 00000000..427e7add --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/uniF_4C_6.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Ч + com.fontlab.metricsRight + Ч + com.fontlab.recipe + Ч + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/uniF_4C_7.glif b/sources/FixelText-Thin.ufo/glyphs/uniF_4C_7.glif new file mode 100644 index 00000000..df15d630 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/uniF_4C_7.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ч + com.fontlab.metricsRight + ч + com.fontlab.recipe + ч+enhookcyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/uniF_4C_C_.glif b/sources/FixelText-Thin.ufo/glyphs/uniF_4C_C_.glif new file mode 100644 index 00000000..acaecea3 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/uniF_4C_C_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + У+acute.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/uniF_4C_D_.glif b/sources/FixelText-Thin.ufo/glyphs/uniF_4C_D_.glif new file mode 100644 index 00000000..4fb687b6 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/uniF_4C_D_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + y+acute + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/uniF_4D_2.glif b/sources/FixelText-Thin.ufo/glyphs/uniF_4D_2.glif new file mode 100644 index 00000000..e1ca709f --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/uniF_4D_2.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+grave.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/uniF_4D_3.glif b/sources/FixelText-Thin.ufo/glyphs/uniF_4D_3.glif new file mode 100644 index 00000000..6b82369f --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/uniF_4D_3.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+grave + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/uniF_4D_4.glif b/sources/FixelText-Thin.ufo/glyphs/uniF_4D_4.glif new file mode 100644 index 00000000..6442373c --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/uniF_4D_4.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + P+caron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/uniF_4D_5.glif b/sources/FixelText-Thin.ufo/glyphs/uniF_4D_5.glif new file mode 100644 index 00000000..ad8d6fd7 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/uniF_4D_5.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + p+caron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/uniF_4D_6.glif b/sources/FixelText-Thin.ufo/glyphs/uniF_4D_6.glif new file mode 100644 index 00000000..0a3bd0d6 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/uniF_4D_6.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Э+dotaccent.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/uniF_4D_7.glif b/sources/FixelText-Thin.ufo/glyphs/uniF_4D_7.glif new file mode 100644 index 00000000..6622fbe7 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/uniF_4D_7.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + э+dotaccent + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/uniF_4D_8.glif b/sources/FixelText-Thin.ufo/glyphs/uniF_4D_8.glif new file mode 100644 index 00000000..a109f2b1 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/uniF_4D_8.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Я+dieresis.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/uniF_4D_9.glif b/sources/FixelText-Thin.ufo/glyphs/uniF_4D_9.glif new file mode 100644 index 00000000..a5932d70 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/uniF_4D_9.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + я+dieresis + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/uniF_50E_.glif b/sources/FixelText-Thin.ufo/glyphs/uniF_50E_.glif new file mode 100644 index 00000000..bae2e763 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/uniF_50E_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/uniF_50F_.glif b/sources/FixelText-Thin.ufo/glyphs/uniF_50F_.glif new file mode 100644 index 00000000..b7c620d0 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/uniF_50F_.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/uniF_510.glif b/sources/FixelText-Thin.ufo/glyphs/uniF_510.glif new file mode 100644 index 00000000..a75054f6 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/uniF_510.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/uniF_511.glif b/sources/FixelText-Thin.ufo/glyphs/uniF_511.glif new file mode 100644 index 00000000..82900d6c --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/uniF_511.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/uniF_512.glif b/sources/FixelText-Thin.ufo/glyphs/uniF_512.glif new file mode 100644 index 00000000..309cb32f --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/uniF_512.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + com.fontlab.metricsLeft + E + com.fontlab.metricsRight + E + com.fontlab.recipe + E+dieresis.case+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/uniF_513.glif b/sources/FixelText-Thin.ufo/glyphs/uniF_513.glif new file mode 100644 index 00000000..245a23de --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/uniF_513.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.recipe + e+dieresis+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/uniF_514.glif b/sources/FixelText-Thin.ufo/glyphs/uniF_514.glif new file mode 100644 index 00000000..332849f1 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/uniF_514.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + com.fontlab.metricsLeft + E + com.fontlab.metricsRight + E + com.fontlab.recipe + E+dieresis.case+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/uniF_515.glif b/sources/FixelText-Thin.ufo/glyphs/uniF_515.glif new file mode 100644 index 00000000..771a8e7b --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/uniF_515.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.recipe + e+dieresis+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/uniF_516.glif b/sources/FixelText-Thin.ufo/glyphs/uniF_516.glif new file mode 100644 index 00000000..2e2dcd5c --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/uniF_516.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + З+caron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/uniF_517.glif b/sources/FixelText-Thin.ufo/glyphs/uniF_517.glif new file mode 100644 index 00000000..560658a7 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/uniF_517.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + з+caron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/uniF_518.glif b/sources/FixelText-Thin.ufo/glyphs/uniF_518.glif new file mode 100644 index 00000000..68feb1a3 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/uniF_518.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/uniF_519.glif b/sources/FixelText-Thin.ufo/glyphs/uniF_519.glif new file mode 100644 index 00000000..224c86bd --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/uniF_519.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/uniF_51A_.glif b/sources/FixelText-Thin.ufo/glyphs/uniF_51A_.glif new file mode 100644 index 00000000..680e9fac --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/uniF_51A_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/uniF_51B_.glif b/sources/FixelText-Thin.ufo/glyphs/uniF_51B_.glif new file mode 100644 index 00000000..26cf42fe --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/uniF_51B_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/uniF_51C_.glif b/sources/FixelText-Thin.ufo/glyphs/uniF_51C_.glif new file mode 100644 index 00000000..2458ed56 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/uniF_51C_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Obarcyr+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/uniF_51D_.glif b/sources/FixelText-Thin.ufo/glyphs/uniF_51D_.glif new file mode 100644 index 00000000..6cbb020d --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/uniF_51D_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + obarcyr+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/uniF_51E_.glif b/sources/FixelText-Thin.ufo/glyphs/uniF_51E_.glif new file mode 100644 index 00000000..f94170d6 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/uniF_51E_.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + com.fontlab.metricsLeft + O + com.fontlab.metricsRight + l() + com.fontlab.recipe + Obarcyr+dieresis.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/uniF_51F_.glif b/sources/FixelText-Thin.ufo/glyphs/uniF_51F_.glif new file mode 100644 index 00000000..c52aca0b --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/uniF_51F_.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.recipe + obarcyr+dieresis+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/uniF_521.glif b/sources/FixelText-Thin.ufo/glyphs/uniF_521.glif new file mode 100644 index 00000000..8c6693bd --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/uniF_521.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ы+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/uniF_522.glif b/sources/FixelText-Thin.ufo/glyphs/uniF_522.glif new file mode 100644 index 00000000..05a152e6 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/uniF_522.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Э+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/uniF_523.glif b/sources/FixelText-Thin.ufo/glyphs/uniF_523.glif new file mode 100644 index 00000000..15adad1d --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/uniF_523.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + э+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/uniF_524.glif b/sources/FixelText-Thin.ufo/glyphs/uniF_524.glif new file mode 100644 index 00000000..9386af7e --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/uniF_524.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Э+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/uniF_525.glif b/sources/FixelText-Thin.ufo/glyphs/uniF_525.glif new file mode 100644 index 00000000..3c375138 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/uniF_525.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + э+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/uniF_526.glif b/sources/FixelText-Thin.ufo/glyphs/uniF_526.glif new file mode 100644 index 00000000..cec42499 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/uniF_526.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Є+dieresis.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/uniF_527.glif b/sources/FixelText-Thin.ufo/glyphs/uniF_527.glif new file mode 100644 index 00000000..1268d974 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/uniF_527.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + є+dieresis + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/uniF_528.glif b/sources/FixelText-Thin.ufo/glyphs/uniF_528.glif new file mode 100644 index 00000000..875f6c0d --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/uniF_528.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Я+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/uniF_529.glif b/sources/FixelText-Thin.ufo/glyphs/uniF_529.glif new file mode 100644 index 00000000..852946cc --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/uniF_529.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + я+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/uniF_52A_.glif b/sources/FixelText-Thin.ufo/glyphs/uniF_52A_.glif new file mode 100644 index 00000000..cffa2071 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/uniF_52A_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Я+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/uniF_52B_.glif b/sources/FixelText-Thin.ufo/glyphs/uniF_52B_.glif new file mode 100644 index 00000000..c4deb1df --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/uniF_52B_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + я+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/uniF_52C_.glif b/sources/FixelText-Thin.ufo/glyphs/uniF_52C_.glif new file mode 100644 index 00000000..cd499911 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/uniF_52C_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ю+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/uniF_52D_.glif b/sources/FixelText-Thin.ufo/glyphs/uniF_52D_.glif new file mode 100644 index 00000000..e477dc76 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/uniF_52D_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ю+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/uniF_52E_.glif b/sources/FixelText-Thin.ufo/glyphs/uniF_52E_.glif new file mode 100644 index 00000000..eb091607 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/uniF_52E_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ю+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/uniF_52F_.glif b/sources/FixelText-Thin.ufo/glyphs/uniF_52F_.glif new file mode 100644 index 00000000..440b2f45 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/uniF_52F_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ю+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/uniF_532.glif b/sources/FixelText-Thin.ufo/glyphs/uniF_532.glif new file mode 100644 index 00000000..1becd311 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/uniF_532.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + Й + com.fontlab.metricsRight + Й + com.fontlab.recipe + Й + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/uniF_533.glif b/sources/FixelText-Thin.ufo/glyphs/uniF_533.glif new file mode 100644 index 00000000..9f0183e3 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/uniF_533.glif @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + l() + com.fontlab.recipe + й+enhookcyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/uniF_536.glif b/sources/FixelText-Thin.ufo/glyphs/uniF_536.glif new file mode 100644 index 00000000..65da4674 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/uniF_536.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ы+breve.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/uniF_537.glif b/sources/FixelText-Thin.ufo/glyphs/uniF_537.glif new file mode 100644 index 00000000..cbb7b3b2 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/uniF_537.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ы+breve + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/uniF_538.glif b/sources/FixelText-Thin.ufo/glyphs/uniF_538.glif new file mode 100644 index 00000000..b1c2d89a --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/uniF_538.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Reversedzecyr+dieresis.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/uniF_539.glif b/sources/FixelText-Thin.ufo/glyphs/uniF_539.glif new file mode 100644 index 00000000..283bf0ac --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/uniF_539.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + reversedzecyr+dieresis + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/uniF_830.glif b/sources/FixelText-Thin.ufo/glyphs/uniF_830.glif new file mode 100644 index 00000000..8a533d07 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/uniF_830.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + A+circumflex.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/uniF_831.glif b/sources/FixelText-Thin.ufo/glyphs/uniF_831.glif new file mode 100644 index 00000000..6dcffc56 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/uniF_831.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + a+circumflex + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/uniF_833.glif b/sources/FixelText-Thin.ufo/glyphs/uniF_833.glif new file mode 100644 index 00000000..2e006271 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/uniF_833.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + E+circumflex.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/uniF_834.glif b/sources/FixelText-Thin.ufo/glyphs/uniF_834.glif new file mode 100644 index 00000000..3fff634a --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/uniF_834.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + e+circumflex + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/uniF_839.glif b/sources/FixelText-Thin.ufo/glyphs/uniF_839.glif new file mode 100644 index 00000000..99ab1f1f --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/uniF_839.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + O+circumflex.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/uniF_83A_.glif b/sources/FixelText-Thin.ufo/glyphs/uniF_83A_.glif new file mode 100644 index 00000000..ca4efe01 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/uniF_83A_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + o+circumflex + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/uniF_86F_.glif b/sources/FixelText-Thin.ufo/glyphs/uniF_86F_.glif new file mode 100644 index 00000000..0896b59f --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/uniF_86F_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + K+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/uniF_870.glif b/sources/FixelText-Thin.ufo/glyphs/uniF_870.glif new file mode 100644 index 00000000..aef7ceb1 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/uniF_870.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + к+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/uniF_872.glif b/sources/FixelText-Thin.ufo/glyphs/uniF_872.glif new file mode 100644 index 00000000..5f4071de --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/uniF_872.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Л+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/uniF_873.glif b/sources/FixelText-Thin.ufo/glyphs/uniF_873.glif new file mode 100644 index 00000000..8d25e3af --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/uniF_873.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + л+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/uniF_875.glif b/sources/FixelText-Thin.ufo/glyphs/uniF_875.glif new file mode 100644 index 00000000..aa36f59d --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/uniF_875.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + C+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/uniF_876.glif b/sources/FixelText-Thin.ufo/glyphs/uniF_876.glif new file mode 100644 index 00000000..f8b7f6a7 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/uniF_876.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + c+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/uniF_878.glif b/sources/FixelText-Thin.ufo/glyphs/uniF_878.glif new file mode 100644 index 00000000..dd551c15 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/uniF_878.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + X+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/uniF_879.glif b/sources/FixelText-Thin.ufo/glyphs/uniF_879.glif new file mode 100644 index 00000000..1ba45f89 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/uniF_879.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + x+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/uniF_87B_.glif b/sources/FixelText-Thin.ufo/glyphs/uniF_87B_.glif new file mode 100644 index 00000000..ea398ff9 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/uniF_87B_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ц+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/uniF_87C_.glif b/sources/FixelText-Thin.ufo/glyphs/uniF_87C_.glif new file mode 100644 index 00000000..0192361c --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/uniF_87C_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ц+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/uniF_87E_.glif b/sources/FixelText-Thin.ufo/glyphs/uniF_87E_.glif new file mode 100644 index 00000000..bfba7590 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/uniF_87E_.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + Ч+macron.case + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/uniF_87F_.glif b/sources/FixelText-Thin.ufo/glyphs/uniF_87F_.glif new file mode 100644 index 00000000..84d2994d --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/uniF_87F_.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ч+macron + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/uogonek.glif b/sources/FixelText-Thin.ufo/glyphs/uogonek.glif new file mode 100644 index 00000000..17119cba --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/uogonek.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+ogonek + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/uring.glif b/sources/FixelText-Thin.ufo/glyphs/uring.glif new file mode 100644 index 00000000..1e1179f5 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/uring.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+ring + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/ushort-cy.glif b/sources/FixelText-Thin.ufo/glyphs/ushort-cy.glif new file mode 100644 index 00000000..ed251f15 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/ushort-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + uni0443+breve + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/ustraightcyr.glif b/sources/FixelText-Thin.ufo/glyphs/ustraightcyr.glif new file mode 100644 index 00000000..6898925e --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/ustraightcyr.glif @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + v + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/ustraightstrokecyr.glif b/sources/FixelText-Thin.ufo/glyphs/ustraightstrokecyr.glif new file mode 100644 index 00000000..0f6ca994 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/ustraightstrokecyr.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/utilde.glif b/sources/FixelText-Thin.ufo/glyphs/utilde.glif new file mode 100644 index 00000000..77464672 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/utilde.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + u+tilde + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/v.glif b/sources/FixelText-Thin.ufo/glyphs/v.glif new file mode 100644 index 00000000..f52c3eb0 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/v.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/ve-cy.B_G_R_.glif b/sources/FixelText-Thin.ufo/glyphs/ve-cy.B_G_R_.glif new file mode 100644 index 00000000..d3f9687f --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/ve-cy.B_G_R_.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + b-5 + com.fontlab.metricsRight + b + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/ve-cy.glif b/sources/FixelText-Thin.ufo/glyphs/ve-cy.glif new file mode 100644 index 00000000..e233baea --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/ve-cy.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/ve-cy.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/ve-cy.ss01.glif new file mode 100644 index 00000000..ab516126 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/ve-cy.ss01.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/virgo.glif b/sources/FixelText-Thin.ufo/glyphs/virgo.glif new file mode 100644 index 00000000..9a32b815 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/virgo.glif @@ -0,0 +1,224 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + =55 + com.fontlab.metricsRight + =35 + public.markColor + 0.604,0.6,1,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/vzmetcomb-cy.glif b/sources/FixelText-Thin.ufo/glyphs/vzmetcomb-cy.glif new file mode 100644 index 00000000..2079732f --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/vzmetcomb-cy.glif @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/w.glif b/sources/FixelText-Thin.ufo/glyphs/w.glif new file mode 100644 index 00000000..a16d971f --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/w.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/wacute.glif b/sources/FixelText-Thin.ufo/glyphs/wacute.glif new file mode 100644 index 00000000..ddebcc56 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/wacute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + w+acute + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/wcircumflex.glif b/sources/FixelText-Thin.ufo/glyphs/wcircumflex.glif new file mode 100644 index 00000000..637dc604 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/wcircumflex.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + w+circumflex + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/wdieresis.glif b/sources/FixelText-Thin.ufo/glyphs/wdieresis.glif new file mode 100644 index 00000000..d4be5025 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/wdieresis.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + w+dieresis + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/wecyr.glif b/sources/FixelText-Thin.ufo/glyphs/wecyr.glif new file mode 100644 index 00000000..30a79839 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/wecyr.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + w + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/wgrave.glif b/sources/FixelText-Thin.ufo/glyphs/wgrave.glif new file mode 100644 index 00000000..4224d066 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/wgrave.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + w+grave + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/x.glif b/sources/FixelText-Thin.ufo/glyphs/x.glif new file mode 100644 index 00000000..95d64a26 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/x.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/xatailcyr.glif b/sources/FixelText-Thin.ufo/glyphs/xatailcyr.glif new file mode 100644 index 00000000..e576884b --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/xatailcyr.glif @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + x + com.fontlab.metricsRight + zhetailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/y.glif b/sources/FixelText-Thin.ufo/glyphs/y.glif new file mode 100644 index 00000000..35a20e05 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/y.glif @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/yacute.glif b/sources/FixelText-Thin.ufo/glyphs/yacute.glif new file mode 100644 index 00000000..2e5695ba --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/yacute.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + y+acute + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/yaecyr.glif b/sources/FixelText-Thin.ufo/glyphs/yaecyr.glif new file mode 100644 index 00000000..a00b62d8 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/yaecyr.glif @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + я + com.fontlab.metricsRight + e + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/yatI_otified-cy.glif b/sources/FixelText-Thin.ufo/glyphs/yatI_otified-cy.glif new file mode 100644 index 00000000..0ab34fc1 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/yatI_otified-cy.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + com.fontlab.metricsRight + yatcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/yatcyr.B_G_R_.glif b/sources/FixelText-Thin.ufo/glyphs/yatcyr.B_G_R_.glif new file mode 100644 index 00000000..1c0c4def --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/yatcyr.B_G_R_.glif @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hardsign-cy + com.fontlab.metricsRight + ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/yatcyr.glif b/sources/FixelText-Thin.ufo/glyphs/yatcyr.glif new file mode 100644 index 00000000..7f692880 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/yatcyr.glif @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hardsign-cy + com.fontlab.metricsRight + ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/ycircumflex.glif b/sources/FixelText-Thin.ufo/glyphs/ycircumflex.glif new file mode 100644 index 00000000..4684b1ce --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/ycircumflex.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + y+circumflex + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/ydieresis.glif b/sources/FixelText-Thin.ufo/glyphs/ydieresis.glif new file mode 100644 index 00000000..d9e6b6fc --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/ydieresis.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + y+dieresis + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/yen.glif b/sources/FixelText-Thin.ufo/glyphs/yen.glif new file mode 100644 index 00000000..483ceeb8 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/yen.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/yen.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/yen.ss01.glif new file mode 100644 index 00000000..2d868904 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/yen.ss01.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/yerN_eutral-cy.glif b/sources/FixelText-Thin.ufo/glyphs/yerN_eutral-cy.glif new file mode 100644 index 00000000..ff43a796 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/yerN_eutral-cy.glif @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hardsign-cy + com.fontlab.metricsRight + ь + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/yeru-cy.accented.glif b/sources/FixelText-Thin.ufo/glyphs/yeru-cy.accented.glif new file mode 100644 index 00000000..c07f3649 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/yeru-cy.accented.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ы+acute + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/yeru-cy.glif b/sources/FixelText-Thin.ufo/glyphs/yeru-cy.glif new file mode 100644 index 00000000..3879c947 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/yeru-cy.glif @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + н + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/yeru-cy.ss01.glif b/sources/FixelText-Thin.ufo/glyphs/yeru-cy.ss01.glif new file mode 100644 index 00000000..2b2679b4 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/yeru-cy.ss01.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/yeruB_ackyer-cy.glif b/sources/FixelText-Thin.ufo/glyphs/yeruB_ackyer-cy.glif new file mode 100644 index 00000000..eb669648 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/yeruB_ackyer-cy.glif @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + hardsign-cy + com.fontlab.metricsRight + dotlessi + com.fontlab.recipe + hardsign-cy_dotlessi + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/yi-cy.alt.glif b/sources/FixelText-Thin.ufo/glyphs/yi-cy.alt.glif new file mode 100644 index 00000000..a4f73208 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/yi-cy.alt.glif @@ -0,0 +1,17 @@ + + + + + + + + + + + com.fontlab.recipe + idieresis + public.markColor + 0.6,0.997,1,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/yi-cy.glif b/sources/FixelText-Thin.ufo/glyphs/yi-cy.glif new file mode 100644 index 00000000..c93a8b56 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/yi-cy.glif @@ -0,0 +1,19 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + idieresis + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/ylongdieresiscyr.glif b/sources/FixelText-Thin.ufo/glyphs/ylongdieresiscyr.glif new file mode 100644 index 00000000..c6cab821 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/ylongdieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + yeru-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/yn-cy.glif b/sources/FixelText-Thin.ufo/glyphs/yn-cy.glif new file mode 100644 index 00000000..619d5023 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/yn-cy.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |izhitsacyr + com.fontlab.metricsRight + |izhitsacyr + com.fontlab.recipe + izhitsa + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/yuR_eversed-cy.glif b/sources/FixelText-Thin.ufo/glyphs/yuR_eversed-cy.glif new file mode 100644 index 00000000..a9c73f41 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/yuR_eversed-cy.glif @@ -0,0 +1,20 @@ + + + + + + + + + + com.fontlab.metricsLeft + o + com.fontlab.metricsRight + l + com.fontlab.recipe + ю + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/yusB_lended-cy.glif b/sources/FixelText-Thin.ufo/glyphs/yusB_lended-cy.glif new file mode 100644 index 00000000..f4bab9f1 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/yusB_lended-cy.glif @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + yusbigcyr + com.fontlab.metricsRight + yusbigcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/yusC_losedlittle-cy.glif b/sources/FixelText-Thin.ufo/glyphs/yusC_losedlittle-cy.glif new file mode 100644 index 00000000..361ec6e4 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/yusC_losedlittle-cy.glif @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + yuslittlecyr + com.fontlab.metricsRight + yuslittlecyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/yusbigcyr.glif b/sources/FixelText-Thin.ufo/glyphs/yusbigcyr.glif new file mode 100644 index 00000000..25b69851 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/yusbigcyr.glif @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/yusbigiotifiedcyr.B_G_R_.glif b/sources/FixelText-Thin.ufo/glyphs/yusbigiotifiedcyr.B_G_R_.glif new file mode 100644 index 00000000..c9bfde28 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/yusbigiotifiedcyr.B_G_R_.glif @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + l + com.fontlab.metricsRight + ж + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/yusbigiotifiedcyr.glif b/sources/FixelText-Thin.ufo/glyphs/yusbigiotifiedcyr.glif new file mode 100644 index 00000000..4d6d54df --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/yusbigiotifiedcyr.glif @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + ж + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/yusiotifiedC_losedL_ittle-cy.glif b/sources/FixelText-Thin.ufo/glyphs/yusiotifiedC_losedL_ittle-cy.glif new file mode 100644 index 00000000..19f4c1a5 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/yusiotifiedC_losedL_ittle-cy.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + н + com.fontlab.metricsRight + yusClosedlittle-cy + com.fontlab.recipe + yusClosedlittle-cy+н + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/yuslittlecyr.glif b/sources/FixelText-Thin.ufo/glyphs/yuslittlecyr.glif new file mode 100644 index 00000000..2bd7b47c --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/yuslittlecyr.glif @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + v-5 + com.fontlab.metricsRight + v-5 + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/yuslittleiotifiedcyr.glif b/sources/FixelText-Thin.ufo/glyphs/yuslittleiotifiedcyr.glif new file mode 100644 index 00000000..91aa64eb --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/yuslittleiotifiedcyr.glif @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsRight + v-10 + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/z.glif b/sources/FixelText-Thin.ufo/glyphs/z.glif new file mode 100644 index 00000000..e606d3a9 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/z.glif @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/zacute.glif b/sources/FixelText-Thin.ufo/glyphs/zacute.glif new file mode 100644 index 00000000..08275a70 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/zacute.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + z+acute + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/zcaron.glif b/sources/FixelText-Thin.ufo/glyphs/zcaron.glif new file mode 100644 index 00000000..150c05e4 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/zcaron.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + z+caron + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/zdotaccent.glif b/sources/FixelText-Thin.ufo/glyphs/zdotaccent.glif new file mode 100644 index 00000000..ea88ba35 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/zdotaccent.glif @@ -0,0 +1,18 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + z+dotaccent + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/ze-cy.B_G_R_.glif b/sources/FixelText-Thin.ufo/glyphs/ze-cy.B_G_R_.glif new file mode 100644 index 00000000..d6c0f428 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/ze-cy.B_G_R_.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |c-12 + com.fontlab.metricsRight + в-5 + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/ze-cy.glif b/sources/FixelText-Thin.ufo/glyphs/ze-cy.glif new file mode 100644 index 00000000..39434694 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/ze-cy.glif @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |c-5 + com.fontlab.metricsRight + в + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/zedieresiscyr.glif b/sources/FixelText-Thin.ufo/glyphs/zedieresiscyr.glif new file mode 100644 index 00000000..6f69e0d7 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/zedieresiscyr.glif @@ -0,0 +1,21 @@ + + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + ze-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/zemlya-cy.glif b/sources/FixelText-Thin.ufo/glyphs/zemlya-cy.glif new file mode 100644 index 00000000..69c69500 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/zemlya-cy.glif @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + z-10 + com.fontlab.metricsRight + z + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/zero.glif b/sources/FixelText-Thin.ufo/glyphs/zero.glif new file mode 100644 index 00000000..da785f2f --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/zero.glif @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/zero.osf.glif b/sources/FixelText-Thin.ufo/glyphs/zero.osf.glif new file mode 100644 index 00000000..44a55872 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/zero.osf.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + zero + com.fontlab.metricsRight + zero + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/zero.tf.glif b/sources/FixelText-Thin.ufo/glyphs/zero.tf.glif new file mode 100644 index 00000000..09bfceaa --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/zero.tf.glif @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/zetailcyr.B_S_H_.glif b/sources/FixelText-Thin.ufo/glyphs/zetailcyr.B_S_H_.glif new file mode 100644 index 00000000..e356391d --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/zetailcyr.B_S_H_.glif @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + з + com.fontlab.metricsRight + з + com.fontlab.recipe + з + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/zetailcyr.glif b/sources/FixelText-Thin.ufo/glyphs/zetailcyr.glif new file mode 100644 index 00000000..103aee41 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/zetailcyr.glif @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + з + com.fontlab.metricsRight + з + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/zhe-cy.B_G_R_.glif b/sources/FixelText-Thin.ufo/glyphs/zhe-cy.B_G_R_.glif new file mode 100644 index 00000000..0550948e --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/zhe-cy.B_G_R_.glif @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |k + com.fontlab.metricsRight + k + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/zhe-cy.glif b/sources/FixelText-Thin.ufo/glyphs/zhe-cy.glif new file mode 100644 index 00000000..1d3e7851 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/zhe-cy.glif @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + |k + com.fontlab.metricsRight + k + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/zhebrevecyr.glif b/sources/FixelText-Thin.ufo/glyphs/zhebrevecyr.glif new file mode 100644 index 00000000..022ca1a0 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/zhebrevecyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + zhe-cy+breve + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/zhedieresiscyr.glif b/sources/FixelText-Thin.ufo/glyphs/zhedieresiscyr.glif new file mode 100644 index 00000000..13bd1084 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/zhedieresiscyr.glif @@ -0,0 +1,20 @@ + + + + + + + + + + + + com.fontlab.autolayer + + com.fontlab.recipe + zhe-cy+dieresis + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/zhetailcyr.glif b/sources/FixelText-Thin.ufo/glyphs/zhetailcyr.glif new file mode 100644 index 00000000..ce7d1f5d --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/zhetailcyr.glif @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + ж + com.fontlab.metricsRight + katailcyr + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/zhwe-cy.glif b/sources/FixelText-Thin.ufo/glyphs/zhwe-cy.glif new file mode 100644 index 00000000..350687f7 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/zhwe-cy.glif @@ -0,0 +1,87 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + з + com.fontlab.metricsRight + ж + public.markColor + 0.6,1,0.602,1 + + + diff --git a/sources/FixelText-Thin.ufo/glyphs/zjekomicyr.glif b/sources/FixelText-Thin.ufo/glyphs/zjekomicyr.glif new file mode 100644 index 00000000..5bea2bd0 --- /dev/null +++ b/sources/FixelText-Thin.ufo/glyphs/zjekomicyr.glif @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + com.fontlab.metricsLeft + з-20 + com.fontlab.metricsRight + njekomicyr + public.markColor + 0.999,1,0.6,1 + + + diff --git a/sources/FixelText-Thin.ufo/groups.plist b/sources/FixelText-Thin.ufo/groups.plist new file mode 100644 index 00000000..0215e532 --- /dev/null +++ b/sources/FixelText-Thin.ufo/groups.plist @@ -0,0 +1,2992 @@ + + + + + accent + + grave + acute.case + grave.case + acute + + case + + arrowdown.case + arrowdown.ss01.case + arrowleft.case + arrowleft.ss01.case + arrowright.case + arrowright.ss01.case + arrowup.case + arrowup.ss01.case + backslash.case + bar.case + braceleft.case + braceright.case + bracketleft.case + bracketright.case + brokenbar.case + bullet.case + colon.case + emdash.case + endash.case + exclamdown.case + guillemetleft.case + guillemetright.case + guilsinglleft.case + guilsinglright.case + hyphen.case + parenleft.case + parenright.case + questiondown.case + semicolon.case + at.case + bracketangleleft.case + bracketangleright.case + slash.case + + case_def + + arrowdown + arrowdown.ss01 + arrowleft + arrowleft.ss01 + arrowright + arrowright.ss01 + arrowup + arrowup.ss01 + backslash + bar + braceleft + braceright + bracketleft + bracketright + brokenbar + bullet + colon + emdash + endash + exclamdown + guillemetleft + guillemetright + guilsinglleft + guilsinglright + hyphen + parenleft + parenright + questiondown + semicolon + at + bracketangleleft + bracketangleright + slash + + cpsp + + 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 + Agrave + Aacute + Acircumflex + Atilde + Adieresis + Aring + AE + Ccedilla + Egrave + Eacute + Ecircumflex + Edieresis + Igrave + Iacute + Icircumflex + Idieresis + Eth + Ntilde + Ograve + Oacute + Ocircumflex + Otilde + Odieresis + Oslash + Ugrave + Uacute + Ucircumflex + Udieresis + Yacute + Thorn + Amacron + Abreve + Aogonek + Cacute + Ccircumflex + Cdotaccent + Ccaron + Dcaron + Dcroat + Emacron + Ebreve + Edotaccent + Eogonek + Ecaron + Gcircumflex + Gbreve + Gdotaccent + Gcommaaccent + Hcircumflex + Hbar + Itilde + Imacron + Ibreve + Iogonek + Idotaccent + IJ + Jcircumflex + Kcommaaccent + Lacute + Lcommaaccent + Lcaron + Ldot + Lslash + Nacute + Ncommaaccent + Ncaron + Eng + Omacron + Obreve + Ohungarumlaut + OE + Racute + Rcommaaccent + Rcaron + Sacute + Scircumflex + Scedilla + Scaron + Tcedilla + Tcaron + Tbar + Utilde + Umacron + Ubreve + Uring + Uhungarumlaut + Uogonek + Wcircumflex + Ycircumflex + Ydieresis + Zacute + Zdotaccent + Zcaron + Schwa + Acaron + Gacute + AEacute + Oslashacute + Scommaaccent + Tcommaaccent + Delta + Omega + Iegravecyr + uniF43A + A-cy.accented + E-cy.accented + Ii-cy.accented + O-cy.accented + U-cy.accented + Yeru-cy.accented + Ereversed-cy.accented + Iu-cy.accented + Ia-cy.accented + Io-cy.accented + uniF498 + uniF49A + uniF49C + uniF49E + uniF4C6 + uniF4CC + uniF4D2 + uniF4D4 + uniF4D6 + uniF4D8 + uniF50E + uniF510 + uniF512 + uniF514 + uniF516 + uniF518 + uniF51A + uniF51C + uniF51E + Yeru-cymacron + uniF522 + uniF524 + uniF526 + uniF528 + uniF52A + uniF52C + uniF52E + uniF532 + uniF536 + uniF538 + uniF830 + uniF833 + uniF839 + uniF86F + uniF872 + uniF875 + uniF878 + uniF87B + uniF87E + Io-cy + Djecyr + Gjecyr + E-cy + Dze-cy + I-cy + Yi-cy + Jecyr + Ljecyr + Njecyr + Tshecyr + Kjecyr + Igravecyr + Ushort-cy + Dzhecyr + A-cy + Be-cy + Ve-cy + Ge-cy + De-cy + Ie-cy + Zhe-cy + Ze-cy + Ii-cy + Iishort-cy + Ka-cy + El-cy + Em-cy + En-cy + O-cy + Pe-cy + Er-cy + Es-cy + Te-cy + U-cy + Ef-cy + Ha-cy + Tse-cy + Che-cy + Sha-cy + Shcha-cy + Hardsign-cy + Yeru-cy + Softsign-cy + Ereversed-cy + Iu-cy + Ia-cy + Omegacyr + Yatcyr + Eiotifiedcyr + Yuslittlecyr + Yuslittleiotifiedcyr + Yusbigcyr + Yusbigiotifiedcyr + Ksicyr + Psicyr + Fitacyr + Izhitsacyr + Izhitsagravedblcyr + Ukcyr + Omegaroundcyr + Omegatitlocyr + Otcyr + Koppacyr + Ishortsharptailcyr + Semisoftcyr + Ertickcyr + Gheupturn-cy + Gestrokecyr + Gehookcyr + Zhetailcyr + Zetailcyr + Katailcyr + Kaverticalstrokecyr + Kastrokecyr + Kabashkcyr + Entailcyr + Engecyr + Pehookcyr + Haabkhcyr + Estailcyr + Tetailcyr + Ustraightcyr + Ustraightstrokecyr + Xatailcyr + Tetsecyr + Chetailcyr + Chevertcyr + Shhacyr + Cheabkhcyr + Cheabkhtailcyr + Palochkacyr + Zhebrevecyr + Kahookcyr + Elsharptailcyr + Enhookcyr + Ensharptailcyr + Chekhakascyr + Emsharptailcyr + Abrevecyr + Adieresiscyr + Aiecyr + Iebrevecyr + Schwacyr + Schwadieresiscyr + Zhedieresiscyr + Zedieresiscyr + Dzeabkhcyr + Imacroncyr + Idieresiscyr + Odieresiscyr + Obarcyr + Obardieresiscyr + Ereverseddieresiscyr + Umacroncyr + Udieresiscyr + Uacutedblcyr + Chedieresiscyr + Getailcyr + Ylongdieresiscyr + Gehookstrokecyr + Hahookcyr + Hastrokecyr + Dekomicyr + Djekomicyr + Zjekomicyr + Dzjekomicyr + Ljekomicyr + Njekomicyr + Sjekomicyr + Tjekomicyr + Reversedzecyr + Elhookcyr + Lhacyr + Rhacyr + Yaecyr + Qacyr + Wecyr + Kaaleutcyr + Elmiddlehookcyr + Enmiddlehookcyr + Petailcyr + Shhatailcyr + Enhookleftcyr + Dzzhecyr + Dchecyr + Eltailcyr + Wgrave + Wacute + Wdieresis + Germandbls + uni1EBC + Zemlya-cy + Dzelo-cy + DzeReversed-cy + Iota-cy + Djerv-cy + UkMonograph-cy + OmegaBroad-cy + YerNeutral-cy + YeruBackYer-cy + YatIotified-cy + YuReversed-cy + IotifiedA-cy + YusClosedlittle-cy + YusBlended-cy + YusiotifiedClosedLittle-cy + Yn-cy + TseReversed-cy + DeSoft-cy + ElSoft-cy + EmSoft-cy + OMonocular-cy + OBinocular-cy + ODoubleMonocular-cy + Dwe-cy + Dzwe-cy + Zhwe-cy + Cche-cy + Dzze-cy + TeWithMiddleHook-cy + Twe-cy + Tswe-cy + Tsse-cy + Tche-cy + Hwe-cy + Shwe-cy + DoubleO-cy + CrossedO-cy + A-cy.ss01 + A.ss01 + AE.ss01 + Aacute.ss01 + Abreve.ss01 + Acircumflex.ss01 + Adieresis.ss01 + Agrave.ss01 + Amacron.ss01 + Aogonek.ss01 + Aring.ss01 + Atilde.ss01 + Em-cy.ss01 + Eng.ss01 + G.ss01 + Gacute.ss01 + Gbreve.ss01 + Gcircumflex.ss01 + Gcommaaccent.ss01 + Gdotaccent.ss01 + Ha-cy.ss01 + Ia-cy.ss01 + J.ss01 + Jcircumflex.ss01 + K.ss01 + Ka-cy.ss01 + Kcommaaccent.ss01 + M.ss01 + N.ss01 + Nacute.ss01 + Ncaron.ss01 + Ncommaaccent.ss01 + Ntilde.ss01 + Q.ss01 + U-cy.ss01 + Ushort-cy.ss01 + V.ss01 + W.ss01 + Wacute.ss01 + Wcircumflex.ss01 + Wdieresis.ss01 + Wgrave.ss01 + X.ss01 + Y.ss01 + Yacute.ss01 + Ycircumflex.ss01 + Ydieresis.ss01 + Z.ss01 + Zacute.ss01 + Zcaron.ss01 + Zdotaccent.ss01 + Zetailcyr.BSH + Gestrokecyr.BSH + Estailcyr.BSH + Estailcyr.CHU + Zhe-cy.ss01 + + locl.SRB + + be-cy.SRB + iegravecyr.SRB + igravecyr.SRB + + loclSRB_def + + be-cy + iegravecyr + igravecyr + + locl_BGR + + De-cy.BGR + Ef-cy.BGR + El-cy.BGR + de-cy.BGR + eiotifiedcyr.BGR + el-cy.BGR + ge-cy.BGR + hardsign-cy.BGR + ii-cy.BGR + iishort-cy.BGR + iotifieda-cy.BGR + iu-cy.BGR + ka-cy.BGR + pe-cy.BGR + sha-cy.BGR + shcha-cy.BGR + softsign-cy.BGR + te-cy.BGR + tse-cy.BGR + ve-cy.BGR + yatcyr.BGR + yusbigiotifiedcyr.BGR + ze-cy.BGR + zhe-cy.BGR + + locl_def + + De-cy + Ef-cy + El-cy + de-cy + eiotifiedcyr + el-cy + ge-cy + hardsign-cy + ii-cy + iishort-cy + iotifieda-cy + iu-cy + ka-cy + pe-cy + sha-cy + shcha-cy + softsign-cy + te-cy + tse-cy + ve-cy + yatcyr + yusbigiotifiedcyr + ze-cy + zhe-cy + + pics + + neptune + leo + virgo + bishopwhite + knightwhite + rookblack + bishopblack + knightblack + heartwhite + diamondwhite-misc + spadewhite + heart + clubwhite + crossedswords + flower + floretteblack + florettewhite + floretteoutlinedpetalledblackeight + + pics_def + + A + B + C + D + E + F + G + H + I + J + K + L + M + N + O + P + Q + R + + public.kern1.A.ss012 + + A-cy.ss01 + A.ss01 + Aacute.ss01 + Abreve.ss01 + Acircumflex.ss01 + Adieresis.ss01 + Agrave.ss01 + Amacron.ss01 + Aogonek.ss01 + Aring.ss01 + Atilde.ss01 + + public.kern1.A2 + + A + A-cy + A-cy.accented + Aacute + Abreve + Abrevecyr + Acaron + Acircumflex + Adieresis + Adieresiscyr + Agrave + Amacron + Aogonek + Aring + Atilde + De-cy.BGR + Delta + El-cy.BGR + IotifiedA-cy + Yn-cy + YusClosedlittle-cy + YusiotifiedClosedLittle-cy + Yuslittlecyr + Yuslittleiotifiedcyr + uniF50E + uniF830 + + public.kern1.AE + + AE + AE.ss01 + AEacute + Aiecyr + + public.kern1.C1 + + C + Cacute + Ccaron + Ccedilla + Ccircumflex + Cdotaccent + E-cy + Eiotifiedcyr + Es-cy + Estailcyr + Estailcyr.BSH + Estailcyr.CHU + Reversedzecyr + uniF45D + uniF526 + uniF538 + uniF875 + + public.kern1.Decyr + + Chetailcyr + De-cy + Dwe-cy + Dzze-cy + Elsharptailcyr + Eltailcyr + Emsharptailcyr + Ensharptailcyr + Entailcyr + Ishortsharptailcyr + Petailcyr + Shcha-cy + Shwe-cy + Tetsecyr + Tse-cy + Tswe-cy + uniF87B + + public.kern1.E1 + + E + E-cy.accented + Eacute + Ebreve + Ecaron + Ecircumflex + Edieresis + Edotaccent + Egrave + Emacron + Eogonek + Ie-cy + Iebrevecyr + Io-cy + Io-cy.accented + Yaecyr + uni1EBC + uniF510 + uniF512 + uniF514 + uniF833 + + public.kern1.G.ss01 + + G.ss01 + Gacute.ss01 + Gbreve.ss01 + Gcircumflex.ss01 + Gcommaaccent.ss01 + Gdotaccent.ss01 + + public.kern1.G1 + + G + Gacute + Gbreve + Gcircumflex + Gcommaaccent + Gdotaccent + + public.kern1.Ge-cy + + DeSoft-cy + ElSoft-cy + EmSoft-cy + Engecyr + Ge-cy + Gehookstrokecyr + Gestrokecyr + Gestrokecyr.BSH + Getailcyr + Gheupturn-cy + Gjecyr + TseReversed-cy + YeruBackYer-cy + uniF872 + + public.kern1.H + + Eng + Eng.ss01 + H + Hbar + Hcircumflex + I + Iacute + Ibreve + Icircumflex + Idieresis + Idotaccent + Igrave + Imacron + Iogonek + Itilde + J.ss01 + Jcircumflex.ss01 + M + M.ss01 + N + N.ss01 + Nacute + Nacute.ss01 + Ncaron + Ncaron.ss01 + Ncommaaccent + Ncommaaccent.ss01 + Ntilde + Ntilde.ss01 + + public.kern1.Hardcyr + + Hardsign-cy + Ljecyr + Njecyr + Semisoftcyr + Shhacyr + Softsign-cy + YatIotified-cy + Yatcyr + YerNeutral-cy + uniF478 + + public.kern1.J1 + + J + Jcircumflex + Jecyr + + public.kern1.K + + K + K.ss01 + Ka-cy + Ka-cy.ss01 + Kaaleutcyr + Kabashkcyr + Kastrokecyr + Kcommaaccent + Kcommaaccent.ss01 + Kjecyr + uniF86F + + public.kern1.L + + L + Lacute + Lcaron + Lcommaaccent + Lslash + + public.kern1.O + + Cheabkhcyr + Cheabkhtailcyr + CrossedO-cy + D + Dcaron + Dcroat + DoubleO-cy + Ef-cy + Ef-cy.BGR + Ereversed-cy + Ereversed-cy.accented + Ereverseddieresiscyr + Eth + Fitacyr + Iu-cy + Iu-cy.accented + O + O-cy + O-cy.accented + OBinocular-cy + ODoubleMonocular-cy + OMonocular-cy + Oacute + Obarcyr + Obardieresiscyr + Obreve + Ocircumflex + Odieresis + Odieresiscyr + Ograve + Ohungarumlaut + Omacron + Omega + Omegaroundcyr + Oslash + Oslashacute + Otilde + Q + Qacyr + Schwa + Schwacyr + Schwadieresiscyr + Sjekomicyr + uniF498 + uniF49A + uniF49C + uniF4D2 + uniF4D6 + uniF518 + uniF51A + uniF51C + uniF51E + uniF522 + uniF524 + uniF52C + uniF52E + uniF839 + + public.kern1.Oslash.alt + + Ha-cy + Ha-cy.ss01 + Hahookcyr + Lhacyr + Rhacyr + X + X.ss01 + uniF878 + + public.kern1.P + + Er-cy + Ertickcyr + P + uniF4D4 + + public.kern1.R + + R + Racute + Rcaron + Rcommaaccent + + public.kern1.S1 + + Dzwe-cy + S + Sacute + Scaron + Scedilla + Scircumflex + Scommaaccent + + public.kern1.T1 + + Koppacyr + T + Tcaron + Tcedilla + Tcommaaccent + Te-cy + Tetailcyr + Tsse-cy + Twe-cy + + public.kern1.U1 + + OmegaBroad-cy + Omegacyr + Omegatitlocyr + Otcyr + Psicyr + U + Uacute + Ubreve + Ucircumflex + Udieresis + Ugrave + Uhungarumlaut + Umacron + Uogonek + Uring + Utilde + + public.kern1.Ucyr1 + + U-cy + U-cy.accented + U-cy.ss01 + Uacutedblcyr + Udieresiscyr + Umacroncyr + Ushort-cy + Ushort-cy.ss01 + uniF4CC + + public.kern1.V + + Izhitsacyr + Izhitsagravedblcyr + V + V.ss01 + + public.kern1.W.ss011 + + W.ss01 + Wacute.ss01 + Wcircumflex.ss01 + Wdieresis.ss01 + Wgrave.ss01 + + public.kern1.W1 + + W + Wacute + Wcircumflex + Wdieresis + Wecyr + Wgrave + + public.kern1.Y.ss011 + + Y.ss01 + Yacute.ss01 + Ycircumflex.ss01 + Ydieresis.ss01 + + public.kern1.Y1 + + Ustraightcyr + Ustraightstrokecyr + Y + Yacute + Ycircumflex + Ydieresis + uniF43A + + public.kern1.Yacyr + + Cche-cy + Che-cy + Chedieresiscyr + Chekhakascyr + Chevertcyr + Dekomicyr + Elhookcyr + Em-cy + En-cy + Enhookcyr + Enhookleftcyr + I-cy + Ia-cy + Ia-cy.accented + Ia-cy.ss01 + Idieresiscyr + Ii-cy + Ii-cy.accented + Iishort-cy + Imacroncyr + Palochkacyr + Pe-cy + Sha-cy + Tche-cy + Yeru-cy + Yeru-cy.accented + Yeru-cymacron + Yi-cy + Ylongdieresiscyr + YuReversed-cy + palochkacyr + uniF45E + uniF45F + uniF4C6 + uniF4D8 + uniF528 + uniF52A + uniF532 + uniF536 + uniF87E + + public.kern1.Z1 + + Dzelo-cy + Z + Z.ss01 + Zacute + Zacute.ss01 + Zcaron + Zcaron.ss01 + Zdotaccent + Zdotaccent.ss01 + Zemlya-cy + + public.kern1.Ze-cy + + Dzeabkhcyr + Ksicyr + Ze-cy + Zedieresiscyr + Zetailcyr + Zetailcyr.BSH + uniF516 + + public.kern1.Zhe-cy + + Dzzhecyr + Katailcyr + Kaverticalstrokecyr + Xatailcyr + YusBlended-cy + Yusbigcyr + Yusbigiotifiedcyr + Zhe-cy + Zhebrevecyr + Zhedieresiscyr + Zhetailcyr + Zhwe-cy + + public.kern1.a1 + + a + aacute + abreve + acaron + acircumflex + adieresis + agrave + amacron + aogonek + aring + atilde + + public.kern1.c1 + + c + cacute + ccaron + ccedilla + ccircumflex + cdotaccent + e-cy + e-cy.hist + eiotifiedcyr + eiotifiedcyr.BGR + es-cy + estailcyr + estailcyr.BSH + estailcyr.CHU + koppacyr + reversedzecyr + sjekomicyr + uni1C83 + uniF475 + uniF527 + uniF539 + uniF876 + + public.kern1.comma1 + + comma + quotedblbase + quotesinglbase + + public.kern1.copyright1 + + copyright + registered + + public.kern1.dcaron + + dcaron + dcaron.ss01 + lcaron + + public.kern1.decyr1 + + chetailcyr + dchecyr + de-cy + de-cy.ss01 + dwe-cy + dzze-cy + elsharptailcyr + eltailcyr + emsharptailcyr + ensharptailcyr + entailcyr + ishortsharptailcyr + petailcyr + shcha-cy + shcha-cy.BGR + shhatailcyr + shwe-cy + tetsecyr + tse-cy + tse-cy.BGR + tswe-cy + uniF87C + + public.kern1.e.ss011 + + e.ss01 + eacute.ss01 + ebreve.ss01 + ecaron.ss01 + ecircumflex.ss01 + edieresis.ss01 + edotaccent.ss01 + egrave.ss01 + emacron.ss01 + eogonek.ss01 + oe.ss01 + + public.kern1.e1 + + ae + aeacute + aiecyr + cheabkhcyr + cheabkhtailcyr + e + e-cy.accented + eacute + ebreve + ecaron + ecircumflex + edieresis + edotaccent + egrave + emacron + eogonek + ie-cy + iebrevecyr + iegravecyr + iegravecyr.SRB + io-cy + io-cy.accented + uni1EBD + uniF511 + uniF513 + uniF515 + uniF834 + yaecyr + + public.kern1.el-cy.BGR + + el-cy.BGR + iotifieda-cy + iotifieda-cy.BGR + uni1C81 + yn-cy + yusClosedlittle-cy + yusiotifiedClosedLittle-cy + yuslittlecyr + yuslittleiotifiedcyr + + public.kern1.emdash1 + + emdash + endash + hyphen + + public.kern1.f1 + + f + f_f + + public.kern1.fi + + f_f_i + fi + + public.kern1.five1 + + five + five.tf + + public.kern1.four1 + + four + four.tf + + public.kern1.g.ss011 + + g.ss01 + gacute.ss01 + gbreve.ss01 + gcircumflex.ss01 + gcommaaccent.ss01 + gdotaccent.ss01 + + public.kern1.g1 + + g + gacute + gbreve + gcircumflex + gcommaaccent + gdotaccent + + public.kern1.gecyr + + deSoft-cy + elSoft-cy + emSoft-cy + engecyr + ge-cy + gehookstrokecyr + gestrokecyr + gestrokecyr.BSH + getailcyr + gheupturn-cy + gjecyr + + public.kern1.guillemotright1 + + guillemetright + guilsinglright + + public.kern1.hardcyr + + Tjekomicyr + djekomicyr + elmiddlehookcyr + enmiddlehookcyr + gehookcyr + hardsign-cy + hardsign-cy.BGR + hardsign-cy.ss01 + ljecyr + ljecyr.ss01 + ljekomicyr + njecyr + njecyr.ss01 + njekomicyr + pehookcyr + semisoftcyr + softsign-cy + softsign-cy.BGR + softsign-cy.ss01 + tewithmiddlehook-cy + tjekomicyr + uni1C86 + uni1C87 + uniF479 + yatIotified-cy + yatcyr + yatcyr.BGR + yerNeutral-cy + zjekomicyr + + public.kern1.i1 + + Djekomicyr + Ljekomicyr + Njekomicyr + Zjekomicyr + i + i-cy + iacute + icircumflex + igrave + imacron + iogonek + itilde + uniF476 + yi-cy.alt + + public.kern1.icyr1 + + cche-cy + che-cy + chedieresiscyr + chekhakascyr + chevertcyr + de-cy.BGR + el-cy + elhookcyr + em-cy + en-cy + enhookcyr + enhookleftcyr + ia-cy + ia-cy.accented + idieresiscyr + igravecyr + ii-cy + ii-cy.accented + iishort-cy + imacroncyr + mu + pe-cy + psicyr + q + qacyr + sha-cy + sha-cy.BGR + tche-cy + tseReversed-cy + ubreve + uni1C85 + uniF4C7 + uniF4D9 + uniF521 + uniF529 + uniF52B + uniF533 + uniF537 + uniF873 + uniF87F + utilde + yeru-cy + yeru-cy.accented + yeru-cy.ss01 + yeruBackyer-cy + ylongdieresiscyr + yuReversed-cy + + public.kern1.j1 + + ij + j + jcircumflex + jdotless + + public.kern1.k + + k + ka-cy + ka-cy.BGR + kaaleutcyr + kabashkcyr + kastrokecyr + kcommaaccent + kgreenlandic + kjecyr + uniF870 + + public.kern1.l + + f_f_l + fl + l + lacute + lcommaaccent + + public.kern1.l.ss011 + + Iota-cy + iota-cy + l.ss01 + lacute.ss01 + lcommaaccent.ss01 + + public.kern1.n + + Djecyr + Elmiddlehookcyr + Enmiddlehookcyr + Gehookcyr + Hwe-cy + Kahookcyr + Pehookcyr + Shhatailcyr + TeWithMiddleHook-cy + Tshecyr + a-cy.accented + a-cy.ss01 + a.ss01 + aacute.ss01 + abreve.ss01 + abrevecyr + acircumflex.ss01 + adieresis.ss01 + adieresiscyr + agrave.ss01 + aogonek.ss01 + aring.ss01 + atilde.ss01 + djecyr + el-cy.ss01 + h + hbar + hcircumflex + hwe-cy + ia-cy.ss01 + iotifieda-cy.hist + m + n + nacute + napostrophe + ncaron + ncommaaccent + ntilde + pe-cy.BGR + q.ss01 + shhacyr + te-cy.BGR + tshecyr + uniF49E + uniF49F + uniF50F + uniF831 + + public.kern1.numero + + numero + numero.ss01 + + public.kern1.o1 + + b + b.ss01 + be-cy.SRB + crossedo-cy + ef-cy + er-cy + er-cy.ss01 + ereversed-cy + ereversed-cy.accented + ereverseddieresiscyr + ertickcyr + eturned + fitacyr + iu-cy + iu-cy.BGR + iu-cy.accented + o + o-cy + o-cy.accented + oBinocular-cy + oDoubleMonocular-cy + oMonocular-cy + oacute + obarcyr + obardieresiscyr + obreve + ocircumflex + odieresis + odieresiscyr + ograve + ohungarumlaut + omacron + omegaBroad-cy + omegaroundcyr + omegatitlocyr + oslashacute + otilde + p + p.ss01 + schwacyr + schwadieresiscyr + thorn + uni1C82 + uniF499 + uniF49D + uniF4D3 + uniF4D5 + uniF4D7 + uniF519 + uniF51B + uniF51D + uniF51F + uniF523 + uniF525 + uniF52D + uniF52F + uniF83A + + public.kern1.period1 + + ellipsis + period + + public.kern1.quotedbl1 + + quotedbl + quotesingle + + public.kern1.quoteleft1 + + quotedblleft + quoteleft + + public.kern1.quoteright1 + + apostrophemod + minute + quotedblright + quoteright + second + + public.kern1.s1 + + dzwe-cy + s + sacute + scaron + scedilla + scircumflex + scommaaccent + + public.kern1.t.ss011 + + t.ss01 + tcedilla.ss01 + tcommaaccent.ss01 + + public.kern1.t1 + + t + tcaron + tcedilla + tcommaaccent + + public.kern1.te-cy + + te-cy + tetailcyr + tsse-cy + twe-cy + + public.kern1.u1 + + igravecyr.SRB + ii-cy.BGR + iishort-cy.BGR + pe-cy.SRB + te-cy.SRB + u + uacute + ucircumflex + udieresis + ugrave + uhungarumlaut + umacron + uogonek + uring + + public.kern1.uni0435.ss011 + + ie-cy.ss01 + io-cy.ss01 + + public.kern1.v + + izhitsacyr + izhitsagravedblcyr + v + + public.kern1.w1 + + omegacyr + otcyr + w + wacute + wcircumflex + wdieresis + wecyr + wgrave + + public.kern1.x + + ha-cy + hahookcyr + lhacyr + rhacyr + uniF879 + x + + public.kern1.y1 + + Ukcyr + u-cy + u-cy.accented + uacutedblcyr + udieresiscyr + ukcyr + umacroncyr + uniF43B + uniF4CD + ushort-cy + ustraightcyr + ustraightstrokecyr + y + yacute + ycircumflex + ydieresis + + public.kern1.z1 + + dzelo-cy + z + zacute + zcaron + zdotaccent + zemlya-cy + + public.kern1.ze-cy + + dzeabkhcyr + ksicyr + uniF517 + ze-cy + ze-cy.BGR + zedieresiscyr + zetailcyr + zetailcyr.BSH + + public.kern1.zhe-cy + + dzzhecyr + katailcyr + kaverticalstrokecyr + xatailcyr + yusBlended-cy + yusbigcyr + yusbigiotifiedcyr + yusbigiotifiedcyr.BGR + zhe-cy + zhe-cy.BGR + zhebrevecyr + zhedieresiscyr + zhetailcyr + zhwe-cy + + public.kern2.A.ss01 + + A.ss01 + AE.ss01 + Aacute.ss01 + Acircumflex.ss01 + Adieresis.ss01 + Agrave.ss01 + Amacron.ss01 + Aogonek.ss01 + Atilde.ss01 + + public.kern2.A.ss012 + + A-cy.ss01 + Abreve.ss01 + Aring.ss01 + + public.kern2.A2 + + A + A-cy + A-cy.accented + AE + AEacute + Aacute + Abreve + Abrevecyr + Acaron + Acircumflex + Adieresis + Adieresiscyr + Agrave + Aiecyr + Amacron + Aogonek + Aring + Atilde + De-cy.BGR + Delta + El-cy.BGR + Yn-cy + YusClosedlittle-cy + Yuslittlecyr + uniF50E + uniF830 + + public.kern2.B + + B + D + Dcaron + E + Eacute + Ecaron + Ecircumflex + Edieresis + Edotaccent + Egrave + Emacron + Eogonek + F + H + Hbar + Hcircumflex + I + Iacute + Ibreve + Icircumflex + Idieresis + Idotaccent + Igrave + Imacron + Iogonek + Itilde + K + K.ss01 + Kcommaaccent + Kcommaaccent.ss01 + L + Lacute + Lcaron + Lcommaaccent + Ldot + M + N + N.ss01 + Nacute + Nacute.ss01 + Ncaron + Ncaron.ss01 + Ncommaaccent + Ncommaaccent.ss01 + Ntilde + Ntilde.ss01 + P + R + Racute + Rcaron + Rcommaaccent + Thorn + uni1EBC + + public.kern2.Che-cy + + Cche-cy + Che-cy + Chedieresiscyr + Chekhakascyr + Chetailcyr + Chevertcyr + uniF4C6 + uniF87E + + public.kern2.De-cy + + Dchecyr + De-cy + DeSoft-cy + Dwe-cy + Dzze-cy + Dzzhecyr + TseReversed-cy + + public.kern2.El-cy + + El-cy + ElSoft-cy + Elhookcyr + Elmiddlehookcyr + Elsharptailcyr + Eltailcyr + Lhacyr + Ljekomicyr + uniF872 + + public.kern2.Eth + + Dcroat + Eth + Gestrokecyr + + public.kern2.G + + C + Cacute + Ccaron + Ccedilla + Ccircumflex + Cdotaccent + CrossedO-cy + DoubleO-cy + E-cy + Ef-cy.BGR + Es-cy + Estailcyr + Estailcyr.BSH + Estailcyr.CHU + Fitacyr + G + G.ss01 + Gacute + Gacute.ss01 + Gbreve + Gbreve.ss01 + Gcircumflex + Gcircumflex.ss01 + Gcommaaccent + Gcommaaccent.ss01 + Gdotaccent + Gdotaccent.ss01 + Haabkhcyr + Koppacyr + O + O-cy + O-cy.accented + OBinocular-cy + ODoubleMonocular-cy + OE + OMonocular-cy + Oacute + Obarcyr + Obardieresiscyr + Obreve + Ocircumflex + Odieresis + Odieresiscyr + Ograve + Ohungarumlaut + Omacron + Omegaroundcyr + Oslash + Otilde + Q + Q.ss01 + Qacyr + Schwacyr + Schwadieresiscyr + Sjekomicyr + Ukcyr + YuReversed-cy + uniF45D + uniF49A + uniF49C + uniF4D2 + uniF518 + uniF51A + uniF51C + uniF51E + uniF526 + uniF839 + uniF875 + + public.kern2.Gecyr + + Be-cy + E-cy.accented + Eiotifiedcyr + Em-cy + EmSoft-cy + Emsharptailcyr + En-cy + Engecyr + Enhookcyr + Enhookleftcyr + Enmiddlehookcyr + Ensharptailcyr + Entailcyr + Er-cy + Ertickcyr + Gehookcyr + Gestrokecyr.BSH + Getailcyr + Gheupturn-cy + Gjecyr + Hwe-cy + I-cy + Iebrevecyr + Ii-cy + Ii-cy.accented + Io-cy.accented + IotifiedA-cy + Iu-cy.accented + Ka-cy + Kaaleutcyr + Kahookcyr + Katailcyr + Kaverticalstrokecyr + Kjecyr + Njekomicyr + Palochkacyr + Pe-cy + Pehookcyr + Petailcyr + Rhacyr + Shhacyr + Shhatailcyr + Shwe-cy + Tswe-cy + Ve-cy + Yeru-cy.accented + Yeru-cymacron + Yi-cy + Ylongdieresiscyr + Yusbigiotifiedcyr + YusiotifiedClosedLittle-cy + Yuslittleiotifiedcyr + palochkacyr + uniF45E + uniF45F + uniF498 + uniF4D4 + uniF510 + uniF512 + uniF514 + uniF52C + uniF52E + uniF532 + uniF536 + uniF833 + uniF86F + uniF87B + + public.kern2.Ia-cy + + Ia-cy + Ia-cy.accented + Yaecyr + uniF4D8 + uniF528 + uniF52A + + public.kern2.Iishort-cy + + Idieresiscyr + Iishort-cy + Imacroncyr + Ishortsharptailcyr + + public.kern2.J + + J + Jcircumflex + Jecyr + + public.kern2.Oslash.alt + + Ha-cy.ss01 + Hahookcyr + X + X.ss01 + Xatailcyr + uniF878 + + public.kern2.S + + Dzwe-cy + S + Sacute + Scaron + Scedilla + Scircumflex + Scommaaccent + + public.kern2.T + + Djecyr + T + Tcaron + Tcedilla + Tche-cy + Tcommaaccent + Te-cy + TeWithMiddleHook-cy + Tetailcyr + Tetsecyr + Tjekomicyr + Tshecyr + Tsse-cy + Twe-cy + + public.kern2.U + + Iota-cy + OmegaBroad-cy + Omegacyr + Omegatitlocyr + Otcyr + Psicyr + U + Uacute + Ubreve + Ucircumflex + Udieresis + Ugrave + Uhungarumlaut + Umacron + Uogonek + Uring + Utilde + + public.kern2.Ucyr.ss01 + + U-cy.accented + U-cy.ss01 + Uacutedblcyr + Udieresiscyr + Umacroncyr + Ushort-cy.ss01 + uniF4CC + + public.kern2.V + + Izhitsacyr + Izhitsagravedblcyr + V + V.ss01 + + public.kern2.W + + W + W.ss01 + Wacute + Wacute.ss01 + Wcircumflex + Wcircumflex.ss01 + Wdieresis + Wdieresis.ss01 + Wecyr + Wgrave + Wgrave.ss01 + + public.kern2.Y + + Ustraightcyr + Ustraightstrokecyr + Y + Y.ss01 + Yacute + Yacute.ss01 + Ycircumflex + Ycircumflex.ss01 + Ydieresis + Ydieresis.ss01 + uniF43A + + public.kern2.Z + + Dzelo-cy + Z + Z.ss01 + Zacute + Zacute.ss01 + Zcaron + Zcaron.ss01 + Zdotaccent + Zdotaccent.ss01 + Zemlya-cy + + public.kern2.Ze-cy1 + + Dzeabkhcyr + Ksicyr + Ze-cy + Zedieresiscyr + Zetailcyr + Zetailcyr.BSH + Zhwe-cy + uniF516 + + public.kern2.Zhe-cy1 + + YusBlended-cy + Yusbigcyr + Zhe-cy + Zhebrevecyr + Zhedieresiscyr + Zhetailcyr + + public.kern2.a + + a + a-cy + a-cy.accented + aacute + abreve + abrevecyr + acaron + acircumflex + adieresis + adieresiscyr + ae + aeacute + agrave + aiecyr + amacron + aogonek + aring + atilde + uniF50F + uniF831 + + public.kern2.acute.case + + acute.case + hungarumlaut.case + + public.kern2.che-cy + + cche-cy + che-cy + chedieresiscyr + chekhakascyr + chetailcyr + chevertcyr + uniF4C7 + uniF87F + + public.kern2.comma + + comma + quotedblbase + quotesinglbase + + public.kern2.copyright + + copyright + registered + + public.kern2.decyr.ss01 + + de-cy.ss01 + deSoft-cy + dwe-cy + dzze-cy + dzzhecyr + tseReversed-cy + + public.kern2.el-cy + + el-cy + el-cy.ss01 + elSoft-cy + elhookcyr + elmiddlehookcyr + elsharptailcyr + eltailcyr + lhacyr + ljecyr.ss01 + ljekomicyr + uniF873 + + public.kern2.el-cy.BGR1 + + el-cy.BGR + uni1C81 + yn-cy + yusClosedlittle-cy + yuslittlecyr + + public.kern2.emdash + + emdash + endash + hyphen + + public.kern2.f + + f + f_f + f_f_i + f_f_l + fi + fl + gestrokecyr + + public.kern2.f_f.ss01 + + f_f.ss01 + f_f_i.ss01 + f_f_l.ss01 + + public.kern2.fi.ss01 + + fi.ss01 + fl.ss01 + + public.kern2.five + + five + five.tf + + public.kern2.four + + four + four.tf + + public.kern2.g + + g + gacute + gbreve + gcircumflex + gcommaaccent + gdotaccent + + public.kern2.g.ss01 + + g.ss01 + gacute.ss01 + gbreve.ss01 + gcircumflex.ss01 + gcommaaccent.ss01 + gdotaccent.ss01 + + public.kern2.guillemotleft + + guillemetleft + guilsinglleft + + public.kern2.guillemotright + + guillemetright + guilsinglright + + public.kern2.h + + eiotifiedcyr.BGR + h + hcircumflex + hwe-cy + iotifieda-cy.BGR + iu-cy.BGR + k + ka-cy.BGR + kcommaaccent + l + lacute + lcaron + lcommaaccent + ldot + shhacyr + shhatailcyr + ve-cy.BGR + yatcyr.BGR + yusbigiotifiedcyr.BGR + + public.kern2.i1 + + i + i-cy + iacute + icircumflex + igrave + imacron + iogonek + itilde + uniF476 + yi-cy.alt + + public.kern2.ia-cy + + ia-cy + ia-cy.accented + ia-cy.ss01 + uniF4D9 + uniF529 + uniF52B + yaecyr + + public.kern2.j + + enhookleftcyr + j + jcircumflex + jdotless + + public.kern2.l.ss01 + + l.ss01 + lacute.ss01 + lcaron.ss01 + lcommaaccent.ss01 + ldot.ss01 + + public.kern2.m + + eiotifiedcyr + em-cy + emSoft-cy + emsharptailcyr + en-cy + eng + engecyr + enhookcyr + enmiddlehookcyr + ensharptailcyr + entailcyr + er-cy + er-cy.ss01 + ertickcyr + ge-cy + gehookcyr + gehookstrokecyr + gestrokecyr.BSH + getailcyr + gheupturn-cy + gjecyr + idieresiscyr + idotless + igravecyr + ii-cy + ii-cy.accented + iishort-cy + imacroncyr + iotifieda-cy + ishortsharptailcyr + iu-cy + iu-cy.accented + ka-cy + kaaleutcyr + kahookcyr + katailcyr + kaverticalstrokecyr + kgreenlandic + kjecyr + m + mu + n + nacute + ncaron + ncommaaccent + njecyr.ss01 + njekomicyr + ntilde + p + p.ss01 + pe-cy + pe-cy.BGR + pehookcyr + petailcyr + psicyr + r + racute + rcaron + rcommaaccent + rhacyr + sha-cy + shcha-cy + shwe-cy + softsign-cy + softsign-cy.BGR + softsign-cy.ss01 + te-cy.BGR + tse-cy + tswe-cy + uni1C85 + uniF499 + uniF4D5 + uniF521 + uniF52D + uniF52F + uniF533 + uniF537 + uniF870 + uniF87C + ve-cy + ve-cy.ss01 + yatIotified-cy + yeru-cy + yeru-cy.accented + yeru-cy.ss01 + ylongdieresiscyr + yusbigiotifiedcyr + yusiotifiedClosedLittle-cy + yuslittleiotifiedcyr + + public.kern2.o + + Dekomicyr + Djekomicyr + a-cy.ss01 + a.ss01 + aacute.ss01 + abreve.ss01 + acircumflex.ss01 + adieresis.ss01 + agrave.ss01 + amacron.ss01 + aogonek.ss01 + aring.ss01 + atilde.ss01 + c + cacute + ccaron + ccedilla + ccircumflex + cdotaccent + cent + crossedo-cy + d + d.ss01 + dcaron + dcaron.ss01 + dcroat + dcroat.ss01 + de-cy.BGR + dekomicyr + djekomicyr + e + e-cy + e-cy.accented + e-cy.hist + e.ss01 + eacute + eacute.ss01 + ebreve + ebreve.ss01 + ecaron + ecaron.ss01 + ecircumflex + ecircumflex.ss01 + edieresis + edieresis.ss01 + edotaccent + edotaccent.ss01 + ef-cy + egrave + egrave.ss01 + emacron + emacron.ss01 + eogonek + eogonek.ss01 + es-cy + estailcyr + estailcyr.BSH + estailcyr.CHU + eth + eturned + fitacyr + haabkhcyr + ie-cy + ie-cy.ss01 + iebrevecyr + iegravecyr + iegravecyr.SRB + io-cy + io-cy.accented + io-cy.ss01 + koppacyr + o + o-cy + o-cy.accented + oBinocular-cy + oDoubleMonocular-cy + oMonocular-cy + oacute + obarcyr + obardieresiscyr + obreve + ocircumflex + odieresis + odieresiscyr + oe.ss01 + ograve + ohungarumlaut + omacron + omegaBroad-cy + omegaroundcyr + omegatitlocyr + oslashacute + otilde + q + q.ss01 + qacyr + schwacyr + schwadieresiscyr + sjekomicyr + ukcyr + uni1C82 + uni1C83 + uni1EBD + uniF475 + uniF49D + uniF4D3 + uniF511 + uniF513 + uniF515 + uniF519 + uniF51B + uniF51D + uniF51F + uniF527 + uniF834 + uniF83A + uniF876 + yuReversed-cy + + public.kern2.percent + + percent + perthousand + + public.kern2.period + + ellipsis + period + + public.kern2.quotedbl + + quotedbl + quotesingle + + public.kern2.quoteleft + + quotedblleft + quoteleft + + public.kern2.quoteright + + apostrophemod + minute + quotedblright + quoteright + second + + public.kern2.s + + dzwe-cy + s + sacute + scaron + scedilla + scircumflex + scommaaccent + + public.kern2.t + + t + t.ss01 + tbar.ss01 + tcaron + tcaron.ss01 + tcedilla + tcedilla.ss01 + tcommaaccent + tcommaaccent.ss01 + + public.kern2.tecyr + + tche-cy + te-cy.ss01 + tetailcyr + tetsecyr + tewithmiddlehook-cy + tjekomicyr + tsse-cy + twe-cy + + public.kern2.u + + igravecyr.SRB + ii-cy.BGR + iishort-cy.BGR + iota-cy + pe-cy.SRB + sha-cy.BGR + shcha-cy.BGR + te-cy.SRB + tse-cy.BGR + u + uacute + ubreve + ucircumflex + udieresis + ugrave + uhungarumlaut + umacron + uogonek + uring + utilde + + public.kern2.v1 + + izhitsacyr + izhitsagravedblcyr + v + + public.kern2.w + + omegacyr + otcyr + w + wacute + wcircumflex + wdieresis + wecyr + wgrave + + public.kern2.x + + ha-cy + hahookcyr + uniF879 + x + + public.kern2.y + + u-cy + u-cy.accented + uacutedblcyr + udieresiscyr + umacroncyr + uniF43B + uniF4CD + ustraightcyr + ustraightstrokecyr + y + yacute + ycircumflex + ydieresis + + public.kern2.z + + dzelo-cy + z + zacute + zcaron + zdotaccent + zemlya-cy + + public.kern2.ze-cy1 + + dzeabkhcyr + ksicyr + uniF517 + ze-cy + ze-cy.BGR + zedieresiscyr + zetailcyr + zetailcyr.BSH + zhwe-cy + + public.kern2.zero + + uni1C80 + zero + zero.tf + + public.kern2.zhe-cy1 + + xatailcyr + yusBlended-cy + yusbigcyr + zhe-cy + zhe-cy.BGR + zhebrevecyr + zhedieresiscyr + zhetailcyr + + ss01 + + A-cy.ss01 + A.ss01 + AE.ss01 + Aacute.ss01 + Abreve.ss01 + Acircumflex.ss01 + Adieresis.ss01 + Agrave.ss01 + Amacron.ss01 + Aogonek.ss01 + Aring.ss01 + Atilde.ss01 + Em-cy.ss01 + Eng.ss01 + G.ss01 + Gacute.ss01 + Gbreve.ss01 + Gcircumflex.ss01 + Gcommaaccent.ss01 + Gdotaccent.ss01 + Ha-cy.ss01 + Ia-cy.ss01 + J.ss01 + Jcircumflex.ss01 + K.ss01 + Ka-cy.ss01 + Kcommaaccent.ss01 + M.ss01 + N.ss01 + Nacute.ss01 + Ncaron.ss01 + Ncommaaccent.ss01 + Ntilde.ss01 + Q.ss01 + U-cy.ss01 + Ushort-cy.ss01 + V.ss01 + W.ss01 + Wacute.ss01 + Wcircumflex.ss01 + Wdieresis.ss01 + Wgrave.ss01 + X.ss01 + Y.ss01 + Yacute.ss01 + Ycircumflex.ss01 + Ydieresis.ss01 + Z.ss01 + Zacute.ss01 + Zcaron.ss01 + Zdotaccent.ss01 + Zhe-cy.ss01 + a-cy.ss01 + a.ss01 + aacute.ss01 + abreve.ss01 + acircumflex.ss01 + adieresis.ss01 + ae.ss01 + agrave.ss01 + amacron.ss01 + aogonek.ss01 + aring.ss01 + arrowdown.ss01 + arrowdown.ss01.case + arrowleft.ss01 + arrowleft.ss01.case + arrowright.ss01 + arrowright.ss01.case + arrowup.ss01 + arrowup.ss01.case + atilde.ss01 + b.ss01 + d.ss01 + dcaron.ss01 + dcroat.ss01 + de-cy.ss01 + e.ss01 + eacute.ss01 + ebreve.ss01 + ecaron.ss01 + ecircumflex.ss01 + edieresis.ss01 + edotaccent.ss01 + egrave.ss01 + el-cy.ss01 + emacron.ss01 + eogonek.ss01 + er-cy.ss01 + f.ss01 + f_f.ss01 + f_f_i.ss01 + f_f_l.ss01 + fi.ss01 + fl.ss01 + g.ss01 + gacute.ss01 + gbreve.ss01 + gcircumflex.ss01 + gcommaaccent.ss01 + gdotaccent.ss01 + germandbls.ss01 + hardsign-cy.ss01 + ia-cy.ss01 + ie-cy.ss01 + io-cy.ss01 + l.ss01 + lacute.ss01 + lcaron.ss01 + lcommaaccent.ss01 + ldot.ss01 + ljecyr.ss01 + lslash.ss01 + njecyr.ss01 + numero.ss01 + oe.ss01 + p.ss01 + q.ss01 + softsign-cy.ss01 + t.ss01 + tbar.ss01 + tcaron.ss01 + tcedilla.ss01 + tcommaaccent.ss01 + te-cy.ss01 + ve-cy.ss01 + yen.ss01 + yeru-cy.ss01 + + ss01_def + + A-cy + A + AE + Aacute + Abreve + Acircumflex + Adieresis + Agrave + Amacron + Aogonek + Aring + Atilde + Em-cy + Eng + G + Gacute + Gbreve + Gcircumflex + Gcommaaccent + Gdotaccent + Ha-cy + Ia-cy + J + Jcircumflex + K + Ka-cy + Kcommaaccent + M + N + Nacute + Ncaron + Ncommaaccent + Ntilde + Q + U-cy + Ushort-cy + V + W + Wacute + Wcircumflex + Wdieresis + Wgrave + X + Y + Yacute + Ycircumflex + Ydieresis + Z + Zacute + Zcaron + Zdotaccent + Zhe-cy + a-cy + a + aacute + abreve + acircumflex + adieresis + ae + agrave + amacron + aogonek + aring + arrowdown + arrowdown.case + arrowleft + arrowleft.case + arrowright + arrowright.case + arrowup + arrowup.case + atilde + b + d + dcaron + dcroat + de-cy + e + eacute + ebreve + ecaron + ecircumflex + edieresis + edotaccent + egrave + el-cy + emacron + eogonek + er-cy + f + f_f + f_f_i + f_f_l + fi + fl + g + gacute + gbreve + gcircumflex + gcommaaccent + gdotaccent + germandbls + hardsign-cy + ia-cy + ie-cy + io-cy + l + lacute + lcaron + lcommaaccent + ldot + ljecyr + lslash + njecyr + numero + oe + p + q + softsign-cy + t + tbar + tcaron + tcedilla + tcommaaccent + te-cy + ve-cy + yen + yeru-cy + + + diff --git a/sources/FixelText-Thin.ufo/kerning.plist b/sources/FixelText-Thin.ufo/kerning.plist new file mode 100644 index 00000000..1f53f43f --- /dev/null +++ b/sources/FixelText-Thin.ufo/kerning.plist @@ -0,0 +1,26 @@ + + + + + Zhe-cy + + public.kern2.G + -20 + + uni1C82 + + public.kern2.y + -80 + + public.kern1.K + + public.kern2.G + -40 + + public.kern1.O + + Zhe-cy + -20 + + + diff --git a/sources/FixelText-Thin.ufo/layercontents.plist b/sources/FixelText-Thin.ufo/layercontents.plist new file mode 100644 index 00000000..7a35a5cf --- /dev/null +++ b/sources/FixelText-Thin.ufo/layercontents.plist @@ -0,0 +1,10 @@ + + + + + + public.default + glyphs + + + diff --git a/sources/FixelText-Thin.ufo/lib.plist b/sources/FixelText-Thin.ufo/lib.plist new file mode 100644 index 00000000..c0069150 --- /dev/null +++ b/sources/FixelText-Thin.ufo/lib.plist @@ -0,0 +1,1671 @@ + + + + + com.fontlab.v2.tth + + stems + + 69 + + width + 69 + horizontal + + round + + 35 + 3 + 47 + 4 + 60 + 5 + 0 + 7 + 22 + 8 + + + 74 + + width + 74 + horizontal + + round + + 19 + 2 + 35 + 3 + 47 + 4 + 60 + 5 + 72 + 6 + 0 + 7 + 20 + 8 + + + 76 + + width + 76 + horizontal + + round + + 19 + 2 + 35 + 3 + 72 + 6 + 0 + 7 + 20 + 8 + + + 80 + + width + 80 + horizontal + + round + + 29 + 3 + 47 + 4 + 60 + 5 + 72 + 6 + 0 + 7 + 20 + 8 + + + 99 + + width + 99 + horizontal + + round + + 19 + 2 + 29 + 3 + 37 + 4 + 48 + 5 + 58 + 6 + 0 + 7 + 16 + 8 + + + 74 + + width + 74 + horizontal + + round + + 19 + 2 + 35 + 3 + 47 + 4 + 60 + 5 + 72 + 6 + 0 + 7 + 20 + 8 + + + 80 + + width + 80 + horizontal + + round + + 29 + 3 + 47 + 4 + 60 + 5 + 72 + 6 + 0 + 7 + 20 + 8 + + + 93 + + width + 93 + horizontal + + round + + 19 + 2 + 29 + 3 + 37 + 4 + 48 + 5 + 58 + 6 + 0 + 7 + 16 + 8 + + + + + com.schriftgestaltung.disablesAutomaticAlignment + + com.schriftgestaltung.fontMasterID + master01 + com.schriftgestaltung.glyphOrder + + com.schriftgestaltung.master.name + regular + com.schriftgestaltung.useNiceNames + + com.schriftgestaltung.weightValue + 400 + public.postscriptNames + + A-cy + uni0410 + A-cy.ss01 + uni0410.ss01 + Be-cy + uni0411 + Che-cy + uni0427 + De-cy + uni0414 + Dze-cy + uni0405 + E-cy + uni0404 + Ef-cy + uni0424 + El-cy + uni041B + Em-cy + uni041C + Em-cy.ss01 + uni041C.ss01 + En-cy + uni041D + Er-cy + uni0420 + Ereversed-cy + uni042D + Es-cy + uni0421 + Gacute + uni01F4 + Gacute.ss01 + uni01F4.ss01 + Gcommaaccent + uni0122 + Gcommaaccent.ss01 + uni0122.ss01 + Ge-cy + uni0413 + Germandbls + uni1E9E + Gheupturn-cy + uni0490 + Ha-cy + uni0425 + Ha-cy.ss01 + uni0425.ss01 + Hardsign-cy + uni042A + I-cy + uni0406 + Ia-cy + uni042F + Ia-cy.ss01 + uni042F.ss01 + Ie-cy + uni0415 + Ii-cy + uni0418 + Iishort-cy + uni0419 + Io-cy + uni0401 + Iu-cy + uni042E + Ka-cy + uni041A + Ka-cy.ss01 + uni041A.ss01 + Kcommaaccent + uni0136 + Kcommaaccent.ss01 + uni0136.ss01 + Lcommaaccent + uni013B + Ncommaaccent + uni0145 + Ncommaaccent.ss01 + uni0145.ss01 + O-cy + uni041E + Pe-cy + uni041F + Rcommaaccent + uni0156 + Scommaaccent + uni0218 + Sha-cy + uni0428 + Shcha-cy + uni0429 + Softsign-cy + uni042C + Tcedilla + uni0162 + Tcommaaccent + uni021A + Te-cy + uni0422 + Tse-cy + uni0426 + U-cy + uni0423 + U-cy.ss01 + uni0423.ss01 + Ushort-cy + uni040E + Ushort-cy.ss01 + uni040E.ss01 + Ve-cy + uni0412 + Yeru-cy + uni042B + Yi-cy + uni0407 + Ze-cy + uni0417 + Zhe-cy + uni0416 + Zhe-cy.ss01 + uni0416.ss01 + _perc-circule + _perccircule + a-cy + uni0430 + a-cy.ss01 + uni0430.ss01 + be-cy + uni0431 + che-cy + uni0447 + commaaccentcomb + uni0326 + commaaccentcomb.salt + uni0326.salt + de-cy + uni0434 + de-cy.ss01 + uni0434.ss01 + dze-cy + uni0455 + e-cy + uni0454 + ef-cy + uni0444 + el-cy + uni043B + el-cy.ss01 + uni043B.ss01 + em-cy + uni043C + en-cy + uni043D + er-cy + uni0440 + er-cy.ss01 + uni0440.ss01 + ereversed-cy + uni044D + es-cy + uni0441 + euro + Euro + gacute + uni01F5 + gacute.ss01 + uni01F5.ss01 + gcommaaccent + uni0123 + gcommaaccent.ss01 + uni0123.ss01 + ge-cy + uni0433 + gheupturn-cy + uni0491 + guillemetleft + guillemotleft + guillemetright + guillemotright + ha-cy + uni0445 + hardsign-cy + uni044A + hardsign-cy.ss01 + uni044A.ss01 + hryvnia + uni20B4 + i-cy + uni0456 + ia-cy + uni044F + ia-cy.ss01 + uni044F.ss01 + idotless + dotlessi + ie-cy + uni0435 + ie-cy.ss01 + uni0435.ss01 + ii-cy + uni0438 + iishort-cy + uni0439 + io-cy + uni0451 + io-cy.ss01 + uni0451.ss01 + iu-cy + uni044E + jdotless + uni0237 + je-cy + uni0458 + ka-cy + uni043A + kcommaaccent + uni0137 + lcommaaccent + uni013C + lcommaaccent.ss01 + uni013C.ss01 + ncommaaccent + uni0146 + numero + uni2116 + numero.ss01 + uni2116.ss01 + o-cy + uni043E + onesuperior + uni00B9 + pe-cy + uni043F + rcommaaccent + uni0157 + scommaaccent + uni0219 + sha-cy + uni0448 + shcha-cy + uni0449 + softsign-cy + uni044C + softsign-cy.ss01 + uni044C.ss01 + tcedilla + uni0163 + tcedilla.ss01 + uni0163.ss01 + tcommaaccent + uni021B + tcommaaccent.ss01 + uni021B.ss01 + te-cy + uni0442 + te-cy.ss01 + uni0442.ss01 + threesuperior + uni00B3 + tse-cy + uni0446 + twosuperior + uni00B2 + u-cy + uni0443 + ushort-cy + uni045E + ve-cy + uni0432 + ve-cy.ss01 + uni0432.ss01 + yeru-cy + uni044B + yeru-cy.ss01 + uni044B.ss01 + yi-cy + uni0457 + ze-cy + uni0437 + zhe-cy + uni0436 + + public.skipExportGlyphs + + Oslash.bold + oslash.bold + _perc-circule + + public.glyphOrder + + .notdef + NULL + CR + space + A + Aacute + Abreve + Acircumflex + Adieresis + Agrave + Amacron + Aogonek + Aring + Atilde + AE + B + C + Cacute + Ccaron + Ccedilla + Ccircumflex + Cdotaccent + D + Eth + Dcaron + Dcroat + E + Eacute + Ebreve + Ecaron + Ecircumflex + Edieresis + Edotaccent + Egrave + Emacron + Eogonek + F + G + Gacute + Gbreve + Gcircumflex + Gcommaaccent + Gdotaccent + H + Hbar + Hcircumflex + I + IJ + Iacute + Ibreve + Icircumflex + Idieresis + Idotaccent + Igrave + Imacron + Iogonek + Itilde + J + Jcircumflex + K + Kcommaaccent + L + Lacute + Lcaron + Lcommaaccent + Ldot + Lslash + M + N + Nacute + Ncaron + Ncommaaccent + Eng + Ntilde + O + Oacute + Obreve + Ocircumflex + Odieresis + Ograve + Ohungarumlaut + Omacron + Oslash + Otilde + OE + P + Thorn + Q + R + Racute + Rcaron + Rcommaaccent + S + Sacute + Scaron + Scedilla + Scircumflex + Scommaaccent + Germandbls + T + Tbar + Tcaron + Tcedilla + Tcommaaccent + U + Uacute + Ubreve + Ucircumflex + Udieresis + Ugrave + Uhungarumlaut + Umacron + Uogonek + Uring + Utilde + V + W + Wacute + Wcircumflex + Wdieresis + Wgrave + X + Y + Yacute + Ycircumflex + Ydieresis + Z + Zacute + Zcaron + Zdotaccent + A.ss01 + Aacute.ss01 + Abreve.ss01 + Acircumflex.ss01 + Adieresis.ss01 + Agrave.ss01 + Amacron.ss01 + Aogonek.ss01 + Aring.ss01 + Atilde.ss01 + AE.ss01 + G.ss01 + Gacute.ss01 + Gbreve.ss01 + Gcircumflex.ss01 + Gcommaaccent.ss01 + Gdotaccent.ss01 + J.ss01 + Jcircumflex.ss01 + K.ss01 + Kcommaaccent.ss01 + M.ss01 + N.ss01 + Nacute.ss01 + Ncaron.ss01 + Ncommaaccent.ss01 + Eng.ss01 + Ntilde.ss01 + Q.ss01 + V.ss01 + W.ss01 + Wacute.ss01 + Wcircumflex.ss01 + Wdieresis.ss01 + Wgrave.ss01 + X.ss01 + Y.ss01 + Yacute.ss01 + Ycircumflex.ss01 + Ydieresis.ss01 + Z.ss01 + Zacute.ss01 + Zcaron.ss01 + Zdotaccent.ss01 + a + aacute + abreve + acircumflex + adieresis + agrave + amacron + aogonek + aring + atilde + ae + b + c + cacute + ccaron + ccedilla + ccircumflex + cdotaccent + d + eth + dcaron + dcroat + e + eacute + ebreve + ecaron + ecircumflex + edieresis + edotaccent + egrave + emacron + eogonek + f + g + gacute + gbreve + gcircumflex + gcommaaccent + gdotaccent + h + hbar + hcircumflex + i + idotless + iacute + ibreve + icircumflex + idieresis + igrave + ij + imacron + iogonek + itilde + j + jdotless + jcircumflex + k + kcommaaccent + kgreenlandic + l + lacute + lcaron + lcommaaccent + ldot + lslash + m + n + nacute + napostrophe + ncaron + ncommaaccent + eng + ntilde + o + oacute + obreve + ocircumflex + odieresis + ograve + ohungarumlaut + omacron + oslash + otilde + oe + p + thorn + q + r + racute + rcaron + rcommaaccent + s + sacute + scaron + scedilla + scircumflex + scommaaccent + germandbls + t + tbar + tcaron + tcedilla + tcommaaccent + u + uacute + ubreve + ucircumflex + udieresis + ugrave + uhungarumlaut + umacron + uogonek + uring + utilde + v + w + wacute + wcircumflex + wdieresis + wgrave + x + y + yacute + ycircumflex + ydieresis + z + zacute + zcaron + zdotaccent + a.ss01 + aacute.ss01 + abreve.ss01 + acircumflex.ss01 + adieresis.ss01 + agrave.ss01 + amacron.ss01 + aogonek.ss01 + aring.ss01 + atilde.ss01 + ae.ss01 + b.ss01 + d.ss01 + dcaron.ss01 + dcroat.ss01 + e.ss01 + eacute.ss01 + ebreve.ss01 + ecaron.ss01 + ecircumflex.ss01 + edieresis.ss01 + edotaccent.ss01 + egrave.ss01 + emacron.ss01 + eogonek.ss01 + f.ss01 + g.ss01 + gacute.ss01 + gbreve.ss01 + gcircumflex.ss01 + gcommaaccent.ss01 + gdotaccent.ss01 + l.ss01 + lacute.ss01 + lcaron.ss01 + lcommaaccent.ss01 + ldot.ss01 + lslash.ss01 + oe.ss01 + p.ss01 + q.ss01 + germandbls.ss01 + t.ss01 + tbar.ss01 + tcaron.ss01 + tcedilla.ss01 + tcommaaccent.ss01 + f_f + f_f_i + f_f_l + fi + fl + f_f.ss01 + f_f_i.ss01 + f_f_l.ss01 + fi.ss01 + fl.ss01 + ordfeminine + ordmasculine + A-cy + Be-cy + Ve-cy + Ge-cy + Gheupturn-cy + De-cy + Ie-cy + Io-cy + Zhe-cy + Ze-cy + Ii-cy + Iishort-cy + Ka-cy + El-cy + Em-cy + En-cy + O-cy + Pe-cy + Er-cy + Es-cy + Te-cy + U-cy + Ushort-cy + Ef-cy + Ha-cy + Che-cy + Tse-cy + Sha-cy + Shcha-cy + Softsign-cy + Hardsign-cy + Yeru-cy + Dze-cy + E-cy + Ereversed-cy + I-cy + Yi-cy + Iu-cy + Ia-cy + A-cy.ss01 + Zhe-cy.ss01 + Ka-cy.ss01 + Em-cy.ss01 + U-cy.ss01 + Ushort-cy.ss01 + Ha-cy.ss01 + Ia-cy.ss01 + a-cy + be-cy + ve-cy + ge-cy + gheupturn-cy + de-cy + ie-cy + io-cy + zhe-cy + ze-cy + ii-cy + iishort-cy + ka-cy + el-cy + em-cy + en-cy + o-cy + pe-cy + er-cy + es-cy + te-cy + u-cy + ushort-cy + ef-cy + ha-cy + che-cy + tse-cy + sha-cy + shcha-cy + softsign-cy + hardsign-cy + yeru-cy + dze-cy + e-cy + ereversed-cy + i-cy + yi-cy + je-cy + iu-cy + ia-cy + a-cy.ss01 + ve-cy.ss01 + de-cy.ss01 + ie-cy.ss01 + io-cy.ss01 + el-cy.ss01 + er-cy.ss01 + te-cy.ss01 + softsign-cy.ss01 + hardsign-cy.ss01 + yeru-cy.ss01 + ia-cy.ss01 + zero + one + two + three + four + five + six + seven + eight + nine + zero.osf + one.osf + two.osf + three.osf + four.osf + five.osf + six.osf + seven.osf + nine.osf + zero.tf + one.tf + two.tf + three.tf + four.tf + five.tf + six.tf + seven.tf + eight.tf + nine.tf + onesuperior + twosuperior + threesuperior + period + comma + colon + semicolon + ellipsis + exclam + exclamdown + question + questiondown + periodcentered + bullet + asterisk + numbersign + slash + backslash + parenleft + parenright + braceleft + braceright + bracketleft + bracketright + hyphen + endash + emdash + underscore + quotesinglbase + quotedblbase + quotedblleft + quotedblright + quoteleft + quoteright + guillemetleft + guillemetright + guilsinglleft + guilsinglright + quotedbl + quotesingle + cent + currency + dollar + euro + hryvnia + sterling + yen + yen.ss01 + plus + minus + multiply + divide + equal + greater + less + asciitilde + asciicircum + percent + perthousand + at + ampersand + paragraph + section + copyright + registered + trademark + degree + bar + brokenbar + dagger + daggerdbl + numero + estimated + numero.ss01 + commaaccentcomb + dieresis + dotaccent + grave + acute + hungarumlaut + circumflex + caron + breve + ring + tilde + macron + cedilla + ogonek + dieresis.case + dotaccent.case + grave.case + acute.case + hungarumlaut.case + circumflex.case + caron.case + breve.case + ring.case + tilde.case + macron.case + commaaccentcomb.salt + caron.salt + uniE01A + _perc-circule + eight.osf + ruble + Ljecyr + Njecyr + Jecyr + dzhecyr + Dzhecyr + ljecyr + njecyr + Tshecyr + Djecyr + tshecyr + djecyr + tenge + ljecyr.ss01 + njecyr.ss01 + dramsignarmn + gjecyr + kjecyr + neptune + florin + plusminus + fraction + onequarter + onehalf + threequarters + mu + lessequal + greaterequal + minute + second + Schwacyr + schwacyr + Gestrokecyr + gestrokecyr + Obarcyr + obarcyr + Entailcyr + entailcyr + Katailcyr + katailcyr + Ustraightstrokecyr + ustraightstrokecyr + Shhacyr + shhacyr + ustraightcyr + Ustraightcyr + partialdiff + increment + integral + summation + radical + infinity + Omega + pi + longs + Delta + product + notequal + proportional + approxequal + Schwa + eturned + Oslashacute + oslashacute + AEacute + aeacute + uni2010 + Aiecyr + aiecyr + uni1EBC + uni1EBD + Acaron + acaron + Gjecyr + Kjecyr + uniE000 + uniE000.alt + arrowleft + arrowup + arrowright + arrowdown + arrowdown.ss01 + arrowleft.ss01 + arrowright.ss01 + arrowup.ss01 + yi-cy.alt + Omegacyr + omegacyr + Yatcyr + yatcyr + Eiotifiedcyr + eiotifiedcyr + Ksicyr + ksicyr + Shwe-cy + Fitacyr + fitacyr + Koppacyr + Iegravecyr + Igravecyr + iegravecyr + igravecyr + Zhebrevecyr + zhebrevecyr + Abrevecyr + abrevecyr + Adieresiscyr + adieresiscyr + Iebrevecyr + iebrevecyr + Schwadieresiscyr + schwadieresiscyr + Zhedieresiscyr + zhedieresiscyr + Zedieresiscyr + zedieresiscyr + Imacroncyr + imacroncyr + Idieresiscyr + idieresiscyr + Odieresiscyr + odieresiscyr + Umacroncyr + umacroncyr + Udieresiscyr + udieresiscyr + Uacutedblcyr + uacutedblcyr + Dekomicyr + dekomicyr + Wecyr + wecyr + Qacyr + qacyr + Ylongdieresiscyr + ylongdieresiscyr + Chedieresiscyr + chedieresiscyr + Obardieresiscyr + obardieresiscyr + Ereverseddieresiscyr + ereverseddieresiscyr + Zhetailcyr + zhetailcyr + Tetailcyr + tetailcyr + Xatailcyr + xatailcyr + Chetailcyr + chetailcyr + Chekhakascyr + chekhakascyr + Getailcyr + getailcyr + Petailcyr + petailcyr + Eltailcyr + eltailcyr + Shhatailcyr + shhatailcyr + Palochkacyr + palochkacyr + Dzzhecyr + Yaecyr + yaecyr + Tetsecyr + tetsecyr + Engecyr + engecyr + kabashkcyr + Kabashkcyr + semisoftcyr + Semisoftcyr + Reversedzecyr + reversedzecyr + Elmiddlehookcyr + Enmiddlehookcyr + Enhookcyr + Kahookcyr + Pehookcyr + Gehookcyr + parenleft.case + parenright.case + hyphen.case + bracketleft.case + bracketright.case + braceleft.case + braceright.case + exclamdown.case + guillemetleft.case + guillemetright.case + endash.case + emdash.case + bullet.case + guilsinglleft.case + guilsinglright.case + arrowleft.case + arrowup.case + arrowright.case + arrowdown.case + arrowdown.ss01.case + arrowleft.ss01.case + arrowright.ss01.case + arrowup.ss01.case + Enhookleftcyr + enhookleftcyr + enhookcyr + gehookcyr + pehookcyr + kahookcyr + enmiddlehookcyr + elmiddlehookcyr + kastrokecyr + Kastrokecyr + Chevertcyr + chevertcyr + Kaverticalstrokecyr + kaverticalstrokecyr + Elhookcyr + elhookcyr + zetailcyr + Zetailcyr + Estailcyr + estailcyr + Haabkhcyr + koppacyr + ukcyr + Ukcyr + omegaroundcyr + Izhitsagravedblcyr + izhitsagravedblcyr + izhitsacyr + Izhitsacyr + Yusbigcyr + yusbigcyr + Psicyr + psicyr + Omegaroundcyr + Yuslittlecyr + yuslittlecyr + yuslittleiotifiedcyr + Yuslittleiotifiedcyr + Yusbigiotifiedcyr + yusbigiotifiedcyr + Omegatitlocyr + omegatitlocyr + Otcyr + otcyr + uni2DEE + uni2DEE.case + ertickcyr + Ertickcyr + Lhacyr + lhacyr + ensharptailcyr + Ensharptailcyr + emsharptailcyr + elsharptailcyr + ishortsharptailcyr + Ishortsharptailcyr + Emsharptailcyr + Elsharptailcyr + njekomicyr + Njekomicyr + ljekomicyr + tjekomicyr + djekomicyr + zjekomicyr + colon.case + questiondown.case + slash.case + semicolon.case + backslash.case + bar.case + brokenbar.case + dzjekomicyr + Cheabkhcyr + cheabkhcyr + cheabkhtailcyr + sjekomicyr + Sjekomicyr + Ljekomicyr + Tjekomicyr + Djekomicyr + kaaleutcyr + dzzhecyr + haabkhcyr + Dchecyr + dchecyr + dzeabkhcyr + Dzeabkhcyr + palatcombcyr + Cheabkhtailcyr + Dzjekomicyr + Zjekomicyr + rhacyr + Rhacyr + Kaaleutcyr + thousandscyr + titlocombcyr + pokrytiecombcyr + hundredthousandscombcyr + millionscombcyr + Gehookstrokecyr + gehookstrokecyr + Hahookcyr + hahookcyr + Hastrokecyr + uni1C80 + uni1C81 + uni1C82 + uni1C83 + uni1C84 + uni1C85 + uni1C86 + uni1C87 + Zemlya-cy + zemlya-cy + Dzelo-cy + dzelo-cy + DzeReversed-cy + dzeReversed-cy + Iota-cy + iota-cy + Djerv-cy + djerv-cy + UkMonograph-cy + ukMonograph-cy + OmegaBroad-cy + omegaBroad-cy + YerNeutral-cy + yerNeutral-cy + YeruBackYer-cy + yeruBackyer-cy + YatIotified-cy + yatIotified-cy + YuReversed-cy + yuReversed-cy + IotifiedA-cy + iotifieda-cy + YusClosedlittle-cy + yusClosedlittle-cy + YusBlended-cy + yusBlended-cy + YusiotifiedClosedLittle-cy + yusiotifiedClosedLittle-cy + Yn-cy + yn-cy + TseReversed-cy + tseReversed-cy + DeSoft-cy + deSoft-cy + ElSoft-cy + elSoft-cy + EmSoft-cy + emSoft-cy + OMonocular-cy + oMonocular-cy + OBinocular-cy + oBinocular-cy + ODoubleMonocular-cy + oDoubleMonocular-cy + omultiocular-cy + vzmetcomb-cy + tenmillionscomb-cy + hundredmillionscomb-cy + thousandmillionscomb-cy + Dwe-cy + dwe-cy + Dzwe-cy + dzwe-cy + Zhwe-cy + zhwe-cy + Cche-cy + cche-cy + Dzze-cy + dzze-cy + TeWithMiddleHook-cy + tewithmiddlehook-cy + Twe-cy + twe-cy + Tswe-cy + tswe-cy + Tsse-cy + tsse-cy + Tche-cy + tche-cy + Hwe-cy + hwe-cy + shwe-cy + DoubleO-cy + doubleo-cy + CrossedO-cy + crossedo-cy + hastrokecyr + uniF43A + A-cy.accented + E-cy.accented + Ii-cy.accented + O-cy.accented + U-cy.accented + Yeru-cy.accented + Ereversed-cy.accented + Iu-cy.accented + Ia-cy.accented + Io-cy.accented + uniF498 + uniF49A + uniF49C + uniF49E + uniF4C6 + uniF4CC + uniF4D2 + uniF4D4 + uniF4D6 + uniF4D8 + Zetailcyr.BSH + Estailcyr.CHU + uniF50E + uniF510 + uniF512 + uniF514 + uniF516 + uniF518 + uniF51A + uniF51C + uniF51E + Yeru-cymacron + uniF522 + uniF524 + uniF526 + uniF528 + uniF52A + uniF52C + uniF52E + uniF532 + uniF536 + uniF538 + Gestrokecyr.BSH + Estailcyr.BSH + uniF830 + uniF833 + uniF839 + uniF86F + uniF872 + uniF875 + uniF878 + uniF87B + uniF87E + apostrophemod + colontriangularmod + uni1C88 + uniF87F + uniF87C + uniF879 + uniF876 + uniF873 + uniF870 + uniF83A + uniF834 + uniF831 + zetailcyr.BSH + estailcyr.CHU + uniF50F + uniF511 + uniF513 + uniF515 + uniF517 + uniF519 + uniF51B + uniF51D + uniF51F + uniF521 + uniF523 + uniF525 + uniF527 + uniF529 + uniF52B + uniF52D + uniF52F + uniF533 + uniF537 + uniF539 + gestrokecyr.BSH + estailcyr.BSH + uniF499 + uniF49B + uniF49D + uniF49F + uniF4C7 + uniF4CD + uniF4D3 + uniF4D5 + uniF4D7 + uniF4D9 + a-cy.accented + e-cy.accented + ii-cy.accented + o-cy.accented + u-cy.accented + yeru-cy.accented + ereversed-cy.accented + iu-cy.accented + ia-cy.accented + io-cy.accented + uniF43B + at.case + dieresis.alt + dieresiscase.alt + e-cy.hist + omultiocular-cy.alt + iotifieda-cy.hist + be-cy.SRB + ve-cy.BGR + ge-cy.BGR + de-cy.BGR + zhe-cy.BGR + ze-cy.BGR + ii-cy.BGR + iishort-cy.BGR + ka-cy.BGR + el-cy.BGR + pe-cy.BGR + te-cy.BGR + tse-cy.BGR + sha-cy.BGR + shcha-cy.BGR + hardsign-cy.BGR + softsign-cy.BGR + iu-cy.BGR + yatcyr.BGR + eiotifiedcyr.BGR + yusbigiotifiedcyr.BGR + iotifieda-cy.BGR + De-cy.BGR + El-cy.BGR + Ef-cy.BGR + dieresisacute + uniF45D + uniF45E + uniF45F + uniF475 + uniF476 + uniF477 + uniF478 + uniF479 + Elsmallcyr + enclosingcirclecomb + ge-cy.SRB + pe-cy.SRB + te-cy.SRB + gjecyr.SRB + macron-fwd + macron-fwd.alt + macronacute.SRB + iegravecyr.SRB + igravecyr.SRB + flower + knightwhite + knightblack + floretteblack + florettewhite + floretteoutlinedpetalledblackeight + rookblack + bishopblack + leo + heartwhite + diamondwhite-misc + spadewhite + clubwhite + bishopwhite + heart + crossedswords + virgo + thousandscyr.dnom + bracketangleleft + bracketangleright + bracketangleleft.case + bracketangleright.case + + + diff --git a/sources/FixelText-Thin.ufo/metainfo.plist b/sources/FixelText-Thin.ufo/metainfo.plist new file mode 100644 index 00000000..10582b84 --- /dev/null +++ b/sources/FixelText-Thin.ufo/metainfo.plist @@ -0,0 +1,10 @@ + + + + + creator + com.fontlab.ufoLib + formatVersion + 3 + + diff --git a/sources/config.yaml b/sources/config.yaml new file mode 100644 index 00000000..71564c05 --- /dev/null +++ b/sources/config.yaml @@ -0,0 +1,61 @@ +sources: + - Fixel.designspace + +familyName: Fixel + +axisOrder: + - wdth + - wght + +buildVariable: true +buildStatic: true +buildTTF: true +buildOTF: false +buildWebfont: true + +vfDir: ../fonts/variable +ttDir: ../fonts/ttf +woffDir: ../fonts/webfonts + +# Google Fonts profile: applies gftools-fix-font, sets vendor ID, +# fsType=0, regular default instance, STAT table, name table cleanup. +flattenComponents: true +decomposeTransformedComponents: true +includeSourceFixes: true +googleFonts: true + +# Subspaced VFs are not needed — we keep a single VF with wdth+wght. + +stat: + - name: Width + tag: wdth + values: + - name: Text + value: 87.5 + - name: Display + value: 100 + flags: 2 + linkedValue: 100 + - name: Weight + tag: wght + values: + - name: Thin + value: 100 + - name: ExtraLight + value: 200 + - name: Light + value: 300 + - name: Regular + value: 400 + flags: 2 + linkedValue: 700 + - name: Medium + value: 500 + - name: SemiBold + value: 600 + - name: Bold + value: 700 + - name: ExtraBold + value: 800 + - name: Black + value: 900